mdb.css 316 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616
  1. @charset "UTF-8";
  2. /*!
  3. * Material Design for Bootstrap 4
  4. * Version: MDB FREE 4.12.0
  5. *
  6. *
  7. * Copyright: Material Design for Bootstrap
  8. * https://mdbootstrap.com/
  9. *
  10. * Read the license: https://mdbootstrap.com/general/license/
  11. *
  12. *
  13. * Documentation: https://mdbootstrap.com/
  14. *
  15. * Getting started: https://mdbootstrap.com/docs/jquery/getting-started/download/
  16. *
  17. * Tutorials: https://mdbootstrap.com/education/bootstrap/
  18. *
  19. * Templates: https://mdbootstrap.com/templates/
  20. *
  21. * Support: https://mdbootstrap.com/support/
  22. *
  23. * Contact: office@mdbootstrap.com
  24. *
  25. * Attribution: Animate CSS, Twitter Bootstrap, Materialize CSS, Normalize CSS, Waves JS, WOW JS, Toastr, Chart.js
  26. */
  27. .mdb-color.lighten-5 {
  28. background-color: #d0d6e2 !important
  29. }
  30. .mdb-color.lighten-4 {
  31. background-color: #b1bace !important
  32. }
  33. .mdb-color.lighten-3 {
  34. background-color: #929fba !important
  35. }
  36. .mdb-color.lighten-2 {
  37. background-color: #7283a7 !important
  38. }
  39. .mdb-color.lighten-1 {
  40. background-color: #59698d !important
  41. }
  42. .mdb-color {
  43. background-color: #45526e !important
  44. }
  45. .mdb-color-text {
  46. color: #45526e !important
  47. }
  48. .rgba-mdb-color-slight,
  49. .rgba-mdb-color-slight:after {
  50. background-color: rgba(69, 82, 110, 0.1)
  51. }
  52. .rgba-mdb-color-light,
  53. .rgba-mdb-color-light:after {
  54. background-color: rgba(69, 82, 110, 0.3)
  55. }
  56. .rgba-mdb-color-strong,
  57. .rgba-mdb-color-strong:after {
  58. background-color: rgba(69, 82, 110, 0.7)
  59. }
  60. .mdb-color.darken-1 {
  61. background-color: #3b465e !important
  62. }
  63. .mdb-color.darken-2 {
  64. background-color: #2e3951 !important
  65. }
  66. .mdb-color.darken-3 {
  67. background-color: #1c2a48 !important
  68. }
  69. .mdb-color.darken-4 {
  70. background-color: #1c2331 !important
  71. }
  72. .red.lighten-5 {
  73. background-color: #ffebee !important
  74. }
  75. .red.lighten-4 {
  76. background-color: #ffcdd2 !important
  77. }
  78. .red.lighten-3 {
  79. background-color: #ef9a9a !important
  80. }
  81. .red.lighten-2 {
  82. background-color: #e57373 !important
  83. }
  84. .red.lighten-1 {
  85. background-color: #ef5350 !important
  86. }
  87. .red {
  88. background-color: #f44336 !important
  89. }
  90. .red-text {
  91. color: #f44336 !important
  92. }
  93. .rgba-red-slight,
  94. .rgba-red-slight:after {
  95. background-color: rgba(244, 67, 54, 0.1)
  96. }
  97. .rgba-red-light,
  98. .rgba-red-light:after {
  99. background-color: rgba(244, 67, 54, 0.3)
  100. }
  101. .rgba-red-strong,
  102. .rgba-red-strong:after {
  103. background-color: rgba(244, 67, 54, 0.7)
  104. }
  105. .red.darken-1 {
  106. background-color: #e53935 !important
  107. }
  108. .red.darken-2 {
  109. background-color: #d32f2f !important
  110. }
  111. .red.darken-3 {
  112. background-color: #c62828 !important
  113. }
  114. .red.darken-4 {
  115. background-color: #b71c1c !important
  116. }
  117. .red.accent-1 {
  118. background-color: #ff8a80 !important
  119. }
  120. .red.accent-2 {
  121. background-color: #ff5252 !important
  122. }
  123. .red.accent-3 {
  124. background-color: #ff1744 !important
  125. }
  126. .red.accent-4 {
  127. background-color: #d50000 !important
  128. }
  129. .pink.lighten-5 {
  130. background-color: #fce4ec !important
  131. }
  132. .pink.lighten-4 {
  133. background-color: #f8bbd0 !important
  134. }
  135. .pink.lighten-3 {
  136. background-color: #f48fb1 !important
  137. }
  138. .pink.lighten-2 {
  139. background-color: #f06292 !important
  140. }
  141. .pink.lighten-1 {
  142. background-color: #ec407a !important
  143. }
  144. .pink {
  145. background-color: #e91e63 !important
  146. }
  147. .pink-text {
  148. color: #e91e63 !important
  149. }
  150. .rgba-pink-slight,
  151. .rgba-pink-slight:after {
  152. background-color: rgba(233, 30, 99, 0.1)
  153. }
  154. .rgba-pink-light,
  155. .rgba-pink-light:after {
  156. background-color: rgba(233, 30, 99, 0.3)
  157. }
  158. .rgba-pink-strong,
  159. .rgba-pink-strong:after {
  160. background-color: rgba(233, 30, 99, 0.7)
  161. }
  162. .pink.darken-1 {
  163. background-color: #d81b60 !important
  164. }
  165. .pink.darken-2 {
  166. background-color: #c2185b !important
  167. }
  168. .pink.darken-3 {
  169. background-color: #ad1457 !important
  170. }
  171. .pink.darken-4 {
  172. background-color: #880e4f !important
  173. }
  174. .pink.accent-1 {
  175. background-color: #ff80ab !important
  176. }
  177. .pink.accent-2 {
  178. background-color: #ff4081 !important
  179. }
  180. .pink.accent-3 {
  181. background-color: #f50057 !important
  182. }
  183. .pink.accent-4 {
  184. background-color: #c51162 !important
  185. }
  186. .purple.lighten-5 {
  187. background-color: #f3e5f5 !important
  188. }
  189. .purple.lighten-4 {
  190. background-color: #e1bee7 !important
  191. }
  192. .purple.lighten-3 {
  193. background-color: #ce93d8 !important
  194. }
  195. .purple.lighten-2 {
  196. background-color: #ba68c8 !important
  197. }
  198. .purple.lighten-1 {
  199. background-color: #ab47bc !important
  200. }
  201. .purple {
  202. background-color: #9c27b0 !important
  203. }
  204. .purple-text {
  205. color: #9c27b0 !important
  206. }
  207. .rgba-purple-slight,
  208. .rgba-purple-slight:after {
  209. background-color: rgba(156, 39, 176, 0.1)
  210. }
  211. .rgba-purple-light,
  212. .rgba-purple-light:after {
  213. background-color: rgba(156, 39, 176, 0.3)
  214. }
  215. .rgba-purple-strong,
  216. .rgba-purple-strong:after {
  217. background-color: rgba(156, 39, 176, 0.7)
  218. }
  219. .purple.darken-1 {
  220. background-color: #8e24aa !important
  221. }
  222. .purple.darken-2 {
  223. background-color: #7b1fa2 !important
  224. }
  225. .purple.darken-3 {
  226. background-color: #6a1b9a !important
  227. }
  228. .purple.darken-4 {
  229. background-color: #4a148c !important
  230. }
  231. .purple.accent-1 {
  232. background-color: #ea80fc !important
  233. }
  234. .purple.accent-2 {
  235. background-color: #e040fb !important
  236. }
  237. .purple.accent-3 {
  238. background-color: #d500f9 !important
  239. }
  240. .purple.accent-4 {
  241. background-color: #a0f !important
  242. }
  243. .deep-purple.lighten-5 {
  244. background-color: #ede7f6 !important
  245. }
  246. .deep-purple.lighten-4 {
  247. background-color: #d1c4e9 !important
  248. }
  249. .deep-purple.lighten-3 {
  250. background-color: #b39ddb !important
  251. }
  252. .deep-purple.lighten-2 {
  253. background-color: #9575cd !important
  254. }
  255. .deep-purple.lighten-1 {
  256. background-color: #7e57c2 !important
  257. }
  258. .deep-purple {
  259. background-color: #673ab7 !important
  260. }
  261. .deep-purple-text {
  262. color: #673ab7 !important
  263. }
  264. .rgba-deep-purple-slight,
  265. .rgba-deep-purple-slight:after {
  266. background-color: rgba(103, 58, 183, 0.1)
  267. }
  268. .rgba-deep-purple-light,
  269. .rgba-deep-purple-light:after {
  270. background-color: rgba(103, 58, 183, 0.3)
  271. }
  272. .rgba-deep-purple-strong,
  273. .rgba-deep-purple-strong:after {
  274. background-color: rgba(103, 58, 183, 0.7)
  275. }
  276. .deep-purple.darken-1 {
  277. background-color: #5e35b1 !important
  278. }
  279. .deep-purple.darken-2 {
  280. background-color: #512da8 !important
  281. }
  282. .deep-purple.darken-3 {
  283. background-color: #4527a0 !important
  284. }
  285. .deep-purple.darken-4 {
  286. background-color: #311b92 !important
  287. }
  288. .deep-purple.accent-1 {
  289. background-color: #b388ff !important
  290. }
  291. .deep-purple.accent-2 {
  292. background-color: #7c4dff !important
  293. }
  294. .deep-purple.accent-3 {
  295. background-color: #651fff !important
  296. }
  297. .deep-purple.accent-4 {
  298. background-color: #6200ea !important
  299. }
  300. .indigo.lighten-5 {
  301. background-color: #e8eaf6 !important
  302. }
  303. .indigo.lighten-4 {
  304. background-color: #c5cae9 !important
  305. }
  306. .indigo.lighten-3 {
  307. background-color: #9fa8da !important
  308. }
  309. .indigo.lighten-2 {
  310. background-color: #7986cb !important
  311. }
  312. .indigo.lighten-1 {
  313. background-color: #5c6bc0 !important
  314. }
  315. .indigo {
  316. background-color: #3f51b5 !important
  317. }
  318. .indigo-text {
  319. color: #3f51b5 !important
  320. }
  321. .rgba-indigo-slight,
  322. .rgba-indigo-slight:after {
  323. background-color: rgba(63, 81, 181, 0.1)
  324. }
  325. .rgba-indigo-light,
  326. .rgba-indigo-light:after {
  327. background-color: rgba(63, 81, 181, 0.3)
  328. }
  329. .rgba-indigo-strong,
  330. .rgba-indigo-strong:after {
  331. background-color: rgba(63, 81, 181, 0.7)
  332. }
  333. .indigo.darken-1 {
  334. background-color: #3949ab !important
  335. }
  336. .indigo.darken-2 {
  337. background-color: #303f9f !important
  338. }
  339. .indigo.darken-3 {
  340. background-color: #283593 !important
  341. }
  342. .indigo.darken-4 {
  343. background-color: #1a237e !important
  344. }
  345. .indigo.accent-1 {
  346. background-color: #8c9eff !important
  347. }
  348. .indigo.accent-2 {
  349. background-color: #536dfe !important
  350. }
  351. .indigo.accent-3 {
  352. background-color: #3d5afe !important
  353. }
  354. .indigo.accent-4 {
  355. background-color: #304ffe !important
  356. }
  357. .blue.lighten-5 {
  358. background-color: #e3f2fd !important
  359. }
  360. .blue.lighten-4 {
  361. background-color: #bbdefb !important
  362. }
  363. .blue.lighten-3 {
  364. background-color: #90caf9 !important
  365. }
  366. .blue.lighten-2 {
  367. background-color: #64b5f6 !important
  368. }
  369. .blue.lighten-1 {
  370. background-color: #42a5f5 !important
  371. }
  372. .blue {
  373. background-color: #2196f3 !important
  374. }
  375. .blue-text {
  376. color: #2196f3 !important
  377. }
  378. .rgba-blue-slight,
  379. .rgba-blue-slight:after {
  380. background-color: rgba(33, 150, 243, 0.1)
  381. }
  382. .rgba-blue-light,
  383. .rgba-blue-light:after {
  384. background-color: rgba(33, 150, 243, 0.3)
  385. }
  386. .rgba-blue-strong,
  387. .rgba-blue-strong:after {
  388. background-color: rgba(33, 150, 243, 0.7)
  389. }
  390. .blue.darken-1 {
  391. background-color: #1e88e5 !important
  392. }
  393. .blue.darken-2 {
  394. background-color: #1976d2 !important
  395. }
  396. .blue.darken-3 {
  397. background-color: #1565c0 !important
  398. }
  399. .blue.darken-4 {
  400. background-color: #0d47a1 !important
  401. }
  402. .blue.accent-1 {
  403. background-color: #82b1ff !important
  404. }
  405. .blue.accent-2 {
  406. background-color: #448aff !important
  407. }
  408. .blue.accent-3 {
  409. background-color: #2979ff !important
  410. }
  411. .blue.accent-4 {
  412. background-color: #2962ff !important
  413. }
  414. .light-blue.lighten-5 {
  415. background-color: #e1f5fe !important
  416. }
  417. .light-blue.lighten-4 {
  418. background-color: #b3e5fc !important
  419. }
  420. .light-blue.lighten-3 {
  421. background-color: #81d4fa !important
  422. }
  423. .light-blue.lighten-2 {
  424. background-color: #4fc3f7 !important
  425. }
  426. .light-blue.lighten-1 {
  427. background-color: #29b6f6 !important
  428. }
  429. .light-blue {
  430. background-color: #03a9f4 !important
  431. }
  432. .light-blue-text {
  433. color: #03a9f4 !important
  434. }
  435. .rgba-light-blue-slight,
  436. .rgba-light-blue-slight:after {
  437. background-color: rgba(3, 169, 244, 0.1)
  438. }
  439. .rgba-light-blue-light,
  440. .rgba-light-blue-light:after {
  441. background-color: rgba(3, 169, 244, 0.3)
  442. }
  443. .rgba-light-blue-strong,
  444. .rgba-light-blue-strong:after {
  445. background-color: rgba(3, 169, 244, 0.7)
  446. }
  447. .light-blue.darken-1 {
  448. background-color: #039be5 !important
  449. }
  450. .light-blue.darken-2 {
  451. background-color: #0288d1 !important
  452. }
  453. .light-blue.darken-3 {
  454. background-color: #0277bd !important
  455. }
  456. .light-blue.darken-4 {
  457. background-color: #01579b !important
  458. }
  459. .light-blue.accent-1 {
  460. background-color: #80d8ff !important
  461. }
  462. .light-blue.accent-2 {
  463. background-color: #40c4ff !important
  464. }
  465. .light-blue.accent-3 {
  466. background-color: #00b0ff !important
  467. }
  468. .light-blue.accent-4 {
  469. background-color: #0091ea !important
  470. }
  471. .cyan.lighten-5 {
  472. background-color: #e0f7fa !important
  473. }
  474. .cyan.lighten-4 {
  475. background-color: #b2ebf2 !important
  476. }
  477. .cyan.lighten-3 {
  478. background-color: #80deea !important
  479. }
  480. .cyan.lighten-2 {
  481. background-color: #4dd0e1 !important
  482. }
  483. .cyan.lighten-1 {
  484. background-color: #26c6da !important
  485. }
  486. .cyan {
  487. background-color: #00bcd4 !important
  488. }
  489. .cyan-text {
  490. color: #00bcd4 !important
  491. }
  492. .rgba-cyan-slight,
  493. .rgba-cyan-slight:after {
  494. background-color: rgba(0, 188, 212, 0.1)
  495. }
  496. .rgba-cyan-light,
  497. .rgba-cyan-light:after {
  498. background-color: rgba(0, 188, 212, 0.3)
  499. }
  500. .rgba-cyan-strong,
  501. .rgba-cyan-strong:after {
  502. background-color: rgba(0, 188, 212, 0.7)
  503. }
  504. .cyan.darken-1 {
  505. background-color: #00acc1 !important
  506. }
  507. .cyan.darken-2 {
  508. background-color: #0097a7 !important
  509. }
  510. .cyan.darken-3 {
  511. background-color: #00838f !important
  512. }
  513. .cyan.darken-4 {
  514. background-color: #006064 !important
  515. }
  516. .cyan.accent-1 {
  517. background-color: #84ffff !important
  518. }
  519. .cyan.accent-2 {
  520. background-color: #18ffff !important
  521. }
  522. .cyan.accent-3 {
  523. background-color: #00e5ff !important
  524. }
  525. .cyan.accent-4 {
  526. background-color: #00b8d4 !important
  527. }
  528. .teal.lighten-5 {
  529. background-color: #e0f2f1 !important
  530. }
  531. .teal.lighten-4 {
  532. background-color: #b2dfdb !important
  533. }
  534. .teal.lighten-3 {
  535. background-color: #80cbc4 !important
  536. }
  537. .teal.lighten-2 {
  538. background-color: #4db6ac !important
  539. }
  540. .teal.lighten-1 {
  541. background-color: #26a69a !important
  542. }
  543. .teal {
  544. background-color: #009688 !important
  545. }
  546. .teal-text {
  547. color: #009688 !important
  548. }
  549. .rgba-teal-slight,
  550. .rgba-teal-slight:after {
  551. background-color: rgba(0, 150, 136, 0.1)
  552. }
  553. .rgba-teal-light,
  554. .rgba-teal-light:after {
  555. background-color: rgba(0, 150, 136, 0.3)
  556. }
  557. .rgba-teal-strong,
  558. .rgba-teal-strong:after {
  559. background-color: rgba(0, 150, 136, 0.7)
  560. }
  561. .teal.darken-1 {
  562. background-color: #00897b !important
  563. }
  564. .teal.darken-2 {
  565. background-color: #00796b !important
  566. }
  567. .teal.darken-3 {
  568. background-color: #00695c !important
  569. }
  570. .teal.darken-4 {
  571. background-color: #004d40 !important
  572. }
  573. .teal.accent-1 {
  574. background-color: #a7ffeb !important
  575. }
  576. .teal.accent-2 {
  577. background-color: #64ffda !important
  578. }
  579. .teal.accent-3 {
  580. background-color: #1de9b6 !important
  581. }
  582. .teal.accent-4 {
  583. background-color: #00bfa5 !important
  584. }
  585. .green.lighten-5 {
  586. background-color: #e8f5e9 !important
  587. }
  588. .green.lighten-4 {
  589. background-color: #c8e6c9 !important
  590. }
  591. .green.lighten-3 {
  592. background-color: #a5d6a7 !important
  593. }
  594. .green.lighten-2 {
  595. background-color: #81c784 !important
  596. }
  597. .green.lighten-1 {
  598. background-color: #66bb6a !important
  599. }
  600. .green {
  601. background-color: #4caf50 !important
  602. }
  603. .green-text {
  604. color: #4caf50 !important
  605. }
  606. .rgba-green-slight,
  607. .rgba-green-slight:after {
  608. background-color: rgba(76, 175, 80, 0.1)
  609. }
  610. .rgba-green-light,
  611. .rgba-green-light:after {
  612. background-color: rgba(76, 175, 80, 0.3)
  613. }
  614. .rgba-green-strong,
  615. .rgba-green-strong:after {
  616. background-color: rgba(76, 175, 80, 0.7)
  617. }
  618. .green.darken-1 {
  619. background-color: #43a047 !important
  620. }
  621. .green.darken-2 {
  622. background-color: #388e3c !important
  623. }
  624. .green.darken-3 {
  625. background-color: #2e7d32 !important
  626. }
  627. .green.darken-4 {
  628. background-color: #1b5e20 !important
  629. }
  630. .green.accent-1 {
  631. background-color: #b9f6ca !important
  632. }
  633. .green.accent-2 {
  634. background-color: #69f0ae !important
  635. }
  636. .green.accent-3 {
  637. background-color: #00e676 !important
  638. }
  639. .green.accent-4 {
  640. background-color: #00c853 !important
  641. }
  642. .light-green.lighten-5 {
  643. background-color: #f1f8e9 !important
  644. }
  645. .light-green.lighten-4 {
  646. background-color: #dcedc8 !important
  647. }
  648. .light-green.lighten-3 {
  649. background-color: #c5e1a5 !important
  650. }
  651. .light-green.lighten-2 {
  652. background-color: #aed581 !important
  653. }
  654. .light-green.lighten-1 {
  655. background-color: #9ccc65 !important
  656. }
  657. .light-green {
  658. background-color: #8bc34a !important
  659. }
  660. .light-green-text {
  661. color: #8bc34a !important
  662. }
  663. .rgba-light-green-slight,
  664. .rgba-light-green-slight:after {
  665. background-color: rgba(139, 195, 74, 0.1)
  666. }
  667. .rgba-light-green-light,
  668. .rgba-light-green-light:after {
  669. background-color: rgba(139, 195, 74, 0.3)
  670. }
  671. .rgba-light-green-strong,
  672. .rgba-light-green-strong:after {
  673. background-color: rgba(139, 195, 74, 0.7)
  674. }
  675. .light-green.darken-1 {
  676. background-color: #7cb342 !important
  677. }
  678. .light-green.darken-2 {
  679. background-color: #689f38 !important
  680. }
  681. .light-green.darken-3 {
  682. background-color: #558b2f !important
  683. }
  684. .light-green.darken-4 {
  685. background-color: #33691e !important
  686. }
  687. .light-green.accent-1 {
  688. background-color: #ccff90 !important
  689. }
  690. .light-green.accent-2 {
  691. background-color: #b2ff59 !important
  692. }
  693. .light-green.accent-3 {
  694. background-color: #76ff03 !important
  695. }
  696. .light-green.accent-4 {
  697. background-color: #64dd17 !important
  698. }
  699. .lime.lighten-5 {
  700. background-color: #f9fbe7 !important
  701. }
  702. .lime.lighten-4 {
  703. background-color: #f0f4c3 !important
  704. }
  705. .lime.lighten-3 {
  706. background-color: #e6ee9c !important
  707. }
  708. .lime.lighten-2 {
  709. background-color: #dce775 !important
  710. }
  711. .lime.lighten-1 {
  712. background-color: #d4e157 !important
  713. }
  714. .lime {
  715. background-color: #cddc39 !important
  716. }
  717. .lime-text {
  718. color: #cddc39 !important
  719. }
  720. .rgba-lime-slight,
  721. .rgba-lime-slight:after {
  722. background-color: rgba(205, 220, 57, 0.1)
  723. }
  724. .rgba-lime-light,
  725. .rgba-lime-light:after {
  726. background-color: rgba(205, 220, 57, 0.3)
  727. }
  728. .rgba-lime-strong,
  729. .rgba-lime-strong:after {
  730. background-color: rgba(205, 220, 57, 0.7)
  731. }
  732. .lime.darken-1 {
  733. background-color: #c0ca33 !important
  734. }
  735. .lime.darken-2 {
  736. background-color: #afb42b !important
  737. }
  738. .lime.darken-3 {
  739. background-color: #9e9d24 !important
  740. }
  741. .lime.darken-4 {
  742. background-color: #827717 !important
  743. }
  744. .lime.accent-1 {
  745. background-color: #f4ff81 !important
  746. }
  747. .lime.accent-2 {
  748. background-color: #eeff41 !important
  749. }
  750. .lime.accent-3 {
  751. background-color: #c6ff00 !important
  752. }
  753. .lime.accent-4 {
  754. background-color: #aeea00 !important
  755. }
  756. .yellow.lighten-5 {
  757. background-color: #fffde7 !important
  758. }
  759. .yellow.lighten-4 {
  760. background-color: #fff9c4 !important
  761. }
  762. .yellow.lighten-3 {
  763. background-color: #fff59d !important
  764. }
  765. .yellow.lighten-2 {
  766. background-color: #fff176 !important
  767. }
  768. .yellow.lighten-1 {
  769. background-color: #ffee58 !important
  770. }
  771. .yellow {
  772. background-color: #ffeb3b !important
  773. }
  774. .yellow-text {
  775. color: #ffeb3b !important
  776. }
  777. .rgba-yellow-slight,
  778. .rgba-yellow-slight:after {
  779. background-color: rgba(255, 235, 59, 0.1)
  780. }
  781. .rgba-yellow-light,
  782. .rgba-yellow-light:after {
  783. background-color: rgba(255, 235, 59, 0.3)
  784. }
  785. .rgba-yellow-strong,
  786. .rgba-yellow-strong:after {
  787. background-color: rgba(255, 235, 59, 0.7)
  788. }
  789. .yellow.darken-1 {
  790. background-color: #fdd835 !important
  791. }
  792. .yellow.darken-2 {
  793. background-color: #fbc02d !important
  794. }
  795. .yellow.darken-3 {
  796. background-color: #f9a825 !important
  797. }
  798. .yellow.darken-4 {
  799. background-color: #f57f17 !important
  800. }
  801. .yellow.accent-1 {
  802. background-color: #ffff8d !important
  803. }
  804. .yellow.accent-2 {
  805. background-color: #ff0 !important
  806. }
  807. .yellow.accent-3 {
  808. background-color: #ffea00 !important
  809. }
  810. .yellow.accent-4 {
  811. background-color: #ffd600 !important
  812. }
  813. .amber.lighten-5 {
  814. background-color: #fff8e1 !important
  815. }
  816. .amber.lighten-4 {
  817. background-color: #ffecb3 !important
  818. }
  819. .amber.lighten-3 {
  820. background-color: #ffe082 !important
  821. }
  822. .amber.lighten-2 {
  823. background-color: #ffd54f !important
  824. }
  825. .amber.lighten-1 {
  826. background-color: #ffca28 !important
  827. }
  828. .amber {
  829. background-color: #ffc107 !important
  830. }
  831. .amber-text {
  832. color: #ffc107 !important
  833. }
  834. .rgba-amber-slight,
  835. .rgba-amber-slight:after {
  836. background-color: rgba(255, 193, 7, 0.1)
  837. }
  838. .rgba-amber-light,
  839. .rgba-amber-light:after {
  840. background-color: rgba(255, 193, 7, 0.3)
  841. }
  842. .rgba-amber-strong,
  843. .rgba-amber-strong:after {
  844. background-color: rgba(255, 193, 7, 0.7)
  845. }
  846. .amber.darken-1 {
  847. background-color: #ffb300 !important
  848. }
  849. .amber.darken-2 {
  850. background-color: #ffa000 !important
  851. }
  852. .amber.darken-3 {
  853. background-color: #ff8f00 !important
  854. }
  855. .amber.darken-4 {
  856. background-color: #ff6f00 !important
  857. }
  858. .amber.accent-1 {
  859. background-color: #ffe57f !important
  860. }
  861. .amber.accent-2 {
  862. background-color: #ffd740 !important
  863. }
  864. .amber.accent-3 {
  865. background-color: #ffc400 !important
  866. }
  867. .amber.accent-4 {
  868. background-color: #ffab00 !important
  869. }
  870. .orange.lighten-5 {
  871. background-color: #fff3e0 !important
  872. }
  873. .orange.lighten-4 {
  874. background-color: #ffe0b2 !important
  875. }
  876. .orange.lighten-3 {
  877. background-color: #ffcc80 !important
  878. }
  879. .orange.lighten-2 {
  880. background-color: #ffb74d !important
  881. }
  882. .orange.lighten-1 {
  883. background-color: #ffa726 !important
  884. }
  885. .orange {
  886. background-color: #ff9800 !important
  887. }
  888. .orange-text {
  889. color: #ff9800 !important
  890. }
  891. .rgba-orange-slight,
  892. .rgba-orange-slight:after {
  893. background-color: rgba(255, 152, 0, 0.1)
  894. }
  895. .rgba-orange-light,
  896. .rgba-orange-light:after {
  897. background-color: rgba(255, 152, 0, 0.3)
  898. }
  899. .rgba-orange-strong,
  900. .rgba-orange-strong:after {
  901. background-color: rgba(255, 152, 0, 0.7)
  902. }
  903. .orange.darken-1 {
  904. background-color: #fb8c00 !important
  905. }
  906. .orange.darken-2 {
  907. background-color: #f57c00 !important
  908. }
  909. .orange.darken-3 {
  910. background-color: #ef6c00 !important
  911. }
  912. .orange.darken-4 {
  913. background-color: #e65100 !important
  914. }
  915. .orange.accent-1 {
  916. background-color: #ffd180 !important
  917. }
  918. .orange.accent-2 {
  919. background-color: #ffab40 !important
  920. }
  921. .orange.accent-3 {
  922. background-color: #ff9100 !important
  923. }
  924. .orange.accent-4 {
  925. background-color: #ff6d00 !important
  926. }
  927. .deep-orange.lighten-5 {
  928. background-color: #fbe9e7 !important
  929. }
  930. .deep-orange.lighten-4 {
  931. background-color: #ffccbc !important
  932. }
  933. .deep-orange.lighten-3 {
  934. background-color: #ffab91 !important
  935. }
  936. .deep-orange.lighten-2 {
  937. background-color: #ff8a65 !important
  938. }
  939. .deep-orange.lighten-1 {
  940. background-color: #ff7043 !important
  941. }
  942. .deep-orange {
  943. background-color: #ff5722 !important
  944. }
  945. .deep-orange-text {
  946. color: #ff5722 !important
  947. }
  948. .rgba-deep-orange-slight,
  949. .rgba-deep-orange-slight:after {
  950. background-color: rgba(255, 87, 34, 0.1)
  951. }
  952. .rgba-deep-orange-light,
  953. .rgba-deep-orange-light:after {
  954. background-color: rgba(255, 87, 34, 0.3)
  955. }
  956. .rgba-deep-orange-strong,
  957. .rgba-deep-orange-strong:after {
  958. background-color: rgba(255, 87, 34, 0.7)
  959. }
  960. .deep-orange.darken-1 {
  961. background-color: #f4511e !important
  962. }
  963. .deep-orange.darken-2 {
  964. background-color: #e64a19 !important
  965. }
  966. .deep-orange.darken-3 {
  967. background-color: #d84315 !important
  968. }
  969. .deep-orange.darken-4 {
  970. background-color: #bf360c !important
  971. }
  972. .deep-orange.accent-1 {
  973. background-color: #ff9e80 !important
  974. }
  975. .deep-orange.accent-2 {
  976. background-color: #ff6e40 !important
  977. }
  978. .deep-orange.accent-3 {
  979. background-color: #ff3d00 !important
  980. }
  981. .deep-orange.accent-4 {
  982. background-color: #dd2c00 !important
  983. }
  984. .brown.lighten-5 {
  985. background-color: #efebe9 !important
  986. }
  987. .brown.lighten-4 {
  988. background-color: #d7ccc8 !important
  989. }
  990. .brown.lighten-3 {
  991. background-color: #bcaaa4 !important
  992. }
  993. .brown.lighten-2 {
  994. background-color: #a1887f !important
  995. }
  996. .brown.lighten-1 {
  997. background-color: #8d6e63 !important
  998. }
  999. .brown {
  1000. background-color: #795548 !important
  1001. }
  1002. .brown-text {
  1003. color: #795548 !important
  1004. }
  1005. .rgba-brown-slight,
  1006. .rgba-brown-slight:after {
  1007. background-color: rgba(121, 85, 72, 0.1)
  1008. }
  1009. .rgba-brown-light,
  1010. .rgba-brown-light:after {
  1011. background-color: rgba(121, 85, 72, 0.3)
  1012. }
  1013. .rgba-brown-strong,
  1014. .rgba-brown-strong:after {
  1015. background-color: rgba(121, 85, 72, 0.7)
  1016. }
  1017. .brown.darken-1 {
  1018. background-color: #6d4c41 !important
  1019. }
  1020. .brown.darken-2 {
  1021. background-color: #5d4037 !important
  1022. }
  1023. .brown.darken-3 {
  1024. background-color: #4e342e !important
  1025. }
  1026. .brown.darken-4 {
  1027. background-color: #3e2723 !important
  1028. }
  1029. .blue-grey.lighten-5 {
  1030. background-color: #eceff1 !important
  1031. }
  1032. .blue-grey.lighten-4 {
  1033. background-color: #cfd8dc !important
  1034. }
  1035. .blue-grey.lighten-3 {
  1036. background-color: #b0bec5 !important
  1037. }
  1038. .blue-grey.lighten-2 {
  1039. background-color: #90a4ae !important
  1040. }
  1041. .blue-grey.lighten-1 {
  1042. background-color: #78909c !important
  1043. }
  1044. .blue-grey {
  1045. background-color: #607d8b !important
  1046. }
  1047. .blue-grey-text {
  1048. color: #607d8b !important
  1049. }
  1050. .rgba-blue-grey-slight,
  1051. .rgba-blue-grey-slight:after {
  1052. background-color: rgba(96, 125, 139, 0.1)
  1053. }
  1054. .rgba-blue-grey-light,
  1055. .rgba-blue-grey-light:after {
  1056. background-color: rgba(96, 125, 139, 0.3)
  1057. }
  1058. .rgba-blue-grey-strong,
  1059. .rgba-blue-grey-strong:after {
  1060. background-color: rgba(96, 125, 139, 0.7)
  1061. }
  1062. .blue-grey.darken-1 {
  1063. background-color: #546e7a !important
  1064. }
  1065. .blue-grey.darken-2 {
  1066. background-color: #455a64 !important
  1067. }
  1068. .blue-grey.darken-3 {
  1069. background-color: #37474f !important
  1070. }
  1071. .blue-grey.darken-4 {
  1072. background-color: #263238 !important
  1073. }
  1074. .grey.lighten-5 {
  1075. background-color: #fafafa !important
  1076. }
  1077. .grey.lighten-4 {
  1078. background-color: #f5f5f5 !important
  1079. }
  1080. .grey.lighten-3 {
  1081. background-color: #eee !important
  1082. }
  1083. .grey.lighten-2 {
  1084. background-color: #e0e0e0 !important
  1085. }
  1086. .grey.lighten-1 {
  1087. background-color: #bdbdbd !important
  1088. }
  1089. .grey {
  1090. background-color: #9e9e9e !important
  1091. }
  1092. .grey-text {
  1093. color: #9e9e9e !important
  1094. }
  1095. .rgba-grey-slight,
  1096. .rgba-grey-slight:after {
  1097. background-color: rgba(158, 158, 158, 0.1)
  1098. }
  1099. .rgba-grey-light,
  1100. .rgba-grey-light:after {
  1101. background-color: rgba(158, 158, 158, 0.3)
  1102. }
  1103. .rgba-grey-strong,
  1104. .rgba-grey-strong:after {
  1105. background-color: rgba(158, 158, 158, 0.7)
  1106. }
  1107. .grey.darken-1 {
  1108. background-color: #757575 !important
  1109. }
  1110. .grey.darken-2 {
  1111. background-color: #616161 !important
  1112. }
  1113. .grey.darken-3 {
  1114. background-color: #424242 !important
  1115. }
  1116. .grey.darken-4 {
  1117. background-color: #212121 !important
  1118. }
  1119. .black {
  1120. background-color: #000 !important
  1121. }
  1122. .black-text {
  1123. color: #000 !important
  1124. }
  1125. .rgba-black-slight,
  1126. .rgba-black-slight:after {
  1127. background-color: rgba(0, 0, 0, 0.1)
  1128. }
  1129. .rgba-black-light,
  1130. .rgba-black-light:after {
  1131. background-color: rgba(0, 0, 0, 0.3)
  1132. }
  1133. .rgba-black-strong,
  1134. .rgba-black-strong:after {
  1135. background-color: rgba(0, 0, 0, 0.7)
  1136. }
  1137. .white {
  1138. background-color: #fff !important
  1139. }
  1140. .white-text {
  1141. color: #fff !important
  1142. }
  1143. .rgba-white-slight,
  1144. .rgba-white-slight:after {
  1145. background-color: rgba(255, 255, 255, 0.1)
  1146. }
  1147. .rgba-white-light,
  1148. .rgba-white-light:after {
  1149. background-color: rgba(255, 255, 255, 0.3)
  1150. }
  1151. .rgba-white-strong,
  1152. .rgba-white-strong:after {
  1153. background-color: rgba(255, 255, 255, 0.7)
  1154. }
  1155. .rgba-stylish-slight {
  1156. background-color: rgba(62, 69, 81, 0.1)
  1157. }
  1158. .rgba-stylish-light {
  1159. background-color: rgba(62, 69, 81, 0.3)
  1160. }
  1161. .rgba-stylish-strong {
  1162. background-color: rgba(62, 69, 81, 0.7)
  1163. }
  1164. .primary-color,
  1165. ul.stepper li.active a .circle,
  1166. ul.stepper li.completed a .circle {
  1167. background-color: #4285f4 !important
  1168. }
  1169. .primary-color-dark {
  1170. background-color: #0d47a1 !important
  1171. }
  1172. .secondary-color {
  1173. background-color: #a6c !important
  1174. }
  1175. .secondary-color-dark {
  1176. background-color: #93c !important
  1177. }
  1178. .default-color {
  1179. background-color: #2bbbad !important
  1180. }
  1181. .default-color-dark {
  1182. background-color: #00695c !important
  1183. }
  1184. .info-color {
  1185. background-color: #33b5e5 !important
  1186. }
  1187. .info-color-dark {
  1188. background-color: #09c !important
  1189. }
  1190. .success-color {
  1191. background-color: #00c851 !important
  1192. }
  1193. .success-color-dark {
  1194. background-color: #007e33 !important
  1195. }
  1196. .warning-color {
  1197. background-color: #fb3 !important
  1198. }
  1199. .warning-color-dark {
  1200. background-color: #f80 !important
  1201. }
  1202. .danger-color,
  1203. ul.stepper li.warning a .circle {
  1204. background-color: #ff3547 !important
  1205. }
  1206. .danger-color-dark {
  1207. background-color: #c00 !important
  1208. }
  1209. .elegant-color {
  1210. background-color: #2e2e2e !important
  1211. }
  1212. .elegant-color-dark {
  1213. background-color: #212121 !important
  1214. }
  1215. .stylish-color {
  1216. background-color: #4b515d !important
  1217. }
  1218. .stylish-color-dark {
  1219. background-color: #3e4551 !important
  1220. }
  1221. .unique-color {
  1222. background-color: #3f729b !important
  1223. }
  1224. .unique-color-dark {
  1225. background-color: #1c2331 !important
  1226. }
  1227. .special-color {
  1228. background-color: #37474f !important
  1229. }
  1230. .special-color-dark {
  1231. background-color: #263238 !important
  1232. }
  1233. .purple-gradient {
  1234. background: linear-gradient(40deg, #ff6ec4, #7873f5) !important
  1235. }
  1236. .peach-gradient {
  1237. background: linear-gradient(40deg, #ffd86f, #fc6262) !important
  1238. }
  1239. .aqua-gradient {
  1240. background: linear-gradient(40deg, #2096ff, #05ffa3) !important
  1241. }
  1242. .blue-gradient {
  1243. background: linear-gradient(40deg, #45cafc, #303f9f) !important
  1244. }
  1245. .purple-gradient-rgba {
  1246. background: linear-gradient(40deg, rgba(255, 110, 196, 0.9), rgba(120, 115, 245, 0.9)) !important
  1247. }
  1248. .peach-gradient-rgba {
  1249. background: linear-gradient(40deg, rgba(255, 216, 111, 0.9), rgba(252, 98, 98, 0.9)) !important
  1250. }
  1251. .aqua-gradient-rgba {
  1252. background: linear-gradient(40deg, rgba(32, 150, 255, 0.9), rgba(5, 255, 163, 0.9)) !important
  1253. }
  1254. .blue-gradient-rgba {
  1255. background: linear-gradient(40deg, rgba(69, 202, 252, 0.9), rgba(48, 63, 159, 0.9)) !important
  1256. }
  1257. .dark-grey-text {
  1258. color: #4f4f4f !important
  1259. }
  1260. .dark-grey-text:hover,
  1261. .dark-grey-text:focus {
  1262. color: #4f4f4f !important
  1263. }
  1264. .hoverable {
  1265. -webkit-box-shadow: none;
  1266. box-shadow: none;
  1267. -webkit-transition: all 0.55s ease-in-out;
  1268. transition: all 0.55s ease-in-out
  1269. }
  1270. .hoverable:hover {
  1271. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  1272. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  1273. -webkit-transition: all 0.55s ease-in-out;
  1274. transition: all 0.55s ease-in-out
  1275. }
  1276. .z-depth-0 {
  1277. -webkit-box-shadow: none !important;
  1278. box-shadow: none !important
  1279. }
  1280. .z-depth-1 {
  1281. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  1282. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important
  1283. }
  1284. .z-depth-1-half {
  1285. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important;
  1286. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important
  1287. }
  1288. .z-depth-2 {
  1289. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  1290. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important
  1291. }
  1292. .z-depth-3 {
  1293. -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
  1294. box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important
  1295. }
  1296. .z-depth-4 {
  1297. -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important;
  1298. box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important
  1299. }
  1300. .z-depth-5 {
  1301. -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important;
  1302. box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important
  1303. }
  1304. .disabled,
  1305. :disabled {
  1306. pointer-events: none !important
  1307. }
  1308. a {
  1309. color: #007bff;
  1310. text-decoration: none;
  1311. cursor: pointer;
  1312. -webkit-transition: all 0.2s ease-in-out;
  1313. transition: all 0.2s ease-in-out
  1314. }
  1315. a:hover {
  1316. color: #0056b3;
  1317. text-decoration: none;
  1318. -webkit-transition: all 0.2s ease-in-out;
  1319. transition: all 0.2s ease-in-out
  1320. }
  1321. a.disabled:hover,
  1322. a:disabled:hover {
  1323. color: #007bff
  1324. }
  1325. a:not([href]):not([tabindex]),
  1326. a:not([href]):not([tabindex]):focus,
  1327. a:not([href]):not([tabindex]):hover {
  1328. color: inherit;
  1329. text-decoration: none
  1330. }
  1331. .divider-new {
  1332. display: -webkit-box;
  1333. display: -ms-flexbox;
  1334. display: flex;
  1335. -webkit-box-orient: horizontal;
  1336. -webkit-box-direction: normal;
  1337. -ms-flex-direction: row;
  1338. flex-direction: row;
  1339. -webkit-box-align: center;
  1340. -ms-flex-align: center;
  1341. align-items: center;
  1342. -webkit-box-pack: center;
  1343. -ms-flex-pack: center;
  1344. justify-content: center;
  1345. margin-top: 2.8rem;
  1346. margin-bottom: 2.8rem
  1347. }
  1348. .divider-new>h1,
  1349. .divider-new h2,
  1350. .divider-new h3,
  1351. .divider-new h4,
  1352. .divider-new h5,
  1353. .divider-new h6 {
  1354. margin-bottom: 0
  1355. }
  1356. .divider-new:before,
  1357. .divider-new:after {
  1358. -webkit-box-flex: 1;
  1359. -ms-flex: 1;
  1360. flex: 1;
  1361. height: 1.5px;
  1362. height: 2px;
  1363. content: "";
  1364. background: #c6c6c6
  1365. }
  1366. .divider-new:before {
  1367. margin: 0 .5rem 0 0
  1368. }
  1369. .divider-new:after {
  1370. margin: 0 0 0 .5rem
  1371. }
  1372. .img-fluid,
  1373. .modal-dialog.cascading-modal.modal-avatar .modal-header,
  1374. .video-fluid {
  1375. max-width: 100%;
  1376. height: auto
  1377. }
  1378. .flex-center {
  1379. display: -webkit-box;
  1380. display: -ms-flexbox;
  1381. display: flex;
  1382. -webkit-box-align: center;
  1383. -ms-flex-align: center;
  1384. align-items: center;
  1385. -webkit-box-pack: center;
  1386. -ms-flex-pack: center;
  1387. justify-content: center;
  1388. height: 100%
  1389. }
  1390. .flex-center p {
  1391. margin: 0
  1392. }
  1393. .flex-center ul {
  1394. text-align: center
  1395. }
  1396. .flex-center ul li {
  1397. margin-bottom: 1rem
  1398. }
  1399. .flex-center ul li:last-of-type {
  1400. margin-bottom: 0
  1401. }
  1402. .hr-light {
  1403. border-top: 1px solid #fff
  1404. }
  1405. .hr-dark {
  1406. border-top: 1px solid #666
  1407. }
  1408. .w-responsive {
  1409. width: 75%
  1410. }
  1411. @media (max-width: 740px) {
  1412. .w-responsive {
  1413. width: 100%
  1414. }
  1415. }
  1416. .w-header {
  1417. width: 3.2rem
  1418. }
  1419. .collapsible-body {
  1420. display: none
  1421. }
  1422. .jumbotron {
  1423. background-color: #fff;
  1424. border-radius: .125rem;
  1425. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  1426. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  1427. }
  1428. .bg-primary {
  1429. background-color: #4285f4 !important
  1430. }
  1431. a.bg-primary:hover,
  1432. a.bg-primary:focus,
  1433. button.bg-primary:hover,
  1434. button.bg-primary:focus {
  1435. background-color: #1266f1 !important
  1436. }
  1437. .border-primary {
  1438. border-color: #4285f4 !important
  1439. }
  1440. .bg-danger {
  1441. background-color: #ff3547 !important
  1442. }
  1443. a.bg-danger:hover,
  1444. a.bg-danger:focus,
  1445. button.bg-danger:hover,
  1446. button.bg-danger:focus {
  1447. background-color: #ff0219 !important
  1448. }
  1449. .border-danger {
  1450. border-color: #ff3547 !important
  1451. }
  1452. .bg-warning {
  1453. background-color: #fb3 !important
  1454. }
  1455. a.bg-warning:hover,
  1456. a.bg-warning:focus,
  1457. button.bg-warning:hover,
  1458. button.bg-warning:focus {
  1459. background-color: #fa0 !important
  1460. }
  1461. .border-warning {
  1462. border-color: #fb3 !important
  1463. }
  1464. .bg-success {
  1465. background-color: #00c851 !important
  1466. }
  1467. a.bg-success:hover,
  1468. a.bg-success:focus,
  1469. button.bg-success:hover,
  1470. button.bg-success:focus {
  1471. background-color: #00953c !important
  1472. }
  1473. .border-success {
  1474. border-color: #00c851 !important
  1475. }
  1476. .bg-info {
  1477. background-color: #33b5e5 !important
  1478. }
  1479. a.bg-info:hover,
  1480. a.bg-info:focus,
  1481. button.bg-info:hover,
  1482. button.bg-info:focus {
  1483. background-color: #1a9bcb !important
  1484. }
  1485. .border-info {
  1486. border-color: #33b5e5 !important
  1487. }
  1488. .bg-default {
  1489. background-color: #2bbbad !important
  1490. }
  1491. a.bg-default:hover,
  1492. a.bg-default:focus,
  1493. button.bg-default:hover,
  1494. button.bg-default:focus {
  1495. background-color: #219287 !important
  1496. }
  1497. .border-default {
  1498. border-color: #2bbbad !important
  1499. }
  1500. .bg-secondary {
  1501. background-color: #a6c !important
  1502. }
  1503. a.bg-secondary:hover,
  1504. a.bg-secondary:focus,
  1505. button.bg-secondary:hover,
  1506. button.bg-secondary:focus {
  1507. background-color: #9540bf !important
  1508. }
  1509. .border-secondary {
  1510. border-color: #a6c !important
  1511. }
  1512. .bg-dark {
  1513. background-color: #212121 !important
  1514. }
  1515. a.bg-dark:hover,
  1516. a.bg-dark:focus,
  1517. button.bg-dark:hover,
  1518. button.bg-dark:focus {
  1519. background-color: #080808 !important
  1520. }
  1521. .border-dark {
  1522. border-color: #212121 !important
  1523. }
  1524. .bg-light {
  1525. background-color: #e0e0e0 !important
  1526. }
  1527. a.bg-light:hover,
  1528. a.bg-light:focus,
  1529. button.bg-light:hover,
  1530. button.bg-light:focus {
  1531. background-color: #c7c7c7 !important
  1532. }
  1533. .border-light {
  1534. border-color: #e0e0e0 !important
  1535. }
  1536. .card-img-100 {
  1537. width: 100px;
  1538. height: 100px
  1539. }
  1540. .card-img-64 {
  1541. width: 64px;
  1542. height: 64px
  1543. }
  1544. .mml-1 {
  1545. margin-left: -0.25rem !important
  1546. }
  1547. .flex-1 {
  1548. -webkit-box-flex: 1;
  1549. -ms-flex: 1;
  1550. flex: 1
  1551. }
  1552. body {
  1553. font-family: "Roboto", sans-serif;
  1554. font-weight: 300
  1555. }
  1556. h1,
  1557. h2,
  1558. h3,
  1559. h4,
  1560. h5,
  1561. h6 {
  1562. font-weight: 300
  1563. }
  1564. .blockquote {
  1565. padding: .5rem 1rem;
  1566. border-left: .25rem solid #eceeef
  1567. }
  1568. .blockquote.text-right {
  1569. border-right: .25rem solid #eceeef;
  1570. border-left: none
  1571. }
  1572. .blockquote .bq-title {
  1573. margin-bottom: 0;
  1574. font-size: 1.5rem;
  1575. font-weight: 400
  1576. }
  1577. .blockquote p {
  1578. padding: 1rem 0;
  1579. font-size: 1.1rem
  1580. }
  1581. .bq-primary {
  1582. border-left: 3px solid #4285f4 !important
  1583. }
  1584. .bq-primary .bq-title {
  1585. color: #4285f4 !important
  1586. }
  1587. .bq-danger {
  1588. border-left: 3px solid #ff3547 !important
  1589. }
  1590. .bq-danger .bq-title {
  1591. color: #ff3547 !important
  1592. }
  1593. .bq-warning {
  1594. border-left: 3px solid #fb3 !important
  1595. }
  1596. .bq-warning .bq-title {
  1597. color: #fb3 !important
  1598. }
  1599. .bq-success {
  1600. border-left: 3px solid #00c851 !important
  1601. }
  1602. .bq-success .bq-title {
  1603. color: #00c851 !important
  1604. }
  1605. .bq-info {
  1606. border-left: 3px solid #33b5e5 !important
  1607. }
  1608. .bq-info .bq-title {
  1609. color: #33b5e5 !important
  1610. }
  1611. .h1-responsive {
  1612. font-size: 150%
  1613. }
  1614. .h2-responsive {
  1615. font-size: 145%
  1616. }
  1617. .h3-responsive {
  1618. font-size: 135%
  1619. }
  1620. .h4-responsive {
  1621. font-size: 135%
  1622. }
  1623. .h5-responsive {
  1624. font-size: 135%
  1625. }
  1626. @media (min-width: 576px) {
  1627. .h1-responsive {
  1628. font-size: 170%
  1629. }
  1630. .h2-responsive {
  1631. font-size: 140%
  1632. }
  1633. .h3-responsive {
  1634. font-size: 125%
  1635. }
  1636. .h4-responsive {
  1637. font-size: 125%
  1638. }
  1639. .h5-responsive {
  1640. font-size: 125%
  1641. }
  1642. }
  1643. @media (min-width: 768px) {
  1644. .h1-responsive {
  1645. font-size: 200%
  1646. }
  1647. .h2-responsive {
  1648. font-size: 170%
  1649. }
  1650. .h3-responsive {
  1651. font-size: 140%
  1652. }
  1653. .h4-responsive {
  1654. font-size: 125%
  1655. }
  1656. .h5-responsive {
  1657. font-size: 125%
  1658. }
  1659. }
  1660. @media (min-width: 992px) {
  1661. .h1-responsive {
  1662. font-size: 200%
  1663. }
  1664. .h2-responsive {
  1665. font-size: 170%
  1666. }
  1667. .h3-responsive {
  1668. font-size: 140%
  1669. }
  1670. .h4-responsive {
  1671. font-size: 125%
  1672. }
  1673. .h5-responsive {
  1674. font-size: 125%
  1675. }
  1676. }
  1677. @media (min-width: 1200px) {
  1678. .h1-responsive {
  1679. font-size: 250%
  1680. }
  1681. .h2-responsive {
  1682. font-size: 200%
  1683. }
  1684. .h3-responsive {
  1685. font-size: 170%
  1686. }
  1687. .h4-responsive {
  1688. font-size: 140%
  1689. }
  1690. .h5-responsive {
  1691. font-size: 125%
  1692. }
  1693. }
  1694. .text-primary {
  1695. color: #4285f4 !important
  1696. }
  1697. a.text-primary:hover,
  1698. a.text-primary:focus {
  1699. color: #1266f1 !important
  1700. }
  1701. .text-danger {
  1702. color: #ff3547 !important
  1703. }
  1704. a.text-danger:hover,
  1705. a.text-danger:focus {
  1706. color: #ff0219 !important
  1707. }
  1708. .text-warning {
  1709. color: #fb3 !important
  1710. }
  1711. a.text-warning:hover,
  1712. a.text-warning:focus {
  1713. color: #fa0 !important
  1714. }
  1715. .text-success {
  1716. color: #00c851 !important
  1717. }
  1718. a.text-success:hover,
  1719. a.text-success:focus {
  1720. color: #00953c !important
  1721. }
  1722. .text-info {
  1723. color: #33b5e5 !important
  1724. }
  1725. a.text-info:hover,
  1726. a.text-info:focus {
  1727. color: #1a9bcb !important
  1728. }
  1729. .text-default {
  1730. color: #2bbbad !important
  1731. }
  1732. a.text-default:hover,
  1733. a.text-default:focus {
  1734. color: #219287 !important
  1735. }
  1736. .text-secondary {
  1737. color: #a6c !important
  1738. }
  1739. a.text-secondary:hover,
  1740. a.text-secondary:focus {
  1741. color: #9540bf !important
  1742. }
  1743. .text-dark {
  1744. color: #212121 !important
  1745. }
  1746. a.text-dark:hover,
  1747. a.text-dark:focus {
  1748. color: #080808 !important
  1749. }
  1750. .text-light {
  1751. color: #e0e0e0 !important
  1752. }
  1753. a.text-light:hover,
  1754. a.text-light:focus {
  1755. color: #c7c7c7 !important
  1756. }
  1757. .font-small {
  1758. font-size: .9rem
  1759. }
  1760. strong {
  1761. font-weight: 500
  1762. }
  1763. .view {
  1764. position: relative;
  1765. overflow: hidden;
  1766. cursor: default
  1767. }
  1768. .view .mask {
  1769. position: absolute;
  1770. top: 0;
  1771. right: 0;
  1772. bottom: 0;
  1773. left: 0;
  1774. width: 100%;
  1775. height: 100%;
  1776. overflow: hidden;
  1777. background-attachment: fixed
  1778. }
  1779. .view img,
  1780. .view video {
  1781. position: relative;
  1782. display: block
  1783. }
  1784. .view video.video-intro {
  1785. top: 50%;
  1786. left: 50%;
  1787. z-index: -100;
  1788. width: auto;
  1789. min-width: 100%;
  1790. height: auto;
  1791. min-height: 100%;
  1792. -webkit-transition: 1s opacity;
  1793. transition: 1s opacity;
  1794. -webkit-transform: translateX(-50%) translateY(-50%);
  1795. transform: translateX(-50%) translateY(-50%)
  1796. }
  1797. .overlay .mask {
  1798. opacity: 0;
  1799. -webkit-transition: all 0.4s ease-in-out;
  1800. transition: all 0.4s ease-in-out
  1801. }
  1802. .overlay .mask:hover {
  1803. opacity: 1
  1804. }
  1805. .zoom img,
  1806. .zoom video {
  1807. -webkit-transition: all 0.2s linear;
  1808. transition: all 0.2s linear
  1809. }
  1810. .zoom:hover img,
  1811. .zoom:hover video {
  1812. -webkit-transform: scale(1.1);
  1813. transform: scale(1.1)
  1814. }
  1815. .pattern-1 {
  1816. background: url(../img/overlays/01.png);
  1817. background-attachment: fixed
  1818. }
  1819. .pattern-2 {
  1820. background: url(../img/overlays/02.png);
  1821. background-attachment: fixed
  1822. }
  1823. .pattern-3 {
  1824. background: url(../img/overlays/03.png);
  1825. background-attachment: fixed
  1826. }
  1827. .pattern-4 {
  1828. background: url(../img/overlays/04.png);
  1829. background-attachment: fixed
  1830. }
  1831. .pattern-5 {
  1832. background: url(../img/overlays/05.png);
  1833. background-attachment: fixed
  1834. }
  1835. .pattern-6 {
  1836. background: url(../img/overlays/06.png);
  1837. background-attachment: fixed
  1838. }
  1839. .pattern-7 {
  1840. background: url(../img/overlays/07.png);
  1841. background-attachment: fixed
  1842. }
  1843. .pattern-8 {
  1844. background: url(../img/overlays/08.png);
  1845. background-attachment: fixed
  1846. }
  1847. .pattern-9 {
  1848. background: url(../img/overlays/09.png);
  1849. background-attachment: fixed
  1850. }
  1851. /*!
  1852. * Waves v0.7.6
  1853. * http://fian.my.id/Waves
  1854. *
  1855. * Copyright 2014-2018 Alfiana E. Sibuea and other contributors
  1856. * Released under the MIT license
  1857. * https://github.com/fians/Waves/blob/master/LICENSE */
  1858. .waves-effect {
  1859. position: relative;
  1860. overflow: hidden;
  1861. cursor: pointer;
  1862. -webkit-user-select: none;
  1863. -moz-user-select: none;
  1864. -ms-user-select: none;
  1865. user-select: none;
  1866. -webkit-tap-highlight-color: transparent
  1867. }
  1868. .waves-effect .waves-ripple {
  1869. position: absolute;
  1870. width: 100px;
  1871. height: 100px;
  1872. margin-top: -50px;
  1873. margin-left: -50px;
  1874. pointer-events: none;
  1875. background: rgba(0, 0, 0, 0.2);
  1876. background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1877. border-radius: 50%;
  1878. opacity: 0;
  1879. -webkit-transition-property: -webkit-transform, opacity;
  1880. -webkit-transition-property: opacity, -webkit-transform;
  1881. transition-property: opacity, -webkit-transform;
  1882. transition-property: transform, opacity;
  1883. transition-property: transform, opacity, -webkit-transform;
  1884. -webkit-transition: all 0.5s ease-out;
  1885. transition: all 0.5s ease-out;
  1886. -webkit-transform: scale(0) translate(0, 0);
  1887. transform: scale(0) translate(0, 0)
  1888. }
  1889. .waves-effect.waves-light .waves-ripple {
  1890. background: rgba(255, 255, 255, 0.4);
  1891. background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)
  1892. }
  1893. .waves-effect.waves-classic .waves-ripple {
  1894. background: rgba(0, 0, 0, 0.2)
  1895. }
  1896. .waves-effect.waves-classic.waves-light .waves-ripple {
  1897. background: rgba(255, 255, 255, 0.4)
  1898. }
  1899. .waves-notransition {
  1900. -webkit-transition: none !important;
  1901. transition: none !important
  1902. }
  1903. .waves-button,
  1904. .waves-circle {
  1905. -webkit-transform: translateZ(0);
  1906. transform: translateZ(0);
  1907. -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%)
  1908. }
  1909. .waves-button,
  1910. .waves-button:hover,
  1911. .waves-button:visited,
  1912. .waves-button-input {
  1913. z-index: 1;
  1914. font-size: 1em;
  1915. line-height: 1em;
  1916. color: inherit;
  1917. text-align: center;
  1918. text-decoration: none;
  1919. white-space: nowrap;
  1920. vertical-align: middle;
  1921. cursor: pointer;
  1922. background-color: rgba(0, 0, 0, 0);
  1923. border: none;
  1924. outline: none
  1925. }
  1926. .waves-button {
  1927. padding: .85em 1.1em;
  1928. border-radius: .2em
  1929. }
  1930. .waves-button-input {
  1931. padding: .85em 1.1em;
  1932. margin: 0
  1933. }
  1934. .waves-input-wrapper {
  1935. position: relative;
  1936. display: inline-block;
  1937. vertical-align: middle;
  1938. border-radius: .2em
  1939. }
  1940. .waves-input-wrapper.waves-button {
  1941. padding: 0
  1942. }
  1943. .waves-input-wrapper .waves-button-input {
  1944. position: relative;
  1945. top: 0;
  1946. left: 0;
  1947. z-index: 1
  1948. }
  1949. .waves-circle {
  1950. width: 2.5em;
  1951. height: 2.5em;
  1952. line-height: 2.5em;
  1953. text-align: center;
  1954. border-radius: 50%
  1955. }
  1956. .waves-float {
  1957. -webkit-mask-image: none;
  1958. -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  1959. box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  1960. -webkit-transition: all 300ms;
  1961. transition: all 300ms
  1962. }
  1963. .waves-float:active {
  1964. -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
  1965. box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3)
  1966. }
  1967. .waves-block {
  1968. display: block
  1969. }
  1970. a.waves-effect,
  1971. a.waves-light {
  1972. display: inline-block
  1973. }
  1974. /*!
  1975. * animate.css -http://daneden.me/animate
  1976. * Version - 3.7.0
  1977. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  1978. *
  1979. * Copyright (c) 2018 Daniel Eden
  1980. */
  1981. .animated {
  1982. -webkit-animation-duration: 1s;
  1983. animation-duration: 1s;
  1984. -webkit-animation-fill-mode: both;
  1985. animation-fill-mode: both
  1986. }
  1987. .animated.infinite {
  1988. -webkit-animation-iteration-count: infinite;
  1989. animation-iteration-count: infinite
  1990. }
  1991. .animated.delay-1s {
  1992. -webkit-animation-delay: 1s;
  1993. animation-delay: 1s
  1994. }
  1995. .animated.delay-2s {
  1996. -webkit-animation-delay: 2s;
  1997. animation-delay: 2s
  1998. }
  1999. .animated.delay-3s {
  2000. -webkit-animation-delay: 3s;
  2001. animation-delay: 3s
  2002. }
  2003. .animated.delay-4s {
  2004. -webkit-animation-delay: 4s;
  2005. animation-delay: 4s
  2006. }
  2007. .animated.delay-5s {
  2008. -webkit-animation-delay: 5s;
  2009. animation-delay: 5s
  2010. }
  2011. .animated.fast {
  2012. -webkit-animation-duration: 800ms;
  2013. animation-duration: 800ms
  2014. }
  2015. .animated.faster {
  2016. -webkit-animation-duration: 500ms;
  2017. animation-duration: 500ms
  2018. }
  2019. .animated.slow {
  2020. -webkit-animation-duration: 2s;
  2021. animation-duration: 2s
  2022. }
  2023. .animated.slower {
  2024. -webkit-animation-duration: 3s;
  2025. animation-duration: 3s
  2026. }
  2027. @media (prefers-reduced-motion) {
  2028. .animated {
  2029. -webkit-transition: none !important;
  2030. transition: none !important;
  2031. -webkit-animation: unset !important;
  2032. animation: unset !important
  2033. }
  2034. }
  2035. @-webkit-keyframes fadeIn {
  2036. from {
  2037. opacity: 0
  2038. }
  2039. to {
  2040. opacity: 1
  2041. }
  2042. }
  2043. @keyframes fadeIn {
  2044. from {
  2045. opacity: 0
  2046. }
  2047. to {
  2048. opacity: 1
  2049. }
  2050. }
  2051. .fadeIn {
  2052. -webkit-animation-name: fadeIn;
  2053. animation-name: fadeIn
  2054. }
  2055. @-webkit-keyframes fadeInDown {
  2056. from {
  2057. opacity: 0;
  2058. -webkit-transform: translate3d(0, -100%, 0);
  2059. transform: translate3d(0, -100%, 0)
  2060. }
  2061. to {
  2062. opacity: 1;
  2063. -webkit-transform: translate3d(0, 0, 0);
  2064. transform: translate3d(0, 0, 0)
  2065. }
  2066. }
  2067. @keyframes fadeInDown {
  2068. from {
  2069. opacity: 0;
  2070. -webkit-transform: translate3d(0, -100%, 0);
  2071. transform: translate3d(0, -100%, 0)
  2072. }
  2073. to {
  2074. opacity: 1;
  2075. -webkit-transform: translate3d(0, 0, 0);
  2076. transform: translate3d(0, 0, 0)
  2077. }
  2078. }
  2079. .fadeInDown {
  2080. -webkit-animation-name: fadeInDown;
  2081. animation-name: fadeInDown
  2082. }
  2083. @-webkit-keyframes fadeInLeft {
  2084. from {
  2085. opacity: 0;
  2086. -webkit-transform: translate3d(-100%, 0, 0);
  2087. transform: translate3d(-100%, 0, 0)
  2088. }
  2089. to {
  2090. opacity: 1;
  2091. -webkit-transform: translate3d(0, 0, 0);
  2092. transform: translate3d(0, 0, 0)
  2093. }
  2094. }
  2095. @keyframes fadeInLeft {
  2096. from {
  2097. opacity: 0;
  2098. -webkit-transform: translate3d(-100%, 0, 0);
  2099. transform: translate3d(-100%, 0, 0)
  2100. }
  2101. to {
  2102. opacity: 1;
  2103. -webkit-transform: translate3d(0, 0, 0);
  2104. transform: translate3d(0, 0, 0)
  2105. }
  2106. }
  2107. .fadeInLeft {
  2108. -webkit-animation-name: fadeInLeft;
  2109. animation-name: fadeInLeft
  2110. }
  2111. @-webkit-keyframes fadeInRight {
  2112. from {
  2113. opacity: 0;
  2114. -webkit-transform: translate3d(100%, 0, 0);
  2115. transform: translate3d(100%, 0, 0)
  2116. }
  2117. to {
  2118. opacity: 1;
  2119. -webkit-transform: translate3d(0, 0, 0);
  2120. transform: translate3d(0, 0, 0)
  2121. }
  2122. }
  2123. @keyframes fadeInRight {
  2124. from {
  2125. opacity: 0;
  2126. -webkit-transform: translate3d(100%, 0, 0);
  2127. transform: translate3d(100%, 0, 0)
  2128. }
  2129. to {
  2130. opacity: 1;
  2131. -webkit-transform: translate3d(0, 0, 0);
  2132. transform: translate3d(0, 0, 0)
  2133. }
  2134. }
  2135. .fadeInRight {
  2136. -webkit-animation-name: fadeInRight;
  2137. animation-name: fadeInRight
  2138. }
  2139. @-webkit-keyframes fadeInUp {
  2140. from {
  2141. opacity: 0;
  2142. -webkit-transform: translate3d(0, 100%, 0);
  2143. transform: translate3d(0, 100%, 0)
  2144. }
  2145. to {
  2146. opacity: 1;
  2147. -webkit-transform: translate3d(0, 0, 0);
  2148. transform: translate3d(0, 0, 0)
  2149. }
  2150. }
  2151. @keyframes fadeInUp {
  2152. from {
  2153. opacity: 0;
  2154. -webkit-transform: translate3d(0, 100%, 0);
  2155. transform: translate3d(0, 100%, 0)
  2156. }
  2157. to {
  2158. opacity: 1;
  2159. -webkit-transform: translate3d(0, 0, 0);
  2160. transform: translate3d(0, 0, 0)
  2161. }
  2162. }
  2163. .fadeInUp {
  2164. -webkit-animation-name: fadeInUp;
  2165. animation-name: fadeInUp
  2166. }
  2167. @-webkit-keyframes fadeOut {
  2168. from {
  2169. opacity: 1
  2170. }
  2171. to {
  2172. opacity: 0
  2173. }
  2174. }
  2175. @keyframes fadeOut {
  2176. from {
  2177. opacity: 1
  2178. }
  2179. to {
  2180. opacity: 0
  2181. }
  2182. }
  2183. .fadeOut {
  2184. -webkit-animation-name: fadeOut;
  2185. animation-name: fadeOut
  2186. }
  2187. @-webkit-keyframes fadeOutDown {
  2188. from {
  2189. opacity: 1
  2190. }
  2191. to {
  2192. opacity: 0;
  2193. -webkit-transform: translate3d(0, 100%, 0);
  2194. transform: translate3d(0, 100%, 0)
  2195. }
  2196. }
  2197. @keyframes fadeOutDown {
  2198. from {
  2199. opacity: 1
  2200. }
  2201. to {
  2202. opacity: 0;
  2203. -webkit-transform: translate3d(0, 100%, 0);
  2204. transform: translate3d(0, 100%, 0)
  2205. }
  2206. }
  2207. .fadeOutDown {
  2208. -webkit-animation-name: fadeOutDown;
  2209. animation-name: fadeOutDown
  2210. }
  2211. @-webkit-keyframes fadeOutLeft {
  2212. from {
  2213. opacity: 1
  2214. }
  2215. to {
  2216. opacity: 0;
  2217. -webkit-transform: translate3d(-100%, 0, 0);
  2218. transform: translate3d(-100%, 0, 0)
  2219. }
  2220. }
  2221. @keyframes fadeOutLeft {
  2222. from {
  2223. opacity: 1
  2224. }
  2225. to {
  2226. opacity: 0;
  2227. -webkit-transform: translate3d(-100%, 0, 0);
  2228. transform: translate3d(-100%, 0, 0)
  2229. }
  2230. }
  2231. .fadeOutLeft {
  2232. -webkit-animation-name: fadeOutLeft;
  2233. animation-name: fadeOutLeft
  2234. }
  2235. @-webkit-keyframes fadeOutRight {
  2236. from {
  2237. opacity: 1
  2238. }
  2239. to {
  2240. opacity: 0;
  2241. -webkit-transform: translate3d(100%, 0, 0);
  2242. transform: translate3d(100%, 0, 0)
  2243. }
  2244. }
  2245. @keyframes fadeOutRight {
  2246. from {
  2247. opacity: 1
  2248. }
  2249. to {
  2250. opacity: 0;
  2251. -webkit-transform: translate3d(100%, 0, 0);
  2252. transform: translate3d(100%, 0, 0)
  2253. }
  2254. }
  2255. .fadeOutRight {
  2256. -webkit-animation-name: fadeOutRight;
  2257. animation-name: fadeOutRight
  2258. }
  2259. @-webkit-keyframes fadeOutUp {
  2260. from {
  2261. opacity: 1
  2262. }
  2263. to {
  2264. opacity: 0;
  2265. -webkit-transform: translate3d(0, -100%, 0);
  2266. transform: translate3d(0, -100%, 0)
  2267. }
  2268. }
  2269. @keyframes fadeOutUp {
  2270. from {
  2271. opacity: 1
  2272. }
  2273. to {
  2274. opacity: 0;
  2275. -webkit-transform: translate3d(0, -100%, 0);
  2276. transform: translate3d(0, -100%, 0)
  2277. }
  2278. }
  2279. .fadeOutUp {
  2280. -webkit-animation-name: fadeOutUp;
  2281. animation-name: fadeOutUp
  2282. }
  2283. /*!
  2284. * animate.css -http://daneden.me/animate
  2285. * Version - 3.7.0
  2286. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  2287. *
  2288. * Copyright (c) 2018 Daniel Eden
  2289. */
  2290. @-webkit-keyframes bounce {
  2291. from,
  2292. 20%,
  2293. 53%,
  2294. 80%,
  2295. to {
  2296. -webkit-transform: translate3d(0, 0, 0);
  2297. transform: translate3d(0, 0, 0);
  2298. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2299. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  2300. }
  2301. 40%,
  2302. 43% {
  2303. -webkit-transform: translate3d(0, -30px, 0);
  2304. transform: translate3d(0, -30px, 0);
  2305. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  2306. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06)
  2307. }
  2308. 70% {
  2309. -webkit-transform: translate3d(0, -15px, 0);
  2310. transform: translate3d(0, -15px, 0);
  2311. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  2312. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06)
  2313. }
  2314. 90% {
  2315. -webkit-transform: translate3d(0, -4px, 0);
  2316. transform: translate3d(0, -4px, 0)
  2317. }
  2318. }
  2319. @keyframes bounce {
  2320. from,
  2321. 20%,
  2322. 53%,
  2323. 80%,
  2324. to {
  2325. -webkit-transform: translate3d(0, 0, 0);
  2326. transform: translate3d(0, 0, 0);
  2327. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2328. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  2329. }
  2330. 40%,
  2331. 43% {
  2332. -webkit-transform: translate3d(0, -30px, 0);
  2333. transform: translate3d(0, -30px, 0);
  2334. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  2335. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06)
  2336. }
  2337. 70% {
  2338. -webkit-transform: translate3d(0, -15px, 0);
  2339. transform: translate3d(0, -15px, 0);
  2340. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  2341. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06)
  2342. }
  2343. 90% {
  2344. -webkit-transform: translate3d(0, -4px, 0);
  2345. transform: translate3d(0, -4px, 0)
  2346. }
  2347. }
  2348. .bounce {
  2349. -webkit-transform-origin: center bottom;
  2350. transform-origin: center bottom;
  2351. -webkit-animation-name: bounce;
  2352. animation-name: bounce
  2353. }
  2354. @-webkit-keyframes flash {
  2355. from,
  2356. 50%,
  2357. to {
  2358. opacity: 1
  2359. }
  2360. 25%,
  2361. 75% {
  2362. opacity: 0
  2363. }
  2364. }
  2365. @keyframes flash {
  2366. from,
  2367. 50%,
  2368. to {
  2369. opacity: 1
  2370. }
  2371. 25%,
  2372. 75% {
  2373. opacity: 0
  2374. }
  2375. }
  2376. .flash {
  2377. -webkit-animation-name: flash;
  2378. animation-name: flash
  2379. }
  2380. @-webkit-keyframes pulse {
  2381. from {
  2382. -webkit-transform: scale3d(1, 1, 1);
  2383. transform: scale3d(1, 1, 1)
  2384. }
  2385. 50% {
  2386. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  2387. transform: scale3d(1.05, 1.05, 1.05)
  2388. }
  2389. to {
  2390. -webkit-transform: scale3d(1, 1, 1);
  2391. transform: scale3d(1, 1, 1)
  2392. }
  2393. }
  2394. @keyframes pulse {
  2395. from {
  2396. -webkit-transform: scale3d(1, 1, 1);
  2397. transform: scale3d(1, 1, 1)
  2398. }
  2399. 50% {
  2400. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  2401. transform: scale3d(1.05, 1.05, 1.05)
  2402. }
  2403. to {
  2404. -webkit-transform: scale3d(1, 1, 1);
  2405. transform: scale3d(1, 1, 1)
  2406. }
  2407. }
  2408. .pulse {
  2409. -webkit-animation-name: pulse;
  2410. animation-name: pulse
  2411. }
  2412. @-webkit-keyframes rubberBand {
  2413. from {
  2414. -webkit-transform: scale3d(1, 1, 1);
  2415. transform: scale3d(1, 1, 1)
  2416. }
  2417. 30% {
  2418. -webkit-transform: scale3d(1.25, 0.75, 1);
  2419. transform: scale3d(1.25, 0.75, 1)
  2420. }
  2421. 40% {
  2422. -webkit-transform: scale3d(0.75, 1.25, 1);
  2423. transform: scale3d(0.75, 1.25, 1)
  2424. }
  2425. 50% {
  2426. -webkit-transform: scale3d(1.15, 0.85, 1);
  2427. transform: scale3d(1.15, 0.85, 1)
  2428. }
  2429. 65% {
  2430. -webkit-transform: scale3d(0.95, 1.05, 1);
  2431. transform: scale3d(0.95, 1.05, 1)
  2432. }
  2433. 75% {
  2434. -webkit-transform: scale3d(1.05, 0.95, 1);
  2435. transform: scale3d(1.05, 0.95, 1)
  2436. }
  2437. to {
  2438. -webkit-transform: scale3d(1, 1, 1);
  2439. transform: scale3d(1, 1, 1)
  2440. }
  2441. }
  2442. @keyframes rubberBand {
  2443. from {
  2444. -webkit-transform: scale3d(1, 1, 1);
  2445. transform: scale3d(1, 1, 1)
  2446. }
  2447. 30% {
  2448. -webkit-transform: scale3d(1.25, 0.75, 1);
  2449. transform: scale3d(1.25, 0.75, 1)
  2450. }
  2451. 40% {
  2452. -webkit-transform: scale3d(0.75, 1.25, 1);
  2453. transform: scale3d(0.75, 1.25, 1)
  2454. }
  2455. 50% {
  2456. -webkit-transform: scale3d(1.15, 0.85, 1);
  2457. transform: scale3d(1.15, 0.85, 1)
  2458. }
  2459. 65% {
  2460. -webkit-transform: scale3d(0.95, 1.05, 1);
  2461. transform: scale3d(0.95, 1.05, 1)
  2462. }
  2463. 75% {
  2464. -webkit-transform: scale3d(1.05, 0.95, 1);
  2465. transform: scale3d(1.05, 0.95, 1)
  2466. }
  2467. to {
  2468. -webkit-transform: scale3d(1, 1, 1);
  2469. transform: scale3d(1, 1, 1)
  2470. }
  2471. }
  2472. .rubberBand {
  2473. -webkit-animation-name: rubberBand;
  2474. animation-name: rubberBand
  2475. }
  2476. @-webkit-keyframes shake {
  2477. from,
  2478. to {
  2479. -webkit-transform: translate3d(0, 0, 0);
  2480. transform: translate3d(0, 0, 0)
  2481. }
  2482. 10%,
  2483. 30%,
  2484. 50%,
  2485. 70%,
  2486. 90% {
  2487. -webkit-transform: translate3d(-10px, 0, 0);
  2488. transform: translate3d(-10px, 0, 0)
  2489. }
  2490. 20%,
  2491. 40%,
  2492. 60%,
  2493. 80% {
  2494. -webkit-transform: translate3d(10px, 0, 0);
  2495. transform: translate3d(10px, 0, 0)
  2496. }
  2497. }
  2498. @keyframes shake {
  2499. from,
  2500. to {
  2501. -webkit-transform: translate3d(0, 0, 0);
  2502. transform: translate3d(0, 0, 0)
  2503. }
  2504. 10%,
  2505. 30%,
  2506. 50%,
  2507. 70%,
  2508. 90% {
  2509. -webkit-transform: translate3d(-10px, 0, 0);
  2510. transform: translate3d(-10px, 0, 0)
  2511. }
  2512. 20%,
  2513. 40%,
  2514. 60%,
  2515. 80% {
  2516. -webkit-transform: translate3d(10px, 0, 0);
  2517. transform: translate3d(10px, 0, 0)
  2518. }
  2519. }
  2520. .shake {
  2521. -webkit-animation-name: shake;
  2522. animation-name: shake
  2523. }
  2524. @-webkit-keyframes headShake {
  2525. 0% {
  2526. -webkit-transform: translateX(0);
  2527. transform: translateX(0)
  2528. }
  2529. 6.5% {
  2530. -webkit-transform: translateX(-6px) rotateY(-9deg);
  2531. transform: translateX(-6px) rotateY(-9deg)
  2532. }
  2533. 18.5% {
  2534. -webkit-transform: translateX(5px) rotateY(7deg);
  2535. transform: translateX(5px) rotateY(7deg)
  2536. }
  2537. 31.5% {
  2538. -webkit-transform: translateX(-3px) rotateY(-5deg);
  2539. transform: translateX(-3px) rotateY(-5deg)
  2540. }
  2541. 43.5% {
  2542. -webkit-transform: translateX(2px) rotateY(3deg);
  2543. transform: translateX(2px) rotateY(3deg)
  2544. }
  2545. 50% {
  2546. -webkit-transform: translateX(0);
  2547. transform: translateX(0)
  2548. }
  2549. }
  2550. @keyframes headShake {
  2551. 0% {
  2552. -webkit-transform: translateX(0);
  2553. transform: translateX(0)
  2554. }
  2555. 6.5% {
  2556. -webkit-transform: translateX(-6px) rotateY(-9deg);
  2557. transform: translateX(-6px) rotateY(-9deg)
  2558. }
  2559. 18.5% {
  2560. -webkit-transform: translateX(5px) rotateY(7deg);
  2561. transform: translateX(5px) rotateY(7deg)
  2562. }
  2563. 31.5% {
  2564. -webkit-transform: translateX(-3px) rotateY(-5deg);
  2565. transform: translateX(-3px) rotateY(-5deg)
  2566. }
  2567. 43.5% {
  2568. -webkit-transform: translateX(2px) rotateY(3deg);
  2569. transform: translateX(2px) rotateY(3deg)
  2570. }
  2571. 50% {
  2572. -webkit-transform: translateX(0);
  2573. transform: translateX(0)
  2574. }
  2575. }
  2576. .headShake {
  2577. -webkit-animation-name: headShake;
  2578. animation-name: headShake;
  2579. -webkit-animation-timing-function: ease-in-out;
  2580. animation-timing-function: ease-in-out
  2581. }
  2582. @-webkit-keyframes swing {
  2583. 20% {
  2584. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  2585. transform: rotate3d(0, 0, 1, 15deg)
  2586. }
  2587. 40% {
  2588. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  2589. transform: rotate3d(0, 0, 1, -10deg)
  2590. }
  2591. 60% {
  2592. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  2593. transform: rotate3d(0, 0, 1, 5deg)
  2594. }
  2595. 80% {
  2596. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  2597. transform: rotate3d(0, 0, 1, -5deg)
  2598. }
  2599. to {
  2600. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  2601. transform: rotate3d(0, 0, 1, 0deg)
  2602. }
  2603. }
  2604. @keyframes swing {
  2605. 20% {
  2606. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  2607. transform: rotate3d(0, 0, 1, 15deg)
  2608. }
  2609. 40% {
  2610. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  2611. transform: rotate3d(0, 0, 1, -10deg)
  2612. }
  2613. 60% {
  2614. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  2615. transform: rotate3d(0, 0, 1, 5deg)
  2616. }
  2617. 80% {
  2618. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  2619. transform: rotate3d(0, 0, 1, -5deg)
  2620. }
  2621. to {
  2622. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  2623. transform: rotate3d(0, 0, 1, 0deg)
  2624. }
  2625. }
  2626. .swing {
  2627. -webkit-transform-origin: top center;
  2628. transform-origin: top center;
  2629. -webkit-animation-name: swing;
  2630. animation-name: swing
  2631. }
  2632. @-webkit-keyframes tada {
  2633. from {
  2634. -webkit-transform: scale3d(1, 1, 1);
  2635. transform: scale3d(1, 1, 1)
  2636. }
  2637. 10%,
  2638. 20% {
  2639. -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  2640. transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  2641. }
  2642. 30%,
  2643. 50%,
  2644. 70%,
  2645. 90% {
  2646. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  2647. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  2648. }
  2649. 40%,
  2650. 60%,
  2651. 80% {
  2652. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  2653. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  2654. }
  2655. to {
  2656. -webkit-transform: scale3d(1, 1, 1);
  2657. transform: scale3d(1, 1, 1)
  2658. }
  2659. }
  2660. @keyframes tada {
  2661. from {
  2662. -webkit-transform: scale3d(1, 1, 1);
  2663. transform: scale3d(1, 1, 1)
  2664. }
  2665. 10%,
  2666. 20% {
  2667. -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  2668. transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  2669. }
  2670. 30%,
  2671. 50%,
  2672. 70%,
  2673. 90% {
  2674. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  2675. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  2676. }
  2677. 40%,
  2678. 60%,
  2679. 80% {
  2680. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  2681. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  2682. }
  2683. to {
  2684. -webkit-transform: scale3d(1, 1, 1);
  2685. transform: scale3d(1, 1, 1)
  2686. }
  2687. }
  2688. .tada {
  2689. -webkit-animation-name: tada;
  2690. animation-name: tada
  2691. }
  2692. @-webkit-keyframes wobble {
  2693. from {
  2694. -webkit-transform: translate3d(0, 0, 0);
  2695. transform: translate3d(0, 0, 0)
  2696. }
  2697. 15% {
  2698. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  2699. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  2700. }
  2701. 30% {
  2702. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  2703. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  2704. }
  2705. 45% {
  2706. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  2707. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  2708. }
  2709. 60% {
  2710. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  2711. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  2712. }
  2713. 75% {
  2714. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  2715. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  2716. }
  2717. to {
  2718. -webkit-transform: translate3d(0, 0, 0);
  2719. transform: translate3d(0, 0, 0)
  2720. }
  2721. }
  2722. @keyframes wobble {
  2723. from {
  2724. -webkit-transform: translate3d(0, 0, 0);
  2725. transform: translate3d(0, 0, 0)
  2726. }
  2727. 15% {
  2728. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  2729. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  2730. }
  2731. 30% {
  2732. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  2733. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  2734. }
  2735. 45% {
  2736. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  2737. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  2738. }
  2739. 60% {
  2740. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  2741. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  2742. }
  2743. 75% {
  2744. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  2745. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  2746. }
  2747. to {
  2748. -webkit-transform: translate3d(0, 0, 0);
  2749. transform: translate3d(0, 0, 0)
  2750. }
  2751. }
  2752. .wobble {
  2753. -webkit-animation-name: wobble;
  2754. animation-name: wobble
  2755. }
  2756. @-webkit-keyframes jello {
  2757. from,
  2758. 11.1%,
  2759. to {
  2760. -webkit-transform: translate3d(0, 0, 0);
  2761. transform: translate3d(0, 0, 0)
  2762. }
  2763. 22.2% {
  2764. -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
  2765. transform: skewX(-12.5deg) skewY(-12.5deg)
  2766. }
  2767. 33.3% {
  2768. -webkit-transform: skewX(6.25deg) skewY(6.25deg);
  2769. transform: skewX(6.25deg) skewY(6.25deg)
  2770. }
  2771. 44.4% {
  2772. -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
  2773. transform: skewX(-3.125deg) skewY(-3.125deg)
  2774. }
  2775. 55.5% {
  2776. -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
  2777. transform: skewX(1.5625deg) skewY(1.5625deg)
  2778. }
  2779. 66.6% {
  2780. -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
  2781. transform: skewX(-0.78125deg) skewY(-0.78125deg)
  2782. }
  2783. 77.7% {
  2784. -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
  2785. transform: skewX(0.39063deg) skewY(0.39063deg)
  2786. }
  2787. 88.8% {
  2788. -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
  2789. transform: skewX(-0.19531deg) skewY(-0.19531deg)
  2790. }
  2791. }
  2792. @keyframes jello {
  2793. from,
  2794. 11.1%,
  2795. to {
  2796. -webkit-transform: translate3d(0, 0, 0);
  2797. transform: translate3d(0, 0, 0)
  2798. }
  2799. 22.2% {
  2800. -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
  2801. transform: skewX(-12.5deg) skewY(-12.5deg)
  2802. }
  2803. 33.3% {
  2804. -webkit-transform: skewX(6.25deg) skewY(6.25deg);
  2805. transform: skewX(6.25deg) skewY(6.25deg)
  2806. }
  2807. 44.4% {
  2808. -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
  2809. transform: skewX(-3.125deg) skewY(-3.125deg)
  2810. }
  2811. 55.5% {
  2812. -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
  2813. transform: skewX(1.5625deg) skewY(1.5625deg)
  2814. }
  2815. 66.6% {
  2816. -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
  2817. transform: skewX(-0.78125deg) skewY(-0.78125deg)
  2818. }
  2819. 77.7% {
  2820. -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
  2821. transform: skewX(0.39063deg) skewY(0.39063deg)
  2822. }
  2823. 88.8% {
  2824. -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
  2825. transform: skewX(-0.19531deg) skewY(-0.19531deg)
  2826. }
  2827. }
  2828. .jello {
  2829. -webkit-transform-origin: center;
  2830. transform-origin: center;
  2831. -webkit-animation-name: jello;
  2832. animation-name: jello
  2833. }
  2834. @-webkit-keyframes heartBeat {
  2835. 0% {
  2836. -webkit-transform: scale(1);
  2837. transform: scale(1)
  2838. }
  2839. 14% {
  2840. -webkit-transform: scale(1.3);
  2841. transform: scale(1.3)
  2842. }
  2843. 28% {
  2844. -webkit-transform: scale(1);
  2845. transform: scale(1)
  2846. }
  2847. 42% {
  2848. -webkit-transform: scale(1.3);
  2849. transform: scale(1.3)
  2850. }
  2851. 70% {
  2852. -webkit-transform: scale(1);
  2853. transform: scale(1)
  2854. }
  2855. }
  2856. @keyframes heartBeat {
  2857. 0% {
  2858. -webkit-transform: scale(1);
  2859. transform: scale(1)
  2860. }
  2861. 14% {
  2862. -webkit-transform: scale(1.3);
  2863. transform: scale(1.3)
  2864. }
  2865. 28% {
  2866. -webkit-transform: scale(1);
  2867. transform: scale(1)
  2868. }
  2869. 42% {
  2870. -webkit-transform: scale(1.3);
  2871. transform: scale(1.3)
  2872. }
  2873. 70% {
  2874. -webkit-transform: scale(1);
  2875. transform: scale(1)
  2876. }
  2877. }
  2878. .heartBeat {
  2879. -webkit-animation-name: heartBeat;
  2880. animation-name: heartBeat;
  2881. -webkit-animation-duration: 1.3s;
  2882. animation-duration: 1.3s;
  2883. -webkit-animation-timing-function: ease-in-out;
  2884. animation-timing-function: ease-in-out
  2885. }
  2886. @-webkit-keyframes bounceIn {
  2887. from,
  2888. 20%,
  2889. 40%,
  2890. 60%,
  2891. 80%,
  2892. to {
  2893. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2894. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  2895. }
  2896. 0% {
  2897. opacity: 0;
  2898. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2899. transform: scale3d(0.3, 0.3, 0.3)
  2900. }
  2901. 20% {
  2902. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2903. transform: scale3d(1.1, 1.1, 1.1)
  2904. }
  2905. 40% {
  2906. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2907. transform: scale3d(0.9, 0.9, 0.9)
  2908. }
  2909. 60% {
  2910. opacity: 1;
  2911. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  2912. transform: scale3d(1.03, 1.03, 1.03)
  2913. }
  2914. 80% {
  2915. -webkit-transform: scale3d(0.97, 0.97, 0.97);
  2916. transform: scale3d(0.97, 0.97, 0.97)
  2917. }
  2918. to {
  2919. opacity: 1;
  2920. -webkit-transform: scale3d(1, 1, 1);
  2921. transform: scale3d(1, 1, 1)
  2922. }
  2923. }
  2924. @keyframes bounceIn {
  2925. from,
  2926. 20%,
  2927. 40%,
  2928. 60%,
  2929. 80%,
  2930. to {
  2931. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2932. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  2933. }
  2934. 0% {
  2935. opacity: 0;
  2936. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2937. transform: scale3d(0.3, 0.3, 0.3)
  2938. }
  2939. 20% {
  2940. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2941. transform: scale3d(1.1, 1.1, 1.1)
  2942. }
  2943. 40% {
  2944. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2945. transform: scale3d(0.9, 0.9, 0.9)
  2946. }
  2947. 60% {
  2948. opacity: 1;
  2949. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  2950. transform: scale3d(1.03, 1.03, 1.03)
  2951. }
  2952. 80% {
  2953. -webkit-transform: scale3d(0.97, 0.97, 0.97);
  2954. transform: scale3d(0.97, 0.97, 0.97)
  2955. }
  2956. to {
  2957. opacity: 1;
  2958. -webkit-transform: scale3d(1, 1, 1);
  2959. transform: scale3d(1, 1, 1)
  2960. }
  2961. }
  2962. .bounceIn {
  2963. -webkit-animation-name: bounceIn;
  2964. animation-name: bounceIn;
  2965. -webkit-animation-duration: .75s;
  2966. animation-duration: .75s
  2967. }
  2968. @-webkit-keyframes bounceInDown {
  2969. from,
  2970. 60%,
  2971. 75%,
  2972. 90%,
  2973. to {
  2974. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2975. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  2976. }
  2977. 0% {
  2978. opacity: 0;
  2979. -webkit-transform: translate3d(0, -3000px, 0);
  2980. transform: translate3d(0, -3000px, 0)
  2981. }
  2982. 60% {
  2983. opacity: 1;
  2984. -webkit-transform: translate3d(0, 25px, 0);
  2985. transform: translate3d(0, 25px, 0)
  2986. }
  2987. 75% {
  2988. -webkit-transform: translate3d(0, -10px, 0);
  2989. transform: translate3d(0, -10px, 0)
  2990. }
  2991. 90% {
  2992. -webkit-transform: translate3d(0, 5px, 0);
  2993. transform: translate3d(0, 5px, 0)
  2994. }
  2995. to {
  2996. -webkit-transform: translate3d(0, 0, 0);
  2997. transform: translate3d(0, 0, 0)
  2998. }
  2999. }
  3000. @keyframes bounceInDown {
  3001. from,
  3002. 60%,
  3003. 75%,
  3004. 90%,
  3005. to {
  3006. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3007. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3008. }
  3009. 0% {
  3010. opacity: 0;
  3011. -webkit-transform: translate3d(0, -3000px, 0);
  3012. transform: translate3d(0, -3000px, 0)
  3013. }
  3014. 60% {
  3015. opacity: 1;
  3016. -webkit-transform: translate3d(0, 25px, 0);
  3017. transform: translate3d(0, 25px, 0)
  3018. }
  3019. 75% {
  3020. -webkit-transform: translate3d(0, -10px, 0);
  3021. transform: translate3d(0, -10px, 0)
  3022. }
  3023. 90% {
  3024. -webkit-transform: translate3d(0, 5px, 0);
  3025. transform: translate3d(0, 5px, 0)
  3026. }
  3027. to {
  3028. -webkit-transform: translate3d(0, 0, 0);
  3029. transform: translate3d(0, 0, 0)
  3030. }
  3031. }
  3032. .bounceInDown {
  3033. -webkit-animation-name: bounceInDown;
  3034. animation-name: bounceInDown
  3035. }
  3036. @-webkit-keyframes bounceInLeft {
  3037. from,
  3038. 60%,
  3039. 75%,
  3040. 90%,
  3041. to {
  3042. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3043. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3044. }
  3045. 0% {
  3046. opacity: 0;
  3047. -webkit-transform: translate3d(-3000px, 0, 0);
  3048. transform: translate3d(-3000px, 0, 0)
  3049. }
  3050. 60% {
  3051. opacity: 1;
  3052. -webkit-transform: translate3d(25px, 0, 0);
  3053. transform: translate3d(25px, 0, 0)
  3054. }
  3055. 75% {
  3056. -webkit-transform: translate3d(-10px, 0, 0);
  3057. transform: translate3d(-10px, 0, 0)
  3058. }
  3059. 90% {
  3060. -webkit-transform: translate3d(5px, 0, 0);
  3061. transform: translate3d(5px, 0, 0)
  3062. }
  3063. to {
  3064. -webkit-transform: translate3d(0, 0, 0);
  3065. transform: translate3d(0, 0, 0)
  3066. }
  3067. }
  3068. @keyframes bounceInLeft {
  3069. from,
  3070. 60%,
  3071. 75%,
  3072. 90%,
  3073. to {
  3074. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3075. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3076. }
  3077. 0% {
  3078. opacity: 0;
  3079. -webkit-transform: translate3d(-3000px, 0, 0);
  3080. transform: translate3d(-3000px, 0, 0)
  3081. }
  3082. 60% {
  3083. opacity: 1;
  3084. -webkit-transform: translate3d(25px, 0, 0);
  3085. transform: translate3d(25px, 0, 0)
  3086. }
  3087. 75% {
  3088. -webkit-transform: translate3d(-10px, 0, 0);
  3089. transform: translate3d(-10px, 0, 0)
  3090. }
  3091. 90% {
  3092. -webkit-transform: translate3d(5px, 0, 0);
  3093. transform: translate3d(5px, 0, 0)
  3094. }
  3095. to {
  3096. -webkit-transform: translate3d(0, 0, 0);
  3097. transform: translate3d(0, 0, 0)
  3098. }
  3099. }
  3100. .bounceInLeft {
  3101. -webkit-animation-name: bounceInLeft;
  3102. animation-name: bounceInLeft
  3103. }
  3104. @-webkit-keyframes bounceInRight {
  3105. from,
  3106. 60%,
  3107. 75%,
  3108. 90%,
  3109. to {
  3110. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3111. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3112. }
  3113. from {
  3114. opacity: 0;
  3115. -webkit-transform: translate3d(3000px, 0, 0);
  3116. transform: translate3d(3000px, 0, 0)
  3117. }
  3118. 60% {
  3119. opacity: 1;
  3120. -webkit-transform: translate3d(-25px, 0, 0);
  3121. transform: translate3d(-25px, 0, 0)
  3122. }
  3123. 75% {
  3124. -webkit-transform: translate3d(10px, 0, 0);
  3125. transform: translate3d(10px, 0, 0)
  3126. }
  3127. 90% {
  3128. -webkit-transform: translate3d(-5px, 0, 0);
  3129. transform: translate3d(-5px, 0, 0)
  3130. }
  3131. to {
  3132. -webkit-transform: translate3d(0, 0, 0);
  3133. transform: translate3d(0, 0, 0)
  3134. }
  3135. }
  3136. @keyframes bounceInRight {
  3137. from,
  3138. 60%,
  3139. 75%,
  3140. 90%,
  3141. to {
  3142. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3143. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3144. }
  3145. from {
  3146. opacity: 0;
  3147. -webkit-transform: translate3d(3000px, 0, 0);
  3148. transform: translate3d(3000px, 0, 0)
  3149. }
  3150. 60% {
  3151. opacity: 1;
  3152. -webkit-transform: translate3d(-25px, 0, 0);
  3153. transform: translate3d(-25px, 0, 0)
  3154. }
  3155. 75% {
  3156. -webkit-transform: translate3d(10px, 0, 0);
  3157. transform: translate3d(10px, 0, 0)
  3158. }
  3159. 90% {
  3160. -webkit-transform: translate3d(-5px, 0, 0);
  3161. transform: translate3d(-5px, 0, 0)
  3162. }
  3163. to {
  3164. -webkit-transform: translate3d(0, 0, 0);
  3165. transform: translate3d(0, 0, 0)
  3166. }
  3167. }
  3168. .bounceInRight {
  3169. -webkit-animation-name: bounceInRight;
  3170. animation-name: bounceInRight
  3171. }
  3172. @-webkit-keyframes bounceInUp {
  3173. from,
  3174. 60%,
  3175. 75%,
  3176. 90%,
  3177. to {
  3178. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3179. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3180. }
  3181. from {
  3182. opacity: 0;
  3183. -webkit-transform: translate3d(0, 3000px, 0);
  3184. transform: translate3d(0, 3000px, 0)
  3185. }
  3186. 60% {
  3187. opacity: 1;
  3188. -webkit-transform: translate3d(0, -20px, 0);
  3189. transform: translate3d(0, -20px, 0)
  3190. }
  3191. 75% {
  3192. -webkit-transform: translate3d(0, 10px, 0);
  3193. transform: translate3d(0, 10px, 0)
  3194. }
  3195. 90% {
  3196. -webkit-transform: translate3d(0, -5px, 0);
  3197. transform: translate3d(0, -5px, 0)
  3198. }
  3199. to {
  3200. -webkit-transform: translate3d(0, 0, 0);
  3201. transform: translate3d(0, 0, 0)
  3202. }
  3203. }
  3204. @keyframes bounceInUp {
  3205. from,
  3206. 60%,
  3207. 75%,
  3208. 90%,
  3209. to {
  3210. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3211. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  3212. }
  3213. from {
  3214. opacity: 0;
  3215. -webkit-transform: translate3d(0, 3000px, 0);
  3216. transform: translate3d(0, 3000px, 0)
  3217. }
  3218. 60% {
  3219. opacity: 1;
  3220. -webkit-transform: translate3d(0, -20px, 0);
  3221. transform: translate3d(0, -20px, 0)
  3222. }
  3223. 75% {
  3224. -webkit-transform: translate3d(0, 10px, 0);
  3225. transform: translate3d(0, 10px, 0)
  3226. }
  3227. 90% {
  3228. -webkit-transform: translate3d(0, -5px, 0);
  3229. transform: translate3d(0, -5px, 0)
  3230. }
  3231. to {
  3232. -webkit-transform: translate3d(0, 0, 0);
  3233. transform: translate3d(0, 0, 0)
  3234. }
  3235. }
  3236. .bounceInUp {
  3237. -webkit-animation-name: bounceInUp;
  3238. animation-name: bounceInUp
  3239. }
  3240. @-webkit-keyframes bounceOut {
  3241. 20% {
  3242. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  3243. transform: scale3d(0.9, 0.9, 0.9)
  3244. }
  3245. 50%,
  3246. 55% {
  3247. opacity: 1;
  3248. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  3249. transform: scale3d(1.1, 1.1, 1.1)
  3250. }
  3251. to {
  3252. opacity: 0;
  3253. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3254. transform: scale3d(0.3, 0.3, 0.3)
  3255. }
  3256. }
  3257. @keyframes bounceOut {
  3258. 20% {
  3259. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  3260. transform: scale3d(0.9, 0.9, 0.9)
  3261. }
  3262. 50%,
  3263. 55% {
  3264. opacity: 1;
  3265. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  3266. transform: scale3d(1.1, 1.1, 1.1)
  3267. }
  3268. to {
  3269. opacity: 0;
  3270. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3271. transform: scale3d(0.3, 0.3, 0.3)
  3272. }
  3273. }
  3274. .bounceOut {
  3275. -webkit-animation-name: bounceOut;
  3276. animation-name: bounceOut;
  3277. -webkit-animation-duration: .75s;
  3278. animation-duration: .75s
  3279. }
  3280. @-webkit-keyframes bounceOutDown {
  3281. 20% {
  3282. -webkit-transform: translate3d(0, 10px, 0);
  3283. transform: translate3d(0, 10px, 0)
  3284. }
  3285. 40%,
  3286. 45% {
  3287. opacity: 1;
  3288. -webkit-transform: translate3d(0, -20px, 0);
  3289. transform: translate3d(0, -20px, 0)
  3290. }
  3291. to {
  3292. opacity: 0;
  3293. -webkit-transform: translate3d(0, 2000px, 0);
  3294. transform: translate3d(0, 2000px, 0)
  3295. }
  3296. }
  3297. @keyframes bounceOutDown {
  3298. 20% {
  3299. -webkit-transform: translate3d(0, 10px, 0);
  3300. transform: translate3d(0, 10px, 0)
  3301. }
  3302. 40%,
  3303. 45% {
  3304. opacity: 1;
  3305. -webkit-transform: translate3d(0, -20px, 0);
  3306. transform: translate3d(0, -20px, 0)
  3307. }
  3308. to {
  3309. opacity: 0;
  3310. -webkit-transform: translate3d(0, 2000px, 0);
  3311. transform: translate3d(0, 2000px, 0)
  3312. }
  3313. }
  3314. .bounceOutDown {
  3315. -webkit-animation-name: bounceOutDown;
  3316. animation-name: bounceOutDown
  3317. }
  3318. @-webkit-keyframes bounceOutLeft {
  3319. 20% {
  3320. opacity: 1;
  3321. -webkit-transform: translate3d(20px, 0, 0);
  3322. transform: translate3d(20px, 0, 0)
  3323. }
  3324. to {
  3325. opacity: 0;
  3326. -webkit-transform: translate3d(-2000px, 0, 0);
  3327. transform: translate3d(-2000px, 0, 0)
  3328. }
  3329. }
  3330. @keyframes bounceOutLeft {
  3331. 20% {
  3332. opacity: 1;
  3333. -webkit-transform: translate3d(20px, 0, 0);
  3334. transform: translate3d(20px, 0, 0)
  3335. }
  3336. to {
  3337. opacity: 0;
  3338. -webkit-transform: translate3d(-2000px, 0, 0);
  3339. transform: translate3d(-2000px, 0, 0)
  3340. }
  3341. }
  3342. .bounceOutLeft {
  3343. -webkit-animation-name: bounceOutLeft;
  3344. animation-name: bounceOutLeft
  3345. }
  3346. @-webkit-keyframes bounceOutRight {
  3347. 20% {
  3348. opacity: 1;
  3349. -webkit-transform: translate3d(-20px, 0, 0);
  3350. transform: translate3d(-20px, 0, 0)
  3351. }
  3352. to {
  3353. opacity: 0;
  3354. -webkit-transform: translate3d(2000px, 0, 0);
  3355. transform: translate3d(2000px, 0, 0)
  3356. }
  3357. }
  3358. @keyframes bounceOutRight {
  3359. 20% {
  3360. opacity: 1;
  3361. -webkit-transform: translate3d(-20px, 0, 0);
  3362. transform: translate3d(-20px, 0, 0)
  3363. }
  3364. to {
  3365. opacity: 0;
  3366. -webkit-transform: translate3d(2000px, 0, 0);
  3367. transform: translate3d(2000px, 0, 0)
  3368. }
  3369. }
  3370. .bounceOutRight {
  3371. -webkit-animation-name: bounceOutRight;
  3372. animation-name: bounceOutRight
  3373. }
  3374. @-webkit-keyframes bounceOutUp {
  3375. 20% {
  3376. -webkit-transform: translate3d(0, -10px, 0);
  3377. transform: translate3d(0, -10px, 0)
  3378. }
  3379. 40%,
  3380. 45% {
  3381. opacity: 1;
  3382. -webkit-transform: translate3d(0, 20px, 0);
  3383. transform: translate3d(0, 20px, 0)
  3384. }
  3385. to {
  3386. opacity: 0;
  3387. -webkit-transform: translate3d(0, -2000px, 0);
  3388. transform: translate3d(0, -2000px, 0)
  3389. }
  3390. }
  3391. @keyframes bounceOutUp {
  3392. 20% {
  3393. -webkit-transform: translate3d(0, -10px, 0);
  3394. transform: translate3d(0, -10px, 0)
  3395. }
  3396. 40%,
  3397. 45% {
  3398. opacity: 1;
  3399. -webkit-transform: translate3d(0, 20px, 0);
  3400. transform: translate3d(0, 20px, 0)
  3401. }
  3402. to {
  3403. opacity: 0;
  3404. -webkit-transform: translate3d(0, -2000px, 0);
  3405. transform: translate3d(0, -2000px, 0)
  3406. }
  3407. }
  3408. .bounceOutUp {
  3409. -webkit-animation-name: bounceOutUp;
  3410. animation-name: bounceOutUp
  3411. }
  3412. @-webkit-keyframes fadeInDownBig {
  3413. from {
  3414. opacity: 0;
  3415. -webkit-transform: translate3d(0, -2000px, 0);
  3416. transform: translate3d(0, -2000px, 0)
  3417. }
  3418. to {
  3419. opacity: 1;
  3420. -webkit-transform: translate3d(0, 0, 0);
  3421. transform: translate3d(0, 0, 0)
  3422. }
  3423. }
  3424. @keyframes fadeInDownBig {
  3425. from {
  3426. opacity: 0;
  3427. -webkit-transform: translate3d(0, -2000px, 0);
  3428. transform: translate3d(0, -2000px, 0)
  3429. }
  3430. to {
  3431. opacity: 1;
  3432. -webkit-transform: translate3d(0, 0, 0);
  3433. transform: translate3d(0, 0, 0)
  3434. }
  3435. }
  3436. .fadeInDownBig {
  3437. -webkit-animation-name: fadeInDownBig;
  3438. animation-name: fadeInDownBig
  3439. }
  3440. @-webkit-keyframes fadeInLeftBig {
  3441. from {
  3442. opacity: 0;
  3443. -webkit-transform: translate3d(-2000px, 0, 0);
  3444. transform: translate3d(-2000px, 0, 0)
  3445. }
  3446. to {
  3447. opacity: 1;
  3448. -webkit-transform: translate3d(0, 0, 0);
  3449. transform: translate3d(0, 0, 0)
  3450. }
  3451. }
  3452. @keyframes fadeInLeftBig {
  3453. from {
  3454. opacity: 0;
  3455. -webkit-transform: translate3d(-2000px, 0, 0);
  3456. transform: translate3d(-2000px, 0, 0)
  3457. }
  3458. to {
  3459. opacity: 1;
  3460. -webkit-transform: translate3d(0, 0, 0);
  3461. transform: translate3d(0, 0, 0)
  3462. }
  3463. }
  3464. .fadeInLeftBig {
  3465. -webkit-animation-name: fadeInLeftBig;
  3466. animation-name: fadeInLeftBig
  3467. }
  3468. @-webkit-keyframes fadeInRightBig {
  3469. from {
  3470. opacity: 0;
  3471. -webkit-transform: translate3d(2000px, 0, 0);
  3472. transform: translate3d(2000px, 0, 0)
  3473. }
  3474. to {
  3475. opacity: 1;
  3476. -webkit-transform: translate3d(0, 0, 0);
  3477. transform: translate3d(0, 0, 0)
  3478. }
  3479. }
  3480. @keyframes fadeInRightBig {
  3481. from {
  3482. opacity: 0;
  3483. -webkit-transform: translate3d(2000px, 0, 0);
  3484. transform: translate3d(2000px, 0, 0)
  3485. }
  3486. to {
  3487. opacity: 1;
  3488. -webkit-transform: translate3d(0, 0, 0);
  3489. transform: translate3d(0, 0, 0)
  3490. }
  3491. }
  3492. .fadeInRightBig {
  3493. -webkit-animation-name: fadeInRightBig;
  3494. animation-name: fadeInRightBig
  3495. }
  3496. @-webkit-keyframes fadeInUpBig {
  3497. from {
  3498. opacity: 0;
  3499. -webkit-transform: translate3d(0, 2000px, 0);
  3500. transform: translate3d(0, 2000px, 0)
  3501. }
  3502. to {
  3503. opacity: 1;
  3504. -webkit-transform: translate3d(0, 0, 0);
  3505. transform: translate3d(0, 0, 0)
  3506. }
  3507. }
  3508. @keyframes fadeInUpBig {
  3509. from {
  3510. opacity: 0;
  3511. -webkit-transform: translate3d(0, 2000px, 0);
  3512. transform: translate3d(0, 2000px, 0)
  3513. }
  3514. to {
  3515. opacity: 1;
  3516. -webkit-transform: translate3d(0, 0, 0);
  3517. transform: translate3d(0, 0, 0)
  3518. }
  3519. }
  3520. .fadeInUpBig {
  3521. -webkit-animation-name: fadeInUpBig;
  3522. animation-name: fadeInUpBig
  3523. }
  3524. @-webkit-keyframes fadeOutDownBig {
  3525. from {
  3526. opacity: 1
  3527. }
  3528. to {
  3529. opacity: 0;
  3530. -webkit-transform: translate3d(0, 2000px, 0);
  3531. transform: translate3d(0, 2000px, 0)
  3532. }
  3533. }
  3534. @keyframes fadeOutDownBig {
  3535. from {
  3536. opacity: 1
  3537. }
  3538. to {
  3539. opacity: 0;
  3540. -webkit-transform: translate3d(0, 2000px, 0);
  3541. transform: translate3d(0, 2000px, 0)
  3542. }
  3543. }
  3544. .fadeOutDownBig {
  3545. -webkit-animation-name: fadeOutDownBig;
  3546. animation-name: fadeOutDownBig
  3547. }
  3548. @-webkit-keyframes fadeOutLeftBig {
  3549. from {
  3550. opacity: 1
  3551. }
  3552. to {
  3553. opacity: 0;
  3554. -webkit-transform: translate3d(-2000px, 0, 0);
  3555. transform: translate3d(-2000px, 0, 0)
  3556. }
  3557. }
  3558. @keyframes fadeOutLeftBig {
  3559. from {
  3560. opacity: 1
  3561. }
  3562. to {
  3563. opacity: 0;
  3564. -webkit-transform: translate3d(-2000px, 0, 0);
  3565. transform: translate3d(-2000px, 0, 0)
  3566. }
  3567. }
  3568. .fadeOutLeftBig {
  3569. -webkit-animation-name: fadeOutLeftBig;
  3570. animation-name: fadeOutLeftBig
  3571. }
  3572. @-webkit-keyframes fadeOutRightBig {
  3573. from {
  3574. opacity: 1
  3575. }
  3576. to {
  3577. opacity: 0;
  3578. -webkit-transform: translate3d(2000px, 0, 0);
  3579. transform: translate3d(2000px, 0, 0)
  3580. }
  3581. }
  3582. @keyframes fadeOutRightBig {
  3583. from {
  3584. opacity: 1
  3585. }
  3586. to {
  3587. opacity: 0;
  3588. -webkit-transform: translate3d(2000px, 0, 0);
  3589. transform: translate3d(2000px, 0, 0)
  3590. }
  3591. }
  3592. .fadeOutRightBig {
  3593. -webkit-animation-name: fadeOutRightBig;
  3594. animation-name: fadeOutRightBig
  3595. }
  3596. @-webkit-keyframes fadeOutUpBig {
  3597. from {
  3598. opacity: 1
  3599. }
  3600. to {
  3601. opacity: 0;
  3602. -webkit-transform: translate3d(0, -2000px, 0);
  3603. transform: translate3d(0, -2000px, 0)
  3604. }
  3605. }
  3606. @keyframes fadeOutUpBig {
  3607. from {
  3608. opacity: 1
  3609. }
  3610. to {
  3611. opacity: 0;
  3612. -webkit-transform: translate3d(0, -2000px, 0);
  3613. transform: translate3d(0, -2000px, 0)
  3614. }
  3615. }
  3616. .fadeOutUpBig {
  3617. -webkit-animation-name: fadeOutUpBig;
  3618. animation-name: fadeOutUpBig
  3619. }
  3620. @-webkit-keyframes flip {
  3621. from {
  3622. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  3623. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  3624. -webkit-animation-timing-function: ease-out;
  3625. animation-timing-function: ease-out
  3626. }
  3627. 40% {
  3628. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  3629. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  3630. -webkit-animation-timing-function: ease-out;
  3631. animation-timing-function: ease-out
  3632. }
  3633. 50% {
  3634. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  3635. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  3636. -webkit-animation-timing-function: ease-in;
  3637. animation-timing-function: ease-in
  3638. }
  3639. 80% {
  3640. -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3641. transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3642. -webkit-animation-timing-function: ease-in;
  3643. animation-timing-function: ease-in
  3644. }
  3645. to {
  3646. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3647. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3648. -webkit-animation-timing-function: ease-in;
  3649. animation-timing-function: ease-in
  3650. }
  3651. }
  3652. @keyframes flip {
  3653. from {
  3654. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  3655. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  3656. -webkit-animation-timing-function: ease-out;
  3657. animation-timing-function: ease-out
  3658. }
  3659. 40% {
  3660. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  3661. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  3662. -webkit-animation-timing-function: ease-out;
  3663. animation-timing-function: ease-out
  3664. }
  3665. 50% {
  3666. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  3667. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  3668. -webkit-animation-timing-function: ease-in;
  3669. animation-timing-function: ease-in
  3670. }
  3671. 80% {
  3672. -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3673. transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3674. -webkit-animation-timing-function: ease-in;
  3675. animation-timing-function: ease-in
  3676. }
  3677. to {
  3678. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3679. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  3680. -webkit-animation-timing-function: ease-in;
  3681. animation-timing-function: ease-in
  3682. }
  3683. }
  3684. .flip {
  3685. -webkit-backface-visibility: visible;
  3686. backface-visibility: visible;
  3687. -webkit-animation-name: flip;
  3688. animation-name: flip
  3689. }
  3690. @-webkit-keyframes flipInX {
  3691. from {
  3692. opacity: 0;
  3693. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3694. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3695. -webkit-animation-timing-function: ease-in;
  3696. animation-timing-function: ease-in
  3697. }
  3698. 40% {
  3699. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3700. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3701. -webkit-animation-timing-function: ease-in;
  3702. animation-timing-function: ease-in
  3703. }
  3704. 60% {
  3705. opacity: 1;
  3706. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  3707. transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
  3708. }
  3709. 80% {
  3710. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  3711. transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  3712. }
  3713. to {
  3714. -webkit-transform: perspective(400px);
  3715. transform: perspective(400px)
  3716. }
  3717. }
  3718. @keyframes flipInX {
  3719. from {
  3720. opacity: 0;
  3721. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3722. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3723. -webkit-animation-timing-function: ease-in;
  3724. animation-timing-function: ease-in
  3725. }
  3726. 40% {
  3727. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3728. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3729. -webkit-animation-timing-function: ease-in;
  3730. animation-timing-function: ease-in
  3731. }
  3732. 60% {
  3733. opacity: 1;
  3734. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  3735. transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
  3736. }
  3737. 80% {
  3738. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  3739. transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  3740. }
  3741. to {
  3742. -webkit-transform: perspective(400px);
  3743. transform: perspective(400px)
  3744. }
  3745. }
  3746. .flipInX {
  3747. -webkit-backface-visibility: visible;
  3748. backface-visibility: visible;
  3749. -webkit-animation-name: flipInX;
  3750. animation-name: flipInX
  3751. }
  3752. @-webkit-keyframes flipInY {
  3753. from {
  3754. opacity: 0;
  3755. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3756. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3757. -webkit-animation-timing-function: ease-in;
  3758. animation-timing-function: ease-in
  3759. }
  3760. 40% {
  3761. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  3762. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  3763. -webkit-animation-timing-function: ease-in;
  3764. animation-timing-function: ease-in
  3765. }
  3766. 60% {
  3767. opacity: 1;
  3768. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  3769. transform: perspective(400px) rotate3d(0, 1, 0, 10deg)
  3770. }
  3771. 80% {
  3772. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  3773. transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  3774. }
  3775. to {
  3776. -webkit-transform: perspective(400px);
  3777. transform: perspective(400px)
  3778. }
  3779. }
  3780. @keyframes flipInY {
  3781. from {
  3782. opacity: 0;
  3783. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3784. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3785. -webkit-animation-timing-function: ease-in;
  3786. animation-timing-function: ease-in
  3787. }
  3788. 40% {
  3789. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  3790. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  3791. -webkit-animation-timing-function: ease-in;
  3792. animation-timing-function: ease-in
  3793. }
  3794. 60% {
  3795. opacity: 1;
  3796. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  3797. transform: perspective(400px) rotate3d(0, 1, 0, 10deg)
  3798. }
  3799. 80% {
  3800. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  3801. transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  3802. }
  3803. to {
  3804. -webkit-transform: perspective(400px);
  3805. transform: perspective(400px)
  3806. }
  3807. }
  3808. .flipInY {
  3809. -webkit-backface-visibility: visible;
  3810. backface-visibility: visible;
  3811. -webkit-animation-name: flipInY;
  3812. animation-name: flipInY
  3813. }
  3814. @-webkit-keyframes flipOutX {
  3815. from {
  3816. -webkit-transform: perspective(400px);
  3817. transform: perspective(400px)
  3818. }
  3819. 30% {
  3820. opacity: 1;
  3821. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3822. transform: perspective(400px) rotate3d(1, 0, 0, -20deg)
  3823. }
  3824. to {
  3825. opacity: 0;
  3826. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3827. transform: perspective(400px) rotate3d(1, 0, 0, 90deg)
  3828. }
  3829. }
  3830. @keyframes flipOutX {
  3831. from {
  3832. -webkit-transform: perspective(400px);
  3833. transform: perspective(400px)
  3834. }
  3835. 30% {
  3836. opacity: 1;
  3837. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  3838. transform: perspective(400px) rotate3d(1, 0, 0, -20deg)
  3839. }
  3840. to {
  3841. opacity: 0;
  3842. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  3843. transform: perspective(400px) rotate3d(1, 0, 0, 90deg)
  3844. }
  3845. }
  3846. .flipOutX {
  3847. -webkit-animation-name: flipOutX;
  3848. animation-name: flipOutX;
  3849. -webkit-animation-duration: .75s;
  3850. animation-duration: .75s;
  3851. -webkit-backface-visibility: visible;
  3852. backface-visibility: visible
  3853. }
  3854. @-webkit-keyframes flipOutY {
  3855. from {
  3856. -webkit-transform: perspective(400px);
  3857. transform: perspective(400px)
  3858. }
  3859. 30% {
  3860. opacity: 1;
  3861. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  3862. transform: perspective(400px) rotate3d(0, 1, 0, -15deg)
  3863. }
  3864. to {
  3865. opacity: 0;
  3866. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3867. transform: perspective(400px) rotate3d(0, 1, 0, 90deg)
  3868. }
  3869. }
  3870. @keyframes flipOutY {
  3871. from {
  3872. -webkit-transform: perspective(400px);
  3873. transform: perspective(400px)
  3874. }
  3875. 30% {
  3876. opacity: 1;
  3877. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  3878. transform: perspective(400px) rotate3d(0, 1, 0, -15deg)
  3879. }
  3880. to {
  3881. opacity: 0;
  3882. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  3883. transform: perspective(400px) rotate3d(0, 1, 0, 90deg)
  3884. }
  3885. }
  3886. .flipOutY {
  3887. -webkit-animation-name: flipOutY;
  3888. animation-name: flipOutY;
  3889. -webkit-animation-duration: .75s;
  3890. animation-duration: .75s;
  3891. -webkit-backface-visibility: visible;
  3892. backface-visibility: visible
  3893. }
  3894. @-webkit-keyframes lightSpeedIn {
  3895. from {
  3896. opacity: 0;
  3897. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  3898. transform: translate3d(100%, 0, 0) skewX(-30deg)
  3899. }
  3900. 60% {
  3901. opacity: 1;
  3902. -webkit-transform: skewX(20deg);
  3903. transform: skewX(20deg)
  3904. }
  3905. 80% {
  3906. -webkit-transform: skewX(-5deg);
  3907. transform: skewX(-5deg)
  3908. }
  3909. to {
  3910. -webkit-transform: translate3d(0, 0, 0);
  3911. transform: translate3d(0, 0, 0)
  3912. }
  3913. }
  3914. @keyframes lightSpeedIn {
  3915. from {
  3916. opacity: 0;
  3917. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  3918. transform: translate3d(100%, 0, 0) skewX(-30deg)
  3919. }
  3920. 60% {
  3921. opacity: 1;
  3922. -webkit-transform: skewX(20deg);
  3923. transform: skewX(20deg)
  3924. }
  3925. 80% {
  3926. -webkit-transform: skewX(-5deg);
  3927. transform: skewX(-5deg)
  3928. }
  3929. to {
  3930. -webkit-transform: translate3d(0, 0, 0);
  3931. transform: translate3d(0, 0, 0)
  3932. }
  3933. }
  3934. .lightSpeedIn {
  3935. -webkit-animation-name: lightSpeedIn;
  3936. animation-name: lightSpeedIn;
  3937. -webkit-animation-timing-function: ease-out;
  3938. animation-timing-function: ease-out
  3939. }
  3940. @-webkit-keyframes lightSpeedOut {
  3941. from {
  3942. opacity: 1
  3943. }
  3944. to {
  3945. opacity: 0;
  3946. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  3947. transform: translate3d(100%, 0, 0) skewX(30deg)
  3948. }
  3949. }
  3950. @keyframes lightSpeedOut {
  3951. from {
  3952. opacity: 1
  3953. }
  3954. to {
  3955. opacity: 0;
  3956. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  3957. transform: translate3d(100%, 0, 0) skewX(30deg)
  3958. }
  3959. }
  3960. .lightSpeedOut {
  3961. -webkit-animation-name: lightSpeedOut;
  3962. animation-name: lightSpeedOut;
  3963. -webkit-animation-timing-function: ease-in;
  3964. animation-timing-function: ease-in
  3965. }
  3966. @-webkit-keyframes rotateIn {
  3967. from {
  3968. opacity: 0;
  3969. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  3970. transform: rotate3d(0, 0, 1, -200deg);
  3971. -webkit-transform-origin: center;
  3972. transform-origin: center
  3973. }
  3974. to {
  3975. opacity: 1;
  3976. -webkit-transform: translate3d(0, 0, 0);
  3977. transform: translate3d(0, 0, 0);
  3978. -webkit-transform-origin: center;
  3979. transform-origin: center
  3980. }
  3981. }
  3982. @keyframes rotateIn {
  3983. from {
  3984. opacity: 0;
  3985. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  3986. transform: rotate3d(0, 0, 1, -200deg);
  3987. -webkit-transform-origin: center;
  3988. transform-origin: center
  3989. }
  3990. to {
  3991. opacity: 1;
  3992. -webkit-transform: translate3d(0, 0, 0);
  3993. transform: translate3d(0, 0, 0);
  3994. -webkit-transform-origin: center;
  3995. transform-origin: center
  3996. }
  3997. }
  3998. .rotateIn {
  3999. -webkit-animation-name: rotateIn;
  4000. animation-name: rotateIn
  4001. }
  4002. @-webkit-keyframes rotateInDownLeft {
  4003. from {
  4004. opacity: 0;
  4005. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4006. transform: rotate3d(0, 0, 1, -45deg);
  4007. -webkit-transform-origin: left bottom;
  4008. transform-origin: left bottom
  4009. }
  4010. to {
  4011. opacity: 1;
  4012. -webkit-transform: translate3d(0, 0, 0);
  4013. transform: translate3d(0, 0, 0);
  4014. -webkit-transform-origin: left bottom;
  4015. transform-origin: left bottom
  4016. }
  4017. }
  4018. @keyframes rotateInDownLeft {
  4019. from {
  4020. opacity: 0;
  4021. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4022. transform: rotate3d(0, 0, 1, -45deg);
  4023. -webkit-transform-origin: left bottom;
  4024. transform-origin: left bottom
  4025. }
  4026. to {
  4027. opacity: 1;
  4028. -webkit-transform: translate3d(0, 0, 0);
  4029. transform: translate3d(0, 0, 0);
  4030. -webkit-transform-origin: left bottom;
  4031. transform-origin: left bottom
  4032. }
  4033. }
  4034. .rotateInDownLeft {
  4035. -webkit-animation-name: rotateInDownLeft;
  4036. animation-name: rotateInDownLeft
  4037. }
  4038. @-webkit-keyframes rotateInDownRight {
  4039. from {
  4040. opacity: 0;
  4041. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4042. transform: rotate3d(0, 0, 1, 45deg);
  4043. -webkit-transform-origin: right bottom;
  4044. transform-origin: right bottom
  4045. }
  4046. to {
  4047. opacity: 1;
  4048. -webkit-transform: translate3d(0, 0, 0);
  4049. transform: translate3d(0, 0, 0);
  4050. -webkit-transform-origin: right bottom;
  4051. transform-origin: right bottom
  4052. }
  4053. }
  4054. @keyframes rotateInDownRight {
  4055. from {
  4056. opacity: 0;
  4057. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4058. transform: rotate3d(0, 0, 1, 45deg);
  4059. -webkit-transform-origin: right bottom;
  4060. transform-origin: right bottom
  4061. }
  4062. to {
  4063. opacity: 1;
  4064. -webkit-transform: translate3d(0, 0, 0);
  4065. transform: translate3d(0, 0, 0);
  4066. -webkit-transform-origin: right bottom;
  4067. transform-origin: right bottom
  4068. }
  4069. }
  4070. .rotateInDownRight {
  4071. -webkit-animation-name: rotateInDownRight;
  4072. animation-name: rotateInDownRight
  4073. }
  4074. @-webkit-keyframes rotateInUpLeft {
  4075. from {
  4076. opacity: 0;
  4077. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4078. transform: rotate3d(0, 0, 1, 45deg);
  4079. -webkit-transform-origin: left bottom;
  4080. transform-origin: left bottom
  4081. }
  4082. to {
  4083. opacity: 1;
  4084. -webkit-transform: translate3d(0, 0, 0);
  4085. transform: translate3d(0, 0, 0);
  4086. -webkit-transform-origin: left bottom;
  4087. transform-origin: left bottom
  4088. }
  4089. }
  4090. @keyframes rotateInUpLeft {
  4091. from {
  4092. opacity: 0;
  4093. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4094. transform: rotate3d(0, 0, 1, 45deg);
  4095. -webkit-transform-origin: left bottom;
  4096. transform-origin: left bottom
  4097. }
  4098. to {
  4099. opacity: 1;
  4100. -webkit-transform: translate3d(0, 0, 0);
  4101. transform: translate3d(0, 0, 0);
  4102. -webkit-transform-origin: left bottom;
  4103. transform-origin: left bottom
  4104. }
  4105. }
  4106. .rotateInUpLeft {
  4107. -webkit-animation-name: rotateInUpLeft;
  4108. animation-name: rotateInUpLeft
  4109. }
  4110. @-webkit-keyframes rotateInUpRight {
  4111. from {
  4112. opacity: 0;
  4113. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  4114. transform: rotate3d(0, 0, 1, -90deg);
  4115. -webkit-transform-origin: right bottom;
  4116. transform-origin: right bottom
  4117. }
  4118. to {
  4119. opacity: 1;
  4120. -webkit-transform: translate3d(0, 0, 0);
  4121. transform: translate3d(0, 0, 0);
  4122. -webkit-transform-origin: right bottom;
  4123. transform-origin: right bottom
  4124. }
  4125. }
  4126. @keyframes rotateInUpRight {
  4127. from {
  4128. opacity: 0;
  4129. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  4130. transform: rotate3d(0, 0, 1, -90deg);
  4131. -webkit-transform-origin: right bottom;
  4132. transform-origin: right bottom
  4133. }
  4134. to {
  4135. opacity: 1;
  4136. -webkit-transform: translate3d(0, 0, 0);
  4137. transform: translate3d(0, 0, 0);
  4138. -webkit-transform-origin: right bottom;
  4139. transform-origin: right bottom
  4140. }
  4141. }
  4142. .rotateInUpRight {
  4143. -webkit-animation-name: rotateInUpRight;
  4144. animation-name: rotateInUpRight
  4145. }
  4146. @-webkit-keyframes rotateOut {
  4147. from {
  4148. opacity: 1;
  4149. -webkit-transform-origin: center;
  4150. transform-origin: center
  4151. }
  4152. to {
  4153. opacity: 0;
  4154. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  4155. transform: rotate3d(0, 0, 1, 200deg);
  4156. -webkit-transform-origin: center;
  4157. transform-origin: center
  4158. }
  4159. }
  4160. @keyframes rotateOut {
  4161. from {
  4162. opacity: 1;
  4163. -webkit-transform-origin: center;
  4164. transform-origin: center
  4165. }
  4166. to {
  4167. opacity: 0;
  4168. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  4169. transform: rotate3d(0, 0, 1, 200deg);
  4170. -webkit-transform-origin: center;
  4171. transform-origin: center
  4172. }
  4173. }
  4174. .rotateOut {
  4175. -webkit-animation-name: rotateOut;
  4176. animation-name: rotateOut
  4177. }
  4178. @-webkit-keyframes rotateOutDownLeft {
  4179. from {
  4180. opacity: 1;
  4181. -webkit-transform-origin: left bottom;
  4182. transform-origin: left bottom
  4183. }
  4184. to {
  4185. opacity: 0;
  4186. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4187. transform: rotate3d(0, 0, 1, 45deg);
  4188. -webkit-transform-origin: left bottom;
  4189. transform-origin: left bottom
  4190. }
  4191. }
  4192. @keyframes rotateOutDownLeft {
  4193. from {
  4194. opacity: 1;
  4195. -webkit-transform-origin: left bottom;
  4196. transform-origin: left bottom
  4197. }
  4198. to {
  4199. opacity: 0;
  4200. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  4201. transform: rotate3d(0, 0, 1, 45deg);
  4202. -webkit-transform-origin: left bottom;
  4203. transform-origin: left bottom
  4204. }
  4205. }
  4206. .rotateOutDownLeft {
  4207. -webkit-animation-name: rotateOutDownLeft;
  4208. animation-name: rotateOutDownLeft
  4209. }
  4210. @-webkit-keyframes rotateOutDownRight {
  4211. from {
  4212. opacity: 1;
  4213. -webkit-transform-origin: right bottom;
  4214. transform-origin: right bottom
  4215. }
  4216. to {
  4217. opacity: 0;
  4218. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4219. transform: rotate3d(0, 0, 1, -45deg);
  4220. -webkit-transform-origin: right bottom;
  4221. transform-origin: right bottom
  4222. }
  4223. }
  4224. @keyframes rotateOutDownRight {
  4225. from {
  4226. opacity: 1;
  4227. -webkit-transform-origin: right bottom;
  4228. transform-origin: right bottom
  4229. }
  4230. to {
  4231. opacity: 0;
  4232. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4233. transform: rotate3d(0, 0, 1, -45deg);
  4234. -webkit-transform-origin: right bottom;
  4235. transform-origin: right bottom
  4236. }
  4237. }
  4238. .rotateOutDownRight {
  4239. -webkit-animation-name: rotateOutDownRight;
  4240. animation-name: rotateOutDownRight
  4241. }
  4242. @-webkit-keyframes rotateOutUpLeft {
  4243. from {
  4244. opacity: 1;
  4245. -webkit-transform-origin: left bottom;
  4246. transform-origin: left bottom
  4247. }
  4248. to {
  4249. opacity: 0;
  4250. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4251. transform: rotate3d(0, 0, 1, -45deg);
  4252. -webkit-transform-origin: left bottom;
  4253. transform-origin: left bottom
  4254. }
  4255. }
  4256. @keyframes rotateOutUpLeft {
  4257. from {
  4258. opacity: 1;
  4259. -webkit-transform-origin: left bottom;
  4260. transform-origin: left bottom
  4261. }
  4262. to {
  4263. opacity: 0;
  4264. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  4265. transform: rotate3d(0, 0, 1, -45deg);
  4266. -webkit-transform-origin: left bottom;
  4267. transform-origin: left bottom
  4268. }
  4269. }
  4270. .rotateOutUpLeft {
  4271. -webkit-animation-name: rotateOutUpLeft;
  4272. animation-name: rotateOutUpLeft
  4273. }
  4274. @-webkit-keyframes rotateOutUpRight {
  4275. from {
  4276. opacity: 1;
  4277. -webkit-transform-origin: right bottom;
  4278. transform-origin: right bottom
  4279. }
  4280. to {
  4281. opacity: 0;
  4282. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  4283. transform: rotate3d(0, 0, 1, 90deg);
  4284. -webkit-transform-origin: right bottom;
  4285. transform-origin: right bottom
  4286. }
  4287. }
  4288. @keyframes rotateOutUpRight {
  4289. from {
  4290. opacity: 1;
  4291. -webkit-transform-origin: right bottom;
  4292. transform-origin: right bottom
  4293. }
  4294. to {
  4295. opacity: 0;
  4296. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  4297. transform: rotate3d(0, 0, 1, 90deg);
  4298. -webkit-transform-origin: right bottom;
  4299. transform-origin: right bottom
  4300. }
  4301. }
  4302. .rotateOutUpRight {
  4303. -webkit-animation-name: rotateOutUpRight;
  4304. animation-name: rotateOutUpRight
  4305. }
  4306. @-webkit-keyframes hinge {
  4307. 0% {
  4308. -webkit-transform-origin: top left;
  4309. transform-origin: top left;
  4310. -webkit-animation-timing-function: ease-in-out;
  4311. animation-timing-function: ease-in-out
  4312. }
  4313. 20%,
  4314. 60% {
  4315. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  4316. transform: rotate3d(0, 0, 1, 80deg);
  4317. -webkit-transform-origin: top left;
  4318. transform-origin: top left;
  4319. -webkit-animation-timing-function: ease-in-out;
  4320. animation-timing-function: ease-in-out
  4321. }
  4322. 40%,
  4323. 80% {
  4324. opacity: 1;
  4325. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  4326. transform: rotate3d(0, 0, 1, 60deg);
  4327. -webkit-transform-origin: top left;
  4328. transform-origin: top left;
  4329. -webkit-animation-timing-function: ease-in-out;
  4330. animation-timing-function: ease-in-out
  4331. }
  4332. to {
  4333. opacity: 0;
  4334. -webkit-transform: translate3d(0, 700px, 0);
  4335. transform: translate3d(0, 700px, 0)
  4336. }
  4337. }
  4338. @keyframes hinge {
  4339. 0% {
  4340. -webkit-transform-origin: top left;
  4341. transform-origin: top left;
  4342. -webkit-animation-timing-function: ease-in-out;
  4343. animation-timing-function: ease-in-out
  4344. }
  4345. 20%,
  4346. 60% {
  4347. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  4348. transform: rotate3d(0, 0, 1, 80deg);
  4349. -webkit-transform-origin: top left;
  4350. transform-origin: top left;
  4351. -webkit-animation-timing-function: ease-in-out;
  4352. animation-timing-function: ease-in-out
  4353. }
  4354. 40%,
  4355. 80% {
  4356. opacity: 1;
  4357. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  4358. transform: rotate3d(0, 0, 1, 60deg);
  4359. -webkit-transform-origin: top left;
  4360. transform-origin: top left;
  4361. -webkit-animation-timing-function: ease-in-out;
  4362. animation-timing-function: ease-in-out
  4363. }
  4364. to {
  4365. opacity: 0;
  4366. -webkit-transform: translate3d(0, 700px, 0);
  4367. transform: translate3d(0, 700px, 0)
  4368. }
  4369. }
  4370. .hinge {
  4371. -webkit-animation-name: hinge;
  4372. animation-name: hinge;
  4373. -webkit-animation-duration: 2s;
  4374. animation-duration: 2s
  4375. }
  4376. @-webkit-keyframes jackInTheBox {
  4377. from {
  4378. opacity: 0;
  4379. -webkit-transform: scale(0.1) rotate(30deg);
  4380. transform: scale(0.1) rotate(30deg);
  4381. -webkit-transform-origin: center bottom;
  4382. transform-origin: center bottom
  4383. }
  4384. 50% {
  4385. -webkit-transform: rotate(-10deg);
  4386. transform: rotate(-10deg)
  4387. }
  4388. 70% {
  4389. -webkit-transform: rotate(3deg);
  4390. transform: rotate(3deg)
  4391. }
  4392. to {
  4393. opacity: 1;
  4394. -webkit-transform: scale(1);
  4395. transform: scale(1)
  4396. }
  4397. }
  4398. @keyframes jackInTheBox {
  4399. from {
  4400. opacity: 0;
  4401. -webkit-transform: scale(0.1) rotate(30deg);
  4402. transform: scale(0.1) rotate(30deg);
  4403. -webkit-transform-origin: center bottom;
  4404. transform-origin: center bottom
  4405. }
  4406. 50% {
  4407. -webkit-transform: rotate(-10deg);
  4408. transform: rotate(-10deg)
  4409. }
  4410. 70% {
  4411. -webkit-transform: rotate(3deg);
  4412. transform: rotate(3deg)
  4413. }
  4414. to {
  4415. opacity: 1;
  4416. -webkit-transform: scale(1);
  4417. transform: scale(1)
  4418. }
  4419. }
  4420. .jackInTheBox {
  4421. -webkit-animation-name: jackInTheBox;
  4422. animation-name: jackInTheBox
  4423. }
  4424. @-webkit-keyframes rollIn {
  4425. from {
  4426. opacity: 0;
  4427. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  4428. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  4429. }
  4430. to {
  4431. opacity: 1;
  4432. -webkit-transform: translate3d(0, 0, 0);
  4433. transform: translate3d(0, 0, 0)
  4434. }
  4435. }
  4436. @keyframes rollIn {
  4437. from {
  4438. opacity: 0;
  4439. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  4440. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  4441. }
  4442. to {
  4443. opacity: 1;
  4444. -webkit-transform: translate3d(0, 0, 0);
  4445. transform: translate3d(0, 0, 0)
  4446. }
  4447. }
  4448. .rollIn {
  4449. -webkit-animation-name: rollIn;
  4450. animation-name: rollIn
  4451. }
  4452. @-webkit-keyframes rollOut {
  4453. from {
  4454. opacity: 1
  4455. }
  4456. to {
  4457. opacity: 0;
  4458. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  4459. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  4460. }
  4461. }
  4462. @keyframes rollOut {
  4463. from {
  4464. opacity: 1
  4465. }
  4466. to {
  4467. opacity: 0;
  4468. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  4469. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  4470. }
  4471. }
  4472. .rollOut {
  4473. -webkit-animation-name: rollOut;
  4474. animation-name: rollOut
  4475. }
  4476. @-webkit-keyframes zoomIn {
  4477. from {
  4478. opacity: 0;
  4479. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  4480. transform: scale3d(0.3, 0.3, 0.3)
  4481. }
  4482. 50% {
  4483. opacity: 1
  4484. }
  4485. }
  4486. @keyframes zoomIn {
  4487. from {
  4488. opacity: 0;
  4489. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  4490. transform: scale3d(0.3, 0.3, 0.3)
  4491. }
  4492. 50% {
  4493. opacity: 1
  4494. }
  4495. }
  4496. .zoomIn {
  4497. -webkit-animation-name: zoomIn;
  4498. animation-name: zoomIn
  4499. }
  4500. @-webkit-keyframes zoomInDown {
  4501. from {
  4502. opacity: 0;
  4503. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  4504. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  4505. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4506. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4507. }
  4508. 60% {
  4509. opacity: 1;
  4510. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4511. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4512. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4513. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4514. }
  4515. }
  4516. @keyframes zoomInDown {
  4517. from {
  4518. opacity: 0;
  4519. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  4520. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  4521. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4522. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4523. }
  4524. 60% {
  4525. opacity: 1;
  4526. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4527. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4528. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4529. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4530. }
  4531. }
  4532. .zoomInDown {
  4533. -webkit-animation-name: zoomInDown;
  4534. animation-name: zoomInDown
  4535. }
  4536. @-webkit-keyframes zoomInLeft {
  4537. from {
  4538. opacity: 0;
  4539. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  4540. transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  4541. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4542. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4543. }
  4544. 60% {
  4545. opacity: 1;
  4546. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  4547. transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  4548. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4549. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4550. }
  4551. }
  4552. @keyframes zoomInLeft {
  4553. from {
  4554. opacity: 0;
  4555. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  4556. transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  4557. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4558. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4559. }
  4560. 60% {
  4561. opacity: 1;
  4562. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  4563. transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  4564. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4565. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4566. }
  4567. }
  4568. .zoomInLeft {
  4569. -webkit-animation-name: zoomInLeft;
  4570. animation-name: zoomInLeft
  4571. }
  4572. @-webkit-keyframes zoomInRight {
  4573. from {
  4574. opacity: 0;
  4575. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  4576. transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  4577. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4578. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4579. }
  4580. 60% {
  4581. opacity: 1;
  4582. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  4583. transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  4584. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4585. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4586. }
  4587. }
  4588. @keyframes zoomInRight {
  4589. from {
  4590. opacity: 0;
  4591. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  4592. transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  4593. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4594. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4595. }
  4596. 60% {
  4597. opacity: 1;
  4598. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  4599. transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  4600. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4601. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4602. }
  4603. }
  4604. .zoomInRight {
  4605. -webkit-animation-name: zoomInRight;
  4606. animation-name: zoomInRight
  4607. }
  4608. @-webkit-keyframes zoomInUp {
  4609. from {
  4610. opacity: 0;
  4611. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  4612. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  4613. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4614. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4615. }
  4616. 60% {
  4617. opacity: 1;
  4618. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4619. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4620. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4621. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4622. }
  4623. }
  4624. @keyframes zoomInUp {
  4625. from {
  4626. opacity: 0;
  4627. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  4628. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  4629. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4630. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4631. }
  4632. 60% {
  4633. opacity: 1;
  4634. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4635. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4636. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4637. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4638. }
  4639. }
  4640. .zoomInUp {
  4641. -webkit-animation-name: zoomInUp;
  4642. animation-name: zoomInUp
  4643. }
  4644. @-webkit-keyframes zoomOut {
  4645. from {
  4646. opacity: 1
  4647. }
  4648. 50% {
  4649. opacity: 0;
  4650. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  4651. transform: scale3d(0.3, 0.3, 0.3)
  4652. }
  4653. to {
  4654. opacity: 0
  4655. }
  4656. }
  4657. @keyframes zoomOut {
  4658. from {
  4659. opacity: 1
  4660. }
  4661. 50% {
  4662. opacity: 0;
  4663. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  4664. transform: scale3d(0.3, 0.3, 0.3)
  4665. }
  4666. to {
  4667. opacity: 0
  4668. }
  4669. }
  4670. .zoomOut {
  4671. -webkit-animation-name: zoomOut;
  4672. animation-name: zoomOut
  4673. }
  4674. @-webkit-keyframes zoomOutDown {
  4675. 40% {
  4676. opacity: 1;
  4677. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4678. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4679. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4680. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4681. }
  4682. to {
  4683. opacity: 0;
  4684. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  4685. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  4686. -webkit-transform-origin: center bottom;
  4687. transform-origin: center bottom;
  4688. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4689. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4690. }
  4691. }
  4692. @keyframes zoomOutDown {
  4693. 40% {
  4694. opacity: 1;
  4695. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4696. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  4697. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4698. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4699. }
  4700. to {
  4701. opacity: 0;
  4702. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  4703. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  4704. -webkit-transform-origin: center bottom;
  4705. transform-origin: center bottom;
  4706. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4707. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4708. }
  4709. }
  4710. .zoomOutDown {
  4711. -webkit-animation-name: zoomOutDown;
  4712. animation-name: zoomOutDown
  4713. }
  4714. @-webkit-keyframes zoomOutLeft {
  4715. 40% {
  4716. opacity: 1;
  4717. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  4718. transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  4719. }
  4720. to {
  4721. opacity: 0;
  4722. -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
  4723. transform: scale(0.1) translate3d(-2000px, 0, 0);
  4724. -webkit-transform-origin: left center;
  4725. transform-origin: left center
  4726. }
  4727. }
  4728. @keyframes zoomOutLeft {
  4729. 40% {
  4730. opacity: 1;
  4731. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  4732. transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  4733. }
  4734. to {
  4735. opacity: 0;
  4736. -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
  4737. transform: scale(0.1) translate3d(-2000px, 0, 0);
  4738. -webkit-transform-origin: left center;
  4739. transform-origin: left center
  4740. }
  4741. }
  4742. .zoomOutLeft {
  4743. -webkit-animation-name: zoomOutLeft;
  4744. animation-name: zoomOutLeft
  4745. }
  4746. @-webkit-keyframes zoomOutRight {
  4747. 40% {
  4748. opacity: 1;
  4749. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  4750. transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  4751. }
  4752. to {
  4753. opacity: 0;
  4754. -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
  4755. transform: scale(0.1) translate3d(2000px, 0, 0);
  4756. -webkit-transform-origin: right center;
  4757. transform-origin: right center
  4758. }
  4759. }
  4760. @keyframes zoomOutRight {
  4761. 40% {
  4762. opacity: 1;
  4763. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  4764. transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  4765. }
  4766. to {
  4767. opacity: 0;
  4768. -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
  4769. transform: scale(0.1) translate3d(2000px, 0, 0);
  4770. -webkit-transform-origin: right center;
  4771. transform-origin: right center
  4772. }
  4773. }
  4774. .zoomOutRight {
  4775. -webkit-animation-name: zoomOutRight;
  4776. animation-name: zoomOutRight
  4777. }
  4778. @-webkit-keyframes zoomOutUp {
  4779. 40% {
  4780. opacity: 1;
  4781. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4782. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4783. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4784. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4785. }
  4786. to {
  4787. opacity: 0;
  4788. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  4789. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  4790. -webkit-transform-origin: center bottom;
  4791. transform-origin: center bottom;
  4792. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4793. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4794. }
  4795. }
  4796. @keyframes zoomOutUp {
  4797. 40% {
  4798. opacity: 1;
  4799. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4800. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  4801. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  4802. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  4803. }
  4804. to {
  4805. opacity: 0;
  4806. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  4807. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  4808. -webkit-transform-origin: center bottom;
  4809. transform-origin: center bottom;
  4810. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  4811. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  4812. }
  4813. }
  4814. .zoomOutUp {
  4815. -webkit-animation-name: zoomOutUp;
  4816. animation-name: zoomOutUp
  4817. }
  4818. @-webkit-keyframes slideInDown {
  4819. from {
  4820. visibility: visible;
  4821. -webkit-transform: translate3d(0, -100%, 0);
  4822. transform: translate3d(0, -100%, 0)
  4823. }
  4824. to {
  4825. -webkit-transform: translate3d(0, 0, 0);
  4826. transform: translate3d(0, 0, 0)
  4827. }
  4828. }
  4829. @keyframes slideInDown {
  4830. from {
  4831. visibility: visible;
  4832. -webkit-transform: translate3d(0, -100%, 0);
  4833. transform: translate3d(0, -100%, 0)
  4834. }
  4835. to {
  4836. -webkit-transform: translate3d(0, 0, 0);
  4837. transform: translate3d(0, 0, 0)
  4838. }
  4839. }
  4840. .slideInDown {
  4841. -webkit-animation-name: slideInDown;
  4842. animation-name: slideInDown
  4843. }
  4844. @-webkit-keyframes slideInLeft {
  4845. from {
  4846. visibility: visible;
  4847. -webkit-transform: translate3d(-100%, 0, 0);
  4848. transform: translate3d(-100%, 0, 0)
  4849. }
  4850. to {
  4851. -webkit-transform: translate3d(0, 0, 0);
  4852. transform: translate3d(0, 0, 0)
  4853. }
  4854. }
  4855. @keyframes slideInLeft {
  4856. from {
  4857. visibility: visible;
  4858. -webkit-transform: translate3d(-100%, 0, 0);
  4859. transform: translate3d(-100%, 0, 0)
  4860. }
  4861. to {
  4862. -webkit-transform: translate3d(0, 0, 0);
  4863. transform: translate3d(0, 0, 0)
  4864. }
  4865. }
  4866. .slideInLeft {
  4867. -webkit-animation-name: slideInLeft;
  4868. animation-name: slideInLeft
  4869. }
  4870. @-webkit-keyframes slideInRight {
  4871. from {
  4872. visibility: visible;
  4873. -webkit-transform: translate3d(100%, 0, 0);
  4874. transform: translate3d(100%, 0, 0)
  4875. }
  4876. to {
  4877. -webkit-transform: translate3d(0, 0, 0);
  4878. transform: translate3d(0, 0, 0)
  4879. }
  4880. }
  4881. @keyframes slideInRight {
  4882. from {
  4883. visibility: visible;
  4884. -webkit-transform: translate3d(100%, 0, 0);
  4885. transform: translate3d(100%, 0, 0)
  4886. }
  4887. to {
  4888. -webkit-transform: translate3d(0, 0, 0);
  4889. transform: translate3d(0, 0, 0)
  4890. }
  4891. }
  4892. .slideInRight {
  4893. -webkit-animation-name: slideInRight;
  4894. animation-name: slideInRight
  4895. }
  4896. @-webkit-keyframes slideInUp {
  4897. from {
  4898. visibility: visible;
  4899. -webkit-transform: translate3d(0, 100%, 0);
  4900. transform: translate3d(0, 100%, 0)
  4901. }
  4902. to {
  4903. -webkit-transform: translate3d(0, 0, 0);
  4904. transform: translate3d(0, 0, 0)
  4905. }
  4906. }
  4907. @keyframes slideInUp {
  4908. from {
  4909. visibility: visible;
  4910. -webkit-transform: translate3d(0, 100%, 0);
  4911. transform: translate3d(0, 100%, 0)
  4912. }
  4913. to {
  4914. -webkit-transform: translate3d(0, 0, 0);
  4915. transform: translate3d(0, 0, 0)
  4916. }
  4917. }
  4918. .slideInUp {
  4919. -webkit-animation-name: slideInUp;
  4920. animation-name: slideInUp
  4921. }
  4922. @-webkit-keyframes slideOutDown {
  4923. from {
  4924. -webkit-transform: translate3d(0, 0, 0);
  4925. transform: translate3d(0, 0, 0)
  4926. }
  4927. to {
  4928. visibility: hidden;
  4929. -webkit-transform: translate3d(0, 100%, 0);
  4930. transform: translate3d(0, 100%, 0)
  4931. }
  4932. }
  4933. @keyframes slideOutDown {
  4934. from {
  4935. -webkit-transform: translate3d(0, 0, 0);
  4936. transform: translate3d(0, 0, 0)
  4937. }
  4938. to {
  4939. visibility: hidden;
  4940. -webkit-transform: translate3d(0, 100%, 0);
  4941. transform: translate3d(0, 100%, 0)
  4942. }
  4943. }
  4944. .slideOutDown {
  4945. -webkit-animation-name: slideOutDown;
  4946. animation-name: slideOutDown
  4947. }
  4948. @-webkit-keyframes slideOutLeft {
  4949. from {
  4950. -webkit-transform: translate3d(0, 0, 0);
  4951. transform: translate3d(0, 0, 0)
  4952. }
  4953. to {
  4954. visibility: hidden;
  4955. -webkit-transform: translate3d(-100%, 0, 0);
  4956. transform: translate3d(-100%, 0, 0)
  4957. }
  4958. }
  4959. @keyframes slideOutLeft {
  4960. from {
  4961. -webkit-transform: translate3d(0, 0, 0);
  4962. transform: translate3d(0, 0, 0)
  4963. }
  4964. to {
  4965. visibility: hidden;
  4966. -webkit-transform: translate3d(-100%, 0, 0);
  4967. transform: translate3d(-100%, 0, 0)
  4968. }
  4969. }
  4970. .slideOutLeft {
  4971. -webkit-animation-name: slideOutLeft;
  4972. animation-name: slideOutLeft
  4973. }
  4974. @-webkit-keyframes slideOutRight {
  4975. from {
  4976. -webkit-transform: translate3d(0, 0, 0);
  4977. transform: translate3d(0, 0, 0)
  4978. }
  4979. to {
  4980. visibility: hidden;
  4981. -webkit-transform: translate3d(100%, 0, 0);
  4982. transform: translate3d(100%, 0, 0)
  4983. }
  4984. }
  4985. @keyframes slideOutRight {
  4986. from {
  4987. -webkit-transform: translate3d(0, 0, 0);
  4988. transform: translate3d(0, 0, 0)
  4989. }
  4990. to {
  4991. visibility: hidden;
  4992. -webkit-transform: translate3d(100%, 0, 0);
  4993. transform: translate3d(100%, 0, 0)
  4994. }
  4995. }
  4996. .slideOutRight {
  4997. -webkit-animation-name: slideOutRight;
  4998. animation-name: slideOutRight
  4999. }
  5000. @-webkit-keyframes slideOutUp {
  5001. from {
  5002. -webkit-transform: translate3d(0, 0, 0);
  5003. transform: translate3d(0, 0, 0)
  5004. }
  5005. to {
  5006. visibility: hidden;
  5007. -webkit-transform: translate3d(0, -100%, 0);
  5008. transform: translate3d(0, -100%, 0)
  5009. }
  5010. }
  5011. @keyframes slideOutUp {
  5012. from {
  5013. -webkit-transform: translate3d(0, 0, 0);
  5014. transform: translate3d(0, 0, 0)
  5015. }
  5016. to {
  5017. visibility: hidden;
  5018. -webkit-transform: translate3d(0, -100%, 0);
  5019. transform: translate3d(0, -100%, 0)
  5020. }
  5021. }
  5022. .slideOutUp {
  5023. -webkit-animation-name: slideOutUp;
  5024. animation-name: slideOutUp
  5025. }
  5026. .btn {
  5027. margin: .375rem;
  5028. color: inherit;
  5029. text-transform: uppercase;
  5030. word-wrap: break-word;
  5031. white-space: normal;
  5032. cursor: pointer;
  5033. border: 0;
  5034. border-radius: .125rem;
  5035. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5036. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5037. -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;
  5038. 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;
  5039. 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;
  5040. 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;
  5041. padding: .84rem 2.14rem;
  5042. font-size: .81rem
  5043. }
  5044. .btn:hover,
  5045. .btn:focus,
  5046. .btn:active {
  5047. outline: 0;
  5048. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5049. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5050. }
  5051. .btn.btn-block {
  5052. margin: inherit
  5053. }
  5054. .btn .fas.right,
  5055. .btn .fab.right,
  5056. .btn .far.right {
  5057. margin-left: .3rem
  5058. }
  5059. .btn .fas.left,
  5060. .btn .fab.left,
  5061. .btn .far.left {
  5062. margin-right: .3rem
  5063. }
  5064. .btn.btn-lg {
  5065. padding: 1rem 2.4rem;
  5066. font-size: .94rem
  5067. }
  5068. .btn.btn-md {
  5069. padding: .7rem 1.6rem;
  5070. font-size: .7rem
  5071. }
  5072. .btn.btn-sm {
  5073. padding: .5rem 1.6rem;
  5074. font-size: .64rem
  5075. }
  5076. .btn.disabled:hover,
  5077. .btn.disabled:focus,
  5078. .btn.disabled:active,
  5079. .btn:disabled:hover,
  5080. .btn:disabled:focus,
  5081. .btn:disabled:active {
  5082. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5083. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  5084. }
  5085. .btn[class*="btn-outline-"] {
  5086. padding-top: .7rem;
  5087. padding-bottom: .7rem
  5088. }
  5089. .btn[class*="btn-outline-"].btn-lg {
  5090. padding-top: .88rem;
  5091. padding-bottom: .88rem
  5092. }
  5093. .btn[class*="btn-outline-"].btn-md {
  5094. padding-top: .58rem;
  5095. padding-bottom: .58rem
  5096. }
  5097. .btn[class*="btn-outline-"].btn-sm {
  5098. padding-top: .38rem;
  5099. padding-bottom: .38rem
  5100. }
  5101. .btn-link {
  5102. color: #000;
  5103. background-color: transparent;
  5104. -webkit-box-shadow: none;
  5105. box-shadow: none
  5106. }
  5107. .btn-link:hover,
  5108. .btn-link:focus,
  5109. .btn-link:active {
  5110. color: #000;
  5111. background-color: transparent;
  5112. -webkit-box-shadow: none;
  5113. box-shadow: none
  5114. }
  5115. .btn-group>.btn:not(:first-child),
  5116. .btn-group>.btn-group:not(:first-child) {
  5117. margin-left: -.375rem
  5118. }
  5119. .btn-primary {
  5120. color: #fff;
  5121. background-color: #4285f4 !important
  5122. }
  5123. .btn-primary:hover {
  5124. color: #fff;
  5125. background-color: #5a95f5
  5126. }
  5127. .btn-primary:focus,
  5128. .btn-primary.focus {
  5129. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5130. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5131. }
  5132. .btn-primary:focus,
  5133. .btn-primary:active,
  5134. .btn-primary.active {
  5135. background-color: #0b51c5
  5136. }
  5137. .btn-primary.dropdown-toggle {
  5138. background-color: #4285f4 !important
  5139. }
  5140. .btn-primary.dropdown-toggle:hover,
  5141. .btn-primary.dropdown-toggle:focus {
  5142. background-color: #5a95f5 !important
  5143. }
  5144. .btn-primary:not([disabled]):not(.disabled):active,
  5145. .btn-primary:not([disabled]):not(.disabled).active,
  5146. .show>.btn-primary.dropdown-toggle {
  5147. background-color: #0b51c5 !important;
  5148. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5149. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5150. }
  5151. .btn-primary:not([disabled]):not(.disabled):active:focus,
  5152. .btn-primary:not([disabled]):not(.disabled).active:focus,
  5153. .show>.btn-primary.dropdown-toggle:focus {
  5154. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5155. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5156. }
  5157. .primary-ic {
  5158. color: #4285f4 !important
  5159. }
  5160. .primary-ic:hover,
  5161. .primary-ic:focus {
  5162. color: #4285f4
  5163. }
  5164. a.btn:not([href]):not([tabindex]),
  5165. a.btn:not([href]):not([tabindex]):focus,
  5166. a.btn:not([href]):not([tabindex]):hover {
  5167. color: #fff
  5168. }
  5169. table.table a.btn.btn-primary {
  5170. color: #fff
  5171. }
  5172. .btn-outline-primary {
  5173. color: #4285f4 !important;
  5174. background-color: transparent !important;
  5175. border: 2px solid #4285f4 !important
  5176. }
  5177. .btn-outline-primary:hover,
  5178. .btn-outline-primary:focus,
  5179. .btn-outline-primary:active,
  5180. .btn-outline-primary:active:focus,
  5181. .btn-outline-primary.active {
  5182. color: #4285f4 !important;
  5183. background-color: transparent !important;
  5184. border-color: #4285f4 !important
  5185. }
  5186. .btn-outline-primary:not([disabled]):not(.disabled):active,
  5187. .btn-outline-primary:not([disabled]):not(.disabled).active,
  5188. .show>.btn-outline-primary.dropdown-toggle {
  5189. background-color: transparent !important;
  5190. border-color: #4285f4 !important;
  5191. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5192. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5193. }
  5194. .btn-outline-primary:not([disabled]):not(.disabled):active:focus,
  5195. .btn-outline-primary:not([disabled]):not(.disabled).active:focus,
  5196. .show>.btn-outline-primary.dropdown-toggle:focus {
  5197. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5198. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5199. }
  5200. .btn-danger {
  5201. color: #fff;
  5202. background-color: #ff3547 !important
  5203. }
  5204. .btn-danger:hover {
  5205. color: #fff;
  5206. background-color: #ff4f5e
  5207. }
  5208. .btn-danger:focus,
  5209. .btn-danger.focus {
  5210. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5211. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5212. }
  5213. .btn-danger:focus,
  5214. .btn-danger:active,
  5215. .btn-danger.active {
  5216. background-color: #ce0012
  5217. }
  5218. .btn-danger.dropdown-toggle {
  5219. background-color: #ff3547 !important
  5220. }
  5221. .btn-danger.dropdown-toggle:hover,
  5222. .btn-danger.dropdown-toggle:focus {
  5223. background-color: #ff4f5e !important
  5224. }
  5225. .btn-danger:not([disabled]):not(.disabled):active,
  5226. .btn-danger:not([disabled]):not(.disabled).active,
  5227. .show>.btn-danger.dropdown-toggle {
  5228. background-color: #ce0012 !important;
  5229. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5230. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5231. }
  5232. .btn-danger:not([disabled]):not(.disabled):active:focus,
  5233. .btn-danger:not([disabled]):not(.disabled).active:focus,
  5234. .show>.btn-danger.dropdown-toggle:focus {
  5235. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5236. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5237. }
  5238. .danger-ic {
  5239. color: #ff3547 !important
  5240. }
  5241. .danger-ic:hover,
  5242. .danger-ic:focus {
  5243. color: #ff3547
  5244. }
  5245. a.btn:not([href]):not([tabindex]),
  5246. a.btn:not([href]):not([tabindex]):focus,
  5247. a.btn:not([href]):not([tabindex]):hover {
  5248. color: #fff
  5249. }
  5250. table.table a.btn.btn-danger {
  5251. color: #fff
  5252. }
  5253. .btn-outline-danger {
  5254. color: #ff3547 !important;
  5255. background-color: transparent !important;
  5256. border: 2px solid #ff3547 !important
  5257. }
  5258. .btn-outline-danger:hover,
  5259. .btn-outline-danger:focus,
  5260. .btn-outline-danger:active,
  5261. .btn-outline-danger:active:focus,
  5262. .btn-outline-danger.active {
  5263. color: #ff3547 !important;
  5264. background-color: transparent !important;
  5265. border-color: #ff3547 !important
  5266. }
  5267. .btn-outline-danger:not([disabled]):not(.disabled):active,
  5268. .btn-outline-danger:not([disabled]):not(.disabled).active,
  5269. .show>.btn-outline-danger.dropdown-toggle {
  5270. background-color: transparent !important;
  5271. border-color: #ff3547 !important;
  5272. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5273. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5274. }
  5275. .btn-outline-danger:not([disabled]):not(.disabled):active:focus,
  5276. .btn-outline-danger:not([disabled]):not(.disabled).active:focus,
  5277. .show>.btn-outline-danger.dropdown-toggle:focus {
  5278. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5279. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5280. }
  5281. .btn-warning {
  5282. color: #fff;
  5283. background-color: #fb3 !important
  5284. }
  5285. .btn-warning:hover {
  5286. color: #fff;
  5287. background-color: #ffc44d
  5288. }
  5289. .btn-warning:focus,
  5290. .btn-warning.focus {
  5291. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5292. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5293. }
  5294. .btn-warning:focus,
  5295. .btn-warning:active,
  5296. .btn-warning.active {
  5297. background-color: #c80
  5298. }
  5299. .btn-warning.dropdown-toggle {
  5300. background-color: #fb3 !important
  5301. }
  5302. .btn-warning.dropdown-toggle:hover,
  5303. .btn-warning.dropdown-toggle:focus {
  5304. background-color: #ffc44d !important
  5305. }
  5306. .btn-warning:not([disabled]):not(.disabled):active,
  5307. .btn-warning:not([disabled]):not(.disabled).active,
  5308. .show>.btn-warning.dropdown-toggle {
  5309. background-color: #c80 !important;
  5310. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5311. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5312. }
  5313. .btn-warning:not([disabled]):not(.disabled):active:focus,
  5314. .btn-warning:not([disabled]):not(.disabled).active:focus,
  5315. .show>.btn-warning.dropdown-toggle:focus {
  5316. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5317. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5318. }
  5319. .warning-ic {
  5320. color: #fb3 !important
  5321. }
  5322. .warning-ic:hover,
  5323. .warning-ic:focus {
  5324. color: #fb3
  5325. }
  5326. a.btn:not([href]):not([tabindex]),
  5327. a.btn:not([href]):not([tabindex]):focus,
  5328. a.btn:not([href]):not([tabindex]):hover {
  5329. color: #fff
  5330. }
  5331. table.table a.btn.btn-warning {
  5332. color: #fff
  5333. }
  5334. .btn-outline-warning {
  5335. color: #fb3 !important;
  5336. background-color: transparent !important;
  5337. border: 2px solid #fb3 !important
  5338. }
  5339. .btn-outline-warning:hover,
  5340. .btn-outline-warning:focus,
  5341. .btn-outline-warning:active,
  5342. .btn-outline-warning:active:focus,
  5343. .btn-outline-warning.active {
  5344. color: #fb3 !important;
  5345. background-color: transparent !important;
  5346. border-color: #fb3 !important
  5347. }
  5348. .btn-outline-warning:not([disabled]):not(.disabled):active,
  5349. .btn-outline-warning:not([disabled]):not(.disabled).active,
  5350. .show>.btn-outline-warning.dropdown-toggle {
  5351. background-color: transparent !important;
  5352. border-color: #fb3 !important;
  5353. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5354. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5355. }
  5356. .btn-outline-warning:not([disabled]):not(.disabled):active:focus,
  5357. .btn-outline-warning:not([disabled]):not(.disabled).active:focus,
  5358. .show>.btn-outline-warning.dropdown-toggle:focus {
  5359. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5360. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5361. }
  5362. .btn-success {
  5363. color: #fff;
  5364. background-color: #00c851 !important
  5365. }
  5366. .btn-success:hover {
  5367. color: #fff;
  5368. background-color: #00e25b
  5369. }
  5370. .btn-success:focus,
  5371. .btn-success.focus {
  5372. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5373. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5374. }
  5375. .btn-success:focus,
  5376. .btn-success:active,
  5377. .btn-success.active {
  5378. background-color: #006228
  5379. }
  5380. .btn-success.dropdown-toggle {
  5381. background-color: #00c851 !important
  5382. }
  5383. .btn-success.dropdown-toggle:hover,
  5384. .btn-success.dropdown-toggle:focus {
  5385. background-color: #00e25b !important
  5386. }
  5387. .btn-success:not([disabled]):not(.disabled):active,
  5388. .btn-success:not([disabled]):not(.disabled).active,
  5389. .show>.btn-success.dropdown-toggle {
  5390. background-color: #006228 !important;
  5391. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5392. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5393. }
  5394. .btn-success:not([disabled]):not(.disabled):active:focus,
  5395. .btn-success:not([disabled]):not(.disabled).active:focus,
  5396. .show>.btn-success.dropdown-toggle:focus {
  5397. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5398. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5399. }
  5400. .success-ic {
  5401. color: #00c851 !important
  5402. }
  5403. .success-ic:hover,
  5404. .success-ic:focus {
  5405. color: #00c851
  5406. }
  5407. a.btn:not([href]):not([tabindex]),
  5408. a.btn:not([href]):not([tabindex]):focus,
  5409. a.btn:not([href]):not([tabindex]):hover {
  5410. color: #fff
  5411. }
  5412. table.table a.btn.btn-success {
  5413. color: #fff
  5414. }
  5415. .btn-outline-success {
  5416. color: #00c851 !important;
  5417. background-color: transparent !important;
  5418. border: 2px solid #00c851 !important
  5419. }
  5420. .btn-outline-success:hover,
  5421. .btn-outline-success:focus,
  5422. .btn-outline-success:active,
  5423. .btn-outline-success:active:focus,
  5424. .btn-outline-success.active {
  5425. color: #00c851 !important;
  5426. background-color: transparent !important;
  5427. border-color: #00c851 !important
  5428. }
  5429. .btn-outline-success:not([disabled]):not(.disabled):active,
  5430. .btn-outline-success:not([disabled]):not(.disabled).active,
  5431. .show>.btn-outline-success.dropdown-toggle {
  5432. background-color: transparent !important;
  5433. border-color: #00c851 !important;
  5434. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5435. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5436. }
  5437. .btn-outline-success:not([disabled]):not(.disabled):active:focus,
  5438. .btn-outline-success:not([disabled]):not(.disabled).active:focus,
  5439. .show>.btn-outline-success.dropdown-toggle:focus {
  5440. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5441. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5442. }
  5443. .btn-info {
  5444. color: #fff;
  5445. background-color: #33b5e5 !important
  5446. }
  5447. .btn-info:hover {
  5448. color: #fff;
  5449. background-color: #4abde8
  5450. }
  5451. .btn-info:focus,
  5452. .btn-info.focus {
  5453. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5454. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5455. }
  5456. .btn-info:focus,
  5457. .btn-info:active,
  5458. .btn-info.active {
  5459. background-color: #14799e
  5460. }
  5461. .btn-info.dropdown-toggle {
  5462. background-color: #33b5e5 !important
  5463. }
  5464. .btn-info.dropdown-toggle:hover,
  5465. .btn-info.dropdown-toggle:focus {
  5466. background-color: #4abde8 !important
  5467. }
  5468. .btn-info:not([disabled]):not(.disabled):active,
  5469. .btn-info:not([disabled]):not(.disabled).active,
  5470. .show>.btn-info.dropdown-toggle {
  5471. background-color: #14799e !important;
  5472. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5473. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5474. }
  5475. .btn-info:not([disabled]):not(.disabled):active:focus,
  5476. .btn-info:not([disabled]):not(.disabled).active:focus,
  5477. .show>.btn-info.dropdown-toggle:focus {
  5478. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5479. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5480. }
  5481. .info-ic {
  5482. color: #33b5e5 !important
  5483. }
  5484. .info-ic:hover,
  5485. .info-ic:focus {
  5486. color: #33b5e5
  5487. }
  5488. a.btn:not([href]):not([tabindex]),
  5489. a.btn:not([href]):not([tabindex]):focus,
  5490. a.btn:not([href]):not([tabindex]):hover {
  5491. color: #fff
  5492. }
  5493. table.table a.btn.btn-info {
  5494. color: #fff
  5495. }
  5496. .btn-outline-info {
  5497. color: #33b5e5 !important;
  5498. background-color: transparent !important;
  5499. border: 2px solid #33b5e5 !important
  5500. }
  5501. .btn-outline-info:hover,
  5502. .btn-outline-info:focus,
  5503. .btn-outline-info:active,
  5504. .btn-outline-info:active:focus,
  5505. .btn-outline-info.active {
  5506. color: #33b5e5 !important;
  5507. background-color: transparent !important;
  5508. border-color: #33b5e5 !important
  5509. }
  5510. .btn-outline-info:not([disabled]):not(.disabled):active,
  5511. .btn-outline-info:not([disabled]):not(.disabled).active,
  5512. .show>.btn-outline-info.dropdown-toggle {
  5513. background-color: transparent !important;
  5514. border-color: #33b5e5 !important;
  5515. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5516. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5517. }
  5518. .btn-outline-info:not([disabled]):not(.disabled):active:focus,
  5519. .btn-outline-info:not([disabled]):not(.disabled).active:focus,
  5520. .show>.btn-outline-info.dropdown-toggle:focus {
  5521. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5522. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5523. }
  5524. .btn-default {
  5525. color: #fff;
  5526. background-color: #2bbbad !important
  5527. }
  5528. .btn-default:hover {
  5529. color: #fff;
  5530. background-color: #30cfc0
  5531. }
  5532. .btn-default:focus,
  5533. .btn-default.focus {
  5534. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5535. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5536. }
  5537. .btn-default:focus,
  5538. .btn-default:active,
  5539. .btn-default.active {
  5540. background-color: #186860
  5541. }
  5542. .btn-default.dropdown-toggle {
  5543. background-color: #2bbbad !important
  5544. }
  5545. .btn-default.dropdown-toggle:hover,
  5546. .btn-default.dropdown-toggle:focus {
  5547. background-color: #30cfc0 !important
  5548. }
  5549. .btn-default:not([disabled]):not(.disabled):active,
  5550. .btn-default:not([disabled]):not(.disabled).active,
  5551. .show>.btn-default.dropdown-toggle {
  5552. background-color: #186860 !important;
  5553. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5554. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5555. }
  5556. .btn-default:not([disabled]):not(.disabled):active:focus,
  5557. .btn-default:not([disabled]):not(.disabled).active:focus,
  5558. .show>.btn-default.dropdown-toggle:focus {
  5559. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5560. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5561. }
  5562. .default-ic {
  5563. color: #2bbbad !important
  5564. }
  5565. .default-ic:hover,
  5566. .default-ic:focus {
  5567. color: #2bbbad
  5568. }
  5569. a.btn:not([href]):not([tabindex]),
  5570. a.btn:not([href]):not([tabindex]):focus,
  5571. a.btn:not([href]):not([tabindex]):hover {
  5572. color: #fff
  5573. }
  5574. table.table a.btn.btn-default {
  5575. color: #fff
  5576. }
  5577. .btn-outline-default {
  5578. color: #2bbbad !important;
  5579. background-color: transparent !important;
  5580. border: 2px solid #2bbbad !important
  5581. }
  5582. .btn-outline-default:hover,
  5583. .btn-outline-default:focus,
  5584. .btn-outline-default:active,
  5585. .btn-outline-default:active:focus,
  5586. .btn-outline-default.active {
  5587. color: #2bbbad !important;
  5588. background-color: transparent !important;
  5589. border-color: #2bbbad !important
  5590. }
  5591. .btn-outline-default:not([disabled]):not(.disabled):active,
  5592. .btn-outline-default:not([disabled]):not(.disabled).active,
  5593. .show>.btn-outline-default.dropdown-toggle {
  5594. background-color: transparent !important;
  5595. border-color: #2bbbad !important;
  5596. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5597. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5598. }
  5599. .btn-outline-default:not([disabled]):not(.disabled):active:focus,
  5600. .btn-outline-default:not([disabled]):not(.disabled).active:focus,
  5601. .show>.btn-outline-default.dropdown-toggle:focus {
  5602. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5603. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5604. }
  5605. .btn-secondary {
  5606. color: #fff;
  5607. background-color: #a6c !important
  5608. }
  5609. .btn-secondary:hover {
  5610. color: #fff;
  5611. background-color: #b579d2
  5612. }
  5613. .btn-secondary:focus,
  5614. .btn-secondary.focus {
  5615. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5616. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5617. }
  5618. .btn-secondary:focus,
  5619. .btn-secondary:active,
  5620. .btn-secondary.active {
  5621. background-color: #739
  5622. }
  5623. .btn-secondary.dropdown-toggle {
  5624. background-color: #a6c !important
  5625. }
  5626. .btn-secondary.dropdown-toggle:hover,
  5627. .btn-secondary.dropdown-toggle:focus {
  5628. background-color: #b579d2 !important
  5629. }
  5630. .btn-secondary:not([disabled]):not(.disabled):active,
  5631. .btn-secondary:not([disabled]):not(.disabled).active,
  5632. .show>.btn-secondary.dropdown-toggle {
  5633. background-color: #739 !important;
  5634. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5635. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5636. }
  5637. .btn-secondary:not([disabled]):not(.disabled):active:focus,
  5638. .btn-secondary:not([disabled]):not(.disabled).active:focus,
  5639. .show>.btn-secondary.dropdown-toggle:focus {
  5640. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5641. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5642. }
  5643. .secondary-ic {
  5644. color: #a6c !important
  5645. }
  5646. .secondary-ic:hover,
  5647. .secondary-ic:focus {
  5648. color: #a6c
  5649. }
  5650. a.btn:not([href]):not([tabindex]),
  5651. a.btn:not([href]):not([tabindex]):focus,
  5652. a.btn:not([href]):not([tabindex]):hover {
  5653. color: #fff
  5654. }
  5655. table.table a.btn.btn-secondary {
  5656. color: #fff
  5657. }
  5658. .btn-outline-secondary {
  5659. color: #a6c !important;
  5660. background-color: transparent !important;
  5661. border: 2px solid #a6c !important
  5662. }
  5663. .btn-outline-secondary:hover,
  5664. .btn-outline-secondary:focus,
  5665. .btn-outline-secondary:active,
  5666. .btn-outline-secondary:active:focus,
  5667. .btn-outline-secondary.active {
  5668. color: #a6c !important;
  5669. background-color: transparent !important;
  5670. border-color: #a6c !important
  5671. }
  5672. .btn-outline-secondary:not([disabled]):not(.disabled):active,
  5673. .btn-outline-secondary:not([disabled]):not(.disabled).active,
  5674. .show>.btn-outline-secondary.dropdown-toggle {
  5675. background-color: transparent !important;
  5676. border-color: #a6c !important;
  5677. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5678. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5679. }
  5680. .btn-outline-secondary:not([disabled]):not(.disabled):active:focus,
  5681. .btn-outline-secondary:not([disabled]):not(.disabled).active:focus,
  5682. .show>.btn-outline-secondary.dropdown-toggle:focus {
  5683. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5684. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5685. }
  5686. .btn-elegant {
  5687. color: #fff;
  5688. background-color: #2e2e2e !important
  5689. }
  5690. .btn-elegant:hover {
  5691. color: #fff;
  5692. background-color: #3b3b3b
  5693. }
  5694. .btn-elegant:focus,
  5695. .btn-elegant.focus {
  5696. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5697. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5698. }
  5699. .btn-elegant:focus,
  5700. .btn-elegant:active,
  5701. .btn-elegant.active {
  5702. background-color: #000
  5703. }
  5704. .btn-elegant.dropdown-toggle {
  5705. background-color: #2e2e2e !important
  5706. }
  5707. .btn-elegant.dropdown-toggle:hover,
  5708. .btn-elegant.dropdown-toggle:focus {
  5709. background-color: #3b3b3b !important
  5710. }
  5711. .btn-elegant:not([disabled]):not(.disabled):active,
  5712. .btn-elegant:not([disabled]):not(.disabled).active,
  5713. .show>.btn-elegant.dropdown-toggle {
  5714. background-color: #000 !important;
  5715. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5716. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5717. }
  5718. .btn-elegant:not([disabled]):not(.disabled):active:focus,
  5719. .btn-elegant:not([disabled]):not(.disabled).active:focus,
  5720. .show>.btn-elegant.dropdown-toggle:focus {
  5721. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5722. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5723. }
  5724. .elegant-ic {
  5725. color: #2e2e2e !important
  5726. }
  5727. .elegant-ic:hover,
  5728. .elegant-ic:focus {
  5729. color: #2e2e2e
  5730. }
  5731. a.btn:not([href]):not([tabindex]),
  5732. a.btn:not([href]):not([tabindex]):focus,
  5733. a.btn:not([href]):not([tabindex]):hover {
  5734. color: #fff
  5735. }
  5736. table.table a.btn.btn-elegant {
  5737. color: #fff
  5738. }
  5739. .btn-outline-elegant {
  5740. color: #2e2e2e !important;
  5741. background-color: transparent !important;
  5742. border: 2px solid #2e2e2e !important
  5743. }
  5744. .btn-outline-elegant:hover,
  5745. .btn-outline-elegant:focus,
  5746. .btn-outline-elegant:active,
  5747. .btn-outline-elegant:active:focus,
  5748. .btn-outline-elegant.active {
  5749. color: #2e2e2e !important;
  5750. background-color: transparent !important;
  5751. border-color: #2e2e2e !important
  5752. }
  5753. .btn-outline-elegant:not([disabled]):not(.disabled):active,
  5754. .btn-outline-elegant:not([disabled]):not(.disabled).active,
  5755. .show>.btn-outline-elegant.dropdown-toggle {
  5756. background-color: transparent !important;
  5757. border-color: #2e2e2e !important;
  5758. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5759. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5760. }
  5761. .btn-outline-elegant:not([disabled]):not(.disabled):active:focus,
  5762. .btn-outline-elegant:not([disabled]):not(.disabled).active:focus,
  5763. .show>.btn-outline-elegant.dropdown-toggle:focus {
  5764. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5765. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5766. }
  5767. .btn-unique {
  5768. color: #fff;
  5769. background-color: #880e4f !important
  5770. }
  5771. .btn-unique:hover {
  5772. color: #fff;
  5773. background-color: #9f105c
  5774. }
  5775. .btn-unique:focus,
  5776. .btn-unique.focus {
  5777. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5778. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5779. }
  5780. .btn-unique:focus,
  5781. .btn-unique:active,
  5782. .btn-unique.active {
  5783. background-color: #2c0419
  5784. }
  5785. .btn-unique.dropdown-toggle {
  5786. background-color: #880e4f !important
  5787. }
  5788. .btn-unique.dropdown-toggle:hover,
  5789. .btn-unique.dropdown-toggle:focus {
  5790. background-color: #9f105c !important
  5791. }
  5792. .btn-unique:not([disabled]):not(.disabled):active,
  5793. .btn-unique:not([disabled]):not(.disabled).active,
  5794. .show>.btn-unique.dropdown-toggle {
  5795. background-color: #2c0419 !important;
  5796. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5797. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5798. }
  5799. .btn-unique:not([disabled]):not(.disabled):active:focus,
  5800. .btn-unique:not([disabled]):not(.disabled).active:focus,
  5801. .show>.btn-unique.dropdown-toggle:focus {
  5802. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5803. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5804. }
  5805. .unique-ic {
  5806. color: #880e4f !important
  5807. }
  5808. .unique-ic:hover,
  5809. .unique-ic:focus {
  5810. color: #880e4f
  5811. }
  5812. a.btn:not([href]):not([tabindex]),
  5813. a.btn:not([href]):not([tabindex]):focus,
  5814. a.btn:not([href]):not([tabindex]):hover {
  5815. color: #fff
  5816. }
  5817. table.table a.btn.btn-unique {
  5818. color: #fff
  5819. }
  5820. .btn-outline-unique {
  5821. color: #880e4f !important;
  5822. background-color: transparent !important;
  5823. border: 2px solid #880e4f !important
  5824. }
  5825. .btn-outline-unique:hover,
  5826. .btn-outline-unique:focus,
  5827. .btn-outline-unique:active,
  5828. .btn-outline-unique:active:focus,
  5829. .btn-outline-unique.active {
  5830. color: #880e4f !important;
  5831. background-color: transparent !important;
  5832. border-color: #880e4f !important
  5833. }
  5834. .btn-outline-unique:not([disabled]):not(.disabled):active,
  5835. .btn-outline-unique:not([disabled]):not(.disabled).active,
  5836. .show>.btn-outline-unique.dropdown-toggle {
  5837. background-color: transparent !important;
  5838. border-color: #880e4f !important;
  5839. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5840. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5841. }
  5842. .btn-outline-unique:not([disabled]):not(.disabled):active:focus,
  5843. .btn-outline-unique:not([disabled]):not(.disabled).active:focus,
  5844. .show>.btn-outline-unique.dropdown-toggle:focus {
  5845. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5846. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5847. }
  5848. .btn-dark-green {
  5849. color: #fff;
  5850. background-color: #388e3c !important
  5851. }
  5852. .btn-dark-green:hover {
  5853. color: #fff;
  5854. background-color: #3fa044
  5855. }
  5856. .btn-dark-green:focus,
  5857. .btn-dark-green.focus {
  5858. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5859. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5860. }
  5861. .btn-dark-green:focus,
  5862. .btn-dark-green:active,
  5863. .btn-dark-green.active {
  5864. background-color: #1b451d
  5865. }
  5866. .btn-dark-green.dropdown-toggle {
  5867. background-color: #388e3c !important
  5868. }
  5869. .btn-dark-green.dropdown-toggle:hover,
  5870. .btn-dark-green.dropdown-toggle:focus {
  5871. background-color: #3fa044 !important
  5872. }
  5873. .btn-dark-green:not([disabled]):not(.disabled):active,
  5874. .btn-dark-green:not([disabled]):not(.disabled).active,
  5875. .show>.btn-dark-green.dropdown-toggle {
  5876. background-color: #1b451d !important;
  5877. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5878. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5879. }
  5880. .btn-dark-green:not([disabled]):not(.disabled):active:focus,
  5881. .btn-dark-green:not([disabled]):not(.disabled).active:focus,
  5882. .show>.btn-dark-green.dropdown-toggle:focus {
  5883. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5884. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5885. }
  5886. .dark-green-ic {
  5887. color: #388e3c !important
  5888. }
  5889. .dark-green-ic:hover,
  5890. .dark-green-ic:focus {
  5891. color: #388e3c
  5892. }
  5893. a.btn:not([href]):not([tabindex]),
  5894. a.btn:not([href]):not([tabindex]):focus,
  5895. a.btn:not([href]):not([tabindex]):hover {
  5896. color: #fff
  5897. }
  5898. table.table a.btn.btn-dark-green {
  5899. color: #fff
  5900. }
  5901. .btn-outline-dark-green {
  5902. color: #388e3c !important;
  5903. background-color: transparent !important;
  5904. border: 2px solid #388e3c !important
  5905. }
  5906. .btn-outline-dark-green:hover,
  5907. .btn-outline-dark-green:focus,
  5908. .btn-outline-dark-green:active,
  5909. .btn-outline-dark-green:active:focus,
  5910. .btn-outline-dark-green.active {
  5911. color: #388e3c !important;
  5912. background-color: transparent !important;
  5913. border-color: #388e3c !important
  5914. }
  5915. .btn-outline-dark-green:not([disabled]):not(.disabled):active,
  5916. .btn-outline-dark-green:not([disabled]):not(.disabled).active,
  5917. .show>.btn-outline-dark-green.dropdown-toggle {
  5918. background-color: transparent !important;
  5919. border-color: #388e3c !important;
  5920. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5921. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5922. }
  5923. .btn-outline-dark-green:not([disabled]):not(.disabled):active:focus,
  5924. .btn-outline-dark-green:not([disabled]):not(.disabled).active:focus,
  5925. .show>.btn-outline-dark-green.dropdown-toggle:focus {
  5926. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5927. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5928. }
  5929. .btn-mdb-color {
  5930. color: #fff;
  5931. background-color: #59698d !important
  5932. }
  5933. .btn-mdb-color:hover {
  5934. color: #fff;
  5935. background-color: #63759d
  5936. }
  5937. .btn-mdb-color:focus,
  5938. .btn-mdb-color.focus {
  5939. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5940. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5941. }
  5942. .btn-mdb-color:focus,
  5943. .btn-mdb-color:active,
  5944. .btn-mdb-color.active {
  5945. background-color: #323a4e
  5946. }
  5947. .btn-mdb-color.dropdown-toggle {
  5948. background-color: #59698d !important
  5949. }
  5950. .btn-mdb-color.dropdown-toggle:hover,
  5951. .btn-mdb-color.dropdown-toggle:focus {
  5952. background-color: #63759d !important
  5953. }
  5954. .btn-mdb-color:not([disabled]):not(.disabled):active,
  5955. .btn-mdb-color:not([disabled]):not(.disabled).active,
  5956. .show>.btn-mdb-color.dropdown-toggle {
  5957. background-color: #323a4e !important;
  5958. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5959. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5960. }
  5961. .btn-mdb-color:not([disabled]):not(.disabled):active:focus,
  5962. .btn-mdb-color:not([disabled]):not(.disabled).active:focus,
  5963. .show>.btn-mdb-color.dropdown-toggle:focus {
  5964. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5965. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  5966. }
  5967. .mdb-color-ic {
  5968. color: #59698d !important
  5969. }
  5970. .mdb-color-ic:hover,
  5971. .mdb-color-ic:focus {
  5972. color: #59698d
  5973. }
  5974. a.btn:not([href]):not([tabindex]),
  5975. a.btn:not([href]):not([tabindex]):focus,
  5976. a.btn:not([href]):not([tabindex]):hover {
  5977. color: #fff
  5978. }
  5979. table.table a.btn.btn-mdb-color {
  5980. color: #fff
  5981. }
  5982. .btn-outline-mdb-color {
  5983. color: #59698d !important;
  5984. background-color: transparent !important;
  5985. border: 2px solid #59698d !important
  5986. }
  5987. .btn-outline-mdb-color:hover,
  5988. .btn-outline-mdb-color:focus,
  5989. .btn-outline-mdb-color:active,
  5990. .btn-outline-mdb-color:active:focus,
  5991. .btn-outline-mdb-color.active {
  5992. color: #59698d !important;
  5993. background-color: transparent !important;
  5994. border-color: #59698d !important
  5995. }
  5996. .btn-outline-mdb-color:not([disabled]):not(.disabled):active,
  5997. .btn-outline-mdb-color:not([disabled]):not(.disabled).active,
  5998. .show>.btn-outline-mdb-color.dropdown-toggle {
  5999. background-color: transparent !important;
  6000. border-color: #59698d !important;
  6001. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6002. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6003. }
  6004. .btn-outline-mdb-color:not([disabled]):not(.disabled):active:focus,
  6005. .btn-outline-mdb-color:not([disabled]):not(.disabled).active:focus,
  6006. .show>.btn-outline-mdb-color.dropdown-toggle:focus {
  6007. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6008. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6009. }
  6010. .btn-red {
  6011. color: #fff;
  6012. background-color: #d32f2f !important
  6013. }
  6014. .btn-red:hover {
  6015. color: #fff;
  6016. background-color: #d74444
  6017. }
  6018. .btn-red:focus,
  6019. .btn-red.focus {
  6020. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6021. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6022. }
  6023. .btn-red:focus,
  6024. .btn-red:active,
  6025. .btn-red.active {
  6026. background-color: #811b1b
  6027. }
  6028. .btn-red.dropdown-toggle {
  6029. background-color: #d32f2f !important
  6030. }
  6031. .btn-red.dropdown-toggle:hover,
  6032. .btn-red.dropdown-toggle:focus {
  6033. background-color: #d74444 !important
  6034. }
  6035. .btn-red:not([disabled]):not(.disabled):active,
  6036. .btn-red:not([disabled]):not(.disabled).active,
  6037. .show>.btn-red.dropdown-toggle {
  6038. background-color: #811b1b !important;
  6039. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6040. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6041. }
  6042. .btn-red:not([disabled]):not(.disabled):active:focus,
  6043. .btn-red:not([disabled]):not(.disabled).active:focus,
  6044. .show>.btn-red.dropdown-toggle:focus {
  6045. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6046. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6047. }
  6048. .red-ic {
  6049. color: #d32f2f !important
  6050. }
  6051. .red-ic:hover,
  6052. .red-ic:focus {
  6053. color: #d32f2f
  6054. }
  6055. a.btn:not([href]):not([tabindex]),
  6056. a.btn:not([href]):not([tabindex]):focus,
  6057. a.btn:not([href]):not([tabindex]):hover {
  6058. color: #fff
  6059. }
  6060. table.table a.btn.btn-red {
  6061. color: #fff
  6062. }
  6063. .btn-outline-red {
  6064. color: #d32f2f !important;
  6065. background-color: transparent !important;
  6066. border: 2px solid #d32f2f !important
  6067. }
  6068. .btn-outline-red:hover,
  6069. .btn-outline-red:focus,
  6070. .btn-outline-red:active,
  6071. .btn-outline-red:active:focus,
  6072. .btn-outline-red.active {
  6073. color: #d32f2f !important;
  6074. background-color: transparent !important;
  6075. border-color: #d32f2f !important
  6076. }
  6077. .btn-outline-red:not([disabled]):not(.disabled):active,
  6078. .btn-outline-red:not([disabled]):not(.disabled).active,
  6079. .show>.btn-outline-red.dropdown-toggle {
  6080. background-color: transparent !important;
  6081. border-color: #d32f2f !important;
  6082. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6083. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6084. }
  6085. .btn-outline-red:not([disabled]):not(.disabled):active:focus,
  6086. .btn-outline-red:not([disabled]):not(.disabled).active:focus,
  6087. .show>.btn-outline-red.dropdown-toggle:focus {
  6088. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6089. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6090. }
  6091. .btn-pink {
  6092. color: #fff;
  6093. background-color: #ec407a !important
  6094. }
  6095. .btn-pink:hover {
  6096. color: #fff;
  6097. background-color: #ee578a
  6098. }
  6099. .btn-pink:focus,
  6100. .btn-pink.focus {
  6101. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6102. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6103. }
  6104. .btn-pink:focus,
  6105. .btn-pink:active,
  6106. .btn-pink.active {
  6107. background-color: #b41249
  6108. }
  6109. .btn-pink.dropdown-toggle {
  6110. background-color: #ec407a !important
  6111. }
  6112. .btn-pink.dropdown-toggle:hover,
  6113. .btn-pink.dropdown-toggle:focus {
  6114. background-color: #ee578a !important
  6115. }
  6116. .btn-pink:not([disabled]):not(.disabled):active,
  6117. .btn-pink:not([disabled]):not(.disabled).active,
  6118. .show>.btn-pink.dropdown-toggle {
  6119. background-color: #b41249 !important;
  6120. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6121. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6122. }
  6123. .btn-pink:not([disabled]):not(.disabled):active:focus,
  6124. .btn-pink:not([disabled]):not(.disabled).active:focus,
  6125. .show>.btn-pink.dropdown-toggle:focus {
  6126. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6127. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6128. }
  6129. .pink-ic {
  6130. color: #ec407a !important
  6131. }
  6132. .pink-ic:hover,
  6133. .pink-ic:focus {
  6134. color: #ec407a
  6135. }
  6136. a.btn:not([href]):not([tabindex]),
  6137. a.btn:not([href]):not([tabindex]):focus,
  6138. a.btn:not([href]):not([tabindex]):hover {
  6139. color: #fff
  6140. }
  6141. table.table a.btn.btn-pink {
  6142. color: #fff
  6143. }
  6144. .btn-outline-pink {
  6145. color: #ec407a !important;
  6146. background-color: transparent !important;
  6147. border: 2px solid #ec407a !important
  6148. }
  6149. .btn-outline-pink:hover,
  6150. .btn-outline-pink:focus,
  6151. .btn-outline-pink:active,
  6152. .btn-outline-pink:active:focus,
  6153. .btn-outline-pink.active {
  6154. color: #ec407a !important;
  6155. background-color: transparent !important;
  6156. border-color: #ec407a !important
  6157. }
  6158. .btn-outline-pink:not([disabled]):not(.disabled):active,
  6159. .btn-outline-pink:not([disabled]):not(.disabled).active,
  6160. .show>.btn-outline-pink.dropdown-toggle {
  6161. background-color: transparent !important;
  6162. border-color: #ec407a !important;
  6163. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6164. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6165. }
  6166. .btn-outline-pink:not([disabled]):not(.disabled):active:focus,
  6167. .btn-outline-pink:not([disabled]):not(.disabled).active:focus,
  6168. .show>.btn-outline-pink.dropdown-toggle:focus {
  6169. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6170. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6171. }
  6172. .btn-purple {
  6173. color: #fff;
  6174. background-color: #8e24aa !important
  6175. }
  6176. .btn-purple:hover {
  6177. color: #fff;
  6178. background-color: #a028bf
  6179. }
  6180. .btn-purple:focus,
  6181. .btn-purple.focus {
  6182. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6183. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6184. }
  6185. .btn-purple:focus,
  6186. .btn-purple:active,
  6187. .btn-purple.active {
  6188. background-color: #481256
  6189. }
  6190. .btn-purple.dropdown-toggle {
  6191. background-color: #8e24aa !important
  6192. }
  6193. .btn-purple.dropdown-toggle:hover,
  6194. .btn-purple.dropdown-toggle:focus {
  6195. background-color: #a028bf !important
  6196. }
  6197. .btn-purple:not([disabled]):not(.disabled):active,
  6198. .btn-purple:not([disabled]):not(.disabled).active,
  6199. .show>.btn-purple.dropdown-toggle {
  6200. background-color: #481256 !important;
  6201. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6202. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6203. }
  6204. .btn-purple:not([disabled]):not(.disabled):active:focus,
  6205. .btn-purple:not([disabled]):not(.disabled).active:focus,
  6206. .show>.btn-purple.dropdown-toggle:focus {
  6207. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6208. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6209. }
  6210. .purple-ic {
  6211. color: #8e24aa !important
  6212. }
  6213. .purple-ic:hover,
  6214. .purple-ic:focus {
  6215. color: #8e24aa
  6216. }
  6217. a.btn:not([href]):not([tabindex]),
  6218. a.btn:not([href]):not([tabindex]):focus,
  6219. a.btn:not([href]):not([tabindex]):hover {
  6220. color: #fff
  6221. }
  6222. table.table a.btn.btn-purple {
  6223. color: #fff
  6224. }
  6225. .btn-outline-purple {
  6226. color: #8e24aa !important;
  6227. background-color: transparent !important;
  6228. border: 2px solid #8e24aa !important
  6229. }
  6230. .btn-outline-purple:hover,
  6231. .btn-outline-purple:focus,
  6232. .btn-outline-purple:active,
  6233. .btn-outline-purple:active:focus,
  6234. .btn-outline-purple.active {
  6235. color: #8e24aa !important;
  6236. background-color: transparent !important;
  6237. border-color: #8e24aa !important
  6238. }
  6239. .btn-outline-purple:not([disabled]):not(.disabled):active,
  6240. .btn-outline-purple:not([disabled]):not(.disabled).active,
  6241. .show>.btn-outline-purple.dropdown-toggle {
  6242. background-color: transparent !important;
  6243. border-color: #8e24aa !important;
  6244. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6245. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6246. }
  6247. .btn-outline-purple:not([disabled]):not(.disabled):active:focus,
  6248. .btn-outline-purple:not([disabled]):not(.disabled).active:focus,
  6249. .show>.btn-outline-purple.dropdown-toggle:focus {
  6250. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6251. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6252. }
  6253. .btn-deep-purple {
  6254. color: #fff;
  6255. background-color: #512da8 !important
  6256. }
  6257. .btn-deep-purple:hover {
  6258. color: #fff;
  6259. background-color: #5b32bc
  6260. }
  6261. .btn-deep-purple:focus,
  6262. .btn-deep-purple.focus {
  6263. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6264. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6265. }
  6266. .btn-deep-purple:focus,
  6267. .btn-deep-purple:active,
  6268. .btn-deep-purple.active {
  6269. background-color: #2a1758
  6270. }
  6271. .btn-deep-purple.dropdown-toggle {
  6272. background-color: #512da8 !important
  6273. }
  6274. .btn-deep-purple.dropdown-toggle:hover,
  6275. .btn-deep-purple.dropdown-toggle:focus {
  6276. background-color: #5b32bc !important
  6277. }
  6278. .btn-deep-purple:not([disabled]):not(.disabled):active,
  6279. .btn-deep-purple:not([disabled]):not(.disabled).active,
  6280. .show>.btn-deep-purple.dropdown-toggle {
  6281. background-color: #2a1758 !important;
  6282. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6283. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6284. }
  6285. .btn-deep-purple:not([disabled]):not(.disabled):active:focus,
  6286. .btn-deep-purple:not([disabled]):not(.disabled).active:focus,
  6287. .show>.btn-deep-purple.dropdown-toggle:focus {
  6288. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6289. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6290. }
  6291. .deep-purple-ic {
  6292. color: #512da8 !important
  6293. }
  6294. .deep-purple-ic:hover,
  6295. .deep-purple-ic:focus {
  6296. color: #512da8
  6297. }
  6298. a.btn:not([href]):not([tabindex]),
  6299. a.btn:not([href]):not([tabindex]):focus,
  6300. a.btn:not([href]):not([tabindex]):hover {
  6301. color: #fff
  6302. }
  6303. table.table a.btn.btn-deep-purple {
  6304. color: #fff
  6305. }
  6306. .btn-outline-deep-purple {
  6307. color: #512da8 !important;
  6308. background-color: transparent !important;
  6309. border: 2px solid #512da8 !important
  6310. }
  6311. .btn-outline-deep-purple:hover,
  6312. .btn-outline-deep-purple:focus,
  6313. .btn-outline-deep-purple:active,
  6314. .btn-outline-deep-purple:active:focus,
  6315. .btn-outline-deep-purple.active {
  6316. color: #512da8 !important;
  6317. background-color: transparent !important;
  6318. border-color: #512da8 !important
  6319. }
  6320. .btn-outline-deep-purple:not([disabled]):not(.disabled):active,
  6321. .btn-outline-deep-purple:not([disabled]):not(.disabled).active,
  6322. .show>.btn-outline-deep-purple.dropdown-toggle {
  6323. background-color: transparent !important;
  6324. border-color: #512da8 !important;
  6325. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6326. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6327. }
  6328. .btn-outline-deep-purple:not([disabled]):not(.disabled):active:focus,
  6329. .btn-outline-deep-purple:not([disabled]):not(.disabled).active:focus,
  6330. .show>.btn-outline-deep-purple.dropdown-toggle:focus {
  6331. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6332. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6333. }
  6334. .btn-indigo {
  6335. color: #fff;
  6336. background-color: #3f51b5 !important
  6337. }
  6338. .btn-indigo:hover {
  6339. color: #fff;
  6340. background-color: #4d5ec1
  6341. }
  6342. .btn-indigo:focus,
  6343. .btn-indigo.focus {
  6344. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6345. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6346. }
  6347. .btn-indigo:focus,
  6348. .btn-indigo:active,
  6349. .btn-indigo.active {
  6350. background-color: #252f69
  6351. }
  6352. .btn-indigo.dropdown-toggle {
  6353. background-color: #3f51b5 !important
  6354. }
  6355. .btn-indigo.dropdown-toggle:hover,
  6356. .btn-indigo.dropdown-toggle:focus {
  6357. background-color: #4d5ec1 !important
  6358. }
  6359. .btn-indigo:not([disabled]):not(.disabled):active,
  6360. .btn-indigo:not([disabled]):not(.disabled).active,
  6361. .show>.btn-indigo.dropdown-toggle {
  6362. background-color: #252f69 !important;
  6363. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6364. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6365. }
  6366. .btn-indigo:not([disabled]):not(.disabled):active:focus,
  6367. .btn-indigo:not([disabled]):not(.disabled).active:focus,
  6368. .show>.btn-indigo.dropdown-toggle:focus {
  6369. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6370. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6371. }
  6372. .indigo-ic {
  6373. color: #3f51b5 !important
  6374. }
  6375. .indigo-ic:hover,
  6376. .indigo-ic:focus {
  6377. color: #3f51b5
  6378. }
  6379. a.btn:not([href]):not([tabindex]),
  6380. a.btn:not([href]):not([tabindex]):focus,
  6381. a.btn:not([href]):not([tabindex]):hover {
  6382. color: #fff
  6383. }
  6384. table.table a.btn.btn-indigo {
  6385. color: #fff
  6386. }
  6387. .btn-outline-indigo {
  6388. color: #3f51b5 !important;
  6389. background-color: transparent !important;
  6390. border: 2px solid #3f51b5 !important
  6391. }
  6392. .btn-outline-indigo:hover,
  6393. .btn-outline-indigo:focus,
  6394. .btn-outline-indigo:active,
  6395. .btn-outline-indigo:active:focus,
  6396. .btn-outline-indigo.active {
  6397. color: #3f51b5 !important;
  6398. background-color: transparent !important;
  6399. border-color: #3f51b5 !important
  6400. }
  6401. .btn-outline-indigo:not([disabled]):not(.disabled):active,
  6402. .btn-outline-indigo:not([disabled]):not(.disabled).active,
  6403. .show>.btn-outline-indigo.dropdown-toggle {
  6404. background-color: transparent !important;
  6405. border-color: #3f51b5 !important;
  6406. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6407. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6408. }
  6409. .btn-outline-indigo:not([disabled]):not(.disabled):active:focus,
  6410. .btn-outline-indigo:not([disabled]):not(.disabled).active:focus,
  6411. .show>.btn-outline-indigo.dropdown-toggle:focus {
  6412. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6413. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6414. }
  6415. .btn-blue {
  6416. color: #fff;
  6417. background-color: #1976d2 !important
  6418. }
  6419. .btn-blue:hover {
  6420. color: #fff;
  6421. background-color: #2083e4
  6422. }
  6423. .btn-blue:focus,
  6424. .btn-blue.focus {
  6425. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6426. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6427. }
  6428. .btn-blue:focus,
  6429. .btn-blue:active,
  6430. .btn-blue.active {
  6431. background-color: #0e4377
  6432. }
  6433. .btn-blue.dropdown-toggle {
  6434. background-color: #1976d2 !important
  6435. }
  6436. .btn-blue.dropdown-toggle:hover,
  6437. .btn-blue.dropdown-toggle:focus {
  6438. background-color: #2083e4 !important
  6439. }
  6440. .btn-blue:not([disabled]):not(.disabled):active,
  6441. .btn-blue:not([disabled]):not(.disabled).active,
  6442. .show>.btn-blue.dropdown-toggle {
  6443. background-color: #0e4377 !important;
  6444. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6445. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6446. }
  6447. .btn-blue:not([disabled]):not(.disabled):active:focus,
  6448. .btn-blue:not([disabled]):not(.disabled).active:focus,
  6449. .show>.btn-blue.dropdown-toggle:focus {
  6450. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6451. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6452. }
  6453. .blue-ic {
  6454. color: #1976d2 !important
  6455. }
  6456. .blue-ic:hover,
  6457. .blue-ic:focus {
  6458. color: #1976d2
  6459. }
  6460. a.btn:not([href]):not([tabindex]),
  6461. a.btn:not([href]):not([tabindex]):focus,
  6462. a.btn:not([href]):not([tabindex]):hover {
  6463. color: #fff
  6464. }
  6465. table.table a.btn.btn-blue {
  6466. color: #fff
  6467. }
  6468. .btn-outline-blue {
  6469. color: #1976d2 !important;
  6470. background-color: transparent !important;
  6471. border: 2px solid #1976d2 !important
  6472. }
  6473. .btn-outline-blue:hover,
  6474. .btn-outline-blue:focus,
  6475. .btn-outline-blue:active,
  6476. .btn-outline-blue:active:focus,
  6477. .btn-outline-blue.active {
  6478. color: #1976d2 !important;
  6479. background-color: transparent !important;
  6480. border-color: #1976d2 !important
  6481. }
  6482. .btn-outline-blue:not([disabled]):not(.disabled):active,
  6483. .btn-outline-blue:not([disabled]):not(.disabled).active,
  6484. .show>.btn-outline-blue.dropdown-toggle {
  6485. background-color: transparent !important;
  6486. border-color: #1976d2 !important;
  6487. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6488. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6489. }
  6490. .btn-outline-blue:not([disabled]):not(.disabled):active:focus,
  6491. .btn-outline-blue:not([disabled]):not(.disabled).active:focus,
  6492. .show>.btn-outline-blue.dropdown-toggle:focus {
  6493. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6494. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6495. }
  6496. .btn-light-blue {
  6497. color: #fff;
  6498. background-color: #82b1ff !important
  6499. }
  6500. .btn-light-blue:hover {
  6501. color: #fff;
  6502. background-color: #9cc1ff
  6503. }
  6504. .btn-light-blue:focus,
  6505. .btn-light-blue.focus {
  6506. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6507. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6508. }
  6509. .btn-light-blue:focus,
  6510. .btn-light-blue:active,
  6511. .btn-light-blue.active {
  6512. background-color: #1c71ff
  6513. }
  6514. .btn-light-blue.dropdown-toggle {
  6515. background-color: #82b1ff !important
  6516. }
  6517. .btn-light-blue.dropdown-toggle:hover,
  6518. .btn-light-blue.dropdown-toggle:focus {
  6519. background-color: #9cc1ff !important
  6520. }
  6521. .btn-light-blue:not([disabled]):not(.disabled):active,
  6522. .btn-light-blue:not([disabled]):not(.disabled).active,
  6523. .show>.btn-light-blue.dropdown-toggle {
  6524. background-color: #1c71ff !important;
  6525. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6526. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6527. }
  6528. .btn-light-blue:not([disabled]):not(.disabled):active:focus,
  6529. .btn-light-blue:not([disabled]):not(.disabled).active:focus,
  6530. .show>.btn-light-blue.dropdown-toggle:focus {
  6531. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6532. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6533. }
  6534. .light-blue-ic {
  6535. color: #82b1ff !important
  6536. }
  6537. .light-blue-ic:hover,
  6538. .light-blue-ic:focus {
  6539. color: #82b1ff
  6540. }
  6541. a.btn:not([href]):not([tabindex]),
  6542. a.btn:not([href]):not([tabindex]):focus,
  6543. a.btn:not([href]):not([tabindex]):hover {
  6544. color: #fff
  6545. }
  6546. table.table a.btn.btn-light-blue {
  6547. color: #fff
  6548. }
  6549. .btn-outline-light-blue {
  6550. color: #82b1ff !important;
  6551. background-color: transparent !important;
  6552. border: 2px solid #82b1ff !important
  6553. }
  6554. .btn-outline-light-blue:hover,
  6555. .btn-outline-light-blue:focus,
  6556. .btn-outline-light-blue:active,
  6557. .btn-outline-light-blue:active:focus,
  6558. .btn-outline-light-blue.active {
  6559. color: #82b1ff !important;
  6560. background-color: transparent !important;
  6561. border-color: #82b1ff !important
  6562. }
  6563. .btn-outline-light-blue:not([disabled]):not(.disabled):active,
  6564. .btn-outline-light-blue:not([disabled]):not(.disabled).active,
  6565. .show>.btn-outline-light-blue.dropdown-toggle {
  6566. background-color: transparent !important;
  6567. border-color: #82b1ff !important;
  6568. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6569. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6570. }
  6571. .btn-outline-light-blue:not([disabled]):not(.disabled):active:focus,
  6572. .btn-outline-light-blue:not([disabled]):not(.disabled).active:focus,
  6573. .show>.btn-outline-light-blue.dropdown-toggle:focus {
  6574. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6575. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6576. }
  6577. .btn-cyan {
  6578. color: #fff;
  6579. background-color: #00bcd4 !important
  6580. }
  6581. .btn-cyan:hover {
  6582. color: #fff;
  6583. background-color: #00d3ee
  6584. }
  6585. .btn-cyan:focus,
  6586. .btn-cyan.focus {
  6587. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6588. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6589. }
  6590. .btn-cyan:focus,
  6591. .btn-cyan:active,
  6592. .btn-cyan.active {
  6593. background-color: #00626e
  6594. }
  6595. .btn-cyan.dropdown-toggle {
  6596. background-color: #00bcd4 !important
  6597. }
  6598. .btn-cyan.dropdown-toggle:hover,
  6599. .btn-cyan.dropdown-toggle:focus {
  6600. background-color: #00d3ee !important
  6601. }
  6602. .btn-cyan:not([disabled]):not(.disabled):active,
  6603. .btn-cyan:not([disabled]):not(.disabled).active,
  6604. .show>.btn-cyan.dropdown-toggle {
  6605. background-color: #00626e !important;
  6606. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6607. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6608. }
  6609. .btn-cyan:not([disabled]):not(.disabled):active:focus,
  6610. .btn-cyan:not([disabled]):not(.disabled).active:focus,
  6611. .show>.btn-cyan.dropdown-toggle:focus {
  6612. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6613. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6614. }
  6615. .cyan-ic {
  6616. color: #00bcd4 !important
  6617. }
  6618. .cyan-ic:hover,
  6619. .cyan-ic:focus {
  6620. color: #00bcd4
  6621. }
  6622. a.btn:not([href]):not([tabindex]),
  6623. a.btn:not([href]):not([tabindex]):focus,
  6624. a.btn:not([href]):not([tabindex]):hover {
  6625. color: #fff
  6626. }
  6627. table.table a.btn.btn-cyan {
  6628. color: #fff
  6629. }
  6630. .btn-outline-cyan {
  6631. color: #00bcd4 !important;
  6632. background-color: transparent !important;
  6633. border: 2px solid #00bcd4 !important
  6634. }
  6635. .btn-outline-cyan:hover,
  6636. .btn-outline-cyan:focus,
  6637. .btn-outline-cyan:active,
  6638. .btn-outline-cyan:active:focus,
  6639. .btn-outline-cyan.active {
  6640. color: #00bcd4 !important;
  6641. background-color: transparent !important;
  6642. border-color: #00bcd4 !important
  6643. }
  6644. .btn-outline-cyan:not([disabled]):not(.disabled):active,
  6645. .btn-outline-cyan:not([disabled]):not(.disabled).active,
  6646. .show>.btn-outline-cyan.dropdown-toggle {
  6647. background-color: transparent !important;
  6648. border-color: #00bcd4 !important;
  6649. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6650. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6651. }
  6652. .btn-outline-cyan:not([disabled]):not(.disabled):active:focus,
  6653. .btn-outline-cyan:not([disabled]):not(.disabled).active:focus,
  6654. .show>.btn-outline-cyan.dropdown-toggle:focus {
  6655. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6656. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6657. }
  6658. .btn-teal {
  6659. color: #fff;
  6660. background-color: #00796b !important
  6661. }
  6662. .btn-teal:hover {
  6663. color: #fff;
  6664. background-color: #009382
  6665. }
  6666. .btn-teal:focus,
  6667. .btn-teal.focus {
  6668. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6669. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6670. }
  6671. .btn-teal:focus,
  6672. .btn-teal:active,
  6673. .btn-teal.active {
  6674. background-color: #001311
  6675. }
  6676. .btn-teal.dropdown-toggle {
  6677. background-color: #00796b !important
  6678. }
  6679. .btn-teal.dropdown-toggle:hover,
  6680. .btn-teal.dropdown-toggle:focus {
  6681. background-color: #009382 !important
  6682. }
  6683. .btn-teal:not([disabled]):not(.disabled):active,
  6684. .btn-teal:not([disabled]):not(.disabled).active,
  6685. .show>.btn-teal.dropdown-toggle {
  6686. background-color: #001311 !important;
  6687. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6688. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6689. }
  6690. .btn-teal:not([disabled]):not(.disabled):active:focus,
  6691. .btn-teal:not([disabled]):not(.disabled).active:focus,
  6692. .show>.btn-teal.dropdown-toggle:focus {
  6693. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6694. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6695. }
  6696. .teal-ic {
  6697. color: #00796b !important
  6698. }
  6699. .teal-ic:hover,
  6700. .teal-ic:focus {
  6701. color: #00796b
  6702. }
  6703. a.btn:not([href]):not([tabindex]),
  6704. a.btn:not([href]):not([tabindex]):focus,
  6705. a.btn:not([href]):not([tabindex]):hover {
  6706. color: #fff
  6707. }
  6708. table.table a.btn.btn-teal {
  6709. color: #fff
  6710. }
  6711. .btn-outline-teal {
  6712. color: #00796b !important;
  6713. background-color: transparent !important;
  6714. border: 2px solid #00796b !important
  6715. }
  6716. .btn-outline-teal:hover,
  6717. .btn-outline-teal:focus,
  6718. .btn-outline-teal:active,
  6719. .btn-outline-teal:active:focus,
  6720. .btn-outline-teal.active {
  6721. color: #00796b !important;
  6722. background-color: transparent !important;
  6723. border-color: #00796b !important
  6724. }
  6725. .btn-outline-teal:not([disabled]):not(.disabled):active,
  6726. .btn-outline-teal:not([disabled]):not(.disabled).active,
  6727. .show>.btn-outline-teal.dropdown-toggle {
  6728. background-color: transparent !important;
  6729. border-color: #00796b !important;
  6730. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6731. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6732. }
  6733. .btn-outline-teal:not([disabled]):not(.disabled):active:focus,
  6734. .btn-outline-teal:not([disabled]):not(.disabled).active:focus,
  6735. .show>.btn-outline-teal.dropdown-toggle:focus {
  6736. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6737. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6738. }
  6739. .btn-green {
  6740. color: #fff;
  6741. background-color: #388e3c !important
  6742. }
  6743. .btn-green:hover {
  6744. color: #fff;
  6745. background-color: #3fa044
  6746. }
  6747. .btn-green:focus,
  6748. .btn-green.focus {
  6749. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6750. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6751. }
  6752. .btn-green:focus,
  6753. .btn-green:active,
  6754. .btn-green.active {
  6755. background-color: #1b451d
  6756. }
  6757. .btn-green.dropdown-toggle {
  6758. background-color: #388e3c !important
  6759. }
  6760. .btn-green.dropdown-toggle:hover,
  6761. .btn-green.dropdown-toggle:focus {
  6762. background-color: #3fa044 !important
  6763. }
  6764. .btn-green:not([disabled]):not(.disabled):active,
  6765. .btn-green:not([disabled]):not(.disabled).active,
  6766. .show>.btn-green.dropdown-toggle {
  6767. background-color: #1b451d !important;
  6768. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6769. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6770. }
  6771. .btn-green:not([disabled]):not(.disabled):active:focus,
  6772. .btn-green:not([disabled]):not(.disabled).active:focus,
  6773. .show>.btn-green.dropdown-toggle:focus {
  6774. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6775. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6776. }
  6777. .green-ic {
  6778. color: #388e3c !important
  6779. }
  6780. .green-ic:hover,
  6781. .green-ic:focus {
  6782. color: #388e3c
  6783. }
  6784. a.btn:not([href]):not([tabindex]),
  6785. a.btn:not([href]):not([tabindex]):focus,
  6786. a.btn:not([href]):not([tabindex]):hover {
  6787. color: #fff
  6788. }
  6789. table.table a.btn.btn-green {
  6790. color: #fff
  6791. }
  6792. .btn-outline-green {
  6793. color: #388e3c !important;
  6794. background-color: transparent !important;
  6795. border: 2px solid #388e3c !important
  6796. }
  6797. .btn-outline-green:hover,
  6798. .btn-outline-green:focus,
  6799. .btn-outline-green:active,
  6800. .btn-outline-green:active:focus,
  6801. .btn-outline-green.active {
  6802. color: #388e3c !important;
  6803. background-color: transparent !important;
  6804. border-color: #388e3c !important
  6805. }
  6806. .btn-outline-green:not([disabled]):not(.disabled):active,
  6807. .btn-outline-green:not([disabled]):not(.disabled).active,
  6808. .show>.btn-outline-green.dropdown-toggle {
  6809. background-color: transparent !important;
  6810. border-color: #388e3c !important;
  6811. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6812. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6813. }
  6814. .btn-outline-green:not([disabled]):not(.disabled):active:focus,
  6815. .btn-outline-green:not([disabled]):not(.disabled).active:focus,
  6816. .show>.btn-outline-green.dropdown-toggle:focus {
  6817. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6818. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6819. }
  6820. .btn-light-green {
  6821. color: #fff;
  6822. background-color: #8bc34a !important
  6823. }
  6824. .btn-light-green:hover {
  6825. color: #fff;
  6826. background-color: #97c95d
  6827. }
  6828. .btn-light-green:focus,
  6829. .btn-light-green.focus {
  6830. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6831. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6832. }
  6833. .btn-light-green:focus,
  6834. .btn-light-green:active,
  6835. .btn-light-green.active {
  6836. background-color: #577d2a
  6837. }
  6838. .btn-light-green.dropdown-toggle {
  6839. background-color: #8bc34a !important
  6840. }
  6841. .btn-light-green.dropdown-toggle:hover,
  6842. .btn-light-green.dropdown-toggle:focus {
  6843. background-color: #97c95d !important
  6844. }
  6845. .btn-light-green:not([disabled]):not(.disabled):active,
  6846. .btn-light-green:not([disabled]):not(.disabled).active,
  6847. .show>.btn-light-green.dropdown-toggle {
  6848. background-color: #577d2a !important;
  6849. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6850. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6851. }
  6852. .btn-light-green:not([disabled]):not(.disabled):active:focus,
  6853. .btn-light-green:not([disabled]):not(.disabled).active:focus,
  6854. .show>.btn-light-green.dropdown-toggle:focus {
  6855. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6856. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6857. }
  6858. .light-green-ic {
  6859. color: #8bc34a !important
  6860. }
  6861. .light-green-ic:hover,
  6862. .light-green-ic:focus {
  6863. color: #8bc34a
  6864. }
  6865. a.btn:not([href]):not([tabindex]),
  6866. a.btn:not([href]):not([tabindex]):focus,
  6867. a.btn:not([href]):not([tabindex]):hover {
  6868. color: #fff
  6869. }
  6870. table.table a.btn.btn-light-green {
  6871. color: #fff
  6872. }
  6873. .btn-outline-light-green {
  6874. color: #8bc34a !important;
  6875. background-color: transparent !important;
  6876. border: 2px solid #8bc34a !important
  6877. }
  6878. .btn-outline-light-green:hover,
  6879. .btn-outline-light-green:focus,
  6880. .btn-outline-light-green:active,
  6881. .btn-outline-light-green:active:focus,
  6882. .btn-outline-light-green.active {
  6883. color: #8bc34a !important;
  6884. background-color: transparent !important;
  6885. border-color: #8bc34a !important
  6886. }
  6887. .btn-outline-light-green:not([disabled]):not(.disabled):active,
  6888. .btn-outline-light-green:not([disabled]):not(.disabled).active,
  6889. .show>.btn-outline-light-green.dropdown-toggle {
  6890. background-color: transparent !important;
  6891. border-color: #8bc34a !important;
  6892. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6893. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6894. }
  6895. .btn-outline-light-green:not([disabled]):not(.disabled):active:focus,
  6896. .btn-outline-light-green:not([disabled]):not(.disabled).active:focus,
  6897. .show>.btn-outline-light-green.dropdown-toggle:focus {
  6898. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6899. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6900. }
  6901. .btn-lime {
  6902. color: #fff;
  6903. background-color: #afb42b !important
  6904. }
  6905. .btn-lime:hover {
  6906. color: #fff;
  6907. background-color: #c3c930
  6908. }
  6909. .btn-lime:focus,
  6910. .btn-lime.focus {
  6911. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6912. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6913. }
  6914. .btn-lime:focus,
  6915. .btn-lime:active,
  6916. .btn-lime.active {
  6917. background-color: #5f6217
  6918. }
  6919. .btn-lime.dropdown-toggle {
  6920. background-color: #afb42b !important
  6921. }
  6922. .btn-lime.dropdown-toggle:hover,
  6923. .btn-lime.dropdown-toggle:focus {
  6924. background-color: #c3c930 !important
  6925. }
  6926. .btn-lime:not([disabled]):not(.disabled):active,
  6927. .btn-lime:not([disabled]):not(.disabled).active,
  6928. .show>.btn-lime.dropdown-toggle {
  6929. background-color: #5f6217 !important;
  6930. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6931. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6932. }
  6933. .btn-lime:not([disabled]):not(.disabled):active:focus,
  6934. .btn-lime:not([disabled]):not(.disabled).active:focus,
  6935. .show>.btn-lime.dropdown-toggle:focus {
  6936. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6937. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6938. }
  6939. .lime-ic {
  6940. color: #afb42b !important
  6941. }
  6942. .lime-ic:hover,
  6943. .lime-ic:focus {
  6944. color: #afb42b
  6945. }
  6946. a.btn:not([href]):not([tabindex]),
  6947. a.btn:not([href]):not([tabindex]):focus,
  6948. a.btn:not([href]):not([tabindex]):hover {
  6949. color: #fff
  6950. }
  6951. table.table a.btn.btn-lime {
  6952. color: #fff
  6953. }
  6954. .btn-outline-lime {
  6955. color: #afb42b !important;
  6956. background-color: transparent !important;
  6957. border: 2px solid #afb42b !important
  6958. }
  6959. .btn-outline-lime:hover,
  6960. .btn-outline-lime:focus,
  6961. .btn-outline-lime:active,
  6962. .btn-outline-lime:active:focus,
  6963. .btn-outline-lime.active {
  6964. color: #afb42b !important;
  6965. background-color: transparent !important;
  6966. border-color: #afb42b !important
  6967. }
  6968. .btn-outline-lime:not([disabled]):not(.disabled):active,
  6969. .btn-outline-lime:not([disabled]):not(.disabled).active,
  6970. .show>.btn-outline-lime.dropdown-toggle {
  6971. background-color: transparent !important;
  6972. border-color: #afb42b !important;
  6973. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6974. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6975. }
  6976. .btn-outline-lime:not([disabled]):not(.disabled):active:focus,
  6977. .btn-outline-lime:not([disabled]):not(.disabled).active:focus,
  6978. .show>.btn-outline-lime.dropdown-toggle:focus {
  6979. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6980. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6981. }
  6982. .btn-yellow {
  6983. color: #fff;
  6984. background-color: #fbc02d !important
  6985. }
  6986. .btn-yellow:hover {
  6987. color: #fff;
  6988. background-color: #fbc846
  6989. }
  6990. .btn-yellow:focus,
  6991. .btn-yellow.focus {
  6992. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6993. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  6994. }
  6995. .btn-yellow:focus,
  6996. .btn-yellow:active,
  6997. .btn-yellow.active {
  6998. background-color: #be8904
  6999. }
  7000. .btn-yellow.dropdown-toggle {
  7001. background-color: #fbc02d !important
  7002. }
  7003. .btn-yellow.dropdown-toggle:hover,
  7004. .btn-yellow.dropdown-toggle:focus {
  7005. background-color: #fbc846 !important
  7006. }
  7007. .btn-yellow:not([disabled]):not(.disabled):active,
  7008. .btn-yellow:not([disabled]):not(.disabled).active,
  7009. .show>.btn-yellow.dropdown-toggle {
  7010. background-color: #be8904 !important;
  7011. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7012. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7013. }
  7014. .btn-yellow:not([disabled]):not(.disabled):active:focus,
  7015. .btn-yellow:not([disabled]):not(.disabled).active:focus,
  7016. .show>.btn-yellow.dropdown-toggle:focus {
  7017. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7018. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7019. }
  7020. .yellow-ic {
  7021. color: #fbc02d !important
  7022. }
  7023. .yellow-ic:hover,
  7024. .yellow-ic:focus {
  7025. color: #fbc02d
  7026. }
  7027. a.btn:not([href]):not([tabindex]),
  7028. a.btn:not([href]):not([tabindex]):focus,
  7029. a.btn:not([href]):not([tabindex]):hover {
  7030. color: #fff
  7031. }
  7032. table.table a.btn.btn-yellow {
  7033. color: #fff
  7034. }
  7035. .btn-outline-yellow {
  7036. color: #fbc02d !important;
  7037. background-color: transparent !important;
  7038. border: 2px solid #fbc02d !important
  7039. }
  7040. .btn-outline-yellow:hover,
  7041. .btn-outline-yellow:focus,
  7042. .btn-outline-yellow:active,
  7043. .btn-outline-yellow:active:focus,
  7044. .btn-outline-yellow.active {
  7045. color: #fbc02d !important;
  7046. background-color: transparent !important;
  7047. border-color: #fbc02d !important
  7048. }
  7049. .btn-outline-yellow:not([disabled]):not(.disabled):active,
  7050. .btn-outline-yellow:not([disabled]):not(.disabled).active,
  7051. .show>.btn-outline-yellow.dropdown-toggle {
  7052. background-color: transparent !important;
  7053. border-color: #fbc02d !important;
  7054. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7055. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7056. }
  7057. .btn-outline-yellow:not([disabled]):not(.disabled):active:focus,
  7058. .btn-outline-yellow:not([disabled]):not(.disabled).active:focus,
  7059. .show>.btn-outline-yellow.dropdown-toggle:focus {
  7060. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7061. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7062. }
  7063. .btn-amber {
  7064. color: #fff;
  7065. background-color: #ffa000 !important
  7066. }
  7067. .btn-amber:hover {
  7068. color: #fff;
  7069. background-color: #ffaa1a
  7070. }
  7071. .btn-amber:focus,
  7072. .btn-amber.focus {
  7073. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7074. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7075. }
  7076. .btn-amber:focus,
  7077. .btn-amber:active,
  7078. .btn-amber.active {
  7079. background-color: #996000
  7080. }
  7081. .btn-amber.dropdown-toggle {
  7082. background-color: #ffa000 !important
  7083. }
  7084. .btn-amber.dropdown-toggle:hover,
  7085. .btn-amber.dropdown-toggle:focus {
  7086. background-color: #ffaa1a !important
  7087. }
  7088. .btn-amber:not([disabled]):not(.disabled):active,
  7089. .btn-amber:not([disabled]):not(.disabled).active,
  7090. .show>.btn-amber.dropdown-toggle {
  7091. background-color: #996000 !important;
  7092. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7093. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7094. }
  7095. .btn-amber:not([disabled]):not(.disabled):active:focus,
  7096. .btn-amber:not([disabled]):not(.disabled).active:focus,
  7097. .show>.btn-amber.dropdown-toggle:focus {
  7098. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7099. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7100. }
  7101. .amber-ic {
  7102. color: #ffa000 !important
  7103. }
  7104. .amber-ic:hover,
  7105. .amber-ic:focus {
  7106. color: #ffa000
  7107. }
  7108. a.btn:not([href]):not([tabindex]),
  7109. a.btn:not([href]):not([tabindex]):focus,
  7110. a.btn:not([href]):not([tabindex]):hover {
  7111. color: #fff
  7112. }
  7113. table.table a.btn.btn-amber {
  7114. color: #fff
  7115. }
  7116. .btn-outline-amber {
  7117. color: #ffa000 !important;
  7118. background-color: transparent !important;
  7119. border: 2px solid #ffa000 !important
  7120. }
  7121. .btn-outline-amber:hover,
  7122. .btn-outline-amber:focus,
  7123. .btn-outline-amber:active,
  7124. .btn-outline-amber:active:focus,
  7125. .btn-outline-amber.active {
  7126. color: #ffa000 !important;
  7127. background-color: transparent !important;
  7128. border-color: #ffa000 !important
  7129. }
  7130. .btn-outline-amber:not([disabled]):not(.disabled):active,
  7131. .btn-outline-amber:not([disabled]):not(.disabled).active,
  7132. .show>.btn-outline-amber.dropdown-toggle {
  7133. background-color: transparent !important;
  7134. border-color: #ffa000 !important;
  7135. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7136. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7137. }
  7138. .btn-outline-amber:not([disabled]):not(.disabled):active:focus,
  7139. .btn-outline-amber:not([disabled]):not(.disabled).active:focus,
  7140. .show>.btn-outline-amber.dropdown-toggle:focus {
  7141. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7142. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7143. }
  7144. .btn-orange {
  7145. color: #fff;
  7146. background-color: #f57c00 !important
  7147. }
  7148. .btn-orange:hover {
  7149. color: #fff;
  7150. background-color: #ff8910
  7151. }
  7152. .btn-orange:focus,
  7153. .btn-orange.focus {
  7154. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7155. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7156. }
  7157. .btn-orange:focus,
  7158. .btn-orange:active,
  7159. .btn-orange.active {
  7160. background-color: #8f4800
  7161. }
  7162. .btn-orange.dropdown-toggle {
  7163. background-color: #f57c00 !important
  7164. }
  7165. .btn-orange.dropdown-toggle:hover,
  7166. .btn-orange.dropdown-toggle:focus {
  7167. background-color: #ff8910 !important
  7168. }
  7169. .btn-orange:not([disabled]):not(.disabled):active,
  7170. .btn-orange:not([disabled]):not(.disabled).active,
  7171. .show>.btn-orange.dropdown-toggle {
  7172. background-color: #8f4800 !important;
  7173. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7174. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7175. }
  7176. .btn-orange:not([disabled]):not(.disabled):active:focus,
  7177. .btn-orange:not([disabled]):not(.disabled).active:focus,
  7178. .show>.btn-orange.dropdown-toggle:focus {
  7179. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7180. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7181. }
  7182. .orange-ic {
  7183. color: #f57c00 !important
  7184. }
  7185. .orange-ic:hover,
  7186. .orange-ic:focus {
  7187. color: #f57c00
  7188. }
  7189. a.btn:not([href]):not([tabindex]),
  7190. a.btn:not([href]):not([tabindex]):focus,
  7191. a.btn:not([href]):not([tabindex]):hover {
  7192. color: #fff
  7193. }
  7194. table.table a.btn.btn-orange {
  7195. color: #fff
  7196. }
  7197. .btn-outline-orange {
  7198. color: #f57c00 !important;
  7199. background-color: transparent !important;
  7200. border: 2px solid #f57c00 !important
  7201. }
  7202. .btn-outline-orange:hover,
  7203. .btn-outline-orange:focus,
  7204. .btn-outline-orange:active,
  7205. .btn-outline-orange:active:focus,
  7206. .btn-outline-orange.active {
  7207. color: #f57c00 !important;
  7208. background-color: transparent !important;
  7209. border-color: #f57c00 !important
  7210. }
  7211. .btn-outline-orange:not([disabled]):not(.disabled):active,
  7212. .btn-outline-orange:not([disabled]):not(.disabled).active,
  7213. .show>.btn-outline-orange.dropdown-toggle {
  7214. background-color: transparent !important;
  7215. border-color: #f57c00 !important;
  7216. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7217. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7218. }
  7219. .btn-outline-orange:not([disabled]):not(.disabled):active:focus,
  7220. .btn-outline-orange:not([disabled]):not(.disabled).active:focus,
  7221. .show>.btn-outline-orange.dropdown-toggle:focus {
  7222. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7223. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7224. }
  7225. .btn-deep-orange {
  7226. color: #fff;
  7227. background-color: #ff7043 !important
  7228. }
  7229. .btn-deep-orange:hover {
  7230. color: #fff;
  7231. background-color: #ff835d
  7232. }
  7233. .btn-deep-orange:focus,
  7234. .btn-deep-orange.focus {
  7235. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7236. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7237. }
  7238. .btn-deep-orange:focus,
  7239. .btn-deep-orange:active,
  7240. .btn-deep-orange.active {
  7241. background-color: #dc3500
  7242. }
  7243. .btn-deep-orange.dropdown-toggle {
  7244. background-color: #ff7043 !important
  7245. }
  7246. .btn-deep-orange.dropdown-toggle:hover,
  7247. .btn-deep-orange.dropdown-toggle:focus {
  7248. background-color: #ff835d !important
  7249. }
  7250. .btn-deep-orange:not([disabled]):not(.disabled):active,
  7251. .btn-deep-orange:not([disabled]):not(.disabled).active,
  7252. .show>.btn-deep-orange.dropdown-toggle {
  7253. background-color: #dc3500 !important;
  7254. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7255. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7256. }
  7257. .btn-deep-orange:not([disabled]):not(.disabled):active:focus,
  7258. .btn-deep-orange:not([disabled]):not(.disabled).active:focus,
  7259. .show>.btn-deep-orange.dropdown-toggle:focus {
  7260. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7261. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7262. }
  7263. .deep-orange-ic {
  7264. color: #ff7043 !important
  7265. }
  7266. .deep-orange-ic:hover,
  7267. .deep-orange-ic:focus {
  7268. color: #ff7043
  7269. }
  7270. a.btn:not([href]):not([tabindex]),
  7271. a.btn:not([href]):not([tabindex]):focus,
  7272. a.btn:not([href]):not([tabindex]):hover {
  7273. color: #fff
  7274. }
  7275. table.table a.btn.btn-deep-orange {
  7276. color: #fff
  7277. }
  7278. .btn-outline-deep-orange {
  7279. color: #ff7043 !important;
  7280. background-color: transparent !important;
  7281. border: 2px solid #ff7043 !important
  7282. }
  7283. .btn-outline-deep-orange:hover,
  7284. .btn-outline-deep-orange:focus,
  7285. .btn-outline-deep-orange:active,
  7286. .btn-outline-deep-orange:active:focus,
  7287. .btn-outline-deep-orange.active {
  7288. color: #ff7043 !important;
  7289. background-color: transparent !important;
  7290. border-color: #ff7043 !important
  7291. }
  7292. .btn-outline-deep-orange:not([disabled]):not(.disabled):active,
  7293. .btn-outline-deep-orange:not([disabled]):not(.disabled).active,
  7294. .show>.btn-outline-deep-orange.dropdown-toggle {
  7295. background-color: transparent !important;
  7296. border-color: #ff7043 !important;
  7297. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7298. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7299. }
  7300. .btn-outline-deep-orange:not([disabled]):not(.disabled):active:focus,
  7301. .btn-outline-deep-orange:not([disabled]):not(.disabled).active:focus,
  7302. .show>.btn-outline-deep-orange.dropdown-toggle:focus {
  7303. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7304. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7305. }
  7306. .btn-brown {
  7307. color: #fff;
  7308. background-color: #795548 !important
  7309. }
  7310. .btn-brown:hover {
  7311. color: #fff;
  7312. background-color: #896052
  7313. }
  7314. .btn-brown:focus,
  7315. .btn-brown.focus {
  7316. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7317. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7318. }
  7319. .btn-brown:focus,
  7320. .btn-brown:active,
  7321. .btn-brown.active {
  7322. background-color: #392822
  7323. }
  7324. .btn-brown.dropdown-toggle {
  7325. background-color: #795548 !important
  7326. }
  7327. .btn-brown.dropdown-toggle:hover,
  7328. .btn-brown.dropdown-toggle:focus {
  7329. background-color: #896052 !important
  7330. }
  7331. .btn-brown:not([disabled]):not(.disabled):active,
  7332. .btn-brown:not([disabled]):not(.disabled).active,
  7333. .show>.btn-brown.dropdown-toggle {
  7334. background-color: #392822 !important;
  7335. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7336. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7337. }
  7338. .btn-brown:not([disabled]):not(.disabled):active:focus,
  7339. .btn-brown:not([disabled]):not(.disabled).active:focus,
  7340. .show>.btn-brown.dropdown-toggle:focus {
  7341. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7342. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7343. }
  7344. .brown-ic {
  7345. color: #795548 !important
  7346. }
  7347. .brown-ic:hover,
  7348. .brown-ic:focus {
  7349. color: #795548
  7350. }
  7351. a.btn:not([href]):not([tabindex]),
  7352. a.btn:not([href]):not([tabindex]):focus,
  7353. a.btn:not([href]):not([tabindex]):hover {
  7354. color: #fff
  7355. }
  7356. table.table a.btn.btn-brown {
  7357. color: #fff
  7358. }
  7359. .btn-outline-brown {
  7360. color: #795548 !important;
  7361. background-color: transparent !important;
  7362. border: 2px solid #795548 !important
  7363. }
  7364. .btn-outline-brown:hover,
  7365. .btn-outline-brown:focus,
  7366. .btn-outline-brown:active,
  7367. .btn-outline-brown:active:focus,
  7368. .btn-outline-brown.active {
  7369. color: #795548 !important;
  7370. background-color: transparent !important;
  7371. border-color: #795548 !important
  7372. }
  7373. .btn-outline-brown:not([disabled]):not(.disabled):active,
  7374. .btn-outline-brown:not([disabled]):not(.disabled).active,
  7375. .show>.btn-outline-brown.dropdown-toggle {
  7376. background-color: transparent !important;
  7377. border-color: #795548 !important;
  7378. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7379. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7380. }
  7381. .btn-outline-brown:not([disabled]):not(.disabled):active:focus,
  7382. .btn-outline-brown:not([disabled]):not(.disabled).active:focus,
  7383. .show>.btn-outline-brown.dropdown-toggle:focus {
  7384. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7385. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7386. }
  7387. .btn-grey {
  7388. color: #fff;
  7389. background-color: #616161 !important
  7390. }
  7391. .btn-grey:hover {
  7392. color: #fff;
  7393. background-color: #6e6e6e
  7394. }
  7395. .btn-grey:focus,
  7396. .btn-grey.focus {
  7397. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7398. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7399. }
  7400. .btn-grey:focus,
  7401. .btn-grey:active,
  7402. .btn-grey.active {
  7403. background-color: #2e2e2e
  7404. }
  7405. .btn-grey.dropdown-toggle {
  7406. background-color: #616161 !important
  7407. }
  7408. .btn-grey.dropdown-toggle:hover,
  7409. .btn-grey.dropdown-toggle:focus {
  7410. background-color: #6e6e6e !important
  7411. }
  7412. .btn-grey:not([disabled]):not(.disabled):active,
  7413. .btn-grey:not([disabled]):not(.disabled).active,
  7414. .show>.btn-grey.dropdown-toggle {
  7415. background-color: #2e2e2e !important;
  7416. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7417. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7418. }
  7419. .btn-grey:not([disabled]):not(.disabled):active:focus,
  7420. .btn-grey:not([disabled]):not(.disabled).active:focus,
  7421. .show>.btn-grey.dropdown-toggle:focus {
  7422. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7423. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7424. }
  7425. .grey-ic {
  7426. color: #616161 !important
  7427. }
  7428. .grey-ic:hover,
  7429. .grey-ic:focus {
  7430. color: #616161
  7431. }
  7432. a.btn:not([href]):not([tabindex]),
  7433. a.btn:not([href]):not([tabindex]):focus,
  7434. a.btn:not([href]):not([tabindex]):hover {
  7435. color: #fff
  7436. }
  7437. table.table a.btn.btn-grey {
  7438. color: #fff
  7439. }
  7440. .btn-outline-grey {
  7441. color: #616161 !important;
  7442. background-color: transparent !important;
  7443. border: 2px solid #616161 !important
  7444. }
  7445. .btn-outline-grey:hover,
  7446. .btn-outline-grey:focus,
  7447. .btn-outline-grey:active,
  7448. .btn-outline-grey:active:focus,
  7449. .btn-outline-grey.active {
  7450. color: #616161 !important;
  7451. background-color: transparent !important;
  7452. border-color: #616161 !important
  7453. }
  7454. .btn-outline-grey:not([disabled]):not(.disabled):active,
  7455. .btn-outline-grey:not([disabled]):not(.disabled).active,
  7456. .show>.btn-outline-grey.dropdown-toggle {
  7457. background-color: transparent !important;
  7458. border-color: #616161 !important;
  7459. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7460. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7461. }
  7462. .btn-outline-grey:not([disabled]):not(.disabled):active:focus,
  7463. .btn-outline-grey:not([disabled]):not(.disabled).active:focus,
  7464. .show>.btn-outline-grey.dropdown-toggle:focus {
  7465. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7466. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7467. }
  7468. .btn-blue-grey {
  7469. color: #fff;
  7470. background-color: #78909c !important
  7471. }
  7472. .btn-blue-grey:hover {
  7473. color: #fff;
  7474. background-color: #879ca7
  7475. }
  7476. .btn-blue-grey:focus,
  7477. .btn-blue-grey.focus {
  7478. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7479. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7480. }
  7481. .btn-blue-grey:focus,
  7482. .btn-blue-grey:active,
  7483. .btn-blue-grey.active {
  7484. background-color: #4a5b64
  7485. }
  7486. .btn-blue-grey.dropdown-toggle {
  7487. background-color: #78909c !important
  7488. }
  7489. .btn-blue-grey.dropdown-toggle:hover,
  7490. .btn-blue-grey.dropdown-toggle:focus {
  7491. background-color: #879ca7 !important
  7492. }
  7493. .btn-blue-grey:not([disabled]):not(.disabled):active,
  7494. .btn-blue-grey:not([disabled]):not(.disabled).active,
  7495. .show>.btn-blue-grey.dropdown-toggle {
  7496. background-color: #4a5b64 !important;
  7497. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7498. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7499. }
  7500. .btn-blue-grey:not([disabled]):not(.disabled):active:focus,
  7501. .btn-blue-grey:not([disabled]):not(.disabled).active:focus,
  7502. .show>.btn-blue-grey.dropdown-toggle:focus {
  7503. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7504. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7505. }
  7506. .blue-grey-ic {
  7507. color: #78909c !important
  7508. }
  7509. .blue-grey-ic:hover,
  7510. .blue-grey-ic:focus {
  7511. color: #78909c
  7512. }
  7513. a.btn:not([href]):not([tabindex]),
  7514. a.btn:not([href]):not([tabindex]):focus,
  7515. a.btn:not([href]):not([tabindex]):hover {
  7516. color: #fff
  7517. }
  7518. table.table a.btn.btn-blue-grey {
  7519. color: #fff
  7520. }
  7521. .btn-outline-blue-grey {
  7522. color: #78909c !important;
  7523. background-color: transparent !important;
  7524. border: 2px solid #78909c !important
  7525. }
  7526. .btn-outline-blue-grey:hover,
  7527. .btn-outline-blue-grey:focus,
  7528. .btn-outline-blue-grey:active,
  7529. .btn-outline-blue-grey:active:focus,
  7530. .btn-outline-blue-grey.active {
  7531. color: #78909c !important;
  7532. background-color: transparent !important;
  7533. border-color: #78909c !important
  7534. }
  7535. .btn-outline-blue-grey:not([disabled]):not(.disabled):active,
  7536. .btn-outline-blue-grey:not([disabled]):not(.disabled).active,
  7537. .show>.btn-outline-blue-grey.dropdown-toggle {
  7538. background-color: transparent !important;
  7539. border-color: #78909c !important;
  7540. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7541. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7542. }
  7543. .btn-outline-blue-grey:not([disabled]):not(.disabled):active:focus,
  7544. .btn-outline-blue-grey:not([disabled]):not(.disabled).active:focus,
  7545. .show>.btn-outline-blue-grey.dropdown-toggle:focus {
  7546. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7547. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7548. }
  7549. .btn-dark {
  7550. color: #fff;
  7551. background-color: #212121 !important
  7552. }
  7553. .btn-dark:hover {
  7554. color: #fff;
  7555. background-color: #2e2e2e
  7556. }
  7557. .btn-dark:focus,
  7558. .btn-dark.focus {
  7559. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7560. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7561. }
  7562. .btn-dark:focus,
  7563. .btn-dark:active,
  7564. .btn-dark.active {
  7565. background-color: #000
  7566. }
  7567. .btn-dark.dropdown-toggle {
  7568. background-color: #212121 !important
  7569. }
  7570. .btn-dark.dropdown-toggle:hover,
  7571. .btn-dark.dropdown-toggle:focus {
  7572. background-color: #2e2e2e !important
  7573. }
  7574. .btn-dark:not([disabled]):not(.disabled):active,
  7575. .btn-dark:not([disabled]):not(.disabled).active,
  7576. .show>.btn-dark.dropdown-toggle {
  7577. background-color: #000 !important;
  7578. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7579. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7580. }
  7581. .btn-dark:not([disabled]):not(.disabled):active:focus,
  7582. .btn-dark:not([disabled]):not(.disabled).active:focus,
  7583. .show>.btn-dark.dropdown-toggle:focus {
  7584. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7585. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7586. }
  7587. .dark-ic {
  7588. color: #212121 !important
  7589. }
  7590. .dark-ic:hover,
  7591. .dark-ic:focus {
  7592. color: #212121
  7593. }
  7594. a.btn:not([href]):not([tabindex]),
  7595. a.btn:not([href]):not([tabindex]):focus,
  7596. a.btn:not([href]):not([tabindex]):hover {
  7597. color: #fff
  7598. }
  7599. table.table a.btn.btn-dark {
  7600. color: #fff
  7601. }
  7602. .btn-outline-dark {
  7603. color: #212121 !important;
  7604. background-color: transparent !important;
  7605. border: 2px solid #212121 !important
  7606. }
  7607. .btn-outline-dark:hover,
  7608. .btn-outline-dark:focus,
  7609. .btn-outline-dark:active,
  7610. .btn-outline-dark:active:focus,
  7611. .btn-outline-dark.active {
  7612. color: #212121 !important;
  7613. background-color: transparent !important;
  7614. border-color: #212121 !important
  7615. }
  7616. .btn-outline-dark:not([disabled]):not(.disabled):active,
  7617. .btn-outline-dark:not([disabled]):not(.disabled).active,
  7618. .show>.btn-outline-dark.dropdown-toggle {
  7619. background-color: transparent !important;
  7620. border-color: #212121 !important;
  7621. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7622. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7623. }
  7624. .btn-outline-dark:not([disabled]):not(.disabled):active:focus,
  7625. .btn-outline-dark:not([disabled]):not(.disabled).active:focus,
  7626. .show>.btn-outline-dark.dropdown-toggle:focus {
  7627. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7628. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7629. }
  7630. .btn-light {
  7631. color: #000;
  7632. background-color: #e0e0e0 !important
  7633. }
  7634. .btn-light:hover {
  7635. color: #000;
  7636. background-color: #ededed
  7637. }
  7638. .btn-light:focus,
  7639. .btn-light.focus {
  7640. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7641. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7642. }
  7643. .btn-light:focus,
  7644. .btn-light:active,
  7645. .btn-light.active {
  7646. background-color: #adadad
  7647. }
  7648. .btn-light.dropdown-toggle {
  7649. background-color: #e0e0e0 !important
  7650. }
  7651. .btn-light.dropdown-toggle:hover,
  7652. .btn-light.dropdown-toggle:focus {
  7653. background-color: #ededed !important
  7654. }
  7655. .btn-light:not([disabled]):not(.disabled):active,
  7656. .btn-light:not([disabled]):not(.disabled).active,
  7657. .show>.btn-light.dropdown-toggle {
  7658. background-color: #adadad !important;
  7659. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7660. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7661. }
  7662. .btn-light:not([disabled]):not(.disabled):active:focus,
  7663. .btn-light:not([disabled]):not(.disabled).active:focus,
  7664. .show>.btn-light.dropdown-toggle:focus {
  7665. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7666. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7667. }
  7668. .light-ic {
  7669. color: #e0e0e0 !important
  7670. }
  7671. .light-ic:hover,
  7672. .light-ic:focus {
  7673. color: #e0e0e0
  7674. }
  7675. a.btn:not([href]):not([tabindex]),
  7676. a.btn:not([href]):not([tabindex]):focus,
  7677. a.btn:not([href]):not([tabindex]):hover {
  7678. color: #000
  7679. }
  7680. table.table a.btn.btn-light {
  7681. color: #000
  7682. }
  7683. .btn-outline-light {
  7684. color: #e0e0e0 !important;
  7685. background-color: transparent !important;
  7686. border: 2px solid #e0e0e0 !important
  7687. }
  7688. .btn-outline-light:hover,
  7689. .btn-outline-light:focus,
  7690. .btn-outline-light:active,
  7691. .btn-outline-light:active:focus,
  7692. .btn-outline-light.active {
  7693. color: #e0e0e0 !important;
  7694. background-color: transparent !important;
  7695. border-color: #e0e0e0 !important
  7696. }
  7697. .btn-outline-light:not([disabled]):not(.disabled):active,
  7698. .btn-outline-light:not([disabled]):not(.disabled).active,
  7699. .show>.btn-outline-light.dropdown-toggle {
  7700. background-color: transparent !important;
  7701. border-color: #e0e0e0 !important;
  7702. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7703. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7704. }
  7705. .btn-outline-light:not([disabled]):not(.disabled):active:focus,
  7706. .btn-outline-light:not([disabled]):not(.disabled).active:focus,
  7707. .show>.btn-outline-light.dropdown-toggle:focus {
  7708. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7709. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7710. }
  7711. .btn-white {
  7712. color: #000;
  7713. background-color: #fff !important
  7714. }
  7715. .btn-white:hover {
  7716. color: #000;
  7717. background-color: #fff
  7718. }
  7719. .btn-white:focus,
  7720. .btn-white.focus {
  7721. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7722. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7723. }
  7724. .btn-white:focus,
  7725. .btn-white:active,
  7726. .btn-white.active {
  7727. background-color: #ccc
  7728. }
  7729. .btn-white.dropdown-toggle {
  7730. background-color: #fff !important
  7731. }
  7732. .btn-white.dropdown-toggle:hover,
  7733. .btn-white.dropdown-toggle:focus {
  7734. background-color: #fff !important
  7735. }
  7736. .btn-white:not([disabled]):not(.disabled):active,
  7737. .btn-white:not([disabled]):not(.disabled).active,
  7738. .show>.btn-white.dropdown-toggle {
  7739. background-color: #ccc !important;
  7740. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7741. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7742. }
  7743. .btn-white:not([disabled]):not(.disabled):active:focus,
  7744. .btn-white:not([disabled]):not(.disabled).active:focus,
  7745. .show>.btn-white.dropdown-toggle:focus {
  7746. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7747. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7748. }
  7749. .white-ic {
  7750. color: #fff !important
  7751. }
  7752. .white-ic:hover,
  7753. .white-ic:focus {
  7754. color: #fff
  7755. }
  7756. a.btn:not([href]):not([tabindex]),
  7757. a.btn:not([href]):not([tabindex]):focus,
  7758. a.btn:not([href]):not([tabindex]):hover {
  7759. color: #000
  7760. }
  7761. table.table a.btn.btn-white {
  7762. color: #000
  7763. }
  7764. .btn-outline-white {
  7765. color: #fff !important;
  7766. background-color: transparent !important;
  7767. border: 2px solid #fff !important
  7768. }
  7769. .btn-outline-white:hover,
  7770. .btn-outline-white:focus,
  7771. .btn-outline-white:active,
  7772. .btn-outline-white:active:focus,
  7773. .btn-outline-white.active {
  7774. color: #fff !important;
  7775. background-color: transparent !important;
  7776. border-color: #fff !important
  7777. }
  7778. .btn-outline-white:not([disabled]):not(.disabled):active,
  7779. .btn-outline-white:not([disabled]):not(.disabled).active,
  7780. .show>.btn-outline-white.dropdown-toggle {
  7781. background-color: transparent !important;
  7782. border-color: #fff !important;
  7783. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7784. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7785. }
  7786. .btn-outline-white:not([disabled]):not(.disabled):active:focus,
  7787. .btn-outline-white:not([disabled]):not(.disabled).active:focus,
  7788. .show>.btn-outline-white.dropdown-toggle:focus {
  7789. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7790. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7791. }
  7792. .btn-black {
  7793. color: #fff;
  7794. background-color: #000 !important
  7795. }
  7796. .btn-black:hover {
  7797. color: #fff;
  7798. background-color: #0d0d0d
  7799. }
  7800. .btn-black:focus,
  7801. .btn-black.focus {
  7802. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7803. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7804. }
  7805. .btn-black:focus,
  7806. .btn-black:active,
  7807. .btn-black.active {
  7808. background-color: #000
  7809. }
  7810. .btn-black.dropdown-toggle {
  7811. background-color: #000 !important
  7812. }
  7813. .btn-black.dropdown-toggle:hover,
  7814. .btn-black.dropdown-toggle:focus {
  7815. background-color: #0d0d0d !important
  7816. }
  7817. .btn-black:not([disabled]):not(.disabled):active,
  7818. .btn-black:not([disabled]):not(.disabled).active,
  7819. .show>.btn-black.dropdown-toggle {
  7820. background-color: #000 !important;
  7821. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7822. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7823. }
  7824. .btn-black:not([disabled]):not(.disabled):active:focus,
  7825. .btn-black:not([disabled]):not(.disabled).active:focus,
  7826. .show>.btn-black.dropdown-toggle:focus {
  7827. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7828. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7829. }
  7830. .black-ic {
  7831. color: #000 !important
  7832. }
  7833. .black-ic:hover,
  7834. .black-ic:focus {
  7835. color: #000
  7836. }
  7837. a.btn:not([href]):not([tabindex]),
  7838. a.btn:not([href]):not([tabindex]):focus,
  7839. a.btn:not([href]):not([tabindex]):hover {
  7840. color: #fff
  7841. }
  7842. table.table a.btn.btn-black {
  7843. color: #fff
  7844. }
  7845. .btn-outline-black {
  7846. color: #000 !important;
  7847. background-color: transparent !important;
  7848. border: 2px solid #000 !important
  7849. }
  7850. .btn-outline-black:hover,
  7851. .btn-outline-black:focus,
  7852. .btn-outline-black:active,
  7853. .btn-outline-black:active:focus,
  7854. .btn-outline-black.active {
  7855. color: #000 !important;
  7856. background-color: transparent !important;
  7857. border-color: #000 !important
  7858. }
  7859. .btn-outline-black:not([disabled]):not(.disabled):active,
  7860. .btn-outline-black:not([disabled]):not(.disabled).active,
  7861. .show>.btn-outline-black.dropdown-toggle {
  7862. background-color: transparent !important;
  7863. border-color: #000 !important;
  7864. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7865. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7866. }
  7867. .btn-outline-black:not([disabled]):not(.disabled):active:focus,
  7868. .btn-outline-black:not([disabled]):not(.disabled).active:focus,
  7869. .show>.btn-outline-black.dropdown-toggle:focus {
  7870. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  7871. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  7872. }
  7873. .btn.purple-gradient {
  7874. color: #fff;
  7875. -webkit-transition: .5s ease;
  7876. transition: .5s ease
  7877. }
  7878. .btn.purple-gradient:hover,
  7879. .btn.purple-gradient:focus,
  7880. .btn.purple-gradient:active,
  7881. .btn.purple-gradient:active:focus .btn.purple-gradient.active {
  7882. background: -webkit-gradient(linear, left top, left bottom, from(#ff88ce), to(#8f8bf7));
  7883. background: linear-gradient(#ff88ce, #8f8bf7)
  7884. }
  7885. .btn.peach-gradient {
  7886. color: #fff;
  7887. -webkit-transition: .5s ease;
  7888. transition: .5s ease
  7889. }
  7890. .btn.peach-gradient:hover,
  7891. .btn.peach-gradient:focus,
  7892. .btn.peach-gradient:active,
  7893. .btn.peach-gradient:active:focus .btn.peach-gradient.active {
  7894. background: -webkit-gradient(linear, left top, left bottom, from(#ffdf89), to(#fc7b7b));
  7895. background: linear-gradient(#ffdf89, #fc7b7b)
  7896. }
  7897. .btn.aqua-gradient {
  7898. color: #fff;
  7899. -webkit-transition: .5s ease;
  7900. transition: .5s ease
  7901. }
  7902. .btn.aqua-gradient:hover,
  7903. .btn.aqua-gradient:focus,
  7904. .btn.aqua-gradient:active,
  7905. .btn.aqua-gradient:active:focus .btn.aqua-gradient.active {
  7906. background: -webkit-gradient(linear, left top, left bottom, from(#3aa2ff), to(#1fffac));
  7907. background: linear-gradient(#3aa2ff, #1fffac)
  7908. }
  7909. .btn.blue-gradient {
  7910. color: #fff;
  7911. -webkit-transition: .5s ease;
  7912. transition: .5s ease
  7913. }
  7914. .btn.blue-gradient:hover,
  7915. .btn.blue-gradient:focus,
  7916. .btn.blue-gradient:active,
  7917. .btn.blue-gradient:active:focus .btn.blue-gradient.active {
  7918. background: -webkit-gradient(linear, left top, left bottom, from(#5ed1fc), to(#3647b3));
  7919. background: linear-gradient(#5ed1fc, #3647b3)
  7920. }
  7921. .btn-warning:not(:disabled):not(.disabled).active,
  7922. .btn-warning:not(:disabled):not(.disabled):active,
  7923. .show>.btn-warning.dropdown-toggle {
  7924. color: #fff
  7925. }
  7926. .card {
  7927. font-weight: 400;
  7928. border: 0;
  7929. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  7930. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  7931. }
  7932. .card[class*="border"] {
  7933. border: 1px solid #9e9e9e;
  7934. -webkit-box-shadow: none;
  7935. box-shadow: none
  7936. }
  7937. .card .card-body h1,
  7938. .card .card-body h2,
  7939. .card .card-body h3,
  7940. .card .card-body h4,
  7941. .card .card-body h5,
  7942. .card .card-body h6 {
  7943. font-weight: 400
  7944. }
  7945. .card .card-body .card-title a {
  7946. -webkit-transition: 0.2s ease-in-out;
  7947. transition: 0.2s ease-in-out
  7948. }
  7949. .card .card-body .card-title a:hover {
  7950. -webkit-transition: 0.2s ease-in-out;
  7951. transition: 0.2s ease-in-out
  7952. }
  7953. .card .card-body .card-text {
  7954. font-size: .9rem;
  7955. font-weight: 400;
  7956. color: #747373
  7957. }
  7958. .card .md-form label {
  7959. font-weight: 300
  7960. }
  7961. .dropdown .dropdown-menu .dropdown-item:active {
  7962. background-color: #757575
  7963. }
  7964. .md-form.input-group label {
  7965. top: 0;
  7966. margin-bottom: 0
  7967. }
  7968. .md-form.input-group .input-group-text {
  7969. background-color: #e0e0e0
  7970. }
  7971. .md-form.input-group .input-group-text.md-addon {
  7972. font-weight: 500;
  7973. background-color: transparent;
  7974. border: none
  7975. }
  7976. .md-form.input-group .form-control {
  7977. padding: .375rem .75rem;
  7978. margin: 0
  7979. }
  7980. .navbar {
  7981. font-weight: 300;
  7982. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  7983. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  7984. }
  7985. .navbar form .md-form input {
  7986. margin: 0 5px 1px 8px
  7987. }
  7988. .navbar .breadcrumb {
  7989. padding: .3rem 0 0 1rem;
  7990. margin: 0;
  7991. font-size: 15px;
  7992. font-weight: 300;
  7993. background-color: inherit
  7994. }
  7995. .navbar .breadcrumb .breadcrumb-item {
  7996. color: #fff
  7997. }
  7998. .navbar .breadcrumb .breadcrumb-item.active {
  7999. color: rgba(255, 255, 255, 0.65)
  8000. }
  8001. .navbar .breadcrumb .breadcrumb-item:before {
  8002. color: rgba(255, 255, 255, 0.65)
  8003. }
  8004. .navbar .navbar-toggler {
  8005. border-width: 0;
  8006. outline: 0
  8007. }
  8008. .navbar .nav-flex-icons {
  8009. -webkit-box-orient: horizontal;
  8010. -webkit-box-direction: normal;
  8011. -ms-flex-direction: row;
  8012. flex-direction: row
  8013. }
  8014. @media (max-width: 992px) {
  8015. .navbar .container {
  8016. width: 100%
  8017. }
  8018. .navbar .container .navbar-toggler-right {
  8019. right: 0
  8020. }
  8021. }
  8022. .navbar .nav-item .nav-link {
  8023. display: block
  8024. }
  8025. .navbar .nav-item .nav-link.disabled:active {
  8026. pointer-events: none
  8027. }
  8028. .navbar .nav-item .nav-link .fas,
  8029. .navbar .nav-item .nav-link .fab,
  8030. .navbar .nav-item .nav-link .far {
  8031. padding-right: 3px;
  8032. padding-left: 3px
  8033. }
  8034. @media (max-width: 992px) {
  8035. .navbar .nav-item .nav-link {
  8036. padding-right: 6px;
  8037. padding-left: 6px
  8038. }
  8039. }
  8040. .navbar .dropdown-menu {
  8041. position: absolute !important;
  8042. margin-top: 0
  8043. }
  8044. .navbar .dropdown-menu a {
  8045. padding: 10px;
  8046. font-size: .9375rem;
  8047. font-weight: 300
  8048. }
  8049. .navbar .dropdown-menu a:not(.active) {
  8050. color: #000
  8051. }
  8052. @media (max-width: 600px) {
  8053. .navbar .dropdown-menu form {
  8054. width: 17rem
  8055. }
  8056. }
  8057. @media (min-width: 600px) {
  8058. .navbar .dropdown-menu form {
  8059. width: 22rem
  8060. }
  8061. }
  8062. .navbar.navbar-light .navbar-nav .nav-item .nav-link.disbled {
  8063. color: rgba(0, 0, 0, 0.3)
  8064. }
  8065. .navbar.navbar-light .navbar-nav .nav-item .nav-link.disbled:hover {
  8066. color: rgba(0, 0, 0, 0.3)
  8067. }
  8068. .navbar.navbar-light .navbar-toggler-icon {
  8069. cursor: pointer;
  8070. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
  8071. }
  8072. .navbar.navbar-light .breadcrumb .nav-item .nav-link,
  8073. .navbar.navbar-light .navbar-nav .nav-item .nav-link {
  8074. color: #000;
  8075. -webkit-transition: .35s;
  8076. transition: .35s
  8077. }
  8078. .navbar.navbar-light .breadcrumb .nav-item .nav-link:hover,
  8079. .navbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  8080. color: rgba(0, 0, 0, 0.7)
  8081. }
  8082. .navbar.navbar-light .breadcrumb .nav-item.active>.nav-link,
  8083. .navbar.navbar-light .navbar-nav .nav-item.active>.nav-link {
  8084. background-color: rgba(0, 0, 0, 0.1)
  8085. }
  8086. .navbar.navbar-light .breadcrumb .nav-item.active>.nav-link:hover,
  8087. .navbar.navbar-light .navbar-nav .nav-item.active>.nav-link:hover {
  8088. color: #000
  8089. }
  8090. .navbar.navbar-light .navbar-toggler {
  8091. color: #000
  8092. }
  8093. .navbar.navbar-light form .md-form input {
  8094. border-bottom: 1px solid #000
  8095. }
  8096. .navbar.navbar-light form .md-form input:focus:not([readonly]) {
  8097. border-color: #4285f4
  8098. }
  8099. .navbar.navbar-light form .md-form .form-control {
  8100. color: #000
  8101. }
  8102. .navbar.navbar-light form .md-form .form-control::-webkit-input-placeholder {
  8103. font-weight: 300;
  8104. color: #000
  8105. }
  8106. .navbar.navbar-light form .md-form .form-control::-moz-placeholder {
  8107. font-weight: 300;
  8108. color: #000
  8109. }
  8110. .navbar.navbar-light form .md-form .form-control:-ms-input-placeholder {
  8111. font-weight: 300;
  8112. color: #000
  8113. }
  8114. .navbar.navbar-light form .md-form .form-control::-ms-input-placeholder {
  8115. font-weight: 300;
  8116. color: #000
  8117. }
  8118. .navbar.navbar-light form .md-form .form-control::placeholder {
  8119. font-weight: 300;
  8120. color: #000
  8121. }
  8122. .navbar.navbar-dark .navbar-nav .nav-item .nav-link.disbled {
  8123. color: rgba(255, 255, 255, 0.25)
  8124. }
  8125. .navbar.navbar-dark .navbar-nav .nav-item .nav-link.disbled:hover {
  8126. color: rgba(255, 255, 255, 0.25)
  8127. }
  8128. .navbar.navbar-dark .navbar-toggler-icon {
  8129. cursor: pointer;
  8130. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
  8131. }
  8132. .navbar.navbar-dark .breadcrumb .nav-item .nav-link,
  8133. .navbar.navbar-dark .navbar-nav .nav-item .nav-link {
  8134. color: #fff;
  8135. -webkit-transition: .35s;
  8136. transition: .35s
  8137. }
  8138. .navbar.navbar-dark .breadcrumb .nav-item .nav-link:hover,
  8139. .navbar.navbar-dark .navbar-nav .nav-item .nav-link:hover {
  8140. color: rgba(255, 255, 255, 0.75)
  8141. }
  8142. .navbar.navbar-dark .breadcrumb .nav-item.active>.nav-link,
  8143. .navbar.navbar-dark .navbar-nav .nav-item.active>.nav-link {
  8144. background-color: rgba(255, 255, 255, 0.1)
  8145. }
  8146. .navbar.navbar-dark .breadcrumb .nav-item.active>.nav-link:hover,
  8147. .navbar.navbar-dark .navbar-nav .nav-item.active>.nav-link:hover {
  8148. color: #fff
  8149. }
  8150. .navbar.navbar-dark .navbar-toggler {
  8151. color: #fff
  8152. }
  8153. .navbar.navbar-dark form .md-form input {
  8154. border-bottom: 1px solid #fff
  8155. }
  8156. .navbar.navbar-dark form .md-form input:focus:not([readonly]) {
  8157. border-color: #4285f4
  8158. }
  8159. .navbar.navbar-dark form .md-form .form-control {
  8160. color: #fff
  8161. }
  8162. .navbar.navbar-dark form .md-form .form-control::-webkit-input-placeholder {
  8163. font-weight: 300;
  8164. color: #fff
  8165. }
  8166. .navbar.navbar-dark form .md-form .form-control::-moz-placeholder {
  8167. font-weight: 300;
  8168. color: #fff
  8169. }
  8170. .navbar.navbar-dark form .md-form .form-control:-ms-input-placeholder {
  8171. font-weight: 300;
  8172. color: #fff
  8173. }
  8174. .navbar.navbar-dark form .md-form .form-control::-ms-input-placeholder {
  8175. font-weight: 300;
  8176. color: #fff
  8177. }
  8178. .navbar.navbar-dark form .md-form .form-control::placeholder {
  8179. font-weight: 300;
  8180. color: #fff
  8181. }
  8182. @media (min-width: 600px) {
  8183. .navbar.scrolling-navbar {
  8184. padding-top: 12px;
  8185. padding-bottom: 12px;
  8186. -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  8187. transition: background 0.5s ease-in-out, padding 0.5s ease-in-out
  8188. }
  8189. .navbar.scrolling-navbar .navbar-nav>li {
  8190. -webkit-transition-duration: 1s;
  8191. transition-duration: 1s
  8192. }
  8193. .navbar.scrolling-navbar.top-nav-collapse {
  8194. padding-top: 5px;
  8195. padding-bottom: 5px
  8196. }
  8197. }
  8198. .pagination .page-item.active .page-link {
  8199. color: #fff;
  8200. background-color: #4285f4;
  8201. border-radius: .125rem;
  8202. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8203. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8204. -webkit-transition: all 0.2s linear;
  8205. transition: all 0.2s linear
  8206. }
  8207. .pagination .page-item.active .page-link:hover {
  8208. background-color: #4285f4
  8209. }
  8210. .pagination .page-item.disabled .page-link {
  8211. color: #868e96
  8212. }
  8213. .pagination .page-item .page-link {
  8214. font-size: .9rem;
  8215. color: #212529;
  8216. background-color: transparent;
  8217. border: 0;
  8218. outline: 0;
  8219. -webkit-transition: all 0.3s linear;
  8220. transition: all 0.3s linear
  8221. }
  8222. .pagination .page-item .page-link:hover {
  8223. background-color: #eee;
  8224. border-radius: .125rem;
  8225. -webkit-transition: all 0.3s linear;
  8226. transition: all 0.3s linear
  8227. }
  8228. .pagination .page-item .page-link:focus {
  8229. background-color: transparent;
  8230. -webkit-box-shadow: none;
  8231. box-shadow: none
  8232. }
  8233. .pagination.pagination-lg .page-item .page-link {
  8234. font-size: 1rem
  8235. }
  8236. .pagination.pagination-sm .page-item .page-link {
  8237. font-size: .8rem
  8238. }
  8239. .pagination.pagination-circle .page-item .page-link {
  8240. margin-right: 2px;
  8241. margin-left: 2px;
  8242. border-radius: 50%
  8243. }
  8244. .pagination.pagination-circle .page-item .page-link:hover {
  8245. border-radius: 50%
  8246. }
  8247. .pagination.pagination-circle .page-item.active .page-link {
  8248. border-radius: 50%
  8249. }
  8250. .pagination.pg-blue .page-item.active .page-link {
  8251. background-color: #4285f4
  8252. }
  8253. .pagination.pg-blue .page-item.active .page-link:hover {
  8254. background-color: #4285f4
  8255. }
  8256. .pagination.pg-red .page-item.active .page-link {
  8257. background-color: #ff3547
  8258. }
  8259. .pagination.pg-red .page-item.active .page-link:hover {
  8260. background-color: #ff3547
  8261. }
  8262. .pagination.pg-teal .page-item.active .page-link {
  8263. background-color: #2bbbad
  8264. }
  8265. .pagination.pg-teal .page-item.active .page-link:hover {
  8266. background-color: #2bbbad
  8267. }
  8268. .pagination.pg-dark-grey .page-item.active .page-link {
  8269. background-color: #37474f
  8270. }
  8271. .pagination.pg-dark-grey .page-item.active .page-link:hover {
  8272. background-color: #37474f
  8273. }
  8274. .pagination.pg-dark .page-item.active .page-link {
  8275. background-color: #2e2e2e
  8276. }
  8277. .pagination.pg-dark .page-item.active .page-link:hover {
  8278. background-color: #2e2e2e
  8279. }
  8280. .pagination.pg-blue-grey .page-item.active .page-link {
  8281. background-color: #3f729b
  8282. }
  8283. .pagination.pg-blue-grey .page-item.active .page-link:hover {
  8284. background-color: #3f729b
  8285. }
  8286. .pagination.pg-amber .page-item.active .page-link {
  8287. background-color: #ff6f00
  8288. }
  8289. .pagination.pg-amber .page-item.active .page-link:hover {
  8290. background-color: #ff6f00
  8291. }
  8292. .pagination.pg-purple .page-item.active .page-link {
  8293. background-color: #5e35b1
  8294. }
  8295. .pagination.pg-purple .page-item.active .page-link:hover {
  8296. background-color: #5e35b1
  8297. }
  8298. .badge {
  8299. color: #fff !important;
  8300. border-radius: .125rem;
  8301. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8302. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  8303. }
  8304. .badge-pill {
  8305. padding-right: .6em;
  8306. padding-left: .6em;
  8307. border-radius: 10rem
  8308. }
  8309. .badge-primary {
  8310. color: #fff !important;
  8311. background-color: #4285f4 !important
  8312. }
  8313. .badge-danger {
  8314. color: #fff !important;
  8315. background-color: #ff3547 !important
  8316. }
  8317. .badge-warning {
  8318. color: #fff !important;
  8319. background-color: #fb3 !important
  8320. }
  8321. .badge-success {
  8322. color: #fff !important;
  8323. background-color: #00c851 !important
  8324. }
  8325. .badge-info {
  8326. color: #fff !important;
  8327. background-color: #33b5e5 !important
  8328. }
  8329. .badge-default {
  8330. color: #fff !important;
  8331. background-color: #2bbbad !important
  8332. }
  8333. .badge-secondary {
  8334. color: #fff !important;
  8335. background-color: #a6c !important
  8336. }
  8337. .badge-dark {
  8338. color: #fff !important;
  8339. background-color: #212121 !important
  8340. }
  8341. .badge-light {
  8342. color: #000 !important;
  8343. background-color: #e0e0e0 !important
  8344. }
  8345. body.modal-open {
  8346. padding-right: 0 !important;
  8347. overflow: auto
  8348. }
  8349. body.scrollable {
  8350. overflow-y: auto
  8351. }
  8352. .modal-dialog .modal-content {
  8353. border: 0;
  8354. border-radius: .125rem;
  8355. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  8356. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  8357. }
  8358. .modal-dialog .modal-content .modal-header {
  8359. border-top-left-radius: .125rem;
  8360. border-top-right-radius: .125rem
  8361. }
  8362. .modal-dialog.cascading-modal {
  8363. margin-top: 10%
  8364. }
  8365. .modal-dialog.cascading-modal .close {
  8366. color: #fff;
  8367. text-shadow: none;
  8368. outline: 0;
  8369. opacity: 1
  8370. }
  8371. .modal-dialog.cascading-modal .modal-header {
  8372. padding: 1.5rem;
  8373. margin: -2rem 1rem 1rem 1rem;
  8374. text-align: center;
  8375. border: none;
  8376. border-radius: .125rem;
  8377. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  8378. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15)
  8379. }
  8380. .modal-dialog.cascading-modal .modal-header .close {
  8381. margin-right: 1rem
  8382. }
  8383. .modal-dialog.cascading-modal .modal-header .title {
  8384. width: 100%;
  8385. margin-bottom: 0;
  8386. font-size: 1.25rem
  8387. }
  8388. .modal-dialog.cascading-modal .modal-header .title .fas,
  8389. .modal-dialog.cascading-modal .modal-header .title .fab,
  8390. .modal-dialog.cascading-modal .modal-header .title .far {
  8391. margin-right: 9px
  8392. }
  8393. .modal-dialog.cascading-modal .modal-header .social-buttons {
  8394. margin-top: 1.5rem
  8395. }
  8396. .modal-dialog.cascading-modal .modal-header .social-buttons a {
  8397. font-size: 1rem
  8398. }
  8399. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs {
  8400. display: -webkit-box;
  8401. display: -ms-flexbox;
  8402. display: flex;
  8403. margin: -1.5rem 1rem 0 1rem;
  8404. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8405. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  8406. }
  8407. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs li {
  8408. -webkit-box-flex: 1;
  8409. -ms-flex: 1;
  8410. flex: 1
  8411. }
  8412. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs li a {
  8413. text-align: center
  8414. }
  8415. .modal-dialog.cascading-modal .modal-c-tabs .tab-content {
  8416. padding: 1.7rem 0 0 0
  8417. }
  8418. .modal-dialog.cascading-modal .modal-body,
  8419. .modal-dialog.cascading-modal .modal-footer {
  8420. padding-right: 2rem;
  8421. padding-left: 2rem;
  8422. color: #616161
  8423. }
  8424. .modal-dialog.cascading-modal .modal-body .additional-option,
  8425. .modal-dialog.cascading-modal .modal-footer .additional-option {
  8426. margin-top: 1rem;
  8427. text-align: center
  8428. }
  8429. .modal-dialog.cascading-modal.modal-avatar {
  8430. margin-top: 6rem
  8431. }
  8432. .modal-dialog.cascading-modal.modal-avatar .modal-header {
  8433. margin: -6rem 0 -1rem;
  8434. -webkit-box-shadow: none;
  8435. box-shadow: none
  8436. }
  8437. .modal-dialog.cascading-modal.modal-avatar .modal-header img {
  8438. width: 130px;
  8439. margin-right: auto;
  8440. margin-left: auto;
  8441. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  8442. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
  8443. }
  8444. .modal-dialog.modal-notify .heading {
  8445. padding: .3rem;
  8446. margin: 0;
  8447. font-size: 1.15rem;
  8448. color: #fff
  8449. }
  8450. .modal-dialog.modal-notify .modal-header {
  8451. border: 0;
  8452. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8453. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  8454. }
  8455. .modal-dialog.modal-notify .close {
  8456. opacity: 1
  8457. }
  8458. .modal-dialog.modal-notify .modal-body {
  8459. padding: 1.5rem;
  8460. color: #616161
  8461. }
  8462. .modal-dialog.modal-notify.modal-primary .modal-header {
  8463. background-color: #4285f4
  8464. }
  8465. .modal-dialog.modal-notify.modal-primary .fas,
  8466. .modal-dialog.modal-notify.modal-primary .fab,
  8467. .modal-dialog.modal-notify.modal-primary .far {
  8468. color: #4285f4
  8469. }
  8470. .modal-dialog.modal-notify.modal-primary .badge {
  8471. background-color: #4285f4
  8472. }
  8473. .modal-dialog.modal-notify.modal-primary .btn .fas,
  8474. .modal-dialog.modal-notify.modal-primary .btn .fab,
  8475. .modal-dialog.modal-notify.modal-primary .btn .far {
  8476. color: #fff
  8477. }
  8478. .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .fas,
  8479. .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .fab,
  8480. .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .far {
  8481. color: #4285f4
  8482. }
  8483. .modal-dialog.modal-notify.modal-danger .modal-header {
  8484. background-color: #ff3547
  8485. }
  8486. .modal-dialog.modal-notify.modal-danger .fas,
  8487. .modal-dialog.modal-notify.modal-danger .fab,
  8488. .modal-dialog.modal-notify.modal-danger .far {
  8489. color: #ff3547
  8490. }
  8491. .modal-dialog.modal-notify.modal-danger .badge {
  8492. background-color: #ff3547
  8493. }
  8494. .modal-dialog.modal-notify.modal-danger .btn .fas,
  8495. .modal-dialog.modal-notify.modal-danger .btn .fab,
  8496. .modal-dialog.modal-notify.modal-danger .btn .far {
  8497. color: #fff
  8498. }
  8499. .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .fas,
  8500. .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .fab,
  8501. .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .far {
  8502. color: #ff3547
  8503. }
  8504. .modal-dialog.modal-notify.modal-warning .modal-header {
  8505. background-color: #fb3
  8506. }
  8507. .modal-dialog.modal-notify.modal-warning .fas,
  8508. .modal-dialog.modal-notify.modal-warning .fab,
  8509. .modal-dialog.modal-notify.modal-warning .far {
  8510. color: #fb3
  8511. }
  8512. .modal-dialog.modal-notify.modal-warning .badge {
  8513. background-color: #fb3
  8514. }
  8515. .modal-dialog.modal-notify.modal-warning .btn .fas,
  8516. .modal-dialog.modal-notify.modal-warning .btn .fab,
  8517. .modal-dialog.modal-notify.modal-warning .btn .far {
  8518. color: #fff
  8519. }
  8520. .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .fas,
  8521. .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .fab,
  8522. .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .far {
  8523. color: #fb3
  8524. }
  8525. .modal-dialog.modal-notify.modal-success .modal-header {
  8526. background-color: #00c851
  8527. }
  8528. .modal-dialog.modal-notify.modal-success .fas,
  8529. .modal-dialog.modal-notify.modal-success .fab,
  8530. .modal-dialog.modal-notify.modal-success .far {
  8531. color: #00c851
  8532. }
  8533. .modal-dialog.modal-notify.modal-success .badge {
  8534. background-color: #00c851
  8535. }
  8536. .modal-dialog.modal-notify.modal-success .btn .fas,
  8537. .modal-dialog.modal-notify.modal-success .btn .fab,
  8538. .modal-dialog.modal-notify.modal-success .btn .far {
  8539. color: #fff
  8540. }
  8541. .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .fas,
  8542. .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .fab,
  8543. .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .far {
  8544. color: #00c851
  8545. }
  8546. .modal-dialog.modal-notify.modal-info .modal-header {
  8547. background-color: #33b5e5
  8548. }
  8549. .modal-dialog.modal-notify.modal-info .fas,
  8550. .modal-dialog.modal-notify.modal-info .fab,
  8551. .modal-dialog.modal-notify.modal-info .far {
  8552. color: #33b5e5
  8553. }
  8554. .modal-dialog.modal-notify.modal-info .badge {
  8555. background-color: #33b5e5
  8556. }
  8557. .modal-dialog.modal-notify.modal-info .btn .fas,
  8558. .modal-dialog.modal-notify.modal-info .btn .fab,
  8559. .modal-dialog.modal-notify.modal-info .btn .far {
  8560. color: #fff
  8561. }
  8562. .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .fas,
  8563. .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .fab,
  8564. .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .far {
  8565. color: #33b5e5
  8566. }
  8567. .modal {
  8568. padding-right: 0 !important
  8569. }
  8570. @media (min-width: 768px) {
  8571. .modal .modal-dialog.modal-top {
  8572. top: 0
  8573. }
  8574. .modal .modal-dialog.modal-left {
  8575. left: 0
  8576. }
  8577. .modal .modal-dialog.modal-right {
  8578. right: 0
  8579. }
  8580. .modal .modal-dialog.modal-bottom {
  8581. bottom: 0
  8582. }
  8583. .modal .modal-dialog.modal-top-left {
  8584. top: 10px;
  8585. left: 10px
  8586. }
  8587. .modal .modal-dialog.modal-top-right {
  8588. top: 10px;
  8589. right: 10px
  8590. }
  8591. .modal .modal-dialog.modal-bottom-left {
  8592. bottom: 10px;
  8593. left: 10px
  8594. }
  8595. .modal .modal-dialog.modal-bottom-right {
  8596. right: 10px;
  8597. bottom: 10px
  8598. }
  8599. }
  8600. .modal.fade.top:not(.show) .modal-dialog {
  8601. -webkit-transform: translate3d(0, -25%, 0);
  8602. transform: translate3d(0, -25%, 0)
  8603. }
  8604. .modal.fade.left:not(.show) .modal-dialog {
  8605. -webkit-transform: translate3d(-25%, 0, 0);
  8606. transform: translate3d(-25%, 0, 0)
  8607. }
  8608. .modal.fade.right:not(.show) .modal-dialog {
  8609. -webkit-transform: translate3d(25%, 0, 0);
  8610. transform: translate3d(25%, 0, 0)
  8611. }
  8612. .modal.fade.bottom:not(.show) .modal-dialog {
  8613. -webkit-transform: translate3d(0, 25%, 0);
  8614. transform: translate3d(0, 25%, 0)
  8615. }
  8616. @media (min-width: 992px) {
  8617. .modal.modal-scrolling {
  8618. position: relative
  8619. }
  8620. .modal.modal-scrolling .modal-dialog {
  8621. position: fixed;
  8622. z-index: 1050
  8623. }
  8624. .modal.modal-content-clickable {
  8625. top: auto;
  8626. bottom: auto
  8627. }
  8628. .modal.modal-content-clickable .modal-dialog {
  8629. position: fixed
  8630. }
  8631. .modal .modal-fluid {
  8632. width: 100%;
  8633. max-width: 100%
  8634. }
  8635. .modal .modal-fluid .modal-content {
  8636. width: 100%
  8637. }
  8638. .modal .modal-frame {
  8639. position: absolute;
  8640. width: 100%;
  8641. max-width: 100% !important;
  8642. margin: 0 !important
  8643. }
  8644. .modal .modal-frame.modal-bottom {
  8645. bottom: 0
  8646. }
  8647. .modal .modal-full-height {
  8648. position: absolute;
  8649. top: 0;
  8650. right: 0;
  8651. display: -webkit-box;
  8652. display: -ms-flexbox;
  8653. display: flex;
  8654. width: 400px;
  8655. height: auto;
  8656. min-height: 100%;
  8657. margin: 0
  8658. }
  8659. .modal .modal-full-height.modal-top,
  8660. .modal .modal-full-height.modal-bottom {
  8661. display: block;
  8662. width: 100%;
  8663. max-width: 100%;
  8664. height: auto
  8665. }
  8666. .modal .modal-full-height.modal-top {
  8667. bottom: auto
  8668. }
  8669. .modal .modal-full-height.modal-bottom {
  8670. top: auto;
  8671. min-height: 0
  8672. }
  8673. .modal .modal-full-height .modal-content {
  8674. width: 100%
  8675. }
  8676. .modal .modal-full-height.modal-lg {
  8677. width: 90%;
  8678. max-width: 90%
  8679. }
  8680. }
  8681. @media (min-width: 992px) and (min-width: 992px) {
  8682. .modal .modal-full-height.modal-lg {
  8683. width: 800px;
  8684. max-width: 800px
  8685. }
  8686. }
  8687. @media (min-width: 992px) and (min-width: 1200px) {
  8688. .modal .modal-full-height.modal-lg {
  8689. width: 1000px;
  8690. max-width: 1000px
  8691. }
  8692. }
  8693. @media (min-width: 992px) {
  8694. .modal .modal-side {
  8695. position: absolute;
  8696. right: 10px;
  8697. bottom: 10px;
  8698. width: 400px;
  8699. margin: 0
  8700. }
  8701. }
  8702. .carousel .carousel-control-prev-icon,
  8703. .carousel .carousel-control-next-icon {
  8704. width: 20px;
  8705. height: 20px
  8706. }
  8707. .carousel .carousel-control-prev-icon {
  8708. background-image: url(../img/svg/arrow_left.svg)
  8709. }
  8710. .carousel .carousel-control-next-icon {
  8711. background-image: url(../img/svg/arrow_right.svg)
  8712. }
  8713. .carousel .carousel-indicators li {
  8714. width: .625rem;
  8715. height: .625rem;
  8716. cursor: pointer;
  8717. border-radius: 50%
  8718. }
  8719. .carousel-fade .carousel-item {
  8720. opacity: 0;
  8721. -webkit-transition-duration: .6s;
  8722. transition-duration: .6s;
  8723. -webkit-transition-property: opacity;
  8724. transition-property: opacity
  8725. }
  8726. .carousel-fade .carousel-item.active,
  8727. .carousel-fade .carousel-item-next.carousel-item-left,
  8728. .carousel-fade .carousel-item-prev.carousel-item-right {
  8729. opacity: 1
  8730. }
  8731. .carousel-fade .carousel-item-left.active,
  8732. .carousel-fade .carousel-item-right.active {
  8733. opacity: 0
  8734. }
  8735. .carousel-fade .carousel-item-next,
  8736. .carousel-fade .carousel-item-prev,
  8737. .carousel-fade .carousel-item.active,
  8738. .carousel-fade .carousel-item-left.active,
  8739. .carousel-fade .carousel-item-prev.active {
  8740. -webkit-transform: translateX(0);
  8741. transform: translateX(0)
  8742. }
  8743. @supports (transform-style: preserve-3d) {
  8744. .carousel-fade .carousel-item-next,
  8745. .carousel-fade .carousel-item-prev,
  8746. .carousel-fade .carousel-item.active,
  8747. .carousel-fade .carousel-item-left.active,
  8748. .carousel-fade .carousel-item-prev.active {
  8749. -webkit-transform: translate3d(0, 0, 0);
  8750. transform: translate3d(0, 0, 0)
  8751. }
  8752. }
  8753. .md-form {
  8754. position: relative;
  8755. margin-top: 1.5rem;
  8756. margin-bottom: 1.5rem
  8757. }
  8758. .md-form input:not([type]),
  8759. .md-form input[type="text"]:not(.browser-default),
  8760. .md-form input[type="password"]:not(.browser-default),
  8761. .md-form input[type="email"]:not(.browser-default),
  8762. .md-form input[type="url"]:not(.browser-default),
  8763. .md-form input[type="time"]:not(.browser-default),
  8764. .md-form input[type="date"]:not(.browser-default),
  8765. .md-form input[type="datetime"]:not(.browser-default),
  8766. .md-form input[type="datetime-local"]:not(.browser-default),
  8767. .md-form input[type="tel"]:not(.browser-default),
  8768. .md-form input[type="number"]:not(.browser-default),
  8769. .md-form input[type="search"]:not(.browser-default),
  8770. .md-form input[type="search-md"],
  8771. .md-form textarea.md-textarea {
  8772. -webkit-box-sizing: content-box;
  8773. box-sizing: content-box;
  8774. background-color: transparent;
  8775. border: none;
  8776. border-bottom: 1px solid #ced4da;
  8777. border-radius: 0;
  8778. outline: none;
  8779. -webkit-box-shadow: none;
  8780. box-shadow: none;
  8781. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  8782. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  8783. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  8784. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out
  8785. }
  8786. .md-form input:not([type]):focus:not([readonly]),
  8787. .md-form input[type="text"]:not(.browser-default):focus:not([readonly]),
  8788. .md-form input[type="password"]:not(.browser-default):focus:not([readonly]),
  8789. .md-form input[type="email"]:not(.browser-default):focus:not([readonly]),
  8790. .md-form input[type="url"]:not(.browser-default):focus:not([readonly]),
  8791. .md-form input[type="time"]:not(.browser-default):focus:not([readonly]),
  8792. .md-form input[type="date"]:not(.browser-default):focus:not([readonly]),
  8793. .md-form input[type="datetime"]:not(.browser-default):focus:not([readonly]),
  8794. .md-form input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
  8795. .md-form input[type="tel"]:not(.browser-default):focus:not([readonly]),
  8796. .md-form input[type="number"]:not(.browser-default):focus:not([readonly]),
  8797. .md-form input[type="search"]:not(.browser-default):focus:not([readonly]),
  8798. .md-form input[type="search-md"]:focus:not([readonly]),
  8799. .md-form textarea.md-textarea:focus:not([readonly]) {
  8800. border-bottom: 1px solid #4285f4;
  8801. -webkit-box-shadow: 0 1px 0 0 #4285f4;
  8802. box-shadow: 0 1px 0 0 #4285f4
  8803. }
  8804. .md-form input:not([type]):focus:not([readonly])+label,
  8805. .md-form input[type="text"]:not(.browser-default):focus:not([readonly])+label,
  8806. .md-form input[type="password"]:not(.browser-default):focus:not([readonly])+label,
  8807. .md-form input[type="email"]:not(.browser-default):focus:not([readonly])+label,
  8808. .md-form input[type="url"]:not(.browser-default):focus:not([readonly])+label,
  8809. .md-form input[type="time"]:not(.browser-default):focus:not([readonly])+label,
  8810. .md-form input[type="date"]:not(.browser-default):focus:not([readonly])+label,
  8811. .md-form input[type="datetime"]:not(.browser-default):focus:not([readonly])+label,
  8812. .md-form input[type="datetime-local"]:not(.browser-default):focus:not([readonly])+label,
  8813. .md-form input[type="tel"]:not(.browser-default):focus:not([readonly])+label,
  8814. .md-form input[type="number"]:not(.browser-default):focus:not([readonly])+label,
  8815. .md-form input[type="search"]:not(.browser-default):focus:not([readonly])+label,
  8816. .md-form input[type="search-md"]:focus:not([readonly])+label,
  8817. .md-form textarea.md-textarea:focus:not([readonly])+label {
  8818. color: #4285f4
  8819. }
  8820. .md-form input:not([type])+label::after,
  8821. .md-form input[type="text"]:not(.browser-default)+label::after,
  8822. .md-form input[type="password"]:not(.browser-default)+label::after,
  8823. .md-form input[type="email"]:not(.browser-default)+label::after,
  8824. .md-form input[type="url"]:not(.browser-default)+label::after,
  8825. .md-form input[type="time"]:not(.browser-default)+label::after,
  8826. .md-form input[type="date"]:not(.browser-default)+label::after,
  8827. .md-form input[type="datetime"]:not(.browser-default)+label::after,
  8828. .md-form input[type="datetime-local"]:not(.browser-default)+label::after,
  8829. .md-form input[type="tel"]:not(.browser-default)+label::after,
  8830. .md-form input[type="number"]:not(.browser-default)+label::after,
  8831. .md-form input[type="search"]:not(.browser-default)+label::after,
  8832. .md-form input[type="search-md"]+label::after,
  8833. .md-form textarea.md-textarea+label::after {
  8834. position: absolute;
  8835. top: 65px;
  8836. display: block;
  8837. content: "";
  8838. opacity: 0;
  8839. -webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
  8840. transition: 0.2s opacity ease-out, 0.2s color ease-out
  8841. }
  8842. .md-form input:not([type]).valid,
  8843. .md-form input:not([type]):focus.valid,
  8844. .md-form input[type="text"]:not(.browser-default).valid,
  8845. .md-form input[type="text"]:not(.browser-default):focus.valid,
  8846. .md-form input[type="password"]:not(.browser-default).valid,
  8847. .md-form input[type="password"]:not(.browser-default):focus.valid,
  8848. .md-form input[type="email"]:not(.browser-default).valid,
  8849. .md-form input[type="email"]:not(.browser-default):focus.valid,
  8850. .md-form input[type="url"]:not(.browser-default).valid,
  8851. .md-form input[type="url"]:not(.browser-default):focus.valid,
  8852. .md-form input[type="time"]:not(.browser-default).valid,
  8853. .md-form input[type="time"]:not(.browser-default):focus.valid,
  8854. .md-form input[type="date"]:not(.browser-default).valid,
  8855. .md-form input[type="date"]:not(.browser-default):focus.valid,
  8856. .md-form input[type="datetime"]:not(.browser-default).valid,
  8857. .md-form input[type="datetime"]:not(.browser-default):focus.valid,
  8858. .md-form input[type="datetime-local"]:not(.browser-default).valid,
  8859. .md-form input[type="datetime-local"]:not(.browser-default):focus.valid,
  8860. .md-form input[type="tel"]:not(.browser-default).valid,
  8861. .md-form input[type="tel"]:not(.browser-default):focus.valid,
  8862. .md-form input[type="number"]:not(.browser-default).valid,
  8863. .md-form input[type="number"]:not(.browser-default):focus.valid,
  8864. .md-form input[type="search"]:not(.browser-default).valid,
  8865. .md-form input[type="search"]:not(.browser-default):focus.valid,
  8866. .md-form input[type="search-md"].valid,
  8867. .md-form input[type="search-md"]:focus.valid,
  8868. .md-form textarea.md-textarea.valid,
  8869. .md-form textarea.md-textarea:focus.valid {
  8870. border-bottom: 1px solid #00c851;
  8871. -webkit-box-shadow: 0 1px 0 0 #00c851;
  8872. box-shadow: 0 1px 0 0 #00c851
  8873. }
  8874. .md-form input:not([type]).valid+label:after,
  8875. .md-form input:not([type]):focus.valid+label:after,
  8876. .md-form input[type="text"]:not(.browser-default).valid+label:after,
  8877. .md-form input[type="text"]:not(.browser-default):focus.valid+label:after,
  8878. .md-form input[type="password"]:not(.browser-default).valid+label:after,
  8879. .md-form input[type="password"]:not(.browser-default):focus.valid+label:after,
  8880. .md-form input[type="email"]:not(.browser-default).valid+label:after,
  8881. .md-form input[type="email"]:not(.browser-default):focus.valid+label:after,
  8882. .md-form input[type="url"]:not(.browser-default).valid+label:after,
  8883. .md-form input[type="url"]:not(.browser-default):focus.valid+label:after,
  8884. .md-form input[type="time"]:not(.browser-default).valid+label:after,
  8885. .md-form input[type="time"]:not(.browser-default):focus.valid+label:after,
  8886. .md-form input[type="date"]:not(.browser-default).valid+label:after,
  8887. .md-form input[type="date"]:not(.browser-default):focus.valid+label:after,
  8888. .md-form input[type="datetime"]:not(.browser-default).valid+label:after,
  8889. .md-form input[type="datetime"]:not(.browser-default):focus.valid+label:after,
  8890. .md-form input[type="datetime-local"]:not(.browser-default).valid+label:after,
  8891. .md-form input[type="datetime-local"]:not(.browser-default):focus.valid+label:after,
  8892. .md-form input[type="tel"]:not(.browser-default).valid+label:after,
  8893. .md-form input[type="tel"]:not(.browser-default):focus.valid+label:after,
  8894. .md-form input[type="number"]:not(.browser-default).valid+label:after,
  8895. .md-form input[type="number"]:not(.browser-default):focus.valid+label:after,
  8896. .md-form input[type="search"]:not(.browser-default).valid+label:after,
  8897. .md-form input[type="search"]:not(.browser-default):focus.valid+label:after,
  8898. .md-form input[type="search-md"].valid+label:after,
  8899. .md-form input[type="search-md"]:focus.valid+label:after,
  8900. .md-form textarea.md-textarea.valid+label:after,
  8901. .md-form textarea.md-textarea:focus.valid+label:after {
  8902. color: #00c851;
  8903. content: attr(data-success);
  8904. opacity: 1
  8905. }
  8906. .md-form input:not([type]).invalid,
  8907. .md-form input:not([type]):focus.invalid,
  8908. .md-form input[type="text"]:not(.browser-default).invalid,
  8909. .md-form input[type="text"]:not(.browser-default):focus.invalid,
  8910. .md-form input[type="password"]:not(.browser-default).invalid,
  8911. .md-form input[type="password"]:not(.browser-default):focus.invalid,
  8912. .md-form input[type="email"]:not(.browser-default).invalid,
  8913. .md-form input[type="email"]:not(.browser-default):focus.invalid,
  8914. .md-form input[type="url"]:not(.browser-default).invalid,
  8915. .md-form input[type="url"]:not(.browser-default):focus.invalid,
  8916. .md-form input[type="time"]:not(.browser-default).invalid,
  8917. .md-form input[type="time"]:not(.browser-default):focus.invalid,
  8918. .md-form input[type="date"]:not(.browser-default).invalid,
  8919. .md-form input[type="date"]:not(.browser-default):focus.invalid,
  8920. .md-form input[type="datetime"]:not(.browser-default).invalid,
  8921. .md-form input[type="datetime"]:not(.browser-default):focus.invalid,
  8922. .md-form input[type="datetime-local"]:not(.browser-default).invalid,
  8923. .md-form input[type="datetime-local"]:not(.browser-default):focus.invalid,
  8924. .md-form input[type="tel"]:not(.browser-default).invalid,
  8925. .md-form input[type="tel"]:not(.browser-default):focus.invalid,
  8926. .md-form input[type="number"]:not(.browser-default).invalid,
  8927. .md-form input[type="number"]:not(.browser-default):focus.invalid,
  8928. .md-form input[type="search"]:not(.browser-default).invalid,
  8929. .md-form input[type="search"]:not(.browser-default):focus.invalid,
  8930. .md-form input[type="search-md"].invalid,
  8931. .md-form input[type="search-md"]:focus.invalid,
  8932. .md-form textarea.md-textarea.invalid,
  8933. .md-form textarea.md-textarea:focus.invalid {
  8934. border-bottom: 1px solid #f44336;
  8935. -webkit-box-shadow: 0 1px 0 0 #f44336;
  8936. box-shadow: 0 1px 0 0 #f44336
  8937. }
  8938. .md-form input:not([type]).invalid+label:after,
  8939. .md-form input:not([type]):focus.invalid+label:after,
  8940. .md-form input[type="text"]:not(.browser-default).invalid+label:after,
  8941. .md-form input[type="text"]:not(.browser-default):focus.invalid+label:after,
  8942. .md-form input[type="password"]:not(.browser-default).invalid+label:after,
  8943. .md-form input[type="password"]:not(.browser-default):focus.invalid+label:after,
  8944. .md-form input[type="email"]:not(.browser-default).invalid+label:after,
  8945. .md-form input[type="email"]:not(.browser-default):focus.invalid+label:after,
  8946. .md-form input[type="url"]:not(.browser-default).invalid+label:after,
  8947. .md-form input[type="url"]:not(.browser-default):focus.invalid+label:after,
  8948. .md-form input[type="time"]:not(.browser-default).invalid+label:after,
  8949. .md-form input[type="time"]:not(.browser-default):focus.invalid+label:after,
  8950. .md-form input[type="date"]:not(.browser-default).invalid+label:after,
  8951. .md-form input[type="date"]:not(.browser-default):focus.invalid+label:after,
  8952. .md-form input[type="datetime"]:not(.browser-default).invalid+label:after,
  8953. .md-form input[type="datetime"]:not(.browser-default):focus.invalid+label:after,
  8954. .md-form input[type="datetime-local"]:not(.browser-default).invalid+label:after,
  8955. .md-form input[type="datetime-local"]:not(.browser-default):focus.invalid+label:after,
  8956. .md-form input[type="tel"]:not(.browser-default).invalid+label:after,
  8957. .md-form input[type="tel"]:not(.browser-default):focus.invalid+label:after,
  8958. .md-form input[type="number"]:not(.browser-default).invalid+label:after,
  8959. .md-form input[type="number"]:not(.browser-default):focus.invalid+label:after,
  8960. .md-form input[type="search"]:not(.browser-default).invalid+label:after,
  8961. .md-form input[type="search"]:not(.browser-default):focus.invalid+label:after,
  8962. .md-form input[type="search-md"].invalid+label:after,
  8963. .md-form input[type="search-md"]:focus.invalid+label:after,
  8964. .md-form textarea.md-textarea.invalid+label:after,
  8965. .md-form textarea.md-textarea:focus.invalid+label:after {
  8966. color: #f44336;
  8967. content: attr(data-error);
  8968. opacity: 1
  8969. }
  8970. .md-form input:not([type]).form-control.valid+label:after,
  8971. .md-form input:not([type]).form-control:focus.valid+label:after,
  8972. .md-form input[type="text"]:not(.browser-default).form-control.valid+label:after,
  8973. .md-form input[type="text"]:not(.browser-default).form-control:focus.valid+label:after,
  8974. .md-form input[type="password"]:not(.browser-default).form-control.valid+label:after,
  8975. .md-form input[type="password"]:not(.browser-default).form-control:focus.valid+label:after,
  8976. .md-form input[type="email"]:not(.browser-default).form-control.valid+label:after,
  8977. .md-form input[type="email"]:not(.browser-default).form-control:focus.valid+label:after,
  8978. .md-form input[type="url"]:not(.browser-default).form-control.valid+label:after,
  8979. .md-form input[type="url"]:not(.browser-default).form-control:focus.valid+label:after,
  8980. .md-form input[type="time"]:not(.browser-default).form-control.valid+label:after,
  8981. .md-form input[type="time"]:not(.browser-default).form-control:focus.valid+label:after,
  8982. .md-form input[type="date"]:not(.browser-default).form-control.valid+label:after,
  8983. .md-form input[type="date"]:not(.browser-default).form-control:focus.valid+label:after,
  8984. .md-form input[type="datetime"]:not(.browser-default).form-control.valid+label:after,
  8985. .md-form input[type="datetime"]:not(.browser-default).form-control:focus.valid+label:after,
  8986. .md-form input[type="datetime-local"]:not(.browser-default).form-control.valid+label:after,
  8987. .md-form input[type="datetime-local"]:not(.browser-default).form-control:focus.valid+label:after,
  8988. .md-form input[type="tel"]:not(.browser-default).form-control.valid+label:after,
  8989. .md-form input[type="tel"]:not(.browser-default).form-control:focus.valid+label:after,
  8990. .md-form input[type="number"]:not(.browser-default).form-control.valid+label:after,
  8991. .md-form input[type="number"]:not(.browser-default).form-control:focus.valid+label:after,
  8992. .md-form input[type="search"]:not(.browser-default).form-control.valid+label:after,
  8993. .md-form input[type="search"]:not(.browser-default).form-control:focus.valid+label:after,
  8994. .md-form input[type="search-md"].form-control.valid+label:after,
  8995. .md-form input[type="search-md"].form-control:focus.valid+label:after,
  8996. .md-form textarea.md-textarea.form-control.valid+label:after,
  8997. .md-form textarea.md-textarea.form-control:focus.valid+label:after {
  8998. top: 4.1rem
  8999. }
  9000. .md-form input:not([type]).form-control.invalid+label:after,
  9001. .md-form input:not([type]).form-control:focus.invalid+label:after,
  9002. .md-form input[type="text"]:not(.browser-default).form-control.invalid+label:after,
  9003. .md-form input[type="text"]:not(.browser-default).form-control:focus.invalid+label:after,
  9004. .md-form input[type="password"]:not(.browser-default).form-control.invalid+label:after,
  9005. .md-form input[type="password"]:not(.browser-default).form-control:focus.invalid+label:after,
  9006. .md-form input[type="email"]:not(.browser-default).form-control.invalid+label:after,
  9007. .md-form input[type="email"]:not(.browser-default).form-control:focus.invalid+label:after,
  9008. .md-form input[type="url"]:not(.browser-default).form-control.invalid+label:after,
  9009. .md-form input[type="url"]:not(.browser-default).form-control:focus.invalid+label:after,
  9010. .md-form input[type="time"]:not(.browser-default).form-control.invalid+label:after,
  9011. .md-form input[type="time"]:not(.browser-default).form-control:focus.invalid+label:after,
  9012. .md-form input[type="date"]:not(.browser-default).form-control.invalid+label:after,
  9013. .md-form input[type="date"]:not(.browser-default).form-control:focus.invalid+label:after,
  9014. .md-form input[type="datetime"]:not(.browser-default).form-control.invalid+label:after,
  9015. .md-form input[type="datetime"]:not(.browser-default).form-control:focus.invalid+label:after,
  9016. .md-form input[type="datetime-local"]:not(.browser-default).form-control.invalid+label:after,
  9017. .md-form input[type="datetime-local"]:not(.browser-default).form-control:focus.invalid+label:after,
  9018. .md-form input[type="tel"]:not(.browser-default).form-control.invalid+label:after,
  9019. .md-form input[type="tel"]:not(.browser-default).form-control:focus.invalid+label:after,
  9020. .md-form input[type="number"]:not(.browser-default).form-control.invalid+label:after,
  9021. .md-form input[type="number"]:not(.browser-default).form-control:focus.invalid+label:after,
  9022. .md-form input[type="search"]:not(.browser-default).form-control.invalid+label:after,
  9023. .md-form input[type="search"]:not(.browser-default).form-control:focus.invalid+label:after,
  9024. .md-form input[type="search-md"].form-control.invalid+label:after,
  9025. .md-form input[type="search-md"].form-control:focus.invalid+label:after,
  9026. .md-form textarea.md-textarea.form-control.invalid+label:after,
  9027. .md-form textarea.md-textarea.form-control:focus.invalid+label:after {
  9028. top: 4rem
  9029. }
  9030. .md-form input:not([type]).form-control-lg.valid+label:after,
  9031. .md-form input:not([type]).form-control-lg:focus.valid+label:after,
  9032. .md-form input[type="text"]:not(.browser-default).form-control-lg.valid+label:after,
  9033. .md-form input[type="text"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9034. .md-form input[type="password"]:not(.browser-default).form-control-lg.valid+label:after,
  9035. .md-form input[type="password"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9036. .md-form input[type="email"]:not(.browser-default).form-control-lg.valid+label:after,
  9037. .md-form input[type="email"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9038. .md-form input[type="url"]:not(.browser-default).form-control-lg.valid+label:after,
  9039. .md-form input[type="url"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9040. .md-form input[type="time"]:not(.browser-default).form-control-lg.valid+label:after,
  9041. .md-form input[type="time"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9042. .md-form input[type="date"]:not(.browser-default).form-control-lg.valid+label:after,
  9043. .md-form input[type="date"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9044. .md-form input[type="datetime"]:not(.browser-default).form-control-lg.valid+label:after,
  9045. .md-form input[type="datetime"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9046. .md-form input[type="datetime-local"]:not(.browser-default).form-control-lg.valid+label:after,
  9047. .md-form input[type="datetime-local"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9048. .md-form input[type="tel"]:not(.browser-default).form-control-lg.valid+label:after,
  9049. .md-form input[type="tel"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9050. .md-form input[type="number"]:not(.browser-default).form-control-lg.valid+label:after,
  9051. .md-form input[type="number"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9052. .md-form input[type="search"]:not(.browser-default).form-control-lg.valid+label:after,
  9053. .md-form input[type="search"]:not(.browser-default).form-control-lg:focus.valid+label:after,
  9054. .md-form input[type="search-md"].form-control-lg.valid+label:after,
  9055. .md-form input[type="search-md"].form-control-lg:focus.valid+label:after,
  9056. .md-form textarea.md-textarea.form-control-lg.valid+label:after,
  9057. .md-form textarea.md-textarea.form-control-lg:focus.valid+label:after {
  9058. top: 4.6rem
  9059. }
  9060. .md-form input:not([type]).form-control-lg.invalid+label:after,
  9061. .md-form input:not([type]).form-control-lg:focus.invalid+label:after,
  9062. .md-form input[type="text"]:not(.browser-default).form-control-lg.invalid+label:after,
  9063. .md-form input[type="text"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9064. .md-form input[type="password"]:not(.browser-default).form-control-lg.invalid+label:after,
  9065. .md-form input[type="password"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9066. .md-form input[type="email"]:not(.browser-default).form-control-lg.invalid+label:after,
  9067. .md-form input[type="email"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9068. .md-form input[type="url"]:not(.browser-default).form-control-lg.invalid+label:after,
  9069. .md-form input[type="url"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9070. .md-form input[type="time"]:not(.browser-default).form-control-lg.invalid+label:after,
  9071. .md-form input[type="time"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9072. .md-form input[type="date"]:not(.browser-default).form-control-lg.invalid+label:after,
  9073. .md-form input[type="date"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9074. .md-form input[type="datetime"]:not(.browser-default).form-control-lg.invalid+label:after,
  9075. .md-form input[type="datetime"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9076. .md-form input[type="datetime-local"]:not(.browser-default).form-control-lg.invalid+label:after,
  9077. .md-form input[type="datetime-local"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9078. .md-form input[type="tel"]:not(.browser-default).form-control-lg.invalid+label:after,
  9079. .md-form input[type="tel"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9080. .md-form input[type="number"]:not(.browser-default).form-control-lg.invalid+label:after,
  9081. .md-form input[type="number"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9082. .md-form input[type="search"]:not(.browser-default).form-control-lg.invalid+label:after,
  9083. .md-form input[type="search"]:not(.browser-default).form-control-lg:focus.invalid+label:after,
  9084. .md-form input[type="search-md"].form-control-lg.invalid+label:after,
  9085. .md-form input[type="search-md"].form-control-lg:focus.invalid+label:after,
  9086. .md-form textarea.md-textarea.form-control-lg.invalid+label:after,
  9087. .md-form textarea.md-textarea.form-control-lg:focus.invalid+label:after {
  9088. top: 4.6rem
  9089. }
  9090. .md-form input:not([type]).form-control-sm.valid+label:after,
  9091. .md-form input:not([type]).form-control-sm:focus.valid+label:after,
  9092. .md-form input[type="text"]:not(.browser-default).form-control-sm.valid+label:after,
  9093. .md-form input[type="text"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9094. .md-form input[type="password"]:not(.browser-default).form-control-sm.valid+label:after,
  9095. .md-form input[type="password"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9096. .md-form input[type="email"]:not(.browser-default).form-control-sm.valid+label:after,
  9097. .md-form input[type="email"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9098. .md-form input[type="url"]:not(.browser-default).form-control-sm.valid+label:after,
  9099. .md-form input[type="url"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9100. .md-form input[type="time"]:not(.browser-default).form-control-sm.valid+label:after,
  9101. .md-form input[type="time"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9102. .md-form input[type="date"]:not(.browser-default).form-control-sm.valid+label:after,
  9103. .md-form input[type="date"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9104. .md-form input[type="datetime"]:not(.browser-default).form-control-sm.valid+label:after,
  9105. .md-form input[type="datetime"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9106. .md-form input[type="datetime-local"]:not(.browser-default).form-control-sm.valid+label:after,
  9107. .md-form input[type="datetime-local"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9108. .md-form input[type="tel"]:not(.browser-default).form-control-sm.valid+label:after,
  9109. .md-form input[type="tel"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9110. .md-form input[type="number"]:not(.browser-default).form-control-sm.valid+label:after,
  9111. .md-form input[type="number"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9112. .md-form input[type="search"]:not(.browser-default).form-control-sm.valid+label:after,
  9113. .md-form input[type="search"]:not(.browser-default).form-control-sm:focus.valid+label:after,
  9114. .md-form input[type="search-md"].form-control-sm.valid+label:after,
  9115. .md-form input[type="search-md"].form-control-sm:focus.valid+label:after,
  9116. .md-form textarea.md-textarea.form-control-sm.valid+label:after,
  9117. .md-form textarea.md-textarea.form-control-sm:focus.valid+label:after {
  9118. top: 3.7rem
  9119. }
  9120. .md-form input:not([type]).form-control-sm.invalid+label:after,
  9121. .md-form input:not([type]).form-control-sm:focus.invalid+label:after,
  9122. .md-form input[type="text"]:not(.browser-default).form-control-sm.invalid+label:after,
  9123. .md-form input[type="text"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9124. .md-form input[type="password"]:not(.browser-default).form-control-sm.invalid+label:after,
  9125. .md-form input[type="password"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9126. .md-form input[type="email"]:not(.browser-default).form-control-sm.invalid+label:after,
  9127. .md-form input[type="email"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9128. .md-form input[type="url"]:not(.browser-default).form-control-sm.invalid+label:after,
  9129. .md-form input[type="url"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9130. .md-form input[type="time"]:not(.browser-default).form-control-sm.invalid+label:after,
  9131. .md-form input[type="time"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9132. .md-form input[type="date"]:not(.browser-default).form-control-sm.invalid+label:after,
  9133. .md-form input[type="date"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9134. .md-form input[type="datetime"]:not(.browser-default).form-control-sm.invalid+label:after,
  9135. .md-form input[type="datetime"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9136. .md-form input[type="datetime-local"]:not(.browser-default).form-control-sm.invalid+label:after,
  9137. .md-form input[type="datetime-local"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9138. .md-form input[type="tel"]:not(.browser-default).form-control-sm.invalid+label:after,
  9139. .md-form input[type="tel"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9140. .md-form input[type="number"]:not(.browser-default).form-control-sm.invalid+label:after,
  9141. .md-form input[type="number"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9142. .md-form input[type="search"]:not(.browser-default).form-control-sm.invalid+label:after,
  9143. .md-form input[type="search"]:not(.browser-default).form-control-sm:focus.invalid+label:after,
  9144. .md-form input[type="search-md"].form-control-sm.invalid+label:after,
  9145. .md-form input[type="search-md"].form-control-sm:focus.invalid+label:after,
  9146. .md-form textarea.md-textarea.form-control-sm.invalid+label:after,
  9147. .md-form textarea.md-textarea.form-control-sm:focus.invalid+label:after {
  9148. top: 3.6rem
  9149. }
  9150. .md-form>input[type="date"]:not(.browser-default)+label {
  9151. -webkit-transform: translateY(-27px) scale(0.8);
  9152. transform: translateY(-27px) scale(0.8);
  9153. -webkit-transform-origin: 0 0;
  9154. transform-origin: 0 0
  9155. }
  9156. .md-form>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
  9157. .md-form>input[type="time"]:not(.browser-default)+label {
  9158. font-size: .8rem;
  9159. -webkit-transform: translateY(-25px);
  9160. transform: translateY(-25px);
  9161. -webkit-transform-origin: 0 0;
  9162. transform-origin: 0 0
  9163. }
  9164. .md-form .was-validated input[type="text"]:valid+label {
  9165. color: #00c851 !important
  9166. }
  9167. .md-form .was-validated input[type="text"]:invalid+label {
  9168. color: #f44336 !important
  9169. }
  9170. .md-form .was-validated .form-control:valid:focus {
  9171. -webkit-box-shadow: 0 1px 0 0 #00c851 !important;
  9172. box-shadow: 0 1px 0 0 #00c851 !important
  9173. }
  9174. .md-form .was-validated .form-control:valid {
  9175. border-color: #00c851 !important
  9176. }
  9177. .md-form .was-validated .form-control:invalid:focus {
  9178. -webkit-box-shadow: 0 1px 0 0 #f44336 !important;
  9179. box-shadow: 0 1px 0 0 #f44336 !important
  9180. }
  9181. .md-form .was-validated .form-control:invalid {
  9182. border-color: #f44336 !important
  9183. }
  9184. .md-form .form-control {
  9185. height: auto;
  9186. padding: .6rem 0 .4rem 0;
  9187. margin: 0 0 .5rem 0;
  9188. background-color: transparent;
  9189. border-radius: 0
  9190. }
  9191. .md-form .form-control:focus {
  9192. -webkit-box-shadow: none;
  9193. box-shadow: none
  9194. }
  9195. .md-form .form-control:disabled,
  9196. .md-form .form-control[readonly] {
  9197. background-color: transparent;
  9198. border-bottom: 1px solid #bdbdbd
  9199. }
  9200. .md-form .form-control.is-valid {
  9201. border-color: #00c851
  9202. }
  9203. .md-form .form-control.is-valid:focus {
  9204. border-color: #00c851 !important;
  9205. -webkit-box-shadow: 0 1px 0 0 #00c851 !important;
  9206. box-shadow: 0 1px 0 0 #00c851 !important
  9207. }
  9208. .md-form .form-control.is-invalid {
  9209. border-color: #f44336
  9210. }
  9211. .md-form .form-control.is-invalid:focus {
  9212. border-color: #f44336 !important;
  9213. -webkit-box-shadow: 0 1px 0 0 #f44336 !important;
  9214. box-shadow: 0 1px 0 0 #f44336 !important
  9215. }
  9216. .md-form .form-control.is-valid,
  9217. .md-form .form-control.is-invalid {
  9218. background-position: center right !important
  9219. }
  9220. .md-form .validate {
  9221. margin-bottom: 2.5rem
  9222. }
  9223. .md-form label {
  9224. font-size: 1rem
  9225. }
  9226. .md-form label.active {
  9227. font-size: 1rem
  9228. }
  9229. .md-form .prefix {
  9230. top: .25rem;
  9231. font-size: 1.75rem
  9232. }
  9233. .md-form .prefix~input,
  9234. .md-form .prefix~textarea {
  9235. width: calc(100% - 2.5rem);
  9236. margin-left: 2.5rem
  9237. }
  9238. .md-form .prefix~label {
  9239. margin-left: 2.5rem
  9240. }
  9241. .md-form .prefix~.form-text {
  9242. margin-left: 2.6rem
  9243. }
  9244. .md-form label {
  9245. position: absolute;
  9246. top: 0;
  9247. left: 0;
  9248. font-size: 1rem;
  9249. color: #757575;
  9250. cursor: text;
  9251. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9252. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9253. transition: transform .2s ease-out, color .2s ease-out;
  9254. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  9255. -webkit-transform: translateY(12px);
  9256. transform: translateY(12px);
  9257. -webkit-transform-origin: 0% 100%;
  9258. transform-origin: 0% 100%
  9259. }
  9260. .md-form label.active {
  9261. -webkit-transform: translateY(-14px) scale(0.8);
  9262. transform: translateY(-14px) scale(0.8)
  9263. }
  9264. .md-form .prefix {
  9265. position: absolute;
  9266. -webkit-transition: color 0.2s;
  9267. transition: color 0.2s
  9268. }
  9269. .md-form .prefix.active {
  9270. color: #4285f4
  9271. }
  9272. .md-form.form-lg .validate {
  9273. margin-bottom: 2.8rem
  9274. }
  9275. .md-form.form-lg label {
  9276. font-size: 1.25rem
  9277. }
  9278. .md-form.form-lg label.active {
  9279. font-size: 1.15rem
  9280. }
  9281. .md-form.form-lg .prefix {
  9282. top: .4rem;
  9283. font-size: 2rem
  9284. }
  9285. .md-form.form-lg .prefix~input,
  9286. .md-form.form-lg .prefix~textarea {
  9287. width: calc(100% - 3rem);
  9288. margin-left: 3rem
  9289. }
  9290. .md-form.form-lg .prefix~label {
  9291. margin-left: 3rem
  9292. }
  9293. .md-form.form-lg .prefix~.form-text {
  9294. margin-left: 3.1rem
  9295. }
  9296. .md-form.form-sm .validate {
  9297. margin-bottom: 2.3rem
  9298. }
  9299. .md-form.form-sm label {
  9300. font-size: .875rem
  9301. }
  9302. .md-form.form-sm label.active {
  9303. font-size: .95rem
  9304. }
  9305. .md-form.form-sm .prefix {
  9306. top: .35rem;
  9307. font-size: 1.5rem
  9308. }
  9309. .md-form.form-sm .prefix~input,
  9310. .md-form.form-sm .prefix~textarea {
  9311. width: calc(100% - 2rem);
  9312. margin-left: 2rem
  9313. }
  9314. .md-form.form-sm .prefix~label {
  9315. margin-left: 2rem
  9316. }
  9317. .md-form.form-sm .prefix~.form-text {
  9318. margin-left: 2rem
  9319. }
  9320. .md-form textarea.md-textarea {
  9321. padding: 1.5rem 0;
  9322. overflow-y: hidden
  9323. }
  9324. .md-form textarea.md-textarea-auto {
  9325. padding: 0;
  9326. padding-top: 1.5rem
  9327. }
  9328. .md-form.md-outline {
  9329. position: relative;
  9330. margin-top: 1.5rem;
  9331. margin-bottom: 1.5rem
  9332. }
  9333. .md-form.md-outline input[type="text"],
  9334. .md-form.md-outline input[type="password"],
  9335. .md-form.md-outline input[type="email"],
  9336. .md-form.md-outline input[type="url"],
  9337. .md-form.md-outline input[type="time"],
  9338. .md-form.md-outline input[type="date"],
  9339. .md-form.md-outline input[type="datetime-local"],
  9340. .md-form.md-outline input[type="tel"],
  9341. .md-form.md-outline input[type="number"],
  9342. .md-form.md-outline input[type="search-md"],
  9343. .md-form.md-outline input[type="search"],
  9344. .md-form.md-outline textarea.md-textarea {
  9345. -webkit-box-sizing: border-box;
  9346. box-sizing: border-box;
  9347. background-color: transparent;
  9348. border: 1px solid #dadce0;
  9349. border-radius: 4px;
  9350. outline: none;
  9351. -webkit-box-shadow: none;
  9352. box-shadow: none;
  9353. -webkit-transition: all .3s;
  9354. transition: all .3s
  9355. }
  9356. .md-form.md-outline input[type="text"]:focus:not([readonly]),
  9357. .md-form.md-outline input[type="password"]:focus:not([readonly]),
  9358. .md-form.md-outline input[type="email"]:focus:not([readonly]),
  9359. .md-form.md-outline input[type="url"]:focus:not([readonly]),
  9360. .md-form.md-outline input[type="time"]:focus:not([readonly]),
  9361. .md-form.md-outline input[type="date"]:focus:not([readonly]),
  9362. .md-form.md-outline input[type="datetime-local"]:focus:not([readonly]),
  9363. .md-form.md-outline input[type="tel"]:focus:not([readonly]),
  9364. .md-form.md-outline input[type="number"]:focus:not([readonly]),
  9365. .md-form.md-outline input[type="search-md"]:focus:not([readonly]),
  9366. .md-form.md-outline input[type="search"]:focus:not([readonly]),
  9367. .md-form.md-outline textarea.md-textarea:focus:not([readonly]) {
  9368. border-color: #4285f4;
  9369. -webkit-box-shadow: inset 0 0 0 1px #4285f4;
  9370. box-shadow: inset 0 0 0 1px #4285f4
  9371. }
  9372. .md-form.md-outline input[type="text"]:focus:not([readonly])+label,
  9373. .md-form.md-outline input[type="password"]:focus:not([readonly])+label,
  9374. .md-form.md-outline input[type="email"]:focus:not([readonly])+label,
  9375. .md-form.md-outline input[type="url"]:focus:not([readonly])+label,
  9376. .md-form.md-outline input[type="time"]:focus:not([readonly])+label,
  9377. .md-form.md-outline input[type="date"]:focus:not([readonly])+label,
  9378. .md-form.md-outline input[type="datetime-local"]:focus:not([readonly])+label,
  9379. .md-form.md-outline input[type="tel"]:focus:not([readonly])+label,
  9380. .md-form.md-outline input[type="number"]:focus:not([readonly])+label,
  9381. .md-form.md-outline input[type="search-md"]:focus:not([readonly])+label,
  9382. .md-form.md-outline input[type="search"]:focus:not([readonly])+label,
  9383. .md-form.md-outline textarea.md-textarea:focus:not([readonly])+label {
  9384. color: #4285f4
  9385. }
  9386. .md-form.md-outline input[type="text"].valid,
  9387. .md-form.md-outline input[type="text"]:focus.valid,
  9388. .md-form.md-outline input[type="password"].valid,
  9389. .md-form.md-outline input[type="password"]:focus.valid,
  9390. .md-form.md-outline input[type="email"].valid,
  9391. .md-form.md-outline input[type="email"]:focus.valid,
  9392. .md-form.md-outline input[type="url"].valid,
  9393. .md-form.md-outline input[type="url"]:focus.valid,
  9394. .md-form.md-outline input[type="time"].valid,
  9395. .md-form.md-outline input[type="time"]:focus.valid,
  9396. .md-form.md-outline input[type="date"].valid,
  9397. .md-form.md-outline input[type="date"]:focus.valid,
  9398. .md-form.md-outline input[type="datetime-local"].valid,
  9399. .md-form.md-outline input[type="datetime-local"]:focus.valid,
  9400. .md-form.md-outline input[type="tel"].valid,
  9401. .md-form.md-outline input[type="tel"]:focus.valid,
  9402. .md-form.md-outline input[type="number"].valid,
  9403. .md-form.md-outline input[type="number"]:focus.valid,
  9404. .md-form.md-outline input[type="search-md"].valid,
  9405. .md-form.md-outline input[type="search-md"]:focus.valid,
  9406. .md-form.md-outline input[type="search"].valid,
  9407. .md-form.md-outline input[type="search"]:focus.valid,
  9408. .md-form.md-outline textarea.md-textarea.valid,
  9409. .md-form.md-outline textarea.md-textarea:focus.valid {
  9410. border-color: #00c851;
  9411. -webkit-box-shadow: inset 0 0 0 1px #00c851;
  9412. box-shadow: inset 0 0 0 1px #00c851
  9413. }
  9414. .md-form.md-outline input[type="text"]:focus:not([readonly]).valid+label,
  9415. .md-form.md-outline input[type="text"].valid+label:after,
  9416. .md-form.md-outline input[type="text"]:focus.valid+label:after,
  9417. .md-form.md-outline input[type="password"]:focus:not([readonly]).valid+label,
  9418. .md-form.md-outline input[type="password"].valid+label:after,
  9419. .md-form.md-outline input[type="password"]:focus.valid+label:after,
  9420. .md-form.md-outline input[type="email"]:focus:not([readonly]).valid+label,
  9421. .md-form.md-outline input[type="email"].valid+label:after,
  9422. .md-form.md-outline input[type="email"]:focus.valid+label:after,
  9423. .md-form.md-outline input[type="url"]:focus:not([readonly]).valid+label,
  9424. .md-form.md-outline input[type="url"].valid+label:after,
  9425. .md-form.md-outline input[type="url"]:focus.valid+label:after,
  9426. .md-form.md-outline input[type="time"]:focus:not([readonly]).valid+label,
  9427. .md-form.md-outline input[type="time"].valid+label:after,
  9428. .md-form.md-outline input[type="time"]:focus.valid+label:after,
  9429. .md-form.md-outline input[type="date"]:focus:not([readonly]).valid+label,
  9430. .md-form.md-outline input[type="date"].valid+label:after,
  9431. .md-form.md-outline input[type="date"]:focus.valid+label:after,
  9432. .md-form.md-outline input[type="datetime-local"]:focus:not([readonly]).valid+label,
  9433. .md-form.md-outline input[type="datetime-local"].valid+label:after,
  9434. .md-form.md-outline input[type="datetime-local"]:focus.valid+label:after,
  9435. .md-form.md-outline input[type="tel"]:focus:not([readonly]).valid+label,
  9436. .md-form.md-outline input[type="tel"].valid+label:after,
  9437. .md-form.md-outline input[type="tel"]:focus.valid+label:after,
  9438. .md-form.md-outline input[type="number"]:focus:not([readonly]).valid+label,
  9439. .md-form.md-outline input[type="number"].valid+label:after,
  9440. .md-form.md-outline input[type="number"]:focus.valid+label:after,
  9441. .md-form.md-outline input[type="search-md"]:focus:not([readonly]).valid+label,
  9442. .md-form.md-outline input[type="search-md"].valid+label:after,
  9443. .md-form.md-outline input[type="search-md"]:focus.valid+label:after,
  9444. .md-form.md-outline input[type="search"]:focus:not([readonly]).valid+label,
  9445. .md-form.md-outline input[type="search"].valid+label:after,
  9446. .md-form.md-outline input[type="search"]:focus.valid+label:after,
  9447. .md-form.md-outline textarea.md-textarea:focus:not([readonly]).valid+label,
  9448. .md-form.md-outline textarea.md-textarea.valid+label:after,
  9449. .md-form.md-outline textarea.md-textarea:focus.valid+label:after {
  9450. color: #00c851;
  9451. content: attr(data-success);
  9452. opacity: 1
  9453. }
  9454. .md-form.md-outline input[type="text"].invalid,
  9455. .md-form.md-outline input[type="text"]:focus.invalid,
  9456. .md-form.md-outline input[type="password"].invalid,
  9457. .md-form.md-outline input[type="password"]:focus.invalid,
  9458. .md-form.md-outline input[type="email"].invalid,
  9459. .md-form.md-outline input[type="email"]:focus.invalid,
  9460. .md-form.md-outline input[type="url"].invalid,
  9461. .md-form.md-outline input[type="url"]:focus.invalid,
  9462. .md-form.md-outline input[type="time"].invalid,
  9463. .md-form.md-outline input[type="time"]:focus.invalid,
  9464. .md-form.md-outline input[type="date"].invalid,
  9465. .md-form.md-outline input[type="date"]:focus.invalid,
  9466. .md-form.md-outline input[type="datetime-local"].invalid,
  9467. .md-form.md-outline input[type="datetime-local"]:focus.invalid,
  9468. .md-form.md-outline input[type="tel"].invalid,
  9469. .md-form.md-outline input[type="tel"]:focus.invalid,
  9470. .md-form.md-outline input[type="number"].invalid,
  9471. .md-form.md-outline input[type="number"]:focus.invalid,
  9472. .md-form.md-outline input[type="search-md"].invalid,
  9473. .md-form.md-outline input[type="search-md"]:focus.invalid,
  9474. .md-form.md-outline input[type="search"].invalid,
  9475. .md-form.md-outline input[type="search"]:focus.invalid,
  9476. .md-form.md-outline textarea.md-textarea.invalid,
  9477. .md-form.md-outline textarea.md-textarea:focus.invalid {
  9478. border-color: #f44336;
  9479. -webkit-box-shadow: inset 0 0 0 1px #f44336;
  9480. box-shadow: inset 0 0 0 1px #f44336
  9481. }
  9482. .md-form.md-outline input[type="text"]:focus:not([readonly]).invalid+label,
  9483. .md-form.md-outline input[type="text"].invalid+label:after,
  9484. .md-form.md-outline input[type="text"]:focus.invalid+label:after,
  9485. .md-form.md-outline input[type="password"]:focus:not([readonly]).invalid+label,
  9486. .md-form.md-outline input[type="password"].invalid+label:after,
  9487. .md-form.md-outline input[type="password"]:focus.invalid+label:after,
  9488. .md-form.md-outline input[type="email"]:focus:not([readonly]).invalid+label,
  9489. .md-form.md-outline input[type="email"].invalid+label:after,
  9490. .md-form.md-outline input[type="email"]:focus.invalid+label:after,
  9491. .md-form.md-outline input[type="url"]:focus:not([readonly]).invalid+label,
  9492. .md-form.md-outline input[type="url"].invalid+label:after,
  9493. .md-form.md-outline input[type="url"]:focus.invalid+label:after,
  9494. .md-form.md-outline input[type="time"]:focus:not([readonly]).invalid+label,
  9495. .md-form.md-outline input[type="time"].invalid+label:after,
  9496. .md-form.md-outline input[type="time"]:focus.invalid+label:after,
  9497. .md-form.md-outline input[type="date"]:focus:not([readonly]).invalid+label,
  9498. .md-form.md-outline input[type="date"].invalid+label:after,
  9499. .md-form.md-outline input[type="date"]:focus.invalid+label:after,
  9500. .md-form.md-outline input[type="datetime-local"]:focus:not([readonly]).invalid+label,
  9501. .md-form.md-outline input[type="datetime-local"].invalid+label:after,
  9502. .md-form.md-outline input[type="datetime-local"]:focus.invalid+label:after,
  9503. .md-form.md-outline input[type="tel"]:focus:not([readonly]).invalid+label,
  9504. .md-form.md-outline input[type="tel"].invalid+label:after,
  9505. .md-form.md-outline input[type="tel"]:focus.invalid+label:after,
  9506. .md-form.md-outline input[type="number"]:focus:not([readonly]).invalid+label,
  9507. .md-form.md-outline input[type="number"].invalid+label:after,
  9508. .md-form.md-outline input[type="number"]:focus.invalid+label:after,
  9509. .md-form.md-outline input[type="search-md"]:focus:not([readonly]).invalid+label,
  9510. .md-form.md-outline input[type="search-md"].invalid+label:after,
  9511. .md-form.md-outline input[type="search-md"]:focus.invalid+label:after,
  9512. .md-form.md-outline input[type="search"]:focus:not([readonly]).invalid+label,
  9513. .md-form.md-outline input[type="search"].invalid+label:after,
  9514. .md-form.md-outline input[type="search"]:focus.invalid+label:after,
  9515. .md-form.md-outline textarea.md-textarea:focus:not([readonly]).invalid+label,
  9516. .md-form.md-outline textarea.md-textarea.invalid+label:after,
  9517. .md-form.md-outline textarea.md-textarea:focus.invalid+label:after {
  9518. color: #f44336;
  9519. content: attr(data-error);
  9520. opacity: 1
  9521. }
  9522. .md-form.md-outline input[type="text"].form-control.valid+label:after,
  9523. .md-form.md-outline input[type="text"].form-control:focus.valid+label:after,
  9524. .md-form.md-outline input[type="password"].form-control.valid+label:after,
  9525. .md-form.md-outline input[type="password"].form-control:focus.valid+label:after,
  9526. .md-form.md-outline input[type="email"].form-control.valid+label:after,
  9527. .md-form.md-outline input[type="email"].form-control:focus.valid+label:after,
  9528. .md-form.md-outline input[type="url"].form-control.valid+label:after,
  9529. .md-form.md-outline input[type="url"].form-control:focus.valid+label:after,
  9530. .md-form.md-outline input[type="time"].form-control.valid+label:after,
  9531. .md-form.md-outline input[type="time"].form-control:focus.valid+label:after,
  9532. .md-form.md-outline input[type="date"].form-control.valid+label:after,
  9533. .md-form.md-outline input[type="date"].form-control:focus.valid+label:after,
  9534. .md-form.md-outline input[type="datetime-local"].form-control.valid+label:after,
  9535. .md-form.md-outline input[type="datetime-local"].form-control:focus.valid+label:after,
  9536. .md-form.md-outline input[type="tel"].form-control.valid+label:after,
  9537. .md-form.md-outline input[type="tel"].form-control:focus.valid+label:after,
  9538. .md-form.md-outline input[type="number"].form-control.valid+label:after,
  9539. .md-form.md-outline input[type="number"].form-control:focus.valid+label:after,
  9540. .md-form.md-outline input[type="search-md"].form-control.valid+label:after,
  9541. .md-form.md-outline input[type="search-md"].form-control:focus.valid+label:after,
  9542. .md-form.md-outline input[type="search"].form-control.valid+label:after,
  9543. .md-form.md-outline input[type="search"].form-control:focus.valid+label:after,
  9544. .md-form.md-outline textarea.md-textarea.form-control.valid+label:after,
  9545. .md-form.md-outline textarea.md-textarea.form-control:focus.valid+label:after {
  9546. position: absolute;
  9547. top: 4rem;
  9548. left: 0
  9549. }
  9550. .md-form.md-outline input[type="text"].form-control.invalid+label:after,
  9551. .md-form.md-outline input[type="text"].form-control:focus.invalid+label:after,
  9552. .md-form.md-outline input[type="password"].form-control.invalid+label:after,
  9553. .md-form.md-outline input[type="password"].form-control:focus.invalid+label:after,
  9554. .md-form.md-outline input[type="email"].form-control.invalid+label:after,
  9555. .md-form.md-outline input[type="email"].form-control:focus.invalid+label:after,
  9556. .md-form.md-outline input[type="url"].form-control.invalid+label:after,
  9557. .md-form.md-outline input[type="url"].form-control:focus.invalid+label:after,
  9558. .md-form.md-outline input[type="time"].form-control.invalid+label:after,
  9559. .md-form.md-outline input[type="time"].form-control:focus.invalid+label:after,
  9560. .md-form.md-outline input[type="date"].form-control.invalid+label:after,
  9561. .md-form.md-outline input[type="date"].form-control:focus.invalid+label:after,
  9562. .md-form.md-outline input[type="datetime-local"].form-control.invalid+label:after,
  9563. .md-form.md-outline input[type="datetime-local"].form-control:focus.invalid+label:after,
  9564. .md-form.md-outline input[type="tel"].form-control.invalid+label:after,
  9565. .md-form.md-outline input[type="tel"].form-control:focus.invalid+label:after,
  9566. .md-form.md-outline input[type="number"].form-control.invalid+label:after,
  9567. .md-form.md-outline input[type="number"].form-control:focus.invalid+label:after,
  9568. .md-form.md-outline input[type="search-md"].form-control.invalid+label:after,
  9569. .md-form.md-outline input[type="search-md"].form-control:focus.invalid+label:after,
  9570. .md-form.md-outline input[type="search"].form-control.invalid+label:after,
  9571. .md-form.md-outline input[type="search"].form-control:focus.invalid+label:after,
  9572. .md-form.md-outline textarea.md-textarea.form-control.invalid+label:after,
  9573. .md-form.md-outline textarea.md-textarea.form-control:focus.invalid+label:after {
  9574. position: absolute;
  9575. top: 4rem;
  9576. left: 0
  9577. }
  9578. .md-form.md-outline>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
  9579. .md-form.md-outline>input[type="time"]:not(.browser-default)+label {
  9580. left: 8px;
  9581. padding-right: 5px;
  9582. padding-left: 5px;
  9583. font-size: 1rem;
  9584. font-weight: 500;
  9585. background: #fff;
  9586. -webkit-transform: translateY(-9px) scale(0.8);
  9587. transform: translateY(-9px) scale(0.8);
  9588. -webkit-transform-origin: 0 0;
  9589. transform-origin: 0 0
  9590. }
  9591. .md-form.md-outline>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label.active,
  9592. .md-form.md-outline>input[type="time"]:not(.browser-default)+label.active {
  9593. -webkit-transform: translateY(-9px) scale(0.8);
  9594. transform: translateY(-9px) scale(0.8);
  9595. -webkit-transform-origin: 0 0;
  9596. transform-origin: 0 0
  9597. }
  9598. @-webkit-keyframes autofill {
  9599. to {
  9600. color: #495057;
  9601. background: transparent
  9602. }
  9603. }
  9604. @keyframes autofill {
  9605. to {
  9606. color: #495057;
  9607. background: transparent
  9608. }
  9609. }
  9610. .md-form.md-outline input:-webkit-autofill {
  9611. -webkit-animation-name: autofill;
  9612. animation-name: autofill;
  9613. -webkit-animation-fill-mode: both;
  9614. animation-fill-mode: both
  9615. }
  9616. .md-form.md-outline .form-control {
  9617. padding: .375rem .75rem
  9618. }
  9619. .md-form.md-outline label {
  9620. position: absolute;
  9621. top: 0;
  9622. left: 0;
  9623. padding-left: 10px;
  9624. font-size: 1rem;
  9625. color: #757575;
  9626. cursor: text;
  9627. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9628. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9629. transition: transform .2s ease-out, color .2s ease-out;
  9630. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  9631. -webkit-transform: translateY(9px);
  9632. transform: translateY(9px);
  9633. -webkit-transform-origin: 0% 100%;
  9634. transform-origin: 0% 100%
  9635. }
  9636. .md-form.md-outline label.active {
  9637. left: 8px;
  9638. padding-right: 5px;
  9639. padding-left: 5px;
  9640. font-weight: 500;
  9641. background: #fff;
  9642. -webkit-transform: translateY(-13px) scale(0.8);
  9643. transform: translateY(-13px) scale(0.8)
  9644. }
  9645. .md-form.md-outline.form-lg .form-control.form-control-lg {
  9646. padding: .5rem .725rem
  9647. }
  9648. .md-form.md-outline.form-lg label {
  9649. font-size: 1.25rem;
  9650. -webkit-transform: translateY(10px);
  9651. transform: translateY(10px)
  9652. }
  9653. .md-form.md-outline.form-lg label.active {
  9654. font-size: 1.1rem;
  9655. -webkit-transform: translateY(-14px) scale(0.8);
  9656. transform: translateY(-14px) scale(0.8)
  9657. }
  9658. .md-form.md-outline.form-lg .prefix {
  9659. top: .65rem;
  9660. font-size: 25px
  9661. }
  9662. .md-form.md-outline.form-lg .prefix~input,
  9663. .md-form.md-outline.form-lg .prefix~textarea {
  9664. width: calc(100% - 2.2rem);
  9665. margin-left: 2.2rem
  9666. }
  9667. .md-form.md-outline.form-lg .prefix~label {
  9668. margin-left: 2.2rem
  9669. }
  9670. .md-form.md-outline.form-lg .prefix~.form-text {
  9671. margin-left: 2.3rem
  9672. }
  9673. .md-form.md-outline.form-sm .form-control.form-control-sm {
  9674. padding: .25rem .625rem
  9675. }
  9676. .md-form.md-outline.form-sm label {
  9677. font-size: .8rem;
  9678. -webkit-transform: translateY(8px);
  9679. transform: translateY(8px)
  9680. }
  9681. .md-form.md-outline.form-sm label.active {
  9682. font-size: .85rem;
  9683. -webkit-transform: translateY(-12px) scale(0.8);
  9684. transform: translateY(-12px) scale(0.8)
  9685. }
  9686. .md-form.md-outline.form-sm .prefix {
  9687. top: .5rem;
  9688. font-size: 15px
  9689. }
  9690. .md-form.md-outline.form-sm .prefix~input,
  9691. .md-form.md-outline.form-sm .prefix~textarea {
  9692. width: calc(100% - 1.6rem);
  9693. margin-left: 1.6rem
  9694. }
  9695. .md-form.md-outline.form-sm .prefix~label {
  9696. margin-left: 1.6rem
  9697. }
  9698. .md-form.md-outline.form-sm .prefix~.form-text {
  9699. margin-left: 1.7rem
  9700. }
  9701. .md-form.md-outline .prefix {
  9702. position: absolute;
  9703. top: .6rem;
  9704. font-size: 20px;
  9705. -webkit-transition: color .2s;
  9706. transition: color .2s
  9707. }
  9708. .md-form.md-outline .prefix:focus {
  9709. color: #4285f4
  9710. }
  9711. .md-form.md-outline .prefix~input,
  9712. .md-form.md-outline .prefix~textarea {
  9713. width: calc(100% - 2rem);
  9714. margin-left: 2rem
  9715. }
  9716. .md-form.md-outline .prefix~label {
  9717. margin-left: 2rem
  9718. }
  9719. .md-form.md-outline .prefix~.form-text {
  9720. margin-left: 2.1rem
  9721. }
  9722. .md-form.md-outline .character-counter {
  9723. margin-top: -.5rem
  9724. }
  9725. .md-form.md-bg input[type="text"],
  9726. .md-form.md-bg input[type="password"],
  9727. .md-form.md-bg input[type="email"],
  9728. .md-form.md-bg input[type="url"],
  9729. .md-form.md-bg input[type="time"],
  9730. .md-form.md-bg input[type="date"],
  9731. .md-form.md-bg input[type="datetime-local"],
  9732. .md-form.md-bg input[type="tel"],
  9733. .md-form.md-bg input[type="number"],
  9734. .md-form.md-bg input[type="search-md"],
  9735. .md-form.md-bg input[type="search"],
  9736. .md-form.md-bg textarea.md-textarea {
  9737. -webkit-box-sizing: border-box;
  9738. box-sizing: border-box;
  9739. padding: 10px 5px;
  9740. background: #f5f5f5 no-repeat;
  9741. background-image: -webkit-gradient(linear, left top, left bottom, from(#4285f4), to(#4285f4)), -webkit-gradient(linear, left top, left bottom, from(#ced4da), to(#ced4da));
  9742. background-image: linear-gradient(to bottom, #4285f4, #4285f4), linear-gradient(to bottom, #ced4da, #ced4da);
  9743. background-position: 50% 100%, 50% 100%;
  9744. background-size: 0 2px, 100% 1px;
  9745. border: 0;
  9746. border-top-left-radius: .3rem;
  9747. border-top-right-radius: .3rem;
  9748. -webkit-transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  9749. transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1)
  9750. }
  9751. .md-form.md-bg input[type="text"]:focus:not([readonly]),
  9752. .md-form.md-bg input[type="password"]:focus:not([readonly]),
  9753. .md-form.md-bg input[type="email"]:focus:not([readonly]),
  9754. .md-form.md-bg input[type="url"]:focus:not([readonly]),
  9755. .md-form.md-bg input[type="time"]:focus:not([readonly]),
  9756. .md-form.md-bg input[type="date"]:focus:not([readonly]),
  9757. .md-form.md-bg input[type="datetime-local"]:focus:not([readonly]),
  9758. .md-form.md-bg input[type="tel"]:focus:not([readonly]),
  9759. .md-form.md-bg input[type="number"]:focus:not([readonly]),
  9760. .md-form.md-bg input[type="search-md"]:focus:not([readonly]),
  9761. .md-form.md-bg input[type="search"]:focus:not([readonly]),
  9762. .md-form.md-bg textarea.md-textarea:focus:not([readonly]) {
  9763. border-bottom: none;
  9764. -webkit-box-shadow: none;
  9765. box-shadow: none
  9766. }
  9767. .md-form.md-bg input[type="text"]:focus,
  9768. .md-form.md-bg input[type="password"]:focus,
  9769. .md-form.md-bg input[type="email"]:focus,
  9770. .md-form.md-bg input[type="url"]:focus,
  9771. .md-form.md-bg input[type="time"]:focus,
  9772. .md-form.md-bg input[type="date"]:focus,
  9773. .md-form.md-bg input[type="datetime-local"]:focus,
  9774. .md-form.md-bg input[type="tel"]:focus,
  9775. .md-form.md-bg input[type="number"]:focus,
  9776. .md-form.md-bg input[type="search-md"]:focus,
  9777. .md-form.md-bg input[type="search"]:focus,
  9778. .md-form.md-bg textarea.md-textarea:focus {
  9779. background-color: #dcdcdc;
  9780. background-size: 100% 2px, 100% 1px;
  9781. outline: none
  9782. }
  9783. .md-form.md-bg>input[type="date"]:not(.browser-default)+label {
  9784. -webkit-transform: translateY(-12px) scale(0.8);
  9785. transform: translateY(-12px) scale(0.8);
  9786. -webkit-transform-origin: 0 0;
  9787. transform-origin: 0 0
  9788. }
  9789. .md-form.md-bg>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
  9790. .md-form.md-bg>input[type="time"]:not(.browser-default)+label {
  9791. font-size: .8rem;
  9792. -webkit-transform: translateY(-12px);
  9793. transform: translateY(-12px);
  9794. -webkit-transform-origin: 0 0;
  9795. transform-origin: 0 0
  9796. }
  9797. .md-form.md-bg .form-control {
  9798. padding: 1.1rem .7rem .4rem !important
  9799. }
  9800. .md-form.md-bg label {
  9801. top: 0;
  9802. padding-left: .7rem;
  9803. font-size: 1rem;
  9804. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9805. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  9806. transition: transform .2s ease-out, color .2s ease-out;
  9807. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  9808. -webkit-transform: translateY(13px);
  9809. transform: translateY(13px);
  9810. -webkit-transform-origin: 0% 100%;
  9811. transform-origin: 0% 100%
  9812. }
  9813. .md-form.md-bg label.active {
  9814. padding-left: .75rem;
  9815. font-weight: 500;
  9816. -webkit-transform: translateY(-3px) scale(0.8);
  9817. transform: translateY(-3px) scale(0.8)
  9818. }
  9819. .md-form.md-bg.form-lg label {
  9820. -webkit-transform: translateY(16px);
  9821. transform: translateY(16px)
  9822. }
  9823. .md-form.md-bg.form-lg label.active {
  9824. -webkit-transform: translateY(-4px) scale(0.8);
  9825. transform: translateY(-4px) scale(0.8)
  9826. }
  9827. .md-form.md-bg.form-sm label {
  9828. -webkit-transform: translateY(11px);
  9829. transform: translateY(11px)
  9830. }
  9831. .md-form.md-bg.form-sm label.active {
  9832. -webkit-transform: translateY(-2px) scale(0.8);
  9833. transform: translateY(-2px) scale(0.8)
  9834. }
  9835. .md-form .form-control.is-invalid,
  9836. .was-validated .md-form .form-control:invalid {
  9837. padding-right: 0
  9838. }
  9839. .md-form .form-control.is-valid,
  9840. .was-validated .md-form .form-control:valid {
  9841. padding-right: 0
  9842. }
  9843. .needs-validation .md-form label {
  9844. left: .3rem
  9845. }
  9846. .custom-file-input:lang(es)~.custom-file-label::after {
  9847. content: "Elegir"
  9848. }
  9849. .custom-file-input:lang(pl-pl)~.custom-file-label::after {
  9850. content: "Wybierz"
  9851. }
  9852. .custom-file-input:lang(fr)~.custom-file-label::after {
  9853. content: "Choisir"
  9854. }
  9855. .custom-file-input:lang(in)~.custom-file-label::after {
  9856. content: "Pilih"
  9857. }
  9858. .custom-file-input:lang(zh)~.custom-file-label::after {
  9859. content: "選擇"
  9860. }
  9861. .custom-file-input:lang(de)~.custom-file-label::after {
  9862. content: "Wählen"
  9863. }
  9864. .custom-file-input:lang(ru)~.custom-file-label::after {
  9865. content: "выбирать"
  9866. }
  9867. .edge-header {
  9868. display: block;
  9869. height: 278px;
  9870. background-color: #ccc
  9871. }
  9872. .free-bird {
  9873. margin-top: -100px
  9874. }
  9875. .juicy-peach-gradient {
  9876. background-image: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f));
  9877. background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%)
  9878. }
  9879. .young-passion-gradient {
  9880. background-image: -webkit-gradient(linear, left top, right top, from(#ff8177), color-stop(0%, #ff867a), color-stop(21%, #ff8c7f), color-stop(52%, #f99185), color-stop(78%, #cf556c), to(#b12a5b));
  9881. background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%)
  9882. }
  9883. .lady-lips-gradient {
  9884. background-image: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(99%, #fecfef), to(#fecfef));
  9885. background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%)
  9886. }
  9887. .sunny-morning-gradient {
  9888. background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%)
  9889. }
  9890. .rainy-ashville-gradient {
  9891. background-image: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a6c1ee));
  9892. background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%)
  9893. }
  9894. .frozen-dreams-gradient {
  9895. background-image: -webkit-gradient(linear, left bottom, left top, from(#fdcbf1), color-stop(1%, #fdcbf1), to(#e6dee9));
  9896. background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%)
  9897. }
  9898. .warm-flame-gradient {
  9899. background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%)
  9900. }
  9901. .night-fade-gradient {
  9902. background-image: -webkit-gradient(linear, left bottom, left top, from(#a18cd1), to(#fbc2eb));
  9903. background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%)
  9904. }
  9905. .spring-warmth-gradient {
  9906. background-image: -webkit-gradient(linear, left bottom, left top, from(#fad0c4), to(#ffd1ff));
  9907. background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%)
  9908. }
  9909. .winter-neva-gradient {
  9910. background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%)
  9911. }
  9912. .dusty-grass-gradient {
  9913. background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%)
  9914. }
  9915. .tempting-azure-gradient {
  9916. background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%)
  9917. }
  9918. .heavy-rain-gradient {
  9919. background-image: -webkit-gradient(linear, left bottom, left top, from(#cfd9df), to(#e2ebf0));
  9920. background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%)
  9921. }
  9922. .amy-crisp-gradient {
  9923. background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%)
  9924. }
  9925. .mean-fruit-gradient {
  9926. background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%)
  9927. }
  9928. .deep-blue-gradient {
  9929. background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%)
  9930. }
  9931. .ripe-malinka-gradient {
  9932. background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%)
  9933. }
  9934. .cloudy-knoxville-gradient {
  9935. background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%)
  9936. }
  9937. .morpheus-den-gradient {
  9938. background-image: -webkit-gradient(linear, left bottom, left top, from(#30cfd0), to(#330867));
  9939. background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%)
  9940. }
  9941. .rare-wind-gradient {
  9942. background-image: -webkit-gradient(linear, left bottom, left top, from(#a8edea), to(#fed6e3));
  9943. background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%)
  9944. }
  9945. .near-moon-gradient {
  9946. background-image: -webkit-gradient(linear, left bottom, left top, from(#5ee7df), to(#b490ca));
  9947. background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%)
  9948. }
  9949. .schedule-list .hr-bold {
  9950. border-top: 2px solid #212529
  9951. }
  9952. .schedule-list .font-smaller {
  9953. font-size: .8rem
  9954. }
  9955. .note {
  9956. padding: 10px;
  9957. border-left: 6px solid;
  9958. border-radius: 5px
  9959. }
  9960. .note strong {
  9961. font-weight: 600
  9962. }
  9963. .note p {
  9964. font-weight: 500
  9965. }
  9966. .note-primary {
  9967. background-color: #dfeefd;
  9968. border-color: #176ac4
  9969. }
  9970. .note-secondary {
  9971. background-color: #e2e3e5;
  9972. border-color: #58595a
  9973. }
  9974. .note-success {
  9975. background-color: #e2f0e5;
  9976. border-color: #49a75f
  9977. }
  9978. .note-danger {
  9979. background-color: #fae7e8;
  9980. border-color: #e45460
  9981. }
  9982. .note-warning {
  9983. background-color: #faf4e0;
  9984. border-color: #c2a442
  9985. }
  9986. .note-info {
  9987. background-color: #e4f2f5;
  9988. border-color: #2492a5
  9989. }
  9990. .note-light {
  9991. background-color: #fefefe;
  9992. border-color: #0f0f0f
  9993. }
  9994. footer.page-footer {
  9995. bottom: 0;
  9996. color: #fff
  9997. }
  9998. footer.page-footer .container-fluid {
  9999. width: auto
  10000. }
  10001. footer.page-footer .footer-copyright {
  10002. overflow: hidden;
  10003. color: rgba(255, 255, 255, 0.6);
  10004. background-color: rgba(0, 0, 0, 0.2)
  10005. }
  10006. footer.page-footer a {
  10007. color: #fff
  10008. }
  10009. .media .media-left {
  10010. padding: 0 10px 10px 0
  10011. }
  10012. .media .media-left img {
  10013. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  10014. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
  10015. }
  10016. .list-group .list-group-item:first-child {
  10017. border-top-left-radius: .125rem;
  10018. border-top-right-radius: .125rem
  10019. }
  10020. .list-group .list-group-item:last-child {
  10021. border-bottom-right-radius: .125rem;
  10022. border-bottom-left-radius: .125rem
  10023. }
  10024. .list-group a,
  10025. .list-group button {
  10026. -webkit-transition: .5s;
  10027. transition: .5s
  10028. }
  10029. .list-group a:hover,
  10030. .list-group button:hover {
  10031. -webkit-transition: .5s;
  10032. transition: .5s
  10033. }
  10034. table th {
  10035. font-size: .9rem;
  10036. font-weight: 400
  10037. }
  10038. table td {
  10039. font-size: .9rem;
  10040. font-weight: 300
  10041. }
  10042. table.table thead th {
  10043. border-top: none
  10044. }
  10045. table.table th,
  10046. table.table td {
  10047. padding-top: 1.1rem;
  10048. padding-bottom: 1rem
  10049. }
  10050. table.table a {
  10051. margin: 0;
  10052. color: #212529
  10053. }
  10054. table.table .label-table {
  10055. height: .94rem;
  10056. padding: 0;
  10057. margin: 0;
  10058. line-height: .94rem
  10059. }
  10060. table.table.btn-table td {
  10061. vertical-align: middle
  10062. }
  10063. table.table-hover tbody tr:hover {
  10064. background-color: rgba(0, 0, 0, 0.075);
  10065. -webkit-transition: .5s;
  10066. transition: .5s
  10067. }
  10068. table .th-lg {
  10069. min-width: 9rem
  10070. }
  10071. table .th-sm {
  10072. min-width: 6rem
  10073. }
  10074. table.table-sm th,
  10075. table.table-sm td {
  10076. padding-top: .6rem;
  10077. padding-bottom: .6rem
  10078. }
  10079. .table-scroll-vertical {
  10080. max-height: 300px;
  10081. overflow-y: auto
  10082. }
  10083. .table-fixed {
  10084. table-layout: fixed
  10085. }
  10086. .table-responsive>.table-bordered,
  10087. .table-responsive-sm>.table-bordered,
  10088. .table-responsive-md>.table-bordered,
  10089. .table-responsive-lg>.table-bordered,
  10090. .table-responsive-xl>.table-bordered {
  10091. border-top: 1px solid #dee2e6
  10092. }
  10093. ul.stepper {
  10094. padding: 0 1.5rem;
  10095. padding: 1.5rem;
  10096. margin: 1em -1.5rem;
  10097. overflow-x: hidden;
  10098. overflow-y: auto;
  10099. counter-reset: section
  10100. }
  10101. ul.stepper li a {
  10102. padding: 1.5rem;
  10103. text-align: center
  10104. }
  10105. ul.stepper li a .circle {
  10106. display: inline-block;
  10107. width: 1.75rem;
  10108. height: 1.75rem;
  10109. margin-right: .5rem;
  10110. line-height: 1.7rem;
  10111. color: #fff;
  10112. text-align: center;
  10113. background: rgba(0, 0, 0, 0.38);
  10114. border-radius: 50%
  10115. }
  10116. ul.stepper li a .label {
  10117. display: inline-block;
  10118. color: rgba(0, 0, 0, 0.38)
  10119. }
  10120. ul.stepper li.active a .label,
  10121. ul.stepper li.completed a .label {
  10122. font-weight: 600;
  10123. color: rgba(0, 0, 0, 0.87)
  10124. }
  10125. .stepper-horizontal {
  10126. position: relative;
  10127. display: -webkit-box;
  10128. display: -ms-flexbox;
  10129. display: flex;
  10130. -webkit-box-pack: justify;
  10131. -ms-flex-pack: justify;
  10132. justify-content: space-between
  10133. }
  10134. .stepper-horizontal li {
  10135. position: relative;
  10136. display: -webkit-box;
  10137. display: -ms-flexbox;
  10138. display: flex;
  10139. -webkit-box-flex: 1;
  10140. -ms-flex: 1;
  10141. flex: 1;
  10142. -webkit-box-align: center;
  10143. -ms-flex-align: center;
  10144. align-items: center;
  10145. -webkit-transition: .5s;
  10146. transition: .5s
  10147. }
  10148. .stepper-horizontal li a .label {
  10149. margin-top: .63rem
  10150. }
  10151. .stepper-horizontal li:not(:last-child):after {
  10152. position: relative;
  10153. -webkit-box-flex: 1;
  10154. -ms-flex: 1;
  10155. flex: 1;
  10156. height: 1px;
  10157. margin: .5rem 0 0 0;
  10158. content: "";
  10159. background-color: rgba(0, 0, 0, 0.1)
  10160. }
  10161. .stepper-horizontal li:not(:first-child):before {
  10162. position: relative;
  10163. -webkit-box-flex: 1;
  10164. -ms-flex: 1;
  10165. flex: 1;
  10166. height: 1px;
  10167. margin: .5rem 0 0 0;
  10168. content: "";
  10169. background-color: rgba(0, 0, 0, 0.1)
  10170. }
  10171. .stepper-horizontal li:hover {
  10172. background-color: rgba(0, 0, 0, 0.06)
  10173. }
  10174. @media (max-width: 47.9375rem) {
  10175. .stepper-horizontal {
  10176. -webkit-box-orient: vertical;
  10177. -webkit-box-direction: normal;
  10178. -ms-flex-direction: column;
  10179. flex-direction: column
  10180. }
  10181. .stepper-horizontal li {
  10182. -webkit-box-orient: vertical;
  10183. -webkit-box-direction: normal;
  10184. -ms-flex-direction: column;
  10185. flex-direction: column;
  10186. -webkit-box-align: start;
  10187. -ms-flex-align: start;
  10188. align-items: flex-start
  10189. }
  10190. .stepper-horizontal li a .label {
  10191. -webkit-box-orient: vertical;
  10192. -webkit-box-direction: normal;
  10193. -ms-flex-flow: column nowrap;
  10194. flex-flow: column nowrap;
  10195. -webkit-box-ordinal-group: 3;
  10196. -ms-flex-order: 2;
  10197. order: 2;
  10198. margin-top: .2rem
  10199. }
  10200. .stepper-horizontal li:not(:last-child):after {
  10201. position: absolute;
  10202. top: 3.75rem;
  10203. left: 2.19rem;
  10204. width: 1px;
  10205. height: calc(100% - 40px);
  10206. content: ""
  10207. }
  10208. }
  10209. .stepper-horizontal>li:not(:last-of-type) {
  10210. margin-bottom: 0 !important
  10211. }
  10212. .stepper-vertical {
  10213. position: relative;
  10214. display: -webkit-box;
  10215. display: -ms-flexbox;
  10216. display: flex;
  10217. -webkit-box-orient: vertical;
  10218. -webkit-box-direction: normal;
  10219. -ms-flex-direction: column;
  10220. flex-direction: column;
  10221. -webkit-box-pack: justify;
  10222. -ms-flex-pack: justify;
  10223. justify-content: space-between
  10224. }
  10225. .stepper-vertical li {
  10226. position: relative;
  10227. display: -webkit-box;
  10228. display: -ms-flexbox;
  10229. display: flex;
  10230. -webkit-box-flex: 1;
  10231. -ms-flex: 1;
  10232. flex: 1;
  10233. -webkit-box-orient: vertical;
  10234. -webkit-box-direction: normal;
  10235. -ms-flex-direction: column;
  10236. flex-direction: column;
  10237. -webkit-box-align: start;
  10238. -ms-flex-align: start;
  10239. align-items: flex-start
  10240. }
  10241. .stepper-vertical li a {
  10242. position: relative;
  10243. display: -webkit-box;
  10244. display: -ms-flexbox;
  10245. display: flex;
  10246. -ms-flex-item-align: start;
  10247. align-self: flex-start
  10248. }
  10249. .stepper-vertical li a .circle {
  10250. -webkit-box-ordinal-group: 2;
  10251. -ms-flex-order: 1;
  10252. order: 1
  10253. }
  10254. .stepper-vertical li a .label {
  10255. -webkit-box-orient: vertical;
  10256. -webkit-box-direction: normal;
  10257. -ms-flex-flow: column nowrap;
  10258. flex-flow: column nowrap;
  10259. -webkit-box-ordinal-group: 3;
  10260. -ms-flex-order: 2;
  10261. order: 2;
  10262. margin-top: .2rem
  10263. }
  10264. .stepper-vertical li.completed a .label {
  10265. font-weight: 500
  10266. }
  10267. .stepper-vertical li .step-content {
  10268. display: block;
  10269. padding: .94rem;
  10270. margin-top: 0;
  10271. margin-left: 3.13rem
  10272. }
  10273. .stepper-vertical li .step-content p {
  10274. font-size: .88rem
  10275. }
  10276. .stepper-vertical li:not(:last-child):after {
  10277. position: absolute;
  10278. top: 3.44rem;
  10279. left: 2.19rem;
  10280. width: 1px;
  10281. height: calc(100% - 40px);
  10282. content: "";
  10283. background-color: rgba(0, 0, 0, 0.1)
  10284. }
  10285. .fast.spinner-border {
  10286. -webkit-animation: spinner-border 0.4s linear infinite;
  10287. animation: spinner-border 0.4s linear infinite
  10288. }
  10289. .fast.spinner-grow {
  10290. -webkit-animation: spinner-grow 0.4s linear infinite;
  10291. animation: spinner-grow 0.4s linear infinite
  10292. }
  10293. .treeview.w-20 {
  10294. width: 20rem
  10295. }
  10296. .treeview .rotate {
  10297. margin-top: .2rem;
  10298. font-size: .8rem;
  10299. vertical-align: text-top;
  10300. cursor: pointer;
  10301. -webkit-user-select: none;
  10302. -moz-user-select: none;
  10303. -ms-user-select: none;
  10304. user-select: none;
  10305. -webkit-transition: all .1s linear;
  10306. transition: all .1s linear
  10307. }
  10308. .treeview .rotate.down {
  10309. -webkit-transform: rotate(90deg);
  10310. transform: rotate(90deg)
  10311. }
  10312. .treeview .nested {
  10313. display: none
  10314. }
  10315. .treeview .active {
  10316. display: block
  10317. }
  10318. .treeview ul {
  10319. list-style-type: none
  10320. }
  10321. .treeview .ic-w {
  10322. width: 1.3rem
  10323. }
  10324. .treeview-animated.w-20 {
  10325. width: 20rem
  10326. }
  10327. .treeview-animated ul {
  10328. position: relative;
  10329. padding-left: 1em;
  10330. list-style: none
  10331. }
  10332. .treeview-animated .treeview-animated-list li {
  10333. padding: .2em 0 0 .2em
  10334. }
  10335. .treeview-animated .treeview-animated-list .treeview-animated-items .nested::before {
  10336. position: absolute;
  10337. left: 5px;
  10338. display: block;
  10339. width: 5px;
  10340. height: 100%;
  10341. content: "";
  10342. background-color: #808080
  10343. }
  10344. .treeview-animated .treeview-animated-list .treeview-animated-items .closed {
  10345. display: block;
  10346. padding: .2em .2em .2em .4em;
  10347. margin-right: 0;
  10348. border-top-left-radius: .3em;
  10349. border-bottom-left-radius: .3em
  10350. }
  10351. .treeview-animated .treeview-animated-list .treeview-animated-items .closed:hover {
  10352. background-color: #8cb9ff
  10353. }
  10354. .treeview-animated .treeview-animated-list .treeview-animated-items .closed .fa-angle-right {
  10355. font-size: .8rem;
  10356. -webkit-transition: all .1s linear;
  10357. transition: all .1s linear
  10358. }
  10359. .treeview-animated .treeview-animated-list .treeview-animated-items .closed .fa-angle-right.down {
  10360. position: relative;
  10361. color: #f8f9fa;
  10362. -webkit-transform: rotate(90deg);
  10363. transform: rotate(90deg)
  10364. }
  10365. .treeview-animated .treeview-animated-list .treeview-animated-items .open {
  10366. background-color: #32a0ff;
  10367. -webkit-transition: all .1s linear;
  10368. transition: all .1s linear
  10369. }
  10370. .treeview-animated .treeview-animated-list .treeview-animated-items .open:hover {
  10371. color: #f8f9fa;
  10372. background-color: #32a0ff
  10373. }
  10374. .treeview-animated .treeview-animated-list .treeview-animated-items .open span {
  10375. color: #f8f9fa
  10376. }
  10377. .treeview-animated .treeview-animated-list .treeview-animated-element {
  10378. padding: .2em .2em .2em .6em;
  10379. cursor: pointer;
  10380. border-top-left-radius: 4px;
  10381. border-bottom-left-radius: 4px;
  10382. -webkit-transition: all .1s linear;
  10383. transition: all .1s linear
  10384. }
  10385. .treeview-animated .treeview-animated-list .treeview-animated-element:hover {
  10386. background-color: #8cb9ff
  10387. }
  10388. .treeview-animated .treeview-animated-list .treeview-animated-element.opened {
  10389. color: #f8f9fa;
  10390. background-color: #32a0ff
  10391. }
  10392. .treeview-animated .treeview-animated-list .treeview-animated-element.opened:hover {
  10393. color: #f8f9fa;
  10394. background-color: #32a0ff
  10395. }
  10396. .treeview-colorful {
  10397. font-size: 16px;
  10398. font-weight: 400;
  10399. background: rgba(224, 127, 178, 0.2)
  10400. }
  10401. .treeview-colorful.w-20 {
  10402. width: 20rem
  10403. }
  10404. .treeview-colorful hr {
  10405. border-color: #a2127a
  10406. }
  10407. .treeview-colorful h6 {
  10408. font-size: 1.4em;
  10409. font-weight: 500;
  10410. color: #a2127a
  10411. }
  10412. .treeview-colorful ul {
  10413. position: relative;
  10414. padding-left: 0;
  10415. list-style: none
  10416. }
  10417. .treeview-colorful .treeview-colorful-list ul {
  10418. padding-left: 1em;
  10419. margin-top: .1em;
  10420. background: rgba(224, 127, 178, 0.2)
  10421. }
  10422. .treeview-colorful .treeview-colorful-element {
  10423. padding: .2em .2em .2em 1em;
  10424. cursor: pointer;
  10425. border: 2px solid transparent;
  10426. border-right: 0 solid transparent;
  10427. -webkit-transition: all .1s linear;
  10428. transition: all .1s linear
  10429. }
  10430. .treeview-colorful .treeview-colorful-element:hover {
  10431. background-color: #e07fb2
  10432. }
  10433. .treeview-colorful .treeview-colorful-element.opened {
  10434. color: #ffac47;
  10435. background-color: #a2127a;
  10436. border: 2px solid #ffac47;
  10437. border-right: 0 solid transparent
  10438. }
  10439. .treeview-colorful .treeview-colorful-element.opened:hover {
  10440. color: #ffac47;
  10441. background-color: #a2127a
  10442. }
  10443. .treeview-colorful .treeview-colorful-items-header {
  10444. display: block;
  10445. padding: .4em;
  10446. margin-right: 0;
  10447. border-bottom: 2px solid transparent;
  10448. -webkit-transition: all .1s linear;
  10449. transition: all .1s linear
  10450. }
  10451. .treeview-colorful .treeview-colorful-items-header:hover {
  10452. background-color: #e07fb2
  10453. }
  10454. .treeview-colorful .treeview-colorful-items-header.open {
  10455. background-color: #a2127a;
  10456. border-bottom: 2px solid #ffac47;
  10457. -webkit-transition: all .1s linear;
  10458. transition: all .1s linear
  10459. }
  10460. .treeview-colorful .treeview-colorful-items-header.open span {
  10461. color: #ffac47
  10462. }
  10463. .treeview-colorful .treeview-colorful-items-header.open:hover {
  10464. color: #ffac47;
  10465. background-color: #a2127a
  10466. }
  10467. .treeview-colorful .treeview-colorful-items-header.open div:hover {
  10468. background-color: #a2127a
  10469. }
  10470. .treeview-colorful .treeview-colorful-items-header .fa-angle-right {
  10471. font-size: .8rem;
  10472. -webkit-transition: all .2s linear;
  10473. transition: all .2s linear
  10474. }
  10475. .treeview-colorful .treeview-colorful-items-header .fas {
  10476. position: relative;
  10477. color: #ffac47;
  10478. -webkit-transition: all .2s linear;
  10479. transition: all .2s linear;
  10480. -webkit-transform: rotate(90deg);
  10481. transform: rotate(90deg)
  10482. }
  10483. .treeview-colorful .treeview-colorful-items-header .fa-minus-circle {
  10484. position: relative;
  10485. color: #ffac47;
  10486. -webkit-transition: all .2s linear;
  10487. transition: all .2s linear;
  10488. -webkit-transform: rotate(180deg);
  10489. transform: rotate(180deg)
  10490. }