vendors.bundle-rtl.css 295 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775
  1. /* THEME COLORs
  2. ========================================================================== */
  3. /* Looks good on chrome default color profile */
  4. /* looks good in sRGB but washed up on chrome default
  5. $color-primary: #826bb0;
  6. $color-success: #31cb55;
  7. $color-info: #5e93ec;
  8. $color-warning: #eec559;
  9. $color-danger: #dc4b92;
  10. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  11. /* Color Polarity
  12. ========================================================================== */
  13. /* PAINTBUCKET MIXER
  14. ========================================================================== */
  15. /* the grays */
  16. /* the sapphires */
  17. /* the emeralds */
  18. /* the amethyths */
  19. /* the topaz */
  20. /* the rubies */
  21. /* the graphites */
  22. /* Define universal border difition (div outlines, etc)
  23. ========================================================================== */
  24. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  25. ========================================================================== */
  26. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  27. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  28. /* global var used for spacing*/
  29. /* Uniform Padding variable */
  30. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  31. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  32. ========================================================================== */
  33. /* usage: theme-colors("primary"); */
  34. /* forms */
  35. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  36. /* links */
  37. /* checkbox */
  38. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  39. /* not part of bootstrap variable */
  40. /* custom checkbox */
  41. /* custom range */
  42. /* select */
  43. /* badge */
  44. /* cards */
  45. /*border radius*/
  46. /* alert */
  47. /* toast */
  48. /* breadcrumb */
  49. /* input button */
  50. /* nav link */
  51. /* nav, tabs, pills */
  52. /* tables */
  53. /* dropdowns */
  54. /* dropdowns sizes */
  55. /* popovers */
  56. /* tooltips */
  57. /* modal */
  58. /* reference guide
  59. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  60. 8px = 0.5rem
  61. 9px = 0.5625rem
  62. 10px = 0.625rem
  63. 11px = 0.6875rem
  64. 12px = 0.75rem
  65. 13px = 0.8125rem
  66. 14px = 0.875rem
  67. 15px = 0.9375rem
  68. 16px = 1rem (base)
  69. 17px = 1.0625rem
  70. 18px = 1.125rem
  71. 19px = 1.1875rem
  72. 20px = 1.25rem
  73. 21px = 1.3125rem
  74. 22px = 1.375rem
  75. 24px = 1.5rem
  76. 25px = 1.5625rem
  77. 26px = 1.625rem
  78. 28px = 1.75rem
  79. 30px = 1.875rem
  80. 32px = 2rem
  81. 34px = 2.125rem
  82. 36px = 2.25rem
  83. 38px = 2.375rem
  84. 40px = 2.5rem
  85. */
  86. /* Fonts */
  87. /* carousel */
  88. /* BASE VARS
  89. ========================================================================== */
  90. /* font vars below will auto change to rem values using function rem($value)*/
  91. /* 11px */
  92. /* 12px */
  93. /* 12.5px */
  94. /* 14px */
  95. /* 15px */
  96. /* 16px */
  97. /* 28px */
  98. /* Font Family
  99. ========================================================================== */
  100. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  101. /* ANIMATIONS
  102. ========================================================================== */
  103. /* this addresses all animation related to nav hide to nav minify */
  104. /* Z-INDEX declearation
  105. ========================================================================== */
  106. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  107. /* CUSTOM ICON PREFIX
  108. ========================================================================== */
  109. /* PRINT CSS (landscape or portrait)
  110. ========================================================================== */
  111. /* landscape or portrait */
  112. /* auto, letter */
  113. /* Common Element Variables
  114. ========================================================================== */
  115. /* Z-index decleartion "birds eye view"
  116. ========================================================================== */
  117. /* Components
  118. ========================================================================== */
  119. /* PAGE HEADER STUFF
  120. ========================================================================== */
  121. /* colors */
  122. /* height */
  123. /* logo */
  124. /* try not to go beywond the width of $main_nav_width value */
  125. /* you may need to change this depending on your logo design */
  126. /* adjust this as you see fit : left, right, center */
  127. /* icon font size (not button) */
  128. /* search input box */
  129. /* suggestion: #ccced0*/
  130. /* btn */
  131. /* dropdown: app list */
  132. /* badge */
  133. /* COMPONENTS & MODS */
  134. /* NAVIGATION STUFF
  135. Guide:
  136. aside.page-sidebar ($nav-width, $nav-background)
  137. .page-logo
  138. .primary-nav
  139. .info-card
  140. ul.nav-menu
  141. li
  142. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  143. icon
  144. span
  145. collapse-sign
  146. ul.nav-menu-sub-one
  147. li
  148. a ($nav-level-1... $nav-sub-link-height)
  149. span
  150. collapse-sign
  151. ul.nav-menu-sub-two
  152. li
  153. a ($nav-level-2... $nav-sub-link-height)
  154. span
  155. p.nav-title ($nav-title-*...)
  156. ========================================================================== */
  157. /* main navigation */
  158. /* left panel */
  159. /* nav parent level-0 */
  160. /* nav icon sizes */
  161. /* badge default */
  162. /* all child */
  163. /* nav title */
  164. /* nav Minify */
  165. /* when the menu pops on hover */
  166. /* navigation Width */
  167. /* partial visibility of the menu */
  168. /* top navigation */
  169. /* nav Info Card (appears below the logo) */
  170. /* width is auto */
  171. /* nav DL labels for all child */
  172. /* will be pulled to left as a negative value */
  173. /* MISC Settings
  174. ========================================================================== */
  175. /* List Table */
  176. /* PAGE SETTINGS
  177. ========================================================================== */
  178. /* PAGE BREADCRUMB
  179. ========================================================================== */
  180. /* PAGE COMPONENT PANELS
  181. ========================================================================== */
  182. /* PAGE COMPONENT PROGRESSBARS
  183. ========================================================================== */
  184. /* PAGE COMPONENT MESSENGER
  185. ========================================================================== */
  186. /* FOOTER
  187. ========================================================================== */
  188. /* GLOBALS
  189. ========================================================================== */
  190. /* ACCESSIBILITIES */
  191. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  192. /*!
  193. * Bootstrap v4.3.1 (https://getbootstrap.com/)
  194. * Copyright 2011-2019 The Bootstrap Authors
  195. * Copyright 2011-2019 Twitter, Inc.
  196. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  197. */
  198. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
  199. :root {
  200. --blue: #886ab5;
  201. --indigo: #6610f2;
  202. --purple: #6f42c1;
  203. --pink: #e83e8c;
  204. --red: #fd3995;
  205. --orange: #ffc241;
  206. --yellow: #ffc241;
  207. --green: #1dc9b7;
  208. --teal: #20c997;
  209. --cyan: #17a2b8;
  210. --white: #fff;
  211. --gray: #868e96;
  212. --gray-dark: #495057;
  213. --primary: #886ab5;
  214. --secondary: #868e96;
  215. --success: #1dc9b7;
  216. --info: #2196F3;
  217. --warning: #ffc241;
  218. --danger: #fd3995;
  219. --light: #fff;
  220. --dark: #505050;
  221. --breakpoint-xs: 0;
  222. --breakpoint-sm: 576px;
  223. --breakpoint-md: 768px;
  224. --breakpoint-lg: 992px;
  225. --breakpoint-xl: 1399px;
  226. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  227. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  228. *,
  229. *::before,
  230. *::after {
  231. -webkit-box-sizing: border-box;
  232. box-sizing: border-box; }
  233. html {
  234. font-family: sans-serif;
  235. line-height: 1.15;
  236. -webkit-text-size-adjust: 100%;
  237. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  238. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  239. display: block; }
  240. body {
  241. margin: 0;
  242. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  243. font-size: 0.8125rem;
  244. font-weight: 400;
  245. line-height: 1.47;
  246. color: #212529;
  247. text-align: right;
  248. background-color: #fff; }
  249. [tabindex="-1"]:focus {
  250. outline: 0 !important; }
  251. hr {
  252. -webkit-box-sizing: content-box;
  253. box-sizing: content-box;
  254. height: 0;
  255. overflow: visible; }
  256. h1, h2, h3, h4, h5, h6 {
  257. margin-top: 0;
  258. margin-bottom: 0.5rem; }
  259. p {
  260. margin-top: 0;
  261. margin-bottom: 1rem; }
  262. abbr[title],
  263. abbr[data-original-title] {
  264. text-decoration: underline;
  265. -webkit-text-decoration: underline dotted;
  266. text-decoration: underline dotted;
  267. cursor: help;
  268. border-bottom: 0;
  269. -webkit-text-decoration-skip-ink: none;
  270. text-decoration-skip-ink: none; }
  271. address {
  272. margin-bottom: 1rem;
  273. font-style: normal;
  274. line-height: inherit; }
  275. ol,
  276. ul,
  277. dl {
  278. margin-top: 0;
  279. margin-bottom: 1rem; }
  280. ol ol,
  281. ul ul,
  282. ol ul,
  283. ul ol {
  284. margin-bottom: 0; }
  285. dt {
  286. font-weight: 700; }
  287. dd {
  288. margin-bottom: .5rem;
  289. margin-right: 0; }
  290. blockquote {
  291. margin: 0 0 1rem; }
  292. b,
  293. strong {
  294. font-weight: bolder; }
  295. small {
  296. font-size: 80%; }
  297. sub,
  298. sup {
  299. position: relative;
  300. font-size: 75%;
  301. line-height: 0;
  302. vertical-align: baseline; }
  303. sub {
  304. bottom: -.25em; }
  305. sup {
  306. top: -.5em; }
  307. a {
  308. color: #886ab5;
  309. text-decoration: none;
  310. background-color: transparent; }
  311. a:hover {
  312. color: #967bbd;
  313. text-decoration: underline; }
  314. a:not([href]):not([tabindex]) {
  315. color: inherit;
  316. text-decoration: none; }
  317. a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  318. color: inherit;
  319. text-decoration: none; }
  320. a:not([href]):not([tabindex]):focus {
  321. outline: 0; }
  322. pre,
  323. code,
  324. kbd,
  325. samp {
  326. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  327. font-size: 1em; }
  328. pre {
  329. margin-top: 0;
  330. margin-bottom: 1rem;
  331. overflow: auto; }
  332. figure {
  333. margin: 0 0 1rem; }
  334. img {
  335. vertical-align: middle;
  336. border-style: none; }
  337. svg {
  338. overflow: hidden;
  339. vertical-align: middle; }
  340. table {
  341. border-collapse: collapse; }
  342. caption {
  343. padding-top: 0.75rem;
  344. padding-bottom: 0.75rem;
  345. color: #868e96;
  346. text-align: right;
  347. caption-side: bottom; }
  348. th {
  349. text-align: inherit; }
  350. label {
  351. display: inline-block;
  352. margin-bottom: 0.3rem; }
  353. button {
  354. border-radius: 0; }
  355. button:focus {
  356. outline: 1px dotted;
  357. outline: 5px auto -webkit-focus-ring-color; }
  358. input,
  359. button,
  360. select,
  361. optgroup,
  362. textarea {
  363. margin: 0;
  364. font-family: inherit;
  365. font-size: inherit;
  366. line-height: inherit; }
  367. button,
  368. input {
  369. overflow: visible; }
  370. button,
  371. select {
  372. text-transform: none; }
  373. select {
  374. word-wrap: normal; }
  375. button,
  376. [type="button"],
  377. [type="reset"],
  378. [type="submit"] {
  379. -webkit-appearance: button; }
  380. button:not(:disabled),
  381. [type="button"]:not(:disabled),
  382. [type="reset"]:not(:disabled),
  383. [type="submit"]:not(:disabled) {
  384. cursor: pointer; }
  385. button::-moz-focus-inner,
  386. [type="button"]::-moz-focus-inner,
  387. [type="reset"]::-moz-focus-inner,
  388. [type="submit"]::-moz-focus-inner {
  389. padding: 0;
  390. border-style: none; }
  391. input[type="radio"],
  392. input[type="checkbox"] {
  393. -webkit-box-sizing: border-box;
  394. box-sizing: border-box;
  395. padding: 0; }
  396. input[type="date"],
  397. input[type="time"],
  398. input[type="datetime-local"],
  399. input[type="month"] {
  400. -webkit-appearance: listbox; }
  401. textarea {
  402. overflow: auto;
  403. resize: vertical; }
  404. fieldset {
  405. min-width: 0;
  406. padding: 0;
  407. margin: 0;
  408. border: 0; }
  409. legend {
  410. display: block;
  411. width: 100%;
  412. max-width: 100%;
  413. padding: 0;
  414. margin-bottom: .5rem;
  415. font-size: 1.5rem;
  416. line-height: inherit;
  417. color: inherit;
  418. white-space: normal; }
  419. progress {
  420. vertical-align: baseline; }
  421. [type="number"]::-webkit-inner-spin-button,
  422. [type="number"]::-webkit-outer-spin-button {
  423. height: auto; }
  424. [type="search"] {
  425. outline-offset: -2px;
  426. -webkit-appearance: none; }
  427. [type="search"]::-webkit-search-decoration {
  428. -webkit-appearance: none; }
  429. ::-webkit-file-upload-button {
  430. font: inherit;
  431. -webkit-appearance: button; }
  432. output {
  433. display: inline-block; }
  434. summary {
  435. display: list-item;
  436. cursor: pointer; }
  437. template {
  438. display: none; }
  439. [hidden] {
  440. display: none !important; }
  441. h1, h2, h3, h4, h5, h6,
  442. .h1, .h2, .h3, .h4, .h5, .h6 {
  443. margin-bottom: 0.5rem;
  444. font-weight: 500;
  445. line-height: 1.57; }
  446. h1, .h1 {
  447. font-size: 1.5rem; }
  448. h2, .h2 {
  449. font-size: 1.375rem; }
  450. h3, .h3 {
  451. font-size: 1.1875rem; }
  452. h4, .h4 {
  453. font-size: 1.0625rem; }
  454. h5, .h5 {
  455. font-size: 0.9375rem; }
  456. h6, .h6 {
  457. font-size: 0.875rem; }
  458. .lead {
  459. font-size: 1.01563rem;
  460. font-weight: 300; }
  461. .display-1 {
  462. font-size: 5rem;
  463. font-weight: 300;
  464. line-height: 1.57; }
  465. .display-2 {
  466. font-size: 4.5rem;
  467. font-weight: 300;
  468. line-height: 1.57; }
  469. .display-3 {
  470. font-size: 3.5rem;
  471. font-weight: 300;
  472. line-height: 1.57; }
  473. .display-4 {
  474. font-size: 2.5rem;
  475. font-weight: 300;
  476. line-height: 1.57; }
  477. hr {
  478. margin-top: 1rem;
  479. margin-bottom: 1rem;
  480. border: 0;
  481. border-top: 1px solid rgba(0, 0, 0, 0.1); }
  482. small,
  483. .small {
  484. font-size: 80%;
  485. font-weight: 400; }
  486. mark,
  487. .mark {
  488. padding: 0.2em;
  489. background-color: #fcf8e3; }
  490. .list-unstyled {
  491. padding-right: 0;
  492. list-style: none; }
  493. .list-inline {
  494. padding-right: 0;
  495. list-style: none; }
  496. .list-inline-item {
  497. display: inline-block; }
  498. .list-inline-item:not(:last-child) {
  499. margin-left: 0.5rem; }
  500. .initialism {
  501. font-size: 90%;
  502. text-transform: uppercase; }
  503. .blockquote {
  504. margin-bottom: 1rem;
  505. font-size: 1.01563rem; }
  506. .blockquote-footer {
  507. display: block;
  508. font-size: 80%;
  509. color: #868e96; }
  510. .blockquote-footer::before {
  511. content: "\2014\00A0"; }
  512. .img-fluid {
  513. max-width: 100%;
  514. height: auto; }
  515. .img-thumbnail {
  516. padding: 0.25rem;
  517. background-color: #fff;
  518. border: 1px solid #dee2e6;
  519. border-radius: 4px;
  520. max-width: 100%;
  521. height: auto; }
  522. .figure {
  523. display: inline-block; }
  524. .figure-img {
  525. margin-bottom: 0.5rem;
  526. line-height: 1; }
  527. .figure-caption {
  528. font-size: 90%;
  529. color: #868e96; }
  530. code {
  531. font-size: 87.5%;
  532. color: #e83e8c;
  533. word-break: break-word; }
  534. a > code {
  535. color: inherit; }
  536. kbd {
  537. padding: 0.2rem 0.4rem;
  538. font-size: 87.5%;
  539. color: #fff;
  540. background-color: #212529;
  541. border-radius: 4px; }
  542. kbd kbd {
  543. padding: 0;
  544. font-size: 100%;
  545. font-weight: 700; }
  546. pre {
  547. display: block;
  548. font-size: 87.5%;
  549. color: #212529; }
  550. pre code {
  551. font-size: inherit;
  552. color: inherit;
  553. word-break: normal; }
  554. .pre-scrollable {
  555. max-height: 340px;
  556. overflow-y: scroll; }
  557. .container {
  558. width: 100%;
  559. padding-left: 0.75rem;
  560. padding-right: 0.75rem;
  561. margin-left: auto;
  562. margin-right: auto; }
  563. @media (min-width: 576px) {
  564. .container {
  565. max-width: 540px; } }
  566. @media (min-width: 768px) {
  567. .container {
  568. max-width: 720px; } }
  569. @media (min-width: 992px) {
  570. .container {
  571. max-width: 960px; } }
  572. @media (min-width: 1399px) {
  573. .container {
  574. max-width: 1140px; } }
  575. .container-fluid {
  576. width: 100%;
  577. padding-left: 0.75rem;
  578. padding-right: 0.75rem;
  579. margin-left: auto;
  580. margin-right: auto; }
  581. .row {
  582. display: -webkit-box;
  583. display: -ms-flexbox;
  584. display: flex;
  585. -ms-flex-wrap: wrap;
  586. flex-wrap: wrap;
  587. margin-left: -0.75rem;
  588. margin-right: -0.75rem; }
  589. .no-gutters {
  590. margin-left: 0;
  591. margin-right: 0; }
  592. .no-gutters > .col,
  593. .no-gutters > [class*="col-"] {
  594. padding-left: 0;
  595. padding-right: 0; }
  596. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  597. .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  598. .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  599. .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  600. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  601. .col-xl-auto {
  602. position: relative;
  603. width: 100%;
  604. padding-left: 0.75rem;
  605. padding-right: 0.75rem; }
  606. .col {
  607. -ms-flex-preferred-size: 0;
  608. flex-basis: 0;
  609. -webkit-box-flex: 1;
  610. -ms-flex-positive: 1;
  611. flex-grow: 1;
  612. max-width: 100%; }
  613. .col-auto {
  614. -webkit-box-flex: 0;
  615. -ms-flex: 0 0 auto;
  616. flex: 0 0 auto;
  617. width: auto;
  618. max-width: 100%; }
  619. .col-1 {
  620. -webkit-box-flex: 0;
  621. -ms-flex: 0 0 8.33333%;
  622. flex: 0 0 8.33333%;
  623. max-width: 8.33333%; }
  624. .col-2 {
  625. -webkit-box-flex: 0;
  626. -ms-flex: 0 0 16.66667%;
  627. flex: 0 0 16.66667%;
  628. max-width: 16.66667%; }
  629. .col-3 {
  630. -webkit-box-flex: 0;
  631. -ms-flex: 0 0 25%;
  632. flex: 0 0 25%;
  633. max-width: 25%; }
  634. .col-4 {
  635. -webkit-box-flex: 0;
  636. -ms-flex: 0 0 33.33333%;
  637. flex: 0 0 33.33333%;
  638. max-width: 33.33333%; }
  639. .col-5 {
  640. -webkit-box-flex: 0;
  641. -ms-flex: 0 0 41.66667%;
  642. flex: 0 0 41.66667%;
  643. max-width: 41.66667%; }
  644. .col-6 {
  645. -webkit-box-flex: 0;
  646. -ms-flex: 0 0 50%;
  647. flex: 0 0 50%;
  648. max-width: 50%; }
  649. .col-7 {
  650. -webkit-box-flex: 0;
  651. -ms-flex: 0 0 58.33333%;
  652. flex: 0 0 58.33333%;
  653. max-width: 58.33333%; }
  654. .col-8 {
  655. -webkit-box-flex: 0;
  656. -ms-flex: 0 0 66.66667%;
  657. flex: 0 0 66.66667%;
  658. max-width: 66.66667%; }
  659. .col-9 {
  660. -webkit-box-flex: 0;
  661. -ms-flex: 0 0 75%;
  662. flex: 0 0 75%;
  663. max-width: 75%; }
  664. .col-10 {
  665. -webkit-box-flex: 0;
  666. -ms-flex: 0 0 83.33333%;
  667. flex: 0 0 83.33333%;
  668. max-width: 83.33333%; }
  669. .col-11 {
  670. -webkit-box-flex: 0;
  671. -ms-flex: 0 0 91.66667%;
  672. flex: 0 0 91.66667%;
  673. max-width: 91.66667%; }
  674. .col-12 {
  675. -webkit-box-flex: 0;
  676. -ms-flex: 0 0 100%;
  677. flex: 0 0 100%;
  678. max-width: 100%; }
  679. .order-first {
  680. -webkit-box-ordinal-group: 0;
  681. -ms-flex-order: -1;
  682. order: -1; }
  683. .order-last {
  684. -webkit-box-ordinal-group: 14;
  685. -ms-flex-order: 13;
  686. order: 13; }
  687. .order-0 {
  688. -webkit-box-ordinal-group: 1;
  689. -ms-flex-order: 0;
  690. order: 0; }
  691. .order-1 {
  692. -webkit-box-ordinal-group: 2;
  693. -ms-flex-order: 1;
  694. order: 1; }
  695. .order-2 {
  696. -webkit-box-ordinal-group: 3;
  697. -ms-flex-order: 2;
  698. order: 2; }
  699. .order-3 {
  700. -webkit-box-ordinal-group: 4;
  701. -ms-flex-order: 3;
  702. order: 3; }
  703. .order-4 {
  704. -webkit-box-ordinal-group: 5;
  705. -ms-flex-order: 4;
  706. order: 4; }
  707. .order-5 {
  708. -webkit-box-ordinal-group: 6;
  709. -ms-flex-order: 5;
  710. order: 5; }
  711. .order-6 {
  712. -webkit-box-ordinal-group: 7;
  713. -ms-flex-order: 6;
  714. order: 6; }
  715. .order-7 {
  716. -webkit-box-ordinal-group: 8;
  717. -ms-flex-order: 7;
  718. order: 7; }
  719. .order-8 {
  720. -webkit-box-ordinal-group: 9;
  721. -ms-flex-order: 8;
  722. order: 8; }
  723. .order-9 {
  724. -webkit-box-ordinal-group: 10;
  725. -ms-flex-order: 9;
  726. order: 9; }
  727. .order-10 {
  728. -webkit-box-ordinal-group: 11;
  729. -ms-flex-order: 10;
  730. order: 10; }
  731. .order-11 {
  732. -webkit-box-ordinal-group: 12;
  733. -ms-flex-order: 11;
  734. order: 11; }
  735. .order-12 {
  736. -webkit-box-ordinal-group: 13;
  737. -ms-flex-order: 12;
  738. order: 12; }
  739. .offset-1 {
  740. margin-right: 8.33333%; }
  741. .offset-2 {
  742. margin-right: 16.66667%; }
  743. .offset-3 {
  744. margin-right: 25%; }
  745. .offset-4 {
  746. margin-right: 33.33333%; }
  747. .offset-5 {
  748. margin-right: 41.66667%; }
  749. .offset-6 {
  750. margin-right: 50%; }
  751. .offset-7 {
  752. margin-right: 58.33333%; }
  753. .offset-8 {
  754. margin-right: 66.66667%; }
  755. .offset-9 {
  756. margin-right: 75%; }
  757. .offset-10 {
  758. margin-right: 83.33333%; }
  759. .offset-11 {
  760. margin-right: 91.66667%; }
  761. @media (min-width: 576px) {
  762. .col-sm {
  763. -ms-flex-preferred-size: 0;
  764. flex-basis: 0;
  765. -webkit-box-flex: 1;
  766. -ms-flex-positive: 1;
  767. flex-grow: 1;
  768. max-width: 100%; }
  769. .col-sm-auto {
  770. -webkit-box-flex: 0;
  771. -ms-flex: 0 0 auto;
  772. flex: 0 0 auto;
  773. width: auto;
  774. max-width: 100%; }
  775. .col-sm-1 {
  776. -webkit-box-flex: 0;
  777. -ms-flex: 0 0 8.33333%;
  778. flex: 0 0 8.33333%;
  779. max-width: 8.33333%; }
  780. .col-sm-2 {
  781. -webkit-box-flex: 0;
  782. -ms-flex: 0 0 16.66667%;
  783. flex: 0 0 16.66667%;
  784. max-width: 16.66667%; }
  785. .col-sm-3 {
  786. -webkit-box-flex: 0;
  787. -ms-flex: 0 0 25%;
  788. flex: 0 0 25%;
  789. max-width: 25%; }
  790. .col-sm-4 {
  791. -webkit-box-flex: 0;
  792. -ms-flex: 0 0 33.33333%;
  793. flex: 0 0 33.33333%;
  794. max-width: 33.33333%; }
  795. .col-sm-5 {
  796. -webkit-box-flex: 0;
  797. -ms-flex: 0 0 41.66667%;
  798. flex: 0 0 41.66667%;
  799. max-width: 41.66667%; }
  800. .col-sm-6 {
  801. -webkit-box-flex: 0;
  802. -ms-flex: 0 0 50%;
  803. flex: 0 0 50%;
  804. max-width: 50%; }
  805. .col-sm-7 {
  806. -webkit-box-flex: 0;
  807. -ms-flex: 0 0 58.33333%;
  808. flex: 0 0 58.33333%;
  809. max-width: 58.33333%; }
  810. .col-sm-8 {
  811. -webkit-box-flex: 0;
  812. -ms-flex: 0 0 66.66667%;
  813. flex: 0 0 66.66667%;
  814. max-width: 66.66667%; }
  815. .col-sm-9 {
  816. -webkit-box-flex: 0;
  817. -ms-flex: 0 0 75%;
  818. flex: 0 0 75%;
  819. max-width: 75%; }
  820. .col-sm-10 {
  821. -webkit-box-flex: 0;
  822. -ms-flex: 0 0 83.33333%;
  823. flex: 0 0 83.33333%;
  824. max-width: 83.33333%; }
  825. .col-sm-11 {
  826. -webkit-box-flex: 0;
  827. -ms-flex: 0 0 91.66667%;
  828. flex: 0 0 91.66667%;
  829. max-width: 91.66667%; }
  830. .col-sm-12 {
  831. -webkit-box-flex: 0;
  832. -ms-flex: 0 0 100%;
  833. flex: 0 0 100%;
  834. max-width: 100%; }
  835. .order-sm-first {
  836. -webkit-box-ordinal-group: 0;
  837. -ms-flex-order: -1;
  838. order: -1; }
  839. .order-sm-last {
  840. -webkit-box-ordinal-group: 14;
  841. -ms-flex-order: 13;
  842. order: 13; }
  843. .order-sm-0 {
  844. -webkit-box-ordinal-group: 1;
  845. -ms-flex-order: 0;
  846. order: 0; }
  847. .order-sm-1 {
  848. -webkit-box-ordinal-group: 2;
  849. -ms-flex-order: 1;
  850. order: 1; }
  851. .order-sm-2 {
  852. -webkit-box-ordinal-group: 3;
  853. -ms-flex-order: 2;
  854. order: 2; }
  855. .order-sm-3 {
  856. -webkit-box-ordinal-group: 4;
  857. -ms-flex-order: 3;
  858. order: 3; }
  859. .order-sm-4 {
  860. -webkit-box-ordinal-group: 5;
  861. -ms-flex-order: 4;
  862. order: 4; }
  863. .order-sm-5 {
  864. -webkit-box-ordinal-group: 6;
  865. -ms-flex-order: 5;
  866. order: 5; }
  867. .order-sm-6 {
  868. -webkit-box-ordinal-group: 7;
  869. -ms-flex-order: 6;
  870. order: 6; }
  871. .order-sm-7 {
  872. -webkit-box-ordinal-group: 8;
  873. -ms-flex-order: 7;
  874. order: 7; }
  875. .order-sm-8 {
  876. -webkit-box-ordinal-group: 9;
  877. -ms-flex-order: 8;
  878. order: 8; }
  879. .order-sm-9 {
  880. -webkit-box-ordinal-group: 10;
  881. -ms-flex-order: 9;
  882. order: 9; }
  883. .order-sm-10 {
  884. -webkit-box-ordinal-group: 11;
  885. -ms-flex-order: 10;
  886. order: 10; }
  887. .order-sm-11 {
  888. -webkit-box-ordinal-group: 12;
  889. -ms-flex-order: 11;
  890. order: 11; }
  891. .order-sm-12 {
  892. -webkit-box-ordinal-group: 13;
  893. -ms-flex-order: 12;
  894. order: 12; }
  895. .offset-sm-0 {
  896. margin-right: 0; }
  897. .offset-sm-1 {
  898. margin-right: 8.33333%; }
  899. .offset-sm-2 {
  900. margin-right: 16.66667%; }
  901. .offset-sm-3 {
  902. margin-right: 25%; }
  903. .offset-sm-4 {
  904. margin-right: 33.33333%; }
  905. .offset-sm-5 {
  906. margin-right: 41.66667%; }
  907. .offset-sm-6 {
  908. margin-right: 50%; }
  909. .offset-sm-7 {
  910. margin-right: 58.33333%; }
  911. .offset-sm-8 {
  912. margin-right: 66.66667%; }
  913. .offset-sm-9 {
  914. margin-right: 75%; }
  915. .offset-sm-10 {
  916. margin-right: 83.33333%; }
  917. .offset-sm-11 {
  918. margin-right: 91.66667%; } }
  919. @media (min-width: 768px) {
  920. .col-md {
  921. -ms-flex-preferred-size: 0;
  922. flex-basis: 0;
  923. -webkit-box-flex: 1;
  924. -ms-flex-positive: 1;
  925. flex-grow: 1;
  926. max-width: 100%; }
  927. .col-md-auto {
  928. -webkit-box-flex: 0;
  929. -ms-flex: 0 0 auto;
  930. flex: 0 0 auto;
  931. width: auto;
  932. max-width: 100%; }
  933. .col-md-1 {
  934. -webkit-box-flex: 0;
  935. -ms-flex: 0 0 8.33333%;
  936. flex: 0 0 8.33333%;
  937. max-width: 8.33333%; }
  938. .col-md-2 {
  939. -webkit-box-flex: 0;
  940. -ms-flex: 0 0 16.66667%;
  941. flex: 0 0 16.66667%;
  942. max-width: 16.66667%; }
  943. .col-md-3 {
  944. -webkit-box-flex: 0;
  945. -ms-flex: 0 0 25%;
  946. flex: 0 0 25%;
  947. max-width: 25%; }
  948. .col-md-4 {
  949. -webkit-box-flex: 0;
  950. -ms-flex: 0 0 33.33333%;
  951. flex: 0 0 33.33333%;
  952. max-width: 33.33333%; }
  953. .col-md-5 {
  954. -webkit-box-flex: 0;
  955. -ms-flex: 0 0 41.66667%;
  956. flex: 0 0 41.66667%;
  957. max-width: 41.66667%; }
  958. .col-md-6 {
  959. -webkit-box-flex: 0;
  960. -ms-flex: 0 0 50%;
  961. flex: 0 0 50%;
  962. max-width: 50%; }
  963. .col-md-7 {
  964. -webkit-box-flex: 0;
  965. -ms-flex: 0 0 58.33333%;
  966. flex: 0 0 58.33333%;
  967. max-width: 58.33333%; }
  968. .col-md-8 {
  969. -webkit-box-flex: 0;
  970. -ms-flex: 0 0 66.66667%;
  971. flex: 0 0 66.66667%;
  972. max-width: 66.66667%; }
  973. .col-md-9 {
  974. -webkit-box-flex: 0;
  975. -ms-flex: 0 0 75%;
  976. flex: 0 0 75%;
  977. max-width: 75%; }
  978. .col-md-10 {
  979. -webkit-box-flex: 0;
  980. -ms-flex: 0 0 83.33333%;
  981. flex: 0 0 83.33333%;
  982. max-width: 83.33333%; }
  983. .col-md-11 {
  984. -webkit-box-flex: 0;
  985. -ms-flex: 0 0 91.66667%;
  986. flex: 0 0 91.66667%;
  987. max-width: 91.66667%; }
  988. .col-md-12 {
  989. -webkit-box-flex: 0;
  990. -ms-flex: 0 0 100%;
  991. flex: 0 0 100%;
  992. max-width: 100%; }
  993. .order-md-first {
  994. -webkit-box-ordinal-group: 0;
  995. -ms-flex-order: -1;
  996. order: -1; }
  997. .order-md-last {
  998. -webkit-box-ordinal-group: 14;
  999. -ms-flex-order: 13;
  1000. order: 13; }
  1001. .order-md-0 {
  1002. -webkit-box-ordinal-group: 1;
  1003. -ms-flex-order: 0;
  1004. order: 0; }
  1005. .order-md-1 {
  1006. -webkit-box-ordinal-group: 2;
  1007. -ms-flex-order: 1;
  1008. order: 1; }
  1009. .order-md-2 {
  1010. -webkit-box-ordinal-group: 3;
  1011. -ms-flex-order: 2;
  1012. order: 2; }
  1013. .order-md-3 {
  1014. -webkit-box-ordinal-group: 4;
  1015. -ms-flex-order: 3;
  1016. order: 3; }
  1017. .order-md-4 {
  1018. -webkit-box-ordinal-group: 5;
  1019. -ms-flex-order: 4;
  1020. order: 4; }
  1021. .order-md-5 {
  1022. -webkit-box-ordinal-group: 6;
  1023. -ms-flex-order: 5;
  1024. order: 5; }
  1025. .order-md-6 {
  1026. -webkit-box-ordinal-group: 7;
  1027. -ms-flex-order: 6;
  1028. order: 6; }
  1029. .order-md-7 {
  1030. -webkit-box-ordinal-group: 8;
  1031. -ms-flex-order: 7;
  1032. order: 7; }
  1033. .order-md-8 {
  1034. -webkit-box-ordinal-group: 9;
  1035. -ms-flex-order: 8;
  1036. order: 8; }
  1037. .order-md-9 {
  1038. -webkit-box-ordinal-group: 10;
  1039. -ms-flex-order: 9;
  1040. order: 9; }
  1041. .order-md-10 {
  1042. -webkit-box-ordinal-group: 11;
  1043. -ms-flex-order: 10;
  1044. order: 10; }
  1045. .order-md-11 {
  1046. -webkit-box-ordinal-group: 12;
  1047. -ms-flex-order: 11;
  1048. order: 11; }
  1049. .order-md-12 {
  1050. -webkit-box-ordinal-group: 13;
  1051. -ms-flex-order: 12;
  1052. order: 12; }
  1053. .offset-md-0 {
  1054. margin-right: 0; }
  1055. .offset-md-1 {
  1056. margin-right: 8.33333%; }
  1057. .offset-md-2 {
  1058. margin-right: 16.66667%; }
  1059. .offset-md-3 {
  1060. margin-right: 25%; }
  1061. .offset-md-4 {
  1062. margin-right: 33.33333%; }
  1063. .offset-md-5 {
  1064. margin-right: 41.66667%; }
  1065. .offset-md-6 {
  1066. margin-right: 50%; }
  1067. .offset-md-7 {
  1068. margin-right: 58.33333%; }
  1069. .offset-md-8 {
  1070. margin-right: 66.66667%; }
  1071. .offset-md-9 {
  1072. margin-right: 75%; }
  1073. .offset-md-10 {
  1074. margin-right: 83.33333%; }
  1075. .offset-md-11 {
  1076. margin-right: 91.66667%; } }
  1077. @media (min-width: 992px) {
  1078. .col-lg {
  1079. -ms-flex-preferred-size: 0;
  1080. flex-basis: 0;
  1081. -webkit-box-flex: 1;
  1082. -ms-flex-positive: 1;
  1083. flex-grow: 1;
  1084. max-width: 100%; }
  1085. .col-lg-auto {
  1086. -webkit-box-flex: 0;
  1087. -ms-flex: 0 0 auto;
  1088. flex: 0 0 auto;
  1089. width: auto;
  1090. max-width: 100%; }
  1091. .col-lg-1 {
  1092. -webkit-box-flex: 0;
  1093. -ms-flex: 0 0 8.33333%;
  1094. flex: 0 0 8.33333%;
  1095. max-width: 8.33333%; }
  1096. .col-lg-2 {
  1097. -webkit-box-flex: 0;
  1098. -ms-flex: 0 0 16.66667%;
  1099. flex: 0 0 16.66667%;
  1100. max-width: 16.66667%; }
  1101. .col-lg-3 {
  1102. -webkit-box-flex: 0;
  1103. -ms-flex: 0 0 25%;
  1104. flex: 0 0 25%;
  1105. max-width: 25%; }
  1106. .col-lg-4 {
  1107. -webkit-box-flex: 0;
  1108. -ms-flex: 0 0 33.33333%;
  1109. flex: 0 0 33.33333%;
  1110. max-width: 33.33333%; }
  1111. .col-lg-5 {
  1112. -webkit-box-flex: 0;
  1113. -ms-flex: 0 0 41.66667%;
  1114. flex: 0 0 41.66667%;
  1115. max-width: 41.66667%; }
  1116. .col-lg-6 {
  1117. -webkit-box-flex: 0;
  1118. -ms-flex: 0 0 50%;
  1119. flex: 0 0 50%;
  1120. max-width: 50%; }
  1121. .col-lg-7 {
  1122. -webkit-box-flex: 0;
  1123. -ms-flex: 0 0 58.33333%;
  1124. flex: 0 0 58.33333%;
  1125. max-width: 58.33333%; }
  1126. .col-lg-8 {
  1127. -webkit-box-flex: 0;
  1128. -ms-flex: 0 0 66.66667%;
  1129. flex: 0 0 66.66667%;
  1130. max-width: 66.66667%; }
  1131. .col-lg-9 {
  1132. -webkit-box-flex: 0;
  1133. -ms-flex: 0 0 75%;
  1134. flex: 0 0 75%;
  1135. max-width: 75%; }
  1136. .col-lg-10 {
  1137. -webkit-box-flex: 0;
  1138. -ms-flex: 0 0 83.33333%;
  1139. flex: 0 0 83.33333%;
  1140. max-width: 83.33333%; }
  1141. .col-lg-11 {
  1142. -webkit-box-flex: 0;
  1143. -ms-flex: 0 0 91.66667%;
  1144. flex: 0 0 91.66667%;
  1145. max-width: 91.66667%; }
  1146. .col-lg-12 {
  1147. -webkit-box-flex: 0;
  1148. -ms-flex: 0 0 100%;
  1149. flex: 0 0 100%;
  1150. max-width: 100%; }
  1151. .order-lg-first {
  1152. -webkit-box-ordinal-group: 0;
  1153. -ms-flex-order: -1;
  1154. order: -1; }
  1155. .order-lg-last {
  1156. -webkit-box-ordinal-group: 14;
  1157. -ms-flex-order: 13;
  1158. order: 13; }
  1159. .order-lg-0 {
  1160. -webkit-box-ordinal-group: 1;
  1161. -ms-flex-order: 0;
  1162. order: 0; }
  1163. .order-lg-1 {
  1164. -webkit-box-ordinal-group: 2;
  1165. -ms-flex-order: 1;
  1166. order: 1; }
  1167. .order-lg-2 {
  1168. -webkit-box-ordinal-group: 3;
  1169. -ms-flex-order: 2;
  1170. order: 2; }
  1171. .order-lg-3 {
  1172. -webkit-box-ordinal-group: 4;
  1173. -ms-flex-order: 3;
  1174. order: 3; }
  1175. .order-lg-4 {
  1176. -webkit-box-ordinal-group: 5;
  1177. -ms-flex-order: 4;
  1178. order: 4; }
  1179. .order-lg-5 {
  1180. -webkit-box-ordinal-group: 6;
  1181. -ms-flex-order: 5;
  1182. order: 5; }
  1183. .order-lg-6 {
  1184. -webkit-box-ordinal-group: 7;
  1185. -ms-flex-order: 6;
  1186. order: 6; }
  1187. .order-lg-7 {
  1188. -webkit-box-ordinal-group: 8;
  1189. -ms-flex-order: 7;
  1190. order: 7; }
  1191. .order-lg-8 {
  1192. -webkit-box-ordinal-group: 9;
  1193. -ms-flex-order: 8;
  1194. order: 8; }
  1195. .order-lg-9 {
  1196. -webkit-box-ordinal-group: 10;
  1197. -ms-flex-order: 9;
  1198. order: 9; }
  1199. .order-lg-10 {
  1200. -webkit-box-ordinal-group: 11;
  1201. -ms-flex-order: 10;
  1202. order: 10; }
  1203. .order-lg-11 {
  1204. -webkit-box-ordinal-group: 12;
  1205. -ms-flex-order: 11;
  1206. order: 11; }
  1207. .order-lg-12 {
  1208. -webkit-box-ordinal-group: 13;
  1209. -ms-flex-order: 12;
  1210. order: 12; }
  1211. .offset-lg-0 {
  1212. margin-right: 0; }
  1213. .offset-lg-1 {
  1214. margin-right: 8.33333%; }
  1215. .offset-lg-2 {
  1216. margin-right: 16.66667%; }
  1217. .offset-lg-3 {
  1218. margin-right: 25%; }
  1219. .offset-lg-4 {
  1220. margin-right: 33.33333%; }
  1221. .offset-lg-5 {
  1222. margin-right: 41.66667%; }
  1223. .offset-lg-6 {
  1224. margin-right: 50%; }
  1225. .offset-lg-7 {
  1226. margin-right: 58.33333%; }
  1227. .offset-lg-8 {
  1228. margin-right: 66.66667%; }
  1229. .offset-lg-9 {
  1230. margin-right: 75%; }
  1231. .offset-lg-10 {
  1232. margin-right: 83.33333%; }
  1233. .offset-lg-11 {
  1234. margin-right: 91.66667%; } }
  1235. @media (min-width: 1399px) {
  1236. .col-xl {
  1237. -ms-flex-preferred-size: 0;
  1238. flex-basis: 0;
  1239. -webkit-box-flex: 1;
  1240. -ms-flex-positive: 1;
  1241. flex-grow: 1;
  1242. max-width: 100%; }
  1243. .col-xl-auto {
  1244. -webkit-box-flex: 0;
  1245. -ms-flex: 0 0 auto;
  1246. flex: 0 0 auto;
  1247. width: auto;
  1248. max-width: 100%; }
  1249. .col-xl-1 {
  1250. -webkit-box-flex: 0;
  1251. -ms-flex: 0 0 8.33333%;
  1252. flex: 0 0 8.33333%;
  1253. max-width: 8.33333%; }
  1254. .col-xl-2 {
  1255. -webkit-box-flex: 0;
  1256. -ms-flex: 0 0 16.66667%;
  1257. flex: 0 0 16.66667%;
  1258. max-width: 16.66667%; }
  1259. .col-xl-3 {
  1260. -webkit-box-flex: 0;
  1261. -ms-flex: 0 0 25%;
  1262. flex: 0 0 25%;
  1263. max-width: 25%; }
  1264. .col-xl-4 {
  1265. -webkit-box-flex: 0;
  1266. -ms-flex: 0 0 33.33333%;
  1267. flex: 0 0 33.33333%;
  1268. max-width: 33.33333%; }
  1269. .col-xl-5 {
  1270. -webkit-box-flex: 0;
  1271. -ms-flex: 0 0 41.66667%;
  1272. flex: 0 0 41.66667%;
  1273. max-width: 41.66667%; }
  1274. .col-xl-6 {
  1275. -webkit-box-flex: 0;
  1276. -ms-flex: 0 0 50%;
  1277. flex: 0 0 50%;
  1278. max-width: 50%; }
  1279. .col-xl-7 {
  1280. -webkit-box-flex: 0;
  1281. -ms-flex: 0 0 58.33333%;
  1282. flex: 0 0 58.33333%;
  1283. max-width: 58.33333%; }
  1284. .col-xl-8 {
  1285. -webkit-box-flex: 0;
  1286. -ms-flex: 0 0 66.66667%;
  1287. flex: 0 0 66.66667%;
  1288. max-width: 66.66667%; }
  1289. .col-xl-9 {
  1290. -webkit-box-flex: 0;
  1291. -ms-flex: 0 0 75%;
  1292. flex: 0 0 75%;
  1293. max-width: 75%; }
  1294. .col-xl-10 {
  1295. -webkit-box-flex: 0;
  1296. -ms-flex: 0 0 83.33333%;
  1297. flex: 0 0 83.33333%;
  1298. max-width: 83.33333%; }
  1299. .col-xl-11 {
  1300. -webkit-box-flex: 0;
  1301. -ms-flex: 0 0 91.66667%;
  1302. flex: 0 0 91.66667%;
  1303. max-width: 91.66667%; }
  1304. .col-xl-12 {
  1305. -webkit-box-flex: 0;
  1306. -ms-flex: 0 0 100%;
  1307. flex: 0 0 100%;
  1308. max-width: 100%; }
  1309. .order-xl-first {
  1310. -webkit-box-ordinal-group: 0;
  1311. -ms-flex-order: -1;
  1312. order: -1; }
  1313. .order-xl-last {
  1314. -webkit-box-ordinal-group: 14;
  1315. -ms-flex-order: 13;
  1316. order: 13; }
  1317. .order-xl-0 {
  1318. -webkit-box-ordinal-group: 1;
  1319. -ms-flex-order: 0;
  1320. order: 0; }
  1321. .order-xl-1 {
  1322. -webkit-box-ordinal-group: 2;
  1323. -ms-flex-order: 1;
  1324. order: 1; }
  1325. .order-xl-2 {
  1326. -webkit-box-ordinal-group: 3;
  1327. -ms-flex-order: 2;
  1328. order: 2; }
  1329. .order-xl-3 {
  1330. -webkit-box-ordinal-group: 4;
  1331. -ms-flex-order: 3;
  1332. order: 3; }
  1333. .order-xl-4 {
  1334. -webkit-box-ordinal-group: 5;
  1335. -ms-flex-order: 4;
  1336. order: 4; }
  1337. .order-xl-5 {
  1338. -webkit-box-ordinal-group: 6;
  1339. -ms-flex-order: 5;
  1340. order: 5; }
  1341. .order-xl-6 {
  1342. -webkit-box-ordinal-group: 7;
  1343. -ms-flex-order: 6;
  1344. order: 6; }
  1345. .order-xl-7 {
  1346. -webkit-box-ordinal-group: 8;
  1347. -ms-flex-order: 7;
  1348. order: 7; }
  1349. .order-xl-8 {
  1350. -webkit-box-ordinal-group: 9;
  1351. -ms-flex-order: 8;
  1352. order: 8; }
  1353. .order-xl-9 {
  1354. -webkit-box-ordinal-group: 10;
  1355. -ms-flex-order: 9;
  1356. order: 9; }
  1357. .order-xl-10 {
  1358. -webkit-box-ordinal-group: 11;
  1359. -ms-flex-order: 10;
  1360. order: 10; }
  1361. .order-xl-11 {
  1362. -webkit-box-ordinal-group: 12;
  1363. -ms-flex-order: 11;
  1364. order: 11; }
  1365. .order-xl-12 {
  1366. -webkit-box-ordinal-group: 13;
  1367. -ms-flex-order: 12;
  1368. order: 12; }
  1369. .offset-xl-0 {
  1370. margin-right: 0; }
  1371. .offset-xl-1 {
  1372. margin-right: 8.33333%; }
  1373. .offset-xl-2 {
  1374. margin-right: 16.66667%; }
  1375. .offset-xl-3 {
  1376. margin-right: 25%; }
  1377. .offset-xl-4 {
  1378. margin-right: 33.33333%; }
  1379. .offset-xl-5 {
  1380. margin-right: 41.66667%; }
  1381. .offset-xl-6 {
  1382. margin-right: 50%; }
  1383. .offset-xl-7 {
  1384. margin-right: 58.33333%; }
  1385. .offset-xl-8 {
  1386. margin-right: 66.66667%; }
  1387. .offset-xl-9 {
  1388. margin-right: 75%; }
  1389. .offset-xl-10 {
  1390. margin-right: 83.33333%; }
  1391. .offset-xl-11 {
  1392. margin-right: 91.66667%; } }
  1393. .table {
  1394. width: 100%;
  1395. margin-bottom: 1rem;
  1396. color: #212529; }
  1397. .table th,
  1398. .table td {
  1399. padding: 0.75rem;
  1400. vertical-align: top;
  1401. border-top: 1px solid #e9e9e9; }
  1402. .table thead th {
  1403. vertical-align: bottom;
  1404. border-bottom: 2px solid #e9e9e9; }
  1405. .table tbody + tbody {
  1406. border-top: 2px solid #e9e9e9; }
  1407. .table-sm th,
  1408. .table-sm td {
  1409. padding: 0.3rem; }
  1410. .table-bordered {
  1411. border: 1px solid #e9e9e9; }
  1412. .table-bordered th,
  1413. .table-bordered td {
  1414. border: 1px solid #e9e9e9; }
  1415. .table-bordered thead th,
  1416. .table-bordered thead td {
  1417. border-bottom-width: 2px; }
  1418. .table-borderless th,
  1419. .table-borderless td,
  1420. .table-borderless thead th,
  1421. .table-borderless tbody + tbody {
  1422. border: 0; }
  1423. .table-striped tbody tr:nth-of-type(odd) {
  1424. background-color: rgba(80, 80, 80, 0.02); }
  1425. .table-hover tbody tr:hover {
  1426. color: #212529;
  1427. background-color: #fdfdfd; }
  1428. .table-primary,
  1429. .table-primary > th,
  1430. .table-primary > td {
  1431. background-color: #ded5ea; }
  1432. .table-primary th,
  1433. .table-primary td,
  1434. .table-primary thead th,
  1435. .table-primary tbody + tbody {
  1436. border-color: #c1b2d9; }
  1437. .table-hover .table-primary:hover {
  1438. background-color: #d1c4e2; }
  1439. .table-hover .table-primary:hover > td,
  1440. .table-hover .table-primary:hover > th {
  1441. background-color: #d1c4e2; }
  1442. .table-secondary,
  1443. .table-secondary > th,
  1444. .table-secondary > td {
  1445. background-color: #dddfe2; }
  1446. .table-secondary th,
  1447. .table-secondary td,
  1448. .table-secondary thead th,
  1449. .table-secondary tbody + tbody {
  1450. border-color: #c0c4c8; }
  1451. .table-hover .table-secondary:hover {
  1452. background-color: #cfd2d6; }
  1453. .table-hover .table-secondary:hover > td,
  1454. .table-hover .table-secondary:hover > th {
  1455. background-color: #cfd2d6; }
  1456. .table-success,
  1457. .table-success > th,
  1458. .table-success > td {
  1459. background-color: #c0f0eb; }
  1460. .table-success th,
  1461. .table-success td,
  1462. .table-success thead th,
  1463. .table-success tbody + tbody {
  1464. border-color: #89e3da; }
  1465. .table-hover .table-success:hover {
  1466. background-color: #abebe4; }
  1467. .table-hover .table-success:hover > td,
  1468. .table-hover .table-success:hover > th {
  1469. background-color: #abebe4; }
  1470. .table-info,
  1471. .table-info > th,
  1472. .table-info > td {
  1473. background-color: #c1e2fc; }
  1474. .table-info th,
  1475. .table-info td,
  1476. .table-info thead th,
  1477. .table-info tbody + tbody {
  1478. border-color: #8cc8f9; }
  1479. .table-hover .table-info:hover {
  1480. background-color: #a9d7fb; }
  1481. .table-hover .table-info:hover > td,
  1482. .table-hover .table-info:hover > th {
  1483. background-color: #a9d7fb; }
  1484. .table-warning,
  1485. .table-warning > th,
  1486. .table-warning > td {
  1487. background-color: #ffeeca; }
  1488. .table-warning th,
  1489. .table-warning td,
  1490. .table-warning thead th,
  1491. .table-warning tbody + tbody {
  1492. border-color: #ffdf9c; }
  1493. .table-hover .table-warning:hover {
  1494. background-color: #ffe6b1; }
  1495. .table-hover .table-warning:hover > td,
  1496. .table-hover .table-warning:hover > th {
  1497. background-color: #ffe6b1; }
  1498. .table-danger,
  1499. .table-danger > th,
  1500. .table-danger > td {
  1501. background-color: #fec8e1; }
  1502. .table-danger th,
  1503. .table-danger td,
  1504. .table-danger thead th,
  1505. .table-danger tbody + tbody {
  1506. border-color: #fe98c8; }
  1507. .table-hover .table-danger:hover {
  1508. background-color: #feafd3; }
  1509. .table-hover .table-danger:hover > td,
  1510. .table-hover .table-danger:hover > th {
  1511. background-color: #feafd3; }
  1512. .table-light,
  1513. .table-light > th,
  1514. .table-light > td {
  1515. background-color: white; }
  1516. .table-light th,
  1517. .table-light td,
  1518. .table-light thead th,
  1519. .table-light tbody + tbody {
  1520. border-color: white; }
  1521. .table-hover .table-light:hover {
  1522. background-color: #f2f2f2; }
  1523. .table-hover .table-light:hover > td,
  1524. .table-hover .table-light:hover > th {
  1525. background-color: #f2f2f2; }
  1526. .table-dark,
  1527. .table-dark > th,
  1528. .table-dark > td {
  1529. background-color: #cecece; }
  1530. .table-dark th,
  1531. .table-dark td,
  1532. .table-dark thead th,
  1533. .table-dark tbody + tbody {
  1534. border-color: #a4a4a4; }
  1535. .table-hover .table-dark:hover {
  1536. background-color: #c1c1c1; }
  1537. .table-hover .table-dark:hover > td,
  1538. .table-hover .table-dark:hover > th {
  1539. background-color: #c1c1c1; }
  1540. .table-active,
  1541. .table-active > th,
  1542. .table-active > td {
  1543. background-color: #fdfdfd; }
  1544. .table-hover .table-active:hover {
  1545. background-color: #f0f0f0; }
  1546. .table-hover .table-active:hover > td,
  1547. .table-hover .table-active:hover > th {
  1548. background-color: #f0f0f0; }
  1549. .table .thead-dark th {
  1550. color: #fff;
  1551. background-color: dimgray;
  1552. border-color: #5d5d5d; }
  1553. .table .thead-light th {
  1554. color: #495057;
  1555. background-color: #f3f3f3;
  1556. border-color: #e9e9e9; }
  1557. .table-dark {
  1558. color: #fff;
  1559. background-color: dimgray; }
  1560. .table-dark th,
  1561. .table-dark td,
  1562. .table-dark thead th {
  1563. border-color: #5d5d5d; }
  1564. .table-dark.table-bordered {
  1565. border: 0; }
  1566. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1567. background-color: rgba(255, 255, 255, 0.05); }
  1568. .table-dark.table-hover tbody tr:hover {
  1569. color: #fff;
  1570. background-color: #886ab5; }
  1571. @media (max-width: 575.98px) {
  1572. .table-responsive-sm {
  1573. display: block;
  1574. width: 100%;
  1575. overflow-x: auto;
  1576. -webkit-overflow-scrolling: touch; }
  1577. .table-responsive-sm > .table-bordered {
  1578. border: 0; } }
  1579. @media (max-width: 767.98px) {
  1580. .table-responsive-md {
  1581. display: block;
  1582. width: 100%;
  1583. overflow-x: auto;
  1584. -webkit-overflow-scrolling: touch; }
  1585. .table-responsive-md > .table-bordered {
  1586. border: 0; } }
  1587. @media (max-width: 991.98px) {
  1588. .table-responsive-lg {
  1589. display: block;
  1590. width: 100%;
  1591. overflow-x: auto;
  1592. -webkit-overflow-scrolling: touch; }
  1593. .table-responsive-lg > .table-bordered {
  1594. border: 0; } }
  1595. @media (max-width: 1398.98px) {
  1596. .table-responsive-xl {
  1597. display: block;
  1598. width: 100%;
  1599. overflow-x: auto;
  1600. -webkit-overflow-scrolling: touch; }
  1601. .table-responsive-xl > .table-bordered {
  1602. border: 0; } }
  1603. .table-responsive {
  1604. display: block;
  1605. width: 100%;
  1606. overflow-x: auto;
  1607. -webkit-overflow-scrolling: touch; }
  1608. .table-responsive > .table-bordered {
  1609. border: 0; }
  1610. .form-control {
  1611. display: block;
  1612. width: 100%;
  1613. height: calc(1.47em + 1rem + 2px);
  1614. padding: 0.5rem 0.875rem;
  1615. font-size: 0.8125rem;
  1616. font-weight: 400;
  1617. line-height: 1.47;
  1618. color: #495057;
  1619. background-color: #fff;
  1620. background-clip: padding-box;
  1621. border: 1px solid #E5E5E5;
  1622. border-radius: 4px;
  1623. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  1624. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  1625. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1626. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  1627. .form-control::-ms-expand {
  1628. background-color: transparent;
  1629. border: 0; }
  1630. .form-control:focus {
  1631. color: #495057;
  1632. background-color: #fff;
  1633. border-color: #886ab5;
  1634. outline: 0;
  1635. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  1636. box-shadow: 0 0 0 0.2rem transparent; }
  1637. .form-control::-webkit-input-placeholder {
  1638. color: #868e96;
  1639. opacity: 1; }
  1640. .form-control::-moz-placeholder {
  1641. color: #868e96;
  1642. opacity: 1; }
  1643. .form-control:-ms-input-placeholder {
  1644. color: #868e96;
  1645. opacity: 1; }
  1646. .form-control::-ms-input-placeholder {
  1647. color: #868e96;
  1648. opacity: 1; }
  1649. .form-control::placeholder {
  1650. color: #868e96;
  1651. opacity: 1; }
  1652. .form-control:disabled, .form-control[readonly] {
  1653. background-color: #f3f3f3;
  1654. opacity: 1; }
  1655. select.form-control:focus::-ms-value {
  1656. color: #495057;
  1657. background-color: #fff; }
  1658. .form-control-file,
  1659. .form-control-range {
  1660. display: block;
  1661. width: 100%; }
  1662. .col-form-label {
  1663. padding-top: calc(0.5rem + 1px);
  1664. padding-bottom: calc(0.5rem + 1px);
  1665. margin-bottom: 0;
  1666. font-size: inherit;
  1667. line-height: 1.47; }
  1668. .col-form-label-lg {
  1669. padding-top: calc(0.75rem + 1px);
  1670. padding-bottom: calc(0.75rem + 1px);
  1671. font-size: 1rem;
  1672. line-height: 1.5; }
  1673. .col-form-label-sm {
  1674. padding-top: calc(0.375rem + 1px);
  1675. padding-bottom: calc(0.375rem + 1px);
  1676. font-size: 0.75rem;
  1677. line-height: 1.5; }
  1678. .form-control-plaintext {
  1679. display: block;
  1680. width: 100%;
  1681. padding-top: 0.5rem;
  1682. padding-bottom: 0.5rem;
  1683. margin-bottom: 0;
  1684. line-height: 1.47;
  1685. color: #212529;
  1686. background-color: transparent;
  1687. border: solid transparent;
  1688. border-width: 1px 0; }
  1689. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1690. padding-left: 0;
  1691. padding-right: 0; }
  1692. .form-control-sm {
  1693. height: calc(1.5em + 0.75rem + 2px);
  1694. padding: 0.375rem 0.844rem;
  1695. font-size: 0.75rem;
  1696. line-height: 1.5;
  1697. border-radius: 4px; }
  1698. .form-control-lg {
  1699. height: calc(1.5em + 1.5rem + 2px);
  1700. padding: 0.75rem 1.5rem;
  1701. font-size: 1rem;
  1702. line-height: 1.5;
  1703. border-radius: 4px; }
  1704. select.form-control[size], select.form-control[multiple] {
  1705. height: auto; }
  1706. textarea.form-control {
  1707. height: auto; }
  1708. .form-group {
  1709. margin-bottom: 1.5rem; }
  1710. .form-text {
  1711. display: block;
  1712. margin-top: 0.25rem; }
  1713. .form-row {
  1714. display: -webkit-box;
  1715. display: -ms-flexbox;
  1716. display: flex;
  1717. -ms-flex-wrap: wrap;
  1718. flex-wrap: wrap;
  1719. margin-left: -5px;
  1720. margin-right: -5px; }
  1721. .form-row > .col,
  1722. .form-row > [class*="col-"] {
  1723. padding-left: 5px;
  1724. padding-right: 5px; }
  1725. .form-check {
  1726. position: relative;
  1727. display: block;
  1728. padding-right: 1.25rem; }
  1729. .form-check-input {
  1730. position: absolute;
  1731. margin-top: 0.3rem;
  1732. margin-right: -1.25rem; }
  1733. .form-check-input:disabled ~ .form-check-label {
  1734. color: #868e96; }
  1735. .form-check-label {
  1736. margin-bottom: 0; }
  1737. .form-check-inline {
  1738. display: -webkit-inline-box;
  1739. display: -ms-inline-flexbox;
  1740. display: inline-flex;
  1741. -webkit-box-align: center;
  1742. -ms-flex-align: center;
  1743. align-items: center;
  1744. padding-right: 0;
  1745. margin-left: 0.75rem; }
  1746. .form-check-inline .form-check-input {
  1747. position: static;
  1748. margin-top: 0;
  1749. margin-left: 0.3125rem;
  1750. margin-right: 0; }
  1751. .valid-feedback {
  1752. display: none;
  1753. width: 100%;
  1754. margin-top: 0.25rem;
  1755. font-size: 80%;
  1756. color: #1dc9b7; }
  1757. .valid-tooltip {
  1758. position: absolute;
  1759. top: 100%;
  1760. z-index: 5;
  1761. display: none;
  1762. max-width: 100%;
  1763. padding: 0.3rem 0.6rem;
  1764. margin-top: .1rem;
  1765. font-size: 0.75rem;
  1766. line-height: 1.47;
  1767. color: #fff;
  1768. background-color: #1dc9b7;
  1769. border-radius: 5px; }
  1770. .was-validated .form-control:valid, .form-control.is-valid {
  1771. border-color: #1dc9b7;
  1772. padding-left: calc(1.47em + 1rem);
  1773. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231dc9b7' 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");
  1774. background-repeat: no-repeat;
  1775. background-position: center left calc(0.3675em + 0.25rem);
  1776. background-size: calc(0.735em + 0.5rem) calc(0.735em + 0.5rem); }
  1777. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  1778. border-color: #1dc9b7;
  1779. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25);
  1780. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25); }
  1781. .was-validated .form-control:valid ~ .valid-feedback,
  1782. .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  1783. .form-control.is-valid ~ .valid-tooltip {
  1784. display: block; }
  1785. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  1786. padding-left: calc(1.47em + 1rem);
  1787. background-position: top calc(0.3675em + 0.25rem) left calc(0.3675em + 0.25rem); }
  1788. .was-validated .custom-select:valid, .custom-select.is-valid {
  1789. border-color: #1dc9b7;
  1790. padding-left: calc((1em + 1rem) * 3 / 4 + 1.875rem);
  1791. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left 0.875rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231dc9b7' 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.875rem/calc(0.735em + 0.5rem) calc(0.735em + 0.5rem); }
  1792. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  1793. border-color: #1dc9b7;
  1794. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25);
  1795. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25); }
  1796. .was-validated .custom-select:valid ~ .valid-feedback,
  1797. .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
  1798. .custom-select.is-valid ~ .valid-tooltip {
  1799. display: block; }
  1800. .was-validated .form-control-file:valid ~ .valid-feedback,
  1801. .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
  1802. .form-control-file.is-valid ~ .valid-tooltip {
  1803. display: block; }
  1804. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1805. color: #1dc9b7; }
  1806. .was-validated .form-check-input:valid ~ .valid-feedback,
  1807. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  1808. .form-check-input.is-valid ~ .valid-tooltip {
  1809. display: block; }
  1810. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  1811. color: #1dc9b7; }
  1812. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  1813. border-color: #1dc9b7; }
  1814. .was-validated .custom-control-input:valid ~ .valid-feedback,
  1815. .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
  1816. .custom-control-input.is-valid ~ .valid-tooltip {
  1817. display: block; }
  1818. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1819. border-color: #37e2d0;
  1820. background-color: #37e2d0; }
  1821. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1822. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25);
  1823. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25); }
  1824. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  1825. border-color: #1dc9b7; }
  1826. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  1827. border-color: #1dc9b7; }
  1828. .was-validated .custom-file-input:valid ~ .valid-feedback,
  1829. .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
  1830. .custom-file-input.is-valid ~ .valid-tooltip {
  1831. display: block; }
  1832. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  1833. border-color: #1dc9b7;
  1834. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25);
  1835. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.25); }
  1836. .invalid-feedback {
  1837. display: none;
  1838. width: 100%;
  1839. margin-top: 0.25rem;
  1840. font-size: 80%;
  1841. color: #fd3995; }
  1842. .invalid-tooltip {
  1843. position: absolute;
  1844. top: 100%;
  1845. z-index: 5;
  1846. display: none;
  1847. max-width: 100%;
  1848. padding: 0.3rem 0.6rem;
  1849. margin-top: .1rem;
  1850. font-size: 0.75rem;
  1851. line-height: 1.47;
  1852. color: #fff;
  1853. background-color: #fd3995;
  1854. border-radius: 5px; }
  1855. .was-validated .form-control:invalid, .form-control.is-invalid {
  1856. border-color: #fd3995;
  1857. padding-left: calc(1.47em + 1rem);
  1858. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fd3995' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23fd3995' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  1859. background-repeat: no-repeat;
  1860. background-position: center left calc(0.3675em + 0.25rem);
  1861. background-size: calc(0.735em + 0.5rem) calc(0.735em + 0.5rem); }
  1862. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  1863. border-color: #fd3995;
  1864. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25);
  1865. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25); }
  1866. .was-validated .form-control:invalid ~ .invalid-feedback,
  1867. .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  1868. .form-control.is-invalid ~ .invalid-tooltip {
  1869. display: block; }
  1870. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  1871. padding-left: calc(1.47em + 1rem);
  1872. background-position: top calc(0.3675em + 0.25rem) left calc(0.3675em + 0.25rem); }
  1873. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  1874. border-color: #fd3995;
  1875. padding-left: calc((1em + 1rem) * 3 / 4 + 1.875rem);
  1876. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left 0.875rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fd3995' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23fd3995' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.875rem/calc(0.735em + 0.5rem) calc(0.735em + 0.5rem); }
  1877. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  1878. border-color: #fd3995;
  1879. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25);
  1880. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25); }
  1881. .was-validated .custom-select:invalid ~ .invalid-feedback,
  1882. .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
  1883. .custom-select.is-invalid ~ .invalid-tooltip {
  1884. display: block; }
  1885. .was-validated .form-control-file:invalid ~ .invalid-feedback,
  1886. .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
  1887. .form-control-file.is-invalid ~ .invalid-tooltip {
  1888. display: block; }
  1889. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1890. color: #fd3995; }
  1891. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1892. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  1893. .form-check-input.is-invalid ~ .invalid-tooltip {
  1894. display: block; }
  1895. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  1896. color: #fd3995; }
  1897. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  1898. border-color: #fd3995; }
  1899. .was-validated .custom-control-input:invalid ~ .invalid-feedback,
  1900. .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
  1901. .custom-control-input.is-invalid ~ .invalid-tooltip {
  1902. display: block; }
  1903. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1904. border-color: #fe6bb0;
  1905. background-color: #fe6bb0; }
  1906. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  1907. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25);
  1908. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25); }
  1909. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  1910. border-color: #fd3995; }
  1911. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  1912. border-color: #fd3995; }
  1913. .was-validated .custom-file-input:invalid ~ .invalid-feedback,
  1914. .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
  1915. .custom-file-input.is-invalid ~ .invalid-tooltip {
  1916. display: block; }
  1917. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  1918. border-color: #fd3995;
  1919. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25);
  1920. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.25); }
  1921. .form-inline {
  1922. display: -webkit-box;
  1923. display: -ms-flexbox;
  1924. display: flex;
  1925. -webkit-box-orient: horizontal;
  1926. -webkit-box-direction: normal;
  1927. -ms-flex-flow: row wrap;
  1928. flex-flow: row wrap;
  1929. -webkit-box-align: center;
  1930. -ms-flex-align: center;
  1931. align-items: center; }
  1932. .form-inline .form-check {
  1933. width: 100%; }
  1934. @media (min-width: 576px) {
  1935. .form-inline label {
  1936. display: -webkit-box;
  1937. display: -ms-flexbox;
  1938. display: flex;
  1939. -webkit-box-align: center;
  1940. -ms-flex-align: center;
  1941. align-items: center;
  1942. -webkit-box-pack: center;
  1943. -ms-flex-pack: center;
  1944. justify-content: center;
  1945. margin-bottom: 0; }
  1946. .form-inline .form-group {
  1947. display: -webkit-box;
  1948. display: -ms-flexbox;
  1949. display: flex;
  1950. -webkit-box-flex: 0;
  1951. -ms-flex: 0 0 auto;
  1952. flex: 0 0 auto;
  1953. -webkit-box-orient: horizontal;
  1954. -webkit-box-direction: normal;
  1955. -ms-flex-flow: row wrap;
  1956. flex-flow: row wrap;
  1957. -webkit-box-align: center;
  1958. -ms-flex-align: center;
  1959. align-items: center;
  1960. margin-bottom: 0; }
  1961. .form-inline .form-control {
  1962. display: inline-block;
  1963. width: auto;
  1964. vertical-align: middle; }
  1965. .form-inline .form-control-plaintext {
  1966. display: inline-block; }
  1967. .form-inline .input-group,
  1968. .form-inline .custom-select {
  1969. width: auto; }
  1970. .form-inline .form-check {
  1971. display: -webkit-box;
  1972. display: -ms-flexbox;
  1973. display: flex;
  1974. -webkit-box-align: center;
  1975. -ms-flex-align: center;
  1976. align-items: center;
  1977. -webkit-box-pack: center;
  1978. -ms-flex-pack: center;
  1979. justify-content: center;
  1980. width: auto;
  1981. padding-right: 0; }
  1982. .form-inline .form-check-input {
  1983. position: relative;
  1984. -ms-flex-negative: 0;
  1985. flex-shrink: 0;
  1986. margin-top: 0;
  1987. margin-left: 0.25rem;
  1988. margin-right: 0; }
  1989. .form-inline .custom-control {
  1990. -webkit-box-align: center;
  1991. -ms-flex-align: center;
  1992. align-items: center;
  1993. -webkit-box-pack: center;
  1994. -ms-flex-pack: center;
  1995. justify-content: center; }
  1996. .form-inline .custom-control-label {
  1997. margin-bottom: 0; } }
  1998. .btn {
  1999. display: inline-block;
  2000. font-weight: 400;
  2001. color: #212529;
  2002. text-align: center;
  2003. vertical-align: middle;
  2004. -webkit-user-select: none;
  2005. -moz-user-select: none;
  2006. -ms-user-select: none;
  2007. user-select: none;
  2008. background-color: transparent;
  2009. border: 1px solid transparent;
  2010. padding: 0.5rem 1.125rem;
  2011. font-size: 0.8125rem;
  2012. line-height: 1.47;
  2013. border-radius: 4px;
  2014. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2015. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2016. 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;
  2017. 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, -webkit-box-shadow 0.15s ease-in-out; }
  2018. .btn:hover {
  2019. color: #212529;
  2020. text-decoration: none; }
  2021. .btn:focus, .btn.focus {
  2022. outline: 0;
  2023. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  2024. box-shadow: 0 0 0 0.2rem transparent; }
  2025. .btn.disabled, .btn:disabled {
  2026. opacity: 0.65; }
  2027. a.btn.disabled,
  2028. fieldset:disabled a.btn {
  2029. pointer-events: none; }
  2030. .btn-primary {
  2031. color: #fff;
  2032. background-color: #886ab5;
  2033. border-color: #886ab5; }
  2034. .btn-primary:hover {
  2035. color: #fff;
  2036. background-color: #7453a6;
  2037. border-color: #6e4e9e; }
  2038. .btn-primary:focus, .btn-primary.focus {
  2039. -webkit-box-shadow: 0 0 0 0.2rem rgba(154, 128, 192, 0.5);
  2040. box-shadow: 0 0 0 0.2rem rgba(154, 128, 192, 0.5); }
  2041. .btn-primary.disabled, .btn-primary:disabled {
  2042. color: #fff;
  2043. background-color: #886ab5;
  2044. border-color: #886ab5; }
  2045. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  2046. .show > .btn-primary.dropdown-toggle {
  2047. color: #fff;
  2048. background-color: #6e4e9e;
  2049. border-color: #684a95; }
  2050. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  2051. .show > .btn-primary.dropdown-toggle:focus {
  2052. -webkit-box-shadow: 0 0 0 0.2rem rgba(154, 128, 192, 0.5);
  2053. box-shadow: 0 0 0 0.2rem rgba(154, 128, 192, 0.5); }
  2054. .btn-secondary {
  2055. color: #fff;
  2056. background-color: #868e96;
  2057. border-color: #868e96; }
  2058. .btn-secondary:hover {
  2059. color: #fff;
  2060. background-color: #727b84;
  2061. border-color: #6c757d; }
  2062. .btn-secondary:focus, .btn-secondary.focus {
  2063. -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 159, 166, 0.5);
  2064. box-shadow: 0 0 0 0.2rem rgba(152, 159, 166, 0.5); }
  2065. .btn-secondary.disabled, .btn-secondary:disabled {
  2066. color: #fff;
  2067. background-color: #868e96;
  2068. border-color: #868e96; }
  2069. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  2070. .show > .btn-secondary.dropdown-toggle {
  2071. color: #fff;
  2072. background-color: #6c757d;
  2073. border-color: #666e76; }
  2074. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2075. .show > .btn-secondary.dropdown-toggle:focus {
  2076. -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 159, 166, 0.5);
  2077. box-shadow: 0 0 0 0.2rem rgba(152, 159, 166, 0.5); }
  2078. .btn-success {
  2079. color: #fff;
  2080. background-color: #1dc9b7;
  2081. border-color: #1dc9b7; }
  2082. .btn-success:hover {
  2083. color: #fff;
  2084. background-color: #18a899;
  2085. border-color: #179c8e; }
  2086. .btn-success:focus, .btn-success.focus {
  2087. -webkit-box-shadow: 0 0 0 0.2rem rgba(63, 209, 194, 0.5);
  2088. box-shadow: 0 0 0 0.2rem rgba(63, 209, 194, 0.5); }
  2089. .btn-success.disabled, .btn-success:disabled {
  2090. color: #fff;
  2091. background-color: #1dc9b7;
  2092. border-color: #1dc9b7; }
  2093. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  2094. .show > .btn-success.dropdown-toggle {
  2095. color: #fff;
  2096. background-color: #179c8e;
  2097. border-color: #159184; }
  2098. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  2099. .show > .btn-success.dropdown-toggle:focus {
  2100. -webkit-box-shadow: 0 0 0 0.2rem rgba(63, 209, 194, 0.5);
  2101. box-shadow: 0 0 0 0.2rem rgba(63, 209, 194, 0.5); }
  2102. .btn-info {
  2103. color: #fff;
  2104. background-color: #2196F3;
  2105. border-color: #2196F3; }
  2106. .btn-info:hover {
  2107. color: #fff;
  2108. background-color: #0c83e2;
  2109. border-color: #0c7cd5; }
  2110. .btn-info:focus, .btn-info.focus {
  2111. -webkit-box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
  2112. box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5); }
  2113. .btn-info.disabled, .btn-info:disabled {
  2114. color: #fff;
  2115. background-color: #2196F3;
  2116. border-color: #2196F3; }
  2117. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  2118. .show > .btn-info.dropdown-toggle {
  2119. color: #fff;
  2120. background-color: #0c7cd5;
  2121. border-color: #0b75c9; }
  2122. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  2123. .show > .btn-info.dropdown-toggle:focus {
  2124. -webkit-box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
  2125. box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5); }
  2126. .btn-warning {
  2127. color: #212529;
  2128. background-color: #ffc241;
  2129. border-color: #ffc241; }
  2130. .btn-warning:hover {
  2131. color: #212529;
  2132. background-color: #ffb61b;
  2133. border-color: #ffb20e; }
  2134. .btn-warning:focus, .btn-warning.focus {
  2135. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 61, 0.5);
  2136. box-shadow: 0 0 0 0.2rem rgba(222, 170, 61, 0.5); }
  2137. .btn-warning.disabled, .btn-warning:disabled {
  2138. color: #212529;
  2139. background-color: #ffc241;
  2140. border-color: #ffc241; }
  2141. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  2142. .show > .btn-warning.dropdown-toggle {
  2143. color: #212529;
  2144. background-color: #ffb20e;
  2145. border-color: #ffae01; }
  2146. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  2147. .show > .btn-warning.dropdown-toggle:focus {
  2148. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 61, 0.5);
  2149. box-shadow: 0 0 0 0.2rem rgba(222, 170, 61, 0.5); }
  2150. .btn-danger {
  2151. color: #fff;
  2152. background-color: #fd3995;
  2153. border-color: #fd3995; }
  2154. .btn-danger:hover {
  2155. color: #fff;
  2156. background-color: #fd1381;
  2157. border-color: #fc077a; }
  2158. .btn-danger:focus, .btn-danger.focus {
  2159. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 87, 165, 0.5);
  2160. box-shadow: 0 0 0 0.2rem rgba(253, 87, 165, 0.5); }
  2161. .btn-danger.disabled, .btn-danger:disabled {
  2162. color: #fff;
  2163. background-color: #fd3995;
  2164. border-color: #fd3995; }
  2165. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  2166. .show > .btn-danger.dropdown-toggle {
  2167. color: #fff;
  2168. background-color: #fc077a;
  2169. border-color: #f40274; }
  2170. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  2171. .show > .btn-danger.dropdown-toggle:focus {
  2172. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 87, 165, 0.5);
  2173. box-shadow: 0 0 0 0.2rem rgba(253, 87, 165, 0.5); }
  2174. .btn-light {
  2175. color: #212529;
  2176. background-color: #fff;
  2177. border-color: #fff; }
  2178. .btn-light:hover {
  2179. color: #212529;
  2180. background-color: #ececec;
  2181. border-color: #e6e6e6; }
  2182. .btn-light:focus, .btn-light.focus {
  2183. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
  2184. box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  2185. .btn-light.disabled, .btn-light:disabled {
  2186. color: #212529;
  2187. background-color: #fff;
  2188. border-color: #fff; }
  2189. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  2190. .show > .btn-light.dropdown-toggle {
  2191. color: #212529;
  2192. background-color: #e6e6e6;
  2193. border-color: #dfdfdf; }
  2194. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  2195. .show > .btn-light.dropdown-toggle:focus {
  2196. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
  2197. box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  2198. .btn-dark {
  2199. color: #fff;
  2200. background-color: #505050;
  2201. border-color: #505050; }
  2202. .btn-dark:hover {
  2203. color: #fff;
  2204. background-color: #3d3d3d;
  2205. border-color: #363636; }
  2206. .btn-dark:focus, .btn-dark.focus {
  2207. -webkit-box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
  2208. box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5); }
  2209. .btn-dark.disabled, .btn-dark:disabled {
  2210. color: #fff;
  2211. background-color: #505050;
  2212. border-color: #505050; }
  2213. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  2214. .show > .btn-dark.dropdown-toggle {
  2215. color: #fff;
  2216. background-color: #363636;
  2217. border-color: #303030; }
  2218. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  2219. .show > .btn-dark.dropdown-toggle:focus {
  2220. -webkit-box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
  2221. box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5); }
  2222. .btn-outline-primary {
  2223. color: #886ab5;
  2224. border-color: #886ab5; }
  2225. .btn-outline-primary:hover {
  2226. color: #fff;
  2227. background-color: #886ab5;
  2228. border-color: #886ab5; }
  2229. .btn-outline-primary:focus, .btn-outline-primary.focus {
  2230. -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5);
  2231. box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5); }
  2232. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  2233. color: #886ab5;
  2234. background-color: transparent; }
  2235. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  2236. .show > .btn-outline-primary.dropdown-toggle {
  2237. color: #fff;
  2238. background-color: #886ab5;
  2239. border-color: #886ab5; }
  2240. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2241. .show > .btn-outline-primary.dropdown-toggle:focus {
  2242. -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5);
  2243. box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5); }
  2244. .btn-outline-secondary {
  2245. color: #868e96;
  2246. border-color: #868e96; }
  2247. .btn-outline-secondary:hover {
  2248. color: #fff;
  2249. background-color: #868e96;
  2250. border-color: #868e96; }
  2251. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  2252. -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
  2253. box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
  2254. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  2255. color: #868e96;
  2256. background-color: transparent; }
  2257. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2258. .show > .btn-outline-secondary.dropdown-toggle {
  2259. color: #fff;
  2260. background-color: #868e96;
  2261. border-color: #868e96; }
  2262. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2263. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2264. -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
  2265. box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
  2266. .btn-outline-success {
  2267. color: #1dc9b7;
  2268. border-color: #1dc9b7; }
  2269. .btn-outline-success:hover {
  2270. color: #fff;
  2271. background-color: #1dc9b7;
  2272. border-color: #1dc9b7; }
  2273. .btn-outline-success:focus, .btn-outline-success.focus {
  2274. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5);
  2275. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5); }
  2276. .btn-outline-success.disabled, .btn-outline-success:disabled {
  2277. color: #1dc9b7;
  2278. background-color: transparent; }
  2279. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  2280. .show > .btn-outline-success.dropdown-toggle {
  2281. color: #fff;
  2282. background-color: #1dc9b7;
  2283. border-color: #1dc9b7; }
  2284. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2285. .show > .btn-outline-success.dropdown-toggle:focus {
  2286. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5);
  2287. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5); }
  2288. .btn-outline-info {
  2289. color: #2196F3;
  2290. border-color: #2196F3; }
  2291. .btn-outline-info:hover {
  2292. color: #fff;
  2293. background-color: #2196F3;
  2294. border-color: #2196F3; }
  2295. .btn-outline-info:focus, .btn-outline-info.focus {
  2296. -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
  2297. box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }
  2298. .btn-outline-info.disabled, .btn-outline-info:disabled {
  2299. color: #2196F3;
  2300. background-color: transparent; }
  2301. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  2302. .show > .btn-outline-info.dropdown-toggle {
  2303. color: #fff;
  2304. background-color: #2196F3;
  2305. border-color: #2196F3; }
  2306. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2307. .show > .btn-outline-info.dropdown-toggle:focus {
  2308. -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
  2309. box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }
  2310. .btn-outline-warning {
  2311. color: #ffc241;
  2312. border-color: #ffc241; }
  2313. .btn-outline-warning:hover {
  2314. color: #212529;
  2315. background-color: #ffc241;
  2316. border-color: #ffc241; }
  2317. .btn-outline-warning:focus, .btn-outline-warning.focus {
  2318. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5);
  2319. box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5); }
  2320. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  2321. color: #ffc241;
  2322. background-color: transparent; }
  2323. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  2324. .show > .btn-outline-warning.dropdown-toggle {
  2325. color: #212529;
  2326. background-color: #ffc241;
  2327. border-color: #ffc241; }
  2328. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2329. .show > .btn-outline-warning.dropdown-toggle:focus {
  2330. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5);
  2331. box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5); }
  2332. .btn-outline-danger {
  2333. color: #fd3995;
  2334. border-color: #fd3995; }
  2335. .btn-outline-danger:hover {
  2336. color: #fff;
  2337. background-color: #fd3995;
  2338. border-color: #fd3995; }
  2339. .btn-outline-danger:focus, .btn-outline-danger.focus {
  2340. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5);
  2341. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5); }
  2342. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  2343. color: #fd3995;
  2344. background-color: transparent; }
  2345. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  2346. .show > .btn-outline-danger.dropdown-toggle {
  2347. color: #fff;
  2348. background-color: #fd3995;
  2349. border-color: #fd3995; }
  2350. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2351. .show > .btn-outline-danger.dropdown-toggle:focus {
  2352. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5);
  2353. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5); }
  2354. .btn-outline-light {
  2355. color: #fff;
  2356. border-color: #fff; }
  2357. .btn-outline-light:hover {
  2358. color: #212529;
  2359. background-color: #fff;
  2360. border-color: #fff; }
  2361. .btn-outline-light:focus, .btn-outline-light.focus {
  2362. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  2363. box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  2364. .btn-outline-light.disabled, .btn-outline-light:disabled {
  2365. color: #fff;
  2366. background-color: transparent; }
  2367. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  2368. .show > .btn-outline-light.dropdown-toggle {
  2369. color: #212529;
  2370. background-color: #fff;
  2371. border-color: #fff; }
  2372. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2373. .show > .btn-outline-light.dropdown-toggle:focus {
  2374. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  2375. box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  2376. .btn-outline-dark {
  2377. color: #505050;
  2378. border-color: #505050; }
  2379. .btn-outline-dark:hover {
  2380. color: #fff;
  2381. background-color: #505050;
  2382. border-color: #505050; }
  2383. .btn-outline-dark:focus, .btn-outline-dark.focus {
  2384. -webkit-box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5);
  2385. box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5); }
  2386. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  2387. color: #505050;
  2388. background-color: transparent; }
  2389. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  2390. .show > .btn-outline-dark.dropdown-toggle {
  2391. color: #fff;
  2392. background-color: #505050;
  2393. border-color: #505050; }
  2394. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2395. .show > .btn-outline-dark.dropdown-toggle:focus {
  2396. -webkit-box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5);
  2397. box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5); }
  2398. .btn-link {
  2399. font-weight: 400;
  2400. color: #886ab5;
  2401. text-decoration: none; }
  2402. .btn-link:hover {
  2403. color: #967bbd;
  2404. text-decoration: underline; }
  2405. .btn-link:focus, .btn-link.focus {
  2406. text-decoration: underline;
  2407. -webkit-box-shadow: none;
  2408. box-shadow: none; }
  2409. .btn-link:disabled, .btn-link.disabled {
  2410. color: #868e96;
  2411. pointer-events: none; }
  2412. .btn-lg, .btn-group-lg > .btn {
  2413. padding: 0.75rem 1.5rem;
  2414. font-size: 1rem;
  2415. line-height: 1.5;
  2416. border-radius: 4px; }
  2417. .btn-sm, .btn-group-sm > .btn {
  2418. padding: 0.375rem 0.844rem;
  2419. font-size: 0.75rem;
  2420. line-height: 1.5;
  2421. border-radius: 4px; }
  2422. .btn-block {
  2423. display: block;
  2424. width: 100%; }
  2425. .btn-block + .btn-block {
  2426. margin-top: 0.5rem; }
  2427. input[type="submit"].btn-block,
  2428. input[type="reset"].btn-block,
  2429. input[type="button"].btn-block {
  2430. width: 100%; }
  2431. .fade {
  2432. -webkit-transition: opacity 0.15s linear;
  2433. transition: opacity 0.15s linear; }
  2434. .fade:not(.show) {
  2435. opacity: 0; }
  2436. .collapse:not(.show) {
  2437. display: none; }
  2438. .collapsing {
  2439. position: relative;
  2440. height: 0;
  2441. overflow: hidden;
  2442. -webkit-transition: height 0.35s ease;
  2443. transition: height 0.35s ease; }
  2444. .dropup,
  2445. .dropright,
  2446. .dropdown,
  2447. .dropleft {
  2448. position: relative; }
  2449. .dropdown-toggle {
  2450. white-space: nowrap; }
  2451. .dropdown-toggle::after {
  2452. display: inline-block;
  2453. margin-right: 0.255em;
  2454. vertical-align: 0.255em;
  2455. content: "";
  2456. border-top: 0.3em solid;
  2457. border-left: 0.3em solid transparent;
  2458. border-bottom: 0;
  2459. border-right: 0.3em solid transparent; }
  2460. .dropdown-toggle:empty::after {
  2461. margin-right: 0; }
  2462. .dropdown-menu {
  2463. position: absolute;
  2464. top: 100%;
  2465. right: 0;
  2466. z-index: 2000;
  2467. display: none;
  2468. float: right;
  2469. min-width: 10rem;
  2470. padding: 0.3125rem 0;
  2471. margin: 0.125rem 0 0;
  2472. font-size: 0.8125rem;
  2473. color: #212529;
  2474. text-align: right;
  2475. list-style: none;
  2476. background-color: #fff;
  2477. background-clip: padding-box;
  2478. border: 0px solid rgba(0, 0, 0, 0.15);
  2479. border-radius: 4px; }
  2480. .dropdown-menu-left {
  2481. left: auto;
  2482. right: 0; }
  2483. .dropdown-menu-right {
  2484. left: 0;
  2485. right: auto; }
  2486. @media (min-width: 576px) {
  2487. .dropdown-menu-sm-left {
  2488. left: auto;
  2489. right: 0; }
  2490. .dropdown-menu-sm-right {
  2491. left: 0;
  2492. right: auto; } }
  2493. @media (min-width: 768px) {
  2494. .dropdown-menu-md-left {
  2495. left: auto;
  2496. right: 0; }
  2497. .dropdown-menu-md-right {
  2498. left: 0;
  2499. right: auto; } }
  2500. @media (min-width: 992px) {
  2501. .dropdown-menu-lg-left {
  2502. left: auto;
  2503. right: 0; }
  2504. .dropdown-menu-lg-right {
  2505. left: 0;
  2506. right: auto; } }
  2507. @media (min-width: 1399px) {
  2508. .dropdown-menu-xl-left {
  2509. left: auto;
  2510. right: 0; }
  2511. .dropdown-menu-xl-right {
  2512. left: 0;
  2513. right: auto; } }
  2514. .dropup .dropdown-menu {
  2515. top: auto;
  2516. bottom: 100%;
  2517. margin-top: 0;
  2518. margin-bottom: 0.125rem; }
  2519. .dropup .dropdown-toggle::after {
  2520. display: inline-block;
  2521. margin-right: 0.255em;
  2522. vertical-align: 0.255em;
  2523. content: "";
  2524. border-top: 0;
  2525. border-left: 0.3em solid transparent;
  2526. border-bottom: 0.3em solid;
  2527. border-right: 0.3em solid transparent; }
  2528. .dropup .dropdown-toggle:empty::after {
  2529. margin-right: 0; }
  2530. .dropright .dropdown-menu {
  2531. top: 0;
  2532. left: auto;
  2533. right: 100%;
  2534. margin-top: 0;
  2535. margin-right: 0.125rem; }
  2536. .dropright .dropdown-toggle::after {
  2537. display: inline-block;
  2538. margin-right: 0.255em;
  2539. vertical-align: 0.255em;
  2540. content: "";
  2541. border-top: 0.3em solid transparent;
  2542. border-left: 0;
  2543. border-bottom: 0.3em solid transparent;
  2544. border-right: 0.3em solid; }
  2545. .dropright .dropdown-toggle:empty::after {
  2546. margin-right: 0; }
  2547. .dropright .dropdown-toggle::after {
  2548. vertical-align: 0; }
  2549. .dropleft .dropdown-menu {
  2550. top: 0;
  2551. left: 100%;
  2552. right: auto;
  2553. margin-top: 0;
  2554. margin-left: 0.125rem; }
  2555. .dropleft .dropdown-toggle::after {
  2556. display: inline-block;
  2557. margin-right: 0.255em;
  2558. vertical-align: 0.255em;
  2559. content: ""; }
  2560. .dropleft .dropdown-toggle::after {
  2561. display: none; }
  2562. .dropleft .dropdown-toggle::before {
  2563. display: inline-block;
  2564. margin-left: 0.255em;
  2565. vertical-align: 0.255em;
  2566. content: "";
  2567. border-top: 0.3em solid transparent;
  2568. border-left: 0.3em solid;
  2569. border-bottom: 0.3em solid transparent; }
  2570. .dropleft .dropdown-toggle:empty::after {
  2571. margin-right: 0; }
  2572. .dropleft .dropdown-toggle::before {
  2573. vertical-align: 0; }
  2574. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  2575. left: auto;
  2576. bottom: auto; }
  2577. .dropdown-divider {
  2578. height: 0;
  2579. margin: 0.5rem 0;
  2580. overflow: hidden;
  2581. border-top: 1px solid #f3f3f3; }
  2582. .dropdown-item {
  2583. display: block;
  2584. width: 100%;
  2585. padding: 0.75rem 1.5rem;
  2586. clear: both;
  2587. font-weight: 400;
  2588. color: #212529;
  2589. text-align: inherit;
  2590. white-space: nowrap;
  2591. background-color: transparent;
  2592. border: 0; }
  2593. .dropdown-item:hover, .dropdown-item:focus {
  2594. color: #6e4e9e;
  2595. text-decoration: none;
  2596. background-color: #f8f9fa; }
  2597. .dropdown-item.active, .dropdown-item:active {
  2598. color: #563d7c;
  2599. text-decoration: none;
  2600. background-color: #efebf5; }
  2601. .dropdown-item.disabled, .dropdown-item:disabled {
  2602. color: #868e96;
  2603. pointer-events: none;
  2604. background-color: transparent; }
  2605. .dropdown-menu.show {
  2606. display: block; }
  2607. .dropdown-header {
  2608. display: block;
  2609. padding: 0.3125rem 1.5rem;
  2610. margin-bottom: 0;
  2611. font-size: 0.75rem;
  2612. color: #868e96;
  2613. white-space: nowrap; }
  2614. .dropdown-item-text {
  2615. display: block;
  2616. padding: 0.75rem 1.5rem;
  2617. color: #212529; }
  2618. .btn-group,
  2619. .btn-group-vertical {
  2620. position: relative;
  2621. display: -webkit-inline-box;
  2622. display: -ms-inline-flexbox;
  2623. display: inline-flex;
  2624. vertical-align: middle; }
  2625. .btn-group > .btn,
  2626. .btn-group-vertical > .btn {
  2627. position: relative;
  2628. -webkit-box-flex: 1;
  2629. -ms-flex: 1 1 auto;
  2630. flex: 1 1 auto; }
  2631. .btn-group > .btn:hover,
  2632. .btn-group-vertical > .btn:hover {
  2633. z-index: 1; }
  2634. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  2635. .btn-group-vertical > .btn:focus,
  2636. .btn-group-vertical > .btn:active,
  2637. .btn-group-vertical > .btn.active {
  2638. z-index: 1; }
  2639. .btn-toolbar {
  2640. display: -webkit-box;
  2641. display: -ms-flexbox;
  2642. display: flex;
  2643. -ms-flex-wrap: wrap;
  2644. flex-wrap: wrap;
  2645. -webkit-box-pack: start;
  2646. -ms-flex-pack: start;
  2647. justify-content: flex-start; }
  2648. .btn-toolbar .input-group {
  2649. width: auto; }
  2650. .btn-group > .btn:not(:first-child),
  2651. .btn-group > .btn-group:not(:first-child) {
  2652. margin-right: -1px; }
  2653. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  2654. .btn-group > .btn-group:not(:last-child) > .btn {
  2655. border-top-left-radius: 0;
  2656. border-bottom-left-radius: 0; }
  2657. .btn-group > .btn:not(:first-child),
  2658. .btn-group > .btn-group:not(:first-child) > .btn {
  2659. border-top-right-radius: 0;
  2660. border-bottom-right-radius: 0; }
  2661. .dropdown-toggle-split {
  2662. padding-left: 0.84375rem;
  2663. padding-right: 0.84375rem; }
  2664. .dropdown-toggle-split::after,
  2665. .dropup .dropdown-toggle-split::after,
  2666. .dropright .dropdown-toggle-split::after {
  2667. margin-right: 0; }
  2668. .dropleft .dropdown-toggle-split::before {
  2669. margin-left: 0; }
  2670. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  2671. padding-left: 0.633rem;
  2672. padding-right: 0.633rem; }
  2673. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  2674. padding-left: 1.125rem;
  2675. padding-right: 1.125rem; }
  2676. .btn-group-vertical {
  2677. -webkit-box-orient: vertical;
  2678. -webkit-box-direction: normal;
  2679. -ms-flex-direction: column;
  2680. flex-direction: column;
  2681. -webkit-box-align: start;
  2682. -ms-flex-align: start;
  2683. align-items: flex-start;
  2684. -webkit-box-pack: center;
  2685. -ms-flex-pack: center;
  2686. justify-content: center; }
  2687. .btn-group-vertical > .btn,
  2688. .btn-group-vertical > .btn-group {
  2689. width: 100%; }
  2690. .btn-group-vertical > .btn:not(:first-child),
  2691. .btn-group-vertical > .btn-group:not(:first-child) {
  2692. margin-top: -1px; }
  2693. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  2694. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  2695. border-bottom-left-radius: 0;
  2696. border-bottom-right-radius: 0; }
  2697. .btn-group-vertical > .btn:not(:first-child),
  2698. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  2699. border-top-right-radius: 0;
  2700. border-top-left-radius: 0; }
  2701. .btn-group-toggle > .btn,
  2702. .btn-group-toggle > .btn-group > .btn {
  2703. margin-bottom: 0; }
  2704. .btn-group-toggle > .btn input[type="radio"],
  2705. .btn-group-toggle > .btn input[type="checkbox"],
  2706. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  2707. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  2708. position: absolute;
  2709. clip: rect(0, 0, 0, 0);
  2710. pointer-events: none; }
  2711. .input-group {
  2712. position: relative;
  2713. display: -webkit-box;
  2714. display: -ms-flexbox;
  2715. display: flex;
  2716. -ms-flex-wrap: wrap;
  2717. flex-wrap: wrap;
  2718. -webkit-box-align: stretch;
  2719. -ms-flex-align: stretch;
  2720. align-items: stretch;
  2721. width: 100%; }
  2722. .input-group > .form-control,
  2723. .input-group > .form-control-plaintext,
  2724. .input-group > .custom-select,
  2725. .input-group > .custom-file {
  2726. position: relative;
  2727. -webkit-box-flex: 1;
  2728. -ms-flex: 1 1 auto;
  2729. flex: 1 1 auto;
  2730. width: 1%;
  2731. margin-bottom: 0; }
  2732. .input-group > .form-control + .form-control,
  2733. .input-group > .form-control + .custom-select,
  2734. .input-group > .form-control + .custom-file,
  2735. .input-group > .form-control-plaintext + .form-control,
  2736. .input-group > .form-control-plaintext + .custom-select,
  2737. .input-group > .form-control-plaintext + .custom-file,
  2738. .input-group > .custom-select + .form-control,
  2739. .input-group > .custom-select + .custom-select,
  2740. .input-group > .custom-select + .custom-file,
  2741. .input-group > .custom-file + .form-control,
  2742. .input-group > .custom-file + .custom-select,
  2743. .input-group > .custom-file + .custom-file {
  2744. margin-right: -1px; }
  2745. .input-group > .form-control:focus,
  2746. .input-group > .custom-select:focus,
  2747. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  2748. z-index: 3; }
  2749. .input-group > .custom-file .custom-file-input:focus {
  2750. z-index: 4; }
  2751. .input-group > .form-control:not(:last-child),
  2752. .input-group > .custom-select:not(:last-child) {
  2753. border-top-left-radius: 0;
  2754. border-bottom-left-radius: 0; }
  2755. .input-group > .form-control:not(:first-child),
  2756. .input-group > .custom-select:not(:first-child) {
  2757. border-top-right-radius: 0;
  2758. border-bottom-right-radius: 0; }
  2759. .input-group > .custom-file {
  2760. display: -webkit-box;
  2761. display: -ms-flexbox;
  2762. display: flex;
  2763. -webkit-box-align: center;
  2764. -ms-flex-align: center;
  2765. align-items: center; }
  2766. .input-group > .custom-file:not(:last-child) .custom-file-label,
  2767. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  2768. border-top-left-radius: 0;
  2769. border-bottom-left-radius: 0; }
  2770. .input-group > .custom-file:not(:first-child) .custom-file-label {
  2771. border-top-right-radius: 0;
  2772. border-bottom-right-radius: 0; }
  2773. .input-group-prepend,
  2774. .input-group-append {
  2775. display: -webkit-box;
  2776. display: -ms-flexbox;
  2777. display: flex; }
  2778. .input-group-prepend .btn,
  2779. .input-group-append .btn {
  2780. position: relative;
  2781. z-index: 2; }
  2782. .input-group-prepend .btn:focus,
  2783. .input-group-append .btn:focus {
  2784. z-index: 3; }
  2785. .input-group-prepend .btn + .btn,
  2786. .input-group-prepend .btn + .input-group-text,
  2787. .input-group-prepend .input-group-text + .input-group-text,
  2788. .input-group-prepend .input-group-text + .btn,
  2789. .input-group-append .btn + .btn,
  2790. .input-group-append .btn + .input-group-text,
  2791. .input-group-append .input-group-text + .input-group-text,
  2792. .input-group-append .input-group-text + .btn {
  2793. margin-right: -1px; }
  2794. .input-group-prepend {
  2795. margin-left: -1px; }
  2796. .input-group-append {
  2797. margin-right: -1px; }
  2798. .input-group-text {
  2799. display: -webkit-box;
  2800. display: -ms-flexbox;
  2801. display: flex;
  2802. -webkit-box-align: center;
  2803. -ms-flex-align: center;
  2804. align-items: center;
  2805. padding: 0.5rem 0.875rem;
  2806. margin-bottom: 0;
  2807. font-size: 0.8125rem;
  2808. font-weight: 400;
  2809. line-height: 1.47;
  2810. color: #495057;
  2811. text-align: center;
  2812. white-space: nowrap;
  2813. background-color: #f3f3f3;
  2814. border: 1px solid #E5E5E5;
  2815. border-radius: 4px; }
  2816. .input-group-text input[type="radio"],
  2817. .input-group-text input[type="checkbox"] {
  2818. margin-top: 0; }
  2819. .input-group-lg > .form-control:not(textarea),
  2820. .input-group-lg > .custom-select {
  2821. height: calc(1.5em + 1.5rem + 2px); }
  2822. .input-group-lg > .form-control,
  2823. .input-group-lg > .custom-select,
  2824. .input-group-lg > .input-group-prepend > .input-group-text,
  2825. .input-group-lg > .input-group-append > .input-group-text,
  2826. .input-group-lg > .input-group-prepend > .btn,
  2827. .input-group-lg > .input-group-append > .btn {
  2828. padding: 0.75rem 1.5rem;
  2829. font-size: 1rem;
  2830. line-height: 1.5;
  2831. border-radius: 4px; }
  2832. .input-group-sm > .form-control:not(textarea),
  2833. .input-group-sm > .custom-select {
  2834. height: calc(1.5em + 0.75rem + 2px); }
  2835. .input-group-sm > .form-control,
  2836. .input-group-sm > .custom-select,
  2837. .input-group-sm > .input-group-prepend > .input-group-text,
  2838. .input-group-sm > .input-group-append > .input-group-text,
  2839. .input-group-sm > .input-group-prepend > .btn,
  2840. .input-group-sm > .input-group-append > .btn {
  2841. padding: 0.375rem 0.844rem;
  2842. font-size: 0.75rem;
  2843. line-height: 1.5;
  2844. border-radius: 4px; }
  2845. .input-group-lg > .custom-select,
  2846. .input-group-sm > .custom-select {
  2847. padding-left: 1.875rem; }
  2848. .input-group > .input-group-prepend > .btn,
  2849. .input-group > .input-group-prepend > .input-group-text,
  2850. .input-group > .input-group-append:not(:last-child) > .btn,
  2851. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  2852. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  2853. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  2854. border-top-left-radius: 0;
  2855. border-bottom-left-radius: 0; }
  2856. .input-group > .input-group-append > .btn,
  2857. .input-group > .input-group-append > .input-group-text,
  2858. .input-group > .input-group-prepend:not(:first-child) > .btn,
  2859. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  2860. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  2861. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  2862. border-top-right-radius: 0;
  2863. border-bottom-right-radius: 0; }
  2864. .custom-control {
  2865. position: relative;
  2866. display: block;
  2867. min-height: 1.19437rem;
  2868. padding-right: 1.625rem; }
  2869. .custom-control-inline {
  2870. display: -webkit-inline-box;
  2871. display: -ms-inline-flexbox;
  2872. display: inline-flex;
  2873. margin-left: 1rem; }
  2874. .custom-control-input {
  2875. position: absolute;
  2876. z-index: -1;
  2877. opacity: 0; }
  2878. .custom-control-input:checked ~ .custom-control-label::before {
  2879. color: #fff;
  2880. border-color: #6e4e9e;
  2881. background-color: #7a59ad; }
  2882. .custom-control-input:focus ~ .custom-control-label::before {
  2883. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  2884. box-shadow: 0 0 0 0.2rem transparent; }
  2885. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  2886. border-color: #886ab5; }
  2887. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  2888. color: #fff;
  2889. background-color: #e7e1f0;
  2890. border-color: #e7e1f0; }
  2891. .custom-control-input:disabled ~ .custom-control-label {
  2892. color: #868e96; }
  2893. .custom-control-input:disabled ~ .custom-control-label::before {
  2894. background-color: #f3f3f3; }
  2895. .custom-control-label {
  2896. position: relative;
  2897. margin-bottom: 0;
  2898. vertical-align: top; }
  2899. .custom-control-label::before {
  2900. position: absolute;
  2901. top: 0.03469rem;
  2902. right: -1.625rem;
  2903. display: block;
  2904. width: 1.125rem;
  2905. height: 1.125rem;
  2906. pointer-events: none;
  2907. content: "";
  2908. background-color: #fff;
  2909. border: #adb5bd solid 2px; }
  2910. .custom-control-label::after {
  2911. position: absolute;
  2912. top: 0.03469rem;
  2913. right: -1.625rem;
  2914. display: block;
  2915. width: 1.125rem;
  2916. height: 1.125rem;
  2917. content: "";
  2918. background: no-repeat 50% / 0.5rem; }
  2919. .custom-checkbox .custom-control-label::before {
  2920. border-radius: 2px; }
  2921. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  2922. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }
  2923. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  2924. border-color: #886ab5;
  2925. background-color: #886ab5; }
  2926. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  2927. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }
  2928. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2929. background-color: rgba(136, 106, 181, 0.5); }
  2930. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  2931. background-color: rgba(136, 106, 181, 0.5); }
  2932. .custom-radio .custom-control-label::before {
  2933. border-radius: 50%; }
  2934. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  2935. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }
  2936. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2937. background-color: rgba(136, 106, 181, 0.5); }
  2938. .custom-switch {
  2939. padding-right: 2.46875rem; }
  2940. .custom-switch .custom-control-label::before {
  2941. right: -2.46875rem;
  2942. width: 1.96875rem;
  2943. pointer-events: all;
  2944. border-radius: 0.5625rem; }
  2945. .custom-switch .custom-control-label::after {
  2946. top: calc(0.03469rem + 4px);
  2947. right: calc(-2.46875rem + 4px);
  2948. width: calc(1.125rem - 8px);
  2949. height: calc(1.125rem - 8px);
  2950. background-color: #adb5bd;
  2951. border-radius: 0.5625rem;
  2952. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2953. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2954. 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;
  2955. 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, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  2956. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  2957. background-color: #fff;
  2958. -webkit-transform: translateX(-0.84375rem);
  2959. transform: translateX(-0.84375rem); }
  2960. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2961. background-color: rgba(136, 106, 181, 0.5); }
  2962. .custom-select {
  2963. display: inline-block;
  2964. width: 100%;
  2965. height: calc(1.47em + 1rem + 2px);
  2966. padding: 0.5rem 0.875rem 0.5rem 1.875rem;
  2967. font-size: 0.8125rem;
  2968. font-weight: 400;
  2969. line-height: 1.47;
  2970. color: #495057;
  2971. vertical-align: middle;
  2972. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left 0.875rem center/8px 10px;
  2973. background-color: #fff;
  2974. border: 1px solid #E5E5E5;
  2975. border-radius: 4px;
  2976. -webkit-appearance: none;
  2977. -moz-appearance: none;
  2978. appearance: none; }
  2979. .custom-select:focus {
  2980. border-color: #886ab5;
  2981. outline: 0;
  2982. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  2983. box-shadow: 0 0 0 0.2rem transparent; }
  2984. .custom-select:focus::-ms-value {
  2985. color: #495057;
  2986. background-color: #fff; }
  2987. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  2988. height: auto;
  2989. padding-left: 0.875rem;
  2990. background-image: none; }
  2991. .custom-select:disabled {
  2992. color: #868e96;
  2993. background-color: #f3f3f3; }
  2994. .custom-select::-ms-expand {
  2995. display: none; }
  2996. .custom-select-sm {
  2997. height: calc(1.5em + 0.75rem + 2px);
  2998. padding-top: 0.375rem;
  2999. padding-bottom: 0.375rem;
  3000. padding-right: 0.844rem;
  3001. font-size: 0.75rem; }
  3002. .custom-select-lg {
  3003. height: calc(1.5em + 1.5rem + 2px);
  3004. padding-top: 0.75rem;
  3005. padding-bottom: 0.75rem;
  3006. padding-right: 1.5rem;
  3007. font-size: 1rem; }
  3008. .custom-file {
  3009. position: relative;
  3010. display: inline-block;
  3011. width: 100%;
  3012. height: calc(1.47em + 1rem + 2px);
  3013. margin-bottom: 0; }
  3014. .custom-file-input {
  3015. position: relative;
  3016. z-index: 2;
  3017. width: 100%;
  3018. height: calc(1.47em + 1rem + 2px);
  3019. margin: 0;
  3020. opacity: 0; }
  3021. .custom-file-input:focus ~ .custom-file-label {
  3022. border-color: #886ab5;
  3023. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  3024. box-shadow: 0 0 0 0.2rem transparent; }
  3025. .custom-file-input:disabled ~ .custom-file-label {
  3026. background-color: #f3f3f3; }
  3027. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3028. content: "Browse"; }
  3029. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3030. content: attr(data-browse); }
  3031. .custom-file-label {
  3032. position: absolute;
  3033. top: 0;
  3034. left: 0;
  3035. right: 0;
  3036. z-index: 1;
  3037. height: calc(1.47em + 1rem + 2px);
  3038. padding: 0.5rem 0.875rem;
  3039. font-weight: 400;
  3040. line-height: 1.47;
  3041. color: #495057;
  3042. background-color: #fff;
  3043. border: 1px solid #E5E5E5;
  3044. border-radius: 4px; }
  3045. .custom-file-label::after {
  3046. position: absolute;
  3047. top: 0;
  3048. left: 0;
  3049. bottom: 0;
  3050. z-index: 3;
  3051. display: block;
  3052. height: calc(1.47em + 1rem);
  3053. padding: 0.5rem 0.875rem;
  3054. line-height: 1.47;
  3055. color: #495057;
  3056. content: "Browse";
  3057. background-color: #f3f3f3;
  3058. border-right: inherit;
  3059. border-radius: 4px 0 0 4px; }
  3060. .custom-range {
  3061. width: 100%;
  3062. height: calc(1rem + 0.4rem);
  3063. padding: 0;
  3064. background-color: transparent;
  3065. -webkit-appearance: none;
  3066. -moz-appearance: none;
  3067. appearance: none; }
  3068. .custom-range:focus {
  3069. outline: none; }
  3070. .custom-range:focus::-webkit-slider-thumb {
  3071. -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(136, 106, 181, 0.25);
  3072. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(136, 106, 181, 0.25); }
  3073. .custom-range:focus::-moz-range-thumb {
  3074. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(136, 106, 181, 0.25); }
  3075. .custom-range:focus::-ms-thumb {
  3076. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(136, 106, 181, 0.25); }
  3077. .custom-range::-moz-focus-outer {
  3078. border: 0; }
  3079. .custom-range::-webkit-slider-thumb {
  3080. width: 1rem;
  3081. height: 1rem;
  3082. margin-top: -0.3375rem;
  3083. background-color: #886ab5;
  3084. border: 0;
  3085. border-radius: 50%;
  3086. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3087. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3088. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3089. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3090. -webkit-appearance: none;
  3091. appearance: none; }
  3092. .custom-range::-webkit-slider-thumb:active {
  3093. background-color: #a38cc6; }
  3094. .custom-range::-webkit-slider-runnable-track {
  3095. width: 100%;
  3096. height: 0.325rem;
  3097. color: transparent;
  3098. cursor: pointer;
  3099. background-color: #dee2e6;
  3100. border-color: transparent;
  3101. border-radius: 1rem; }
  3102. .custom-range::-moz-range-thumb {
  3103. width: 1rem;
  3104. height: 1rem;
  3105. background-color: #886ab5;
  3106. border: 0;
  3107. border-radius: 50%;
  3108. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3109. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3110. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3111. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3112. -moz-appearance: none;
  3113. appearance: none; }
  3114. .custom-range::-moz-range-thumb:active {
  3115. background-color: #a38cc6; }
  3116. .custom-range::-moz-range-track {
  3117. width: 100%;
  3118. height: 0.325rem;
  3119. color: transparent;
  3120. cursor: pointer;
  3121. background-color: #dee2e6;
  3122. border-color: transparent;
  3123. border-radius: 1rem; }
  3124. .custom-range::-ms-thumb {
  3125. width: 1rem;
  3126. height: 1rem;
  3127. margin-top: 0;
  3128. margin-left: 0.2rem;
  3129. margin-right: 0.2rem;
  3130. background-color: #886ab5;
  3131. border: 0;
  3132. border-radius: 50%;
  3133. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3134. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3135. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3136. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3137. appearance: none; }
  3138. .custom-range::-ms-thumb:active {
  3139. background-color: #a38cc6; }
  3140. .custom-range::-ms-track {
  3141. width: 100%;
  3142. height: 0.325rem;
  3143. color: transparent;
  3144. cursor: pointer;
  3145. background-color: transparent;
  3146. border-color: transparent;
  3147. border-width: 0.5rem; }
  3148. .custom-range::-ms-fill-lower {
  3149. background-color: #dee2e6;
  3150. border-radius: 1rem; }
  3151. .custom-range::-ms-fill-upper {
  3152. margin-left: 15px;
  3153. background-color: #dee2e6;
  3154. border-radius: 1rem; }
  3155. .custom-range:disabled::-webkit-slider-thumb {
  3156. background-color: #adb5bd; }
  3157. .custom-range:disabled::-webkit-slider-runnable-track {
  3158. cursor: default; }
  3159. .custom-range:disabled::-moz-range-thumb {
  3160. background-color: #adb5bd; }
  3161. .custom-range:disabled::-moz-range-track {
  3162. cursor: default; }
  3163. .custom-range:disabled::-ms-thumb {
  3164. background-color: #adb5bd; }
  3165. .custom-control-label::before,
  3166. .custom-file-label,
  3167. .custom-select {
  3168. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3169. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3170. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3171. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  3172. .nav {
  3173. display: -webkit-box;
  3174. display: -ms-flexbox;
  3175. display: flex;
  3176. -ms-flex-wrap: wrap;
  3177. flex-wrap: wrap;
  3178. padding-right: 0;
  3179. margin-bottom: 0;
  3180. list-style: none; }
  3181. .nav-link {
  3182. display: block;
  3183. padding: 0.5rem 1.125rem; }
  3184. .nav-link:hover, .nav-link:focus {
  3185. text-decoration: none; }
  3186. .nav-link.disabled {
  3187. color: #868e96;
  3188. pointer-events: none;
  3189. cursor: default; }
  3190. .nav-tabs {
  3191. border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  3192. .nav-tabs .nav-item {
  3193. margin-bottom: -1px; }
  3194. .nav-tabs .nav-link {
  3195. border: 1px solid transparent;
  3196. border-top-right-radius: 4px;
  3197. border-top-left-radius: 4px; }
  3198. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3199. border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.07) transparent; }
  3200. .nav-tabs .nav-link.disabled {
  3201. color: #868e96;
  3202. background-color: transparent;
  3203. border-color: transparent; }
  3204. .nav-tabs .nav-link.active,
  3205. .nav-tabs .nav-item.show .nav-link {
  3206. color: #495057;
  3207. background-color: #fff;
  3208. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #fff; }
  3209. .nav-tabs .dropdown-menu {
  3210. margin-top: -1px;
  3211. border-top-right-radius: 0;
  3212. border-top-left-radius: 0; }
  3213. .nav-pills .nav-link {
  3214. border-radius: 4px; }
  3215. .nav-pills .nav-link.active,
  3216. .nav-pills .show > .nav-link {
  3217. color: #fff;
  3218. background-color: #886ab5; }
  3219. .nav-fill .nav-item {
  3220. -webkit-box-flex: 1;
  3221. -ms-flex: 1 1 auto;
  3222. flex: 1 1 auto;
  3223. text-align: center; }
  3224. .nav-justified .nav-item {
  3225. -ms-flex-preferred-size: 0;
  3226. flex-basis: 0;
  3227. -webkit-box-flex: 1;
  3228. -ms-flex-positive: 1;
  3229. flex-grow: 1;
  3230. text-align: center; }
  3231. .tab-content > .tab-pane {
  3232. display: none; }
  3233. .tab-content > .active {
  3234. display: block; }
  3235. .navbar {
  3236. position: relative;
  3237. display: -webkit-box;
  3238. display: -ms-flexbox;
  3239. display: flex;
  3240. -ms-flex-wrap: wrap;
  3241. flex-wrap: wrap;
  3242. -webkit-box-align: center;
  3243. -ms-flex-align: center;
  3244. align-items: center;
  3245. -webkit-box-pack: justify;
  3246. -ms-flex-pack: justify;
  3247. justify-content: space-between;
  3248. padding: 0.5rem 1rem; }
  3249. .navbar > .container,
  3250. .navbar > .container-fluid {
  3251. display: -webkit-box;
  3252. display: -ms-flexbox;
  3253. display: flex;
  3254. -ms-flex-wrap: wrap;
  3255. flex-wrap: wrap;
  3256. -webkit-box-align: center;
  3257. -ms-flex-align: center;
  3258. align-items: center;
  3259. -webkit-box-pack: justify;
  3260. -ms-flex-pack: justify;
  3261. justify-content: space-between; }
  3262. .navbar-brand {
  3263. display: inline-block;
  3264. padding-top: 0.36219rem;
  3265. padding-bottom: 0.36219rem;
  3266. margin-left: 1rem;
  3267. font-size: 1rem;
  3268. line-height: inherit;
  3269. white-space: nowrap; }
  3270. .navbar-brand:hover, .navbar-brand:focus {
  3271. text-decoration: none; }
  3272. .navbar-nav {
  3273. display: -webkit-box;
  3274. display: -ms-flexbox;
  3275. display: flex;
  3276. -webkit-box-orient: vertical;
  3277. -webkit-box-direction: normal;
  3278. -ms-flex-direction: column;
  3279. flex-direction: column;
  3280. padding-right: 0;
  3281. margin-bottom: 0;
  3282. list-style: none; }
  3283. .navbar-nav .nav-link {
  3284. padding-left: 0;
  3285. padding-right: 0; }
  3286. .navbar-nav .dropdown-menu {
  3287. position: static;
  3288. float: none; }
  3289. .navbar-text {
  3290. display: inline-block;
  3291. padding-top: 0.5rem;
  3292. padding-bottom: 0.5rem; }
  3293. .navbar-collapse {
  3294. -ms-flex-preferred-size: 100%;
  3295. flex-basis: 100%;
  3296. -webkit-box-flex: 1;
  3297. -ms-flex-positive: 1;
  3298. flex-grow: 1;
  3299. -webkit-box-align: center;
  3300. -ms-flex-align: center;
  3301. align-items: center; }
  3302. .navbar-toggler {
  3303. padding: 7.5px 18px;
  3304. font-size: 1.3125rem;
  3305. line-height: 1;
  3306. background-color: transparent;
  3307. border: 1px solid transparent;
  3308. border-radius: 4px; }
  3309. .navbar-toggler:hover, .navbar-toggler:focus {
  3310. text-decoration: none; }
  3311. .navbar-toggler-icon {
  3312. display: inline-block;
  3313. width: 1.5em;
  3314. height: 1.5em;
  3315. vertical-align: middle;
  3316. content: "";
  3317. background: no-repeat center center;
  3318. background-size: 100% 100%; }
  3319. @media (max-width: 575.98px) {
  3320. .navbar-expand-sm > .container,
  3321. .navbar-expand-sm > .container-fluid {
  3322. padding-left: 0;
  3323. padding-right: 0; } }
  3324. @media (min-width: 576px) {
  3325. .navbar-expand-sm {
  3326. -webkit-box-orient: horizontal;
  3327. -webkit-box-direction: normal;
  3328. -ms-flex-flow: row nowrap;
  3329. flex-flow: row nowrap;
  3330. -webkit-box-pack: start;
  3331. -ms-flex-pack: start;
  3332. justify-content: flex-start; }
  3333. .navbar-expand-sm .navbar-nav {
  3334. -webkit-box-orient: horizontal;
  3335. -webkit-box-direction: normal;
  3336. -ms-flex-direction: row;
  3337. flex-direction: row; }
  3338. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3339. position: absolute; }
  3340. .navbar-expand-sm .navbar-nav .nav-link {
  3341. padding-left: 0.5rem;
  3342. padding-right: 0.5rem; }
  3343. .navbar-expand-sm > .container,
  3344. .navbar-expand-sm > .container-fluid {
  3345. -ms-flex-wrap: nowrap;
  3346. flex-wrap: nowrap; }
  3347. .navbar-expand-sm .navbar-collapse {
  3348. display: -webkit-box !important;
  3349. display: -ms-flexbox !important;
  3350. display: flex !important;
  3351. -ms-flex-preferred-size: auto;
  3352. flex-basis: auto; }
  3353. .navbar-expand-sm .navbar-toggler {
  3354. display: none; } }
  3355. @media (max-width: 767.98px) {
  3356. .navbar-expand-md > .container,
  3357. .navbar-expand-md > .container-fluid {
  3358. padding-left: 0;
  3359. padding-right: 0; } }
  3360. @media (min-width: 768px) {
  3361. .navbar-expand-md {
  3362. -webkit-box-orient: horizontal;
  3363. -webkit-box-direction: normal;
  3364. -ms-flex-flow: row nowrap;
  3365. flex-flow: row nowrap;
  3366. -webkit-box-pack: start;
  3367. -ms-flex-pack: start;
  3368. justify-content: flex-start; }
  3369. .navbar-expand-md .navbar-nav {
  3370. -webkit-box-orient: horizontal;
  3371. -webkit-box-direction: normal;
  3372. -ms-flex-direction: row;
  3373. flex-direction: row; }
  3374. .navbar-expand-md .navbar-nav .dropdown-menu {
  3375. position: absolute; }
  3376. .navbar-expand-md .navbar-nav .nav-link {
  3377. padding-left: 0.5rem;
  3378. padding-right: 0.5rem; }
  3379. .navbar-expand-md > .container,
  3380. .navbar-expand-md > .container-fluid {
  3381. -ms-flex-wrap: nowrap;
  3382. flex-wrap: nowrap; }
  3383. .navbar-expand-md .navbar-collapse {
  3384. display: -webkit-box !important;
  3385. display: -ms-flexbox !important;
  3386. display: flex !important;
  3387. -ms-flex-preferred-size: auto;
  3388. flex-basis: auto; }
  3389. .navbar-expand-md .navbar-toggler {
  3390. display: none; } }
  3391. @media (max-width: 991.98px) {
  3392. .navbar-expand-lg > .container,
  3393. .navbar-expand-lg > .container-fluid {
  3394. padding-left: 0;
  3395. padding-right: 0; } }
  3396. @media (min-width: 992px) {
  3397. .navbar-expand-lg {
  3398. -webkit-box-orient: horizontal;
  3399. -webkit-box-direction: normal;
  3400. -ms-flex-flow: row nowrap;
  3401. flex-flow: row nowrap;
  3402. -webkit-box-pack: start;
  3403. -ms-flex-pack: start;
  3404. justify-content: flex-start; }
  3405. .navbar-expand-lg .navbar-nav {
  3406. -webkit-box-orient: horizontal;
  3407. -webkit-box-direction: normal;
  3408. -ms-flex-direction: row;
  3409. flex-direction: row; }
  3410. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3411. position: absolute; }
  3412. .navbar-expand-lg .navbar-nav .nav-link {
  3413. padding-left: 0.5rem;
  3414. padding-right: 0.5rem; }
  3415. .navbar-expand-lg > .container,
  3416. .navbar-expand-lg > .container-fluid {
  3417. -ms-flex-wrap: nowrap;
  3418. flex-wrap: nowrap; }
  3419. .navbar-expand-lg .navbar-collapse {
  3420. display: -webkit-box !important;
  3421. display: -ms-flexbox !important;
  3422. display: flex !important;
  3423. -ms-flex-preferred-size: auto;
  3424. flex-basis: auto; }
  3425. .navbar-expand-lg .navbar-toggler {
  3426. display: none; } }
  3427. @media (max-width: 1398.98px) {
  3428. .navbar-expand-xl > .container,
  3429. .navbar-expand-xl > .container-fluid {
  3430. padding-left: 0;
  3431. padding-right: 0; } }
  3432. @media (min-width: 1399px) {
  3433. .navbar-expand-xl {
  3434. -webkit-box-orient: horizontal;
  3435. -webkit-box-direction: normal;
  3436. -ms-flex-flow: row nowrap;
  3437. flex-flow: row nowrap;
  3438. -webkit-box-pack: start;
  3439. -ms-flex-pack: start;
  3440. justify-content: flex-start; }
  3441. .navbar-expand-xl .navbar-nav {
  3442. -webkit-box-orient: horizontal;
  3443. -webkit-box-direction: normal;
  3444. -ms-flex-direction: row;
  3445. flex-direction: row; }
  3446. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3447. position: absolute; }
  3448. .navbar-expand-xl .navbar-nav .nav-link {
  3449. padding-left: 0.5rem;
  3450. padding-right: 0.5rem; }
  3451. .navbar-expand-xl > .container,
  3452. .navbar-expand-xl > .container-fluid {
  3453. -ms-flex-wrap: nowrap;
  3454. flex-wrap: nowrap; }
  3455. .navbar-expand-xl .navbar-collapse {
  3456. display: -webkit-box !important;
  3457. display: -ms-flexbox !important;
  3458. display: flex !important;
  3459. -ms-flex-preferred-size: auto;
  3460. flex-basis: auto; }
  3461. .navbar-expand-xl .navbar-toggler {
  3462. display: none; } }
  3463. .navbar-expand {
  3464. -webkit-box-orient: horizontal;
  3465. -webkit-box-direction: normal;
  3466. -ms-flex-flow: row nowrap;
  3467. flex-flow: row nowrap;
  3468. -webkit-box-pack: start;
  3469. -ms-flex-pack: start;
  3470. justify-content: flex-start; }
  3471. .navbar-expand > .container,
  3472. .navbar-expand > .container-fluid {
  3473. padding-left: 0;
  3474. padding-right: 0; }
  3475. .navbar-expand .navbar-nav {
  3476. -webkit-box-orient: horizontal;
  3477. -webkit-box-direction: normal;
  3478. -ms-flex-direction: row;
  3479. flex-direction: row; }
  3480. .navbar-expand .navbar-nav .dropdown-menu {
  3481. position: absolute; }
  3482. .navbar-expand .navbar-nav .nav-link {
  3483. padding-left: 0.5rem;
  3484. padding-right: 0.5rem; }
  3485. .navbar-expand > .container,
  3486. .navbar-expand > .container-fluid {
  3487. -ms-flex-wrap: nowrap;
  3488. flex-wrap: nowrap; }
  3489. .navbar-expand .navbar-collapse {
  3490. display: -webkit-box !important;
  3491. display: -ms-flexbox !important;
  3492. display: flex !important;
  3493. -ms-flex-preferred-size: auto;
  3494. flex-basis: auto; }
  3495. .navbar-expand .navbar-toggler {
  3496. display: none; }
  3497. .navbar-light .navbar-brand {
  3498. color: rgba(0, 0, 0, 0.9); }
  3499. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  3500. color: rgba(0, 0, 0, 0.9); }
  3501. .navbar-light .navbar-nav .nav-link {
  3502. color: rgba(0, 0, 0, 0.5); }
  3503. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  3504. color: rgba(0, 0, 0, 0.7); }
  3505. .navbar-light .navbar-nav .nav-link.disabled {
  3506. color: rgba(0, 0, 0, 0.3); }
  3507. .navbar-light .navbar-nav .show > .nav-link,
  3508. .navbar-light .navbar-nav .active > .nav-link,
  3509. .navbar-light .navbar-nav .nav-link.show,
  3510. .navbar-light .navbar-nav .nav-link.active {
  3511. color: rgba(0, 0, 0, 0.9); }
  3512. .navbar-light .navbar-toggler {
  3513. color: rgba(0, 0, 0, 0.5);
  3514. border-color: rgba(0, 0, 0, 0.1); }
  3515. .navbar-light .navbar-toggler-icon {
  3516. background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  3517. .navbar-light .navbar-text {
  3518. color: rgba(0, 0, 0, 0.5); }
  3519. .navbar-light .navbar-text a {
  3520. color: rgba(0, 0, 0, 0.9); }
  3521. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  3522. color: rgba(0, 0, 0, 0.9); }
  3523. .navbar-dark .navbar-brand {
  3524. color: #fff; }
  3525. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  3526. color: #fff; }
  3527. .navbar-dark .navbar-nav .nav-link {
  3528. color: rgba(255, 255, 255, 0.5); }
  3529. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  3530. color: rgba(255, 255, 255, 0.75); }
  3531. .navbar-dark .navbar-nav .nav-link.disabled {
  3532. color: rgba(255, 255, 255, 0.25); }
  3533. .navbar-dark .navbar-nav .show > .nav-link,
  3534. .navbar-dark .navbar-nav .active > .nav-link,
  3535. .navbar-dark .navbar-nav .nav-link.show,
  3536. .navbar-dark .navbar-nav .nav-link.active {
  3537. color: #fff; }
  3538. .navbar-dark .navbar-toggler {
  3539. color: rgba(255, 255, 255, 0.5);
  3540. border-color: rgba(255, 255, 255, 0.1); }
  3541. .navbar-dark .navbar-toggler-icon {
  3542. background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  3543. .navbar-dark .navbar-text {
  3544. color: rgba(255, 255, 255, 0.5); }
  3545. .navbar-dark .navbar-text a {
  3546. color: #fff; }
  3547. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  3548. color: #fff; }
  3549. .card {
  3550. position: relative;
  3551. display: -webkit-box;
  3552. display: -ms-flexbox;
  3553. display: flex;
  3554. -webkit-box-orient: vertical;
  3555. -webkit-box-direction: normal;
  3556. -ms-flex-direction: column;
  3557. flex-direction: column;
  3558. min-width: 0;
  3559. word-wrap: break-word;
  3560. background-color: #fff;
  3561. background-clip: border-box;
  3562. border: 1px solid rgba(0, 0, 0, 0.08);
  3563. border-radius: 4px; }
  3564. .card > hr {
  3565. margin-left: 0;
  3566. margin-right: 0; }
  3567. .card > .list-group:first-child .list-group-item:first-child {
  3568. border-top-right-radius: 4px;
  3569. border-top-left-radius: 4px; }
  3570. .card > .list-group:last-child .list-group-item:last-child {
  3571. border-bottom-left-radius: 4px;
  3572. border-bottom-right-radius: 4px; }
  3573. .card-body {
  3574. -webkit-box-flex: 1;
  3575. -ms-flex: 1 1 auto;
  3576. flex: 1 1 auto;
  3577. padding: 1rem; }
  3578. .card-title {
  3579. margin-bottom: 1rem; }
  3580. .card-subtitle {
  3581. margin-top: -0.5rem;
  3582. margin-bottom: 0; }
  3583. .card-text:last-child {
  3584. margin-bottom: 0; }
  3585. .card-link:hover {
  3586. text-decoration: none; }
  3587. .card-link + .card-link {
  3588. margin-right: 1rem; }
  3589. .card-header {
  3590. padding: 1rem 1rem;
  3591. margin-bottom: 0;
  3592. background-color: inherit;
  3593. border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  3594. .card-header:first-child {
  3595. border-radius: calc(4px - 1px) calc(4px - 1px) 0 0; }
  3596. .card-header + .list-group .list-group-item:first-child {
  3597. border-top: 0; }
  3598. .card-footer {
  3599. padding: 1rem 1rem;
  3600. background-color: inherit;
  3601. border-top: 1px solid rgba(0, 0, 0, 0.08); }
  3602. .card-footer:last-child {
  3603. border-radius: 0 0 calc(4px - 1px) calc(4px - 1px); }
  3604. .card-header-tabs {
  3605. margin-left: -0.5rem;
  3606. margin-bottom: -1rem;
  3607. margin-right: -0.5rem;
  3608. border-bottom: 0; }
  3609. .card-header-pills {
  3610. margin-left: -0.5rem;
  3611. margin-right: -0.5rem; }
  3612. .card-img-overlay {
  3613. position: absolute;
  3614. top: 0;
  3615. left: 0;
  3616. bottom: 0;
  3617. right: 0;
  3618. padding: 1.25rem; }
  3619. .card-img {
  3620. width: 100%;
  3621. border-radius: calc(4px - 1px); }
  3622. .card-img-top {
  3623. width: 100%;
  3624. border-top-right-radius: calc(4px - 1px);
  3625. border-top-left-radius: calc(4px - 1px); }
  3626. .card-img-bottom {
  3627. width: 100%;
  3628. border-bottom-left-radius: calc(4px - 1px);
  3629. border-bottom-right-radius: calc(4px - 1px); }
  3630. .card-deck {
  3631. display: -webkit-box;
  3632. display: -ms-flexbox;
  3633. display: flex;
  3634. -webkit-box-orient: vertical;
  3635. -webkit-box-direction: normal;
  3636. -ms-flex-direction: column;
  3637. flex-direction: column; }
  3638. .card-deck .card {
  3639. margin-bottom: 0.75rem; }
  3640. @media (min-width: 576px) {
  3641. .card-deck {
  3642. -webkit-box-orient: horizontal;
  3643. -webkit-box-direction: normal;
  3644. -ms-flex-flow: row wrap;
  3645. flex-flow: row wrap;
  3646. margin-left: -0.75rem;
  3647. margin-right: -0.75rem; }
  3648. .card-deck .card {
  3649. display: -webkit-box;
  3650. display: -ms-flexbox;
  3651. display: flex;
  3652. -webkit-box-flex: 1;
  3653. -ms-flex: 1 0 0%;
  3654. flex: 1 0 0%;
  3655. -webkit-box-orient: vertical;
  3656. -webkit-box-direction: normal;
  3657. -ms-flex-direction: column;
  3658. flex-direction: column;
  3659. margin-left: 0.75rem;
  3660. margin-bottom: 0;
  3661. margin-right: 0.75rem; } }
  3662. .card-group {
  3663. display: -webkit-box;
  3664. display: -ms-flexbox;
  3665. display: flex;
  3666. -webkit-box-orient: vertical;
  3667. -webkit-box-direction: normal;
  3668. -ms-flex-direction: column;
  3669. flex-direction: column; }
  3670. .card-group > .card {
  3671. margin-bottom: 0.75rem; }
  3672. @media (min-width: 576px) {
  3673. .card-group {
  3674. -webkit-box-orient: horizontal;
  3675. -webkit-box-direction: normal;
  3676. -ms-flex-flow: row wrap;
  3677. flex-flow: row wrap; }
  3678. .card-group > .card {
  3679. -webkit-box-flex: 1;
  3680. -ms-flex: 1 0 0%;
  3681. flex: 1 0 0%;
  3682. margin-bottom: 0; }
  3683. .card-group > .card + .card {
  3684. margin-right: 0;
  3685. border-right: 0; }
  3686. .card-group > .card:not(:last-child) {
  3687. border-top-left-radius: 0;
  3688. border-bottom-left-radius: 0; }
  3689. .card-group > .card:not(:last-child) .card-img-top,
  3690. .card-group > .card:not(:last-child) .card-header {
  3691. border-top-left-radius: 0; }
  3692. .card-group > .card:not(:last-child) .card-img-bottom,
  3693. .card-group > .card:not(:last-child) .card-footer {
  3694. border-bottom-left-radius: 0; }
  3695. .card-group > .card:not(:first-child) {
  3696. border-top-right-radius: 0;
  3697. border-bottom-right-radius: 0; }
  3698. .card-group > .card:not(:first-child) .card-img-top,
  3699. .card-group > .card:not(:first-child) .card-header {
  3700. border-top-right-radius: 0; }
  3701. .card-group > .card:not(:first-child) .card-img-bottom,
  3702. .card-group > .card:not(:first-child) .card-footer {
  3703. border-bottom-right-radius: 0; } }
  3704. .card-columns .card {
  3705. margin-bottom: 1rem; }
  3706. @media (min-width: 576px) {
  3707. .card-columns {
  3708. -webkit-column-count: 3;
  3709. -moz-column-count: 3;
  3710. column-count: 3;
  3711. -webkit-column-gap: 1.25rem;
  3712. -moz-column-gap: 1.25rem;
  3713. column-gap: 1.25rem;
  3714. orphans: 1;
  3715. widows: 1; }
  3716. .card-columns .card {
  3717. display: inline-block;
  3718. width: 100%; } }
  3719. .accordion > .card {
  3720. overflow: hidden; }
  3721. .accordion > .card:not(:first-of-type) .card-header:first-child {
  3722. border-radius: 0; }
  3723. .accordion > .card:not(:first-of-type):not(:last-of-type) {
  3724. border-bottom: 0;
  3725. border-radius: 0; }
  3726. .accordion > .card:first-of-type {
  3727. border-bottom: 0;
  3728. border-bottom-left-radius: 0;
  3729. border-bottom-right-radius: 0; }
  3730. .accordion > .card:last-of-type {
  3731. border-top-right-radius: 0;
  3732. border-top-left-radius: 0; }
  3733. .accordion > .card .card-header {
  3734. margin-bottom: -1px; }
  3735. .breadcrumb {
  3736. display: -webkit-box;
  3737. display: -ms-flexbox;
  3738. display: flex;
  3739. -ms-flex-wrap: wrap;
  3740. flex-wrap: wrap;
  3741. padding: 0.75rem 1rem;
  3742. margin-bottom: 1rem;
  3743. list-style: none;
  3744. background-color: #f6f6f6;
  3745. border-radius: 4px; }
  3746. .breadcrumb-item + .breadcrumb-item {
  3747. padding-right: 0.5rem; }
  3748. .breadcrumb-item + .breadcrumb-item::before {
  3749. display: inline-block;
  3750. padding-left: 0.5rem;
  3751. color: inherit;
  3752. content: "/"; }
  3753. .breadcrumb-item + .breadcrumb-item:hover::before {
  3754. text-decoration: underline; }
  3755. .breadcrumb-item + .breadcrumb-item:hover::before {
  3756. text-decoration: none; }
  3757. .breadcrumb-item.active {
  3758. color: #868e96; }
  3759. .pagination {
  3760. display: -webkit-box;
  3761. display: -ms-flexbox;
  3762. display: flex;
  3763. padding-right: 0;
  3764. list-style: none;
  3765. border-radius: 4px; }
  3766. .page-link {
  3767. position: relative;
  3768. display: block;
  3769. padding: 0.5rem 0.75rem;
  3770. margin-right: -1px;
  3771. line-height: 1.25;
  3772. color: #886ab5;
  3773. background-color: #fff;
  3774. border: 1px solid #dee2e6; }
  3775. .page-link:hover {
  3776. z-index: 2;
  3777. color: #967bbd;
  3778. text-decoration: none;
  3779. background-color: #f3f3f3;
  3780. border-color: #dee2e6; }
  3781. .page-link:focus {
  3782. z-index: 2;
  3783. outline: 0;
  3784. -webkit-box-shadow: 0 0 0 0.2rem transparent;
  3785. box-shadow: 0 0 0 0.2rem transparent; }
  3786. .page-item:first-child .page-link {
  3787. margin-right: 0;
  3788. border-top-right-radius: 4px;
  3789. border-bottom-right-radius: 4px; }
  3790. .page-item:last-child .page-link {
  3791. border-top-left-radius: 4px;
  3792. border-bottom-left-radius: 4px; }
  3793. .page-item.active .page-link {
  3794. z-index: 1;
  3795. color: #fff;
  3796. background-color: #886ab5;
  3797. border-color: #886ab5; }
  3798. .page-item.disabled .page-link {
  3799. color: #868e96;
  3800. pointer-events: none;
  3801. cursor: auto;
  3802. background-color: #fff;
  3803. border-color: #dee2e6; }
  3804. .pagination-lg .page-link {
  3805. padding: 0.75rem 1.5rem;
  3806. font-size: 1rem;
  3807. line-height: 1.5; }
  3808. .pagination-lg .page-item:first-child .page-link {
  3809. border-top-right-radius: 4px;
  3810. border-bottom-right-radius: 4px; }
  3811. .pagination-lg .page-item:last-child .page-link {
  3812. border-top-left-radius: 4px;
  3813. border-bottom-left-radius: 4px; }
  3814. .pagination-sm .page-link {
  3815. padding: 0.25rem 0.5rem;
  3816. font-size: 0.75rem;
  3817. line-height: 1.5; }
  3818. .pagination-sm .page-item:first-child .page-link {
  3819. border-top-right-radius: 4px;
  3820. border-bottom-right-radius: 4px; }
  3821. .pagination-sm .page-item:last-child .page-link {
  3822. border-top-left-radius: 4px;
  3823. border-bottom-left-radius: 4px; }
  3824. .badge {
  3825. display: inline-block;
  3826. padding: 0.25em 0.4em;
  3827. font-size: 85%;
  3828. font-weight: 500;
  3829. line-height: 1;
  3830. text-align: center;
  3831. white-space: nowrap;
  3832. vertical-align: baseline;
  3833. border-radius: 4px;
  3834. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3835. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3836. 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;
  3837. 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, -webkit-box-shadow 0.15s ease-in-out; }
  3838. a.badge:hover, a.badge:focus {
  3839. text-decoration: none; }
  3840. .badge:empty {
  3841. display: none; }
  3842. .btn .badge {
  3843. position: relative;
  3844. top: -1px; }
  3845. .badge-pill {
  3846. padding-left: 0.6em;
  3847. padding-right: 0.6em;
  3848. border-radius: 10rem; }
  3849. .badge-primary {
  3850. color: #fff;
  3851. background-color: #886ab5; }
  3852. a.badge-primary:hover, a.badge-primary:focus {
  3853. color: #fff;
  3854. background-color: #6e4e9e; }
  3855. a.badge-primary:focus, a.badge-primary.focus {
  3856. outline: 0;
  3857. -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5);
  3858. box-shadow: 0 0 0 0.2rem rgba(136, 106, 181, 0.5); }
  3859. .badge-secondary {
  3860. color: #fff;
  3861. background-color: #868e96; }
  3862. a.badge-secondary:hover, a.badge-secondary:focus {
  3863. color: #fff;
  3864. background-color: #6c757d; }
  3865. a.badge-secondary:focus, a.badge-secondary.focus {
  3866. outline: 0;
  3867. -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
  3868. box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
  3869. .badge-success {
  3870. color: #fff;
  3871. background-color: #1dc9b7; }
  3872. a.badge-success:hover, a.badge-success:focus {
  3873. color: #fff;
  3874. background-color: #179c8e; }
  3875. a.badge-success:focus, a.badge-success.focus {
  3876. outline: 0;
  3877. -webkit-box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5);
  3878. box-shadow: 0 0 0 0.2rem rgba(29, 201, 183, 0.5); }
  3879. .badge-info {
  3880. color: #fff;
  3881. background-color: #2196F3; }
  3882. a.badge-info:hover, a.badge-info:focus {
  3883. color: #fff;
  3884. background-color: #0c7cd5; }
  3885. a.badge-info:focus, a.badge-info.focus {
  3886. outline: 0;
  3887. -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
  3888. box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }
  3889. .badge-warning {
  3890. color: #212529;
  3891. background-color: #ffc241; }
  3892. a.badge-warning:hover, a.badge-warning:focus {
  3893. color: #212529;
  3894. background-color: #ffb20e; }
  3895. a.badge-warning:focus, a.badge-warning.focus {
  3896. outline: 0;
  3897. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5);
  3898. box-shadow: 0 0 0 0.2rem rgba(255, 194, 65, 0.5); }
  3899. .badge-danger {
  3900. color: #fff;
  3901. background-color: #fd3995; }
  3902. a.badge-danger:hover, a.badge-danger:focus {
  3903. color: #fff;
  3904. background-color: #fc077a; }
  3905. a.badge-danger:focus, a.badge-danger.focus {
  3906. outline: 0;
  3907. -webkit-box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5);
  3908. box-shadow: 0 0 0 0.2rem rgba(253, 57, 149, 0.5); }
  3909. .badge-light {
  3910. color: #212529;
  3911. background-color: #fff; }
  3912. a.badge-light:hover, a.badge-light:focus {
  3913. color: #212529;
  3914. background-color: #e6e6e6; }
  3915. a.badge-light:focus, a.badge-light.focus {
  3916. outline: 0;
  3917. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  3918. box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  3919. .badge-dark {
  3920. color: #fff;
  3921. background-color: #505050; }
  3922. a.badge-dark:hover, a.badge-dark:focus {
  3923. color: #fff;
  3924. background-color: #363636; }
  3925. a.badge-dark:focus, a.badge-dark.focus {
  3926. outline: 0;
  3927. -webkit-box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5);
  3928. box-shadow: 0 0 0 0.2rem rgba(80, 80, 80, 0.5); }
  3929. .jumbotron {
  3930. padding: 2rem 1rem;
  3931. margin-bottom: 2rem;
  3932. background-color: #f3f3f3;
  3933. border-radius: 4px; }
  3934. @media (min-width: 576px) {
  3935. .jumbotron {
  3936. padding: 4rem 2rem; } }
  3937. .jumbotron-fluid {
  3938. padding-left: 0;
  3939. padding-right: 0;
  3940. border-radius: 0; }
  3941. .alert {
  3942. position: relative;
  3943. padding: 1rem 1.25rem;
  3944. margin-bottom: 2rem;
  3945. border: 1px solid transparent;
  3946. border-radius: 4px; }
  3947. .alert-heading {
  3948. color: inherit; }
  3949. .alert-link {
  3950. font-weight: 700; }
  3951. .alert-dismissible {
  3952. padding-left: 3.71875rem; }
  3953. .alert-dismissible .close {
  3954. position: absolute;
  3955. top: 0;
  3956. left: 0;
  3957. padding: 1rem 1.25rem;
  3958. color: inherit; }
  3959. .alert-primary {
  3960. color: #47375e;
  3961. background-color: #e7e1f0;
  3962. border-color: #ded5ea; }
  3963. .alert-primary hr {
  3964. border-top-color: #d1c4e2; }
  3965. .alert-primary .alert-link {
  3966. color: #2f243e; }
  3967. .alert-secondary {
  3968. color: #464a4e;
  3969. background-color: #e7e8ea;
  3970. border-color: #dddfe2; }
  3971. .alert-secondary hr {
  3972. border-top-color: #cfd2d6; }
  3973. .alert-secondary .alert-link {
  3974. color: #2e3133; }
  3975. .alert-success {
  3976. color: #0f695f;
  3977. background-color: #d2f4f1;
  3978. border-color: #c0f0eb; }
  3979. .alert-success hr {
  3980. border-top-color: #abebe4; }
  3981. .alert-success .alert-link {
  3982. color: #093c37; }
  3983. .alert-info {
  3984. color: #114e7e;
  3985. background-color: #d3eafd;
  3986. border-color: #c1e2fc; }
  3987. .alert-info hr {
  3988. border-top-color: #a9d7fb; }
  3989. .alert-info .alert-link {
  3990. color: #0b3251; }
  3991. .alert-warning {
  3992. color: #856522;
  3993. background-color: #fff3d9;
  3994. border-color: #ffeeca; }
  3995. .alert-warning hr {
  3996. border-top-color: #ffe6b1; }
  3997. .alert-warning .alert-link {
  3998. color: #5c4618; }
  3999. .alert-danger {
  4000. color: #841e4d;
  4001. background-color: #ffd7ea;
  4002. border-color: #fec8e1; }
  4003. .alert-danger hr {
  4004. border-top-color: #feafd3; }
  4005. .alert-danger .alert-link {
  4006. color: #5a1535; }
  4007. .alert-light {
  4008. color: #858585;
  4009. background-color: white;
  4010. border-color: white; }
  4011. .alert-light hr {
  4012. border-top-color: #f2f2f2; }
  4013. .alert-light .alert-link {
  4014. color: #6c6c6c; }
  4015. .alert-dark {
  4016. color: #292929;
  4017. background-color: gainsboro;
  4018. border-color: #cecece; }
  4019. .alert-dark hr {
  4020. border-top-color: #c1c1c1; }
  4021. .alert-dark .alert-link {
  4022. color: #101010; }
  4023. @-webkit-keyframes progress-bar-stripes {
  4024. from {
  4025. background-position: 0.75rem 0; }
  4026. to {
  4027. background-position: 100% 0; } }
  4028. @keyframes progress-bar-stripes {
  4029. from {
  4030. background-position: 0.75rem 0; }
  4031. to {
  4032. background-position: 100% 0; } }
  4033. .progress {
  4034. display: -webkit-box;
  4035. display: -ms-flexbox;
  4036. display: flex;
  4037. height: 0.75rem;
  4038. overflow: hidden;
  4039. font-size: 0.625rem;
  4040. background-color: #f6f6f6;
  4041. border-radius: 10rem; }
  4042. .progress-bar {
  4043. display: -webkit-box;
  4044. display: -ms-flexbox;
  4045. display: flex;
  4046. -webkit-box-orient: vertical;
  4047. -webkit-box-direction: normal;
  4048. -ms-flex-direction: column;
  4049. flex-direction: column;
  4050. -webkit-box-pack: center;
  4051. -ms-flex-pack: center;
  4052. justify-content: center;
  4053. color: #fff;
  4054. text-align: center;
  4055. white-space: nowrap;
  4056. background-color: #886ab5;
  4057. -webkit-transition: width 0.6s ease;
  4058. transition: width 0.6s ease; }
  4059. .progress-bar-striped {
  4060. 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);
  4061. background-size: 0.75rem 0.75rem; }
  4062. .progress-bar-animated {
  4063. -webkit-animation: progress-bar-stripes 1s linear infinite;
  4064. animation: progress-bar-stripes 1s linear infinite; }
  4065. @media (prefers-reduced-motion: reduce) {
  4066. .progress-bar-animated {
  4067. -webkit-animation: none;
  4068. animation: none; } }
  4069. .media {
  4070. display: -webkit-box;
  4071. display: -ms-flexbox;
  4072. display: flex;
  4073. -webkit-box-align: start;
  4074. -ms-flex-align: start;
  4075. align-items: flex-start; }
  4076. .media-body {
  4077. -webkit-box-flex: 1;
  4078. -ms-flex: 1;
  4079. flex: 1; }
  4080. .list-group {
  4081. display: -webkit-box;
  4082. display: -ms-flexbox;
  4083. display: flex;
  4084. -webkit-box-orient: vertical;
  4085. -webkit-box-direction: normal;
  4086. -ms-flex-direction: column;
  4087. flex-direction: column;
  4088. padding-right: 0;
  4089. margin-bottom: 0; }
  4090. .list-group-item-action {
  4091. width: 100%;
  4092. color: #495057;
  4093. text-align: inherit; }
  4094. .list-group-item-action:hover, .list-group-item-action:focus {
  4095. z-index: 1;
  4096. color: #495057;
  4097. text-decoration: none;
  4098. background-color: #f8f9fa; }
  4099. .list-group-item-action:active {
  4100. color: #212529;
  4101. background-color: #f3f3f3; }
  4102. .list-group-item {
  4103. position: relative;
  4104. display: block;
  4105. padding: 0.75rem 1.25rem;
  4106. margin-bottom: -1px;
  4107. background-color: #fff;
  4108. border: 1px solid rgba(0, 0, 0, 0.08); }
  4109. .list-group-item:first-child {
  4110. border-top-right-radius: 4px;
  4111. border-top-left-radius: 4px; }
  4112. .list-group-item:last-child {
  4113. margin-bottom: 0;
  4114. border-bottom-left-radius: 4px;
  4115. border-bottom-right-radius: 4px; }
  4116. .list-group-item.disabled, .list-group-item:disabled {
  4117. color: #868e96;
  4118. pointer-events: none;
  4119. background-color: #fff; }
  4120. .list-group-item.active {
  4121. z-index: 2;
  4122. color: #fff;
  4123. background-color: #886ab5;
  4124. border-color: #886ab5; }
  4125. .list-group-horizontal {
  4126. -webkit-box-orient: horizontal;
  4127. -webkit-box-direction: normal;
  4128. -ms-flex-direction: row;
  4129. flex-direction: row; }
  4130. .list-group-horizontal .list-group-item {
  4131. margin-left: -1px;
  4132. margin-bottom: 0; }
  4133. .list-group-horizontal .list-group-item:first-child {
  4134. border-top-right-radius: 4px;
  4135. border-bottom-right-radius: 4px;
  4136. border-top-left-radius: 0; }
  4137. .list-group-horizontal .list-group-item:last-child {
  4138. margin-left: 0;
  4139. border-top-left-radius: 4px;
  4140. border-bottom-left-radius: 4px;
  4141. border-bottom-right-radius: 0; }
  4142. @media (min-width: 576px) {
  4143. .list-group-horizontal-sm {
  4144. -webkit-box-orient: horizontal;
  4145. -webkit-box-direction: normal;
  4146. -ms-flex-direction: row;
  4147. flex-direction: row; }
  4148. .list-group-horizontal-sm .list-group-item {
  4149. margin-left: -1px;
  4150. margin-bottom: 0; }
  4151. .list-group-horizontal-sm .list-group-item:first-child {
  4152. border-top-right-radius: 4px;
  4153. border-bottom-right-radius: 4px;
  4154. border-top-left-radius: 0; }
  4155. .list-group-horizontal-sm .list-group-item:last-child {
  4156. margin-left: 0;
  4157. border-top-left-radius: 4px;
  4158. border-bottom-left-radius: 4px;
  4159. border-bottom-right-radius: 0; } }
  4160. @media (min-width: 768px) {
  4161. .list-group-horizontal-md {
  4162. -webkit-box-orient: horizontal;
  4163. -webkit-box-direction: normal;
  4164. -ms-flex-direction: row;
  4165. flex-direction: row; }
  4166. .list-group-horizontal-md .list-group-item {
  4167. margin-left: -1px;
  4168. margin-bottom: 0; }
  4169. .list-group-horizontal-md .list-group-item:first-child {
  4170. border-top-right-radius: 4px;
  4171. border-bottom-right-radius: 4px;
  4172. border-top-left-radius: 0; }
  4173. .list-group-horizontal-md .list-group-item:last-child {
  4174. margin-left: 0;
  4175. border-top-left-radius: 4px;
  4176. border-bottom-left-radius: 4px;
  4177. border-bottom-right-radius: 0; } }
  4178. @media (min-width: 992px) {
  4179. .list-group-horizontal-lg {
  4180. -webkit-box-orient: horizontal;
  4181. -webkit-box-direction: normal;
  4182. -ms-flex-direction: row;
  4183. flex-direction: row; }
  4184. .list-group-horizontal-lg .list-group-item {
  4185. margin-left: -1px;
  4186. margin-bottom: 0; }
  4187. .list-group-horizontal-lg .list-group-item:first-child {
  4188. border-top-right-radius: 4px;
  4189. border-bottom-right-radius: 4px;
  4190. border-top-left-radius: 0; }
  4191. .list-group-horizontal-lg .list-group-item:last-child {
  4192. margin-left: 0;
  4193. border-top-left-radius: 4px;
  4194. border-bottom-left-radius: 4px;
  4195. border-bottom-right-radius: 0; } }
  4196. @media (min-width: 1399px) {
  4197. .list-group-horizontal-xl {
  4198. -webkit-box-orient: horizontal;
  4199. -webkit-box-direction: normal;
  4200. -ms-flex-direction: row;
  4201. flex-direction: row; }
  4202. .list-group-horizontal-xl .list-group-item {
  4203. margin-left: -1px;
  4204. margin-bottom: 0; }
  4205. .list-group-horizontal-xl .list-group-item:first-child {
  4206. border-top-right-radius: 4px;
  4207. border-bottom-right-radius: 4px;
  4208. border-top-left-radius: 0; }
  4209. .list-group-horizontal-xl .list-group-item:last-child {
  4210. margin-left: 0;
  4211. border-top-left-radius: 4px;
  4212. border-bottom-left-radius: 4px;
  4213. border-bottom-right-radius: 0; } }
  4214. .list-group-flush .list-group-item {
  4215. border-left: 0;
  4216. border-right: 0;
  4217. border-radius: 0; }
  4218. .list-group-flush .list-group-item:last-child {
  4219. margin-bottom: -1px; }
  4220. .list-group-flush:first-child .list-group-item:first-child {
  4221. border-top: 0; }
  4222. .list-group-flush:last-child .list-group-item:last-child {
  4223. margin-bottom: 0;
  4224. border-bottom: 0; }
  4225. .list-group-item-primary {
  4226. color: #47375e;
  4227. background-color: #ded5ea; }
  4228. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4229. color: #47375e;
  4230. background-color: #d1c4e2; }
  4231. .list-group-item-primary.list-group-item-action.active {
  4232. color: #fff;
  4233. background-color: #47375e;
  4234. border-color: #47375e; }
  4235. .list-group-item-secondary {
  4236. color: #464a4e;
  4237. background-color: #dddfe2; }
  4238. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4239. color: #464a4e;
  4240. background-color: #cfd2d6; }
  4241. .list-group-item-secondary.list-group-item-action.active {
  4242. color: #fff;
  4243. background-color: #464a4e;
  4244. border-color: #464a4e; }
  4245. .list-group-item-success {
  4246. color: #0f695f;
  4247. background-color: #c0f0eb; }
  4248. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4249. color: #0f695f;
  4250. background-color: #abebe4; }
  4251. .list-group-item-success.list-group-item-action.active {
  4252. color: #fff;
  4253. background-color: #0f695f;
  4254. border-color: #0f695f; }
  4255. .list-group-item-info {
  4256. color: #114e7e;
  4257. background-color: #c1e2fc; }
  4258. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4259. color: #114e7e;
  4260. background-color: #a9d7fb; }
  4261. .list-group-item-info.list-group-item-action.active {
  4262. color: #fff;
  4263. background-color: #114e7e;
  4264. border-color: #114e7e; }
  4265. .list-group-item-warning {
  4266. color: #856522;
  4267. background-color: #ffeeca; }
  4268. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4269. color: #856522;
  4270. background-color: #ffe6b1; }
  4271. .list-group-item-warning.list-group-item-action.active {
  4272. color: #fff;
  4273. background-color: #856522;
  4274. border-color: #856522; }
  4275. .list-group-item-danger {
  4276. color: #841e4d;
  4277. background-color: #fec8e1; }
  4278. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4279. color: #841e4d;
  4280. background-color: #feafd3; }
  4281. .list-group-item-danger.list-group-item-action.active {
  4282. color: #fff;
  4283. background-color: #841e4d;
  4284. border-color: #841e4d; }
  4285. .list-group-item-light {
  4286. color: #858585;
  4287. background-color: white; }
  4288. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4289. color: #858585;
  4290. background-color: #f2f2f2; }
  4291. .list-group-item-light.list-group-item-action.active {
  4292. color: #fff;
  4293. background-color: #858585;
  4294. border-color: #858585; }
  4295. .list-group-item-dark {
  4296. color: #292929;
  4297. background-color: #cecece; }
  4298. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4299. color: #292929;
  4300. background-color: #c1c1c1; }
  4301. .list-group-item-dark.list-group-item-action.active {
  4302. color: #fff;
  4303. background-color: #292929;
  4304. border-color: #292929; }
  4305. .close {
  4306. float: left;
  4307. font-size: 1.21875rem;
  4308. font-weight: 700;
  4309. line-height: 1;
  4310. color: #000;
  4311. text-shadow: 0 1px 0 #fff;
  4312. opacity: .5; }
  4313. .close:hover {
  4314. color: #000;
  4315. text-decoration: none; }
  4316. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  4317. opacity: .75; }
  4318. button.close {
  4319. padding: 0;
  4320. background-color: transparent;
  4321. border: 0;
  4322. -webkit-appearance: none;
  4323. -moz-appearance: none;
  4324. appearance: none; }
  4325. a.close.disabled {
  4326. pointer-events: none; }
  4327. .toast {
  4328. max-width: 350px;
  4329. overflow: hidden;
  4330. font-size: 0.875rem;
  4331. background-color: rgba(255, 255, 255, 0.85);
  4332. background-clip: padding-box;
  4333. border: 1px solid rgba(0, 0, 0, 0.1);
  4334. -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  4335. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  4336. -webkit-backdrop-filter: blur(10px);
  4337. backdrop-filter: blur(10px);
  4338. opacity: 0;
  4339. border-radius: 0.25rem; }
  4340. .toast:not(:last-child) {
  4341. margin-bottom: 0.75rem; }
  4342. .toast.showing {
  4343. opacity: 1; }
  4344. .toast.show {
  4345. display: block;
  4346. opacity: 1; }
  4347. .toast.hide {
  4348. display: none; }
  4349. .toast-header {
  4350. display: -webkit-box;
  4351. display: -ms-flexbox;
  4352. display: flex;
  4353. -webkit-box-align: center;
  4354. -ms-flex-align: center;
  4355. align-items: center;
  4356. padding: 0.5rem 0.75rem;
  4357. color: #505050;
  4358. background-color: rgba(255, 255, 255, 0.85);
  4359. background-clip: padding-box;
  4360. border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  4361. .toast-body {
  4362. padding: 0.75rem; }
  4363. .modal-open {
  4364. overflow: hidden; }
  4365. .modal-open .modal {
  4366. overflow-x: hidden;
  4367. overflow-y: auto; }
  4368. .modal {
  4369. position: fixed;
  4370. top: 0;
  4371. right: 0;
  4372. z-index: 2050;
  4373. display: none;
  4374. width: 100%;
  4375. height: 100%;
  4376. overflow: hidden;
  4377. outline: 0; }
  4378. .modal-dialog {
  4379. position: relative;
  4380. width: auto;
  4381. margin: 0.5rem;
  4382. pointer-events: none; }
  4383. .modal.fade .modal-dialog {
  4384. -webkit-transition: -webkit-transform 0.3s ease-out;
  4385. transition: -webkit-transform 0.3s ease-out;
  4386. transition: transform 0.3s ease-out;
  4387. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  4388. -webkit-transform: translate(0, -50px);
  4389. transform: translate(0, -50px); }
  4390. .modal.show .modal-dialog {
  4391. -webkit-transform: none;
  4392. transform: none; }
  4393. .modal-dialog-scrollable {
  4394. display: -webkit-box;
  4395. display: -ms-flexbox;
  4396. display: flex;
  4397. max-height: calc(100% - 1rem); }
  4398. .modal-dialog-scrollable .modal-content {
  4399. max-height: calc(100vh - 1rem);
  4400. overflow: hidden; }
  4401. .modal-dialog-scrollable .modal-header,
  4402. .modal-dialog-scrollable .modal-footer {
  4403. -ms-flex-negative: 0;
  4404. flex-shrink: 0; }
  4405. .modal-dialog-scrollable .modal-body {
  4406. overflow-y: auto; }
  4407. .modal-dialog-centered {
  4408. display: -webkit-box;
  4409. display: -ms-flexbox;
  4410. display: flex;
  4411. -webkit-box-align: center;
  4412. -ms-flex-align: center;
  4413. align-items: center;
  4414. min-height: calc(100% - 1rem); }
  4415. .modal-dialog-centered::before {
  4416. display: block;
  4417. height: calc(100vh - 1rem);
  4418. content: ""; }
  4419. .modal-dialog-centered.modal-dialog-scrollable {
  4420. -webkit-box-orient: vertical;
  4421. -webkit-box-direction: normal;
  4422. -ms-flex-direction: column;
  4423. flex-direction: column;
  4424. -webkit-box-pack: center;
  4425. -ms-flex-pack: center;
  4426. justify-content: center;
  4427. height: 100%; }
  4428. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  4429. max-height: none; }
  4430. .modal-dialog-centered.modal-dialog-scrollable::before {
  4431. content: none; }
  4432. .modal-content {
  4433. position: relative;
  4434. display: -webkit-box;
  4435. display: -ms-flexbox;
  4436. display: flex;
  4437. -webkit-box-orient: vertical;
  4438. -webkit-box-direction: normal;
  4439. -ms-flex-direction: column;
  4440. flex-direction: column;
  4441. width: 100%;
  4442. pointer-events: auto;
  4443. background-color: #fff;
  4444. background-clip: padding-box;
  4445. border: 1px solid transparent;
  4446. border-radius: 4px;
  4447. outline: 0; }
  4448. .modal-backdrop {
  4449. position: fixed;
  4450. top: 0;
  4451. right: 0;
  4452. z-index: 2040;
  4453. width: 100vw;
  4454. height: 100vh;
  4455. background-color: #000; }
  4456. .modal-backdrop.fade {
  4457. opacity: 0; }
  4458. .modal-backdrop.show {
  4459. opacity: 0.2; }
  4460. .modal-header {
  4461. display: -webkit-box;
  4462. display: -ms-flexbox;
  4463. display: flex;
  4464. -webkit-box-align: start;
  4465. -ms-flex-align: start;
  4466. align-items: flex-start;
  4467. -webkit-box-pack: justify;
  4468. -ms-flex-pack: justify;
  4469. justify-content: space-between;
  4470. padding: 1.25rem 1.25rem;
  4471. border-bottom: 0px solid #dee2e6;
  4472. border-top-right-radius: 4px;
  4473. border-top-left-radius: 4px; }
  4474. .modal-header .close {
  4475. padding: 1.25rem 1.25rem;
  4476. margin: -1.25rem auto -1.25rem -1.25rem; }
  4477. .modal-title {
  4478. margin-bottom: 0;
  4479. line-height: 1.47; }
  4480. .modal-body {
  4481. position: relative;
  4482. -webkit-box-flex: 1;
  4483. -ms-flex: 1 1 auto;
  4484. flex: 1 1 auto;
  4485. padding: 1.25rem; }
  4486. .modal-footer {
  4487. display: -webkit-box;
  4488. display: -ms-flexbox;
  4489. display: flex;
  4490. -webkit-box-align: center;
  4491. -ms-flex-align: center;
  4492. align-items: center;
  4493. -webkit-box-pack: end;
  4494. -ms-flex-pack: end;
  4495. justify-content: flex-end;
  4496. padding: 1.25rem;
  4497. border-top: 0px solid #dee2e6;
  4498. border-bottom-left-radius: 4px;
  4499. border-bottom-right-radius: 4px; }
  4500. .modal-footer > :not(:first-child) {
  4501. margin-right: .25rem; }
  4502. .modal-footer > :not(:last-child) {
  4503. margin-left: .25rem; }
  4504. .modal-scrollbar-measure {
  4505. position: absolute;
  4506. top: -9999px;
  4507. width: 50px;
  4508. height: 50px;
  4509. overflow: scroll; }
  4510. @media (min-width: 576px) {
  4511. .modal-dialog {
  4512. max-width: 500px;
  4513. margin: 1.75rem auto; }
  4514. .modal-dialog-scrollable {
  4515. max-height: calc(100% - 3.5rem); }
  4516. .modal-dialog-scrollable .modal-content {
  4517. max-height: calc(100vh - 3.5rem); }
  4518. .modal-dialog-centered {
  4519. min-height: calc(100% - 3.5rem); }
  4520. .modal-dialog-centered::before {
  4521. height: calc(100vh - 3.5rem); }
  4522. .modal-sm {
  4523. max-width: 300px; } }
  4524. @media (min-width: 992px) {
  4525. .modal-lg,
  4526. .modal-xl {
  4527. max-width: 800px; } }
  4528. @media (min-width: 1399px) {
  4529. .modal-xl {
  4530. max-width: 1140px; } }
  4531. .tooltip {
  4532. position: absolute;
  4533. z-index: 2070;
  4534. display: block;
  4535. margin: 2px;
  4536. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  4537. font-style: normal;
  4538. font-weight: 400;
  4539. line-height: 1.47;
  4540. text-align: right;
  4541. text-align: start;
  4542. text-decoration: none;
  4543. text-shadow: none;
  4544. text-transform: none;
  4545. letter-spacing: normal;
  4546. word-break: normal;
  4547. word-spacing: normal;
  4548. white-space: normal;
  4549. line-break: auto;
  4550. font-size: 0.75rem;
  4551. word-wrap: break-word;
  4552. opacity: 0; }
  4553. .tooltip.show {
  4554. opacity: 1; }
  4555. .tooltip .arrow {
  4556. position: absolute;
  4557. display: block;
  4558. width: 8px;
  4559. height: 5px; }
  4560. .tooltip .arrow::before {
  4561. position: absolute;
  4562. content: "";
  4563. border-color: transparent;
  4564. border-style: solid; }
  4565. .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  4566. padding: 5px 0; }
  4567. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  4568. bottom: 0; }
  4569. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  4570. top: 0;
  4571. border-width: 5px 4px 0;
  4572. border-top-color: rgba(54, 54, 54, 0.9); }
  4573. .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  4574. padding: 0 5px; }
  4575. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  4576. right: 0;
  4577. width: 5px;
  4578. height: 8px; }
  4579. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  4580. left: 0;
  4581. border-width: 4px 0 4px 5px;
  4582. border-left-color: rgba(54, 54, 54, 0.9); }
  4583. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  4584. padding: 5px 0; }
  4585. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  4586. top: 0; }
  4587. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  4588. bottom: 0;
  4589. border-width: 0 4px 5px;
  4590. border-bottom-color: rgba(54, 54, 54, 0.9); }
  4591. .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  4592. padding: 0 5px; }
  4593. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  4594. left: 0;
  4595. width: 5px;
  4596. height: 8px; }
  4597. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  4598. right: 0;
  4599. border-width: 4px 5px 4px 0;
  4600. border-right-color: rgba(54, 54, 54, 0.9); }
  4601. .tooltip-inner {
  4602. max-width: 200px;
  4603. padding: 0.3rem 0.6rem;
  4604. color: #fff;
  4605. text-align: center;
  4606. background-color: rgba(54, 54, 54, 0.9);
  4607. border-radius: 5px; }
  4608. .popover {
  4609. position: absolute;
  4610. top: 0;
  4611. right: 0;
  4612. z-index: 2060;
  4613. display: block;
  4614. max-width: 276px;
  4615. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  4616. font-style: normal;
  4617. font-weight: 400;
  4618. line-height: 1.47;
  4619. text-align: right;
  4620. text-align: start;
  4621. text-decoration: none;
  4622. text-shadow: none;
  4623. text-transform: none;
  4624. letter-spacing: normal;
  4625. word-break: normal;
  4626. word-spacing: normal;
  4627. white-space: normal;
  4628. line-break: auto;
  4629. font-size: 0.875rem;
  4630. word-wrap: break-word;
  4631. background-color: #fff;
  4632. background-clip: padding-box;
  4633. border: 3px solid rgba(0, 0, 0, 0.2);
  4634. border-radius: 0.5rem; }
  4635. .popover .arrow {
  4636. position: absolute;
  4637. display: block;
  4638. width: 15px;
  4639. height: 7px;
  4640. margin: 0 4px; }
  4641. .popover .arrow::before, .popover .arrow::after {
  4642. position: absolute;
  4643. display: block;
  4644. content: "";
  4645. border-color: transparent;
  4646. border-style: solid; }
  4647. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  4648. margin-bottom: 7px; }
  4649. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  4650. bottom: calc((7px + 3px) * -1); }
  4651. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  4652. bottom: 0;
  4653. border-width: 7px 7.5px 0;
  4654. border-top-color: inherit; }
  4655. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  4656. bottom: 3px;
  4657. border-width: 7px 7.5px 0;
  4658. border-top-color: transparent; }
  4659. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  4660. margin-right: 7px; }
  4661. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  4662. right: calc((7px + 3px) * -1);
  4663. width: 7px;
  4664. height: 15px;
  4665. margin: 4px 0; }
  4666. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  4667. right: 0;
  4668. border-width: 7.5px 0 7.5px 7px;
  4669. border-left-color: inherit; }
  4670. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  4671. right: 3px;
  4672. border-width: 7.5px 0 7.5px 7px;
  4673. border-left-color: transparent; }
  4674. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  4675. margin-top: 7px; }
  4676. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  4677. top: calc((7px + 3px) * -1); }
  4678. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  4679. top: 0;
  4680. border-width: 0 7.5px 7px 7.5px;
  4681. border-bottom-color: inherit; }
  4682. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  4683. top: 3px;
  4684. border-width: 0 7.5px 7px 7.5px;
  4685. border-bottom-color: transparent; }
  4686. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  4687. position: absolute;
  4688. top: 0;
  4689. right: 50%;
  4690. display: block;
  4691. width: 15px;
  4692. margin-right: -7.5px;
  4693. content: "";
  4694. border-bottom: 3px solid transparent; }
  4695. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  4696. margin-left: 7px; }
  4697. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  4698. left: calc((7px + 3px) * -1);
  4699. width: 7px;
  4700. height: 15px;
  4701. margin: 4px 0; }
  4702. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  4703. left: 0;
  4704. border-width: 7.5px 7px 7.5px 0;
  4705. border-right-color: inherit; }
  4706. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  4707. left: 3px;
  4708. border-width: 7.5px 7px 7.5px 0;
  4709. border-right-color: transparent; }
  4710. .popover-header {
  4711. padding: 1rem 1rem;
  4712. margin-bottom: 0;
  4713. font-size: 0.8125rem;
  4714. background-color: transparent;
  4715. border-bottom: 3px solid rgba(0, 0, 0, 0);
  4716. border-top-right-radius: calc(4px - 3px);
  4717. border-top-left-radius: calc(4px - 3px); }
  4718. .popover-header:empty {
  4719. display: none; }
  4720. .popover-body {
  4721. padding: 1rem 1rem;
  4722. color: #212529; }
  4723. .carousel {
  4724. position: relative; }
  4725. .carousel.pointer-event {
  4726. -ms-touch-action: pan-y;
  4727. touch-action: pan-y; }
  4728. .carousel-inner {
  4729. position: relative;
  4730. width: 100%;
  4731. overflow: hidden; }
  4732. .carousel-inner::after {
  4733. display: block;
  4734. clear: both;
  4735. content: ""; }
  4736. .carousel-item {
  4737. position: relative;
  4738. display: none;
  4739. float: right;
  4740. width: 100%;
  4741. margin-left: -100%;
  4742. -webkit-backface-visibility: hidden;
  4743. backface-visibility: hidden;
  4744. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  4745. transition: -webkit-transform 0.6s ease-in-out;
  4746. transition: transform 0.6s ease-in-out;
  4747. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; }
  4748. .carousel-item.active,
  4749. .carousel-item-next,
  4750. .carousel-item-prev {
  4751. display: block; }
  4752. .carousel-item-next:not(.carousel-item-left),
  4753. .active.carousel-item-right {
  4754. -webkit-transform: translateX(-100%);
  4755. transform: translateX(-100%); }
  4756. .carousel-item-prev:not(.carousel-item-right),
  4757. .active.carousel-item-left {
  4758. -webkit-transform: translateX(100%);
  4759. transform: translateX(100%); }
  4760. .carousel-fade .carousel-item {
  4761. opacity: 0;
  4762. -webkit-transition-property: opacity;
  4763. transition-property: opacity;
  4764. -webkit-transform: none;
  4765. transform: none; }
  4766. .carousel-fade .carousel-item.active,
  4767. .carousel-fade .carousel-item-next.carousel-item-left,
  4768. .carousel-fade .carousel-item-prev.carousel-item-right {
  4769. z-index: 1;
  4770. opacity: 1; }
  4771. .carousel-fade .active.carousel-item-left,
  4772. .carousel-fade .active.carousel-item-right {
  4773. z-index: 0;
  4774. opacity: 0;
  4775. -webkit-transition: 0s 0.6s opacity;
  4776. transition: 0s 0.6s opacity; }
  4777. .carousel-control-prev,
  4778. .carousel-control-next {
  4779. position: absolute;
  4780. top: 0;
  4781. bottom: 0;
  4782. z-index: 1;
  4783. display: -webkit-box;
  4784. display: -ms-flexbox;
  4785. display: flex;
  4786. -webkit-box-align: center;
  4787. -ms-flex-align: center;
  4788. align-items: center;
  4789. -webkit-box-pack: center;
  4790. -ms-flex-pack: center;
  4791. justify-content: center;
  4792. width: 15%;
  4793. color: #fff;
  4794. text-align: center;
  4795. opacity: 0.5;
  4796. -webkit-transition: opacity 0.15s ease;
  4797. transition: opacity 0.15s ease; }
  4798. .carousel-control-prev:hover, .carousel-control-prev:focus,
  4799. .carousel-control-next:hover,
  4800. .carousel-control-next:focus {
  4801. color: #fff;
  4802. text-decoration: none;
  4803. outline: 0;
  4804. opacity: 0.9; }
  4805. .carousel-control-prev {
  4806. right: 0; }
  4807. .carousel-control-next {
  4808. left: 0; }
  4809. .carousel-control-prev-icon,
  4810. .carousel-control-next-icon {
  4811. display: inline-block;
  4812. width: 20px;
  4813. height: 20px;
  4814. background: no-repeat 50% / 100% 100%; }
  4815. .carousel-control-prev-icon {
  4816. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); }
  4817. .carousel-control-next-icon {
  4818. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); }
  4819. .carousel-indicators {
  4820. position: absolute;
  4821. left: 0;
  4822. bottom: 0;
  4823. right: 0;
  4824. z-index: 15;
  4825. display: -webkit-box;
  4826. display: -ms-flexbox;
  4827. display: flex;
  4828. -webkit-box-pack: center;
  4829. -ms-flex-pack: center;
  4830. justify-content: center;
  4831. padding-right: 0;
  4832. margin-left: 15%;
  4833. margin-right: 15%;
  4834. list-style: none; }
  4835. .carousel-indicators li {
  4836. -webkit-box-sizing: content-box;
  4837. box-sizing: content-box;
  4838. -webkit-box-flex: 0;
  4839. -ms-flex: 0 1 auto;
  4840. flex: 0 1 auto;
  4841. width: 13px;
  4842. height: 13px;
  4843. margin-left: 3px;
  4844. margin-right: 3px;
  4845. text-indent: -999px;
  4846. cursor: pointer;
  4847. background-color: #fff;
  4848. background-clip: padding-box;
  4849. border-top: 10px solid transparent;
  4850. border-bottom: 10px solid transparent;
  4851. opacity: .5;
  4852. -webkit-transition: opacity 0.6s ease;
  4853. transition: opacity 0.6s ease; }
  4854. .carousel-indicators .active {
  4855. opacity: 1; }
  4856. .carousel-caption {
  4857. position: absolute;
  4858. left: 15%;
  4859. bottom: 20px;
  4860. right: 15%;
  4861. z-index: 10;
  4862. padding-top: 20px;
  4863. padding-bottom: 20px;
  4864. color: #fff;
  4865. text-align: center; }
  4866. @-webkit-keyframes spinner-border {
  4867. to {
  4868. -webkit-transform: rotate(-360deg);
  4869. transform: rotate(-360deg); } }
  4870. @keyframes spinner-border {
  4871. to {
  4872. -webkit-transform: rotate(-360deg);
  4873. transform: rotate(-360deg); } }
  4874. .spinner-border {
  4875. display: inline-block;
  4876. width: 2rem;
  4877. height: 2rem;
  4878. vertical-align: text-bottom;
  4879. border: 0.25em solid currentColor;
  4880. border-left-color: transparent;
  4881. border-radius: 50%;
  4882. -webkit-animation: spinner-border .75s linear infinite;
  4883. animation: spinner-border .75s linear infinite; }
  4884. .spinner-border-sm {
  4885. width: 1rem;
  4886. height: 1rem;
  4887. border-width: 0.2em; }
  4888. @-webkit-keyframes spinner-grow {
  4889. 0% {
  4890. -webkit-transform: scale(0);
  4891. transform: scale(0); }
  4892. 50% {
  4893. opacity: 1; } }
  4894. @keyframes spinner-grow {
  4895. 0% {
  4896. -webkit-transform: scale(0);
  4897. transform: scale(0); }
  4898. 50% {
  4899. opacity: 1; } }
  4900. .spinner-grow {
  4901. display: inline-block;
  4902. width: 2rem;
  4903. height: 2rem;
  4904. vertical-align: text-bottom;
  4905. background-color: currentColor;
  4906. border-radius: 50%;
  4907. opacity: 0;
  4908. -webkit-animation: spinner-grow .75s linear infinite;
  4909. animation: spinner-grow .75s linear infinite; }
  4910. .spinner-grow-sm {
  4911. width: 1rem;
  4912. height: 1rem; }
  4913. .align-baseline {
  4914. vertical-align: baseline !important; }
  4915. .align-top {
  4916. vertical-align: top !important; }
  4917. .align-middle {
  4918. vertical-align: middle !important; }
  4919. .align-bottom {
  4920. vertical-align: bottom !important; }
  4921. .align-text-bottom {
  4922. vertical-align: text-bottom !important; }
  4923. .align-text-top {
  4924. vertical-align: text-top !important; }
  4925. .bg-primary {
  4926. background-color: #886ab5 !important; }
  4927. a.bg-primary:hover, a.bg-primary:focus,
  4928. button.bg-primary:hover,
  4929. button.bg-primary:focus {
  4930. background-color: #6e4e9e !important; }
  4931. .bg-secondary {
  4932. background-color: #868e96 !important; }
  4933. a.bg-secondary:hover, a.bg-secondary:focus,
  4934. button.bg-secondary:hover,
  4935. button.bg-secondary:focus {
  4936. background-color: #6c757d !important; }
  4937. .bg-success {
  4938. background-color: #1dc9b7 !important; }
  4939. a.bg-success:hover, a.bg-success:focus,
  4940. button.bg-success:hover,
  4941. button.bg-success:focus {
  4942. background-color: #179c8e !important; }
  4943. .bg-info {
  4944. background-color: #2196F3 !important; }
  4945. a.bg-info:hover, a.bg-info:focus,
  4946. button.bg-info:hover,
  4947. button.bg-info:focus {
  4948. background-color: #0c7cd5 !important; }
  4949. .bg-warning {
  4950. background-color: #ffc241 !important; }
  4951. a.bg-warning:hover, a.bg-warning:focus,
  4952. button.bg-warning:hover,
  4953. button.bg-warning:focus {
  4954. background-color: #ffb20e !important; }
  4955. .bg-danger {
  4956. background-color: #fd3995 !important; }
  4957. a.bg-danger:hover, a.bg-danger:focus,
  4958. button.bg-danger:hover,
  4959. button.bg-danger:focus {
  4960. background-color: #fc077a !important; }
  4961. .bg-light {
  4962. background-color: #fff !important; }
  4963. a.bg-light:hover, a.bg-light:focus,
  4964. button.bg-light:hover,
  4965. button.bg-light:focus {
  4966. background-color: #e6e6e6 !important; }
  4967. .bg-dark {
  4968. background-color: #505050 !important; }
  4969. a.bg-dark:hover, a.bg-dark:focus,
  4970. button.bg-dark:hover,
  4971. button.bg-dark:focus {
  4972. background-color: #363636 !important; }
  4973. .bg-white {
  4974. background-color: #fff !important; }
  4975. .bg-transparent {
  4976. background-color: transparent !important; }
  4977. .border {
  4978. border: 1px solid #dee2e6 !important; }
  4979. .border-top {
  4980. border-top: 1px solid #dee2e6 !important; }
  4981. .border-right {
  4982. border-left: 1px solid #dee2e6 !important; }
  4983. .border-bottom {
  4984. border-bottom: 1px solid #dee2e6 !important; }
  4985. .border-left {
  4986. border-right: 1px solid #dee2e6 !important; }
  4987. .border-0 {
  4988. border: 0 !important; }
  4989. .border-top-0 {
  4990. border-top: 0 !important; }
  4991. .border-right-0 {
  4992. border-left: 0 !important; }
  4993. .border-bottom-0 {
  4994. border-bottom: 0 !important; }
  4995. .border-left-0 {
  4996. border-right: 0 !important; }
  4997. .border-primary {
  4998. border-color: #886ab5 !important; }
  4999. .border-secondary {
  5000. border-color: #868e96 !important; }
  5001. .border-success {
  5002. border-color: #1dc9b7 !important; }
  5003. .border-info {
  5004. border-color: #2196F3 !important; }
  5005. .border-warning {
  5006. border-color: #ffc241 !important; }
  5007. .border-danger {
  5008. border-color: #fd3995 !important; }
  5009. .border-light {
  5010. border-color: #fff !important; }
  5011. .border-dark {
  5012. border-color: #505050 !important; }
  5013. .border-white {
  5014. border-color: #fff !important; }
  5015. .rounded-sm {
  5016. border-radius: 4px !important; }
  5017. .rounded {
  5018. border-radius: 4px !important; }
  5019. .rounded-top {
  5020. border-top-right-radius: 4px !important;
  5021. border-top-left-radius: 4px !important; }
  5022. .rounded-right {
  5023. border-top-left-radius: 4px !important;
  5024. border-bottom-left-radius: 4px !important; }
  5025. .rounded-bottom {
  5026. border-bottom-left-radius: 4px !important;
  5027. border-bottom-right-radius: 4px !important; }
  5028. .rounded-left {
  5029. border-top-right-radius: 4px !important;
  5030. border-bottom-right-radius: 4px !important; }
  5031. .rounded-lg {
  5032. border-radius: 4px !important; }
  5033. .rounded-circle {
  5034. border-radius: 50% !important; }
  5035. .rounded-pill {
  5036. border-radius: 50rem !important; }
  5037. .rounded-0 {
  5038. border-radius: 0 !important; }
  5039. .clearfix::after {
  5040. display: block;
  5041. clear: both;
  5042. content: ""; }
  5043. .d-none {
  5044. display: none !important; }
  5045. .d-inline {
  5046. display: inline !important; }
  5047. .d-inline-block {
  5048. display: inline-block !important; }
  5049. .d-block {
  5050. display: block !important; }
  5051. .d-table {
  5052. display: table !important; }
  5053. .d-table-row {
  5054. display: table-row !important; }
  5055. .d-table-cell {
  5056. display: table-cell !important; }
  5057. .d-flex {
  5058. display: -webkit-box !important;
  5059. display: -ms-flexbox !important;
  5060. display: flex !important; }
  5061. .d-inline-flex {
  5062. display: -webkit-inline-box !important;
  5063. display: -ms-inline-flexbox !important;
  5064. display: inline-flex !important; }
  5065. @media (min-width: 576px) {
  5066. .d-sm-none {
  5067. display: none !important; }
  5068. .d-sm-inline {
  5069. display: inline !important; }
  5070. .d-sm-inline-block {
  5071. display: inline-block !important; }
  5072. .d-sm-block {
  5073. display: block !important; }
  5074. .d-sm-table {
  5075. display: table !important; }
  5076. .d-sm-table-row {
  5077. display: table-row !important; }
  5078. .d-sm-table-cell {
  5079. display: table-cell !important; }
  5080. .d-sm-flex {
  5081. display: -webkit-box !important;
  5082. display: -ms-flexbox !important;
  5083. display: flex !important; }
  5084. .d-sm-inline-flex {
  5085. display: -webkit-inline-box !important;
  5086. display: -ms-inline-flexbox !important;
  5087. display: inline-flex !important; } }
  5088. @media (min-width: 768px) {
  5089. .d-md-none {
  5090. display: none !important; }
  5091. .d-md-inline {
  5092. display: inline !important; }
  5093. .d-md-inline-block {
  5094. display: inline-block !important; }
  5095. .d-md-block {
  5096. display: block !important; }
  5097. .d-md-table {
  5098. display: table !important; }
  5099. .d-md-table-row {
  5100. display: table-row !important; }
  5101. .d-md-table-cell {
  5102. display: table-cell !important; }
  5103. .d-md-flex {
  5104. display: -webkit-box !important;
  5105. display: -ms-flexbox !important;
  5106. display: flex !important; }
  5107. .d-md-inline-flex {
  5108. display: -webkit-inline-box !important;
  5109. display: -ms-inline-flexbox !important;
  5110. display: inline-flex !important; } }
  5111. @media (min-width: 992px) {
  5112. .d-lg-none {
  5113. display: none !important; }
  5114. .d-lg-inline {
  5115. display: inline !important; }
  5116. .d-lg-inline-block {
  5117. display: inline-block !important; }
  5118. .d-lg-block {
  5119. display: block !important; }
  5120. .d-lg-table {
  5121. display: table !important; }
  5122. .d-lg-table-row {
  5123. display: table-row !important; }
  5124. .d-lg-table-cell {
  5125. display: table-cell !important; }
  5126. .d-lg-flex {
  5127. display: -webkit-box !important;
  5128. display: -ms-flexbox !important;
  5129. display: flex !important; }
  5130. .d-lg-inline-flex {
  5131. display: -webkit-inline-box !important;
  5132. display: -ms-inline-flexbox !important;
  5133. display: inline-flex !important; } }
  5134. @media (min-width: 1399px) {
  5135. .d-xl-none {
  5136. display: none !important; }
  5137. .d-xl-inline {
  5138. display: inline !important; }
  5139. .d-xl-inline-block {
  5140. display: inline-block !important; }
  5141. .d-xl-block {
  5142. display: block !important; }
  5143. .d-xl-table {
  5144. display: table !important; }
  5145. .d-xl-table-row {
  5146. display: table-row !important; }
  5147. .d-xl-table-cell {
  5148. display: table-cell !important; }
  5149. .d-xl-flex {
  5150. display: -webkit-box !important;
  5151. display: -ms-flexbox !important;
  5152. display: flex !important; }
  5153. .d-xl-inline-flex {
  5154. display: -webkit-inline-box !important;
  5155. display: -ms-inline-flexbox !important;
  5156. display: inline-flex !important; } }
  5157. @media print {
  5158. .d-print-none {
  5159. display: none !important; }
  5160. .d-print-inline {
  5161. display: inline !important; }
  5162. .d-print-inline-block {
  5163. display: inline-block !important; }
  5164. .d-print-block {
  5165. display: block !important; }
  5166. .d-print-table {
  5167. display: table !important; }
  5168. .d-print-table-row {
  5169. display: table-row !important; }
  5170. .d-print-table-cell {
  5171. display: table-cell !important; }
  5172. .d-print-flex {
  5173. display: -webkit-box !important;
  5174. display: -ms-flexbox !important;
  5175. display: flex !important; }
  5176. .d-print-inline-flex {
  5177. display: -webkit-inline-box !important;
  5178. display: -ms-inline-flexbox !important;
  5179. display: inline-flex !important; } }
  5180. .embed-responsive {
  5181. position: relative;
  5182. display: block;
  5183. width: 100%;
  5184. padding: 0;
  5185. overflow: hidden; }
  5186. .embed-responsive::before {
  5187. display: block;
  5188. content: ""; }
  5189. .embed-responsive .embed-responsive-item,
  5190. .embed-responsive iframe,
  5191. .embed-responsive embed,
  5192. .embed-responsive object,
  5193. .embed-responsive video {
  5194. position: absolute;
  5195. top: 0;
  5196. bottom: 0;
  5197. right: 0;
  5198. width: 100%;
  5199. height: 100%;
  5200. border: 0; }
  5201. .embed-responsive-21by9::before {
  5202. padding-top: 42.85714%; }
  5203. .embed-responsive-16by9::before {
  5204. padding-top: 56.25%; }
  5205. .embed-responsive-4by3::before {
  5206. padding-top: 75%; }
  5207. .embed-responsive-1by1::before {
  5208. padding-top: 100%; }
  5209. .flex-row {
  5210. -webkit-box-orient: horizontal !important;
  5211. -webkit-box-direction: normal !important;
  5212. -ms-flex-direction: row !important;
  5213. flex-direction: row !important; }
  5214. .flex-column {
  5215. -webkit-box-orient: vertical !important;
  5216. -webkit-box-direction: normal !important;
  5217. -ms-flex-direction: column !important;
  5218. flex-direction: column !important; }
  5219. .flex-row-reverse {
  5220. -webkit-box-orient: horizontal !important;
  5221. -webkit-box-direction: reverse !important;
  5222. -ms-flex-direction: row-reverse !important;
  5223. flex-direction: row-reverse !important; }
  5224. .flex-column-reverse {
  5225. -webkit-box-orient: vertical !important;
  5226. -webkit-box-direction: reverse !important;
  5227. -ms-flex-direction: column-reverse !important;
  5228. flex-direction: column-reverse !important; }
  5229. .flex-wrap {
  5230. -ms-flex-wrap: wrap !important;
  5231. flex-wrap: wrap !important; }
  5232. .flex-nowrap {
  5233. -ms-flex-wrap: nowrap !important;
  5234. flex-wrap: nowrap !important; }
  5235. .flex-wrap-reverse {
  5236. -ms-flex-wrap: wrap-reverse !important;
  5237. flex-wrap: wrap-reverse !important; }
  5238. .flex-fill {
  5239. -webkit-box-flex: 1 !important;
  5240. -ms-flex: 1 1 auto !important;
  5241. flex: 1 1 auto !important; }
  5242. .flex-grow-0 {
  5243. -webkit-box-flex: 0 !important;
  5244. -ms-flex-positive: 0 !important;
  5245. flex-grow: 0 !important; }
  5246. .flex-grow-1 {
  5247. -webkit-box-flex: 1 !important;
  5248. -ms-flex-positive: 1 !important;
  5249. flex-grow: 1 !important; }
  5250. .flex-shrink-0 {
  5251. -ms-flex-negative: 0 !important;
  5252. flex-shrink: 0 !important; }
  5253. .flex-shrink-1 {
  5254. -ms-flex-negative: 1 !important;
  5255. flex-shrink: 1 !important; }
  5256. .justify-content-start {
  5257. -webkit-box-pack: start !important;
  5258. -ms-flex-pack: start !important;
  5259. justify-content: flex-start !important; }
  5260. .justify-content-end {
  5261. -webkit-box-pack: end !important;
  5262. -ms-flex-pack: end !important;
  5263. justify-content: flex-end !important; }
  5264. .justify-content-center {
  5265. -webkit-box-pack: center !important;
  5266. -ms-flex-pack: center !important;
  5267. justify-content: center !important; }
  5268. .justify-content-between {
  5269. -webkit-box-pack: justify !important;
  5270. -ms-flex-pack: justify !important;
  5271. justify-content: space-between !important; }
  5272. .justify-content-around {
  5273. -ms-flex-pack: distribute !important;
  5274. justify-content: space-around !important; }
  5275. .align-items-start {
  5276. -webkit-box-align: start !important;
  5277. -ms-flex-align: start !important;
  5278. align-items: flex-start !important; }
  5279. .align-items-end {
  5280. -webkit-box-align: end !important;
  5281. -ms-flex-align: end !important;
  5282. align-items: flex-end !important; }
  5283. .align-items-center {
  5284. -webkit-box-align: center !important;
  5285. -ms-flex-align: center !important;
  5286. align-items: center !important; }
  5287. .align-items-baseline {
  5288. -webkit-box-align: baseline !important;
  5289. -ms-flex-align: baseline !important;
  5290. align-items: baseline !important; }
  5291. .align-items-stretch {
  5292. -webkit-box-align: stretch !important;
  5293. -ms-flex-align: stretch !important;
  5294. align-items: stretch !important; }
  5295. .align-content-start {
  5296. -ms-flex-line-pack: start !important;
  5297. align-content: flex-start !important; }
  5298. .align-content-end {
  5299. -ms-flex-line-pack: end !important;
  5300. align-content: flex-end !important; }
  5301. .align-content-center {
  5302. -ms-flex-line-pack: center !important;
  5303. align-content: center !important; }
  5304. .align-content-between {
  5305. -ms-flex-line-pack: justify !important;
  5306. align-content: space-between !important; }
  5307. .align-content-around {
  5308. -ms-flex-line-pack: distribute !important;
  5309. align-content: space-around !important; }
  5310. .align-content-stretch {
  5311. -ms-flex-line-pack: stretch !important;
  5312. align-content: stretch !important; }
  5313. .align-self-auto {
  5314. -ms-flex-item-align: auto !important;
  5315. align-self: auto !important; }
  5316. .align-self-start {
  5317. -ms-flex-item-align: start !important;
  5318. align-self: flex-start !important; }
  5319. .align-self-end {
  5320. -ms-flex-item-align: end !important;
  5321. align-self: flex-end !important; }
  5322. .align-self-center {
  5323. -ms-flex-item-align: center !important;
  5324. align-self: center !important; }
  5325. .align-self-baseline {
  5326. -ms-flex-item-align: baseline !important;
  5327. align-self: baseline !important; }
  5328. .align-self-stretch {
  5329. -ms-flex-item-align: stretch !important;
  5330. align-self: stretch !important; }
  5331. @media (min-width: 576px) {
  5332. .flex-sm-row {
  5333. -webkit-box-orient: horizontal !important;
  5334. -webkit-box-direction: normal !important;
  5335. -ms-flex-direction: row !important;
  5336. flex-direction: row !important; }
  5337. .flex-sm-column {
  5338. -webkit-box-orient: vertical !important;
  5339. -webkit-box-direction: normal !important;
  5340. -ms-flex-direction: column !important;
  5341. flex-direction: column !important; }
  5342. .flex-sm-row-reverse {
  5343. -webkit-box-orient: horizontal !important;
  5344. -webkit-box-direction: reverse !important;
  5345. -ms-flex-direction: row-reverse !important;
  5346. flex-direction: row-reverse !important; }
  5347. .flex-sm-column-reverse {
  5348. -webkit-box-orient: vertical !important;
  5349. -webkit-box-direction: reverse !important;
  5350. -ms-flex-direction: column-reverse !important;
  5351. flex-direction: column-reverse !important; }
  5352. .flex-sm-wrap {
  5353. -ms-flex-wrap: wrap !important;
  5354. flex-wrap: wrap !important; }
  5355. .flex-sm-nowrap {
  5356. -ms-flex-wrap: nowrap !important;
  5357. flex-wrap: nowrap !important; }
  5358. .flex-sm-wrap-reverse {
  5359. -ms-flex-wrap: wrap-reverse !important;
  5360. flex-wrap: wrap-reverse !important; }
  5361. .flex-sm-fill {
  5362. -webkit-box-flex: 1 !important;
  5363. -ms-flex: 1 1 auto !important;
  5364. flex: 1 1 auto !important; }
  5365. .flex-sm-grow-0 {
  5366. -webkit-box-flex: 0 !important;
  5367. -ms-flex-positive: 0 !important;
  5368. flex-grow: 0 !important; }
  5369. .flex-sm-grow-1 {
  5370. -webkit-box-flex: 1 !important;
  5371. -ms-flex-positive: 1 !important;
  5372. flex-grow: 1 !important; }
  5373. .flex-sm-shrink-0 {
  5374. -ms-flex-negative: 0 !important;
  5375. flex-shrink: 0 !important; }
  5376. .flex-sm-shrink-1 {
  5377. -ms-flex-negative: 1 !important;
  5378. flex-shrink: 1 !important; }
  5379. .justify-content-sm-start {
  5380. -webkit-box-pack: start !important;
  5381. -ms-flex-pack: start !important;
  5382. justify-content: flex-start !important; }
  5383. .justify-content-sm-end {
  5384. -webkit-box-pack: end !important;
  5385. -ms-flex-pack: end !important;
  5386. justify-content: flex-end !important; }
  5387. .justify-content-sm-center {
  5388. -webkit-box-pack: center !important;
  5389. -ms-flex-pack: center !important;
  5390. justify-content: center !important; }
  5391. .justify-content-sm-between {
  5392. -webkit-box-pack: justify !important;
  5393. -ms-flex-pack: justify !important;
  5394. justify-content: space-between !important; }
  5395. .justify-content-sm-around {
  5396. -ms-flex-pack: distribute !important;
  5397. justify-content: space-around !important; }
  5398. .align-items-sm-start {
  5399. -webkit-box-align: start !important;
  5400. -ms-flex-align: start !important;
  5401. align-items: flex-start !important; }
  5402. .align-items-sm-end {
  5403. -webkit-box-align: end !important;
  5404. -ms-flex-align: end !important;
  5405. align-items: flex-end !important; }
  5406. .align-items-sm-center {
  5407. -webkit-box-align: center !important;
  5408. -ms-flex-align: center !important;
  5409. align-items: center !important; }
  5410. .align-items-sm-baseline {
  5411. -webkit-box-align: baseline !important;
  5412. -ms-flex-align: baseline !important;
  5413. align-items: baseline !important; }
  5414. .align-items-sm-stretch {
  5415. -webkit-box-align: stretch !important;
  5416. -ms-flex-align: stretch !important;
  5417. align-items: stretch !important; }
  5418. .align-content-sm-start {
  5419. -ms-flex-line-pack: start !important;
  5420. align-content: flex-start !important; }
  5421. .align-content-sm-end {
  5422. -ms-flex-line-pack: end !important;
  5423. align-content: flex-end !important; }
  5424. .align-content-sm-center {
  5425. -ms-flex-line-pack: center !important;
  5426. align-content: center !important; }
  5427. .align-content-sm-between {
  5428. -ms-flex-line-pack: justify !important;
  5429. align-content: space-between !important; }
  5430. .align-content-sm-around {
  5431. -ms-flex-line-pack: distribute !important;
  5432. align-content: space-around !important; }
  5433. .align-content-sm-stretch {
  5434. -ms-flex-line-pack: stretch !important;
  5435. align-content: stretch !important; }
  5436. .align-self-sm-auto {
  5437. -ms-flex-item-align: auto !important;
  5438. align-self: auto !important; }
  5439. .align-self-sm-start {
  5440. -ms-flex-item-align: start !important;
  5441. align-self: flex-start !important; }
  5442. .align-self-sm-end {
  5443. -ms-flex-item-align: end !important;
  5444. align-self: flex-end !important; }
  5445. .align-self-sm-center {
  5446. -ms-flex-item-align: center !important;
  5447. align-self: center !important; }
  5448. .align-self-sm-baseline {
  5449. -ms-flex-item-align: baseline !important;
  5450. align-self: baseline !important; }
  5451. .align-self-sm-stretch {
  5452. -ms-flex-item-align: stretch !important;
  5453. align-self: stretch !important; } }
  5454. @media (min-width: 768px) {
  5455. .flex-md-row {
  5456. -webkit-box-orient: horizontal !important;
  5457. -webkit-box-direction: normal !important;
  5458. -ms-flex-direction: row !important;
  5459. flex-direction: row !important; }
  5460. .flex-md-column {
  5461. -webkit-box-orient: vertical !important;
  5462. -webkit-box-direction: normal !important;
  5463. -ms-flex-direction: column !important;
  5464. flex-direction: column !important; }
  5465. .flex-md-row-reverse {
  5466. -webkit-box-orient: horizontal !important;
  5467. -webkit-box-direction: reverse !important;
  5468. -ms-flex-direction: row-reverse !important;
  5469. flex-direction: row-reverse !important; }
  5470. .flex-md-column-reverse {
  5471. -webkit-box-orient: vertical !important;
  5472. -webkit-box-direction: reverse !important;
  5473. -ms-flex-direction: column-reverse !important;
  5474. flex-direction: column-reverse !important; }
  5475. .flex-md-wrap {
  5476. -ms-flex-wrap: wrap !important;
  5477. flex-wrap: wrap !important; }
  5478. .flex-md-nowrap {
  5479. -ms-flex-wrap: nowrap !important;
  5480. flex-wrap: nowrap !important; }
  5481. .flex-md-wrap-reverse {
  5482. -ms-flex-wrap: wrap-reverse !important;
  5483. flex-wrap: wrap-reverse !important; }
  5484. .flex-md-fill {
  5485. -webkit-box-flex: 1 !important;
  5486. -ms-flex: 1 1 auto !important;
  5487. flex: 1 1 auto !important; }
  5488. .flex-md-grow-0 {
  5489. -webkit-box-flex: 0 !important;
  5490. -ms-flex-positive: 0 !important;
  5491. flex-grow: 0 !important; }
  5492. .flex-md-grow-1 {
  5493. -webkit-box-flex: 1 !important;
  5494. -ms-flex-positive: 1 !important;
  5495. flex-grow: 1 !important; }
  5496. .flex-md-shrink-0 {
  5497. -ms-flex-negative: 0 !important;
  5498. flex-shrink: 0 !important; }
  5499. .flex-md-shrink-1 {
  5500. -ms-flex-negative: 1 !important;
  5501. flex-shrink: 1 !important; }
  5502. .justify-content-md-start {
  5503. -webkit-box-pack: start !important;
  5504. -ms-flex-pack: start !important;
  5505. justify-content: flex-start !important; }
  5506. .justify-content-md-end {
  5507. -webkit-box-pack: end !important;
  5508. -ms-flex-pack: end !important;
  5509. justify-content: flex-end !important; }
  5510. .justify-content-md-center {
  5511. -webkit-box-pack: center !important;
  5512. -ms-flex-pack: center !important;
  5513. justify-content: center !important; }
  5514. .justify-content-md-between {
  5515. -webkit-box-pack: justify !important;
  5516. -ms-flex-pack: justify !important;
  5517. justify-content: space-between !important; }
  5518. .justify-content-md-around {
  5519. -ms-flex-pack: distribute !important;
  5520. justify-content: space-around !important; }
  5521. .align-items-md-start {
  5522. -webkit-box-align: start !important;
  5523. -ms-flex-align: start !important;
  5524. align-items: flex-start !important; }
  5525. .align-items-md-end {
  5526. -webkit-box-align: end !important;
  5527. -ms-flex-align: end !important;
  5528. align-items: flex-end !important; }
  5529. .align-items-md-center {
  5530. -webkit-box-align: center !important;
  5531. -ms-flex-align: center !important;
  5532. align-items: center !important; }
  5533. .align-items-md-baseline {
  5534. -webkit-box-align: baseline !important;
  5535. -ms-flex-align: baseline !important;
  5536. align-items: baseline !important; }
  5537. .align-items-md-stretch {
  5538. -webkit-box-align: stretch !important;
  5539. -ms-flex-align: stretch !important;
  5540. align-items: stretch !important; }
  5541. .align-content-md-start {
  5542. -ms-flex-line-pack: start !important;
  5543. align-content: flex-start !important; }
  5544. .align-content-md-end {
  5545. -ms-flex-line-pack: end !important;
  5546. align-content: flex-end !important; }
  5547. .align-content-md-center {
  5548. -ms-flex-line-pack: center !important;
  5549. align-content: center !important; }
  5550. .align-content-md-between {
  5551. -ms-flex-line-pack: justify !important;
  5552. align-content: space-between !important; }
  5553. .align-content-md-around {
  5554. -ms-flex-line-pack: distribute !important;
  5555. align-content: space-around !important; }
  5556. .align-content-md-stretch {
  5557. -ms-flex-line-pack: stretch !important;
  5558. align-content: stretch !important; }
  5559. .align-self-md-auto {
  5560. -ms-flex-item-align: auto !important;
  5561. align-self: auto !important; }
  5562. .align-self-md-start {
  5563. -ms-flex-item-align: start !important;
  5564. align-self: flex-start !important; }
  5565. .align-self-md-end {
  5566. -ms-flex-item-align: end !important;
  5567. align-self: flex-end !important; }
  5568. .align-self-md-center {
  5569. -ms-flex-item-align: center !important;
  5570. align-self: center !important; }
  5571. .align-self-md-baseline {
  5572. -ms-flex-item-align: baseline !important;
  5573. align-self: baseline !important; }
  5574. .align-self-md-stretch {
  5575. -ms-flex-item-align: stretch !important;
  5576. align-self: stretch !important; } }
  5577. @media (min-width: 992px) {
  5578. .flex-lg-row {
  5579. -webkit-box-orient: horizontal !important;
  5580. -webkit-box-direction: normal !important;
  5581. -ms-flex-direction: row !important;
  5582. flex-direction: row !important; }
  5583. .flex-lg-column {
  5584. -webkit-box-orient: vertical !important;
  5585. -webkit-box-direction: normal !important;
  5586. -ms-flex-direction: column !important;
  5587. flex-direction: column !important; }
  5588. .flex-lg-row-reverse {
  5589. -webkit-box-orient: horizontal !important;
  5590. -webkit-box-direction: reverse !important;
  5591. -ms-flex-direction: row-reverse !important;
  5592. flex-direction: row-reverse !important; }
  5593. .flex-lg-column-reverse {
  5594. -webkit-box-orient: vertical !important;
  5595. -webkit-box-direction: reverse !important;
  5596. -ms-flex-direction: column-reverse !important;
  5597. flex-direction: column-reverse !important; }
  5598. .flex-lg-wrap {
  5599. -ms-flex-wrap: wrap !important;
  5600. flex-wrap: wrap !important; }
  5601. .flex-lg-nowrap {
  5602. -ms-flex-wrap: nowrap !important;
  5603. flex-wrap: nowrap !important; }
  5604. .flex-lg-wrap-reverse {
  5605. -ms-flex-wrap: wrap-reverse !important;
  5606. flex-wrap: wrap-reverse !important; }
  5607. .flex-lg-fill {
  5608. -webkit-box-flex: 1 !important;
  5609. -ms-flex: 1 1 auto !important;
  5610. flex: 1 1 auto !important; }
  5611. .flex-lg-grow-0 {
  5612. -webkit-box-flex: 0 !important;
  5613. -ms-flex-positive: 0 !important;
  5614. flex-grow: 0 !important; }
  5615. .flex-lg-grow-1 {
  5616. -webkit-box-flex: 1 !important;
  5617. -ms-flex-positive: 1 !important;
  5618. flex-grow: 1 !important; }
  5619. .flex-lg-shrink-0 {
  5620. -ms-flex-negative: 0 !important;
  5621. flex-shrink: 0 !important; }
  5622. .flex-lg-shrink-1 {
  5623. -ms-flex-negative: 1 !important;
  5624. flex-shrink: 1 !important; }
  5625. .justify-content-lg-start {
  5626. -webkit-box-pack: start !important;
  5627. -ms-flex-pack: start !important;
  5628. justify-content: flex-start !important; }
  5629. .justify-content-lg-end {
  5630. -webkit-box-pack: end !important;
  5631. -ms-flex-pack: end !important;
  5632. justify-content: flex-end !important; }
  5633. .justify-content-lg-center {
  5634. -webkit-box-pack: center !important;
  5635. -ms-flex-pack: center !important;
  5636. justify-content: center !important; }
  5637. .justify-content-lg-between {
  5638. -webkit-box-pack: justify !important;
  5639. -ms-flex-pack: justify !important;
  5640. justify-content: space-between !important; }
  5641. .justify-content-lg-around {
  5642. -ms-flex-pack: distribute !important;
  5643. justify-content: space-around !important; }
  5644. .align-items-lg-start {
  5645. -webkit-box-align: start !important;
  5646. -ms-flex-align: start !important;
  5647. align-items: flex-start !important; }
  5648. .align-items-lg-end {
  5649. -webkit-box-align: end !important;
  5650. -ms-flex-align: end !important;
  5651. align-items: flex-end !important; }
  5652. .align-items-lg-center {
  5653. -webkit-box-align: center !important;
  5654. -ms-flex-align: center !important;
  5655. align-items: center !important; }
  5656. .align-items-lg-baseline {
  5657. -webkit-box-align: baseline !important;
  5658. -ms-flex-align: baseline !important;
  5659. align-items: baseline !important; }
  5660. .align-items-lg-stretch {
  5661. -webkit-box-align: stretch !important;
  5662. -ms-flex-align: stretch !important;
  5663. align-items: stretch !important; }
  5664. .align-content-lg-start {
  5665. -ms-flex-line-pack: start !important;
  5666. align-content: flex-start !important; }
  5667. .align-content-lg-end {
  5668. -ms-flex-line-pack: end !important;
  5669. align-content: flex-end !important; }
  5670. .align-content-lg-center {
  5671. -ms-flex-line-pack: center !important;
  5672. align-content: center !important; }
  5673. .align-content-lg-between {
  5674. -ms-flex-line-pack: justify !important;
  5675. align-content: space-between !important; }
  5676. .align-content-lg-around {
  5677. -ms-flex-line-pack: distribute !important;
  5678. align-content: space-around !important; }
  5679. .align-content-lg-stretch {
  5680. -ms-flex-line-pack: stretch !important;
  5681. align-content: stretch !important; }
  5682. .align-self-lg-auto {
  5683. -ms-flex-item-align: auto !important;
  5684. align-self: auto !important; }
  5685. .align-self-lg-start {
  5686. -ms-flex-item-align: start !important;
  5687. align-self: flex-start !important; }
  5688. .align-self-lg-end {
  5689. -ms-flex-item-align: end !important;
  5690. align-self: flex-end !important; }
  5691. .align-self-lg-center {
  5692. -ms-flex-item-align: center !important;
  5693. align-self: center !important; }
  5694. .align-self-lg-baseline {
  5695. -ms-flex-item-align: baseline !important;
  5696. align-self: baseline !important; }
  5697. .align-self-lg-stretch {
  5698. -ms-flex-item-align: stretch !important;
  5699. align-self: stretch !important; } }
  5700. @media (min-width: 1399px) {
  5701. .flex-xl-row {
  5702. -webkit-box-orient: horizontal !important;
  5703. -webkit-box-direction: normal !important;
  5704. -ms-flex-direction: row !important;
  5705. flex-direction: row !important; }
  5706. .flex-xl-column {
  5707. -webkit-box-orient: vertical !important;
  5708. -webkit-box-direction: normal !important;
  5709. -ms-flex-direction: column !important;
  5710. flex-direction: column !important; }
  5711. .flex-xl-row-reverse {
  5712. -webkit-box-orient: horizontal !important;
  5713. -webkit-box-direction: reverse !important;
  5714. -ms-flex-direction: row-reverse !important;
  5715. flex-direction: row-reverse !important; }
  5716. .flex-xl-column-reverse {
  5717. -webkit-box-orient: vertical !important;
  5718. -webkit-box-direction: reverse !important;
  5719. -ms-flex-direction: column-reverse !important;
  5720. flex-direction: column-reverse !important; }
  5721. .flex-xl-wrap {
  5722. -ms-flex-wrap: wrap !important;
  5723. flex-wrap: wrap !important; }
  5724. .flex-xl-nowrap {
  5725. -ms-flex-wrap: nowrap !important;
  5726. flex-wrap: nowrap !important; }
  5727. .flex-xl-wrap-reverse {
  5728. -ms-flex-wrap: wrap-reverse !important;
  5729. flex-wrap: wrap-reverse !important; }
  5730. .flex-xl-fill {
  5731. -webkit-box-flex: 1 !important;
  5732. -ms-flex: 1 1 auto !important;
  5733. flex: 1 1 auto !important; }
  5734. .flex-xl-grow-0 {
  5735. -webkit-box-flex: 0 !important;
  5736. -ms-flex-positive: 0 !important;
  5737. flex-grow: 0 !important; }
  5738. .flex-xl-grow-1 {
  5739. -webkit-box-flex: 1 !important;
  5740. -ms-flex-positive: 1 !important;
  5741. flex-grow: 1 !important; }
  5742. .flex-xl-shrink-0 {
  5743. -ms-flex-negative: 0 !important;
  5744. flex-shrink: 0 !important; }
  5745. .flex-xl-shrink-1 {
  5746. -ms-flex-negative: 1 !important;
  5747. flex-shrink: 1 !important; }
  5748. .justify-content-xl-start {
  5749. -webkit-box-pack: start !important;
  5750. -ms-flex-pack: start !important;
  5751. justify-content: flex-start !important; }
  5752. .justify-content-xl-end {
  5753. -webkit-box-pack: end !important;
  5754. -ms-flex-pack: end !important;
  5755. justify-content: flex-end !important; }
  5756. .justify-content-xl-center {
  5757. -webkit-box-pack: center !important;
  5758. -ms-flex-pack: center !important;
  5759. justify-content: center !important; }
  5760. .justify-content-xl-between {
  5761. -webkit-box-pack: justify !important;
  5762. -ms-flex-pack: justify !important;
  5763. justify-content: space-between !important; }
  5764. .justify-content-xl-around {
  5765. -ms-flex-pack: distribute !important;
  5766. justify-content: space-around !important; }
  5767. .align-items-xl-start {
  5768. -webkit-box-align: start !important;
  5769. -ms-flex-align: start !important;
  5770. align-items: flex-start !important; }
  5771. .align-items-xl-end {
  5772. -webkit-box-align: end !important;
  5773. -ms-flex-align: end !important;
  5774. align-items: flex-end !important; }
  5775. .align-items-xl-center {
  5776. -webkit-box-align: center !important;
  5777. -ms-flex-align: center !important;
  5778. align-items: center !important; }
  5779. .align-items-xl-baseline {
  5780. -webkit-box-align: baseline !important;
  5781. -ms-flex-align: baseline !important;
  5782. align-items: baseline !important; }
  5783. .align-items-xl-stretch {
  5784. -webkit-box-align: stretch !important;
  5785. -ms-flex-align: stretch !important;
  5786. align-items: stretch !important; }
  5787. .align-content-xl-start {
  5788. -ms-flex-line-pack: start !important;
  5789. align-content: flex-start !important; }
  5790. .align-content-xl-end {
  5791. -ms-flex-line-pack: end !important;
  5792. align-content: flex-end !important; }
  5793. .align-content-xl-center {
  5794. -ms-flex-line-pack: center !important;
  5795. align-content: center !important; }
  5796. .align-content-xl-between {
  5797. -ms-flex-line-pack: justify !important;
  5798. align-content: space-between !important; }
  5799. .align-content-xl-around {
  5800. -ms-flex-line-pack: distribute !important;
  5801. align-content: space-around !important; }
  5802. .align-content-xl-stretch {
  5803. -ms-flex-line-pack: stretch !important;
  5804. align-content: stretch !important; }
  5805. .align-self-xl-auto {
  5806. -ms-flex-item-align: auto !important;
  5807. align-self: auto !important; }
  5808. .align-self-xl-start {
  5809. -ms-flex-item-align: start !important;
  5810. align-self: flex-start !important; }
  5811. .align-self-xl-end {
  5812. -ms-flex-item-align: end !important;
  5813. align-self: flex-end !important; }
  5814. .align-self-xl-center {
  5815. -ms-flex-item-align: center !important;
  5816. align-self: center !important; }
  5817. .align-self-xl-baseline {
  5818. -ms-flex-item-align: baseline !important;
  5819. align-self: baseline !important; }
  5820. .align-self-xl-stretch {
  5821. -ms-flex-item-align: stretch !important;
  5822. align-self: stretch !important; } }
  5823. .float-left {
  5824. float: right !important; }
  5825. .float-right {
  5826. float: left !important; }
  5827. .float-none {
  5828. float: none !important; }
  5829. @media (min-width: 576px) {
  5830. .float-sm-left {
  5831. float: right !important; }
  5832. .float-sm-right {
  5833. float: left !important; }
  5834. .float-sm-none {
  5835. float: none !important; } }
  5836. @media (min-width: 768px) {
  5837. .float-md-left {
  5838. float: right !important; }
  5839. .float-md-right {
  5840. float: left !important; }
  5841. .float-md-none {
  5842. float: none !important; } }
  5843. @media (min-width: 992px) {
  5844. .float-lg-left {
  5845. float: right !important; }
  5846. .float-lg-right {
  5847. float: left !important; }
  5848. .float-lg-none {
  5849. float: none !important; } }
  5850. @media (min-width: 1399px) {
  5851. .float-xl-left {
  5852. float: right !important; }
  5853. .float-xl-right {
  5854. float: left !important; }
  5855. .float-xl-none {
  5856. float: none !important; } }
  5857. .overflow-auto {
  5858. overflow: auto !important; }
  5859. .overflow-hidden {
  5860. overflow: hidden !important; }
  5861. .position-static {
  5862. position: static !important; }
  5863. .position-relative {
  5864. position: relative !important; }
  5865. .position-absolute {
  5866. position: absolute !important; }
  5867. .position-fixed {
  5868. position: fixed !important; }
  5869. .position-sticky {
  5870. position: -webkit-sticky !important;
  5871. position: sticky !important; }
  5872. .fixed-top {
  5873. position: fixed;
  5874. top: 0;
  5875. left: 0;
  5876. right: 0;
  5877. z-index: 2030; }
  5878. .fixed-bottom {
  5879. position: fixed;
  5880. left: 0;
  5881. bottom: 0;
  5882. right: 0;
  5883. z-index: 2030; }
  5884. @supports ((position: -webkit-sticky) or (position: sticky)) {
  5885. .sticky-top {
  5886. position: -webkit-sticky;
  5887. position: sticky;
  5888. top: 0;
  5889. z-index: 2020; } }
  5890. .sr-only {
  5891. position: absolute;
  5892. width: 1px;
  5893. height: 1px;
  5894. padding: 0;
  5895. overflow: hidden;
  5896. clip: rect(0, 0, 0, 0);
  5897. white-space: nowrap;
  5898. border: 0; }
  5899. .sr-only-focusable:active, .sr-only-focusable:focus {
  5900. position: static;
  5901. width: auto;
  5902. height: auto;
  5903. overflow: visible;
  5904. clip: auto;
  5905. white-space: normal; }
  5906. .shadow-sm {
  5907. -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  5908. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
  5909. .shadow {
  5910. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  5911. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
  5912. .shadow-lg {
  5913. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  5914. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
  5915. .shadow-none {
  5916. -webkit-box-shadow: none !important;
  5917. box-shadow: none !important; }
  5918. .w-25 {
  5919. width: 25% !important; }
  5920. .w-50 {
  5921. width: 50% !important; }
  5922. .w-75 {
  5923. width: 75% !important; }
  5924. .w-100 {
  5925. width: 100% !important; }
  5926. .w-auto {
  5927. width: auto !important; }
  5928. .h-25 {
  5929. height: 25% !important; }
  5930. .h-50 {
  5931. height: 50% !important; }
  5932. .h-75 {
  5933. height: 75% !important; }
  5934. .h-100 {
  5935. height: 100% !important; }
  5936. .h-auto {
  5937. height: auto !important; }
  5938. .mw-100 {
  5939. max-width: 100% !important; }
  5940. .mh-100 {
  5941. max-height: 100% !important; }
  5942. .min-vw-100 {
  5943. min-width: 100vw !important; }
  5944. .min-vh-100 {
  5945. min-height: 100vh !important; }
  5946. .vw-100 {
  5947. width: 100vw !important; }
  5948. .vh-100 {
  5949. height: 100vh !important; }
  5950. .stretched-link::after {
  5951. position: absolute;
  5952. top: 0;
  5953. left: 0;
  5954. bottom: 0;
  5955. right: 0;
  5956. z-index: 1;
  5957. pointer-events: auto;
  5958. content: "";
  5959. background-color: rgba(0, 0, 0, 0); }
  5960. .m-0 {
  5961. margin: 0 !important; }
  5962. .mt-0,
  5963. .my-0 {
  5964. margin-top: 0 !important; }
  5965. .mr-0,
  5966. .mx-0 {
  5967. margin-left: 0 !important; }
  5968. .mb-0,
  5969. .my-0 {
  5970. margin-bottom: 0 !important; }
  5971. .ml-0,
  5972. .mx-0 {
  5973. margin-right: 0 !important; }
  5974. .m-1 {
  5975. margin: 0.25rem !important; }
  5976. .mt-1,
  5977. .my-1 {
  5978. margin-top: 0.25rem !important; }
  5979. .mr-1,
  5980. .mx-1 {
  5981. margin-left: 0.25rem !important; }
  5982. .mb-1,
  5983. .my-1 {
  5984. margin-bottom: 0.25rem !important; }
  5985. .ml-1,
  5986. .mx-1 {
  5987. margin-right: 0.25rem !important; }
  5988. .m-2 {
  5989. margin: 0.5rem !important; }
  5990. .mt-2,
  5991. .my-2 {
  5992. margin-top: 0.5rem !important; }
  5993. .mr-2,
  5994. .mx-2 {
  5995. margin-left: 0.5rem !important; }
  5996. .mb-2,
  5997. .my-2 {
  5998. margin-bottom: 0.5rem !important; }
  5999. .ml-2,
  6000. .mx-2 {
  6001. margin-right: 0.5rem !important; }
  6002. .m-3 {
  6003. margin: 1rem !important; }
  6004. .mt-3,
  6005. .my-3 {
  6006. margin-top: 1rem !important; }
  6007. .mr-3,
  6008. .mx-3 {
  6009. margin-left: 1rem !important; }
  6010. .mb-3,
  6011. .my-3 {
  6012. margin-bottom: 1rem !important; }
  6013. .ml-3,
  6014. .mx-3 {
  6015. margin-right: 1rem !important; }
  6016. .m-4 {
  6017. margin: 1.5rem !important; }
  6018. .mt-4,
  6019. .my-4 {
  6020. margin-top: 1.5rem !important; }
  6021. .mr-4,
  6022. .mx-4 {
  6023. margin-left: 1.5rem !important; }
  6024. .mb-4,
  6025. .my-4 {
  6026. margin-bottom: 1.5rem !important; }
  6027. .ml-4,
  6028. .mx-4 {
  6029. margin-right: 1.5rem !important; }
  6030. .m-5 {
  6031. margin: 2rem !important; }
  6032. .mt-5,
  6033. .my-5 {
  6034. margin-top: 2rem !important; }
  6035. .mr-5,
  6036. .mx-5 {
  6037. margin-left: 2rem !important; }
  6038. .mb-5,
  6039. .my-5 {
  6040. margin-bottom: 2rem !important; }
  6041. .ml-5,
  6042. .mx-5 {
  6043. margin-right: 2rem !important; }
  6044. .m-6 {
  6045. margin: 2.5rem !important; }
  6046. .mt-6,
  6047. .my-6 {
  6048. margin-top: 2.5rem !important; }
  6049. .mr-6,
  6050. .mx-6 {
  6051. margin-left: 2.5rem !important; }
  6052. .mb-6,
  6053. .my-6 {
  6054. margin-bottom: 2.5rem !important; }
  6055. .ml-6,
  6056. .mx-6 {
  6057. margin-right: 2.5rem !important; }
  6058. .p-0 {
  6059. padding: 0 !important; }
  6060. .pt-0,
  6061. .py-0 {
  6062. padding-top: 0 !important; }
  6063. .pr-0,
  6064. .px-0 {
  6065. padding-left: 0 !important; }
  6066. .pb-0,
  6067. .py-0 {
  6068. padding-bottom: 0 !important; }
  6069. .pl-0,
  6070. .px-0 {
  6071. padding-right: 0 !important; }
  6072. .p-1 {
  6073. padding: 0.25rem !important; }
  6074. .pt-1,
  6075. .py-1 {
  6076. padding-top: 0.25rem !important; }
  6077. .pr-1,
  6078. .px-1 {
  6079. padding-left: 0.25rem !important; }
  6080. .pb-1,
  6081. .py-1 {
  6082. padding-bottom: 0.25rem !important; }
  6083. .pl-1,
  6084. .px-1 {
  6085. padding-right: 0.25rem !important; }
  6086. .p-2 {
  6087. padding: 0.5rem !important; }
  6088. .pt-2,
  6089. .py-2 {
  6090. padding-top: 0.5rem !important; }
  6091. .pr-2,
  6092. .px-2 {
  6093. padding-left: 0.5rem !important; }
  6094. .pb-2,
  6095. .py-2 {
  6096. padding-bottom: 0.5rem !important; }
  6097. .pl-2,
  6098. .px-2 {
  6099. padding-right: 0.5rem !important; }
  6100. .p-3 {
  6101. padding: 1rem !important; }
  6102. .pt-3,
  6103. .py-3 {
  6104. padding-top: 1rem !important; }
  6105. .pr-3,
  6106. .px-3 {
  6107. padding-left: 1rem !important; }
  6108. .pb-3,
  6109. .py-3 {
  6110. padding-bottom: 1rem !important; }
  6111. .pl-3,
  6112. .px-3 {
  6113. padding-right: 1rem !important; }
  6114. .p-4 {
  6115. padding: 1.5rem !important; }
  6116. .pt-4,
  6117. .py-4 {
  6118. padding-top: 1.5rem !important; }
  6119. .pr-4,
  6120. .px-4 {
  6121. padding-left: 1.5rem !important; }
  6122. .pb-4,
  6123. .py-4 {
  6124. padding-bottom: 1.5rem !important; }
  6125. .pl-4,
  6126. .px-4 {
  6127. padding-right: 1.5rem !important; }
  6128. .p-5 {
  6129. padding: 2rem !important; }
  6130. .pt-5,
  6131. .py-5 {
  6132. padding-top: 2rem !important; }
  6133. .pr-5,
  6134. .px-5 {
  6135. padding-left: 2rem !important; }
  6136. .pb-5,
  6137. .py-5 {
  6138. padding-bottom: 2rem !important; }
  6139. .pl-5,
  6140. .px-5 {
  6141. padding-right: 2rem !important; }
  6142. .p-6 {
  6143. padding: 2.5rem !important; }
  6144. .pt-6,
  6145. .py-6 {
  6146. padding-top: 2.5rem !important; }
  6147. .pr-6,
  6148. .px-6 {
  6149. padding-left: 2.5rem !important; }
  6150. .pb-6,
  6151. .py-6 {
  6152. padding-bottom: 2.5rem !important; }
  6153. .pl-6,
  6154. .px-6 {
  6155. padding-right: 2.5rem !important; }
  6156. .m-n1 {
  6157. margin: -0.25rem !important; }
  6158. .mt-n1,
  6159. .my-n1 {
  6160. margin-top: -0.25rem !important; }
  6161. .mr-n1,
  6162. .mx-n1 {
  6163. margin-left: -0.25rem !important; }
  6164. .mb-n1,
  6165. .my-n1 {
  6166. margin-bottom: -0.25rem !important; }
  6167. .ml-n1,
  6168. .mx-n1 {
  6169. margin-right: -0.25rem !important; }
  6170. .m-n2 {
  6171. margin: -0.5rem !important; }
  6172. .mt-n2,
  6173. .my-n2 {
  6174. margin-top: -0.5rem !important; }
  6175. .mr-n2,
  6176. .mx-n2 {
  6177. margin-left: -0.5rem !important; }
  6178. .mb-n2,
  6179. .my-n2 {
  6180. margin-bottom: -0.5rem !important; }
  6181. .ml-n2,
  6182. .mx-n2 {
  6183. margin-right: -0.5rem !important; }
  6184. .m-n3 {
  6185. margin: -1rem !important; }
  6186. .mt-n3,
  6187. .my-n3 {
  6188. margin-top: -1rem !important; }
  6189. .mr-n3,
  6190. .mx-n3 {
  6191. margin-left: -1rem !important; }
  6192. .mb-n3,
  6193. .my-n3 {
  6194. margin-bottom: -1rem !important; }
  6195. .ml-n3,
  6196. .mx-n3 {
  6197. margin-right: -1rem !important; }
  6198. .m-n4 {
  6199. margin: -1.5rem !important; }
  6200. .mt-n4,
  6201. .my-n4 {
  6202. margin-top: -1.5rem !important; }
  6203. .mr-n4,
  6204. .mx-n4 {
  6205. margin-left: -1.5rem !important; }
  6206. .mb-n4,
  6207. .my-n4 {
  6208. margin-bottom: -1.5rem !important; }
  6209. .ml-n4,
  6210. .mx-n4 {
  6211. margin-right: -1.5rem !important; }
  6212. .m-n5 {
  6213. margin: -2rem !important; }
  6214. .mt-n5,
  6215. .my-n5 {
  6216. margin-top: -2rem !important; }
  6217. .mr-n5,
  6218. .mx-n5 {
  6219. margin-left: -2rem !important; }
  6220. .mb-n5,
  6221. .my-n5 {
  6222. margin-bottom: -2rem !important; }
  6223. .ml-n5,
  6224. .mx-n5 {
  6225. margin-right: -2rem !important; }
  6226. .m-n6 {
  6227. margin: -2.5rem !important; }
  6228. .mt-n6,
  6229. .my-n6 {
  6230. margin-top: -2.5rem !important; }
  6231. .mr-n6,
  6232. .mx-n6 {
  6233. margin-left: -2.5rem !important; }
  6234. .mb-n6,
  6235. .my-n6 {
  6236. margin-bottom: -2.5rem !important; }
  6237. .ml-n6,
  6238. .mx-n6 {
  6239. margin-right: -2.5rem !important; }
  6240. .m-auto {
  6241. margin: auto !important; }
  6242. .mt-auto,
  6243. .my-auto {
  6244. margin-top: auto !important; }
  6245. .mr-auto,
  6246. .mx-auto {
  6247. margin-left: auto !important; }
  6248. .mb-auto,
  6249. .my-auto {
  6250. margin-bottom: auto !important; }
  6251. .ml-auto,
  6252. .mx-auto {
  6253. margin-right: auto !important; }
  6254. @media (min-width: 576px) {
  6255. .m-sm-0 {
  6256. margin: 0 !important; }
  6257. .mt-sm-0,
  6258. .my-sm-0 {
  6259. margin-top: 0 !important; }
  6260. .mr-sm-0,
  6261. .mx-sm-0 {
  6262. margin-left: 0 !important; }
  6263. .mb-sm-0,
  6264. .my-sm-0 {
  6265. margin-bottom: 0 !important; }
  6266. .ml-sm-0,
  6267. .mx-sm-0 {
  6268. margin-right: 0 !important; }
  6269. .m-sm-1 {
  6270. margin: 0.25rem !important; }
  6271. .mt-sm-1,
  6272. .my-sm-1 {
  6273. margin-top: 0.25rem !important; }
  6274. .mr-sm-1,
  6275. .mx-sm-1 {
  6276. margin-left: 0.25rem !important; }
  6277. .mb-sm-1,
  6278. .my-sm-1 {
  6279. margin-bottom: 0.25rem !important; }
  6280. .ml-sm-1,
  6281. .mx-sm-1 {
  6282. margin-right: 0.25rem !important; }
  6283. .m-sm-2 {
  6284. margin: 0.5rem !important; }
  6285. .mt-sm-2,
  6286. .my-sm-2 {
  6287. margin-top: 0.5rem !important; }
  6288. .mr-sm-2,
  6289. .mx-sm-2 {
  6290. margin-left: 0.5rem !important; }
  6291. .mb-sm-2,
  6292. .my-sm-2 {
  6293. margin-bottom: 0.5rem !important; }
  6294. .ml-sm-2,
  6295. .mx-sm-2 {
  6296. margin-right: 0.5rem !important; }
  6297. .m-sm-3 {
  6298. margin: 1rem !important; }
  6299. .mt-sm-3,
  6300. .my-sm-3 {
  6301. margin-top: 1rem !important; }
  6302. .mr-sm-3,
  6303. .mx-sm-3 {
  6304. margin-left: 1rem !important; }
  6305. .mb-sm-3,
  6306. .my-sm-3 {
  6307. margin-bottom: 1rem !important; }
  6308. .ml-sm-3,
  6309. .mx-sm-3 {
  6310. margin-right: 1rem !important; }
  6311. .m-sm-4 {
  6312. margin: 1.5rem !important; }
  6313. .mt-sm-4,
  6314. .my-sm-4 {
  6315. margin-top: 1.5rem !important; }
  6316. .mr-sm-4,
  6317. .mx-sm-4 {
  6318. margin-left: 1.5rem !important; }
  6319. .mb-sm-4,
  6320. .my-sm-4 {
  6321. margin-bottom: 1.5rem !important; }
  6322. .ml-sm-4,
  6323. .mx-sm-4 {
  6324. margin-right: 1.5rem !important; }
  6325. .m-sm-5 {
  6326. margin: 2rem !important; }
  6327. .mt-sm-5,
  6328. .my-sm-5 {
  6329. margin-top: 2rem !important; }
  6330. .mr-sm-5,
  6331. .mx-sm-5 {
  6332. margin-left: 2rem !important; }
  6333. .mb-sm-5,
  6334. .my-sm-5 {
  6335. margin-bottom: 2rem !important; }
  6336. .ml-sm-5,
  6337. .mx-sm-5 {
  6338. margin-right: 2rem !important; }
  6339. .m-sm-6 {
  6340. margin: 2.5rem !important; }
  6341. .mt-sm-6,
  6342. .my-sm-6 {
  6343. margin-top: 2.5rem !important; }
  6344. .mr-sm-6,
  6345. .mx-sm-6 {
  6346. margin-left: 2.5rem !important; }
  6347. .mb-sm-6,
  6348. .my-sm-6 {
  6349. margin-bottom: 2.5rem !important; }
  6350. .ml-sm-6,
  6351. .mx-sm-6 {
  6352. margin-right: 2.5rem !important; }
  6353. .p-sm-0 {
  6354. padding: 0 !important; }
  6355. .pt-sm-0,
  6356. .py-sm-0 {
  6357. padding-top: 0 !important; }
  6358. .pr-sm-0,
  6359. .px-sm-0 {
  6360. padding-left: 0 !important; }
  6361. .pb-sm-0,
  6362. .py-sm-0 {
  6363. padding-bottom: 0 !important; }
  6364. .pl-sm-0,
  6365. .px-sm-0 {
  6366. padding-right: 0 !important; }
  6367. .p-sm-1 {
  6368. padding: 0.25rem !important; }
  6369. .pt-sm-1,
  6370. .py-sm-1 {
  6371. padding-top: 0.25rem !important; }
  6372. .pr-sm-1,
  6373. .px-sm-1 {
  6374. padding-left: 0.25rem !important; }
  6375. .pb-sm-1,
  6376. .py-sm-1 {
  6377. padding-bottom: 0.25rem !important; }
  6378. .pl-sm-1,
  6379. .px-sm-1 {
  6380. padding-right: 0.25rem !important; }
  6381. .p-sm-2 {
  6382. padding: 0.5rem !important; }
  6383. .pt-sm-2,
  6384. .py-sm-2 {
  6385. padding-top: 0.5rem !important; }
  6386. .pr-sm-2,
  6387. .px-sm-2 {
  6388. padding-left: 0.5rem !important; }
  6389. .pb-sm-2,
  6390. .py-sm-2 {
  6391. padding-bottom: 0.5rem !important; }
  6392. .pl-sm-2,
  6393. .px-sm-2 {
  6394. padding-right: 0.5rem !important; }
  6395. .p-sm-3 {
  6396. padding: 1rem !important; }
  6397. .pt-sm-3,
  6398. .py-sm-3 {
  6399. padding-top: 1rem !important; }
  6400. .pr-sm-3,
  6401. .px-sm-3 {
  6402. padding-left: 1rem !important; }
  6403. .pb-sm-3,
  6404. .py-sm-3 {
  6405. padding-bottom: 1rem !important; }
  6406. .pl-sm-3,
  6407. .px-sm-3 {
  6408. padding-right: 1rem !important; }
  6409. .p-sm-4 {
  6410. padding: 1.5rem !important; }
  6411. .pt-sm-4,
  6412. .py-sm-4 {
  6413. padding-top: 1.5rem !important; }
  6414. .pr-sm-4,
  6415. .px-sm-4 {
  6416. padding-left: 1.5rem !important; }
  6417. .pb-sm-4,
  6418. .py-sm-4 {
  6419. padding-bottom: 1.5rem !important; }
  6420. .pl-sm-4,
  6421. .px-sm-4 {
  6422. padding-right: 1.5rem !important; }
  6423. .p-sm-5 {
  6424. padding: 2rem !important; }
  6425. .pt-sm-5,
  6426. .py-sm-5 {
  6427. padding-top: 2rem !important; }
  6428. .pr-sm-5,
  6429. .px-sm-5 {
  6430. padding-left: 2rem !important; }
  6431. .pb-sm-5,
  6432. .py-sm-5 {
  6433. padding-bottom: 2rem !important; }
  6434. .pl-sm-5,
  6435. .px-sm-5 {
  6436. padding-right: 2rem !important; }
  6437. .p-sm-6 {
  6438. padding: 2.5rem !important; }
  6439. .pt-sm-6,
  6440. .py-sm-6 {
  6441. padding-top: 2.5rem !important; }
  6442. .pr-sm-6,
  6443. .px-sm-6 {
  6444. padding-left: 2.5rem !important; }
  6445. .pb-sm-6,
  6446. .py-sm-6 {
  6447. padding-bottom: 2.5rem !important; }
  6448. .pl-sm-6,
  6449. .px-sm-6 {
  6450. padding-right: 2.5rem !important; }
  6451. .m-sm-n1 {
  6452. margin: -0.25rem !important; }
  6453. .mt-sm-n1,
  6454. .my-sm-n1 {
  6455. margin-top: -0.25rem !important; }
  6456. .mr-sm-n1,
  6457. .mx-sm-n1 {
  6458. margin-left: -0.25rem !important; }
  6459. .mb-sm-n1,
  6460. .my-sm-n1 {
  6461. margin-bottom: -0.25rem !important; }
  6462. .ml-sm-n1,
  6463. .mx-sm-n1 {
  6464. margin-right: -0.25rem !important; }
  6465. .m-sm-n2 {
  6466. margin: -0.5rem !important; }
  6467. .mt-sm-n2,
  6468. .my-sm-n2 {
  6469. margin-top: -0.5rem !important; }
  6470. .mr-sm-n2,
  6471. .mx-sm-n2 {
  6472. margin-left: -0.5rem !important; }
  6473. .mb-sm-n2,
  6474. .my-sm-n2 {
  6475. margin-bottom: -0.5rem !important; }
  6476. .ml-sm-n2,
  6477. .mx-sm-n2 {
  6478. margin-right: -0.5rem !important; }
  6479. .m-sm-n3 {
  6480. margin: -1rem !important; }
  6481. .mt-sm-n3,
  6482. .my-sm-n3 {
  6483. margin-top: -1rem !important; }
  6484. .mr-sm-n3,
  6485. .mx-sm-n3 {
  6486. margin-left: -1rem !important; }
  6487. .mb-sm-n3,
  6488. .my-sm-n3 {
  6489. margin-bottom: -1rem !important; }
  6490. .ml-sm-n3,
  6491. .mx-sm-n3 {
  6492. margin-right: -1rem !important; }
  6493. .m-sm-n4 {
  6494. margin: -1.5rem !important; }
  6495. .mt-sm-n4,
  6496. .my-sm-n4 {
  6497. margin-top: -1.5rem !important; }
  6498. .mr-sm-n4,
  6499. .mx-sm-n4 {
  6500. margin-left: -1.5rem !important; }
  6501. .mb-sm-n4,
  6502. .my-sm-n4 {
  6503. margin-bottom: -1.5rem !important; }
  6504. .ml-sm-n4,
  6505. .mx-sm-n4 {
  6506. margin-right: -1.5rem !important; }
  6507. .m-sm-n5 {
  6508. margin: -2rem !important; }
  6509. .mt-sm-n5,
  6510. .my-sm-n5 {
  6511. margin-top: -2rem !important; }
  6512. .mr-sm-n5,
  6513. .mx-sm-n5 {
  6514. margin-left: -2rem !important; }
  6515. .mb-sm-n5,
  6516. .my-sm-n5 {
  6517. margin-bottom: -2rem !important; }
  6518. .ml-sm-n5,
  6519. .mx-sm-n5 {
  6520. margin-right: -2rem !important; }
  6521. .m-sm-n6 {
  6522. margin: -2.5rem !important; }
  6523. .mt-sm-n6,
  6524. .my-sm-n6 {
  6525. margin-top: -2.5rem !important; }
  6526. .mr-sm-n6,
  6527. .mx-sm-n6 {
  6528. margin-left: -2.5rem !important; }
  6529. .mb-sm-n6,
  6530. .my-sm-n6 {
  6531. margin-bottom: -2.5rem !important; }
  6532. .ml-sm-n6,
  6533. .mx-sm-n6 {
  6534. margin-right: -2.5rem !important; }
  6535. .m-sm-auto {
  6536. margin: auto !important; }
  6537. .mt-sm-auto,
  6538. .my-sm-auto {
  6539. margin-top: auto !important; }
  6540. .mr-sm-auto,
  6541. .mx-sm-auto {
  6542. margin-left: auto !important; }
  6543. .mb-sm-auto,
  6544. .my-sm-auto {
  6545. margin-bottom: auto !important; }
  6546. .ml-sm-auto,
  6547. .mx-sm-auto {
  6548. margin-right: auto !important; } }
  6549. @media (min-width: 768px) {
  6550. .m-md-0 {
  6551. margin: 0 !important; }
  6552. .mt-md-0,
  6553. .my-md-0 {
  6554. margin-top: 0 !important; }
  6555. .mr-md-0,
  6556. .mx-md-0 {
  6557. margin-left: 0 !important; }
  6558. .mb-md-0,
  6559. .my-md-0 {
  6560. margin-bottom: 0 !important; }
  6561. .ml-md-0,
  6562. .mx-md-0 {
  6563. margin-right: 0 !important; }
  6564. .m-md-1 {
  6565. margin: 0.25rem !important; }
  6566. .mt-md-1,
  6567. .my-md-1 {
  6568. margin-top: 0.25rem !important; }
  6569. .mr-md-1,
  6570. .mx-md-1 {
  6571. margin-left: 0.25rem !important; }
  6572. .mb-md-1,
  6573. .my-md-1 {
  6574. margin-bottom: 0.25rem !important; }
  6575. .ml-md-1,
  6576. .mx-md-1 {
  6577. margin-right: 0.25rem !important; }
  6578. .m-md-2 {
  6579. margin: 0.5rem !important; }
  6580. .mt-md-2,
  6581. .my-md-2 {
  6582. margin-top: 0.5rem !important; }
  6583. .mr-md-2,
  6584. .mx-md-2 {
  6585. margin-left: 0.5rem !important; }
  6586. .mb-md-2,
  6587. .my-md-2 {
  6588. margin-bottom: 0.5rem !important; }
  6589. .ml-md-2,
  6590. .mx-md-2 {
  6591. margin-right: 0.5rem !important; }
  6592. .m-md-3 {
  6593. margin: 1rem !important; }
  6594. .mt-md-3,
  6595. .my-md-3 {
  6596. margin-top: 1rem !important; }
  6597. .mr-md-3,
  6598. .mx-md-3 {
  6599. margin-left: 1rem !important; }
  6600. .mb-md-3,
  6601. .my-md-3 {
  6602. margin-bottom: 1rem !important; }
  6603. .ml-md-3,
  6604. .mx-md-3 {
  6605. margin-right: 1rem !important; }
  6606. .m-md-4 {
  6607. margin: 1.5rem !important; }
  6608. .mt-md-4,
  6609. .my-md-4 {
  6610. margin-top: 1.5rem !important; }
  6611. .mr-md-4,
  6612. .mx-md-4 {
  6613. margin-left: 1.5rem !important; }
  6614. .mb-md-4,
  6615. .my-md-4 {
  6616. margin-bottom: 1.5rem !important; }
  6617. .ml-md-4,
  6618. .mx-md-4 {
  6619. margin-right: 1.5rem !important; }
  6620. .m-md-5 {
  6621. margin: 2rem !important; }
  6622. .mt-md-5,
  6623. .my-md-5 {
  6624. margin-top: 2rem !important; }
  6625. .mr-md-5,
  6626. .mx-md-5 {
  6627. margin-left: 2rem !important; }
  6628. .mb-md-5,
  6629. .my-md-5 {
  6630. margin-bottom: 2rem !important; }
  6631. .ml-md-5,
  6632. .mx-md-5 {
  6633. margin-right: 2rem !important; }
  6634. .m-md-6 {
  6635. margin: 2.5rem !important; }
  6636. .mt-md-6,
  6637. .my-md-6 {
  6638. margin-top: 2.5rem !important; }
  6639. .mr-md-6,
  6640. .mx-md-6 {
  6641. margin-left: 2.5rem !important; }
  6642. .mb-md-6,
  6643. .my-md-6 {
  6644. margin-bottom: 2.5rem !important; }
  6645. .ml-md-6,
  6646. .mx-md-6 {
  6647. margin-right: 2.5rem !important; }
  6648. .p-md-0 {
  6649. padding: 0 !important; }
  6650. .pt-md-0,
  6651. .py-md-0 {
  6652. padding-top: 0 !important; }
  6653. .pr-md-0,
  6654. .px-md-0 {
  6655. padding-left: 0 !important; }
  6656. .pb-md-0,
  6657. .py-md-0 {
  6658. padding-bottom: 0 !important; }
  6659. .pl-md-0,
  6660. .px-md-0 {
  6661. padding-right: 0 !important; }
  6662. .p-md-1 {
  6663. padding: 0.25rem !important; }
  6664. .pt-md-1,
  6665. .py-md-1 {
  6666. padding-top: 0.25rem !important; }
  6667. .pr-md-1,
  6668. .px-md-1 {
  6669. padding-left: 0.25rem !important; }
  6670. .pb-md-1,
  6671. .py-md-1 {
  6672. padding-bottom: 0.25rem !important; }
  6673. .pl-md-1,
  6674. .px-md-1 {
  6675. padding-right: 0.25rem !important; }
  6676. .p-md-2 {
  6677. padding: 0.5rem !important; }
  6678. .pt-md-2,
  6679. .py-md-2 {
  6680. padding-top: 0.5rem !important; }
  6681. .pr-md-2,
  6682. .px-md-2 {
  6683. padding-left: 0.5rem !important; }
  6684. .pb-md-2,
  6685. .py-md-2 {
  6686. padding-bottom: 0.5rem !important; }
  6687. .pl-md-2,
  6688. .px-md-2 {
  6689. padding-right: 0.5rem !important; }
  6690. .p-md-3 {
  6691. padding: 1rem !important; }
  6692. .pt-md-3,
  6693. .py-md-3 {
  6694. padding-top: 1rem !important; }
  6695. .pr-md-3,
  6696. .px-md-3 {
  6697. padding-left: 1rem !important; }
  6698. .pb-md-3,
  6699. .py-md-3 {
  6700. padding-bottom: 1rem !important; }
  6701. .pl-md-3,
  6702. .px-md-3 {
  6703. padding-right: 1rem !important; }
  6704. .p-md-4 {
  6705. padding: 1.5rem !important; }
  6706. .pt-md-4,
  6707. .py-md-4 {
  6708. padding-top: 1.5rem !important; }
  6709. .pr-md-4,
  6710. .px-md-4 {
  6711. padding-left: 1.5rem !important; }
  6712. .pb-md-4,
  6713. .py-md-4 {
  6714. padding-bottom: 1.5rem !important; }
  6715. .pl-md-4,
  6716. .px-md-4 {
  6717. padding-right: 1.5rem !important; }
  6718. .p-md-5 {
  6719. padding: 2rem !important; }
  6720. .pt-md-5,
  6721. .py-md-5 {
  6722. padding-top: 2rem !important; }
  6723. .pr-md-5,
  6724. .px-md-5 {
  6725. padding-left: 2rem !important; }
  6726. .pb-md-5,
  6727. .py-md-5 {
  6728. padding-bottom: 2rem !important; }
  6729. .pl-md-5,
  6730. .px-md-5 {
  6731. padding-right: 2rem !important; }
  6732. .p-md-6 {
  6733. padding: 2.5rem !important; }
  6734. .pt-md-6,
  6735. .py-md-6 {
  6736. padding-top: 2.5rem !important; }
  6737. .pr-md-6,
  6738. .px-md-6 {
  6739. padding-left: 2.5rem !important; }
  6740. .pb-md-6,
  6741. .py-md-6 {
  6742. padding-bottom: 2.5rem !important; }
  6743. .pl-md-6,
  6744. .px-md-6 {
  6745. padding-right: 2.5rem !important; }
  6746. .m-md-n1 {
  6747. margin: -0.25rem !important; }
  6748. .mt-md-n1,
  6749. .my-md-n1 {
  6750. margin-top: -0.25rem !important; }
  6751. .mr-md-n1,
  6752. .mx-md-n1 {
  6753. margin-left: -0.25rem !important; }
  6754. .mb-md-n1,
  6755. .my-md-n1 {
  6756. margin-bottom: -0.25rem !important; }
  6757. .ml-md-n1,
  6758. .mx-md-n1 {
  6759. margin-right: -0.25rem !important; }
  6760. .m-md-n2 {
  6761. margin: -0.5rem !important; }
  6762. .mt-md-n2,
  6763. .my-md-n2 {
  6764. margin-top: -0.5rem !important; }
  6765. .mr-md-n2,
  6766. .mx-md-n2 {
  6767. margin-left: -0.5rem !important; }
  6768. .mb-md-n2,
  6769. .my-md-n2 {
  6770. margin-bottom: -0.5rem !important; }
  6771. .ml-md-n2,
  6772. .mx-md-n2 {
  6773. margin-right: -0.5rem !important; }
  6774. .m-md-n3 {
  6775. margin: -1rem !important; }
  6776. .mt-md-n3,
  6777. .my-md-n3 {
  6778. margin-top: -1rem !important; }
  6779. .mr-md-n3,
  6780. .mx-md-n3 {
  6781. margin-left: -1rem !important; }
  6782. .mb-md-n3,
  6783. .my-md-n3 {
  6784. margin-bottom: -1rem !important; }
  6785. .ml-md-n3,
  6786. .mx-md-n3 {
  6787. margin-right: -1rem !important; }
  6788. .m-md-n4 {
  6789. margin: -1.5rem !important; }
  6790. .mt-md-n4,
  6791. .my-md-n4 {
  6792. margin-top: -1.5rem !important; }
  6793. .mr-md-n4,
  6794. .mx-md-n4 {
  6795. margin-left: -1.5rem !important; }
  6796. .mb-md-n4,
  6797. .my-md-n4 {
  6798. margin-bottom: -1.5rem !important; }
  6799. .ml-md-n4,
  6800. .mx-md-n4 {
  6801. margin-right: -1.5rem !important; }
  6802. .m-md-n5 {
  6803. margin: -2rem !important; }
  6804. .mt-md-n5,
  6805. .my-md-n5 {
  6806. margin-top: -2rem !important; }
  6807. .mr-md-n5,
  6808. .mx-md-n5 {
  6809. margin-left: -2rem !important; }
  6810. .mb-md-n5,
  6811. .my-md-n5 {
  6812. margin-bottom: -2rem !important; }
  6813. .ml-md-n5,
  6814. .mx-md-n5 {
  6815. margin-right: -2rem !important; }
  6816. .m-md-n6 {
  6817. margin: -2.5rem !important; }
  6818. .mt-md-n6,
  6819. .my-md-n6 {
  6820. margin-top: -2.5rem !important; }
  6821. .mr-md-n6,
  6822. .mx-md-n6 {
  6823. margin-left: -2.5rem !important; }
  6824. .mb-md-n6,
  6825. .my-md-n6 {
  6826. margin-bottom: -2.5rem !important; }
  6827. .ml-md-n6,
  6828. .mx-md-n6 {
  6829. margin-right: -2.5rem !important; }
  6830. .m-md-auto {
  6831. margin: auto !important; }
  6832. .mt-md-auto,
  6833. .my-md-auto {
  6834. margin-top: auto !important; }
  6835. .mr-md-auto,
  6836. .mx-md-auto {
  6837. margin-left: auto !important; }
  6838. .mb-md-auto,
  6839. .my-md-auto {
  6840. margin-bottom: auto !important; }
  6841. .ml-md-auto,
  6842. .mx-md-auto {
  6843. margin-right: auto !important; } }
  6844. @media (min-width: 992px) {
  6845. .m-lg-0 {
  6846. margin: 0 !important; }
  6847. .mt-lg-0,
  6848. .my-lg-0 {
  6849. margin-top: 0 !important; }
  6850. .mr-lg-0,
  6851. .mx-lg-0 {
  6852. margin-left: 0 !important; }
  6853. .mb-lg-0,
  6854. .my-lg-0 {
  6855. margin-bottom: 0 !important; }
  6856. .ml-lg-0,
  6857. .mx-lg-0 {
  6858. margin-right: 0 !important; }
  6859. .m-lg-1 {
  6860. margin: 0.25rem !important; }
  6861. .mt-lg-1,
  6862. .my-lg-1 {
  6863. margin-top: 0.25rem !important; }
  6864. .mr-lg-1,
  6865. .mx-lg-1 {
  6866. margin-left: 0.25rem !important; }
  6867. .mb-lg-1,
  6868. .my-lg-1 {
  6869. margin-bottom: 0.25rem !important; }
  6870. .ml-lg-1,
  6871. .mx-lg-1 {
  6872. margin-right: 0.25rem !important; }
  6873. .m-lg-2 {
  6874. margin: 0.5rem !important; }
  6875. .mt-lg-2,
  6876. .my-lg-2 {
  6877. margin-top: 0.5rem !important; }
  6878. .mr-lg-2,
  6879. .mx-lg-2 {
  6880. margin-left: 0.5rem !important; }
  6881. .mb-lg-2,
  6882. .my-lg-2 {
  6883. margin-bottom: 0.5rem !important; }
  6884. .ml-lg-2,
  6885. .mx-lg-2 {
  6886. margin-right: 0.5rem !important; }
  6887. .m-lg-3 {
  6888. margin: 1rem !important; }
  6889. .mt-lg-3,
  6890. .my-lg-3 {
  6891. margin-top: 1rem !important; }
  6892. .mr-lg-3,
  6893. .mx-lg-3 {
  6894. margin-left: 1rem !important; }
  6895. .mb-lg-3,
  6896. .my-lg-3 {
  6897. margin-bottom: 1rem !important; }
  6898. .ml-lg-3,
  6899. .mx-lg-3 {
  6900. margin-right: 1rem !important; }
  6901. .m-lg-4 {
  6902. margin: 1.5rem !important; }
  6903. .mt-lg-4,
  6904. .my-lg-4 {
  6905. margin-top: 1.5rem !important; }
  6906. .mr-lg-4,
  6907. .mx-lg-4 {
  6908. margin-left: 1.5rem !important; }
  6909. .mb-lg-4,
  6910. .my-lg-4 {
  6911. margin-bottom: 1.5rem !important; }
  6912. .ml-lg-4,
  6913. .mx-lg-4 {
  6914. margin-right: 1.5rem !important; }
  6915. .m-lg-5 {
  6916. margin: 2rem !important; }
  6917. .mt-lg-5,
  6918. .my-lg-5 {
  6919. margin-top: 2rem !important; }
  6920. .mr-lg-5,
  6921. .mx-lg-5 {
  6922. margin-left: 2rem !important; }
  6923. .mb-lg-5,
  6924. .my-lg-5 {
  6925. margin-bottom: 2rem !important; }
  6926. .ml-lg-5,
  6927. .mx-lg-5 {
  6928. margin-right: 2rem !important; }
  6929. .m-lg-6 {
  6930. margin: 2.5rem !important; }
  6931. .mt-lg-6,
  6932. .my-lg-6 {
  6933. margin-top: 2.5rem !important; }
  6934. .mr-lg-6,
  6935. .mx-lg-6 {
  6936. margin-left: 2.5rem !important; }
  6937. .mb-lg-6,
  6938. .my-lg-6 {
  6939. margin-bottom: 2.5rem !important; }
  6940. .ml-lg-6,
  6941. .mx-lg-6 {
  6942. margin-right: 2.5rem !important; }
  6943. .p-lg-0 {
  6944. padding: 0 !important; }
  6945. .pt-lg-0,
  6946. .py-lg-0 {
  6947. padding-top: 0 !important; }
  6948. .pr-lg-0,
  6949. .px-lg-0 {
  6950. padding-left: 0 !important; }
  6951. .pb-lg-0,
  6952. .py-lg-0 {
  6953. padding-bottom: 0 !important; }
  6954. .pl-lg-0,
  6955. .px-lg-0 {
  6956. padding-right: 0 !important; }
  6957. .p-lg-1 {
  6958. padding: 0.25rem !important; }
  6959. .pt-lg-1,
  6960. .py-lg-1 {
  6961. padding-top: 0.25rem !important; }
  6962. .pr-lg-1,
  6963. .px-lg-1 {
  6964. padding-left: 0.25rem !important; }
  6965. .pb-lg-1,
  6966. .py-lg-1 {
  6967. padding-bottom: 0.25rem !important; }
  6968. .pl-lg-1,
  6969. .px-lg-1 {
  6970. padding-right: 0.25rem !important; }
  6971. .p-lg-2 {
  6972. padding: 0.5rem !important; }
  6973. .pt-lg-2,
  6974. .py-lg-2 {
  6975. padding-top: 0.5rem !important; }
  6976. .pr-lg-2,
  6977. .px-lg-2 {
  6978. padding-left: 0.5rem !important; }
  6979. .pb-lg-2,
  6980. .py-lg-2 {
  6981. padding-bottom: 0.5rem !important; }
  6982. .pl-lg-2,
  6983. .px-lg-2 {
  6984. padding-right: 0.5rem !important; }
  6985. .p-lg-3 {
  6986. padding: 1rem !important; }
  6987. .pt-lg-3,
  6988. .py-lg-3 {
  6989. padding-top: 1rem !important; }
  6990. .pr-lg-3,
  6991. .px-lg-3 {
  6992. padding-left: 1rem !important; }
  6993. .pb-lg-3,
  6994. .py-lg-3 {
  6995. padding-bottom: 1rem !important; }
  6996. .pl-lg-3,
  6997. .px-lg-3 {
  6998. padding-right: 1rem !important; }
  6999. .p-lg-4 {
  7000. padding: 1.5rem !important; }
  7001. .pt-lg-4,
  7002. .py-lg-4 {
  7003. padding-top: 1.5rem !important; }
  7004. .pr-lg-4,
  7005. .px-lg-4 {
  7006. padding-left: 1.5rem !important; }
  7007. .pb-lg-4,
  7008. .py-lg-4 {
  7009. padding-bottom: 1.5rem !important; }
  7010. .pl-lg-4,
  7011. .px-lg-4 {
  7012. padding-right: 1.5rem !important; }
  7013. .p-lg-5 {
  7014. padding: 2rem !important; }
  7015. .pt-lg-5,
  7016. .py-lg-5 {
  7017. padding-top: 2rem !important; }
  7018. .pr-lg-5,
  7019. .px-lg-5 {
  7020. padding-left: 2rem !important; }
  7021. .pb-lg-5,
  7022. .py-lg-5 {
  7023. padding-bottom: 2rem !important; }
  7024. .pl-lg-5,
  7025. .px-lg-5 {
  7026. padding-right: 2rem !important; }
  7027. .p-lg-6 {
  7028. padding: 2.5rem !important; }
  7029. .pt-lg-6,
  7030. .py-lg-6 {
  7031. padding-top: 2.5rem !important; }
  7032. .pr-lg-6,
  7033. .px-lg-6 {
  7034. padding-left: 2.5rem !important; }
  7035. .pb-lg-6,
  7036. .py-lg-6 {
  7037. padding-bottom: 2.5rem !important; }
  7038. .pl-lg-6,
  7039. .px-lg-6 {
  7040. padding-right: 2.5rem !important; }
  7041. .m-lg-n1 {
  7042. margin: -0.25rem !important; }
  7043. .mt-lg-n1,
  7044. .my-lg-n1 {
  7045. margin-top: -0.25rem !important; }
  7046. .mr-lg-n1,
  7047. .mx-lg-n1 {
  7048. margin-left: -0.25rem !important; }
  7049. .mb-lg-n1,
  7050. .my-lg-n1 {
  7051. margin-bottom: -0.25rem !important; }
  7052. .ml-lg-n1,
  7053. .mx-lg-n1 {
  7054. margin-right: -0.25rem !important; }
  7055. .m-lg-n2 {
  7056. margin: -0.5rem !important; }
  7057. .mt-lg-n2,
  7058. .my-lg-n2 {
  7059. margin-top: -0.5rem !important; }
  7060. .mr-lg-n2,
  7061. .mx-lg-n2 {
  7062. margin-left: -0.5rem !important; }
  7063. .mb-lg-n2,
  7064. .my-lg-n2 {
  7065. margin-bottom: -0.5rem !important; }
  7066. .ml-lg-n2,
  7067. .mx-lg-n2 {
  7068. margin-right: -0.5rem !important; }
  7069. .m-lg-n3 {
  7070. margin: -1rem !important; }
  7071. .mt-lg-n3,
  7072. .my-lg-n3 {
  7073. margin-top: -1rem !important; }
  7074. .mr-lg-n3,
  7075. .mx-lg-n3 {
  7076. margin-left: -1rem !important; }
  7077. .mb-lg-n3,
  7078. .my-lg-n3 {
  7079. margin-bottom: -1rem !important; }
  7080. .ml-lg-n3,
  7081. .mx-lg-n3 {
  7082. margin-right: -1rem !important; }
  7083. .m-lg-n4 {
  7084. margin: -1.5rem !important; }
  7085. .mt-lg-n4,
  7086. .my-lg-n4 {
  7087. margin-top: -1.5rem !important; }
  7088. .mr-lg-n4,
  7089. .mx-lg-n4 {
  7090. margin-left: -1.5rem !important; }
  7091. .mb-lg-n4,
  7092. .my-lg-n4 {
  7093. margin-bottom: -1.5rem !important; }
  7094. .ml-lg-n4,
  7095. .mx-lg-n4 {
  7096. margin-right: -1.5rem !important; }
  7097. .m-lg-n5 {
  7098. margin: -2rem !important; }
  7099. .mt-lg-n5,
  7100. .my-lg-n5 {
  7101. margin-top: -2rem !important; }
  7102. .mr-lg-n5,
  7103. .mx-lg-n5 {
  7104. margin-left: -2rem !important; }
  7105. .mb-lg-n5,
  7106. .my-lg-n5 {
  7107. margin-bottom: -2rem !important; }
  7108. .ml-lg-n5,
  7109. .mx-lg-n5 {
  7110. margin-right: -2rem !important; }
  7111. .m-lg-n6 {
  7112. margin: -2.5rem !important; }
  7113. .mt-lg-n6,
  7114. .my-lg-n6 {
  7115. margin-top: -2.5rem !important; }
  7116. .mr-lg-n6,
  7117. .mx-lg-n6 {
  7118. margin-left: -2.5rem !important; }
  7119. .mb-lg-n6,
  7120. .my-lg-n6 {
  7121. margin-bottom: -2.5rem !important; }
  7122. .ml-lg-n6,
  7123. .mx-lg-n6 {
  7124. margin-right: -2.5rem !important; }
  7125. .m-lg-auto {
  7126. margin: auto !important; }
  7127. .mt-lg-auto,
  7128. .my-lg-auto {
  7129. margin-top: auto !important; }
  7130. .mr-lg-auto,
  7131. .mx-lg-auto {
  7132. margin-left: auto !important; }
  7133. .mb-lg-auto,
  7134. .my-lg-auto {
  7135. margin-bottom: auto !important; }
  7136. .ml-lg-auto,
  7137. .mx-lg-auto {
  7138. margin-right: auto !important; } }
  7139. @media (min-width: 1399px) {
  7140. .m-xl-0 {
  7141. margin: 0 !important; }
  7142. .mt-xl-0,
  7143. .my-xl-0 {
  7144. margin-top: 0 !important; }
  7145. .mr-xl-0,
  7146. .mx-xl-0 {
  7147. margin-left: 0 !important; }
  7148. .mb-xl-0,
  7149. .my-xl-0 {
  7150. margin-bottom: 0 !important; }
  7151. .ml-xl-0,
  7152. .mx-xl-0 {
  7153. margin-right: 0 !important; }
  7154. .m-xl-1 {
  7155. margin: 0.25rem !important; }
  7156. .mt-xl-1,
  7157. .my-xl-1 {
  7158. margin-top: 0.25rem !important; }
  7159. .mr-xl-1,
  7160. .mx-xl-1 {
  7161. margin-left: 0.25rem !important; }
  7162. .mb-xl-1,
  7163. .my-xl-1 {
  7164. margin-bottom: 0.25rem !important; }
  7165. .ml-xl-1,
  7166. .mx-xl-1 {
  7167. margin-right: 0.25rem !important; }
  7168. .m-xl-2 {
  7169. margin: 0.5rem !important; }
  7170. .mt-xl-2,
  7171. .my-xl-2 {
  7172. margin-top: 0.5rem !important; }
  7173. .mr-xl-2,
  7174. .mx-xl-2 {
  7175. margin-left: 0.5rem !important; }
  7176. .mb-xl-2,
  7177. .my-xl-2 {
  7178. margin-bottom: 0.5rem !important; }
  7179. .ml-xl-2,
  7180. .mx-xl-2 {
  7181. margin-right: 0.5rem !important; }
  7182. .m-xl-3 {
  7183. margin: 1rem !important; }
  7184. .mt-xl-3,
  7185. .my-xl-3 {
  7186. margin-top: 1rem !important; }
  7187. .mr-xl-3,
  7188. .mx-xl-3 {
  7189. margin-left: 1rem !important; }
  7190. .mb-xl-3,
  7191. .my-xl-3 {
  7192. margin-bottom: 1rem !important; }
  7193. .ml-xl-3,
  7194. .mx-xl-3 {
  7195. margin-right: 1rem !important; }
  7196. .m-xl-4 {
  7197. margin: 1.5rem !important; }
  7198. .mt-xl-4,
  7199. .my-xl-4 {
  7200. margin-top: 1.5rem !important; }
  7201. .mr-xl-4,
  7202. .mx-xl-4 {
  7203. margin-left: 1.5rem !important; }
  7204. .mb-xl-4,
  7205. .my-xl-4 {
  7206. margin-bottom: 1.5rem !important; }
  7207. .ml-xl-4,
  7208. .mx-xl-4 {
  7209. margin-right: 1.5rem !important; }
  7210. .m-xl-5 {
  7211. margin: 2rem !important; }
  7212. .mt-xl-5,
  7213. .my-xl-5 {
  7214. margin-top: 2rem !important; }
  7215. .mr-xl-5,
  7216. .mx-xl-5 {
  7217. margin-left: 2rem !important; }
  7218. .mb-xl-5,
  7219. .my-xl-5 {
  7220. margin-bottom: 2rem !important; }
  7221. .ml-xl-5,
  7222. .mx-xl-5 {
  7223. margin-right: 2rem !important; }
  7224. .m-xl-6 {
  7225. margin: 2.5rem !important; }
  7226. .mt-xl-6,
  7227. .my-xl-6 {
  7228. margin-top: 2.5rem !important; }
  7229. .mr-xl-6,
  7230. .mx-xl-6 {
  7231. margin-left: 2.5rem !important; }
  7232. .mb-xl-6,
  7233. .my-xl-6 {
  7234. margin-bottom: 2.5rem !important; }
  7235. .ml-xl-6,
  7236. .mx-xl-6 {
  7237. margin-right: 2.5rem !important; }
  7238. .p-xl-0 {
  7239. padding: 0 !important; }
  7240. .pt-xl-0,
  7241. .py-xl-0 {
  7242. padding-top: 0 !important; }
  7243. .pr-xl-0,
  7244. .px-xl-0 {
  7245. padding-left: 0 !important; }
  7246. .pb-xl-0,
  7247. .py-xl-0 {
  7248. padding-bottom: 0 !important; }
  7249. .pl-xl-0,
  7250. .px-xl-0 {
  7251. padding-right: 0 !important; }
  7252. .p-xl-1 {
  7253. padding: 0.25rem !important; }
  7254. .pt-xl-1,
  7255. .py-xl-1 {
  7256. padding-top: 0.25rem !important; }
  7257. .pr-xl-1,
  7258. .px-xl-1 {
  7259. padding-left: 0.25rem !important; }
  7260. .pb-xl-1,
  7261. .py-xl-1 {
  7262. padding-bottom: 0.25rem !important; }
  7263. .pl-xl-1,
  7264. .px-xl-1 {
  7265. padding-right: 0.25rem !important; }
  7266. .p-xl-2 {
  7267. padding: 0.5rem !important; }
  7268. .pt-xl-2,
  7269. .py-xl-2 {
  7270. padding-top: 0.5rem !important; }
  7271. .pr-xl-2,
  7272. .px-xl-2 {
  7273. padding-left: 0.5rem !important; }
  7274. .pb-xl-2,
  7275. .py-xl-2 {
  7276. padding-bottom: 0.5rem !important; }
  7277. .pl-xl-2,
  7278. .px-xl-2 {
  7279. padding-right: 0.5rem !important; }
  7280. .p-xl-3 {
  7281. padding: 1rem !important; }
  7282. .pt-xl-3,
  7283. .py-xl-3 {
  7284. padding-top: 1rem !important; }
  7285. .pr-xl-3,
  7286. .px-xl-3 {
  7287. padding-left: 1rem !important; }
  7288. .pb-xl-3,
  7289. .py-xl-3 {
  7290. padding-bottom: 1rem !important; }
  7291. .pl-xl-3,
  7292. .px-xl-3 {
  7293. padding-right: 1rem !important; }
  7294. .p-xl-4 {
  7295. padding: 1.5rem !important; }
  7296. .pt-xl-4,
  7297. .py-xl-4 {
  7298. padding-top: 1.5rem !important; }
  7299. .pr-xl-4,
  7300. .px-xl-4 {
  7301. padding-left: 1.5rem !important; }
  7302. .pb-xl-4,
  7303. .py-xl-4 {
  7304. padding-bottom: 1.5rem !important; }
  7305. .pl-xl-4,
  7306. .px-xl-4 {
  7307. padding-right: 1.5rem !important; }
  7308. .p-xl-5 {
  7309. padding: 2rem !important; }
  7310. .pt-xl-5,
  7311. .py-xl-5 {
  7312. padding-top: 2rem !important; }
  7313. .pr-xl-5,
  7314. .px-xl-5 {
  7315. padding-left: 2rem !important; }
  7316. .pb-xl-5,
  7317. .py-xl-5 {
  7318. padding-bottom: 2rem !important; }
  7319. .pl-xl-5,
  7320. .px-xl-5 {
  7321. padding-right: 2rem !important; }
  7322. .p-xl-6 {
  7323. padding: 2.5rem !important; }
  7324. .pt-xl-6,
  7325. .py-xl-6 {
  7326. padding-top: 2.5rem !important; }
  7327. .pr-xl-6,
  7328. .px-xl-6 {
  7329. padding-left: 2.5rem !important; }
  7330. .pb-xl-6,
  7331. .py-xl-6 {
  7332. padding-bottom: 2.5rem !important; }
  7333. .pl-xl-6,
  7334. .px-xl-6 {
  7335. padding-right: 2.5rem !important; }
  7336. .m-xl-n1 {
  7337. margin: -0.25rem !important; }
  7338. .mt-xl-n1,
  7339. .my-xl-n1 {
  7340. margin-top: -0.25rem !important; }
  7341. .mr-xl-n1,
  7342. .mx-xl-n1 {
  7343. margin-left: -0.25rem !important; }
  7344. .mb-xl-n1,
  7345. .my-xl-n1 {
  7346. margin-bottom: -0.25rem !important; }
  7347. .ml-xl-n1,
  7348. .mx-xl-n1 {
  7349. margin-right: -0.25rem !important; }
  7350. .m-xl-n2 {
  7351. margin: -0.5rem !important; }
  7352. .mt-xl-n2,
  7353. .my-xl-n2 {
  7354. margin-top: -0.5rem !important; }
  7355. .mr-xl-n2,
  7356. .mx-xl-n2 {
  7357. margin-left: -0.5rem !important; }
  7358. .mb-xl-n2,
  7359. .my-xl-n2 {
  7360. margin-bottom: -0.5rem !important; }
  7361. .ml-xl-n2,
  7362. .mx-xl-n2 {
  7363. margin-right: -0.5rem !important; }
  7364. .m-xl-n3 {
  7365. margin: -1rem !important; }
  7366. .mt-xl-n3,
  7367. .my-xl-n3 {
  7368. margin-top: -1rem !important; }
  7369. .mr-xl-n3,
  7370. .mx-xl-n3 {
  7371. margin-left: -1rem !important; }
  7372. .mb-xl-n3,
  7373. .my-xl-n3 {
  7374. margin-bottom: -1rem !important; }
  7375. .ml-xl-n3,
  7376. .mx-xl-n3 {
  7377. margin-right: -1rem !important; }
  7378. .m-xl-n4 {
  7379. margin: -1.5rem !important; }
  7380. .mt-xl-n4,
  7381. .my-xl-n4 {
  7382. margin-top: -1.5rem !important; }
  7383. .mr-xl-n4,
  7384. .mx-xl-n4 {
  7385. margin-left: -1.5rem !important; }
  7386. .mb-xl-n4,
  7387. .my-xl-n4 {
  7388. margin-bottom: -1.5rem !important; }
  7389. .ml-xl-n4,
  7390. .mx-xl-n4 {
  7391. margin-right: -1.5rem !important; }
  7392. .m-xl-n5 {
  7393. margin: -2rem !important; }
  7394. .mt-xl-n5,
  7395. .my-xl-n5 {
  7396. margin-top: -2rem !important; }
  7397. .mr-xl-n5,
  7398. .mx-xl-n5 {
  7399. margin-left: -2rem !important; }
  7400. .mb-xl-n5,
  7401. .my-xl-n5 {
  7402. margin-bottom: -2rem !important; }
  7403. .ml-xl-n5,
  7404. .mx-xl-n5 {
  7405. margin-right: -2rem !important; }
  7406. .m-xl-n6 {
  7407. margin: -2.5rem !important; }
  7408. .mt-xl-n6,
  7409. .my-xl-n6 {
  7410. margin-top: -2.5rem !important; }
  7411. .mr-xl-n6,
  7412. .mx-xl-n6 {
  7413. margin-left: -2.5rem !important; }
  7414. .mb-xl-n6,
  7415. .my-xl-n6 {
  7416. margin-bottom: -2.5rem !important; }
  7417. .ml-xl-n6,
  7418. .mx-xl-n6 {
  7419. margin-right: -2.5rem !important; }
  7420. .m-xl-auto {
  7421. margin: auto !important; }
  7422. .mt-xl-auto,
  7423. .my-xl-auto {
  7424. margin-top: auto !important; }
  7425. .mr-xl-auto,
  7426. .mx-xl-auto {
  7427. margin-left: auto !important; }
  7428. .mb-xl-auto,
  7429. .my-xl-auto {
  7430. margin-bottom: auto !important; }
  7431. .ml-xl-auto,
  7432. .mx-xl-auto {
  7433. margin-right: auto !important; } }
  7434. .text-monospace {
  7435. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
  7436. .text-justify {
  7437. text-align: justify !important; }
  7438. .text-wrap {
  7439. white-space: normal !important; }
  7440. .text-nowrap {
  7441. white-space: nowrap !important; }
  7442. .text-truncate {
  7443. overflow: hidden;
  7444. text-overflow: ellipsis;
  7445. white-space: nowrap; }
  7446. .text-left {
  7447. text-align: right !important; }
  7448. .text-right {
  7449. text-align: left !important; }
  7450. .text-center {
  7451. text-align: center !important; }
  7452. @media (min-width: 576px) {
  7453. .text-sm-left {
  7454. text-align: right !important; }
  7455. .text-sm-right {
  7456. text-align: left !important; }
  7457. .text-sm-center {
  7458. text-align: center !important; } }
  7459. @media (min-width: 768px) {
  7460. .text-md-left {
  7461. text-align: right !important; }
  7462. .text-md-right {
  7463. text-align: left !important; }
  7464. .text-md-center {
  7465. text-align: center !important; } }
  7466. @media (min-width: 992px) {
  7467. .text-lg-left {
  7468. text-align: right !important; }
  7469. .text-lg-right {
  7470. text-align: left !important; }
  7471. .text-lg-center {
  7472. text-align: center !important; } }
  7473. @media (min-width: 1399px) {
  7474. .text-xl-left {
  7475. text-align: right !important; }
  7476. .text-xl-right {
  7477. text-align: left !important; }
  7478. .text-xl-center {
  7479. text-align: center !important; } }
  7480. .text-lowercase {
  7481. text-transform: lowercase !important; }
  7482. .text-uppercase {
  7483. text-transform: uppercase !important; }
  7484. .text-capitalize {
  7485. text-transform: capitalize !important; }
  7486. .font-weight-light {
  7487. font-weight: 300 !important; }
  7488. .font-weight-lighter {
  7489. font-weight: lighter !important; }
  7490. .font-weight-normal {
  7491. font-weight: 400 !important; }
  7492. .font-weight-bold {
  7493. font-weight: 700 !important; }
  7494. .font-weight-bolder {
  7495. font-weight: bolder !important; }
  7496. .font-italic {
  7497. font-style: italic !important; }
  7498. .text-white {
  7499. color: #fff !important; }
  7500. .text-primary {
  7501. color: #886ab5 !important; }
  7502. a.text-primary:hover, a.text-primary:focus {
  7503. color: #62468d !important; }
  7504. .text-secondary {
  7505. color: #868e96 !important; }
  7506. a.text-secondary:hover, a.text-secondary:focus {
  7507. color: #60686f !important; }
  7508. .text-success {
  7509. color: #1dc9b7 !important; }
  7510. a.text-success:hover, a.text-success:focus {
  7511. color: #13867a !important; }
  7512. .text-info {
  7513. color: #2196F3 !important; }
  7514. a.text-info:hover, a.text-info:focus {
  7515. color: #0a6ebd !important; }
  7516. .text-warning {
  7517. color: #ffc241 !important; }
  7518. a.text-warning:hover, a.text-warning:focus {
  7519. color: #f4a500 !important; }
  7520. .text-danger {
  7521. color: #fd3995 !important; }
  7522. a.text-danger:hover, a.text-danger:focus {
  7523. color: #e7026e !important; }
  7524. .text-light {
  7525. color: #fff !important; }
  7526. a.text-light:hover, a.text-light:focus {
  7527. color: #d9d9d9 !important; }
  7528. .text-dark {
  7529. color: #505050 !important; }
  7530. a.text-dark:hover, a.text-dark:focus {
  7531. color: #2a2a2a !important; }
  7532. .text-body {
  7533. color: #212529 !important; }
  7534. .text-muted {
  7535. color: #868e96 !important; }
  7536. .text-black-50 {
  7537. color: rgba(0, 0, 0, 0.5) !important; }
  7538. .text-white-50 {
  7539. color: rgba(255, 255, 255, 0.5) !important; }
  7540. .text-hide {
  7541. font: 0/0 a;
  7542. color: transparent;
  7543. text-shadow: none;
  7544. background-color: transparent;
  7545. border: 0; }
  7546. .text-decoration-none {
  7547. text-decoration: none !important; }
  7548. .text-break {
  7549. word-break: break-word !important;
  7550. overflow-wrap: break-word !important; }
  7551. .text-reset {
  7552. color: inherit !important; }
  7553. .visible {
  7554. visibility: visible !important; }
  7555. .invisible {
  7556. visibility: hidden !important; }
  7557. @media print {
  7558. *,
  7559. *::before,
  7560. *::after {
  7561. text-shadow: none !important;
  7562. -webkit-box-shadow: none !important;
  7563. box-shadow: none !important; }
  7564. a:not(.btn) {
  7565. text-decoration: underline; }
  7566. abbr[title]::after {
  7567. content: " (" attr(title) ")"; }
  7568. pre {
  7569. white-space: pre-wrap !important; }
  7570. pre,
  7571. blockquote {
  7572. border: 1px solid #adb5bd;
  7573. page-break-inside: avoid; }
  7574. thead {
  7575. display: table-header-group; }
  7576. tr,
  7577. img {
  7578. page-break-inside: avoid; }
  7579. p,
  7580. h2,
  7581. h3 {
  7582. orphans: 3;
  7583. widows: 3; }
  7584. h2,
  7585. h3 {
  7586. page-break-after: avoid; }
  7587. @page {
  7588. size: letter; }
  7589. body {
  7590. min-width: 992px !important; }
  7591. .container {
  7592. min-width: 992px !important; }
  7593. .navbar {
  7594. display: none; }
  7595. .badge {
  7596. border: 1px solid #000; }
  7597. .table {
  7598. border-collapse: collapse !important; }
  7599. .table td,
  7600. .table th {
  7601. background-color: #fff !important; }
  7602. .table-bordered th,
  7603. .table-bordered td {
  7604. border: 1px solid #dee2e6 !important; }
  7605. .table-dark {
  7606. color: inherit; }
  7607. .table-dark th,
  7608. .table-dark td,
  7609. .table-dark thead th,
  7610. .table-dark tbody + tbody {
  7611. border-color: #e9e9e9; }
  7612. .table .thead-dark th {
  7613. color: inherit;
  7614. border-color: #e9e9e9; } }
  7615. /* #GLOBAL IMPORTS
  7616. ========================================================================== */
  7617. /* #BOOTSTRAP AND MIXINS - Base Unmodified Bootstrap file with theme mixins
  7618. ========================================================================== */
  7619. /*---------------------------------------------------
  7620. SASS ELements (based on LESS Elements 0.9 http://lesselements.com)
  7621. -------------------------------- -------------------
  7622. LESS ELEMENTS made by Dmitry Fadeyev (http://fadeyev.net)
  7623. SASS port by Samuel Beek (http://samuelbeek.com)
  7624. ---------------------------------------------------*/
  7625. /*------------------------
  7626. Usage
  7627. h1 {
  7628. font-size: rem(32);
  7629. }
  7630. OR:
  7631. h1 {
  7632. font-size: rem(32px);
  7633. }
  7634. ------------------------*/
  7635. /*------------------------
  7636. FADE IN
  7637. e.g. @include fadeIn( 2s );
  7638. ------------------------*/
  7639. /*------------------------
  7640. mixin that calculates if text needs to be light or dark
  7641. depending on the background color passed.
  7642. From this W3C document: http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
  7643. usage:
  7644. @include text-contrast($bgcolor)
  7645. Color brightness is determined by the following formula:
  7646. ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
  7647. ------------------------*/
  7648. /*------------------------
  7649. color factory
  7650. eg: @include paint($blue-grey-50, bg-blue-grey-50);
  7651. ------------------------*/
  7652. /* backface visibility */
  7653. /* generate theme button */
  7654. /* #BASE - Base Variable file along with font library, and colors.
  7655. ========================================================================== */
  7656. /* THEME COLORs
  7657. ========================================================================== */
  7658. /* Looks good on chrome default color profile */
  7659. /* looks good in sRGB but washed up on chrome default
  7660. $color-primary: #826bb0;
  7661. $color-success: #31cb55;
  7662. $color-info: #5e93ec;
  7663. $color-warning: #eec559;
  7664. $color-danger: #dc4b92;
  7665. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  7666. /* Color Polarity
  7667. ========================================================================== */
  7668. /* PAINTBUCKET MIXER
  7669. ========================================================================== */
  7670. /* the grays */
  7671. /* the sapphires */
  7672. /* the emeralds */
  7673. /* the amethyths */
  7674. /* the topaz */
  7675. /* the rubies */
  7676. /* the graphites */
  7677. /* Define universal border difition (div outlines, etc)
  7678. ========================================================================== */
  7679. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  7680. ========================================================================== */
  7681. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  7682. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  7683. /* global var used for spacing*/
  7684. /* Uniform Padding variable */
  7685. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  7686. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  7687. ========================================================================== */
  7688. /* usage: theme-colors("primary"); */
  7689. /* forms */
  7690. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  7691. /* links */
  7692. /* checkbox */
  7693. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  7694. /* not part of bootstrap variable */
  7695. /* custom checkbox */
  7696. /* custom range */
  7697. /* select */
  7698. /* badge */
  7699. /* cards */
  7700. /*border radius*/
  7701. /* alert */
  7702. /* toast */
  7703. /* breadcrumb */
  7704. /* input button */
  7705. /* nav link */
  7706. /* nav, tabs, pills */
  7707. /* tables */
  7708. /* dropdowns */
  7709. /* dropdowns sizes */
  7710. /* popovers */
  7711. /* tooltips */
  7712. /* modal */
  7713. /* reference guide
  7714. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  7715. 8px = 0.5rem
  7716. 9px = 0.5625rem
  7717. 10px = 0.625rem
  7718. 11px = 0.6875rem
  7719. 12px = 0.75rem
  7720. 13px = 0.8125rem
  7721. 14px = 0.875rem
  7722. 15px = 0.9375rem
  7723. 16px = 1rem (base)
  7724. 17px = 1.0625rem
  7725. 18px = 1.125rem
  7726. 19px = 1.1875rem
  7727. 20px = 1.25rem
  7728. 21px = 1.3125rem
  7729. 22px = 1.375rem
  7730. 24px = 1.5rem
  7731. 25px = 1.5625rem
  7732. 26px = 1.625rem
  7733. 28px = 1.75rem
  7734. 30px = 1.875rem
  7735. 32px = 2rem
  7736. 34px = 2.125rem
  7737. 36px = 2.25rem
  7738. 38px = 2.375rem
  7739. 40px = 2.5rem
  7740. */
  7741. /* Fonts */
  7742. /* carousel */
  7743. /* BASE VARS
  7744. ========================================================================== */
  7745. /* font vars below will auto change to rem values using function rem($value)*/
  7746. /* 11px */
  7747. /* 12px */
  7748. /* 12.5px */
  7749. /* 14px */
  7750. /* 15px */
  7751. /* 16px */
  7752. /* 28px */
  7753. /* Font Family
  7754. ========================================================================== */
  7755. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  7756. /* ANIMATIONS
  7757. ========================================================================== */
  7758. /* this addresses all animation related to nav hide to nav minify */
  7759. /* Z-INDEX declearation
  7760. ========================================================================== */
  7761. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  7762. /* CUSTOM ICON PREFIX
  7763. ========================================================================== */
  7764. /* PRINT CSS (landscape or portrait)
  7765. ========================================================================== */
  7766. /* landscape or portrait */
  7767. /* auto, letter */
  7768. /* Common Element Variables
  7769. ========================================================================== */
  7770. /* Z-index decleartion "birds eye view"
  7771. ========================================================================== */
  7772. /* Components
  7773. ========================================================================== */
  7774. /* PAGE HEADER STUFF
  7775. ========================================================================== */
  7776. /* colors */
  7777. /* height */
  7778. /* logo */
  7779. /* try not to go beywond the width of $main_nav_width value */
  7780. /* you may need to change this depending on your logo design */
  7781. /* adjust this as you see fit : left, right, center */
  7782. /* icon font size (not button) */
  7783. /* search input box */
  7784. /* suggestion: #ccced0*/
  7785. /* btn */
  7786. /* dropdown: app list */
  7787. /* badge */
  7788. /* COMPONENTS & MODS */
  7789. /* NAVIGATION STUFF
  7790. Guide:
  7791. aside.page-sidebar ($nav-width, $nav-background)
  7792. .page-logo
  7793. .primary-nav
  7794. .info-card
  7795. ul.nav-menu
  7796. li
  7797. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  7798. icon
  7799. span
  7800. collapse-sign
  7801. ul.nav-menu-sub-one
  7802. li
  7803. a ($nav-level-1... $nav-sub-link-height)
  7804. span
  7805. collapse-sign
  7806. ul.nav-menu-sub-two
  7807. li
  7808. a ($nav-level-2... $nav-sub-link-height)
  7809. span
  7810. p.nav-title ($nav-title-*...)
  7811. ========================================================================== */
  7812. /* main navigation */
  7813. /* left panel */
  7814. /* nav parent level-0 */
  7815. /* nav icon sizes */
  7816. /* badge default */
  7817. /* all child */
  7818. /* nav title */
  7819. /* nav Minify */
  7820. /* when the menu pops on hover */
  7821. /* navigation Width */
  7822. /* partial visibility of the menu */
  7823. /* top navigation */
  7824. /* nav Info Card (appears below the logo) */
  7825. /* width is auto */
  7826. /* nav DL labels for all child */
  7827. /* will be pulled to left as a negative value */
  7828. /* MISC Settings
  7829. ========================================================================== */
  7830. /* List Table */
  7831. /* PAGE SETTINGS
  7832. ========================================================================== */
  7833. /* PAGE BREADCRUMB
  7834. ========================================================================== */
  7835. /* PAGE COMPONENT PANELS
  7836. ========================================================================== */
  7837. /* PAGE COMPONENT PROGRESSBARS
  7838. ========================================================================== */
  7839. /* PAGE COMPONENT MESSENGER
  7840. ========================================================================== */
  7841. /* FOOTER
  7842. ========================================================================== */
  7843. /* GLOBALS
  7844. ========================================================================== */
  7845. /* ACCESSIBILITIES */
  7846. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  7847. body {
  7848. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  7849. font-size: 0.8125rem;
  7850. letter-spacing: 0.1px; }
  7851. .page-content {
  7852. color: #666666; }
  7853. h1, h2, h3, h4, h5, h6 {
  7854. line-height: 1.3;
  7855. font-weight: 400; }
  7856. strong {
  7857. font-weight: 500; }
  7858. h1 small,
  7859. h2 small,
  7860. h3 small,
  7861. h4 small,
  7862. h5 small,
  7863. h6 small,
  7864. .h1 small,
  7865. .h2 small,
  7866. .h3 small,
  7867. .h4 small,
  7868. .h5 small,
  7869. .h6 small {
  7870. font-weight: 300;
  7871. display: block;
  7872. font-size: 0.9375rem;
  7873. line-height: 1.5;
  7874. margin: 2px 0 1.5rem; }
  7875. h2 small,
  7876. h3 small,
  7877. .h2 small,
  7878. .h3 small {
  7879. font-size: 0.9375rem; }
  7880. h4 small,
  7881. .h4 small {
  7882. font-size: 0.875rem; }
  7883. h5 small,
  7884. h6 small,
  7885. .h5 small,
  7886. .h6 small {
  7887. font-size: 0.8125rem; }
  7888. /* contrast text */
  7889. .text-contrast {
  7890. color: #333333; }
  7891. /* text-gradient */
  7892. .text-gradient {
  7893. background: -webkit-gradient(linear, right top, right bottom, color-stop(25%, #6e4e9e), color-stop(50%, #62468d), color-stop(75%, #0c7cd5), to(#0960a5));
  7894. background: linear-gradient(-180deg, #6e4e9e 25%, #62468d 50%, #0c7cd5 75%, #0960a5 100%);
  7895. color: #886ab5;
  7896. background-clip: text;
  7897. text-fill-color: transparent;
  7898. -webkit-background-clip: text;
  7899. -webkit-text-fill-color: transparent;
  7900. text-shadow: none; }
  7901. /* looking for font size? Check _helpers.scss */
  7902. /* PLACEHOLDER
  7903. =============================================
  7904. EXAMPLE:
  7905. %bg-image {
  7906. width: 100%;
  7907. background-position: center center;
  7908. background-size: cover;
  7909. background-repeat: no-repeat;
  7910. }
  7911. .image-one {
  7912. @extend %bg-image;
  7913. background-image:url(/img/image-one.jpg");
  7914. }
  7915. RESULT:
  7916. .image-one, .image-two {
  7917. width: 100%;
  7918. background-position: center center;
  7919. background-size: cover;
  7920. background-repeat: no-repeat;
  7921. }
  7922. */
  7923. /*
  7924. %shadow-hover {
  7925. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  7926. transition: all 0.2s ease-in-out;
  7927. &:hover {
  7928. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  7929. }
  7930. }
  7931. */
  7932. /*%fixed-header-shadow {
  7933. @include box-shadow(0 2px 2px -1px rgba(0,0,0,.1));
  7934. }*/
  7935. /* %selected-dot {
  7936. &:before {
  7937. content: " ";
  7938. display: block;
  7939. border-radius: 50%;
  7940. background: inherit;
  7941. background-image: none;
  7942. border: 2px solid rgba(0,0,0,0.2);
  7943. position: absolute;
  7944. top: 15px;
  7945. left: 15px;
  7946. height: 20px;
  7947. width: 20px;
  7948. }
  7949. &:after {
  7950. content: " ";
  7951. height: inherit;
  7952. width: inherit;
  7953. border: 5px solid rgba(0,0,0,0.1);
  7954. position: absolute;
  7955. left: 0;
  7956. top: 0;
  7957. border-radius: 50%;
  7958. }
  7959. }*/
  7960. /* patterns */
  7961. /* #WEBFONT ICONS IMPORTS
  7962. ========================================================================== */
  7963. /*!
  7964. * Font Awesome Pro 5.0.7 by @fontawesome - https://fontawesome.com
  7965. * License - https://fontawesome.com/license (Commercial License)
  7966. */
  7967. .fa,
  7968. .fas,
  7969. .far,
  7970. .fal,
  7971. .fab {
  7972. -moz-osx-font-smoothing: grayscale;
  7973. -webkit-font-smoothing: antialiased;
  7974. display: inline-block;
  7975. font-style: normal;
  7976. font-variant: normal;
  7977. text-rendering: auto;
  7978. line-height: 1; }
  7979. .fa-lg {
  7980. font-size: 1.33333em;
  7981. line-height: 0.75em;
  7982. vertical-align: -.0667em; }
  7983. .fa-xs {
  7984. font-size: .75em; }
  7985. .fa-sm {
  7986. font-size: .875em; }
  7987. .fa-1x {
  7988. font-size: 1em; }
  7989. .fa-2x {
  7990. font-size: 2em; }
  7991. .fa-3x {
  7992. font-size: 3em; }
  7993. .fa-4x {
  7994. font-size: 4em; }
  7995. .fa-5x {
  7996. font-size: 5em; }
  7997. .fa-6x {
  7998. font-size: 6em; }
  7999. .fa-7x {
  8000. font-size: 7em; }
  8001. .fa-8x {
  8002. font-size: 8em; }
  8003. .fa-9x {
  8004. font-size: 9em; }
  8005. .fa-10x {
  8006. font-size: 10em; }
  8007. .fa-fw {
  8008. text-align: center;
  8009. width: 1.25em; }
  8010. .fa-ul {
  8011. list-style-type: none;
  8012. margin-right: 2.5em;
  8013. padding-right: 0; }
  8014. .fa-ul > li {
  8015. position: relative; }
  8016. .fa-li {
  8017. right: -2em;
  8018. position: absolute;
  8019. text-align: center;
  8020. width: 2em;
  8021. line-height: inherit; }
  8022. .fa-border {
  8023. border: solid 0.08em #eee;
  8024. border-radius: .1em;
  8025. padding: .2em .25em .15em; }
  8026. .fa-pull-left {
  8027. float: right; }
  8028. .fa-pull-right {
  8029. float: left; }
  8030. .fa.fa-pull-left,
  8031. .fas.fa-pull-left,
  8032. .far.fa-pull-left,
  8033. .fal.fa-pull-left,
  8034. .fab.fa-pull-left {
  8035. margin-left: .3em; }
  8036. .fa.fa-pull-right,
  8037. .fas.fa-pull-right,
  8038. .far.fa-pull-right,
  8039. .fal.fa-pull-right,
  8040. .fab.fa-pull-right {
  8041. margin-right: .3em; }
  8042. .fa-spin {
  8043. -webkit-animation: fa-spin 2s infinite linear;
  8044. animation: fa-spin 2s infinite linear; }
  8045. .fa-pulse {
  8046. -webkit-animation: fa-spin 1s infinite steps(8);
  8047. animation: fa-spin 1s infinite steps(8); }
  8048. @-webkit-keyframes fa-spin {
  8049. 0% {
  8050. -webkit-transform: rotate(0deg);
  8051. transform: rotate(0deg); }
  8052. 100% {
  8053. -webkit-transform: rotate(-360deg);
  8054. transform: rotate(-360deg); } }
  8055. @keyframes fa-spin {
  8056. 0% {
  8057. -webkit-transform: rotate(0deg);
  8058. transform: rotate(0deg); }
  8059. 100% {
  8060. -webkit-transform: rotate(-360deg);
  8061. transform: rotate(-360deg); } }
  8062. .fa-rotate-90 {
  8063. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  8064. -webkit-transform: rotate(-90deg);
  8065. transform: rotate(-90deg); }
  8066. .fa-rotate-180 {
  8067. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  8068. -webkit-transform: rotate(-180deg);
  8069. transform: rotate(-180deg); }
  8070. .fa-rotate-270 {
  8071. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  8072. -webkit-transform: rotate(-270deg);
  8073. transform: rotate(-270deg); }
  8074. .fa-flip-horizontal {
  8075. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  8076. -webkit-transform: scale(-1, 1);
  8077. transform: scale(-1, 1); }
  8078. .fa-flip-vertical {
  8079. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  8080. -webkit-transform: scale(1, -1);
  8081. transform: scale(1, -1); }
  8082. .fa-flip-horizontal.fa-flip-vertical {
  8083. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  8084. -webkit-transform: scale(-1, -1);
  8085. transform: scale(-1, -1); }
  8086. :root .fa-rotate-90,
  8087. :root .fa-rotate-180,
  8088. :root .fa-rotate-270,
  8089. :root .fa-flip-horizontal,
  8090. :root .fa-flip-vertical {
  8091. -webkit-filter: none;
  8092. filter: none; }
  8093. .fa-stack {
  8094. display: inline-block;
  8095. height: 2em;
  8096. line-height: 2em;
  8097. position: relative;
  8098. vertical-align: middle;
  8099. width: 2em; }
  8100. .fa-stack-1x,
  8101. .fa-stack-2x {
  8102. right: 0;
  8103. position: absolute;
  8104. text-align: center;
  8105. width: 100%; }
  8106. .fa-stack-1x {
  8107. line-height: inherit; }
  8108. .fa-stack-2x {
  8109. font-size: 2em; }
  8110. .fa-inverse {
  8111. color: #fff; }
  8112. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  8113. readers do not read off random characters that represent icons */
  8114. .fa-500px:before {
  8115. content: "\f26e"; }
  8116. .fa-accessible-icon:before {
  8117. content: "\f368"; }
  8118. .fa-accusoft:before {
  8119. content: "\f369"; }
  8120. .fa-address-book:before {
  8121. content: "\f2b9"; }
  8122. .fa-address-card:before {
  8123. content: "\f2bb"; }
  8124. .fa-adjust:before {
  8125. content: "\f042"; }
  8126. .fa-adn:before {
  8127. content: "\f170"; }
  8128. .fa-adversal:before {
  8129. content: "\f36a"; }
  8130. .fa-affiliatetheme:before {
  8131. content: "\f36b"; }
  8132. .fa-alarm-clock:before {
  8133. content: "\f34e"; }
  8134. .fa-algolia:before {
  8135. content: "\f36c"; }
  8136. .fa-align-center:before {
  8137. content: "\f037"; }
  8138. .fa-align-justify:before {
  8139. content: "\f039"; }
  8140. .fa-align-left:before {
  8141. content: "\f036"; }
  8142. .fa-align-right:before {
  8143. content: "\f038"; }
  8144. .fa-allergies:before {
  8145. content: "\f461"; }
  8146. .fa-amazon:before {
  8147. content: "\f270"; }
  8148. .fa-amazon-pay:before {
  8149. content: "\f42c"; }
  8150. .fa-ambulance:before {
  8151. content: "\f0f9"; }
  8152. .fa-american-sign-language-interpreting:before {
  8153. content: "\f2a3"; }
  8154. .fa-amilia:before {
  8155. content: "\f36d"; }
  8156. .fa-anchor:before {
  8157. content: "\f13d"; }
  8158. .fa-android:before {
  8159. content: "\f17b"; }
  8160. .fa-angellist:before {
  8161. content: "\f209"; }
  8162. .fa-angle-double-down:before {
  8163. content: "\f103"; }
  8164. .fa-angle-double-left:before {
  8165. content: "\f100"; }
  8166. .fa-angle-double-right:before {
  8167. content: "\f101"; }
  8168. .fa-angle-double-up:before {
  8169. content: "\f102"; }
  8170. .fa-angle-down:before {
  8171. content: "\f107"; }
  8172. .fa-angle-left:before {
  8173. content: "\f104"; }
  8174. .fa-angle-right:before {
  8175. content: "\f105"; }
  8176. .fa-angle-up:before {
  8177. content: "\f106"; }
  8178. .fa-angrycreative:before {
  8179. content: "\f36e"; }
  8180. .fa-angular:before {
  8181. content: "\f420"; }
  8182. .fa-app-store:before {
  8183. content: "\f36f"; }
  8184. .fa-app-store-ios:before {
  8185. content: "\f370"; }
  8186. .fa-apper:before {
  8187. content: "\f371"; }
  8188. .fa-apple:before {
  8189. content: "\f179"; }
  8190. .fa-apple-pay:before {
  8191. content: "\f415"; }
  8192. .fa-archive:before {
  8193. content: "\f187"; }
  8194. .fa-arrow-alt-circle-down:before {
  8195. content: "\f358"; }
  8196. .fa-arrow-alt-circle-left:before {
  8197. content: "\f359"; }
  8198. .fa-arrow-alt-circle-right:before {
  8199. content: "\f35a"; }
  8200. .fa-arrow-alt-circle-up:before {
  8201. content: "\f35b"; }
  8202. .fa-arrow-alt-down:before {
  8203. content: "\f354"; }
  8204. .fa-arrow-alt-from-bottom:before {
  8205. content: "\f346"; }
  8206. .fa-arrow-alt-from-left:before {
  8207. content: "\f347"; }
  8208. .fa-arrow-alt-from-right:before {
  8209. content: "\f348"; }
  8210. .fa-arrow-alt-from-top:before {
  8211. content: "\f349"; }
  8212. .fa-arrow-alt-left:before {
  8213. content: "\f355"; }
  8214. .fa-arrow-alt-right:before {
  8215. content: "\f356"; }
  8216. .fa-arrow-alt-square-down:before {
  8217. content: "\f350"; }
  8218. .fa-arrow-alt-square-left:before {
  8219. content: "\f351"; }
  8220. .fa-arrow-alt-square-right:before {
  8221. content: "\f352"; }
  8222. .fa-arrow-alt-square-up:before {
  8223. content: "\f353"; }
  8224. .fa-arrow-alt-to-bottom:before {
  8225. content: "\f34a"; }
  8226. .fa-arrow-alt-to-left:before {
  8227. content: "\f34b"; }
  8228. .fa-arrow-alt-to-right:before {
  8229. content: "\f34c"; }
  8230. .fa-arrow-alt-to-top:before {
  8231. content: "\f34d"; }
  8232. .fa-arrow-alt-up:before {
  8233. content: "\f357"; }
  8234. .fa-arrow-circle-down:before {
  8235. content: "\f0ab"; }
  8236. .fa-arrow-circle-left:before {
  8237. content: "\f0a8"; }
  8238. .fa-arrow-circle-right:before {
  8239. content: "\f0a9"; }
  8240. .fa-arrow-circle-up:before {
  8241. content: "\f0aa"; }
  8242. .fa-arrow-down:before {
  8243. content: "\f063"; }
  8244. .fa-arrow-from-bottom:before {
  8245. content: "\f342"; }
  8246. .fa-arrow-from-left:before {
  8247. content: "\f343"; }
  8248. .fa-arrow-from-right:before {
  8249. content: "\f344"; }
  8250. .fa-arrow-from-top:before {
  8251. content: "\f345"; }
  8252. .fa-arrow-left:before {
  8253. content: "\f060"; }
  8254. .fa-arrow-right:before {
  8255. content: "\f061"; }
  8256. .fa-arrow-square-down:before {
  8257. content: "\f339"; }
  8258. .fa-arrow-square-left:before {
  8259. content: "\f33a"; }
  8260. .fa-arrow-square-right:before {
  8261. content: "\f33b"; }
  8262. .fa-arrow-square-up:before {
  8263. content: "\f33c"; }
  8264. .fa-arrow-to-bottom:before {
  8265. content: "\f33d"; }
  8266. .fa-arrow-to-left:before {
  8267. content: "\f33e"; }
  8268. .fa-arrow-to-right:before {
  8269. content: "\f340"; }
  8270. .fa-arrow-to-top:before {
  8271. content: "\f341"; }
  8272. .fa-arrow-up:before {
  8273. content: "\f062"; }
  8274. .fa-arrows:before {
  8275. content: "\f047"; }
  8276. .fa-arrows-alt:before {
  8277. content: "\f0b2"; }
  8278. .fa-arrows-alt-h:before {
  8279. content: "\f337"; }
  8280. .fa-arrows-alt-v:before {
  8281. content: "\f338"; }
  8282. .fa-arrows-h:before {
  8283. content: "\f07e"; }
  8284. .fa-arrows-v:before {
  8285. content: "\f07d"; }
  8286. .fa-assistive-listening-systems:before {
  8287. content: "\f2a2"; }
  8288. .fa-asterisk:before {
  8289. content: "\f069"; }
  8290. .fa-asymmetrik:before {
  8291. content: "\f372"; }
  8292. .fa-at:before {
  8293. content: "\f1fa"; }
  8294. .fa-audible:before {
  8295. content: "\f373"; }
  8296. .fa-audio-description:before {
  8297. content: "\f29e"; }
  8298. .fa-autoprefixer:before {
  8299. content: "\f41c"; }
  8300. .fa-avianex:before {
  8301. content: "\f374"; }
  8302. .fa-aviato:before {
  8303. content: "\f421"; }
  8304. .fa-aws:before {
  8305. content: "\f375"; }
  8306. .fa-backward:before {
  8307. content: "\f04a"; }
  8308. .fa-badge:before {
  8309. content: "\f335"; }
  8310. .fa-badge-check:before {
  8311. content: "\f336"; }
  8312. .fa-balance-scale:before {
  8313. content: "\f24e"; }
  8314. .fa-ban:before {
  8315. content: "\f05e"; }
  8316. .fa-band-aid:before {
  8317. content: "\f462"; }
  8318. .fa-bandcamp:before {
  8319. content: "\f2d5"; }
  8320. .fa-barcode:before {
  8321. content: "\f02a"; }
  8322. .fa-barcode-alt:before {
  8323. content: "\f463"; }
  8324. .fa-barcode-read:before {
  8325. content: "\f464"; }
  8326. .fa-barcode-scan:before {
  8327. content: "\f465"; }
  8328. .fa-bars:before {
  8329. content: "\f0c9"; }
  8330. .fa-baseball:before {
  8331. content: "\f432"; }
  8332. .fa-baseball-ball:before {
  8333. content: "\f433"; }
  8334. .fa-basketball-ball:before {
  8335. content: "\f434"; }
  8336. .fa-basketball-hoop:before {
  8337. content: "\f435"; }
  8338. .fa-bath:before {
  8339. content: "\f2cd"; }
  8340. .fa-battery-bolt:before {
  8341. content: "\f376"; }
  8342. .fa-battery-empty:before {
  8343. content: "\f244"; }
  8344. .fa-battery-full:before {
  8345. content: "\f240"; }
  8346. .fa-battery-half:before {
  8347. content: "\f242"; }
  8348. .fa-battery-quarter:before {
  8349. content: "\f243"; }
  8350. .fa-battery-slash:before {
  8351. content: "\f377"; }
  8352. .fa-battery-three-quarters:before {
  8353. content: "\f241"; }
  8354. .fa-bed:before {
  8355. content: "\f236"; }
  8356. .fa-beer:before {
  8357. content: "\f0fc"; }
  8358. .fa-behance:before {
  8359. content: "\f1b4"; }
  8360. .fa-behance-square:before {
  8361. content: "\f1b5"; }
  8362. .fa-bell:before {
  8363. content: "\f0f3"; }
  8364. .fa-bell-slash:before {
  8365. content: "\f1f6"; }
  8366. .fa-bicycle:before {
  8367. content: "\f206"; }
  8368. .fa-bimobject:before {
  8369. content: "\f378"; }
  8370. .fa-binoculars:before {
  8371. content: "\f1e5"; }
  8372. .fa-birthday-cake:before {
  8373. content: "\f1fd"; }
  8374. .fa-bitbucket:before {
  8375. content: "\f171"; }
  8376. .fa-bitcoin:before {
  8377. content: "\f379"; }
  8378. .fa-bity:before {
  8379. content: "\f37a"; }
  8380. .fa-black-tie:before {
  8381. content: "\f27e"; }
  8382. .fa-blackberry:before {
  8383. content: "\f37b"; }
  8384. .fa-blind:before {
  8385. content: "\f29d"; }
  8386. .fa-blogger:before {
  8387. content: "\f37c"; }
  8388. .fa-blogger-b:before {
  8389. content: "\f37d"; }
  8390. .fa-bluetooth:before {
  8391. content: "\f293"; }
  8392. .fa-bluetooth-b:before {
  8393. content: "\f294"; }
  8394. .fa-bold:before {
  8395. content: "\f032"; }
  8396. .fa-bolt:before {
  8397. content: "\f0e7"; }
  8398. .fa-bomb:before {
  8399. content: "\f1e2"; }
  8400. .fa-book:before {
  8401. content: "\f02d"; }
  8402. .fa-bookmark:before {
  8403. content: "\f02e"; }
  8404. .fa-bowling-ball:before {
  8405. content: "\f436"; }
  8406. .fa-bowling-pins:before {
  8407. content: "\f437"; }
  8408. .fa-box:before {
  8409. content: "\f466"; }
  8410. .fa-box-check:before {
  8411. content: "\f467"; }
  8412. .fa-boxes:before {
  8413. content: "\f468"; }
  8414. .fa-boxing-glove:before {
  8415. content: "\f438"; }
  8416. .fa-braille:before {
  8417. content: "\f2a1"; }
  8418. .fa-briefcase:before {
  8419. content: "\f0b1"; }
  8420. .fa-briefcase-medical:before {
  8421. content: "\f469"; }
  8422. .fa-browser:before {
  8423. content: "\f37e"; }
  8424. .fa-btc:before {
  8425. content: "\f15a"; }
  8426. .fa-bug:before {
  8427. content: "\f188"; }
  8428. .fa-building:before {
  8429. content: "\f1ad"; }
  8430. .fa-bullhorn:before {
  8431. content: "\f0a1"; }
  8432. .fa-bullseye:before {
  8433. content: "\f140"; }
  8434. .fa-burn:before {
  8435. content: "\f46a"; }
  8436. .fa-buromobelexperte:before {
  8437. content: "\f37f"; }
  8438. .fa-bus:before {
  8439. content: "\f207"; }
  8440. .fa-buysellads:before {
  8441. content: "\f20d"; }
  8442. .fa-calculator:before {
  8443. content: "\f1ec"; }
  8444. .fa-calendar:before {
  8445. content: "\f133"; }
  8446. .fa-calendar-alt:before {
  8447. content: "\f073"; }
  8448. .fa-calendar-check:before {
  8449. content: "\f274"; }
  8450. .fa-calendar-edit:before {
  8451. content: "\f333"; }
  8452. .fa-calendar-exclamation:before {
  8453. content: "\f334"; }
  8454. .fa-calendar-minus:before {
  8455. content: "\f272"; }
  8456. .fa-calendar-plus:before {
  8457. content: "\f271"; }
  8458. .fa-calendar-times:before {
  8459. content: "\f273"; }
  8460. .fa-camera:before {
  8461. content: "\f030"; }
  8462. .fa-camera-alt:before {
  8463. content: "\f332"; }
  8464. .fa-camera-retro:before {
  8465. content: "\f083"; }
  8466. .fa-capsules:before {
  8467. content: "\f46b"; }
  8468. .fa-car:before {
  8469. content: "\f1b9"; }
  8470. .fa-caret-circle-down:before {
  8471. content: "\f32d"; }
  8472. .fa-caret-circle-left:before {
  8473. content: "\f32e"; }
  8474. .fa-caret-circle-right:before {
  8475. content: "\f330"; }
  8476. .fa-caret-circle-up:before {
  8477. content: "\f331"; }
  8478. .fa-caret-down:before {
  8479. content: "\f0d7"; }
  8480. .fa-caret-left:before {
  8481. content: "\f0d9"; }
  8482. .fa-caret-right:before {
  8483. content: "\f0da"; }
  8484. .fa-caret-square-down:before {
  8485. content: "\f150"; }
  8486. .fa-caret-square-left:before {
  8487. content: "\f191"; }
  8488. .fa-caret-square-right:before {
  8489. content: "\f152"; }
  8490. .fa-caret-square-up:before {
  8491. content: "\f151"; }
  8492. .fa-caret-up:before {
  8493. content: "\f0d8"; }
  8494. .fa-cart-arrow-down:before {
  8495. content: "\f218"; }
  8496. .fa-cart-plus:before {
  8497. content: "\f217"; }
  8498. .fa-cc-amazon-pay:before {
  8499. content: "\f42d"; }
  8500. .fa-cc-amex:before {
  8501. content: "\f1f3"; }
  8502. .fa-cc-apple-pay:before {
  8503. content: "\f416"; }
  8504. .fa-cc-diners-club:before {
  8505. content: "\f24c"; }
  8506. .fa-cc-discover:before {
  8507. content: "\f1f2"; }
  8508. .fa-cc-jcb:before {
  8509. content: "\f24b"; }
  8510. .fa-cc-mastercard:before {
  8511. content: "\f1f1"; }
  8512. .fa-cc-paypal:before {
  8513. content: "\f1f4"; }
  8514. .fa-cc-stripe:before {
  8515. content: "\f1f5"; }
  8516. .fa-cc-visa:before {
  8517. content: "\f1f0"; }
  8518. .fa-centercode:before {
  8519. content: "\f380"; }
  8520. .fa-certificate:before {
  8521. content: "\f0a3"; }
  8522. .fa-chart-area:before {
  8523. content: "\f1fe"; }
  8524. .fa-chart-bar:before {
  8525. content: "\f080"; }
  8526. .fa-chart-line:before {
  8527. content: "\f201"; }
  8528. .fa-chart-pie:before {
  8529. content: "\f200"; }
  8530. .fa-check:before {
  8531. content: "\f00c"; }
  8532. .fa-check-circle:before {
  8533. content: "\f058"; }
  8534. .fa-check-square:before {
  8535. content: "\f14a"; }
  8536. .fa-chess:before {
  8537. content: "\f439"; }
  8538. .fa-chess-bishop:before {
  8539. content: "\f43a"; }
  8540. .fa-chess-bishop-alt:before {
  8541. content: "\f43b"; }
  8542. .fa-chess-board:before {
  8543. content: "\f43c"; }
  8544. .fa-chess-clock:before {
  8545. content: "\f43d"; }
  8546. .fa-chess-clock-alt:before {
  8547. content: "\f43e"; }
  8548. .fa-chess-king:before {
  8549. content: "\f43f"; }
  8550. .fa-chess-king-alt:before {
  8551. content: "\f440"; }
  8552. .fa-chess-knight:before {
  8553. content: "\f441"; }
  8554. .fa-chess-knight-alt:before {
  8555. content: "\f442"; }
  8556. .fa-chess-pawn:before {
  8557. content: "\f443"; }
  8558. .fa-chess-pawn-alt:before {
  8559. content: "\f444"; }
  8560. .fa-chess-queen:before {
  8561. content: "\f445"; }
  8562. .fa-chess-queen-alt:before {
  8563. content: "\f446"; }
  8564. .fa-chess-rook:before {
  8565. content: "\f447"; }
  8566. .fa-chess-rook-alt:before {
  8567. content: "\f448"; }
  8568. .fa-chevron-circle-down:before {
  8569. content: "\f13a"; }
  8570. .fa-chevron-circle-left:before {
  8571. content: "\f137"; }
  8572. .fa-chevron-circle-right:before {
  8573. content: "\f138"; }
  8574. .fa-chevron-circle-up:before {
  8575. content: "\f139"; }
  8576. .fa-chevron-double-down:before {
  8577. content: "\f322"; }
  8578. .fa-chevron-double-left:before {
  8579. content: "\f323"; }
  8580. .fa-chevron-double-right:before {
  8581. content: "\f324"; }
  8582. .fa-chevron-double-up:before {
  8583. content: "\f325"; }
  8584. .fa-chevron-down:before {
  8585. content: "\f078"; }
  8586. .fa-chevron-left:before {
  8587. content: "\f053"; }
  8588. .fa-chevron-right:before {
  8589. content: "\f054"; }
  8590. .fa-chevron-square-down:before {
  8591. content: "\f329"; }
  8592. .fa-chevron-square-left:before {
  8593. content: "\f32a"; }
  8594. .fa-chevron-square-right:before {
  8595. content: "\f32b"; }
  8596. .fa-chevron-square-up:before {
  8597. content: "\f32c"; }
  8598. .fa-chevron-up:before {
  8599. content: "\f077"; }
  8600. .fa-child:before {
  8601. content: "\f1ae"; }
  8602. .fa-chrome:before {
  8603. content: "\f268"; }
  8604. .fa-circle:before {
  8605. content: "\f111"; }
  8606. .fa-circle-notch:before {
  8607. content: "\f1ce"; }
  8608. .fa-clipboard:before {
  8609. content: "\f328"; }
  8610. .fa-clipboard-check:before {
  8611. content: "\f46c"; }
  8612. .fa-clipboard-list:before {
  8613. content: "\f46d"; }
  8614. .fa-clock:before {
  8615. content: "\f017"; }
  8616. .fa-clone:before {
  8617. content: "\f24d"; }
  8618. .fa-closed-captioning:before {
  8619. content: "\f20a"; }
  8620. .fa-cloud:before {
  8621. content: "\f0c2"; }
  8622. .fa-cloud-download:before {
  8623. content: "\f0ed"; }
  8624. .fa-cloud-download-alt:before {
  8625. content: "\f381"; }
  8626. .fa-cloud-upload:before {
  8627. content: "\f0ee"; }
  8628. .fa-cloud-upload-alt:before {
  8629. content: "\f382"; }
  8630. .fa-cloudscale:before {
  8631. content: "\f383"; }
  8632. .fa-cloudsmith:before {
  8633. content: "\f384"; }
  8634. .fa-cloudversify:before {
  8635. content: "\f385"; }
  8636. .fa-club:before {
  8637. content: "\f327"; }
  8638. .fa-code:before {
  8639. content: "\f121"; }
  8640. .fa-code-branch:before {
  8641. content: "\f126"; }
  8642. .fa-code-commit:before {
  8643. content: "\f386"; }
  8644. .fa-code-merge:before {
  8645. content: "\f387"; }
  8646. .fa-codepen:before {
  8647. content: "\f1cb"; }
  8648. .fa-codiepie:before {
  8649. content: "\f284"; }
  8650. .fa-coffee:before {
  8651. content: "\f0f4"; }
  8652. .fa-cog:before {
  8653. content: "\f013"; }
  8654. .fa-cogs:before {
  8655. content: "\f085"; }
  8656. .fa-columns:before {
  8657. content: "\f0db"; }
  8658. .fa-comment:before {
  8659. content: "\f075"; }
  8660. .fa-comment-alt:before {
  8661. content: "\f27a"; }
  8662. .fa-comments:before {
  8663. content: "\f086"; }
  8664. .fa-compass:before {
  8665. content: "\f14e"; }
  8666. .fa-compress:before {
  8667. content: "\f066"; }
  8668. .fa-compress-alt:before {
  8669. content: "\f422"; }
  8670. .fa-compress-wide:before {
  8671. content: "\f326"; }
  8672. .fa-connectdevelop:before {
  8673. content: "\f20e"; }
  8674. .fa-contao:before {
  8675. content: "\f26d"; }
  8676. .fa-conveyor-belt:before {
  8677. content: "\f46e"; }
  8678. .fa-conveyor-belt-alt:before {
  8679. content: "\f46f"; }
  8680. .fa-copy:before {
  8681. content: "\f0c5"; }
  8682. .fa-copyright:before {
  8683. content: "\f1f9"; }
  8684. .fa-cpanel:before {
  8685. content: "\f388"; }
  8686. .fa-creative-commons:before {
  8687. content: "\f25e"; }
  8688. .fa-credit-card:before {
  8689. content: "\f09d"; }
  8690. .fa-credit-card-blank:before {
  8691. content: "\f389"; }
  8692. .fa-credit-card-front:before {
  8693. content: "\f38a"; }
  8694. .fa-cricket:before {
  8695. content: "\f449"; }
  8696. .fa-crop:before {
  8697. content: "\f125"; }
  8698. .fa-crosshairs:before {
  8699. content: "\f05b"; }
  8700. .fa-css3:before {
  8701. content: "\f13c"; }
  8702. .fa-css3-alt:before {
  8703. content: "\f38b"; }
  8704. .fa-cube:before {
  8705. content: "\f1b2"; }
  8706. .fa-cubes:before {
  8707. content: "\f1b3"; }
  8708. .fa-curling:before {
  8709. content: "\f44a"; }
  8710. .fa-cut:before {
  8711. content: "\f0c4"; }
  8712. .fa-cuttlefish:before {
  8713. content: "\f38c"; }
  8714. .fa-d-and-d:before {
  8715. content: "\f38d"; }
  8716. .fa-dashcube:before {
  8717. content: "\f210"; }
  8718. .fa-database:before {
  8719. content: "\f1c0"; }
  8720. .fa-deaf:before {
  8721. content: "\f2a4"; }
  8722. .fa-delicious:before {
  8723. content: "\f1a5"; }
  8724. .fa-deploydog:before {
  8725. content: "\f38e"; }
  8726. .fa-deskpro:before {
  8727. content: "\f38f"; }
  8728. .fa-desktop:before {
  8729. content: "\f108"; }
  8730. .fa-desktop-alt:before {
  8731. content: "\f390"; }
  8732. .fa-deviantart:before {
  8733. content: "\f1bd"; }
  8734. .fa-diagnoses:before {
  8735. content: "\f470"; }
  8736. .fa-diamond:before {
  8737. content: "\f219"; }
  8738. .fa-digg:before {
  8739. content: "\f1a6"; }
  8740. .fa-digital-ocean:before {
  8741. content: "\f391"; }
  8742. .fa-discord:before {
  8743. content: "\f392"; }
  8744. .fa-discourse:before {
  8745. content: "\f393"; }
  8746. .fa-dna:before {
  8747. content: "\f471"; }
  8748. .fa-dochub:before {
  8749. content: "\f394"; }
  8750. .fa-docker:before {
  8751. content: "\f395"; }
  8752. .fa-dollar-sign:before {
  8753. content: "\f155"; }
  8754. .fa-dolly:before {
  8755. content: "\f472"; }
  8756. .fa-dolly-empty:before {
  8757. content: "\f473"; }
  8758. .fa-dolly-flatbed:before {
  8759. content: "\f474"; }
  8760. .fa-dolly-flatbed-alt:before {
  8761. content: "\f475"; }
  8762. .fa-dolly-flatbed-empty:before {
  8763. content: "\f476"; }
  8764. .fa-dot-circle:before {
  8765. content: "\f192"; }
  8766. .fa-download:before {
  8767. content: "\f019"; }
  8768. .fa-draft2digital:before {
  8769. content: "\f396"; }
  8770. .fa-dribbble:before {
  8771. content: "\f17d"; }
  8772. .fa-dribbble-square:before {
  8773. content: "\f397"; }
  8774. .fa-dropbox:before {
  8775. content: "\f16b"; }
  8776. .fa-drupal:before {
  8777. content: "\f1a9"; }
  8778. .fa-dumbbell:before {
  8779. content: "\f44b"; }
  8780. .fa-dyalog:before {
  8781. content: "\f399"; }
  8782. .fa-earlybirds:before {
  8783. content: "\f39a"; }
  8784. .fa-edge:before {
  8785. content: "\f282"; }
  8786. .fa-edit:before {
  8787. content: "\f044"; }
  8788. .fa-eject:before {
  8789. content: "\f052"; }
  8790. .fa-elementor:before {
  8791. content: "\f430"; }
  8792. .fa-ellipsis-h:before {
  8793. content: "\f141"; }
  8794. .fa-ellipsis-h-alt:before {
  8795. content: "\f39b"; }
  8796. .fa-ellipsis-v:before {
  8797. content: "\f142"; }
  8798. .fa-ellipsis-v-alt:before {
  8799. content: "\f39c"; }
  8800. .fa-ember:before {
  8801. content: "\f423"; }
  8802. .fa-empire:before {
  8803. content: "\f1d1"; }
  8804. .fa-envelope:before {
  8805. content: "\f0e0"; }
  8806. .fa-envelope-open:before {
  8807. content: "\f2b6"; }
  8808. .fa-envelope-square:before {
  8809. content: "\f199"; }
  8810. .fa-envira:before {
  8811. content: "\f299"; }
  8812. .fa-eraser:before {
  8813. content: "\f12d"; }
  8814. .fa-erlang:before {
  8815. content: "\f39d"; }
  8816. .fa-ethereum:before {
  8817. content: "\f42e"; }
  8818. .fa-etsy:before {
  8819. content: "\f2d7"; }
  8820. .fa-euro-sign:before {
  8821. content: "\f153"; }
  8822. .fa-exchange:before {
  8823. content: "\f0ec"; }
  8824. .fa-exchange-alt:before {
  8825. content: "\f362"; }
  8826. .fa-exclamation:before {
  8827. content: "\f12a"; }
  8828. .fa-exclamation-circle:before {
  8829. content: "\f06a"; }
  8830. .fa-exclamation-square:before {
  8831. content: "\f321"; }
  8832. .fa-exclamation-triangle:before {
  8833. content: "\f071"; }
  8834. .fa-expand:before {
  8835. content: "\f065"; }
  8836. .fa-expand-alt:before {
  8837. content: "\f424"; }
  8838. .fa-expand-arrows:before {
  8839. content: "\f31d"; }
  8840. .fa-expand-arrows-alt:before {
  8841. content: "\f31e"; }
  8842. .fa-expand-wide:before {
  8843. content: "\f320"; }
  8844. .fa-expeditedssl:before {
  8845. content: "\f23e"; }
  8846. .fa-external-link:before {
  8847. content: "\f08e"; }
  8848. .fa-external-link-alt:before {
  8849. content: "\f35d"; }
  8850. .fa-external-link-square:before {
  8851. content: "\f14c"; }
  8852. .fa-external-link-square-alt:before {
  8853. content: "\f360"; }
  8854. .fa-eye:before {
  8855. content: "\f06e"; }
  8856. .fa-eye-dropper:before {
  8857. content: "\f1fb"; }
  8858. .fa-eye-slash:before {
  8859. content: "\f070"; }
  8860. .fa-facebook:before {
  8861. content: "\f09a"; }
  8862. .fa-facebook-f:before {
  8863. content: "\f39e"; }
  8864. .fa-facebook-messenger:before {
  8865. content: "\f39f"; }
  8866. .fa-facebook-square:before {
  8867. content: "\f082"; }
  8868. .fa-fast-backward:before {
  8869. content: "\f049"; }
  8870. .fa-fast-forward:before {
  8871. content: "\f050"; }
  8872. .fa-fax:before {
  8873. content: "\f1ac"; }
  8874. .fa-female:before {
  8875. content: "\f182"; }
  8876. .fa-field-hockey:before {
  8877. content: "\f44c"; }
  8878. .fa-fighter-jet:before {
  8879. content: "\f0fb"; }
  8880. .fa-file:before {
  8881. content: "\f15b"; }
  8882. .fa-file-alt:before {
  8883. content: "\f15c"; }
  8884. .fa-file-archive:before {
  8885. content: "\f1c6"; }
  8886. .fa-file-audio:before {
  8887. content: "\f1c7"; }
  8888. .fa-file-check:before {
  8889. content: "\f316"; }
  8890. .fa-file-code:before {
  8891. content: "\f1c9"; }
  8892. .fa-file-edit:before {
  8893. content: "\f31c"; }
  8894. .fa-file-excel:before {
  8895. content: "\f1c3"; }
  8896. .fa-file-exclamation:before {
  8897. content: "\f31a"; }
  8898. .fa-file-image:before {
  8899. content: "\f1c5"; }
  8900. .fa-file-medical:before {
  8901. content: "\f477"; }
  8902. .fa-file-medical-alt:before {
  8903. content: "\f478"; }
  8904. .fa-file-minus:before {
  8905. content: "\f318"; }
  8906. .fa-file-pdf:before {
  8907. content: "\f1c1"; }
  8908. .fa-file-plus:before {
  8909. content: "\f319"; }
  8910. .fa-file-powerpoint:before {
  8911. content: "\f1c4"; }
  8912. .fa-file-times:before {
  8913. content: "\f317"; }
  8914. .fa-file-video:before {
  8915. content: "\f1c8"; }
  8916. .fa-file-word:before {
  8917. content: "\f1c2"; }
  8918. .fa-film:before {
  8919. content: "\f008"; }
  8920. .fa-film-alt:before {
  8921. content: "\f3a0"; }
  8922. .fa-filter:before {
  8923. content: "\f0b0"; }
  8924. .fa-fire:before {
  8925. content: "\f06d"; }
  8926. .fa-fire-extinguisher:before {
  8927. content: "\f134"; }
  8928. .fa-firefox:before {
  8929. content: "\f269"; }
  8930. .fa-first-aid:before {
  8931. content: "\f479"; }
  8932. .fa-first-order:before {
  8933. content: "\f2b0"; }
  8934. .fa-firstdraft:before {
  8935. content: "\f3a1"; }
  8936. .fa-flag:before {
  8937. content: "\f024"; }
  8938. .fa-flag-checkered:before {
  8939. content: "\f11e"; }
  8940. .fa-flask:before {
  8941. content: "\f0c3"; }
  8942. .fa-flickr:before {
  8943. content: "\f16e"; }
  8944. .fa-flipboard:before {
  8945. content: "\f44d"; }
  8946. .fa-fly:before {
  8947. content: "\f417"; }
  8948. .fa-folder:before {
  8949. content: "\f07b"; }
  8950. .fa-folder-open:before {
  8951. content: "\f07c"; }
  8952. .fa-font:before {
  8953. content: "\f031"; }
  8954. .fa-font-awesome:before {
  8955. content: "\f2b4"; }
  8956. .fa-font-awesome-alt:before {
  8957. content: "\f35c"; }
  8958. .fa-font-awesome-flag:before {
  8959. content: "\f425"; }
  8960. .fa-fonticons:before {
  8961. content: "\f280"; }
  8962. .fa-fonticons-fi:before {
  8963. content: "\f3a2"; }
  8964. .fa-football-ball:before {
  8965. content: "\f44e"; }
  8966. .fa-football-helmet:before {
  8967. content: "\f44f"; }
  8968. .fa-forklift:before {
  8969. content: "\f47a"; }
  8970. .fa-fort-awesome:before {
  8971. content: "\f286"; }
  8972. .fa-fort-awesome-alt:before {
  8973. content: "\f3a3"; }
  8974. .fa-forumbee:before {
  8975. content: "\f211"; }
  8976. .fa-forward:before {
  8977. content: "\f04e"; }
  8978. .fa-foursquare:before {
  8979. content: "\f180"; }
  8980. .fa-free-code-camp:before {
  8981. content: "\f2c5"; }
  8982. .fa-freebsd:before {
  8983. content: "\f3a4"; }
  8984. .fa-frown:before {
  8985. content: "\f119"; }
  8986. .fa-futbol:before {
  8987. content: "\f1e3"; }
  8988. .fa-gamepad:before {
  8989. content: "\f11b"; }
  8990. .fa-gavel:before {
  8991. content: "\f0e3"; }
  8992. .fa-gem:before {
  8993. content: "\f3a5"; }
  8994. .fa-genderless:before {
  8995. content: "\f22d"; }
  8996. .fa-get-pocket:before {
  8997. content: "\f265"; }
  8998. .fa-gg:before {
  8999. content: "\f260"; }
  9000. .fa-gg-circle:before {
  9001. content: "\f261"; }
  9002. .fa-gift:before {
  9003. content: "\f06b"; }
  9004. .fa-git:before {
  9005. content: "\f1d3"; }
  9006. .fa-git-square:before {
  9007. content: "\f1d2"; }
  9008. .fa-github:before {
  9009. content: "\f09b"; }
  9010. .fa-github-alt:before {
  9011. content: "\f113"; }
  9012. .fa-github-square:before {
  9013. content: "\f092"; }
  9014. .fa-gitkraken:before {
  9015. content: "\f3a6"; }
  9016. .fa-gitlab:before {
  9017. content: "\f296"; }
  9018. .fa-gitter:before {
  9019. content: "\f426"; }
  9020. .fa-glass-martini:before {
  9021. content: "\f000"; }
  9022. .fa-glide:before {
  9023. content: "\f2a5"; }
  9024. .fa-glide-g:before {
  9025. content: "\f2a6"; }
  9026. .fa-globe:before {
  9027. content: "\f0ac"; }
  9028. .fa-gofore:before {
  9029. content: "\f3a7"; }
  9030. .fa-golf-ball:before {
  9031. content: "\f450"; }
  9032. .fa-golf-club:before {
  9033. content: "\f451"; }
  9034. .fa-goodreads:before {
  9035. content: "\f3a8"; }
  9036. .fa-goodreads-g:before {
  9037. content: "\f3a9"; }
  9038. .fa-google:before {
  9039. content: "\f1a0"; }
  9040. .fa-google-drive:before {
  9041. content: "\f3aa"; }
  9042. .fa-google-play:before {
  9043. content: "\f3ab"; }
  9044. .fa-google-plus:before {
  9045. content: "\f2b3"; }
  9046. .fa-google-plus-g:before {
  9047. content: "\f0d5"; }
  9048. .fa-google-plus-square:before {
  9049. content: "\f0d4"; }
  9050. .fa-google-wallet:before {
  9051. content: "\f1ee"; }
  9052. .fa-graduation-cap:before {
  9053. content: "\f19d"; }
  9054. .fa-gratipay:before {
  9055. content: "\f184"; }
  9056. .fa-grav:before {
  9057. content: "\f2d6"; }
  9058. .fa-gripfire:before {
  9059. content: "\f3ac"; }
  9060. .fa-grunt:before {
  9061. content: "\f3ad"; }
  9062. .fa-gulp:before {
  9063. content: "\f3ae"; }
  9064. .fa-h-square:before {
  9065. content: "\f0fd"; }
  9066. .fa-h1:before {
  9067. content: "\f313"; }
  9068. .fa-h2:before {
  9069. content: "\f314"; }
  9070. .fa-h3:before {
  9071. content: "\f315"; }
  9072. .fa-hacker-news:before {
  9073. content: "\f1d4"; }
  9074. .fa-hacker-news-square:before {
  9075. content: "\f3af"; }
  9076. .fa-hand-holding-box:before {
  9077. content: "\f47b"; }
  9078. .fa-hand-lizard:before {
  9079. content: "\f258"; }
  9080. .fa-hand-paper:before {
  9081. content: "\f256"; }
  9082. .fa-hand-peace:before {
  9083. content: "\f25b"; }
  9084. .fa-hand-point-down:before {
  9085. content: "\f0a7"; }
  9086. .fa-hand-point-left:before {
  9087. content: "\f0a5"; }
  9088. .fa-hand-point-right:before {
  9089. content: "\f0a4"; }
  9090. .fa-hand-point-up:before {
  9091. content: "\f0a6"; }
  9092. .fa-hand-pointer:before {
  9093. content: "\f25a"; }
  9094. .fa-hand-receiving:before {
  9095. content: "\f47c"; }
  9096. .fa-hand-rock:before {
  9097. content: "\f255"; }
  9098. .fa-hand-scissors:before {
  9099. content: "\f257"; }
  9100. .fa-hand-spock:before {
  9101. content: "\f259"; }
  9102. .fa-handshake:before {
  9103. content: "\f2b5"; }
  9104. .fa-hashtag:before {
  9105. content: "\f292"; }
  9106. .fa-hdd:before {
  9107. content: "\f0a0"; }
  9108. .fa-heading:before {
  9109. content: "\f1dc"; }
  9110. .fa-headphones:before {
  9111. content: "\f025"; }
  9112. .fa-heart:before {
  9113. content: "\f004"; }
  9114. .fa-heartbeat:before {
  9115. content: "\f21e"; }
  9116. .fa-hexagon:before {
  9117. content: "\f312"; }
  9118. .fa-hips:before {
  9119. content: "\f452"; }
  9120. .fa-hire-a-helper:before {
  9121. content: "\f3b0"; }
  9122. .fa-history:before {
  9123. content: "\f1da"; }
  9124. .fa-hockey-puck:before {
  9125. content: "\f453"; }
  9126. .fa-hockey-sticks:before {
  9127. content: "\f454"; }
  9128. .fa-home:before {
  9129. content: "\f015"; }
  9130. .fa-hooli:before {
  9131. content: "\f427"; }
  9132. .fa-hospital:before {
  9133. content: "\f0f8"; }
  9134. .fa-hospital-alt:before {
  9135. content: "\f47d"; }
  9136. .fa-hospital-symbol:before {
  9137. content: "\f47e"; }
  9138. .fa-hotjar:before {
  9139. content: "\f3b1"; }
  9140. .fa-hourglass:before {
  9141. content: "\f254"; }
  9142. .fa-hourglass-end:before {
  9143. content: "\f253"; }
  9144. .fa-hourglass-half:before {
  9145. content: "\f252"; }
  9146. .fa-hourglass-start:before {
  9147. content: "\f251"; }
  9148. .fa-houzz:before {
  9149. content: "\f27c"; }
  9150. .fa-html5:before {
  9151. content: "\f13b"; }
  9152. .fa-hubspot:before {
  9153. content: "\f3b2"; }
  9154. .fa-i-cursor:before {
  9155. content: "\f246"; }
  9156. .fa-id-badge:before {
  9157. content: "\f2c1"; }
  9158. .fa-id-card:before {
  9159. content: "\f2c2"; }
  9160. .fa-id-card-alt:before {
  9161. content: "\f47f"; }
  9162. .fa-image:before {
  9163. content: "\f03e"; }
  9164. .fa-images:before {
  9165. content: "\f302"; }
  9166. .fa-imdb:before {
  9167. content: "\f2d8"; }
  9168. .fa-inbox:before {
  9169. content: "\f01c"; }
  9170. .fa-inbox-in:before {
  9171. content: "\f310"; }
  9172. .fa-inbox-out:before {
  9173. content: "\f311"; }
  9174. .fa-indent:before {
  9175. content: "\f03c"; }
  9176. .fa-industry:before {
  9177. content: "\f275"; }
  9178. .fa-industry-alt:before {
  9179. content: "\f3b3"; }
  9180. .fa-info:before {
  9181. content: "\f129"; }
  9182. .fa-info-circle:before {
  9183. content: "\f05a"; }
  9184. .fa-info-square:before {
  9185. content: "\f30f"; }
  9186. .fa-instagram:before {
  9187. content: "\f16d"; }
  9188. .fa-internet-explorer:before {
  9189. content: "\f26b"; }
  9190. .fa-inventory:before {
  9191. content: "\f480"; }
  9192. .fa-ioxhost:before {
  9193. content: "\f208"; }
  9194. .fa-italic:before {
  9195. content: "\f033"; }
  9196. .fa-itunes:before {
  9197. content: "\f3b4"; }
  9198. .fa-itunes-note:before {
  9199. content: "\f3b5"; }
  9200. .fa-jack-o-lantern:before {
  9201. content: "\f30e"; }
  9202. .fa-jenkins:before {
  9203. content: "\f3b6"; }
  9204. .fa-joget:before {
  9205. content: "\f3b7"; }
  9206. .fa-joomla:before {
  9207. content: "\f1aa"; }
  9208. .fa-js:before {
  9209. content: "\f3b8"; }
  9210. .fa-js-square:before {
  9211. content: "\f3b9"; }
  9212. .fa-jsfiddle:before {
  9213. content: "\f1cc"; }
  9214. .fa-key:before {
  9215. content: "\f084"; }
  9216. .fa-keyboard:before {
  9217. content: "\f11c"; }
  9218. .fa-keycdn:before {
  9219. content: "\f3ba"; }
  9220. .fa-kickstarter:before {
  9221. content: "\f3bb"; }
  9222. .fa-kickstarter-k:before {
  9223. content: "\f3bc"; }
  9224. .fa-korvue:before {
  9225. content: "\f42f"; }
  9226. .fa-language:before {
  9227. content: "\f1ab"; }
  9228. .fa-laptop:before {
  9229. content: "\f109"; }
  9230. .fa-laravel:before {
  9231. content: "\f3bd"; }
  9232. .fa-lastfm:before {
  9233. content: "\f202"; }
  9234. .fa-lastfm-square:before {
  9235. content: "\f203"; }
  9236. .fa-leaf:before {
  9237. content: "\f06c"; }
  9238. .fa-leanpub:before {
  9239. content: "\f212"; }
  9240. .fa-lemon:before {
  9241. content: "\f094"; }
  9242. .fa-less:before {
  9243. content: "\f41d"; }
  9244. .fa-level-down:before {
  9245. content: "\f149"; }
  9246. .fa-level-down-alt:before {
  9247. content: "\f3be"; }
  9248. .fa-level-up:before {
  9249. content: "\f148"; }
  9250. .fa-level-up-alt:before {
  9251. content: "\f3bf"; }
  9252. .fa-life-ring:before {
  9253. content: "\f1cd"; }
  9254. .fa-lightbulb:before {
  9255. content: "\f0eb"; }
  9256. .fa-line:before {
  9257. content: "\f3c0"; }
  9258. .fa-link:before {
  9259. content: "\f0c1"; }
  9260. .fa-linkedin:before {
  9261. content: "\f08c"; }
  9262. .fa-linkedin-in:before {
  9263. content: "\f0e1"; }
  9264. .fa-linode:before {
  9265. content: "\f2b8"; }
  9266. .fa-linux:before {
  9267. content: "\f17c"; }
  9268. .fa-lira-sign:before {
  9269. content: "\f195"; }
  9270. .fa-list:before {
  9271. content: "\f03a"; }
  9272. .fa-list-alt:before {
  9273. content: "\f022"; }
  9274. .fa-list-ol:before {
  9275. content: "\f0cb"; }
  9276. .fa-list-ul:before {
  9277. content: "\f0ca"; }
  9278. .fa-location-arrow:before {
  9279. content: "\f124"; }
  9280. .fa-lock:before {
  9281. content: "\f023"; }
  9282. .fa-lock-alt:before {
  9283. content: "\f30d"; }
  9284. .fa-lock-open:before {
  9285. content: "\f3c1"; }
  9286. .fa-lock-open-alt:before {
  9287. content: "\f3c2"; }
  9288. .fa-long-arrow-alt-down:before {
  9289. content: "\f309"; }
  9290. .fa-long-arrow-alt-left:before {
  9291. content: "\f30a"; }
  9292. .fa-long-arrow-alt-right:before {
  9293. content: "\f30b"; }
  9294. .fa-long-arrow-alt-up:before {
  9295. content: "\f30c"; }
  9296. .fa-long-arrow-down:before {
  9297. content: "\f175"; }
  9298. .fa-long-arrow-left:before {
  9299. content: "\f177"; }
  9300. .fa-long-arrow-right:before {
  9301. content: "\f178"; }
  9302. .fa-long-arrow-up:before {
  9303. content: "\f176"; }
  9304. .fa-low-vision:before {
  9305. content: "\f2a8"; }
  9306. .fa-luchador:before {
  9307. content: "\f455"; }
  9308. .fa-lyft:before {
  9309. content: "\f3c3"; }
  9310. .fa-magento:before {
  9311. content: "\f3c4"; }
  9312. .fa-magic:before {
  9313. content: "\f0d0"; }
  9314. .fa-magnet:before {
  9315. content: "\f076"; }
  9316. .fa-male:before {
  9317. content: "\f183"; }
  9318. .fa-map:before {
  9319. content: "\f279"; }
  9320. .fa-map-marker:before {
  9321. content: "\f041"; }
  9322. .fa-map-marker-alt:before {
  9323. content: "\f3c5"; }
  9324. .fa-map-pin:before {
  9325. content: "\f276"; }
  9326. .fa-map-signs:before {
  9327. content: "\f277"; }
  9328. .fa-mars:before {
  9329. content: "\f222"; }
  9330. .fa-mars-double:before {
  9331. content: "\f227"; }
  9332. .fa-mars-stroke:before {
  9333. content: "\f229"; }
  9334. .fa-mars-stroke-h:before {
  9335. content: "\f22b"; }
  9336. .fa-mars-stroke-v:before {
  9337. content: "\f22a"; }
  9338. .fa-maxcdn:before {
  9339. content: "\f136"; }
  9340. .fa-medapps:before {
  9341. content: "\f3c6"; }
  9342. .fa-medium:before {
  9343. content: "\f23a"; }
  9344. .fa-medium-m:before {
  9345. content: "\f3c7"; }
  9346. .fa-medkit:before {
  9347. content: "\f0fa"; }
  9348. .fa-medrt:before {
  9349. content: "\f3c8"; }
  9350. .fa-meetup:before {
  9351. content: "\f2e0"; }
  9352. .fa-meh:before {
  9353. content: "\f11a"; }
  9354. .fa-mercury:before {
  9355. content: "\f223"; }
  9356. .fa-microchip:before {
  9357. content: "\f2db"; }
  9358. .fa-microphone:before {
  9359. content: "\f130"; }
  9360. .fa-microphone-alt:before {
  9361. content: "\f3c9"; }
  9362. .fa-microphone-slash:before {
  9363. content: "\f131"; }
  9364. .fa-microsoft:before {
  9365. content: "\f3ca"; }
  9366. .fa-minus:before {
  9367. content: "\f068"; }
  9368. .fa-minus-circle:before {
  9369. content: "\f056"; }
  9370. .fa-minus-hexagon:before {
  9371. content: "\f307"; }
  9372. .fa-minus-octagon:before {
  9373. content: "\f308"; }
  9374. .fa-minus-square:before {
  9375. content: "\f146"; }
  9376. .fa-mix:before {
  9377. content: "\f3cb"; }
  9378. .fa-mixcloud:before {
  9379. content: "\f289"; }
  9380. .fa-mizuni:before {
  9381. content: "\f3cc"; }
  9382. .fa-mobile:before {
  9383. content: "\f10b"; }
  9384. .fa-mobile-alt:before {
  9385. content: "\f3cd"; }
  9386. .fa-mobile-android:before {
  9387. content: "\f3ce"; }
  9388. .fa-mobile-android-alt:before {
  9389. content: "\f3cf"; }
  9390. .fa-modx:before {
  9391. content: "\f285"; }
  9392. .fa-monero:before {
  9393. content: "\f3d0"; }
  9394. .fa-money-bill:before {
  9395. content: "\f0d6"; }
  9396. .fa-money-bill-alt:before {
  9397. content: "\f3d1"; }
  9398. .fa-moon:before {
  9399. content: "\f186"; }
  9400. .fa-motorcycle:before {
  9401. content: "\f21c"; }
  9402. .fa-mouse-pointer:before {
  9403. content: "\f245"; }
  9404. .fa-music:before {
  9405. content: "\f001"; }
  9406. .fa-napster:before {
  9407. content: "\f3d2"; }
  9408. .fa-neuter:before {
  9409. content: "\f22c"; }
  9410. .fa-newspaper:before {
  9411. content: "\f1ea"; }
  9412. .fa-nintendo-switch:before {
  9413. content: "\f418"; }
  9414. .fa-node:before {
  9415. content: "\f419"; }
  9416. .fa-node-js:before {
  9417. content: "\f3d3"; }
  9418. .fa-notes-medical:before {
  9419. content: "\f481"; }
  9420. .fa-npm:before {
  9421. content: "\f3d4"; }
  9422. .fa-ns8:before {
  9423. content: "\f3d5"; }
  9424. .fa-nutritionix:before {
  9425. content: "\f3d6"; }
  9426. .fa-object-group:before {
  9427. content: "\f247"; }
  9428. .fa-object-ungroup:before {
  9429. content: "\f248"; }
  9430. .fa-octagon:before {
  9431. content: "\f306"; }
  9432. .fa-odnoklassniki:before {
  9433. content: "\f263"; }
  9434. .fa-odnoklassniki-square:before {
  9435. content: "\f264"; }
  9436. .fa-opencart:before {
  9437. content: "\f23d"; }
  9438. .fa-openid:before {
  9439. content: "\f19b"; }
  9440. .fa-opera:before {
  9441. content: "\f26a"; }
  9442. .fa-optin-monster:before {
  9443. content: "\f23c"; }
  9444. .fa-osi:before {
  9445. content: "\f41a"; }
  9446. .fa-outdent:before {
  9447. content: "\f03b"; }
  9448. .fa-page4:before {
  9449. content: "\f3d7"; }
  9450. .fa-pagelines:before {
  9451. content: "\f18c"; }
  9452. .fa-paint-brush:before {
  9453. content: "\f1fc"; }
  9454. .fa-palfed:before {
  9455. content: "\f3d8"; }
  9456. .fa-pallet:before {
  9457. content: "\f482"; }
  9458. .fa-pallet-alt:before {
  9459. content: "\f483"; }
  9460. .fa-paper-plane:before {
  9461. content: "\f1d8"; }
  9462. .fa-paperclip:before {
  9463. content: "\f0c6"; }
  9464. .fa-paragraph:before {
  9465. content: "\f1dd"; }
  9466. .fa-paste:before {
  9467. content: "\f0ea"; }
  9468. .fa-patreon:before {
  9469. content: "\f3d9"; }
  9470. .fa-pause:before {
  9471. content: "\f04c"; }
  9472. .fa-pause-circle:before {
  9473. content: "\f28b"; }
  9474. .fa-paw:before {
  9475. content: "\f1b0"; }
  9476. .fa-paypal:before {
  9477. content: "\f1ed"; }
  9478. .fa-pen:before {
  9479. content: "\f304"; }
  9480. .fa-pen-alt:before {
  9481. content: "\f305"; }
  9482. .fa-pen-square:before {
  9483. content: "\f14b"; }
  9484. .fa-pencil:before {
  9485. content: "\f040"; }
  9486. .fa-pencil-alt:before {
  9487. content: "\f303"; }
  9488. .fa-pennant:before {
  9489. content: "\f456"; }
  9490. .fa-percent:before {
  9491. content: "\f295"; }
  9492. .fa-periscope:before {
  9493. content: "\f3da"; }
  9494. .fa-phabricator:before {
  9495. content: "\f3db"; }
  9496. .fa-phoenix-framework:before {
  9497. content: "\f3dc"; }
  9498. .fa-phone:before {
  9499. content: "\f095"; }
  9500. .fa-phone-slash:before {
  9501. content: "\f3dd"; }
  9502. .fa-phone-square:before {
  9503. content: "\f098"; }
  9504. .fa-phone-volume:before {
  9505. content: "\f2a0"; }
  9506. .fa-php:before {
  9507. content: "\f457"; }
  9508. .fa-pied-piper:before {
  9509. content: "\f2ae"; }
  9510. .fa-pied-piper-alt:before {
  9511. content: "\f1a8"; }
  9512. .fa-pied-piper-pp:before {
  9513. content: "\f1a7"; }
  9514. .fa-pills:before {
  9515. content: "\f484"; }
  9516. .fa-pinterest:before {
  9517. content: "\f0d2"; }
  9518. .fa-pinterest-p:before {
  9519. content: "\f231"; }
  9520. .fa-pinterest-square:before {
  9521. content: "\f0d3"; }
  9522. .fa-plane:before {
  9523. content: "\f072"; }
  9524. .fa-plane-alt:before {
  9525. content: "\f3de"; }
  9526. .fa-play:before {
  9527. content: "\f04b"; }
  9528. .fa-play-circle:before {
  9529. content: "\f144"; }
  9530. .fa-playstation:before {
  9531. content: "\f3df"; }
  9532. .fa-plug:before {
  9533. content: "\f1e6"; }
  9534. .fa-plus:before {
  9535. content: "\f067"; }
  9536. .fa-plus-circle:before {
  9537. content: "\f055"; }
  9538. .fa-plus-hexagon:before {
  9539. content: "\f300"; }
  9540. .fa-plus-octagon:before {
  9541. content: "\f301"; }
  9542. .fa-plus-square:before {
  9543. content: "\f0fe"; }
  9544. .fa-podcast:before {
  9545. content: "\f2ce"; }
  9546. .fa-poo:before {
  9547. content: "\f2fe"; }
  9548. .fa-portrait:before {
  9549. content: "\f3e0"; }
  9550. .fa-pound-sign:before {
  9551. content: "\f154"; }
  9552. .fa-power-off:before {
  9553. content: "\f011"; }
  9554. .fa-prescription-bottle:before {
  9555. content: "\f485"; }
  9556. .fa-prescription-bottle-alt:before {
  9557. content: "\f486"; }
  9558. .fa-print:before {
  9559. content: "\f02f"; }
  9560. .fa-procedures:before {
  9561. content: "\f487"; }
  9562. .fa-product-hunt:before {
  9563. content: "\f288"; }
  9564. .fa-pushed:before {
  9565. content: "\f3e1"; }
  9566. .fa-puzzle-piece:before {
  9567. content: "\f12e"; }
  9568. .fa-python:before {
  9569. content: "\f3e2"; }
  9570. .fa-qq:before {
  9571. content: "\f1d6"; }
  9572. .fa-qrcode:before {
  9573. content: "\f029"; }
  9574. .fa-question:before {
  9575. content: "\f128"; }
  9576. .fa-question-circle:before {
  9577. content: "\f059"; }
  9578. .fa-question-square:before {
  9579. content: "\f2fd"; }
  9580. .fa-quidditch:before {
  9581. content: "\f458"; }
  9582. .fa-quinscape:before {
  9583. content: "\f459"; }
  9584. .fa-quora:before {
  9585. content: "\f2c4"; }
  9586. .fa-quote-left:before {
  9587. content: "\f10d"; }
  9588. .fa-quote-right:before {
  9589. content: "\f10e"; }
  9590. .fa-racquet:before {
  9591. content: "\f45a"; }
  9592. .fa-random:before {
  9593. content: "\f074"; }
  9594. .fa-ravelry:before {
  9595. content: "\f2d9"; }
  9596. .fa-react:before {
  9597. content: "\f41b"; }
  9598. .fa-rebel:before {
  9599. content: "\f1d0"; }
  9600. .fa-rectangle-landscape:before {
  9601. content: "\f2fa"; }
  9602. .fa-rectangle-portrait:before {
  9603. content: "\f2fb"; }
  9604. .fa-rectangle-wide:before {
  9605. content: "\f2fc"; }
  9606. .fa-recycle:before {
  9607. content: "\f1b8"; }
  9608. .fa-red-river:before {
  9609. content: "\f3e3"; }
  9610. .fa-reddit:before {
  9611. content: "\f1a1"; }
  9612. .fa-reddit-alien:before {
  9613. content: "\f281"; }
  9614. .fa-reddit-square:before {
  9615. content: "\f1a2"; }
  9616. .fa-redo:before {
  9617. content: "\f01e"; }
  9618. .fa-redo-alt:before {
  9619. content: "\f2f9"; }
  9620. .fa-registered:before {
  9621. content: "\f25d"; }
  9622. .fa-rendact:before {
  9623. content: "\f3e4"; }
  9624. .fa-renren:before {
  9625. content: "\f18b"; }
  9626. .fa-repeat:before {
  9627. content: "\f363"; }
  9628. .fa-repeat-1:before {
  9629. content: "\f365"; }
  9630. .fa-repeat-1-alt:before {
  9631. content: "\f366"; }
  9632. .fa-repeat-alt:before {
  9633. content: "\f364"; }
  9634. .fa-reply:before {
  9635. content: "\f3e5"; }
  9636. .fa-reply-all:before {
  9637. content: "\f122"; }
  9638. .fa-replyd:before {
  9639. content: "\f3e6"; }
  9640. .fa-resolving:before {
  9641. content: "\f3e7"; }
  9642. .fa-retweet:before {
  9643. content: "\f079"; }
  9644. .fa-retweet-alt:before {
  9645. content: "\f361"; }
  9646. .fa-road:before {
  9647. content: "\f018"; }
  9648. .fa-rocket:before {
  9649. content: "\f135"; }
  9650. .fa-rocketchat:before {
  9651. content: "\f3e8"; }
  9652. .fa-rockrms:before {
  9653. content: "\f3e9"; }
  9654. .fa-rss:before {
  9655. content: "\f09e"; }
  9656. .fa-rss-square:before {
  9657. content: "\f143"; }
  9658. .fa-ruble-sign:before {
  9659. content: "\f158"; }
  9660. .fa-rupee-sign:before {
  9661. content: "\f156"; }
  9662. .fa-safari:before {
  9663. content: "\f267"; }
  9664. .fa-sass:before {
  9665. content: "\f41e"; }
  9666. .fa-save:before {
  9667. content: "\f0c7"; }
  9668. .fa-scanner:before {
  9669. content: "\f488"; }
  9670. .fa-scanner-keyboard:before {
  9671. content: "\f489"; }
  9672. .fa-scanner-touchscreen:before {
  9673. content: "\f48a"; }
  9674. .fa-schlix:before {
  9675. content: "\f3ea"; }
  9676. .fa-scribd:before {
  9677. content: "\f28a"; }
  9678. .fa-scrubber:before {
  9679. content: "\f2f8"; }
  9680. .fa-search:before {
  9681. content: "\f002"; }
  9682. .fa-search-minus:before {
  9683. content: "\f010"; }
  9684. .fa-search-plus:before {
  9685. content: "\f00e"; }
  9686. .fa-searchengin:before {
  9687. content: "\f3eb"; }
  9688. .fa-sellcast:before {
  9689. content: "\f2da"; }
  9690. .fa-sellsy:before {
  9691. content: "\f213"; }
  9692. .fa-server:before {
  9693. content: "\f233"; }
  9694. .fa-servicestack:before {
  9695. content: "\f3ec"; }
  9696. .fa-share:before {
  9697. content: "\f064"; }
  9698. .fa-share-all:before {
  9699. content: "\f367"; }
  9700. .fa-share-alt:before {
  9701. content: "\f1e0"; }
  9702. .fa-share-alt-square:before {
  9703. content: "\f1e1"; }
  9704. .fa-share-square:before {
  9705. content: "\f14d"; }
  9706. .fa-shekel-sign:before {
  9707. content: "\f20b"; }
  9708. .fa-shield:before {
  9709. content: "\f132"; }
  9710. .fa-shield-alt:before {
  9711. content: "\f3ed"; }
  9712. .fa-shield-check:before {
  9713. content: "\f2f7"; }
  9714. .fa-ship:before {
  9715. content: "\f21a"; }
  9716. .fa-shipping-fast:before {
  9717. content: "\f48b"; }
  9718. .fa-shipping-timed:before {
  9719. content: "\f48c"; }
  9720. .fa-shirtsinbulk:before {
  9721. content: "\f214"; }
  9722. .fa-shopping-bag:before {
  9723. content: "\f290"; }
  9724. .fa-shopping-basket:before {
  9725. content: "\f291"; }
  9726. .fa-shopping-cart:before {
  9727. content: "\f07a"; }
  9728. .fa-shower:before {
  9729. content: "\f2cc"; }
  9730. .fa-shuttlecock:before {
  9731. content: "\f45b"; }
  9732. .fa-sign-in:before {
  9733. content: "\f090"; }
  9734. .fa-sign-in-alt:before {
  9735. content: "\f2f6"; }
  9736. .fa-sign-language:before {
  9737. content: "\f2a7"; }
  9738. .fa-sign-out:before {
  9739. content: "\f08b"; }
  9740. .fa-sign-out-alt:before {
  9741. content: "\f2f5"; }
  9742. .fa-signal:before {
  9743. content: "\f012"; }
  9744. .fa-simplybuilt:before {
  9745. content: "\f215"; }
  9746. .fa-sistrix:before {
  9747. content: "\f3ee"; }
  9748. .fa-sitemap:before {
  9749. content: "\f0e8"; }
  9750. .fa-skyatlas:before {
  9751. content: "\f216"; }
  9752. .fa-skype:before {
  9753. content: "\f17e"; }
  9754. .fa-slack:before {
  9755. content: "\f198"; }
  9756. .fa-slack-hash:before {
  9757. content: "\f3ef"; }
  9758. .fa-sliders-h:before {
  9759. content: "\f1de"; }
  9760. .fa-sliders-h-square:before {
  9761. content: "\f3f0"; }
  9762. .fa-sliders-v:before {
  9763. content: "\f3f1"; }
  9764. .fa-sliders-v-square:before {
  9765. content: "\f3f2"; }
  9766. .fa-slideshare:before {
  9767. content: "\f1e7"; }
  9768. .fa-smile:before {
  9769. content: "\f118"; }
  9770. .fa-smoking:before {
  9771. content: "\f48d"; }
  9772. .fa-snapchat:before {
  9773. content: "\f2ab"; }
  9774. .fa-snapchat-ghost:before {
  9775. content: "\f2ac"; }
  9776. .fa-snapchat-square:before {
  9777. content: "\f2ad"; }
  9778. .fa-snowflake:before {
  9779. content: "\f2dc"; }
  9780. .fa-sort:before {
  9781. content: "\f0dc"; }
  9782. .fa-sort-alpha-down:before {
  9783. content: "\f15d"; }
  9784. .fa-sort-alpha-up:before {
  9785. content: "\f15e"; }
  9786. .fa-sort-amount-down:before {
  9787. content: "\f160"; }
  9788. .fa-sort-amount-up:before {
  9789. content: "\f161"; }
  9790. .fa-sort-down:before {
  9791. content: "\f0dd"; }
  9792. .fa-sort-numeric-down:before {
  9793. content: "\f162"; }
  9794. .fa-sort-numeric-up:before {
  9795. content: "\f163"; }
  9796. .fa-sort-up:before {
  9797. content: "\f0de"; }
  9798. .fa-soundcloud:before {
  9799. content: "\f1be"; }
  9800. .fa-space-shuttle:before {
  9801. content: "\f197"; }
  9802. .fa-spade:before {
  9803. content: "\f2f4"; }
  9804. .fa-speakap:before {
  9805. content: "\f3f3"; }
  9806. .fa-spinner:before {
  9807. content: "\f110"; }
  9808. .fa-spinner-third:before {
  9809. content: "\f3f4"; }
  9810. .fa-spotify:before {
  9811. content: "\f1bc"; }
  9812. .fa-square:before {
  9813. content: "\f0c8"; }
  9814. .fa-square-full:before {
  9815. content: "\f45c"; }
  9816. .fa-stack-exchange:before {
  9817. content: "\f18d"; }
  9818. .fa-stack-overflow:before {
  9819. content: "\f16c"; }
  9820. .fa-star:before {
  9821. content: "\f005"; }
  9822. .fa-star-exclamation:before {
  9823. content: "\f2f3"; }
  9824. .fa-star-half:before {
  9825. content: "\f089"; }
  9826. .fa-staylinked:before {
  9827. content: "\f3f5"; }
  9828. .fa-steam:before {
  9829. content: "\f1b6"; }
  9830. .fa-steam-square:before {
  9831. content: "\f1b7"; }
  9832. .fa-steam-symbol:before {
  9833. content: "\f3f6"; }
  9834. .fa-step-backward:before {
  9835. content: "\f048"; }
  9836. .fa-step-forward:before {
  9837. content: "\f051"; }
  9838. .fa-stethoscope:before {
  9839. content: "\f0f1"; }
  9840. .fa-sticker-mule:before {
  9841. content: "\f3f7"; }
  9842. .fa-sticky-note:before {
  9843. content: "\f249"; }
  9844. .fa-stop:before {
  9845. content: "\f04d"; }
  9846. .fa-stop-circle:before {
  9847. content: "\f28d"; }
  9848. .fa-stopwatch:before {
  9849. content: "\f2f2"; }
  9850. .fa-strava:before {
  9851. content: "\f428"; }
  9852. .fa-street-view:before {
  9853. content: "\f21d"; }
  9854. .fa-strikethrough:before {
  9855. content: "\f0cc"; }
  9856. .fa-stripe:before {
  9857. content: "\f429"; }
  9858. .fa-stripe-s:before {
  9859. content: "\f42a"; }
  9860. .fa-studiovinari:before {
  9861. content: "\f3f8"; }
  9862. .fa-stumbleupon:before {
  9863. content: "\f1a4"; }
  9864. .fa-stumbleupon-circle:before {
  9865. content: "\f1a3"; }
  9866. .fa-subscript:before {
  9867. content: "\f12c"; }
  9868. .fa-subway:before {
  9869. content: "\f239"; }
  9870. .fa-suitcase:before {
  9871. content: "\f0f2"; }
  9872. .fa-sun:before {
  9873. content: "\f185"; }
  9874. .fa-superpowers:before {
  9875. content: "\f2dd"; }
  9876. .fa-superscript:before {
  9877. content: "\f12b"; }
  9878. .fa-supple:before {
  9879. content: "\f3f9"; }
  9880. .fa-sync:before {
  9881. content: "\f021"; }
  9882. .fa-sync-alt:before {
  9883. content: "\f2f1"; }
  9884. .fa-syringe:before {
  9885. content: "\f48e"; }
  9886. .fa-table:before {
  9887. content: "\f0ce"; }
  9888. .fa-table-tennis:before {
  9889. content: "\f45d"; }
  9890. .fa-tablet:before {
  9891. content: "\f10a"; }
  9892. .fa-tablet-alt:before {
  9893. content: "\f3fa"; }
  9894. .fa-tablet-android:before {
  9895. content: "\f3fb"; }
  9896. .fa-tablet-android-alt:before {
  9897. content: "\f3fc"; }
  9898. .fa-tablet-rugged:before {
  9899. content: "\f48f"; }
  9900. .fa-tablets:before {
  9901. content: "\f490"; }
  9902. .fa-tachometer:before {
  9903. content: "\f0e4"; }
  9904. .fa-tachometer-alt:before {
  9905. content: "\f3fd"; }
  9906. .fa-tag:before {
  9907. content: "\f02b"; }
  9908. .fa-tags:before {
  9909. content: "\f02c"; }
  9910. .fa-tasks:before {
  9911. content: "\f0ae"; }
  9912. .fa-taxi:before {
  9913. content: "\f1ba"; }
  9914. .fa-telegram:before {
  9915. content: "\f2c6"; }
  9916. .fa-telegram-plane:before {
  9917. content: "\f3fe"; }
  9918. .fa-tencent-weibo:before {
  9919. content: "\f1d5"; }
  9920. .fa-tennis-ball:before {
  9921. content: "\f45e"; }
  9922. .fa-terminal:before {
  9923. content: "\f120"; }
  9924. .fa-text-height:before {
  9925. content: "\f034"; }
  9926. .fa-text-width:before {
  9927. content: "\f035"; }
  9928. .fa-th:before {
  9929. content: "\f00a"; }
  9930. .fa-th-large:before {
  9931. content: "\f009"; }
  9932. .fa-th-list:before {
  9933. content: "\f00b"; }
  9934. .fa-themeisle:before {
  9935. content: "\f2b2"; }
  9936. .fa-thermometer:before {
  9937. content: "\f491"; }
  9938. .fa-thermometer-empty:before {
  9939. content: "\f2cb"; }
  9940. .fa-thermometer-full:before {
  9941. content: "\f2c7"; }
  9942. .fa-thermometer-half:before {
  9943. content: "\f2c9"; }
  9944. .fa-thermometer-quarter:before {
  9945. content: "\f2ca"; }
  9946. .fa-thermometer-three-quarters:before {
  9947. content: "\f2c8"; }
  9948. .fa-thumbs-down:before {
  9949. content: "\f165"; }
  9950. .fa-thumbs-up:before {
  9951. content: "\f164"; }
  9952. .fa-thumbtack:before {
  9953. content: "\f08d"; }
  9954. .fa-ticket:before {
  9955. content: "\f145"; }
  9956. .fa-ticket-alt:before {
  9957. content: "\f3ff"; }
  9958. .fa-times:before {
  9959. content: "\f00d"; }
  9960. .fa-times-circle:before {
  9961. content: "\f057"; }
  9962. .fa-times-hexagon:before {
  9963. content: "\f2ee"; }
  9964. .fa-times-octagon:before {
  9965. content: "\f2f0"; }
  9966. .fa-times-square:before {
  9967. content: "\f2d3"; }
  9968. .fa-tint:before {
  9969. content: "\f043"; }
  9970. .fa-toggle-off:before {
  9971. content: "\f204"; }
  9972. .fa-toggle-on:before {
  9973. content: "\f205"; }
  9974. .fa-trademark:before {
  9975. content: "\f25c"; }
  9976. .fa-train:before {
  9977. content: "\f238"; }
  9978. .fa-transgender:before {
  9979. content: "\f224"; }
  9980. .fa-transgender-alt:before {
  9981. content: "\f225"; }
  9982. .fa-trash:before {
  9983. content: "\f1f8"; }
  9984. .fa-trash-alt:before {
  9985. content: "\f2ed"; }
  9986. .fa-tree:before {
  9987. content: "\f1bb"; }
  9988. .fa-tree-alt:before {
  9989. content: "\f400"; }
  9990. .fa-trello:before {
  9991. content: "\f181"; }
  9992. .fa-triangle:before {
  9993. content: "\f2ec"; }
  9994. .fa-tripadvisor:before {
  9995. content: "\f262"; }
  9996. .fa-trophy:before {
  9997. content: "\f091"; }
  9998. .fa-trophy-alt:before {
  9999. content: "\f2eb"; }
  10000. .fa-truck:before {
  10001. content: "\f0d1"; }
  10002. .fa-tty:before {
  10003. content: "\f1e4"; }
  10004. .fa-tumblr:before {
  10005. content: "\f173"; }
  10006. .fa-tumblr-square:before {
  10007. content: "\f174"; }
  10008. .fa-tv:before {
  10009. content: "\f26c"; }
  10010. .fa-tv-retro:before {
  10011. content: "\f401"; }
  10012. .fa-twitch:before {
  10013. content: "\f1e8"; }
  10014. .fa-twitter:before {
  10015. content: "\f099"; }
  10016. .fa-twitter-square:before {
  10017. content: "\f081"; }
  10018. .fa-typo3:before {
  10019. content: "\f42b"; }
  10020. .fa-uber:before {
  10021. content: "\f402"; }
  10022. .fa-uikit:before {
  10023. content: "\f403"; }
  10024. .fa-umbrella:before {
  10025. content: "\f0e9"; }
  10026. .fa-underline:before {
  10027. content: "\f0cd"; }
  10028. .fa-undo:before {
  10029. content: "\f0e2"; }
  10030. .fa-undo-alt:before {
  10031. content: "\f2ea"; }
  10032. .fa-uniregistry:before {
  10033. content: "\f404"; }
  10034. .fa-universal-access:before {
  10035. content: "\f29a"; }
  10036. .fa-university:before {
  10037. content: "\f19c"; }
  10038. .fa-unlink:before {
  10039. content: "\f127"; }
  10040. .fa-unlock:before {
  10041. content: "\f09c"; }
  10042. .fa-unlock-alt:before {
  10043. content: "\f13e"; }
  10044. .fa-untappd:before {
  10045. content: "\f405"; }
  10046. .fa-upload:before {
  10047. content: "\f093"; }
  10048. .fa-usb:before {
  10049. content: "\f287"; }
  10050. .fa-usd-circle:before {
  10051. content: "\f2e8"; }
  10052. .fa-usd-square:before {
  10053. content: "\f2e9"; }
  10054. .fa-user:before {
  10055. content: "\f007"; }
  10056. .fa-user-alt:before {
  10057. content: "\f406"; }
  10058. .fa-user-circle:before {
  10059. content: "\f2bd"; }
  10060. .fa-user-md:before {
  10061. content: "\f0f0"; }
  10062. .fa-user-plus:before {
  10063. content: "\f234"; }
  10064. .fa-user-secret:before {
  10065. content: "\f21b"; }
  10066. .fa-user-times:before {
  10067. content: "\f235"; }
  10068. .fa-users:before {
  10069. content: "\f0c0"; }
  10070. .fa-ussunnah:before {
  10071. content: "\f407"; }
  10072. .fa-utensil-fork:before {
  10073. content: "\f2e3"; }
  10074. .fa-utensil-knife:before {
  10075. content: "\f2e4"; }
  10076. .fa-utensil-spoon:before {
  10077. content: "\f2e5"; }
  10078. .fa-utensils:before {
  10079. content: "\f2e7"; }
  10080. .fa-utensils-alt:before {
  10081. content: "\f2e6"; }
  10082. .fa-vaadin:before {
  10083. content: "\f408"; }
  10084. .fa-venus:before {
  10085. content: "\f221"; }
  10086. .fa-venus-double:before {
  10087. content: "\f226"; }
  10088. .fa-venus-mars:before {
  10089. content: "\f228"; }
  10090. .fa-viacoin:before {
  10091. content: "\f237"; }
  10092. .fa-viadeo:before {
  10093. content: "\f2a9"; }
  10094. .fa-viadeo-square:before {
  10095. content: "\f2aa"; }
  10096. .fa-vial:before {
  10097. content: "\f492"; }
  10098. .fa-vials:before {
  10099. content: "\f493"; }
  10100. .fa-viber:before {
  10101. content: "\f409"; }
  10102. .fa-video:before {
  10103. content: "\f03d"; }
  10104. .fa-vimeo:before {
  10105. content: "\f40a"; }
  10106. .fa-vimeo-square:before {
  10107. content: "\f194"; }
  10108. .fa-vimeo-v:before {
  10109. content: "\f27d"; }
  10110. .fa-vine:before {
  10111. content: "\f1ca"; }
  10112. .fa-vk:before {
  10113. content: "\f189"; }
  10114. .fa-vnv:before {
  10115. content: "\f40b"; }
  10116. .fa-volleyball-ball:before {
  10117. content: "\f45f"; }
  10118. .fa-volume-down:before {
  10119. content: "\f027"; }
  10120. .fa-volume-mute:before {
  10121. content: "\f2e2"; }
  10122. .fa-volume-off:before {
  10123. content: "\f026"; }
  10124. .fa-volume-up:before {
  10125. content: "\f028"; }
  10126. .fa-vuejs:before {
  10127. content: "\f41f"; }
  10128. .fa-warehouse:before {
  10129. content: "\f494"; }
  10130. .fa-warehouse-alt:before {
  10131. content: "\f495"; }
  10132. .fa-watch:before {
  10133. content: "\f2e1"; }
  10134. .fa-weibo:before {
  10135. content: "\f18a"; }
  10136. .fa-weight:before {
  10137. content: "\f496"; }
  10138. .fa-weixin:before {
  10139. content: "\f1d7"; }
  10140. .fa-whatsapp:before {
  10141. content: "\f232"; }
  10142. .fa-whatsapp-square:before {
  10143. content: "\f40c"; }
  10144. .fa-wheelchair:before {
  10145. content: "\f193"; }
  10146. .fa-whistle:before {
  10147. content: "\f460"; }
  10148. .fa-whmcs:before {
  10149. content: "\f40d"; }
  10150. .fa-wifi:before {
  10151. content: "\f1eb"; }
  10152. .fa-wikipedia-w:before {
  10153. content: "\f266"; }
  10154. .fa-window:before {
  10155. content: "\f40e"; }
  10156. .fa-window-alt:before {
  10157. content: "\f40f"; }
  10158. .fa-window-close:before {
  10159. content: "\f410"; }
  10160. .fa-window-maximize:before {
  10161. content: "\f2d0"; }
  10162. .fa-window-minimize:before {
  10163. content: "\f2d1"; }
  10164. .fa-window-restore:before {
  10165. content: "\f2d2"; }
  10166. .fa-windows:before {
  10167. content: "\f17a"; }
  10168. .fa-won-sign:before {
  10169. content: "\f159"; }
  10170. .fa-wordpress:before {
  10171. content: "\f19a"; }
  10172. .fa-wordpress-simple:before {
  10173. content: "\f411"; }
  10174. .fa-wpbeginner:before {
  10175. content: "\f297"; }
  10176. .fa-wpexplorer:before {
  10177. content: "\f2de"; }
  10178. .fa-wpforms:before {
  10179. content: "\f298"; }
  10180. .fa-wrench:before {
  10181. content: "\f0ad"; }
  10182. .fa-x-ray:before {
  10183. content: "\f497"; }
  10184. .fa-xbox:before {
  10185. content: "\f412"; }
  10186. .fa-xing:before {
  10187. content: "\f168"; }
  10188. .fa-xing-square:before {
  10189. content: "\f169"; }
  10190. .fa-y-combinator:before {
  10191. content: "\f23b"; }
  10192. .fa-yahoo:before {
  10193. content: "\f19e"; }
  10194. .fa-yandex:before {
  10195. content: "\f413"; }
  10196. .fa-yandex-international:before {
  10197. content: "\f414"; }
  10198. .fa-yelp:before {
  10199. content: "\f1e9"; }
  10200. .fa-yen-sign:before {
  10201. content: "\f157"; }
  10202. .fa-yoast:before {
  10203. content: "\f2b1"; }
  10204. .fa-youtube:before {
  10205. content: "\f167"; }
  10206. .fa-youtube-square:before {
  10207. content: "\f431"; }
  10208. .sr-only {
  10209. border: 0;
  10210. clip: rect(0, 0, 0, 0);
  10211. height: 1px;
  10212. margin: -1px;
  10213. overflow: hidden;
  10214. padding: 0;
  10215. position: absolute;
  10216. width: 1px; }
  10217. .sr-only-focusable:active, .sr-only-focusable:focus {
  10218. clip: auto;
  10219. height: auto;
  10220. margin: 0;
  10221. overflow: visible;
  10222. position: static;
  10223. width: auto; }
  10224. /*!
  10225. * Font Awesome Pro 5.0.7 by @fontawesome - https://fontawesome.com
  10226. * License - https://fontawesome.com/license (Commercial License)
  10227. */
  10228. @font-face {
  10229. font-family: 'Font Awesome 5 Pro';
  10230. font-style: normal;
  10231. font-weight: 300;
  10232. src: url("../webfonts/fa-light-300.eot");
  10233. src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg"); }
  10234. .fal {
  10235. font-family: 'Font Awesome 5 Pro';
  10236. font-weight: 300; }
  10237. /*!
  10238. * WebApp Icons
  10239. */
  10240. @font-face {
  10241. font-family: 'nextgen-icons';
  10242. src: url("../webfonts/nextgen-icons.eot");
  10243. src: url("../webfonts/nextgen-icons.eot?#iefix") format("embedded-opentype"), url("../webfonts/nextgen-icons.woff2") format("woff2"), url("../webfonts/webfonts/nextgen-icons.woff") format("woff"), url("../webfonts/webfonts/nextgen-icons.ttf") format("truetype"), url("../webfonts/webfonts/nextgen-icons.svg#nextgen-icons") format("svg");
  10244. font-weight: normal;
  10245. font-style: normal; }
  10246. /* Use the following CSS code if you want to have a class per icon */
  10247. .ni,
  10248. [data-icon]:before,
  10249. [class^="base-"],
  10250. [class*=" base-"] {
  10251. font-family: 'nextgen-icons';
  10252. -moz-osx-font-smoothing: grayscale;
  10253. -webkit-font-smoothing: antialiased;
  10254. display: inline-block;
  10255. font-style: normal;
  10256. font-variant: normal;
  10257. text-rendering: auto;
  10258. line-height: 1; }
  10259. /* why?
  10260. .page-content {
  10261. .ni:before,
  10262. [data-icon]:before {
  10263. vertical-align: -8%;
  10264. }
  10265. }*/
  10266. .navbar-toggler .ni:before,
  10267. .navbar-toggler [data-icon]:before {
  10268. vertical-align: inherit !important; }
  10269. .base-19:before {
  10270. content: "\e09b"; }
  10271. .base-18:before {
  10272. content: "\e09c"; }
  10273. .base-17:before {
  10274. content: "\e09d"; }
  10275. .base-16:before {
  10276. content: "\e09e"; }
  10277. .base-15:before {
  10278. content: "\e09f"; }
  10279. .base-14:before {
  10280. content: "\e0a0"; }
  10281. .base-13:before {
  10282. content: "\e0a1"; }
  10283. .base-12:before {
  10284. content: "\f000"; }
  10285. .base-11:before {
  10286. content: "\f00b"; }
  10287. .base-10:before {
  10288. content: "\f00a"; }
  10289. .base-9:before {
  10290. content: "\f1c8"; }
  10291. .base-8:before {
  10292. content: "\f1e3"; }
  10293. .base-7:before {
  10294. content: "\f413"; }
  10295. .base-6:before {
  10296. content: "\f412"; }
  10297. .base-5:before {
  10298. content: "\f411"; }
  10299. .base-4:before {
  10300. content: "\f410"; }
  10301. .base-3:before {
  10302. content: "\f409"; }
  10303. .base-2:before {
  10304. content: "\f408"; }
  10305. .base-1:before {
  10306. content: "\f405"; }
  10307. .md-profile:before {
  10308. content: "\f407"; }
  10309. .md-picframe:before {
  10310. content: "\f406"; }
  10311. .ni-phone:before {
  10312. content: "\f402"; }
  10313. .ni-calendar-fine:before {
  10314. content: "\f403"; }
  10315. .ni-blog-read:before {
  10316. content: "\f404"; }
  10317. .ni-my-apps:before {
  10318. content: "\f328"; }
  10319. .ni-big-plus:before {
  10320. content: "\f276"; }
  10321. .ni-minify-nav:before {
  10322. content: "\f254"; }
  10323. .ni-lock-nav:before {
  10324. content: "\f2ae"; }
  10325. .ni-chevron-down:before {
  10326. content: "\f2f9"; }
  10327. .ni-chevron-up:before {
  10328. content: "\f2fc"; }
  10329. .ni-chevron-left:before {
  10330. content: "\f2fa"; }
  10331. .ni-chevron-right:before {
  10332. content: "\f2fb"; }
  10333. .ni-menu:before {
  10334. content: "\e000"; }
  10335. .ni-user-follow:before {
  10336. content: "\e002"; }
  10337. .ni-user-following:before {
  10338. content: "\e003"; }
  10339. .ni-user-unfollow:before {
  10340. content: "\e004"; }
  10341. .ni-trophy:before {
  10342. content: "\e006"; }
  10343. .ni-screen-smartphone:before {
  10344. content: "\e010"; }
  10345. .ni-screen-desktop:before {
  10346. content: "\e011"; }
  10347. .ni-plane:before {
  10348. content: "\e012"; }
  10349. .ni-notebook:before {
  10350. content: "\e013"; }
  10351. .ni-moustache:before {
  10352. content: "\e014"; }
  10353. .ni-mouse:before {
  10354. content: "\e015"; }
  10355. .ni-magnet:before {
  10356. content: "\e016"; }
  10357. .ni-energy:before {
  10358. content: "\e020"; }
  10359. .ni-emoticon-smile:before {
  10360. content: "\e021"; }
  10361. .ni-disc:before {
  10362. content: "\e022"; }
  10363. .ni-cursor-move:before {
  10364. content: "\e023"; }
  10365. .ni-crop:before {
  10366. content: "\e024"; }
  10367. .ni-credit-card:before {
  10368. content: "\e025"; }
  10369. .ni-chemistry:before {
  10370. content: "\e026"; }
  10371. .ni-user:before {
  10372. content: "\e005"; }
  10373. .ni-speedometer:before {
  10374. content: "\e007"; }
  10375. .ni-social-youtube:before {
  10376. content: "\e008"; }
  10377. .ni-social-twitter:before {
  10378. content: "\e009"; }
  10379. .ni-social-tumblr:before {
  10380. content: "\e00a"; }
  10381. .ni-social-facebook:before {
  10382. content: "\e00b"; }
  10383. .ni-social-dropbox:before {
  10384. content: "\e00c"; }
  10385. .ni-social-dribbble:before {
  10386. content: "\e00d"; }
  10387. .ni-shield:before {
  10388. content: "\e00e"; }
  10389. .ni-screen-tablet:before {
  10390. content: "\e00f"; }
  10391. .ni-magic-wand:before {
  10392. content: "\e017"; }
  10393. .ni-hourglass:before {
  10394. content: "\e018"; }
  10395. .ni-graduation:before {
  10396. content: "\e019"; }
  10397. .ni-ghost:before {
  10398. content: "\e01a"; }
  10399. .ni-game-controller:before {
  10400. content: "\e01b"; }
  10401. .ni-fire:before {
  10402. content: "\e01c"; }
  10403. .ni-eyeglasses:before {
  10404. content: "\e01d"; }
  10405. .ni-envelope-open:before {
  10406. content: "\e01e"; }
  10407. .ni-envelope-letter:before {
  10408. content: "\e01f"; }
  10409. .ni-bell:before {
  10410. content: "\e027"; }
  10411. .ni-badge:before {
  10412. content: "\e028"; }
  10413. .ni-anchor:before {
  10414. content: "\e029"; }
  10415. .ni-wallet:before {
  10416. content: "\e02a"; }
  10417. .ni-vector:before {
  10418. content: "\e02b"; }
  10419. .ni-speech:before {
  10420. content: "\e02c"; }
  10421. .ni-puzzle:before {
  10422. content: "\e02d"; }
  10423. .ni-printer:before {
  10424. content: "\e02e"; }
  10425. .ni-present:before {
  10426. content: "\e02f"; }
  10427. .ni-playlist:before {
  10428. content: "\e030"; }
  10429. .ni-pin:before {
  10430. content: "\e031"; }
  10431. .ni-picture:before {
  10432. content: "\e032"; }
  10433. .ni-map:before {
  10434. content: "\e033"; }
  10435. .ni-layers:before {
  10436. content: "\e034"; }
  10437. .ni-handbag:before {
  10438. content: "\e035"; }
  10439. .ni-globe-alt:before {
  10440. content: "\e036"; }
  10441. .ni-globe:before {
  10442. content: "\e037"; }
  10443. .ni-frame:before {
  10444. content: "\e038"; }
  10445. .ni-folder-alt:before {
  10446. content: "\e039"; }
  10447. .ni-film:before {
  10448. content: "\e03a"; }
  10449. .ni-feed:before {
  10450. content: "\e03b"; }
  10451. .ni-earphones-alt:before {
  10452. content: "\e03c"; }
  10453. .ni-earphones:before {
  10454. content: "\e03d"; }
  10455. .ni-drop:before {
  10456. content: "\e03e"; }
  10457. .ni-drawer:before {
  10458. content: "\e03f"; }
  10459. .ni-docs:before {
  10460. content: "\e040"; }
  10461. .ni-directions:before {
  10462. content: "\e041"; }
  10463. .ni-direction:before {
  10464. content: "\e042"; }
  10465. .ni-diamond:before {
  10466. content: "\e043"; }
  10467. .ni-cup:before {
  10468. content: "\e044"; }
  10469. .ni-compass:before {
  10470. content: "\e045"; }
  10471. .ni-call-out:before {
  10472. content: "\e046"; }
  10473. .ni-call-in:before {
  10474. content: "\e047"; }
  10475. .ni-call-end:before {
  10476. content: "\e048"; }
  10477. .ni-calculator:before {
  10478. content: "\e049"; }
  10479. .ni-bubbles:before {
  10480. content: "\e04a"; }
  10481. .ni-briefcase:before {
  10482. content: "\e04b"; }
  10483. .ni-book-open:before {
  10484. content: "\e04c"; }
  10485. .ni-basket-loaded:before {
  10486. content: "\e04d"; }
  10487. .ni-basket:before {
  10488. content: "\e04e"; }
  10489. .ni-bag:before {
  10490. content: "\e04f"; }
  10491. .ni-action-undo:before {
  10492. content: "\e050"; }
  10493. .ni-action-redo:before {
  10494. content: "\e051"; }
  10495. .ni-wrench:before {
  10496. content: "\e052"; }
  10497. .ni-umbrella:before {
  10498. content: "\e053"; }
  10499. .ni-trash:before {
  10500. content: "\e054"; }
  10501. .ni-tag:before {
  10502. content: "\e055"; }
  10503. .ni-support:before {
  10504. content: "\e056"; }
  10505. .ni-size-fullscreen:before {
  10506. content: "\e057"; }
  10507. .ni-size-actual:before {
  10508. content: "\e058"; }
  10509. .ni-shuffle:before {
  10510. content: "\e059"; }
  10511. .ni-share-alt:before {
  10512. content: "\e05a"; }
  10513. .ni-share:before {
  10514. content: "\e05b"; }
  10515. .ni-rocket:before {
  10516. content: "\e05c"; }
  10517. .ni-question:before {
  10518. content: "\e05d"; }
  10519. .ni-pie-chart:before {
  10520. content: "\e05e"; }
  10521. .ni-pencil:before {
  10522. content: "\e05f"; }
  10523. .ni-note:before {
  10524. content: "\e060"; }
  10525. .ni-music-tone-alt:before {
  10526. content: "\e061"; }
  10527. .ni-music-tone:before {
  10528. content: "\e062"; }
  10529. .ni-microphone:before {
  10530. content: "\e063"; }
  10531. .ni-loop:before {
  10532. content: "\e064"; }
  10533. .ni-logout:before {
  10534. content: "\e065"; }
  10535. .ni-login:before {
  10536. content: "\e066"; }
  10537. .ni-list:before {
  10538. content: "\e067"; }
  10539. .ni-like:before {
  10540. content: "\e068"; }
  10541. .ni-home:before {
  10542. content: "\e069"; }
  10543. .ni-grid:before {
  10544. content: "\e06a"; }
  10545. .ni-graph:before {
  10546. content: "\e06b"; }
  10547. .ni-equalizer:before {
  10548. content: "\e06c"; }
  10549. .ni-dislike:before {
  10550. content: "\e06d"; }
  10551. .ni-cursor:before {
  10552. content: "\e06e"; }
  10553. .ni-control-start:before {
  10554. content: "\e06f"; }
  10555. .ni-control-rewind:before {
  10556. content: "\e070"; }
  10557. .ni-control-play:before {
  10558. content: "\e071"; }
  10559. .ni-control-pause:before {
  10560. content: "\e072"; }
  10561. .ni-control-forward:before {
  10562. content: "\e073"; }
  10563. .ni-control-end:before {
  10564. content: "\e074"; }
  10565. .ni-calendar:before {
  10566. content: "\e075"; }
  10567. .ni-bulb:before {
  10568. content: "\e076"; }
  10569. .ni-bar-chart:before {
  10570. content: "\e077"; }
  10571. .ni-arrow-up:before {
  10572. content: "\e078"; }
  10573. .ni-arrow-right:before {
  10574. content: "\e079"; }
  10575. .ni-arrow-left:before {
  10576. content: "\e07a"; }
  10577. .ni-arrow-down:before {
  10578. content: "\e07b"; }
  10579. .ni-ban:before {
  10580. content: "\e07c"; }
  10581. .ni-bubble:before {
  10582. content: "\e07d"; }
  10583. .ni-camcorder:before {
  10584. content: "\e07e"; }
  10585. .ni-camera:before {
  10586. content: "\e07f"; }
  10587. .ni-check:before {
  10588. content: "\e080"; }
  10589. .ni-clock:before {
  10590. content: "\e081"; }
  10591. .ni-close:before {
  10592. content: "\e082"; }
  10593. .ni-cloud-download:before {
  10594. content: "\e083"; }
  10595. .ni-cloud-upload:before {
  10596. content: "\e084"; }
  10597. .ni-doc:before {
  10598. content: "\e085"; }
  10599. .ni-envelope:before {
  10600. content: "\e086"; }
  10601. .ni-eye:before {
  10602. content: "\e087"; }
  10603. .ni-flag:before {
  10604. content: "\e088"; }
  10605. .ni-folder:before {
  10606. content: "\e089"; }
  10607. .ni-heart:before {
  10608. content: "\e08a"; }
  10609. .ni-info:before {
  10610. content: "\e08b"; }
  10611. .ni-key:before {
  10612. content: "\e08c"; }
  10613. .ni-link:before {
  10614. content: "\e08d"; }
  10615. .ni-lock:before {
  10616. content: "\e08e"; }
  10617. .ni-lock-open:before {
  10618. content: "\e08f"; }
  10619. .ni-magnifier:before {
  10620. content: "\e090"; }
  10621. .ni-magnifier-add:before {
  10622. content: "\e091"; }
  10623. .ni-magnifier-remove:before {
  10624. content: "\e092"; }
  10625. .ni-paper-clip:before {
  10626. content: "\e093"; }
  10627. .ni-paper-plane:before {
  10628. content: "\e094"; }
  10629. .ni-plus:before {
  10630. content: "\e095"; }
  10631. .ni-pointer:before {
  10632. content: "\e096"; }
  10633. .ni-power:before {
  10634. content: "\e097"; }
  10635. .ni-refresh:before {
  10636. content: "\e098"; }
  10637. .ni-reload:before {
  10638. content: "\e099"; }
  10639. .ni-settings:before {
  10640. content: "\e09a"; }
  10641. .ni-users:before {
  10642. content: "\e001"; }