style.min.css 127 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490
  1. h1,
  2. h2,
  3. h3,
  4. h4,
  5. h5,
  6. h6 {
  7. font-weight: 100
  8. }
  9. h1 {
  10. font-size: 30px
  11. }
  12. h2 {
  13. font-size: 24px
  14. }
  15. h3 {
  16. font-size: 16px
  17. }
  18. h4 {
  19. font-size: 14px
  20. }
  21. h5 {
  22. font-size: 12px
  23. }
  24. h6 {
  25. font-size: 10px
  26. }
  27. h3,
  28. h4,
  29. h5 {
  30. margin-top: 5px;
  31. font-weight: 600
  32. }
  33. a:focus {
  34. outline: 0
  35. }
  36. .nav>li>a {
  37. color: #fff;
  38. font-weight: 600;
  39. padding: 14px 20px 14px 25px
  40. }
  41. .nav li>a {
  42. display: block
  43. }
  44. .nav.navbar-right>li>a {
  45. color: #999c9e
  46. }
  47. .nav>li.active>a {
  48. color: #fff
  49. }
  50. .navbar-default .nav>li>a:focus,
  51. .navbar-default .nav>li>a:hover {
  52. background-color: #293846;
  53. color: #fff
  54. }
  55. .nav .open>a,
  56. .nav .open>a:focus,
  57. .nav .open>a:hover {
  58. background: #fff
  59. }
  60. .nav>li>a i {
  61. margin-right: 6px
  62. }
  63. .navbar {
  64. border: 0
  65. }
  66. .navbar-default {
  67. background-color: transparent;
  68. border-color: #2f4050;
  69. position: relative
  70. }
  71. .navbar-top-links li {
  72. display: inline-block
  73. }
  74. .navbar-top-links li:last-child {
  75. margin-right: 30px
  76. }
  77. body.body-small .navbar-top-links li:last-child {
  78. margin-right: 10px
  79. }
  80. .navbar-top-links li a {
  81. padding: 20px 10px;
  82. min-height: 50px
  83. }
  84. .dropdown-menu {
  85. border: medium none;
  86. display: none;
  87. float: left;
  88. font-size: 12px;
  89. left: 0;
  90. list-style: none outside none;
  91. padding: 0;
  92. position: absolute;
  93. text-shadow: none;
  94. top: 100%;
  95. z-index: 1000;
  96. border-radius: 0;
  97. box-shadow: 0 0 3px rgba(86, 96, 117, .3)
  98. }
  99. .dropdown-menu>li>a {
  100. border-radius: 3px;
  101. color: inherit;
  102. line-height: 25px;
  103. margin: 4px;
  104. text-align: left;
  105. font-weight: 400
  106. }
  107. .dropdown-menu>li>a.font-bold {
  108. font-weight: 600
  109. }
  110. .navbar-top-links .dropdown-menu li {
  111. display: block
  112. }
  113. .navbar-top-links .dropdown-menu li:last-child {
  114. margin-right: 0
  115. }
  116. .navbar-top-links .dropdown-menu li a {
  117. padding: 3px 20px;
  118. min-height: 0
  119. }
  120. .navbar-top-links .dropdown-menu li a div {
  121. white-space: normal
  122. }
  123. .navbar-top-links .dropdown-alerts,
  124. .navbar-top-links .dropdown-messages,
  125. .navbar-top-links .dropdown-tasks {
  126. width: 310px;
  127. min-width: 0
  128. }
  129. .navbar-top-links .dropdown-messages {
  130. margin-left: 5px
  131. }
  132. .navbar-top-links .dropdown-tasks {
  133. margin-left: -59px
  134. }
  135. .navbar-top-links .dropdown-alerts {
  136. margin-left: -123px
  137. }
  138. .navbar-top-links .dropdown-user {
  139. right: 0;
  140. left: auto
  141. }
  142. .dropdown-alerts,
  143. .dropdown-messages {
  144. padding: 10px
  145. }
  146. .dropdown-alerts li a,
  147. .dropdown-messages li a {
  148. font-size: 12px
  149. }
  150. .dropdown-alerts li em,
  151. .dropdown-messages li em {
  152. font-size: 10px
  153. }
  154. .nav.navbar-top-links .dropdown-alerts a {
  155. font-size: 12px
  156. }
  157. .nav-header {
  158. padding: 15px 25px;
  159. }
  160. .nav>li.active {
  161. border-left: 4px solid #19aa8d;
  162. /*background: #293846;*/
  163. }
  164. .nav>li.active .nav-label{
  165. color: #fff;
  166. }
  167. .nav.nav-second-level>li.active {
  168. border: none;
  169. background: #293846;
  170. }
  171. .nav.nav-second-level.collapse[style] {
  172. height: auto!important
  173. }
  174. .nav-header a {
  175. color: #DFE4ED
  176. }
  177. .nav-header .text-muted {
  178. color: #8095a8
  179. }
  180. .minimalize-styl-2 {
  181. padding: 4px 12px;
  182. margin: 14px 5px 5px 20px;
  183. font-size: 14px;
  184. float: left
  185. }
  186. .navbar-form-custom {
  187. float: left;
  188. height: 50px;
  189. padding: 0;
  190. width: 200px;
  191. display: inline-table
  192. }
  193. .navbar-form-custom .form-group {
  194. margin-bottom: 0
  195. }
  196. .nav.navbar-top-links a {
  197. font-size: 14px
  198. }
  199. .navbar-form-custom .form-control {
  200. background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  201. border: medium none;
  202. font-size: 14px;
  203. height: 60px;
  204. margin: 0;
  205. z-index: 2000
  206. }
  207. .count-info .label {
  208. line-height: 12px;
  209. padding: 1px 5px;
  210. position: absolute;
  211. right: 6px;
  212. top: 12px
  213. }
  214. .arrow {
  215. float: right;
  216. margin-top: 2px
  217. }
  218. .fa.arrow:before {
  219. content: "\f107";
  220. /*color: #0c93e4;*/
  221. }
  222. .active>a>.fa.arrow:before {
  223. content: "\f106";
  224. /*color: #fff;*/
  225. }
  226. .nav-second-level li,
  227. .nav-third-level li {
  228. border-bottom: none!important
  229. }
  230. .nav-second-level li a {
  231. padding: 15px;
  232. padding-left: 52px;
  233. font-weight: normal;
  234. font-size: 14px;
  235. }
  236. .nav-third-level li a {
  237. padding-left: 62px
  238. }
  239. .nav-second-level li:last-child {
  240. margin-bottom: 10px
  241. }
  242. .mini-navbar .nav li:focus>.nav-second-level,
  243. body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav li:hover>.nav-second-level {
  244. display: block;
  245. border-radius: 0 2px 2px 0;
  246. min-width: 140px;
  247. height: auto
  248. }
  249. body.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
  250. font-size: 12px;
  251. border-radius: 0 2px 2px 0
  252. }
  253. .fixed-nav .slimScrollDiv #side-menu {
  254. padding-bottom: 60px;
  255. position: relative
  256. }
  257. .slimScrollDiv>* {
  258. overflow: hidden
  259. }
  260. .mini-navbar .nav-second-level li a {
  261. padding: 10px 10px 10px 15px
  262. }
  263. .canvas-menu.mini-navbar .nav-second-level {
  264. background: #293846
  265. }
  266. .mini-navbar li.active .nav-second-level {
  267. left: 65px
  268. }
  269. .navbar-default .special_link a {
  270. background: #1ab394;
  271. color: #fff
  272. }
  273. .navbar-default .special_link a:hover {
  274. background: #17987e!important;
  275. color: #fff
  276. }
  277. .navbar-default .special_link a span.label {
  278. background: #fff;
  279. color: #1ab394
  280. }
  281. .navbar-default .landing_link a {
  282. background: #1cc09f;
  283. color: #fff
  284. }
  285. .navbar-default .landing_link a:hover {
  286. background: #1ab394!important;
  287. color: #fff
  288. }
  289. .navbar-default .landing_link a span.label {
  290. background: #fff;
  291. color: #1cc09f
  292. }
  293. .logo-element {
  294. text-align: center;
  295. font-size: 18px;
  296. font-weight: 600;
  297. color: #fff;
  298. display: none;
  299. padding: 18px 0
  300. }
  301. .pace-done #page-wrapper,
  302. .pace-done .footer,
  303. .pace-done .nav-header,
  304. .pace-done .navbar-static-side,
  305. .pace-done li.active {
  306. -webkit-transition: all .5s;
  307. transition: all .5s
  308. }
  309. .navbar-fixed-top {
  310. -webkit-transition-duration: .5s;
  311. transition-duration: .5s;
  312. z-index: 2030
  313. }
  314. .navbar-fixed-top,
  315. .navbar-static-top {
  316. background: #f3f3f4
  317. }
  318. .fixed-nav #wrapper {
  319. padding-top: 60px;
  320. box-sizing: border-box
  321. }
  322. .fixed-nav .minimalize-styl-2 {
  323. margin: 14px 5px 5px 15px
  324. }
  325. .body-small .navbar-fixed-top {
  326. margin-left: 0
  327. }
  328. body.mini-navbar .navbar-static-side {
  329. width: 70px
  330. }
  331. body.mini-navbar .nav-label,
  332. body.mini-navbar .navbar-default .nav li a span,
  333. body.mini-navbar .profile-element {
  334. display: none
  335. }
  336. body.canvas-menu .profile-element {
  337. display: block
  338. }
  339. body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav-second-level {
  340. display: none
  341. }
  342. body.mini-navbar .navbar-default .nav>li>a {
  343. font-size: 16px
  344. }
  345. body.mini-navbar .logo-element {
  346. display: block
  347. }
  348. body.canvas-menu .logo-element {
  349. display: none
  350. }
  351. body.mini-navbar .nav-header {
  352. padding: 0;
  353. /*background-color: #1ab394*/
  354. }
  355. body.canvas-menu .nav-header {
  356. padding: 33px 25px
  357. }
  358. body.mini-navbar #page-wrapper {
  359. margin: 0 0 0 70px
  360. }
  361. body.canvas-menu.mini-navbar #page-wrapper,
  362. body.canvas-menu.mini-navbar .footer {
  363. margin: 0
  364. }
  365. body.canvas-menu .navbar-static-side,
  366. body.fixed-sidebar .navbar-static-side {
  367. position: fixed;
  368. width: 220px;
  369. z-index: 2001;
  370. height: 100%
  371. }
  372. body.fixed-sidebar.mini-navbar .navbar-static-side {
  373. width: 70px
  374. }
  375. body.body-small.fixed-sidebar.mini-navbar #page-wrapper,
  376. body.fixed-sidebar.mini-navbar #page-wrapper {
  377. margin: 0 0 0 70px
  378. }
  379. body.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
  380. width: 70px
  381. }
  382. .fixed-sidebar.mini-navbar .nav li>.nav-second-level {
  383. display: none
  384. }
  385. .fixed-sidebar.mini-navbar .nav li.active {
  386. border-left-width: 0
  387. }
  388. .canvas-menu.mini-navbar .nav li:hover>.nav-second-level,
  389. .fixed-sidebar.mini-navbar .nav li:hover>.nav-second-level {
  390. position: absolute;
  391. left: 70px;
  392. top: 0;
  393. background-color: #2f4050;
  394. padding: 10px 10px 0;
  395. font-size: 12px;
  396. display: block;
  397. min-width: 140px;
  398. border-radius: 2px
  399. }
  400. body.fixed-sidebar.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
  401. font-size: 12px;
  402. border-radius: 3px
  403. }
  404. body.canvas-menu.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
  405. font-size: 13px;
  406. border-radius: 3px
  407. }
  408. .canvas-menu.mini-navbar .nav-second-level li a,
  409. .fixed-sidebar.mini-navbar .nav-second-level li a {
  410. padding: 10px 10px 10px 15px
  411. }
  412. .canvas-menu.mini-navbar .nav-second-level,
  413. .fixed-sidebar.mini-navbar .nav-second-level {
  414. position: relative;
  415. padding: 0;
  416. font-size: 13px
  417. }
  418. .canvas-menu.mini-navbar li.active .nav-second-level,
  419. .fixed-sidebar.mini-navbar li.active .nav-second-level {
  420. left: 0
  421. }
  422. body.canvas-menu nav.navbar-static-side {
  423. z-index: 2001;
  424. background: #2f4050;
  425. height: 100%;
  426. position: fixed;
  427. display: none
  428. }
  429. body.canvas-menu.mini-navbar nav.navbar-static-side {
  430. display: block;
  431. width: 70px
  432. }
  433. .top-navigation #page-wrapper {
  434. margin-left: 0
  435. }
  436. .top-navigation .navbar-nav .dropdown-menu>.active>a {
  437. background: #fff;
  438. color: #1ab394;
  439. font-weight: 700
  440. }
  441. .white-bg .navbar-fixed-top,
  442. .white-bg .navbar-static-top {
  443. background: #fff
  444. }
  445. .top-navigation .navbar {
  446. margin-bottom: 0
  447. }
  448. .top-navigation .nav>li>a {
  449. padding: 15px 20px;
  450. color: #676a6c
  451. }
  452. .top-navigation .nav>li a:focus,
  453. .top-navigation .nav>li a:hover {
  454. background: #fff;
  455. color: #1ab394
  456. }
  457. .top-navigation .nav>li.active {
  458. background: #fff;
  459. border: none
  460. }
  461. .top-navigation .nav>li.active>a {
  462. color: #1ab394
  463. }
  464. .top-navigation .navbar-right {
  465. padding-right: 10px
  466. }
  467. .top-navigation .navbar-nav .dropdown-menu {
  468. box-shadow: none;
  469. border: 1px solid #e7eaec
  470. }
  471. .top-navigation .dropdown-menu>li>a {
  472. margin: 0;
  473. padding: 7px 20px
  474. }
  475. .navbar .dropdown-menu {
  476. margin-top: 0
  477. }
  478. .top-navigation .navbar-brand {
  479. background: #1ab394;
  480. color: #fff;
  481. padding: 15px 25px
  482. }
  483. .top-navigation .navbar-top-links li:last-child {
  484. margin-right: 0
  485. }
  486. .body-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper,
  487. .canvas-menu #page-wrapper,
  488. .mini-navbar .top-navigation #page-wrapper,
  489. .top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper,
  490. .top-navigation.mini-navbar #page-wrapper {
  491. margin: 0
  492. }
  493. .fixed-nav #wrapper.top-navigation,
  494. .top-navigation.fixed-nav #wrapper {
  495. margin-top: 50px
  496. }
  497. .top-navigation .footer.fixed {
  498. margin-left: 0!important
  499. }
  500. .top-navigation .wrapper.wrapper-content {
  501. padding: 40px
  502. }
  503. .body-small .top-navigation .wrapper.wrapper-content,
  504. .top-navigation.body-small .wrapper.wrapper-content {
  505. padding: 40px 0
  506. }
  507. .navbar-toggle {
  508. color: #fff;
  509. padding: 6px 12px;
  510. font-size: 14px
  511. }
  512. .top-navigation .navbar-nav .open .dropdown-menu .dropdown-header,
  513. .top-navigation .navbar-nav .open .dropdown-menu>li>a {
  514. padding: 10px 15px 10px 20px
  515. }
  516. @media (max-width:768px) {
  517. .top-navigation .navbar-header {
  518. display: block;
  519. float: none
  520. }
  521. }
  522. .menu-visible-lg,
  523. .menu-visible-md {
  524. display: none!important
  525. }
  526. @media (min-width:1200px) {
  527. .menu-visible-lg {
  528. display: block!important
  529. }
  530. }
  531. @media (min-width:992px) {
  532. .menu-visible-md {
  533. display: block!important
  534. }
  535. }
  536. @media (max-width:767px) {
  537. .menu-visible-lg,
  538. .menu-visible-md {
  539. display: block!important
  540. }
  541. }
  542. .btn {
  543. border-radius: 3px
  544. }
  545. .float-e-margins .btn {
  546. margin-bottom: 5px
  547. }
  548. .btn-w-m {
  549. min-width: 120px
  550. }
  551. .btn-primary.btn-outline {
  552. color: #1ab394
  553. }
  554. .btn-success.btn-outline {
  555. color: #1c84c6
  556. }
  557. .btn-info.btn-outline {
  558. color: #23c6c8
  559. }
  560. .btn-warning.btn-outline {
  561. color: #f8ac59
  562. }
  563. .btn-danger.btn-outline {
  564. color: #ed5565
  565. }
  566. .btn-danger.btn-outline:hover,
  567. .btn-info.btn-outline:hover,
  568. .btn-primary.btn-outline:hover,
  569. .btn-success.btn-outline:hover,
  570. .btn-warning.btn-outline:hover {
  571. color: #fff
  572. }
  573. .btn-primary {
  574. background-color: #1ab394;
  575. border-color: #1ab394;
  576. color: #FFF
  577. }
  578. .btn-primary.active,
  579. .btn-primary:active,
  580. .btn-primary:focus,
  581. .btn-primary:hover,
  582. .open .dropdown-toggle.btn-primary {
  583. background-color: #18a689;
  584. border-color: #18a689;
  585. color: #FFF
  586. }
  587. .btn-primary.active,
  588. .btn-primary:active,
  589. .open .dropdown-toggle.btn-primary {
  590. background-image: none
  591. }
  592. .btn-primary.active[disabled],
  593. .btn-primary.disabled,
  594. .btn-primary.disabled.active,
  595. .btn-primary.disabled:active,
  596. .btn-primary.disabled:focus,
  597. .btn-primary.disabled:hover,
  598. .btn-primary[disabled],
  599. .btn-primary[disabled]:active,
  600. .btn-primary[disabled]:focus,
  601. .btn-primary[disabled]:hover,
  602. fieldset[disabled] .btn-primary,
  603. fieldset[disabled] .btn-primary.active,
  604. fieldset[disabled] .btn-primary:active,
  605. fieldset[disabled] .btn-primary:focus,
  606. fieldset[disabled] .btn-primary:hover {
  607. background-color: #1dc5a3;
  608. border-color: #1dc5a3
  609. }
  610. .btn-success {
  611. background-color: #1c84c6;
  612. border-color: #1c84c6;
  613. color: #FFF
  614. }
  615. .btn-success.active,
  616. .btn-success:active,
  617. .btn-success:focus,
  618. .btn-success:hover,
  619. .open .dropdown-toggle.btn-success {
  620. background-color: #1a7bb9;
  621. border-color: #1a7bb9;
  622. color: #FFF
  623. }
  624. .btn-success.active,
  625. .btn-success:active,
  626. .open .dropdown-toggle.btn-success {
  627. background-image: none
  628. }
  629. .btn-success.active[disabled],
  630. .btn-success.disabled,
  631. .btn-success.disabled.active,
  632. .btn-success.disabled:active,
  633. .btn-success.disabled:focus,
  634. .btn-success.disabled:hover,
  635. .btn-success[disabled],
  636. .btn-success[disabled]:active,
  637. .btn-success[disabled]:focus,
  638. .btn-success[disabled]:hover,
  639. fieldset[disabled] .btn-success,
  640. fieldset[disabled] .btn-success.active,
  641. fieldset[disabled] .btn-success:active,
  642. fieldset[disabled] .btn-success:focus,
  643. fieldset[disabled] .btn-success:hover {
  644. background-color: #1f90d8;
  645. border-color: #1f90d8
  646. }
  647. .btn-info {
  648. background-color: #23c6c8;
  649. border-color: #23c6c8;
  650. color: #FFF
  651. }
  652. .btn-info.active,
  653. .btn-info:active,
  654. .btn-info:focus,
  655. .btn-info:hover,
  656. .open .dropdown-toggle.btn-info {
  657. background-color: #21b9bb;
  658. border-color: #21b9bb;
  659. color: #FFF
  660. }
  661. .btn-info.active,
  662. .btn-info:active,
  663. .open .dropdown-toggle.btn-info {
  664. background-image: none
  665. }
  666. .btn-info.active[disabled],
  667. .btn-info.disabled,
  668. .btn-info.disabled.active,
  669. .btn-info.disabled:active,
  670. .btn-info.disabled:focus,
  671. .btn-info.disabled:hover,
  672. .btn-info[disabled],
  673. .btn-info[disabled]:active,
  674. .btn-info[disabled]:focus,
  675. .btn-info[disabled]:hover,
  676. fieldset[disabled] .btn-info,
  677. fieldset[disabled] .btn-info.active,
  678. fieldset[disabled] .btn-info:active,
  679. fieldset[disabled] .btn-info:focus,
  680. fieldset[disabled] .btn-info:hover {
  681. background-color: #26d7d9;
  682. border-color: #26d7d9
  683. }
  684. .btn-default {
  685. background-color: #c2c2c2;
  686. border-color: #c2c2c2;
  687. color: #FFF
  688. }
  689. .btn-default.active,
  690. .btn-default:active,
  691. .btn-default:focus,
  692. .btn-default:hover,
  693. .open .dropdown-toggle.btn-default {
  694. background-color: #bababa;
  695. border-color: #bababa;
  696. color: #FFF
  697. }
  698. .btn-default.active,
  699. .btn-default:active,
  700. .open .dropdown-toggle.btn-default {
  701. background-image: none
  702. }
  703. .btn-default.active[disabled],
  704. .btn-default.disabled,
  705. .btn-default.disabled.active,
  706. .btn-default.disabled:active,
  707. .btn-default.disabled:focus,
  708. .btn-default.disabled:hover,
  709. .btn-default[disabled],
  710. .btn-default[disabled]:active,
  711. .btn-default[disabled]:focus,
  712. .btn-default[disabled]:hover,
  713. fieldset[disabled] .btn-default,
  714. fieldset[disabled] .btn-default.active,
  715. fieldset[disabled] .btn-default:active,
  716. fieldset[disabled] .btn-default:focus,
  717. fieldset[disabled] .btn-default:hover {
  718. background-color: #ccc;
  719. border-color: #ccc
  720. }
  721. .btn-warning {
  722. background-color: #f8ac59;
  723. border-color: #f8ac59;
  724. color: #FFF
  725. }
  726. .btn-warning.active,
  727. .btn-warning:active,
  728. .btn-warning:focus,
  729. .btn-warning:hover,
  730. .open .dropdown-toggle.btn-warning {
  731. background-color: #f7a54a;
  732. border-color: #f7a54a;
  733. color: #FFF
  734. }
  735. .btn-warning.active,
  736. .btn-warning:active,
  737. .open .dropdown-toggle.btn-warning {
  738. background-image: none
  739. }
  740. .btn-warning.active[disabled],
  741. .btn-warning.disabled,
  742. .btn-warning.disabled.active,
  743. .btn-warning.disabled:active,
  744. .btn-warning.disabled:focus,
  745. .btn-warning.disabled:hover,
  746. .btn-warning[disabled],
  747. .btn-warning[disabled]:active,
  748. .btn-warning[disabled]:focus,
  749. .btn-warning[disabled]:hover,
  750. fieldset[disabled] .btn-warning,
  751. fieldset[disabled] .btn-warning.active,
  752. fieldset[disabled] .btn-warning:active,
  753. fieldset[disabled] .btn-warning:focus,
  754. fieldset[disabled] .btn-warning:hover {
  755. background-color: #f9b66d;
  756. border-color: #f9b66d
  757. }
  758. .btn-danger {
  759. background-color: #ed5565;
  760. border-color: #ed5565;
  761. color: #FFF
  762. }
  763. .btn-danger.active,
  764. .btn-danger:active,
  765. .btn-danger:focus,
  766. .btn-danger:hover,
  767. .open .dropdown-toggle.btn-danger {
  768. background-color: #ec4758;
  769. border-color: #ec4758;
  770. color: #FFF
  771. }
  772. .btn-danger.active,
  773. .btn-danger:active,
  774. .open .dropdown-toggle.btn-danger {
  775. background-image: none
  776. }
  777. .btn-danger.active[disabled],
  778. .btn-danger.disabled,
  779. .btn-danger.disabled.active,
  780. .btn-danger.disabled:active,
  781. .btn-danger.disabled:focus,
  782. .btn-danger.disabled:hover,
  783. .btn-danger[disabled],
  784. .btn-danger[disabled]:active,
  785. .btn-danger[disabled]:focus,
  786. .btn-danger[disabled]:hover,
  787. fieldset[disabled] .btn-danger,
  788. fieldset[disabled] .btn-danger.active,
  789. fieldset[disabled] .btn-danger:active,
  790. fieldset[disabled] .btn-danger:focus,
  791. fieldset[disabled] .btn-danger:hover {
  792. background-color: #ef6776;
  793. border-color: #ef6776
  794. }
  795. .btn-link {
  796. color: inherit
  797. }
  798. .btn-link.active,
  799. .btn-link:active,
  800. .btn-link:focus,
  801. .btn-link:hover,
  802. .open .dropdown-toggle.btn-link {
  803. color: #1ab394;
  804. text-decoration: none
  805. }
  806. .btn-link.active,
  807. .btn-link:active,
  808. .open .dropdown-toggle.btn-link {
  809. background-image: none
  810. }
  811. .btn-link.active[disabled],
  812. .btn-link.disabled,
  813. .btn-link.disabled.active,
  814. .btn-link.disabled:active,
  815. .btn-link.disabled:focus,
  816. .btn-link.disabled:hover,
  817. .btn-link[disabled],
  818. .btn-link[disabled]:active,
  819. .btn-link[disabled]:focus,
  820. .btn-link[disabled]:hover,
  821. fieldset[disabled] .btn-link,
  822. fieldset[disabled] .btn-link.active,
  823. fieldset[disabled] .btn-link:active,
  824. fieldset[disabled] .btn-link:focus,
  825. fieldset[disabled] .btn-link:hover {
  826. color: #cacaca
  827. }
  828. .btn-white {
  829. color: inherit;
  830. background: #fff;
  831. border: 1px solid #e7eaec
  832. }
  833. .btn-white.active,
  834. .btn-white:active,
  835. .btn-white:focus,
  836. .btn-white:hover,
  837. .open .dropdown-toggle.btn-white {
  838. color: inherit;
  839. border: 1px solid #d2d2d2
  840. }
  841. .btn-white.active,
  842. .btn-white:active {
  843. box-shadow: 0 2px 5px rgba(0, 0, 0, .15)inset
  844. }
  845. .btn-white.active,
  846. .btn-white:active,
  847. .open .dropdown-toggle.btn-white {
  848. background-image: none
  849. }
  850. .btn-white.active[disabled],
  851. .btn-white.disabled,
  852. .btn-white.disabled.active,
  853. .btn-white.disabled:active,
  854. .btn-white.disabled:focus,
  855. .btn-white.disabled:hover,
  856. .btn-white[disabled],
  857. .btn-white[disabled]:active,
  858. .btn-white[disabled]:focus,
  859. .btn-white[disabled]:hover,
  860. fieldset[disabled] .btn-white,
  861. fieldset[disabled] .btn-white.active,
  862. fieldset[disabled] .btn-white:active,
  863. fieldset[disabled] .btn-white:focus,
  864. fieldset[disabled] .btn-white:hover {
  865. color: #cacaca
  866. }
  867. .form-control,
  868. .form-control:focus,
  869. .has-error .form-control:focus,
  870. .has-success .form-control:focus,
  871. .has-warning .form-control:focus,
  872. .navbar-collapse,
  873. .navbar-form,
  874. .navbar-form-custom .form-control:focus,
  875. .navbar-form-custom .form-control:hover,
  876. .open .btn.dropdown-toggle,
  877. .panel,
  878. .popover,
  879. .progress,
  880. .progress-bar {
  881. box-shadow: none
  882. }
  883. .btn-outline {
  884. color: inherit;
  885. background-color: transparent;
  886. -webkit-transition: all .5s;
  887. transition: all .5s
  888. }
  889. .btn-rounded {
  890. border-radius: 50px
  891. }
  892. .btn-large-dim {
  893. width: 90px;
  894. height: 90px;
  895. font-size: 42px
  896. }
  897. button.dim {
  898. display: inline-block;
  899. color: #fff;
  900. text-decoration: none;
  901. text-transform: uppercase;
  902. text-align: center;
  903. padding-top: 6px;
  904. margin-right: 10px;
  905. position: relative;
  906. cursor: pointer;
  907. border-radius: 5px;
  908. font-weight: 600;
  909. margin-bottom: 20px!important
  910. }
  911. button.dim:active {
  912. top: 3px
  913. }
  914. button.btn-primary.dim {
  915. box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999
  916. }
  917. button.btn-primary.dim:active {
  918. box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999
  919. }
  920. button.btn-default.dim {
  921. box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999
  922. }
  923. button.btn-default.dim:active {
  924. box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999
  925. }
  926. button.btn-warning.dim {
  927. box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999
  928. }
  929. button.btn-warning.dim:active {
  930. box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999
  931. }
  932. button.btn-info.dim {
  933. box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999
  934. }
  935. button.btn-info.dim:active {
  936. box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999
  937. }
  938. button.btn-success.dim {
  939. box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999
  940. }
  941. button.btn-success.dim:active {
  942. box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999
  943. }
  944. button.btn-danger.dim {
  945. box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999
  946. }
  947. button.btn-danger.dim:active {
  948. box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999
  949. }
  950. button.dim:before {
  951. font-size: 50px;
  952. line-height: 1em;
  953. font-weight: 400;
  954. color: #fff;
  955. display: block;
  956. padding-top: 10px
  957. }
  958. button.dim:active:before {
  959. top: 7px;
  960. font-size: 50px
  961. }
  962. .label {
  963. background-color: #d1dade;
  964. color: #5e5e5e;
  965. font-size: 10px;
  966. font-weight: 600;
  967. padding: 3px 8px;
  968. text-shadow: none
  969. }
  970. .badge {
  971. background-color: #d1dade;
  972. color: #5e5e5e;
  973. font-size: 11px;
  974. font-weight: 600;
  975. padding-bottom: 4px;
  976. padding-left: 6px;
  977. padding-right: 6px;
  978. text-shadow: none
  979. }
  980. .badge-primary,
  981. .label-primary {
  982. background-color: #1ab394;
  983. color: #FFF
  984. }
  985. .badge-success,
  986. .label-success {
  987. background-color: #1c84c6;
  988. color: #FFF
  989. }
  990. .badge-warning,
  991. .label-warning {
  992. background-color: #f8ac59;
  993. color: #FFF
  994. }
  995. .badge-warning-light,
  996. .label-warning-light {
  997. background-color: #f8ac59;
  998. color: #fff
  999. }
  1000. .badge-danger,
  1001. .label-danger {
  1002. background-color: #ed5565;
  1003. color: #FFF
  1004. }
  1005. .badge-info,
  1006. .label-info {
  1007. background-color: #23c6c8;
  1008. color: #FFF
  1009. }
  1010. .badge-inverse,
  1011. .label-inverse {
  1012. background-color: #262626;
  1013. color: #FFF
  1014. }
  1015. .badge-white,
  1016. .label-white {
  1017. background-color: #FFF;
  1018. color: #5E5E5E
  1019. }
  1020. .badge-disable,
  1021. .label-white {
  1022. background-color: #2A2E36;
  1023. color: #8B91A0
  1024. }
  1025. .chosen-container-single .chosen-single {
  1026. background: #fff;
  1027. box-shadow: none;
  1028. -moz-box-sizing: border-box;
  1029. background-color: #FFF;
  1030. border: 1px solid #CBD5DD;
  1031. border-radius: 2px;
  1032. cursor: text;
  1033. height: auto!important;
  1034. margin: 0;
  1035. min-height: 30px;
  1036. overflow: hidden;
  1037. padding: 4px 12px;
  1038. position: relative;
  1039. width: 100%
  1040. }
  1041. .chosen-container-multi .chosen-choices li.search-choice {
  1042. background: #f1f1f1;
  1043. border: 1px solid #ededed;
  1044. border-radius: 2px;
  1045. box-shadow: none;
  1046. color: #333;
  1047. cursor: default;
  1048. line-height: 13px;
  1049. margin: 3px 0 3px 5px;
  1050. padding: 3px 20px 3px 5px;
  1051. position: relative
  1052. }
  1053. .pagination>.active>a,
  1054. .pagination>.active>a:focus,
  1055. .pagination>.active>a:hover,
  1056. .pagination>.active>span,
  1057. .pagination>.active>span:focus,
  1058. .pagination>.active>span:hover {
  1059. background-color: #f4f4f4;
  1060. border-color: #DDD;
  1061. color: inherit;
  1062. cursor: default;
  1063. z-index: 2
  1064. }
  1065. .pagination>li>a,
  1066. .pagination>li>span {
  1067. background-color: #FFF;
  1068. border: 1px solid #DDD;
  1069. color: inherit;
  1070. float: left;
  1071. line-height: 1.42857;
  1072. margin-left: -1px;
  1073. padding: 4px 10px;
  1074. position: relative;
  1075. text-decoration: none
  1076. }
  1077. .tooltip-inner {
  1078. background-color: #2F4050
  1079. }
  1080. .tooltip.top .tooltip-arrow {
  1081. border-top-color: #2F4050
  1082. }
  1083. .tooltip.right .tooltip-arrow {
  1084. border-right-color: #2F4050
  1085. }
  1086. .tooltip.bottom .tooltip-arrow {
  1087. border-bottom-color: #2F4050
  1088. }
  1089. .tooltip.left .tooltip-arrow {
  1090. border-left-color: #2F4050
  1091. }
  1092. .easypiechart {
  1093. position: relative;
  1094. text-align: center
  1095. }
  1096. .easypiechart .h2 {
  1097. margin-left: 10px;
  1098. margin-top: 10px;
  1099. display: inline-block
  1100. }
  1101. .easypiechart canvas {
  1102. top: 0;
  1103. left: 0
  1104. }
  1105. .easypiechart .easypie-text {
  1106. line-height: 1;
  1107. position: absolute;
  1108. top: 33px;
  1109. width: 100%;
  1110. z-index: 1
  1111. }
  1112. .easypiechart img {
  1113. margin-top: -4px
  1114. }
  1115. .jqstooltip {
  1116. box-sizing: content-box
  1117. }
  1118. .fc-state-default {
  1119. background-color: #fff;
  1120. background-image: none;
  1121. background-repeat: repeat-x;
  1122. box-shadow: none;
  1123. color: #333;
  1124. text-shadow: none;
  1125. border: 1px solid
  1126. }
  1127. .fc-button {
  1128. color: inherit;
  1129. border: 1px solid #e7eaec;
  1130. cursor: pointer;
  1131. display: inline-block;
  1132. height: 1.9em;
  1133. line-height: 1.9em;
  1134. overflow: hidden;
  1135. padding: 0 .6em;
  1136. position: relative;
  1137. white-space: nowrap
  1138. }
  1139. .fc-state-active {
  1140. background-color: #1ab394;
  1141. border-color: #1ab394;
  1142. color: #fff
  1143. }
  1144. .fc-header-title h2 {
  1145. font-size: 16px;
  1146. font-weight: 600;
  1147. color: inherit
  1148. }
  1149. .fc-content .fc-widget-content,
  1150. .fc-content .fc-widget-header {
  1151. border-color: #e7eaec;
  1152. font-weight: 400
  1153. }
  1154. .fc-border-separate tbody {
  1155. background-color: #F8F8F8
  1156. }
  1157. .fc-state-highlight {
  1158. background: none repeat scroll 0 0 #FCF8E3
  1159. }
  1160. .external-event {
  1161. padding: 5px 10px;
  1162. border-radius: 2px;
  1163. cursor: pointer;
  1164. margin-bottom: 5px
  1165. }
  1166. .fc-ltr .fc-event-hori.fc-event-end,
  1167. .fc-rtl .fc-event-hori.fc-event-start {
  1168. border-radius: 2px
  1169. }
  1170. .fc-agenda .fc-event-time,
  1171. .fc-event,
  1172. .fc-event a {
  1173. padding: 4px 6px;
  1174. background-color: #1ab394;
  1175. border-color: #1ab394
  1176. }
  1177. .fc-event-time,
  1178. .fc-event-title {
  1179. color: #717171;
  1180. padding: 0 1px
  1181. }
  1182. .ui-calendar .fc-event-time,
  1183. .ui-calendar .fc-event-title {
  1184. color: #fff
  1185. }
  1186. .chat-activity-list .chat-element {
  1187. border-bottom: 1px solid #e7eaec
  1188. }
  1189. .chat-element:first-child {
  1190. margin-top: 0
  1191. }
  1192. .chat-element {
  1193. padding-bottom: 15px
  1194. }
  1195. .chat-element,
  1196. .chat-element .media {
  1197. margin-top: 15px
  1198. }
  1199. .chat-element,
  1200. .media-body {
  1201. overflow: hidden
  1202. }
  1203. .media-body {
  1204. display: block;
  1205. width: auto
  1206. }
  1207. .chat-element>.pull-left {
  1208. margin-right: 10px
  1209. }
  1210. .chat-element img.img-circle,
  1211. .dropdown-messages-box img.img-circle {
  1212. width: 38px;
  1213. height: 38px
  1214. }
  1215. .chat-element .well {
  1216. border: 1px solid #e7eaec;
  1217. box-shadow: none;
  1218. margin-top: 10px;
  1219. margin-bottom: 5px;
  1220. padding: 10px 20px;
  1221. font-size: 11px;
  1222. line-height: 16px
  1223. }
  1224. .chat-element .actions {
  1225. margin-top: 10px
  1226. }
  1227. .chat-element .photos {
  1228. margin: 10px 0
  1229. }
  1230. .right.chat-element>.pull-right {
  1231. margin-left: 10px
  1232. }
  1233. .chat-photo {
  1234. max-height: 180px;
  1235. border-radius: 4px;
  1236. overflow: hidden;
  1237. margin-right: 10px;
  1238. margin-bottom: 10px
  1239. }
  1240. .chat {
  1241. margin: 0;
  1242. padding: 0;
  1243. list-style: none
  1244. }
  1245. .chat li {
  1246. margin-bottom: 10px;
  1247. padding-bottom: 5px;
  1248. border-bottom: 1px dotted #B3A9A9
  1249. }
  1250. .chat li.left .chat-body {
  1251. margin-left: 60px
  1252. }
  1253. .chat li.right .chat-body {
  1254. margin-right: 60px
  1255. }
  1256. .chat li .chat-body p {
  1257. margin: 0;
  1258. color: #777
  1259. }
  1260. .chat .glyphicon,
  1261. .panel .slidedown .glyphicon {
  1262. margin-right: 5px
  1263. }
  1264. .chat-panel .panel-body {
  1265. height: 350px;
  1266. overflow-y: scroll
  1267. }
  1268. a.list-group-item.active,
  1269. a.list-group-item.active:focus,
  1270. a.list-group-item.active:hover {
  1271. background-color: #1ab394;
  1272. border-color: #1ab394;
  1273. color: #FFF;
  1274. z-index: 2
  1275. }
  1276. .list-group-item-heading {
  1277. margin-top: 10px
  1278. }
  1279. .list-group-item-text {
  1280. margin: 0 0 10px;
  1281. color: inherit;
  1282. font-size: 12px;
  1283. line-height: inherit
  1284. }
  1285. .no-padding .list-group-item {
  1286. border-left: none;
  1287. border-right: none;
  1288. border-bottom: none
  1289. }
  1290. .no-padding .list-group-item:first-child {
  1291. border-left: none;
  1292. border-right: none;
  1293. border-bottom: none;
  1294. border-top: none
  1295. }
  1296. .no-padding .list-group {
  1297. margin-bottom: 0
  1298. }
  1299. .list-group-item {
  1300. background-color: inherit;
  1301. border: 1px solid #e7eaec;
  1302. display: block;
  1303. margin-bottom: -1px;
  1304. padding: 10px 15px;
  1305. position: relative
  1306. }
  1307. .elements-list .list-group-item {
  1308. border-left: none;
  1309. border-right: none;
  1310. padding: 15px 25px
  1311. }
  1312. .elements-list .list-group-item:first-child {
  1313. border-left: none;
  1314. border-right: none;
  1315. border-top: none!important
  1316. }
  1317. .elements-list .list-group {
  1318. margin-bottom: 0
  1319. }
  1320. .elements-list a {
  1321. color: inherit
  1322. }
  1323. .elements-list .list-group-item.active,
  1324. .elements-list .list-group-item:hover {
  1325. background: #f3f3f4;
  1326. color: inherit;
  1327. border-color: #e7eaec;
  1328. border-radius: 0
  1329. }
  1330. .elements-list li.active {
  1331. -webkit-transition: none;
  1332. transition: none
  1333. }
  1334. .element-detail-box {
  1335. padding: 25px
  1336. }
  1337. .flot-chart {
  1338. display: block;
  1339. height: 200px
  1340. }
  1341. .widget .flot-chart.dashboard-chart {
  1342. display: block;
  1343. height: 120px;
  1344. margin-top: 40px
  1345. }
  1346. .flot-chart.dashboard-chart {
  1347. display: block;
  1348. height: 180px;
  1349. margin-top: 40px
  1350. }
  1351. .flot-chart-content {
  1352. width: 100%;
  1353. height: 100%
  1354. }
  1355. .flot-chart-pie-content {
  1356. width: 200px;
  1357. height: 200px;
  1358. margin: auto
  1359. }
  1360. .jqstooltip {
  1361. position: absolute;
  1362. display: block;
  1363. left: 0;
  1364. top: 0;
  1365. visibility: hidden;
  1366. background: #2b303a;
  1367. background-color: rgba(43, 48, 58, .8);
  1368. color: #fff;
  1369. text-align: left;
  1370. white-space: nowrap;
  1371. z-index: 10000;
  1372. padding: 5px;
  1373. min-height: 22px;
  1374. border-radius: 3px
  1375. }
  1376. .jqsfield {
  1377. color: #fff;
  1378. text-align: left
  1379. }
  1380. .h-200 {
  1381. min-height: 200px
  1382. }
  1383. .legendLabel {
  1384. padding-left: 5px
  1385. }
  1386. .stat-list li:first-child {
  1387. margin-top: 0
  1388. }
  1389. .stat-list {
  1390. list-style: none;
  1391. padding: 0;
  1392. margin: 0
  1393. }
  1394. .stat-percent {
  1395. float: right
  1396. }
  1397. .stat-list li {
  1398. margin-top: 15px;
  1399. position: relative
  1400. }
  1401. table.dataTable thead .sorting,
  1402. table.dataTable thead .sorting_asc:after,
  1403. table.dataTable thead .sorting_asc_disabled,
  1404. table.dataTable thead .sorting_desc,
  1405. table.dataTable thead .sorting_desc_disabled {
  1406. background: 0 0
  1407. }
  1408. table.dataTable thead .sorting_asc:after {
  1409. float: right;
  1410. font-family: fontawesome
  1411. }
  1412. table.dataTable thead .sorting_desc:after {
  1413. content: "\f0dd";
  1414. float: right;
  1415. font-family: fontawesome
  1416. }
  1417. table.dataTable thead .sorting:after {
  1418. content: "\f0dc";
  1419. float: right;
  1420. font-family: fontawesome;
  1421. color: rgba(50, 50, 50, .5)
  1422. }
  1423. .dataTables_wrapper {
  1424. padding-bottom: 30px
  1425. }
  1426. .img-circle {
  1427. border-radius: 50%
  1428. }
  1429. .btn-circle {
  1430. width: 30px;
  1431. height: 30px;
  1432. padding: 6px 0;
  1433. border-radius: 15px;
  1434. text-align: center;
  1435. font-size: 12px;
  1436. line-height: 1.428571429
  1437. }
  1438. .btn-circle.btn-lg {
  1439. width: 50px;
  1440. height: 50px;
  1441. padding: 10px 16px;
  1442. border-radius: 25px;
  1443. font-size: 18px;
  1444. line-height: 1.33
  1445. }
  1446. .btn-circle.btn-xl {
  1447. width: 70px;
  1448. height: 70px;
  1449. padding: 10px 16px;
  1450. border-radius: 35px;
  1451. font-size: 24px;
  1452. line-height: 1.33
  1453. }
  1454. .show-grid [class^=col-] {
  1455. padding-top: 10px;
  1456. padding-bottom: 10px;
  1457. border: 1px solid #ddd;
  1458. background-color: #eee!important
  1459. }
  1460. .show-grid {
  1461. margin: 15px 0
  1462. }
  1463. .css-animation-box h1 {
  1464. font-size: 44px
  1465. }
  1466. .animation-efect-links a {
  1467. padding: 4px 6px;
  1468. font-size: 12px
  1469. }
  1470. #animation_box {
  1471. background-color: #f9f8f8;
  1472. border-radius: 16px;
  1473. width: 80%;
  1474. margin: 0 auto;
  1475. padding-top: 80px
  1476. }
  1477. .animation-text-box {
  1478. position: absolute;
  1479. margin-top: 40px;
  1480. left: 50%;
  1481. margin-left: -100px;
  1482. width: 200px
  1483. }
  1484. .animation-text-info {
  1485. position: absolute;
  1486. margin-top: -60px;
  1487. left: 50%;
  1488. margin-left: -100px;
  1489. width: 200px;
  1490. font-size: 10px
  1491. }
  1492. .animation-text-box h2 {
  1493. font-size: 54px;
  1494. font-weight: 600;
  1495. margin-bottom: 5px
  1496. }
  1497. .animation-text-box p {
  1498. font-size: 12px;
  1499. text-transform: uppercase
  1500. }
  1501. .pace {
  1502. -webkit-pointer-events: none;
  1503. pointer-events: none;
  1504. -webkit-user-select: none;
  1505. -moz-user-select: none;
  1506. -ms-user-select: none;
  1507. user-select: none
  1508. }
  1509. .pace .pace-progress {
  1510. background: #1ab394;
  1511. position: fixed;
  1512. z-index: 2000;
  1513. top: 0;
  1514. width: 100%;
  1515. height: 2px
  1516. }
  1517. .pace-inactive {
  1518. display: none
  1519. }
  1520. .widget {
  1521. border-radius: 5px;
  1522. padding: 15px 20px;
  1523. margin-bottom: 10px;
  1524. margin-top: 10px
  1525. }
  1526. .widget.style1 h2 {
  1527. font-size: 30px
  1528. }
  1529. .widget h2,
  1530. .widget h3 {
  1531. margin-top: 5px;
  1532. margin-bottom: 0
  1533. }
  1534. .widget-text-box {
  1535. padding: 20px;
  1536. border: 1px solid #e7eaec;
  1537. background: #fff
  1538. }
  1539. .widget-head-color-box {
  1540. border-radius: 5px 5px 0 0;
  1541. margin-top: 10px
  1542. }
  1543. .widget .flot-chart {
  1544. height: 100px
  1545. }
  1546. .vertical-align div {
  1547. display: inline-block;
  1548. vertical-align: middle
  1549. }
  1550. .vertical-align h2,
  1551. .vertical-align h3 {
  1552. margin: 0
  1553. }
  1554. .todo-list {
  1555. list-style: none outside none;
  1556. margin: 0;
  1557. padding: 0;
  1558. font-size: 14px
  1559. }
  1560. .todo-list.small-list {
  1561. font-size: 12px
  1562. }
  1563. .todo-list.small-list>li {
  1564. background: #f3f3f4;
  1565. border-left: none;
  1566. border-right: none;
  1567. border-radius: 4px;
  1568. color: inherit;
  1569. margin-bottom: 2px;
  1570. padding: 6px 6px 6px 12px
  1571. }
  1572. .todo-list.small-list .btn-group-xs>.btn,
  1573. .todo-list.small-list .btn-xs {
  1574. border-radius: 5px;
  1575. font-size: 10px;
  1576. line-height: 1.5;
  1577. padding: 1px 2px 1px 5px
  1578. }
  1579. .todo-list>li {
  1580. background: #f3f3f4;
  1581. border-left: 6px solid #e7eaec;
  1582. border-right: 6px solid #e7eaec;
  1583. border-radius: 4px;
  1584. color: inherit;
  1585. margin-bottom: 2px;
  1586. padding: 10px
  1587. }
  1588. .todo-list .handle {
  1589. cursor: move;
  1590. display: inline-block;
  1591. font-size: 16px;
  1592. margin: 0 5px
  1593. }
  1594. .todo-list>li .label {
  1595. font-size: 9px;
  1596. margin-left: 10px
  1597. }
  1598. .check-link {
  1599. font-size: 16px
  1600. }
  1601. .todo-completed {
  1602. text-decoration: line-through
  1603. }
  1604. .geo-statistic h1 {
  1605. font-size: 36px;
  1606. margin-bottom: 0
  1607. }
  1608. .glyphicon.fa {
  1609. font-family: FontAwesome
  1610. }
  1611. .inline {
  1612. display: inline-block!important
  1613. }
  1614. .input-s-sm {
  1615. width: 120px
  1616. }
  1617. .input-s {
  1618. width: 200px
  1619. }
  1620. .input-s-lg {
  1621. width: 250px
  1622. }
  1623. .i-checks {
  1624. padding-left: 0
  1625. }
  1626. .form-control,
  1627. .single-line {
  1628. background-color: #FFF;
  1629. background-image: none;
  1630. border: 1px solid #e5e6e7;
  1631. border-radius: 1px;
  1632. color: inherit;
  1633. display: block;
  1634. padding: 6px 12px;
  1635. -webkit-transition: border-color .15s ease-in-out 0s, box-shadow .15s ease-in-out 0s;
  1636. transition: border-color .15s ease-in-out 0s, box-shadow .15s ease-in-out 0s;
  1637. width: 100%;
  1638. font-size: 14px
  1639. }
  1640. .form-control:focus,
  1641. .single-line:focus {
  1642. border-color: #2eb99d!important
  1643. }
  1644. .has-success .form-control {
  1645. border-color: #1ab394
  1646. }
  1647. .has-warning .form-control {
  1648. border-color: #f8ac59
  1649. }
  1650. .has-error .form-control {
  1651. border-color: #ed5565
  1652. }
  1653. .has-success .control-label {
  1654. color: #1ab394
  1655. }
  1656. .has-warning .control-label {
  1657. color: #f8ac59
  1658. }
  1659. .has-error .control-label {
  1660. color: #ed5565
  1661. }
  1662. .input-group-addon {
  1663. background-color: #fff;
  1664. border: 1px solid #E5E6E7;
  1665. border-radius: 1px;
  1666. color: inherit;
  1667. font-size: 14px;
  1668. font-weight: 400;
  1669. line-height: 1;
  1670. padding: 6px 12px;
  1671. text-align: center
  1672. }
  1673. .spinner-buttons.input-group-btn .btn-xs {
  1674. line-height: 1.13
  1675. }
  1676. .spinner-buttons.input-group-btn {
  1677. width: 20%
  1678. }
  1679. .noUi-connect {
  1680. background: none repeat scroll 0 0 #1ab394;
  1681. box-shadow: none
  1682. }
  1683. .slider_red .noUi-connect {
  1684. background: none repeat scroll 0 0 #ed5565;
  1685. box-shadow: none
  1686. }
  1687. .ui-sortable .ibox-title {
  1688. cursor: move
  1689. }
  1690. .ui-sortable-placeholder {
  1691. border: 1px dashed #cecece!important;
  1692. visibility: visible!important;
  1693. background: #e7eaec
  1694. }
  1695. .ibox.ui-sortable-placeholder {
  1696. margin: 0 0 23px!important
  1697. }
  1698. .tabs-container .panel-body {
  1699. background: #fff;
  1700. border: 1px solid #e7eaec;
  1701. border-radius: 2px;
  1702. padding: 20px;
  1703. position: relative
  1704. }
  1705. .tabs-container .nav-tabs>li.active>a,
  1706. .tabs-container .nav-tabs>li.active>a:focus,
  1707. .tabs-container .nav-tabs>li.active>a:hover {
  1708. background-color: #fff
  1709. }
  1710. .tabs-container .nav-tabs>li {
  1711. float: left;
  1712. margin-bottom: -1px
  1713. }
  1714. .tabs-container .nav-tabs>li.active>a,
  1715. .tabs-container .nav-tabs>li.active>a:focus,
  1716. .tabs-container .nav-tabs>li.active>a:hover {
  1717. border: 1px solid #e7eaec;
  1718. border-bottom-color: transparent
  1719. }
  1720. .tabs-container .nav-tabs {
  1721. border-bottom: 1px solid #e7eaec
  1722. }
  1723. .tabs-container .tab-pane .panel-body {
  1724. border-top: none
  1725. }
  1726. .tabs-container .tabs-left .tab-pane .panel-body,
  1727. .tabs-container .tabs-right .tab-pane .panel-body {
  1728. border-top: 1px solid #e7eaec
  1729. }
  1730. .tabs-container .nav-tabs>li a:hover {
  1731. background: 0 0;
  1732. border-color: transparent
  1733. }
  1734. .tabs-container .tabs-below>.nav-tabs,
  1735. .tabs-container .tabs-left>.nav-tabs,
  1736. .tabs-container .tabs-right>.nav-tabs {
  1737. border-bottom: 0
  1738. }
  1739. .tabs-container .tabs-left .panel-body {
  1740. position: static
  1741. }
  1742. .tabs-container .tabs-left>.nav-tabs,
  1743. .tabs-container .tabs-right>.nav-tabs {
  1744. width: 20%
  1745. }
  1746. .tabs-container .tabs-left .panel-body {
  1747. width: 80%;
  1748. margin-left: 20%
  1749. }
  1750. .tabs-container .tabs-right .panel-body {
  1751. width: 80%;
  1752. margin-right: 20%
  1753. }
  1754. .tabs-container .pill-content>.pill-pane,
  1755. .tabs-container .tab-content>.tab-pane {
  1756. display: none
  1757. }
  1758. .tabs-container .pill-content>.active,
  1759. .tabs-container .tab-content>.active {
  1760. display: block
  1761. }
  1762. .tabs-container .tabs-below>.nav-tabs {
  1763. border-top: 1px solid #e7eaec
  1764. }
  1765. .tabs-container .tabs-below>.nav-tabs>li {
  1766. margin-top: -1px;
  1767. margin-bottom: 0
  1768. }
  1769. .tabs-container .tabs-below>.nav-tabs>li>a {
  1770. border-radius: 0 0 4px 4px
  1771. }
  1772. .tabs-container .tabs-below>.nav-tabs>li>a:focus,
  1773. .tabs-container .tabs-below>.nav-tabs>li>a:hover {
  1774. border-top-color: #e7eaec;
  1775. border-bottom-color: transparent
  1776. }
  1777. .tabs-container .tabs-left>.nav-tabs>li,
  1778. .tabs-container .tabs-right>.nav-tabs>li {
  1779. float: none
  1780. }
  1781. .tabs-container .tabs-left>.nav-tabs>li>a,
  1782. .tabs-container .tabs-right>.nav-tabs>li>a {
  1783. min-width: 74px;
  1784. margin-right: 0;
  1785. margin-bottom: 3px
  1786. }
  1787. .tabs-container .tabs-left>.nav-tabs {
  1788. float: left;
  1789. margin-right: 19px
  1790. }
  1791. .tabs-container .tabs-left>.nav-tabs>li>a {
  1792. margin-right: -1px;
  1793. border-radius: 4px 0 0 4px
  1794. }
  1795. .tabs-container .tabs-left>.nav-tabs .active>a,
  1796. .tabs-container .tabs-left>.nav-tabs .active>a:focus,
  1797. .tabs-container .tabs-left>.nav-tabs .active>a:hover {
  1798. border-color: #e7eaec transparent #e7eaec #e7eaec;
  1799. *border-right-color: #fff
  1800. }
  1801. .tabs-container .tabs-right>.nav-tabs {
  1802. float: right;
  1803. margin-left: 19px
  1804. }
  1805. .tabs-container .tabs-right>.nav-tabs>li>a {
  1806. margin-left: -1px;
  1807. border-radius: 0 4px 4px 0
  1808. }
  1809. .tabs-container .tabs-right>.nav-tabs .active>a,
  1810. .tabs-container .tabs-right>.nav-tabs .active>a:focus,
  1811. .tabs-container .tabs-right>.nav-tabs .active>a:hover {
  1812. border-color: #e7eaec #e7eaec #e7eaec transparent;
  1813. *border-left-color: #fff;
  1814. z-index: 1
  1815. }
  1816. .onoffswitch {
  1817. position: relative;
  1818. width: 54px;
  1819. -webkit-user-select: none;
  1820. -moz-user-select: none;
  1821. -ms-user-select: none
  1822. }
  1823. .onoffswitch-checkbox {
  1824. display: none
  1825. }
  1826. .onoffswitch-label {
  1827. display: block;
  1828. overflow: hidden;
  1829. cursor: pointer;
  1830. border: 2px solid #1AB394;
  1831. border-radius: 3px
  1832. }
  1833. .onoffswitch-inner {
  1834. display: block;
  1835. width: 200%;
  1836. margin-left: -100%;
  1837. -webkit-transition: margin .3s ease-in 0s;
  1838. transition: margin .3s ease-in 0s
  1839. }
  1840. .onoffswitch-inner:after,
  1841. .onoffswitch-inner:before {
  1842. display: block;
  1843. float: left;
  1844. width: 50%;
  1845. height: 16px;
  1846. padding: 0;
  1847. line-height: 16px;
  1848. font-size: 10px;
  1849. font-family: Trebuchet, Arial, sans-serif;
  1850. font-weight: 700;
  1851. box-sizing: border-box
  1852. }
  1853. .onoffswitch-inner:before {
  1854. content: "ON";
  1855. padding-left: 7px;
  1856. background-color: #1AB394;
  1857. color: #FFF
  1858. }
  1859. .onoffswitch-inner:after {
  1860. content: "OFF";
  1861. padding-right: 7px;
  1862. background-color: #FFF;
  1863. color: #919191;
  1864. text-align: right
  1865. }
  1866. .onoffswitch-switch {
  1867. display: block;
  1868. width: 18px;
  1869. margin: 0;
  1870. background: #FFF;
  1871. border: 2px solid #1AB394;
  1872. border-radius: 3px;
  1873. position: absolute;
  1874. top: 0;
  1875. bottom: 0;
  1876. right: 36px;
  1877. -webkit-transition: all .3s ease-in 0s;
  1878. transition: all .3s ease-in 0s
  1879. }
  1880. .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
  1881. margin-left: 0
  1882. }
  1883. .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
  1884. right: 0
  1885. }
  1886. .dd {
  1887. position: relative;
  1888. display: block;
  1889. margin: 0;
  1890. padding: 0;
  1891. list-style: none;
  1892. font-size: 13px;
  1893. line-height: 20px
  1894. }
  1895. .dd-list {
  1896. display: block;
  1897. position: relative;
  1898. margin: 0;
  1899. padding: 0;
  1900. list-style: none
  1901. }
  1902. .dd-list .dd-list {
  1903. padding-left: 30px
  1904. }
  1905. .dd-collapsed .dd-list {
  1906. display: none
  1907. }
  1908. .dd-empty,
  1909. .dd-item,
  1910. .dd-placeholder {
  1911. display: block;
  1912. position: relative;
  1913. margin: 0;
  1914. padding: 0;
  1915. min-height: 20px;
  1916. font-size: 13px;
  1917. line-height: 20px
  1918. }
  1919. .dd-handle {
  1920. display: block;
  1921. margin: 5px 0;
  1922. padding: 5px 10px;
  1923. color: #333;
  1924. text-decoration: none;
  1925. border: 1px solid #e7eaec;
  1926. background: #f5f5f5;
  1927. border-radius: 3px;
  1928. box-sizing: border-box;
  1929. -moz-box-sizing: border-box
  1930. }
  1931. .dd-handle span {
  1932. font-weight: 700
  1933. }
  1934. .dd-handle:hover {
  1935. background: #f0f0f0;
  1936. cursor: pointer;
  1937. font-weight: 700
  1938. }
  1939. .dd-item>button {
  1940. display: block;
  1941. position: relative;
  1942. cursor: pointer;
  1943. float: left;
  1944. width: 25px;
  1945. height: 20px;
  1946. margin: 5px 0;
  1947. padding: 0;
  1948. text-indent: 100%;
  1949. white-space: nowrap;
  1950. overflow: hidden;
  1951. border: 0;
  1952. background: 0 0;
  1953. font-size: 12px;
  1954. line-height: 1;
  1955. text-align: center;
  1956. font-weight: 700
  1957. }
  1958. .dd-item>button:before {
  1959. content: '+';
  1960. display: block;
  1961. position: absolute;
  1962. width: 100%;
  1963. text-align: center;
  1964. text-indent: 0
  1965. }
  1966. .dd-item>button[data-action=collapse]:before {
  1967. content: '-'
  1968. }
  1969. #nestable2 .dd-item>button {
  1970. font-family: FontAwesome;
  1971. height: 34px;
  1972. width: 33px;
  1973. color: #c1c1c1
  1974. }
  1975. #nestable2 .dd-item>button:before {
  1976. content: "\f067"
  1977. }
  1978. #nestable2 .dd-item>button[data-action=collapse]:before {
  1979. content: "\f068"
  1980. }
  1981. .dd-empty,
  1982. .dd-placeholder {
  1983. margin: 5px 0;
  1984. padding: 0;
  1985. min-height: 30px;
  1986. background: #f2fbff;
  1987. border: 1px dashed #b6bcbf;
  1988. box-sizing: border-box;
  1989. -moz-box-sizing: border-box
  1990. }
  1991. .dd-empty {
  1992. border: 1px dashed #bbb;
  1993. min-height: 100px;
  1994. background-color: #e5e5e5;
  1995. background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  1996. background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  1997. background-size: 60px 60px;
  1998. background-position: 0 0, 30px 30px
  1999. }
  2000. .dd-dragel {
  2001. position: absolute;
  2002. z-index: 9999;
  2003. pointer-events: none
  2004. }
  2005. .dd-dragel>.dd-item .dd-handle {
  2006. margin-top: 0
  2007. }
  2008. .dd-dragel .dd-handle {
  2009. box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1)
  2010. }
  2011. .nestable-lists {
  2012. display: block;
  2013. clear: both;
  2014. padding: 30px 0;
  2015. width: 100%;
  2016. border: 0;
  2017. border-top: 2px solid #ddd;
  2018. border-bottom: 2px solid #ddd
  2019. }
  2020. #nestable-menu {
  2021. padding: 0;
  2022. margin: 10px 0 20px
  2023. }
  2024. #nestable-output,
  2025. #nestable2-output {
  2026. width: 100%;
  2027. line-height: 1.333333em;
  2028. font-family: lucida grande, lucida sans unicode, helvetica, arial, sans-serif
  2029. }
  2030. #nestable2 .dd-handle {
  2031. color: inherit;
  2032. border: 1px dashed #e7eaec;
  2033. background: #f3f3f4;
  2034. padding: 10px
  2035. }
  2036. #nestable2 span.label {
  2037. margin-right: 10px
  2038. }
  2039. #nestable-output,
  2040. #nestable2-output {
  2041. font-size: 12px;
  2042. padding: 25px;
  2043. box-sizing: border-box;
  2044. -moz-box-sizing: border-box
  2045. }
  2046. .CodeMirror {
  2047. border: 1px solid #eee;
  2048. height: auto
  2049. }
  2050. .CodeMirror-scroll {
  2051. overflow-y: hidden;
  2052. overflow-x: auto
  2053. }
  2054. .google-map {
  2055. height: 300px
  2056. }
  2057. label.error {
  2058. color: #cc5965;
  2059. display: inline-block;
  2060. margin-left: 5px
  2061. }
  2062. .form-control.error {
  2063. border: 1px dotted #cc5965
  2064. }
  2065. .gridStyle {
  2066. border: 1px solid #d4d4d4;
  2067. width: 100%;
  2068. height: 400px
  2069. }
  2070. .gridStyle2 {
  2071. border: 1px solid #d4d4d4;
  2072. width: 500px;
  2073. height: 300px
  2074. }
  2075. .ngH eaderCell {
  2076. border-right: none;
  2077. border-bottom: 1px solid #e7eaec
  2078. }
  2079. .ngCell {
  2080. border-right: none
  2081. }
  2082. .ngTopPanel {
  2083. background: #F5F5F6
  2084. }
  2085. .ngRow.even {
  2086. background: #f9f9f9
  2087. }
  2088. .ngRow.selected {
  2089. background: #EBF2F1
  2090. }
  2091. .ngRow {
  2092. border-bottom: 1px solid #e7eaec
  2093. }
  2094. .ngCell {
  2095. background-color: transparent
  2096. }
  2097. .ngHeaderCell {
  2098. border-right: none
  2099. }
  2100. #toast-container>.toast {
  2101. background-image: none!important
  2102. }
  2103. #toast-container>.toast:before {
  2104. position: fixed;
  2105. font-family: FontAwesome;
  2106. font-size: 24px;
  2107. line-height: 24px;
  2108. float: left;
  2109. color: #FFF;
  2110. padding-right: .5em;
  2111. margin: auto .5em auto -1.5em
  2112. }
  2113. #toast-container>div {
  2114. box-shadow: 0 0 3px #999;
  2115. opacity: .9;
  2116. -ms-filter: alpha(opacity=90);
  2117. filter: alpha(opacity=90)
  2118. }
  2119. #toast-container>:hover {
  2120. box-shadow: 0 0 4px #999;
  2121. opacity: 1;
  2122. -ms-filter: alpha(opacity=100);
  2123. filter: alpha(opacity=100);
  2124. cursor: pointer
  2125. }
  2126. .toast,
  2127. .toast-success {
  2128. background-color: #1ab394
  2129. }
  2130. .toast-error {
  2131. background-color: #ed5565
  2132. }
  2133. .toast-info {
  2134. background-color: #23c6c8
  2135. }
  2136. .toast-warning {
  2137. background-color: #f8ac59
  2138. }
  2139. .toast-top-full-width {
  2140. margin-top: 20px
  2141. }
  2142. .toast-bottom-full-width {
  2143. margin-bottom: 20px
  2144. }
  2145. .img-container,
  2146. .img-preview {
  2147. overflow: hidden;
  2148. text-align: center;
  2149. width: 100%
  2150. }
  2151. .img-preview-sm {
  2152. height: 130px;
  2153. width: 200px
  2154. }
  2155. .forum-post-container .media {
  2156. margin: 10px;
  2157. padding: 20px 10px;
  2158. border-bottom: 1px solid #f1f1f1
  2159. }
  2160. .forum-avatar {
  2161. float: left;
  2162. margin-right: 20px;
  2163. text-align: center;
  2164. width: 110px
  2165. }
  2166. .forum-avatar .img-circle {
  2167. height: 48px;
  2168. width: 48px
  2169. }
  2170. .author-info {
  2171. color: #676a6c;
  2172. font-size: 11px;
  2173. margin-top: 5px;
  2174. text-align: center
  2175. }
  2176. .forum-post-info {
  2177. padding: 9px 12px 6px;
  2178. background: #f9f9f9;
  2179. border: 1px solid #f1f1f1
  2180. }
  2181. .media-body>.media {
  2182. background: #f9f9f9;
  2183. border-radius: 3px;
  2184. border: 1px solid #f1f1f1
  2185. }
  2186. .forum-post-container .media-body .photos {
  2187. margin: 10px 0
  2188. }
  2189. .forum-photo {
  2190. max-width: 140px;
  2191. border-radius: 3px
  2192. }
  2193. .media-body>.media .forum-avatar {
  2194. width: 70px;
  2195. margin-right: 10px
  2196. }
  2197. .media-body>.media .forum-avatar .img-circle {
  2198. height: 38px;
  2199. width: 38px
  2200. }
  2201. .mid-icon {
  2202. font-size: 66px
  2203. }
  2204. .forum-item {
  2205. margin: 10px 0;
  2206. padding: 10px 0 20px;
  2207. border-bottom: 1px solid #f1f1f1
  2208. }
  2209. .views-number {
  2210. font-size: 24px;
  2211. line-height: 18px;
  2212. font-weight: 400
  2213. }
  2214. .forum-container,
  2215. .forum-post-container {
  2216. padding: 30px!important
  2217. }
  2218. .forum-item small {
  2219. color: #999
  2220. }
  2221. .forum-item .forum-sub-title {
  2222. color: #999;
  2223. margin-left: 50px
  2224. }
  2225. .forum-title {
  2226. margin: 15px 0
  2227. }
  2228. .forum-info {
  2229. text-align: center
  2230. }
  2231. .forum-desc {
  2232. color: #999
  2233. }
  2234. .forum-icon {
  2235. float: left;
  2236. width: 30px;
  2237. margin-right: 20px;
  2238. text-align: center
  2239. }
  2240. a.forum-item-title {
  2241. color: inherit;
  2242. display: block;
  2243. font-size: 18px;
  2244. font-weight: 600
  2245. }
  2246. a.forum-item-title:hover {
  2247. color: inherit
  2248. }
  2249. .forum-icon .fa {
  2250. font-size: 30px;
  2251. margin-top: 8px;
  2252. color: #9b9b9b
  2253. }
  2254. .forum-item.active .fa,
  2255. .forum-item.active a.forum-item-title {
  2256. color: #1ab394
  2257. }
  2258. @media (max-width:992px) {
  2259. .forum-info {
  2260. margin: 15px 0 10px;
  2261. display: none
  2262. }
  2263. .forum-desc {
  2264. float: none!important
  2265. }
  2266. }
  2267. .vertical-container {
  2268. width: 90%;
  2269. max-width: 1170px;
  2270. margin: 0 auto
  2271. }
  2272. .vertical-container::after {
  2273. content: '';
  2274. display: table;
  2275. clear: both
  2276. }
  2277. #vertical-timeline {
  2278. position: relative;
  2279. padding: 0;
  2280. margin-top: 2em;
  2281. margin-bottom: 2em
  2282. }
  2283. #vertical-timeline::before {
  2284. content: '';
  2285. position: absolute;
  2286. top: 0;
  2287. left: 18px;
  2288. height: 100%;
  2289. width: 4px;
  2290. background: #f1f1f1
  2291. }
  2292. .vertical-timeline-content .btn {
  2293. float: right
  2294. }
  2295. #vertical-timeline.light-timeline:before {
  2296. background: #e7eaec
  2297. }
  2298. .dark-timeline .vertical-timeline-content:before {
  2299. border-color: transparent #f5f5f5 transparent transparent
  2300. }
  2301. .dark-timeline.center-orientation .vertical-timeline-content:before {
  2302. border-color: transparent transparent transparent #f5f5f5
  2303. }
  2304. .dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,
  2305. .dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before {
  2306. border-color: transparent #f5f5f5 transparent transparent
  2307. }
  2308. .dark-timeline .vertical-timeline-content,
  2309. .dark-timeline.center-orientation .vertical-timeline-content {
  2310. background: #f5f5f5
  2311. }
  2312. @media only screen and (min-width:1170px) {
  2313. #vertical-timeline.center-orientation {
  2314. margin-top: 3em;
  2315. margin-bottom: 3em
  2316. }
  2317. #vertical-timeline.center-orientation:before {
  2318. left: 50%;
  2319. margin-left: -2px
  2320. }
  2321. }
  2322. @media only screen and (max-width:1170px) {
  2323. .center-orientation.dark-timeline .vertical-timeline-content:before {
  2324. border-color: transparent #f5f5f5 transparent transparent
  2325. }
  2326. }
  2327. .vertical-timeline-block {
  2328. position: relative;
  2329. margin: 2em 0
  2330. }
  2331. .vertical-timeline-block:after {
  2332. content: "";
  2333. display: table;
  2334. clear: both
  2335. }
  2336. .vertical-timeline-block:first-child {
  2337. margin-top: 0
  2338. }
  2339. .vertical-timeline-block:last-child {
  2340. margin-bottom: 0
  2341. }
  2342. @media only screen and (min-width:1170px) {
  2343. .center-orientation .vertical-timeline-block {
  2344. margin: 4em 0
  2345. }
  2346. .center-orientation .vertical-timeline-block:first-child {
  2347. margin-top: 0
  2348. }
  2349. .center-orientation .vertical-timeline-block:last-child {
  2350. margin-bottom: 0
  2351. }
  2352. }
  2353. .vertical-timeline-icon {
  2354. position: absolute;
  2355. top: 0;
  2356. left: 0;
  2357. width: 40px;
  2358. height: 40px;
  2359. border-radius: 50%;
  2360. font-size: 16px;
  2361. border: 3px solid #f1f1f1;
  2362. text-align: center
  2363. }
  2364. .vertical-timeline-icon i {
  2365. display: block;
  2366. width: 24px;
  2367. height: 24px;
  2368. position: relative;
  2369. left: 50%;
  2370. top: 50%;
  2371. margin-left: -12px;
  2372. margin-top: -9px
  2373. }
  2374. @media only screen and (min-width:1170px) {
  2375. .center-orientation .vertical-timeline-icon {
  2376. width: 50px;
  2377. height: 50px;
  2378. left: 50%;
  2379. margin-left: -25px;
  2380. -webkit-transform: translateZ(0);
  2381. -webkit-backface-visibility: hidden;
  2382. font-size: 19px
  2383. }
  2384. .center-orientation .vertical-timeline-icon i {
  2385. margin-left: -12px;
  2386. margin-top: -10px
  2387. }
  2388. .center-orientation .cssanimations .vertical-timeline-icon.is-hidden {
  2389. visibility: hidden
  2390. }
  2391. }
  2392. .vertical-timeline-content {
  2393. position: relative;
  2394. margin-left: 60px;
  2395. background: #fff;
  2396. border-radius: .25em;
  2397. padding: 1em
  2398. }
  2399. .vertical-timeline-content:after {
  2400. content: "";
  2401. display: table;
  2402. clear: both
  2403. }
  2404. .vertical-timeline-content h2 {
  2405. font-weight: 400;
  2406. margin-top: 4px
  2407. }
  2408. .vertical-timeline-content p {
  2409. margin: 1em 0;
  2410. line-height: 1.6
  2411. }
  2412. .vertical-timeline-content .vertical-date {
  2413. float: left;
  2414. font-weight: 500
  2415. }
  2416. .vertical-date small {
  2417. color: #1ab394;
  2418. font-weight: 400
  2419. }
  2420. .vertical-timeline-content::before {
  2421. content: '';
  2422. position: absolute;
  2423. top: 16px;
  2424. right: 100%;
  2425. height: 0;
  2426. width: 0;
  2427. border: 7px solid transparent;
  2428. border-right: 7px solid #fff
  2429. }
  2430. @media only screen and (min-width:768px) {
  2431. .vertical-timeline-content h2 {
  2432. font-size: 18px
  2433. }
  2434. .vertical-timeline-content p {
  2435. font-size: 13px
  2436. }
  2437. }
  2438. @media only screen and (min-width:1170px) {
  2439. .center-orientation .vertical-timeline-content {
  2440. margin-left: 0;
  2441. padding: 1.6em;
  2442. width: 45%
  2443. }
  2444. .center-orientation .vertical-timeline-content::before {
  2445. top: 24px;
  2446. left: 100%;
  2447. border-color: transparent;
  2448. border-left-color: #fff
  2449. }
  2450. .center-orientation .vertical-timeline-content .btn {
  2451. float: left
  2452. }
  2453. .center-orientation .vertical-timeline-content .vertical-date {
  2454. position: absolute;
  2455. width: 100%;
  2456. left: 122%;
  2457. top: 2px;
  2458. font-size: 14px
  2459. }
  2460. .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {
  2461. float: right
  2462. }
  2463. .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {
  2464. top: 24px;
  2465. left: auto;
  2466. right: 100%;
  2467. border-color: transparent;
  2468. border-right-color: #fff
  2469. }
  2470. .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {
  2471. float: right
  2472. }
  2473. .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {
  2474. left: auto;
  2475. right: 122%;
  2476. text-align: right
  2477. }
  2478. .center-orientation .cssanimations .vertical-timeline-content.is-hidden {
  2479. visibility: hidden
  2480. }
  2481. }
  2482. .sidebard-panel {
  2483. width: 220px;
  2484. background: #ebebed;
  2485. padding: 10px 20px;
  2486. position: absolute;
  2487. right: 0
  2488. }
  2489. .sidebard-panel .feed-element img.img-circle {
  2490. width: 32px;
  2491. height: 32px
  2492. }
  2493. .media-body,
  2494. .sidebard-panel .feed-element,
  2495. .sidebard-panel p {
  2496. font-size: 12px
  2497. }
  2498. .sidebard-panel .feed-element {
  2499. margin-top: 20px;
  2500. padding-bottom: 0
  2501. }
  2502. .sidebard-panel .list-group {
  2503. margin-bottom: 10px
  2504. }
  2505. .sidebard-panel .list-group .list-group-item {
  2506. padding: 5px 0;
  2507. font-size: 12px;
  2508. border: 0
  2509. }
  2510. .sidebar-content .wrapper,
  2511. .wrapper.sidebar-content {
  2512. padding-right: 240px!important
  2513. }
  2514. #right-sidebar {
  2515. background-color: #fff;
  2516. border-left: 1px solid #e7eaec;
  2517. border-top: 1px solid #e7eaec;
  2518. overflow: hidden;
  2519. position: fixed;
  2520. top: 60px;
  2521. width: 260px!important;
  2522. z-index: 1009;
  2523. bottom: 0;
  2524. right: -260px
  2525. }
  2526. #right-sidebar.sidebar-open {
  2527. right: 0
  2528. }
  2529. #right-sidebar.sidebar-open.sidebar-top {
  2530. top: 0;
  2531. border-top: none
  2532. }
  2533. .sidebar-container ul.nav-tabs {
  2534. border: none
  2535. }
  2536. .sidebar-container ul.nav-tabs.navs-4 li {
  2537. width: 25%
  2538. }
  2539. .sidebar-container ul.nav-tabs.navs-3 li {
  2540. width: 33.3333%
  2541. }
  2542. .sidebar-container ul.nav-tabs.navs-2 li {
  2543. width: 50%
  2544. }
  2545. .sidebar-container ul.nav-tabs li {
  2546. border: none
  2547. }
  2548. .sidebar-container ul.nav-tabs li a {
  2549. border: none;
  2550. padding: 12px 10px;
  2551. margin: 0;
  2552. border-radius: 0;
  2553. background: #2f4050;
  2554. color: #fff;
  2555. text-align: center;
  2556. border-right: 1px solid #334556
  2557. }
  2558. .sidebar-container ul.nav-tabs li.active a {
  2559. border: none;
  2560. background: #f9f9f9;
  2561. color: #676a6c;
  2562. font-weight: 700
  2563. }
  2564. .sidebar-container .nav-tabs>li.active>a:focus,
  2565. .sidebar-container .nav-tabs>li.active>a:hover {
  2566. border: none
  2567. }
  2568. .sidebar-container ul.sidebar-list {
  2569. margin: 0;
  2570. padding: 0
  2571. }
  2572. .sidebar-container ul.sidebar-list li {
  2573. border-bottom: 1px solid #e7eaec;
  2574. padding: 15px 20px;
  2575. list-style: none;
  2576. font-size: 12px
  2577. }
  2578. .sidebar-container .sidebar-message:nth-child(2n+2) {
  2579. background: #f9f9f9
  2580. }
  2581. .sidebar-container ul.sidebar-list li a {
  2582. text-decoration: none;
  2583. color: inherit
  2584. }
  2585. .sidebar-container .sidebar-content {
  2586. padding: 15px 20px;
  2587. font-size: 12px
  2588. }
  2589. .sidebar-container .sidebar-title {
  2590. background: #f9f9f9;
  2591. padding: 20px;
  2592. border-bottom: 1px solid #e7eaec
  2593. }
  2594. .sidebar-container .sidebar-title h3 {
  2595. margin-bottom: 3px;
  2596. padding-left: 2px
  2597. }
  2598. .sidebar-container .tab-content h4 {
  2599. margin-bottom: 5px
  2600. }
  2601. .sidebar-container .sidebar-message>a>.pull-left {
  2602. margin-right: 10px
  2603. }
  2604. .sidebar-container .sidebar-message>a {
  2605. text-decoration: none;
  2606. color: inherit
  2607. }
  2608. .sidebar-container .sidebar-message {
  2609. padding: 15px 20px
  2610. }
  2611. .sidebar-container .sidebar-message .message-avatar {
  2612. height: 38px;
  2613. width: 38px;
  2614. border-radius: 50%
  2615. }
  2616. .sidebar-container .setings-item {
  2617. padding: 15px 20px;
  2618. border-bottom: 1px solid #e7eaec
  2619. }
  2620. body {
  2621. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  2622. font-size: 13px;
  2623. color: #676a6c;
  2624. overflow-x: hidden
  2625. }
  2626. body,
  2627. body.full-height-layout #page-wrapper,
  2628. body.full-height-layout #wrapper,
  2629. html {
  2630. height: 100%;
  2631. }
  2632. #page-wrapper {
  2633. min-height: auto
  2634. }
  2635. body.boxed-layout {
  2636. background: url(patterns/shattered.png)
  2637. }
  2638. body.boxed-layout #wrapper {
  2639. background-color: #2f4050;
  2640. max-width: 1200px;
  2641. margin: 0 auto
  2642. }
  2643. .boxed-layout #wrapper.top-navigation,
  2644. .top-navigation.boxed-layout #wrapper {
  2645. max-width: 1300px!important
  2646. }
  2647. .block {
  2648. display: block
  2649. }
  2650. .clear {
  2651. display: block;
  2652. overflow: hidden
  2653. }
  2654. a {
  2655. cursor: pointer
  2656. }
  2657. a:focus,
  2658. a:hover {
  2659. text-decoration: none
  2660. }
  2661. .border-bottom {
  2662. border-bottom: 1px solid #e7eaec!important
  2663. }
  2664. .font-bold {
  2665. font-weight: 600
  2666. }
  2667. .font-noraml {
  2668. font-weight: 400
  2669. }
  2670. .text-uppercase {
  2671. text-transform: uppercase
  2672. }
  2673. .b-r {
  2674. border-right: 1px solid #e7eaec
  2675. }
  2676. .hr-line-dashed {
  2677. border-top: 1px dashed #e7eaec;
  2678. color: #fff;
  2679. background-color: #fff;
  2680. height: 1px;
  2681. margin: 20px 0
  2682. }
  2683. .hr-line-solid {
  2684. border-bottom: 1px solid #e7eaec;
  2685. background-color: rgba(0, 0, 0, 0);
  2686. border-style: solid!important;
  2687. margin-top: 15px;
  2688. margin-bottom: 15px
  2689. }
  2690. video {
  2691. width: 100%!important;
  2692. height: auto!important
  2693. }
  2694. .gallery>.row>div {
  2695. margin-bottom: 15px
  2696. }
  2697. .fancybox img {
  2698. margin-bottom: 5px;
  2699. width: 24%
  2700. }
  2701. .note-editor {
  2702. height: auto!important;
  2703. min-height: 100px;
  2704. border: solid 1px #e5e6e7
  2705. }
  2706. .modal-content {
  2707. background-clip: padding-box;
  2708. background-color: #FFF;
  2709. border: 1px solid rgba(0, 0, 0, 0);
  2710. border-radius: 4px;
  2711. box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  2712. outline: 0 none
  2713. }
  2714. .modal-dialog {
  2715. z-index: 1200
  2716. }
  2717. .modal-body {
  2718. padding: 20px 30px 30px
  2719. }
  2720. .inmodal .modal-body {
  2721. background: #f8fafb
  2722. }
  2723. .inmodal .modal-header {
  2724. padding: 30px 15px;
  2725. text-align: center
  2726. }
  2727. .animated.modal.fade .modal-dialog {
  2728. -webkit-transform: none;
  2729. -ms-transform: none;
  2730. transform: none
  2731. }
  2732. .inmodal .modal-title {
  2733. font-size: 26px
  2734. }
  2735. .inmodal .modal-icon {
  2736. font-size: 84px;
  2737. color: #e2e3e3
  2738. }
  2739. .modal-footer {
  2740. margin-top: 0
  2741. }
  2742. #wrapper {
  2743. width: 100%;
  2744. overflow-x: hidden;
  2745. background-color: #2f4050
  2746. }
  2747. .wrapper {
  2748. padding: 0 20px
  2749. }
  2750. .wrapper-content {
  2751. padding: 20px
  2752. }
  2753. #page-wrapper {
  2754. padding: 0 15px;
  2755. position: inherit;
  2756. margin: 0 0 0 220px
  2757. }
  2758. .title-action {
  2759. text-align: right;
  2760. padding-top: 30px
  2761. }
  2762. .ibox-content h1,
  2763. .ibox-content h2,
  2764. .ibox-content h3,
  2765. .ibox-content h4,
  2766. .ibox-content h5,
  2767. .ibox-title h1,
  2768. .ibox-title h2,
  2769. .ibox-title h3,
  2770. .ibox-title h4,
  2771. .ibox-title h5 {
  2772. margin-top: 5px
  2773. }
  2774. ol.unstyled,
  2775. ul.unstyled {
  2776. list-style: none outside none;
  2777. margin-left: 0
  2778. }
  2779. .big-icon {
  2780. font-size: 160px;
  2781. color: #e5e6e7
  2782. }
  2783. .footer {
  2784. background: none repeat scroll 0 0 #fff;
  2785. border-top: 1px solid #e7eaec;
  2786. overflow: hidden;
  2787. padding: 10px 20px;
  2788. margin: 0 -15px;
  2789. height: 36px
  2790. }
  2791. .footer.fixed_full {
  2792. position: fixed;
  2793. bottom: 0;
  2794. left: 0;
  2795. right: 0;
  2796. z-index: 1000;
  2797. padding: 10px 20px;
  2798. background: #fff;
  2799. border-top: 1px solid #e7eaec
  2800. }
  2801. .footer.fixed {
  2802. position: fixed;
  2803. bottom: 0;
  2804. left: 0;
  2805. right: 0;
  2806. z-index: 1000;
  2807. padding: 10px 20px;
  2808. background: #fff;
  2809. border-top: 1px solid #e7eaec;
  2810. margin-left: 220px
  2811. }
  2812. body.body-small.mini-navbar .footer.fixed,
  2813. body.mini-navbar .footer.fixed {
  2814. margin: 0 0 0 70px
  2815. }
  2816. body.canvas-menu .footer.fixed,
  2817. body.mini-navbar.canvas-menu .footer.fixed {
  2818. margin: 0!important
  2819. }
  2820. body.fixed-sidebar.body-small.mini-navbar .footer.fixed {
  2821. margin: 0 0 0 220px
  2822. }
  2823. body.body-small .footer.fixed {
  2824. margin-left: 0
  2825. }
  2826. .page-heading {
  2827. border-top: 0;
  2828. padding: 0 20px 20px
  2829. }
  2830. .panel-heading h1,
  2831. .panel-heading h2 {
  2832. margin-bottom: 5px
  2833. }
  2834. .content-tabs {
  2835. position: relative;
  2836. height: 41px;
  2837. background: #fff;
  2838. line-height: 38px
  2839. }
  2840. .content-tabs .roll-nav,
  2841. .page-tabs-list {
  2842. position: absolute;
  2843. width: 40px;
  2844. height: 40px;
  2845. text-align: center;
  2846. color: #999;
  2847. z-index: 2;
  2848. top: 0
  2849. }
  2850. .content-tabs .roll-left {
  2851. left: 0;
  2852. border-right: solid 1px #eee
  2853. }
  2854. .content-tabs .roll-right {
  2855. right: 0;
  2856. border-left: solid 1px #eee
  2857. }
  2858. .content-tabs button {
  2859. background: #fff;
  2860. border: 0;
  2861. height: 40px;
  2862. width: 40px;
  2863. outline: 0
  2864. }
  2865. .content-tabs button:hover {
  2866. background: #fafafa
  2867. }
  2868. nav.page-tabs {
  2869. margin-left: 40px;
  2870. width: 100000px;
  2871. height: 40px;
  2872. overflow: hidden
  2873. }
  2874. nav.page-tabs .page-tabs-content {
  2875. float: left;
  2876. position: relative;
  2877. }
  2878. nav.page-tabs .page-tabs-content a:after{
  2879. content: "";
  2880. position: absolute;
  2881. width: 1px;
  2882. height: 20px;
  2883. top: 50%;
  2884. margin-top: -10px;
  2885. right: 0;
  2886. background-color: #e1e1e1;
  2887. }
  2888. .page-tabs a {
  2889. display: block;
  2890. float: left;
  2891. /*border-right: solid 1px #eee;*/
  2892. text-align: center;
  2893. padding: 0 30px 0 15px;
  2894. min-width: 80px;
  2895. max-width: 120px;
  2896. overflow: hidden;
  2897. position: relative;
  2898. }
  2899. .page-tabs a i{
  2900. position: absolute;
  2901. font-size: 14px;
  2902. top: 50%;
  2903. margin-top: -7px;
  2904. right: 10px;
  2905. }
  2906. .page-tabs a i:hover {
  2907. color: #c00
  2908. }
  2909. .content-tabs .roll-nav:hover,
  2910. .page-tabs a:hover {
  2911. color: #777;
  2912. background: #f2f2f2;
  2913. cursor: pointer
  2914. }
  2915. .roll-right.J_tabRight {
  2916. right: 620px
  2917. }
  2918. .roll-right.btn-group {
  2919. right: 20px;
  2920. width: 600px;
  2921. padding: 0;
  2922. text-align: right;
  2923. }
  2924. .content-tabs .roll-nav.btn-group:hover{
  2925. background: #fff;
  2926. cursor: auto;
  2927. }
  2928. .roll-right.btn-group button {
  2929. width: 80px
  2930. }
  2931. .roll-right.J_tabExit {
  2932. background: #fff;
  2933. height: 40px;
  2934. width: 60px;
  2935. outline: 0
  2936. }
  2937. .dropdown-menu-right {
  2938. left: auto
  2939. }
  2940. #content-main {
  2941. height: calc(100% - 41px);
  2942. overflow: hidden
  2943. }
  2944. .fixed-nav #content-main {
  2945. height: calc(100% - 80px);
  2946. overflow: hidden
  2947. }
  2948. .table-bordered {
  2949. border: 1px solid #EBEBEB
  2950. }
  2951. .table-bordered>thead>tr>td,
  2952. .table-bordered>thead>tr>th {
  2953. background-color: #F5F5F6
  2954. }
  2955. .table-bordered>tbody>tr>td,
  2956. .table-bordered>tbody>tr>th,
  2957. .table-bordered>tfoot>tr>td,
  2958. .table-bordered>tfoot>tr>th,
  2959. .table-bordered>thead>tr>td,
  2960. .table-bordered>thead>tr>th {
  2961. border: 1px solid #e7e7e7
  2962. }
  2963. .table>thead>tr>th {
  2964. border-bottom: 1px solid #DDD
  2965. }
  2966. .table>tbody>tr>td,
  2967. .table>tbody>tr>th,
  2968. .table>tfoot>tr>td,
  2969. .table>tfoot>tr>th,
  2970. .table>thead>tr>td,
  2971. .table>thead>tr>th {
  2972. border-top: 1px solid #e7eaec;
  2973. line-height: 1.42857;
  2974. padding: 8px;
  2975. vertical-align: middle
  2976. }
  2977. .panel.blank-panel {
  2978. background: 0 0;
  2979. margin: 0
  2980. }
  2981. .blank-panel .panel-heading {
  2982. padding-bottom: 0
  2983. }
  2984. .nav-tabs>li.active>a,
  2985. .nav-tabs>li.active>a:focus,
  2986. .nav-tabs>li.active>a:hover {
  2987. -moz-border-bottom-colors: none;
  2988. -moz-border-left-colors: none;
  2989. -moz-border-right-colors: none;
  2990. -moz-border-top-colors: none;
  2991. background: 0 0;
  2992. border-color: #ddd #ddd rgba(0, 0, 0, 0);
  2993. border-bottom: #f3f3f4;
  2994. -webkit-border-image: none;
  2995. -o-border-image: none;
  2996. border-image: none;
  2997. border-style: solid;
  2998. border-width: 1px;
  2999. color: #555;
  3000. cursor: default
  3001. }
  3002. .nav.nav-tabs li {
  3003. background: 0 0;
  3004. border: none
  3005. }
  3006. .nav-tabs>li>a {
  3007. color: #A7B1C2;
  3008. font-weight: 600;
  3009. padding: 10px 20px 10px 25px
  3010. }
  3011. .nav-tabs>li>a:focus,
  3012. .nav-tabs>li>a:hover {
  3013. background-color: #e6e6e6;
  3014. color: #676a6c
  3015. }
  3016. .ui-tab .tab-content {
  3017. padding: 20px 0
  3018. }
  3019. .no-padding {
  3020. padding: 0!important
  3021. }
  3022. .no-borders {
  3023. border: none!important
  3024. }
  3025. .no-margins {
  3026. margin: 0!important
  3027. }
  3028. .no-top-border {
  3029. border-top: 0!important
  3030. }
  3031. .ibox-content.text-box {
  3032. padding-bottom: 0;
  3033. padding-top: 15px
  3034. }
  3035. .border-left-right {
  3036. border-left: 1px solid #e7eaec;
  3037. border-right: 1px solid #e7eaec;
  3038. border-top: none;
  3039. border-bottom: none
  3040. }
  3041. .border-left {
  3042. border-left: 1px solid #e7eaec;
  3043. border-right: none;
  3044. border-top: none;
  3045. border-bottom: none
  3046. }
  3047. .border-right {
  3048. border-left: none;
  3049. border-right: 1px solid #e7eaec;
  3050. border-top: none;
  3051. border-bottom: none
  3052. }
  3053. .full-width {
  3054. width: 100%!important
  3055. }
  3056. .link-block {
  3057. font-size: 12px;
  3058. padding: 10px
  3059. }
  3060. .nav.navbar-top-links .link-block a {
  3061. font-size: 12px
  3062. }
  3063. .link-block a {
  3064. font-size: 10px;
  3065. color: inherit
  3066. }
  3067. body.mini-navbar .branding {
  3068. display: none
  3069. }
  3070. img.circle-border {
  3071. border: 6px solid #FFF;
  3072. border-radius: 50%
  3073. }
  3074. .branding {
  3075. float: left;
  3076. color: #FFF;
  3077. font-size: 18px;
  3078. font-weight: 600;
  3079. padding: 17px 20px;
  3080. text-align: center;
  3081. background-color: #1ab394
  3082. }
  3083. .login-panel {
  3084. margin-top: 25%
  3085. }
  3086. .page-header {
  3087. padding: 20px 0 9px;
  3088. margin: 0 0 20px;
  3089. border-bottom: 1px solid #eee
  3090. }
  3091. .fontawesome-icon-list {
  3092. margin-top: 22px
  3093. }
  3094. .fontawesome-icon-list .fa-hover a {
  3095. overflow: hidden;
  3096. text-overflow: ellipsis;
  3097. white-space: nowrap;
  3098. display: block;
  3099. color: #222;
  3100. line-height: 32px;
  3101. height: 32px;
  3102. padding-left: 10px;
  3103. border-radius: 4px
  3104. }
  3105. .fontawesome-icon-list .fa-hover a .fa {
  3106. width: 32px;
  3107. font-size: 14px;
  3108. display: inline-block;
  3109. text-align: right;
  3110. margin-right: 10px
  3111. }
  3112. .fontawesome-icon-list .fa-hover a:hover {
  3113. background-color: #1d9d74;
  3114. color: #fff;
  3115. text-decoration: none
  3116. }
  3117. .fontawesome-icon-list .fa-hover a:hover .fa {
  3118. font-size: 30px;
  3119. vertical-align: -6px
  3120. }
  3121. .fontawesome-icon-list .fa-hover a:hover .text-muted {
  3122. color: #bbe2d5
  3123. }
  3124. .feature-list .col-md-4 {
  3125. margin-bottom: 22px
  3126. }
  3127. .feature-list h4 .fa:before {
  3128. vertical-align: -10%;
  3129. font-size: 28px;
  3130. display: inline-block;
  3131. width: 1.07142857em;
  3132. text-align: center;
  3133. margin-right: 5px
  3134. }
  3135. .ui-draggable .ibox-title {
  3136. cursor: move
  3137. }
  3138. .breadcrumb {
  3139. background-color: #fff;
  3140. padding: 0;
  3141. margin-bottom: 0
  3142. }
  3143. .breadcrumb>.active,
  3144. .breadcrumb>li a {
  3145. color: inherit
  3146. }
  3147. code {
  3148. background-color: #F9F2F4;
  3149. border-radius: 4px;
  3150. color: #ca4440;
  3151. font-size: 90%;
  3152. padding: 2px 4px;
  3153. white-space: nowrap
  3154. }
  3155. .ibox {
  3156. clear: both;
  3157. margin-bottom: 25px;
  3158. margin-top: 0;
  3159. padding: 0
  3160. }
  3161. .ibox.collapsed .ibox-content {
  3162. display: none
  3163. }
  3164. .ibox.collapsed .fa.fa-chevron-up:before {
  3165. content: "\f078"
  3166. }
  3167. .ibox.collapsed .fa.fa-chevron-down:before {
  3168. content: "\f077"
  3169. }
  3170. .ibox:after,
  3171. .ibox:before {
  3172. display: table
  3173. }
  3174. .ibox-title {
  3175. -moz-border-bottom-colors: none;
  3176. -moz-border-left-colors: none;
  3177. -moz-border-right-colors: none;
  3178. -moz-border-top-colors: none;
  3179. background-color: #fff;
  3180. border-color: #e7eaec;
  3181. -webkit-border-image: none;
  3182. -o-border-image: none;
  3183. border-image: none;
  3184. border-style: solid solid none;
  3185. border-width: 4px 0 0;
  3186. color: inherit;
  3187. margin-bottom: 0;
  3188. padding: 14px 15px 7px;
  3189. min-height: 48px
  3190. }
  3191. .ibox-content {
  3192. background-color: #fff;
  3193. color: inherit;
  3194. padding: 15px 20px 20px;
  3195. border-color: #e7eaec;
  3196. -webkit-border-image: none;
  3197. -o-border-image: none;
  3198. border-image: none;
  3199. border-style: solid solid none;
  3200. border-width: 1px 0
  3201. }
  3202. table.table-mail tr td {
  3203. padding: 12px
  3204. }
  3205. .table-mail .check-mail {
  3206. padding-left: 20px
  3207. }
  3208. .table-mail .mail-date {
  3209. padding-right: 20px
  3210. }
  3211. .check-mail,
  3212. .star-mail {
  3213. width: 40px
  3214. }
  3215. .unread td,
  3216. .unread td a {
  3217. font-weight: 600;
  3218. color: inherit
  3219. }
  3220. .read td,
  3221. .read td a {
  3222. font-weight: 400;
  3223. color: inherit
  3224. }
  3225. .unread td {
  3226. background-color: #f9f8f8
  3227. }
  3228. .ibox-content {
  3229. clear: both
  3230. }
  3231. .ibox-heading {
  3232. background-color: #f3f6fb;
  3233. border-bottom: none
  3234. }
  3235. .ibox-heading h3 {
  3236. font-weight: 200;
  3237. font-size: 24px
  3238. }
  3239. .ibox-title h5 {
  3240. display: inline-block;
  3241. font-size: 14px;
  3242. margin: 0 0 7px;
  3243. padding: 0;
  3244. text-overflow: ellipsis;
  3245. float: left
  3246. }
  3247. .ibox-title .label {
  3248. float: left;
  3249. margin-left: 4px
  3250. }
  3251. .ibox-tools {
  3252. display: inline-block;
  3253. float: right;
  3254. margin-top: 0;
  3255. position: relative;
  3256. padding: 0
  3257. }
  3258. .ibox-tools a {
  3259. cursor: pointer;
  3260. margin-left: 5px;
  3261. color: #c4c4c4
  3262. }
  3263. .ibox-tools a.btn-primary {
  3264. color: #fff
  3265. }
  3266. .ibox-tools .dropdown-menu>li>a {
  3267. padding: 4px 10px;
  3268. font-size: 12px
  3269. }
  3270. .ibox .open>.dropdown-menu {
  3271. left: auto;
  3272. right: 0
  3273. }
  3274. .gray-bg {
  3275. background-color: #f3f3f4
  3276. }
  3277. .white-bg {
  3278. background-color: #fff
  3279. }
  3280. .navy-bg {
  3281. background-color: #1ab394;
  3282. color: #fff
  3283. }
  3284. .blue-bg {
  3285. background-color: #1c84c6;
  3286. color: #fff
  3287. }
  3288. .lazur-bg {
  3289. background-color: #23c6c8;
  3290. color: #fff
  3291. }
  3292. .yellow-bg {
  3293. background-color: #f8ac59;
  3294. color: #fff
  3295. }
  3296. .red-bg {
  3297. background-color: #ed5565;
  3298. color: #fff
  3299. }
  3300. .black-bg {
  3301. background-color: #262626
  3302. }
  3303. .panel-primary {
  3304. border-color: #1ab394
  3305. }
  3306. .panel-primary>.panel-heading {
  3307. background-color: #1ab394;
  3308. border-color: #1ab394
  3309. }
  3310. .panel-success {
  3311. border-color: #1c84c6
  3312. }
  3313. .panel-success>.panel-heading {
  3314. background-color: #1c84c6;
  3315. border-color: #1c84c6;
  3316. color: #fff
  3317. }
  3318. .panel-info {
  3319. border-color: #23c6c8
  3320. }
  3321. .panel-info>.panel-heading {
  3322. background-color: #23c6c8;
  3323. border-color: #23c6c8;
  3324. color: #fff
  3325. }
  3326. .panel-warning {
  3327. border-color: #f8ac59
  3328. }
  3329. .panel-warning>.panel-heading {
  3330. background-color: #f8ac59;
  3331. border-color: #f8ac59;
  3332. color: #fff
  3333. }
  3334. .panel-danger {
  3335. border-color: #ed5565
  3336. }
  3337. .panel-danger>.panel-heading {
  3338. background-color: #ed5565;
  3339. border-color: #ed5565;
  3340. color: #fff
  3341. }
  3342. .progress-bar {
  3343. background-color: #1ab394
  3344. }
  3345. .progress-small,
  3346. .progress-small .progress-bar {
  3347. height: 10px
  3348. }
  3349. .progress-mini,
  3350. .progress-small {
  3351. margin-top: 5px
  3352. }
  3353. .progress-mini,
  3354. .progress-mini .progress-bar {
  3355. height: 5px;
  3356. margin-bottom: 0
  3357. }
  3358. .progress-bar-navy-light {
  3359. background-color: #3dc7ab
  3360. }
  3361. .progress-bar-success {
  3362. background-color: #1c84c6
  3363. }
  3364. .progress-bar-info {
  3365. background-color: #23c6c8
  3366. }
  3367. .progress-bar-warning {
  3368. background-color: #f8ac59
  3369. }
  3370. .progress-bar-danger {
  3371. background-color: #ed5565
  3372. }
  3373. .panel-title {
  3374. font-size: inherit
  3375. }
  3376. .jumbotron {
  3377. border-radius: 6px;
  3378. padding: 40px
  3379. }
  3380. .jumbotron h1 {
  3381. margin-top: 0
  3382. }
  3383. .text-navy {
  3384. color: #1ab394
  3385. }
  3386. .text-primary {
  3387. color: inherit
  3388. }
  3389. .text-success {
  3390. color: #1c84c6
  3391. }
  3392. .text-info {
  3393. color: #23c6c8
  3394. }
  3395. .text-warning {
  3396. color: #f8ac59
  3397. }
  3398. .text-danger {
  3399. color: #ed5565
  3400. }
  3401. .text-muted {
  3402. color: #888
  3403. }
  3404. .simple_tag {
  3405. background-color: #f3f3f4;
  3406. border: 1px solid #e7eaec;
  3407. border-radius: 2px;
  3408. color: inherit;
  3409. font-size: 10px;
  3410. margin-right: 5px;
  3411. margin-top: 5px;
  3412. padding: 5px 12px;
  3413. display: inline-block
  3414. }
  3415. .img-shadow {
  3416. box-shadow: 0 0 3px 0 #919191
  3417. }
  3418. .ComposeEmail .navbar.navbar-static-top,
  3419. .Dashboard_2 .navbar.navbar-static-top,
  3420. .Dashboard_3 .navbar.navbar-static-top,
  3421. .Dashboard_4_1 .navbar.navbar-static-top,
  3422. .EmailView .navbar.navbar-static-top,
  3423. .Inbox .navbar.navbar-static-top,
  3424. .dashboards\.dashboard_2 nav.navbar,
  3425. .dashboards\.dashboard_3 nav.navbar,
  3426. .dashboards\.dashboard_4_1 nav.navbar,
  3427. .mailbox\.email_compose nav.navbar,
  3428. .mailbox\.email_view nav.navbar,
  3429. .mailbox\.inbox nav.navbar {
  3430. background: #fff
  3431. }
  3432. a.close-canvas-menu {
  3433. position: absolute;
  3434. top: 10px;
  3435. right: 15px;
  3436. z-index: 1011;
  3437. color: #a7b1c2
  3438. }
  3439. a.close-canvas-menu:hover {
  3440. color: #fff
  3441. }
  3442. .full-height {
  3443. height: 100%
  3444. }
  3445. .fh-breadcrumb {
  3446. height: calc(100% - 196px);
  3447. margin: 0 -15px;
  3448. position: relative
  3449. }
  3450. .fh-no-breadcrumb {
  3451. height: calc(100% - 99px);
  3452. margin: 0 -15px;
  3453. position: relative
  3454. }
  3455. .fh-column {
  3456. background: #fff;
  3457. height: 100%;
  3458. width: 240px;
  3459. float: left
  3460. }
  3461. .modal-backdrop {
  3462. z-index: 2040!important
  3463. }
  3464. .modal {
  3465. z-index: 2050!important
  3466. }
  3467. .spiner-example {
  3468. height: 200px;
  3469. padding-top: 70px
  3470. }
  3471. .p-xxs {
  3472. padding: 5px
  3473. }
  3474. .p-xs {
  3475. padding: 10px
  3476. }
  3477. .p-sm {
  3478. padding: 15px
  3479. }
  3480. .p-m {
  3481. padding: 20px
  3482. }
  3483. .p-md {
  3484. padding: 25px
  3485. }
  3486. .p-lg {
  3487. padding: 30px
  3488. }
  3489. .p-xl {
  3490. padding: 40px
  3491. }
  3492. .m-xxs {
  3493. margin: 2px 4px
  3494. }
  3495. .m-xs {
  3496. margin: 5px
  3497. }
  3498. .m-sm {
  3499. margin: 10px
  3500. }
  3501. .m {
  3502. margin: 15px
  3503. }
  3504. .m-md {
  3505. margin: 20px
  3506. }
  3507. .m-lg {
  3508. margin: 30px
  3509. }
  3510. .m-xl {
  3511. margin: 50px
  3512. }
  3513. .m-n {
  3514. margin: 0!important
  3515. }
  3516. .m-l-none {
  3517. margin-left: 0
  3518. }
  3519. .m-l-xs {
  3520. margin-left: 5px
  3521. }
  3522. .m-l-sm {
  3523. margin-left: 10px
  3524. }
  3525. .m-l {
  3526. margin-left: 15px
  3527. }
  3528. .m-l-md {
  3529. margin-left: 20px
  3530. }
  3531. .m-l-lg {
  3532. margin-left: 30px
  3533. }
  3534. .m-l-xl {
  3535. margin-left: 40px
  3536. }
  3537. .m-l-n-xxs {
  3538. margin-left: -1px
  3539. }
  3540. .m-l-n-xs {
  3541. margin-left: -5px
  3542. }
  3543. .m-l-n-sm {
  3544. margin-left: -10px
  3545. }
  3546. .m-l-n {
  3547. margin-left: -15px
  3548. }
  3549. .m-l-n-md {
  3550. margin-left: -20px
  3551. }
  3552. .m-l-n-lg {
  3553. margin-left: -30px
  3554. }
  3555. .m-l-n-xl {
  3556. margin-left: -40px
  3557. }
  3558. .m-t-none {
  3559. margin-top: 0
  3560. }
  3561. .m-t-xxs {
  3562. margin-top: 1px
  3563. }
  3564. .m-t-xs {
  3565. margin-top: 5px
  3566. }
  3567. .m-t-sm {
  3568. margin-top: 10px
  3569. }
  3570. .m-t {
  3571. margin-top: 15px
  3572. }
  3573. .m-t-md {
  3574. margin-top: 20px
  3575. }
  3576. .m-t-lg {
  3577. margin-top: 30px
  3578. }
  3579. .m-t-xl {
  3580. margin-top: 40px
  3581. }
  3582. .m-t-n-xxs {
  3583. margin-top: -1px
  3584. }
  3585. .m-t-n-xs {
  3586. margin-top: -5px
  3587. }
  3588. .m-t-n-sm {
  3589. margin-top: -10px
  3590. }
  3591. .m-t-n {
  3592. margin-top: -15px
  3593. }
  3594. .m-t-n-md {
  3595. margin-top: -20px
  3596. }
  3597. .m-t-n-lg {
  3598. margin-top: -30px
  3599. }
  3600. .m-t-n-xl {
  3601. margin-top: -40px
  3602. }
  3603. .m-r-none {
  3604. margin-right: 0
  3605. }
  3606. .m-r-xxs {
  3607. margin-right: 1px
  3608. }
  3609. .m-r-xs {
  3610. margin-right: 5px
  3611. }
  3612. .m-r-sm {
  3613. margin-right: 10px
  3614. }
  3615. .m-r {
  3616. margin-right: 15px
  3617. }
  3618. .m-r-md {
  3619. margin-right: 20px
  3620. }
  3621. .m-r-lg {
  3622. margin-right: 30px
  3623. }
  3624. .m-r-xl {
  3625. margin-right: 40px
  3626. }
  3627. .m-r-n-xxs {
  3628. margin-right: -1px
  3629. }
  3630. .m-r-n-xs {
  3631. margin-right: -5px
  3632. }
  3633. .m-r-n-sm {
  3634. margin-right: -10px
  3635. }
  3636. .m-r-n {
  3637. margin-right: -15px
  3638. }
  3639. .m-r-n-md {
  3640. margin-right: -20px
  3641. }
  3642. .m-r-n-lg {
  3643. margin-right: -30px
  3644. }
  3645. .m-r-n-xl {
  3646. margin-right: -40px
  3647. }
  3648. .m-b-none {
  3649. margin-bottom: 0
  3650. }
  3651. .m-b-xxs {
  3652. margin-bottom: 1px
  3653. }
  3654. .m-b-xs {
  3655. margin-bottom: 5px
  3656. }
  3657. .m-b-sm {
  3658. margin-bottom: 10px
  3659. }
  3660. .m-b {
  3661. margin-bottom: 15px
  3662. }
  3663. .m-b-md {
  3664. margin-bottom: 20px
  3665. }
  3666. .m-b-lg {
  3667. margin-bottom: 30px
  3668. }
  3669. .m-b-xl {
  3670. margin-bottom: 40px
  3671. }
  3672. .m-b-n-xxs {
  3673. margin-bottom: -1px
  3674. }
  3675. .m-b-n-xs {
  3676. margin-bottom: -5px
  3677. }
  3678. .m-b-n-sm {
  3679. margin-bottom: -10px
  3680. }
  3681. .m-b-n {
  3682. margin-bottom: -15px
  3683. }
  3684. .m-b-n-md {
  3685. margin-bottom: -20px
  3686. }
  3687. .m-b-n-lg {
  3688. margin-bottom: -30px
  3689. }
  3690. .m-b-n-xl {
  3691. margin-bottom: -40px
  3692. }
  3693. .space-15 {
  3694. margin: 15px 0
  3695. }
  3696. .space-20 {
  3697. margin: 20px 0
  3698. }
  3699. .space-25 {
  3700. margin: 25px 0
  3701. }
  3702. .space-30 {
  3703. margin: 30px 0
  3704. }
  3705. body.modal-open {
  3706. padding-right: inherit!important
  3707. }
  3708. .search-form {
  3709. margin-top: 10px
  3710. }
  3711. .search-result h3 {
  3712. margin-bottom: 0;
  3713. color: #1E0FBE
  3714. }
  3715. .search-result .search-link {
  3716. color: #006621
  3717. }
  3718. .search-result p {
  3719. font-size: 12px;
  3720. margin-top: 5px
  3721. }
  3722. .contact-box {
  3723. background-color: #fff;
  3724. border: 1px solid #e7eaec;
  3725. padding: 20px;
  3726. margin-bottom: 20px
  3727. }
  3728. .contact-box a {
  3729. color: inherit
  3730. }
  3731. .invoice-table tbody>tr>td:last-child,
  3732. .invoice-table tbody>tr>td:nth-child(2),
  3733. .invoice-table tbody>tr>td:nth-child(3),
  3734. .invoice-table tbody>tr>td:nth-child(4),
  3735. .invoice-table thead>tr>th:last-child,
  3736. .invoice-table thead>tr>th:nth-child(2),
  3737. .invoice-table thead>tr>th:nth-child(3),
  3738. .invoice-table thead>tr>th:nth-child(4),
  3739. .invoice-total>tbody>tr>td:first-child {
  3740. text-align: right
  3741. }
  3742. .invoice-total>tbody>tr>td {
  3743. border: 0 none
  3744. }
  3745. .invoice-total>tbody>tr>td:last-child {
  3746. border-bottom: 1px solid #DDD;
  3747. text-align: right;
  3748. width: 15%
  3749. }
  3750. .middle-box {
  3751. max-width: 400px;
  3752. z-index: 100;
  3753. margin: 0 auto;
  3754. padding-top: 40px
  3755. }
  3756. .lockscreen.middle-box {
  3757. width: 200px;
  3758. padding-top: 110px
  3759. }
  3760. .loginscreen.middle-box {
  3761. width: 300px
  3762. }
  3763. .loginColumns {
  3764. max-width: 800px;
  3765. margin: 0 auto;
  3766. padding: 100px 20px 20px
  3767. }
  3768. .passwordBox {
  3769. max-width: 460px;
  3770. margin: 0 auto;
  3771. padding: 100px 20px 20px
  3772. }
  3773. .logo-name {
  3774. color: #e6e6e6;
  3775. font-size: 180px;
  3776. font-weight: 800;
  3777. letter-spacing: -10px;
  3778. margin-bottom: 0
  3779. }
  3780. .middle-box h1 {
  3781. font-size: 170px
  3782. }
  3783. .wrapper .middle-box {
  3784. margin-top: 140px
  3785. }
  3786. .lock-word {
  3787. z-index: 10;
  3788. position: absolute;
  3789. top: 110px;
  3790. left: 50%;
  3791. margin-left: -470px
  3792. }
  3793. .lock-word span {
  3794. font-size: 100px;
  3795. font-weight: 600;
  3796. color: #e9e9e9;
  3797. display: inline-block
  3798. }
  3799. .lock-word .first-word {
  3800. margin-right: 160px
  3801. }
  3802. .dashboard-header {
  3803. border-top: 0;
  3804. padding: 20px
  3805. }
  3806. .dashboard-header h2 {
  3807. margin-top: 10px;
  3808. font-size: 26px
  3809. }
  3810. .fist-item {
  3811. border-top: none!important
  3812. }
  3813. .statistic-box {
  3814. margin-top: 40px
  3815. }
  3816. .dashboard-header .list-group-item span.label {
  3817. margin-right: 10px
  3818. }
  3819. .list-group.clear-list .list-group-item {
  3820. border-top: 1px solid #e7eaec;
  3821. border-bottom: 0;
  3822. border-right: 0;
  3823. border-left: 0;
  3824. padding: 10px 0
  3825. }
  3826. ul.clear-list:first-child {
  3827. border-top: none!important
  3828. }
  3829. .timeline-item .date i {
  3830. position: absolute;
  3831. top: 0;
  3832. right: 0;
  3833. padding: 5px;
  3834. width: 30px;
  3835. text-align: center;
  3836. border-top: 1px solid #e7eaec;
  3837. border-bottom: 1px solid #e7eaec;
  3838. border-left: 1px solid #e7eaec;
  3839. background: #f8f8f8
  3840. }
  3841. .timeline-item .date {
  3842. text-align: right;
  3843. width: 110px;
  3844. position: relative;
  3845. padding-top: 30px
  3846. }
  3847. .timeline-item .content {
  3848. border-left: 1px solid #e7eaec;
  3849. border-top: 1px solid #e7eaec;
  3850. padding-top: 10px;
  3851. min-height: 100px
  3852. }
  3853. .timeline-item .content:hover {
  3854. background: #f6f6f6
  3855. }
  3856. ul.notes li,
  3857. ul.tag-list li {
  3858. list-style: none
  3859. }
  3860. ul.notes li h4 {
  3861. margin-top: 20px;
  3862. font-size: 16px
  3863. }
  3864. ul.notes li div {
  3865. position: relative
  3866. }
  3867. ul.notes li div small {
  3868. position: absolute;
  3869. top: 5px;
  3870. right: 5px;
  3871. font-size: 10px
  3872. }
  3873. ul.notes li div a {
  3874. position: absolute;
  3875. right: 10px;
  3876. bottom: 10px;
  3877. color: inherit
  3878. }
  3879. ul.notes li {
  3880. margin: 10px 40px 50px 0;
  3881. float: left
  3882. }
  3883. ul.notes li div p {
  3884. font-size: 12px
  3885. }
  3886. ul.notes li div {
  3887. -webkit-transform: rotate(-6deg);
  3888. -o-transform: rotate(-6deg);
  3889. -moz-transform: rotate(-6deg)
  3890. }
  3891. ul.notes li:nth-child(even) div {
  3892. -o-transform: rotate(4deg);
  3893. -webkit-transform: rotate(4deg);
  3894. -moz-transform: rotate(4deg);
  3895. position: relative;
  3896. top: 5px
  3897. }
  3898. ul.notes li:nth-child(3n) div {
  3899. -o-transform: rotate(-3deg);
  3900. -webkit-transform: rotate(-3deg);
  3901. -moz-transform: rotate(-3deg);
  3902. position: relative;
  3903. top: -5px
  3904. }
  3905. ul.notes li:nth-child(5n) div {
  3906. -o-transform: rotate(5deg);
  3907. -webkit-transform: rotate(5deg);
  3908. -moz-transform: rotate(5deg);
  3909. position: relative;
  3910. top: -10px
  3911. }
  3912. ul.notes li div:focus,
  3913. ul.notes li div:hover {
  3914. -webkit-transform: scale(1.1);
  3915. -moz-transform: scale(1.1);
  3916. -o-transform: scale(1.1);
  3917. position: relative;
  3918. z-index: 5
  3919. }
  3920. ul.notes li div {
  3921. text-decoration: none;
  3922. color: #000;
  3923. background: #ffc;
  3924. display: block;
  3925. height: 210px;
  3926. width: 210px;
  3927. padding: 1em;
  3928. box-shadow: 5px 5px 7px rgba(33, 33, 33, .7);
  3929. -webkit-transition: -webkit-transform .15s linear
  3930. }
  3931. .file-box {
  3932. float: left;
  3933. width: 220px
  3934. }
  3935. .file-manager h5 {
  3936. text-transform: uppercase
  3937. }
  3938. .file-manager {
  3939. list-style: none outside none;
  3940. margin: 0;
  3941. padding: 0
  3942. }
  3943. .folder-list li a {
  3944. color: #666;
  3945. display: block;
  3946. padding: 5px 0
  3947. }
  3948. .folder-list li {
  3949. border-bottom: 1px solid #e7eaec;
  3950. display: block
  3951. }
  3952. .folder-list li i {
  3953. margin-right: 8px;
  3954. color: #3d4d5d
  3955. }
  3956. .category-list li a {
  3957. color: #666;
  3958. display: block;
  3959. padding: 5px 0
  3960. }
  3961. .category-list li {
  3962. display: block
  3963. }
  3964. .category-list li i {
  3965. margin-right: 8px;
  3966. color: #3d4d5d
  3967. }
  3968. .category-list li a .text-navy {
  3969. color: #1ab394
  3970. }
  3971. .category-list li a .text-primary {
  3972. color: #1c84c6
  3973. }
  3974. .category-list li a .text-info {
  3975. color: #23c6c8
  3976. }
  3977. .category-list li a .text-danger {
  3978. color: #EF5352
  3979. }
  3980. .category-list li a .text-warning {
  3981. color: #F8AC59
  3982. }
  3983. .file-manager h5.tag-title {
  3984. margin-top: 20px
  3985. }
  3986. .tag-list li {
  3987. float: left
  3988. }
  3989. .tag-list li a {
  3990. font-size: 10px;
  3991. background-color: #f3f3f4;
  3992. padding: 5px 12px;
  3993. color: inherit;
  3994. border-radius: 2px;
  3995. border: 1px solid #e7eaec;
  3996. margin-right: 5px;
  3997. margin-top: 5px;
  3998. display: block
  3999. }
  4000. .file {
  4001. border: 1px solid #e7eaec;
  4002. padding: 0;
  4003. background-color: #fff;
  4004. position: relative;
  4005. margin-bottom: 20px;
  4006. margin-right: 20px
  4007. }
  4008. .file-manager .hr-line-dashed {
  4009. margin: 15px 0
  4010. }
  4011. .file .icon,
  4012. .file .image {
  4013. height: 100px;
  4014. overflow: hidden
  4015. }
  4016. .file .icon {
  4017. padding: 15px 10px;
  4018. text-align: center
  4019. }
  4020. .file-control {
  4021. color: inherit;
  4022. font-size: 11px;
  4023. margin-right: 10px
  4024. }
  4025. .file-control.active {
  4026. text-decoration: underline
  4027. }
  4028. .file .icon i {
  4029. font-size: 70px;
  4030. color: #dadada
  4031. }
  4032. .file .file-name {
  4033. padding: 10px;
  4034. background-color: #f8f8f8;
  4035. border-top: 1px solid #e7eaec
  4036. }
  4037. .file-name small {
  4038. color: #676a6c
  4039. }
  4040. .corner {
  4041. position: absolute;
  4042. display: inline-block;
  4043. width: 0;
  4044. height: 0;
  4045. line-height: 0;
  4046. border: .6em solid transparent;
  4047. border-right: .6em solid #f1f1f1;
  4048. border-bottom: .6em solid #f1f1f1;
  4049. right: 0;
  4050. bottom: 0
  4051. }
  4052. a.compose-mail {
  4053. padding: 8px 10px
  4054. }
  4055. .mail-search {
  4056. max-width: 300px
  4057. }
  4058. .profile-content {
  4059. border-top: none!important
  4060. }
  4061. .feed-activity-list .feed-element {
  4062. border-bottom: 1px solid #e7eaec
  4063. }
  4064. .feed-element:first-child {
  4065. margin-top: 0
  4066. }
  4067. .feed-element {
  4068. padding-bottom: 15px
  4069. }
  4070. .feed-element,
  4071. .feed-element .media {
  4072. margin-top: 15px
  4073. }
  4074. .feed-element,
  4075. .media-body {
  4076. overflow: hidden
  4077. }
  4078. .feed-element>.pull-left {
  4079. margin-right: 10px
  4080. }
  4081. .dropdown-messages-box img.img-circle,
  4082. .feed-element img.img-circle {
  4083. width: 38px;
  4084. height: 38px
  4085. }
  4086. .feed-element .well {
  4087. border: 1px solid #e7eaec;
  4088. box-shadow: none;
  4089. margin-top: 10px;
  4090. margin-bottom: 5px;
  4091. padding: 10px 20px;
  4092. font-size: 11px;
  4093. line-height: 16px
  4094. }
  4095. .feed-element .actions {
  4096. margin-top: 10px
  4097. }
  4098. .feed-element .photos {
  4099. margin: 10px 0
  4100. }
  4101. .feed-photo {
  4102. max-height: 180px;
  4103. border-radius: 4px;
  4104. overflow: hidden;
  4105. margin-right: 10px;
  4106. margin-bottom: 10px
  4107. }
  4108. .mail-box {
  4109. background-color: #fff;
  4110. border: 1px solid #e7eaec;
  4111. border-top: 0;
  4112. padding: 0;
  4113. margin-bottom: 20px
  4114. }
  4115. .mail-box-header {
  4116. background-color: #fff;
  4117. border: 1px solid #e7eaec;
  4118. border-bottom: 0;
  4119. padding: 30px 20px 20px
  4120. }
  4121. .mail-box-header h2 {
  4122. margin-top: 0
  4123. }
  4124. .mailbox-content .tag-list li a {
  4125. background: #fff
  4126. }
  4127. .mail-body {
  4128. border-top: 1px solid #e7eaec;
  4129. padding: 20px
  4130. }
  4131. .mail-text {
  4132. border-top: 1px solid #e7eaec
  4133. }
  4134. .mail-text .note-toolbar {
  4135. padding: 10px 15px
  4136. }
  4137. .mail-body .form-group {
  4138. margin-bottom: 5px
  4139. }
  4140. .mail-text .note-editor .note-toolbar {
  4141. background-color: #F9F8F8
  4142. }
  4143. .mail-attachment {
  4144. border-top: 1px solid #e7eaec;
  4145. padding: 20px;
  4146. font-size: 12px
  4147. }
  4148. .mailbox-content {
  4149. background: 0 0;
  4150. border: none;
  4151. padding: 10px
  4152. }
  4153. .mail-ontact {
  4154. width: 23%
  4155. }
  4156. .project-actions,
  4157. .project-people {
  4158. text-align: right;
  4159. vertical-align: middle
  4160. }
  4161. dd.project-people {
  4162. text-align: left;
  4163. margin-top: 5px
  4164. }
  4165. .project-people img {
  4166. width: 32px;
  4167. height: 32px
  4168. }
  4169. .project-title a {
  4170. font-size: 14px;
  4171. color: #676a6c;
  4172. font-weight: 600
  4173. }
  4174. .project-list table tr td {
  4175. border-top: none;
  4176. border-bottom: 1px solid #e7eaec;
  4177. padding: 15px 10px;
  4178. vertical-align: middle
  4179. }
  4180. .project-manager .tag-list li a {
  4181. font-size: 10px;
  4182. background-color: #fff;
  4183. padding: 5px 12px;
  4184. color: inherit;
  4185. border-radius: 2px;
  4186. border: 1px solid #e7eaec;
  4187. margin-right: 5px;
  4188. margin-top: 5px;
  4189. display: block
  4190. }
  4191. .project-files li a {
  4192. font-size: 11px;
  4193. color: #676a6c;
  4194. margin-left: 10px;
  4195. line-height: 22px
  4196. }
  4197. .faq-item {
  4198. padding: 20px;
  4199. margin-bottom: 2px;
  4200. background: #fff
  4201. }
  4202. .faq-question {
  4203. font-size: 18px;
  4204. font-weight: 600;
  4205. color: #1ab394;
  4206. display: block
  4207. }
  4208. .faq-question:hover {
  4209. color: #179d82
  4210. }
  4211. .faq-answer {
  4212. margin-top: 10px;
  4213. background: #f3f3f4;
  4214. border: 1px solid #e7eaec;
  4215. border-radius: 3px;
  4216. padding: 15px
  4217. }
  4218. .faq-item .tag-item {
  4219. background: #f3f3f4;
  4220. padding: 2px 6px;
  4221. font-size: 10px;
  4222. text-transform: uppercase
  4223. }
  4224. .message-input {
  4225. height: 90px!important
  4226. }
  4227. .chat-avatar {
  4228. white: 36px;
  4229. height: 36px;
  4230. float: left;
  4231. margin-right: 10px
  4232. }
  4233. .chat-user-name {
  4234. padding: 10px
  4235. }
  4236. .chat-user {
  4237. padding: 8px 10px;
  4238. border-bottom: 1px solid #e7eaec
  4239. }
  4240. .chat-user a {
  4241. color: inherit
  4242. }
  4243. .chat-view {
  4244. z-index: 20012
  4245. }
  4246. .chat-statistic,
  4247. .chat-users {
  4248. margin-left: -30px
  4249. }
  4250. @media (max-width:992px) {
  4251. .chat-statistic,
  4252. .chat-users {
  4253. margin-left: 0
  4254. }
  4255. }
  4256. .chat-view .ibox-content {
  4257. padding: 0
  4258. }
  4259. .chat-message {
  4260. padding: 10px 20px
  4261. }
  4262. .message-avatar {
  4263. height: 48px;
  4264. width: 48px;
  4265. border: 1px solid #e7eaec;
  4266. border-radius: 4px;
  4267. margin-top: 1px
  4268. }
  4269. .chat-discussion .chat-message:nth-child(2n+1) .message-avatar {
  4270. float: left;
  4271. margin-right: 10px
  4272. }
  4273. .chat-discussion .chat-message:nth-child(2n) .message-avatar {
  4274. float: right;
  4275. margin-left: 10px
  4276. }
  4277. .message {
  4278. background-color: #fff;
  4279. border: 1px solid #e7eaec;
  4280. text-align: left;
  4281. display: block;
  4282. padding: 10px 20px;
  4283. position: relative;
  4284. border-radius: 4px
  4285. }
  4286. .chat-discussion .chat-message:nth-child(2n+1) .message-date {
  4287. float: right
  4288. }
  4289. .chat-discussion .chat-message:nth-child(2n) .message-date {
  4290. float: left
  4291. }
  4292. .chat-discussion .chat-message:nth-child(2n+1) .message {
  4293. text-align: left;
  4294. margin-left: 55px
  4295. }
  4296. .chat-discussion .chat-message:nth-child(2n) .message {
  4297. text-align: right;
  4298. margin-right: 55px
  4299. }
  4300. .message-date {
  4301. font-size: 10px;
  4302. color: #888
  4303. }
  4304. .message-content {
  4305. display: block
  4306. }
  4307. .chat-discussion {
  4308. background: #eee;
  4309. padding: 15px;
  4310. height: 400px;
  4311. overflow-y: auto
  4312. }
  4313. .chat-users {
  4314. overflow-y: auto;
  4315. height: 400px
  4316. }
  4317. .chat-message-form .form-group {
  4318. margin-bottom: 0
  4319. }
  4320. .jstree-open>.jstree-anchor>.fa-folder:before {
  4321. content: "\f07c"
  4322. }
  4323. .jstree-default .jstree-icon.none {
  4324. width: 0
  4325. }
  4326. .clients-list {
  4327. margin-top: 20px
  4328. }
  4329. .clients-list .tab-pane {
  4330. position: relative;
  4331. height: 600px
  4332. }
  4333. .client-detail {
  4334. position: relative;
  4335. height: 620px
  4336. }
  4337. .clients-list table tr td {
  4338. height: 46px;
  4339. vertical-align: middle;
  4340. border: none
  4341. }
  4342. .client-link {
  4343. font-weight: 600;
  4344. color: inherit
  4345. }
  4346. .client-link:hover {
  4347. color: inherit
  4348. }
  4349. .client-avatar {
  4350. width: 42px
  4351. }
  4352. .client-avatar img {
  4353. width: 28px;
  4354. height: 28px;
  4355. border-radius: 50%
  4356. }
  4357. .contact-type {
  4358. width: 20px;
  4359. color: #c1c3c4
  4360. }
  4361. .client-status {
  4362. text-align: left
  4363. }
  4364. .client-detail .vertical-timeline-content p {
  4365. margin: 0
  4366. }
  4367. .client-detail .vertical-timeline-icon.gray-bg {
  4368. color: #a7aaab
  4369. }
  4370. .clients-list .nav-tabs>li.active>a,
  4371. .clients-list .nav-tabs>li.active>a:focus,
  4372. .clients-list .nav-tabs>li.active>a:hover {
  4373. border-bottom: 1px solid #fff
  4374. }
  4375. .blog h2 {
  4376. font-weight: 700
  4377. }
  4378. .blog .btn,
  4379. .blog h5 {
  4380. margin: 0 0 5px
  4381. }
  4382. .article h1 {
  4383. font-size: 48px;
  4384. font-weight: 700;
  4385. color: #2F4050
  4386. }
  4387. .article p {
  4388. font-size: 15px;
  4389. line-height: 26px
  4390. }
  4391. .article-title {
  4392. text-align: center;
  4393. margin: 60px 0 40px
  4394. }
  4395. .article .ibox-content {
  4396. padding: 40px
  4397. }
  4398. .issue-tracker .btn-link {
  4399. color: #1ab394
  4400. }
  4401. table.issue-tracker tbody tr td {
  4402. vertical-align: middle;
  4403. height: 50px
  4404. }
  4405. .issue-info {
  4406. width: 50%
  4407. }
  4408. .issue-info a {
  4409. font-weight: 600;
  4410. color: #676a6c
  4411. }
  4412. .issue-info small {
  4413. display: block
  4414. }
  4415. .team-members {
  4416. margin: 10px 0
  4417. }
  4418. .team-members img.img-circle {
  4419. width: 42px;
  4420. height: 42px;
  4421. margin-bottom: 5px
  4422. }
  4423. .sortable-list {
  4424. padding: 10px 0
  4425. }
  4426. .agile-list {
  4427. list-style: none;
  4428. margin: 0
  4429. }
  4430. .agile-list li {
  4431. background: #FAFAFB;
  4432. border: 1px solid #e7eaec;
  4433. margin: 0 0 10px;
  4434. padding: 10px;
  4435. border-radius: 2px
  4436. }
  4437. .agile-list li:hover {
  4438. cursor: pointer;
  4439. background: #fff
  4440. }
  4441. .agile-list li.warning-element {
  4442. border-left: 3px solid #f8ac59
  4443. }
  4444. .agile-list li.danger-element {
  4445. border-left: 3px solid #ed5565
  4446. }
  4447. .agile-list li.info-element {
  4448. border-left: 3px solid #1c84c6
  4449. }
  4450. .agile-list li.success-element {
  4451. border-left: 3px solid #1ab394
  4452. }
  4453. .agile-detail {
  4454. margin-top: 5px;
  4455. font-size: 12px
  4456. }
  4457. ins {
  4458. background-color: #c6ffc6;
  4459. text-decoration: none
  4460. }
  4461. del {
  4462. background-color: #ffc6c6
  4463. }
  4464. #small-chat {
  4465. position: fixed;
  4466. bottom: 50px;
  4467. right: 26px;
  4468. z-index: 100
  4469. }
  4470. #small-chat .badge {
  4471. position: absolute;
  4472. top: -3px;
  4473. right: -4px
  4474. }
  4475. .open-small-chat {
  4476. height: 38px;
  4477. width: 38px;
  4478. display: block;
  4479. background: #1ab394;
  4480. padding: 9px 8px;
  4481. text-align: center;
  4482. color: #fff;
  4483. border-radius: 50%
  4484. }
  4485. .open-small-chat:hover {
  4486. color: #fff;
  4487. background: #1ab394
  4488. }
  4489. .small-chat-box {
  4490. display: none;
  4491. position: fixed;
  4492. bottom: 50px;
  4493. right: 80px;
  4494. background: #fff;
  4495. border: 1px solid #e7eaec;
  4496. width: 230px;
  4497. height: 320px;
  4498. border-radius: 4px
  4499. }
  4500. .small-chat-box.ng-small-chat {
  4501. display: block
  4502. }
  4503. .body-small .small-chat-box {
  4504. bottom: 70px;
  4505. right: 20px
  4506. }
  4507. .small-chat-box.active {
  4508. display: block
  4509. }
  4510. .small-chat-box .heading {
  4511. background: #2f4050;
  4512. padding: 8px 15px;
  4513. font-weight: 700;
  4514. color: #fff
  4515. }
  4516. .small-chat-box .chat-date {
  4517. opacity: .6;
  4518. font-size: 10px;
  4519. font-weight: 400
  4520. }
  4521. .small-chat-box .content {
  4522. padding: 15px
  4523. }
  4524. .small-chat-box .content .author-name {
  4525. font-weight: 700;
  4526. margin-bottom: 3px;
  4527. font-size: 11px
  4528. }
  4529. .small-chat-box .content>div {
  4530. padding-bottom: 20px
  4531. }
  4532. .small-chat-box .content .chat-message {
  4533. padding: 5px 10px;
  4534. border-radius: 6px;
  4535. font-size: 11px;
  4536. line-height: 14px;
  4537. max-width: 80%;
  4538. background: #f3f3f4;
  4539. margin-bottom: 10px
  4540. }
  4541. .small-chat-box .content .chat-message.active {
  4542. background: #1ab394;
  4543. color: #fff
  4544. }
  4545. .small-chat-box .content .left {
  4546. text-align: left;
  4547. clear: both
  4548. }
  4549. .small-chat-box .content .left .chat-message {
  4550. float: left
  4551. }
  4552. .small-chat-box .content .right {
  4553. text-align: right;
  4554. clear: both
  4555. }
  4556. .small-chat-box .content .right .chat-message {
  4557. float: right
  4558. }
  4559. .small-chat-box .form-chat {
  4560. padding: 10px
  4561. }
  4562. .sk-spinner-rotating-plane.sk-spinner {
  4563. width: 30px;
  4564. height: 30px;
  4565. background-color: #1ab394;
  4566. margin: 0 auto;
  4567. -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  4568. animation: sk-rotatePlane 1.2s infinite ease-in-out
  4569. }
  4570. @-webkit-keyframes sk-rotatePlane {
  4571. 0% {
  4572. -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  4573. transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  4574. }
  4575. 50% {
  4576. -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  4577. transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  4578. }
  4579. 100% {
  4580. -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  4581. transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
  4582. }
  4583. }
  4584. @keyframes sk-rotatePlane {
  4585. 0% {
  4586. -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  4587. transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  4588. }
  4589. 50% {
  4590. -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  4591. transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  4592. }
  4593. 100% {
  4594. -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  4595. transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
  4596. }
  4597. }
  4598. .sk-spinner-double-bounce.sk-spinner {
  4599. width: 40px;
  4600. height: 40px;
  4601. position: relative;
  4602. margin: 0 auto
  4603. }
  4604. .sk-spinner-double-bounce .sk-double-bounce1,
  4605. .sk-spinner-double-bounce .sk-double-bounce2 {
  4606. width: 100%;
  4607. height: 100%;
  4608. border-radius: 50%;
  4609. background-color: #1ab394;
  4610. opacity: .6;
  4611. position: absolute;
  4612. top: 0;
  4613. left: 0;
  4614. -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
  4615. animation: sk-doubleBounce 2s infinite ease-in-out
  4616. }
  4617. .sk-spinner-double-bounce .sk-double-bounce2 {
  4618. -webkit-animation-delay: -1s;
  4619. animation-delay: -1s
  4620. }
  4621. @-webkit-keyframes sk-doubleBounce {
  4622. 0%,
  4623. 100% {
  4624. -webkit-transform: scale(0);
  4625. transform: scale(0)
  4626. }
  4627. 50% {
  4628. -webkit-transform: scale(1);
  4629. transform: scale(1)
  4630. }
  4631. }
  4632. @keyframes sk-doubleBounce {
  4633. 0%,
  4634. 100% {
  4635. -webkit-transform: scale(0);
  4636. transform: scale(0)
  4637. }
  4638. 50% {
  4639. -webkit-transform: scale(1);
  4640. transform: scale(1)
  4641. }
  4642. }
  4643. .sk-spinner-wave.sk-spinner {
  4644. margin: 0 auto;
  4645. width: 50px;
  4646. height: 30px;
  4647. text-align: center;
  4648. font-size: 10px
  4649. }
  4650. .sk-spinner-wave div {
  4651. background-color: #1ab394;
  4652. height: 100%;
  4653. width: 6px;
  4654. display: inline-block;
  4655. -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  4656. animation: sk-waveStretchDelay 1.2s infinite ease-in-out
  4657. }
  4658. .sk-spinner-wave .sk-rect2 {
  4659. -webkit-animation-delay: -1.1s;
  4660. animation-delay: -1.1s
  4661. }
  4662. .sk-spinner-wave .sk-rect3 {
  4663. -webkit-animation-delay: -1s;
  4664. animation-delay: -1s
  4665. }
  4666. .sk-spinner-wave .sk-rect4 {
  4667. -webkit-animation-delay: -.9s;
  4668. animation-delay: -.9s
  4669. }
  4670. .sk-spinner-wave .sk-rect5 {
  4671. -webkit-animation-delay: -.8s;
  4672. animation-delay: -.8s
  4673. }
  4674. @-webkit-keyframes sk-waveStretchDelay {
  4675. 0%,
  4676. 100%,
  4677. 40% {
  4678. -webkit-transform: scaleY(0.4);
  4679. transform: scaleY(0.4)
  4680. }
  4681. 20% {
  4682. -webkit-transform: scaleY(1);
  4683. transform: scaleY(1)
  4684. }
  4685. }
  4686. @keyframes sk-waveStretchDelay {
  4687. 0%,
  4688. 100%,
  4689. 40% {
  4690. -webkit-transform: scaleY(0.4);
  4691. transform: scaleY(0.4)
  4692. }
  4693. 20% {
  4694. -webkit-transform: scaleY(1);
  4695. transform: scaleY(1)
  4696. }
  4697. }
  4698. .sk-spinner-wandering-cubes.sk-spinner {
  4699. margin: 0 auto;
  4700. width: 32px;
  4701. height: 32px;
  4702. position: relative
  4703. }
  4704. .sk-spinner-wandering-cubes .sk-cube1,
  4705. .sk-spinner-wandering-cubes .sk-cube2 {
  4706. background-color: #1ab394;
  4707. width: 10px;
  4708. height: 10px;
  4709. position: absolute;
  4710. top: 0;
  4711. left: 0;
  4712. -webkit-animation: sk-wanderingCubeMove 1.8s infinite ease-in-out;
  4713. animation: sk-wanderingCubeMove 1.8s infinite ease-in-out
  4714. }
  4715. .sk-spinner-wandering-cubes .sk-cube2 {
  4716. -webkit-animation-delay: -.9s;
  4717. animation-delay: -.9s
  4718. }
  4719. @-webkit-keyframes sk-wanderingCubeMove {
  4720. 25% {
  4721. -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  4722. transform: translateX(42px) rotate(-90deg) scale(0.5)
  4723. }
  4724. 50% {
  4725. -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  4726. transform: translateX(42px) translateY(42px) rotate(-179deg)
  4727. }
  4728. 50.1% {
  4729. -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  4730. transform: translateX(42px) translateY(42px) rotate(-180deg)
  4731. }
  4732. 75% {
  4733. -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  4734. transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
  4735. }
  4736. 100% {
  4737. -webkit-transform: rotate(-360deg);
  4738. transform: rotate(-360deg)
  4739. }
  4740. }
  4741. @keyframes sk-wanderingCubeMove {
  4742. 25% {
  4743. -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  4744. transform: translateX(42px) rotate(-90deg) scale(0.5)
  4745. }
  4746. 50% {
  4747. -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  4748. transform: translateX(42px) translateY(42px) rotate(-179deg)
  4749. }
  4750. 50.1% {
  4751. -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  4752. transform: translateX(42px) translateY(42px) rotate(-180deg)
  4753. }
  4754. 75% {
  4755. -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  4756. transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
  4757. }
  4758. 100% {
  4759. -webkit-transform: rotate(-360deg);
  4760. transform: rotate(-360deg)
  4761. }
  4762. }
  4763. .sk-spinner-pulse.sk-spinner {
  4764. width: 40px;
  4765. height: 40px;
  4766. margin: 0 auto;
  4767. background-color: #1ab394;
  4768. border-radius: 100%;
  4769. -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
  4770. animation: sk-pulseScaleOut 1s infinite ease-in-out
  4771. }
  4772. @-webkit-keyframes sk-pulseScaleOut {
  4773. 0% {
  4774. -webkit-transform: scale(0);
  4775. transform: scale(0)
  4776. }
  4777. 100% {
  4778. -webkit-transform: scale(1);
  4779. transform: scale(1);
  4780. opacity: 0
  4781. }
  4782. }
  4783. @keyframes sk-pulseScaleOut {
  4784. 0% {
  4785. -webkit-transform: scale(0);
  4786. transform: scale(0)
  4787. }
  4788. 100% {
  4789. -webkit-transform: scale(1);
  4790. transform: scale(1);
  4791. opacity: 0
  4792. }
  4793. }
  4794. .sk-spinner-chasing-dots.sk-spinner {
  4795. margin: 0 auto;
  4796. width: 40px;
  4797. height: 40px;
  4798. position: relative;
  4799. text-align: center;
  4800. -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
  4801. animation: sk-chasingDotsRotate 2s infinite linear
  4802. }
  4803. .sk-spinner-chasing-dots .sk-dot1,
  4804. .sk-spinner-chasing-dots .sk-dot2 {
  4805. width: 60%;
  4806. height: 60%;
  4807. display: inline-block;
  4808. position: absolute;
  4809. top: 0;
  4810. background-color: #1ab394;
  4811. border-radius: 100%;
  4812. -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
  4813. animation: sk-chasingDotsBounce 2s infinite ease-in-out
  4814. }
  4815. .sk-spinner-chasing-dots .sk-dot2 {
  4816. top: auto;
  4817. bottom: 0;
  4818. -webkit-animation-delay: -1s;
  4819. animation-delay: -1s
  4820. }
  4821. @-webkit-keyframes sk-chasingDotsRotate {
  4822. 100% {
  4823. -webkit-transform: rotate(360deg);
  4824. transform: rotate(360deg)
  4825. }
  4826. }
  4827. @keyframes sk-chasingDotsRotate {
  4828. 100% {
  4829. -webkit-transform: rotate(360deg);
  4830. transform: rotate(360deg)
  4831. }
  4832. }
  4833. @-webkit-keyframes sk-chasingDotsBounce {
  4834. 0%,
  4835. 100% {
  4836. -webkit-transform: scale(0);
  4837. transform: scale(0)
  4838. }
  4839. 50% {
  4840. -webkit-transform: scale(1);
  4841. transform: scale(1)
  4842. }
  4843. }
  4844. @keyframes sk-chasingDotsBounce {
  4845. 0%,
  4846. 100% {
  4847. -webkit-transform: scale(0);
  4848. transform: scale(0)
  4849. }
  4850. 50% {
  4851. -webkit-transform: scale(1);
  4852. transform: scale(1)
  4853. }
  4854. }
  4855. .sk-spinner-three-bounce.sk-spinner {
  4856. margin: 0 auto;
  4857. width: 70px;
  4858. text-align: center
  4859. }
  4860. .sk-spinner-three-bounce div {
  4861. width: 18px;
  4862. height: 18px;
  4863. background-color: #1ab394;
  4864. border-radius: 100%;
  4865. display: inline-block;
  4866. -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
  4867. animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
  4868. -webkit-animation-fill-mode: both;
  4869. animation-fill-mode: both
  4870. }
  4871. .sk-spinner-three-bounce .sk-bounce1 {
  4872. -webkit-animation-delay: -.32s;
  4873. animation-delay: -.32s
  4874. }
  4875. .sk-spinner-three-bounce .sk-bounce2 {
  4876. -webkit-animation-delay: -.16s;
  4877. animation-delay: -.16s
  4878. }
  4879. @-webkit-keyframes sk-threeBounceDelay {
  4880. 0%,
  4881. 100%,
  4882. 80% {
  4883. -webkit-transform: scale(0);
  4884. transform: scale(0)
  4885. }
  4886. 40% {
  4887. -webkit-transform: scale(1);
  4888. transform: scale(1)
  4889. }
  4890. }
  4891. @keyframes sk-threeBounceDelay {
  4892. 0%,
  4893. 100%,
  4894. 80% {
  4895. -webkit-transform: scale(0);
  4896. transform: scale(0)
  4897. }
  4898. 40% {
  4899. -webkit-transform: scale(1);
  4900. transform: scale(1)
  4901. }
  4902. }
  4903. .sk-spinner-circle.sk-spinner {
  4904. margin: 0 auto;
  4905. width: 22px;
  4906. height: 22px;
  4907. position: relative
  4908. }
  4909. .sk-spinner-circle .sk-circle {
  4910. width: 100%;
  4911. height: 100%;
  4912. position: absolute;
  4913. left: 0;
  4914. top: 0
  4915. }
  4916. .sk-spinner-circle .sk-circle:before {
  4917. content: '';
  4918. display: block;
  4919. margin: 0 auto;
  4920. width: 20%;
  4921. height: 20%;
  4922. background-color: #1ab394;
  4923. border-radius: 100%;
  4924. -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
  4925. animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
  4926. -webkit-animation-fill-mode: both;
  4927. animation-fill-mode: both
  4928. }
  4929. .sk-spinner-circle .sk-circle2 {
  4930. -webkit-transform: rotate(30deg);
  4931. -ms-transform: rotate(30deg);
  4932. transform: rotate(30deg)
  4933. }
  4934. .sk-spinner-circle .sk-circle3 {
  4935. -webkit-transform: rotate(60deg);
  4936. -ms-transform: rotate(60deg);
  4937. transform: rotate(60deg)
  4938. }
  4939. .sk-spinner-circle .sk-circle4 {
  4940. -webkit-transform: rotate(90deg);
  4941. -ms-transform: rotate(90deg);
  4942. transform: rotate(90deg)
  4943. }
  4944. .sk-spinner-circle .sk-circle5 {
  4945. -webkit-transform: rotate(120deg);
  4946. -ms-transform: rotate(120deg);
  4947. transform: rotate(120deg)
  4948. }
  4949. .sk-spinner-circle .sk-circle6 {
  4950. -webkit-transform: rotate(150deg);
  4951. -ms-transform: rotate(150deg);
  4952. transform: rotate(150deg)
  4953. }
  4954. .sk-spinner-circle .sk-circle7 {
  4955. -webkit-transform: rotate(180deg);
  4956. -ms-transform: rotate(180deg);
  4957. transform: rotate(180deg)
  4958. }
  4959. .sk-spinner-circle .sk-circle8 {
  4960. -webkit-transform: rotate(210deg);
  4961. -ms-transform: rotate(210deg);
  4962. transform: rotate(210deg)
  4963. }
  4964. .sk-spinner-circle .sk-circle9 {
  4965. -webkit-transform: rotate(240deg);
  4966. -ms-transform: rotate(240deg);
  4967. transform: rotate(240deg)
  4968. }
  4969. .sk-spinner-circle .sk-circle10 {
  4970. -webkit-transform: rotate(270deg);
  4971. -ms-transform: rotate(270deg);
  4972. transform: rotate(270deg)
  4973. }
  4974. .sk-spinner-circle .sk-circle11 {
  4975. -webkit-transform: rotate(300deg);
  4976. -ms-transform: rotate(300deg);
  4977. transform: rotate(300deg)
  4978. }
  4979. .sk-spinner-circle .sk-circle12 {
  4980. -webkit-transform: rotate(330deg);
  4981. -ms-transform: rotate(330deg);
  4982. transform: rotate(330deg)
  4983. }
  4984. .sk-spinner-circle .sk-circle2:before {
  4985. -webkit-animation-delay: -1.1s;
  4986. animation-delay: -1.1s
  4987. }
  4988. .sk-spinner-circle .sk-circle3:before {
  4989. -webkit-animation-delay: -1s;
  4990. animation-delay: -1s
  4991. }
  4992. .sk-spinner-circle .sk-circle4:before {
  4993. -webkit-animation-delay: -.9s;
  4994. animation-delay: -.9s
  4995. }
  4996. .sk-spinner-circle .sk-circle5:before {
  4997. -webkit-animation-delay: -.8s;
  4998. animation-delay: -.8s
  4999. }
  5000. .sk-spinner-circle .sk-circle6:before {
  5001. -webkit-animation-delay: -.7s;
  5002. animation-delay: -.7s
  5003. }
  5004. .sk-spinner-circle .sk-circle7:before {
  5005. -webkit-animation-delay: -.6s;
  5006. animation-delay: -.6s
  5007. }
  5008. .sk-spinner-circle .sk-circle8:before {
  5009. -webkit-animation-delay: -.5s;
  5010. animation-delay: -.5s
  5011. }
  5012. .sk-spinner-circle .sk-circle9:before {
  5013. -webkit-animation-delay: -.4s;
  5014. animation-delay: -.4s
  5015. }
  5016. .sk-spinner-circle .sk-circle10:before {
  5017. -webkit-animation-delay: -.3s;
  5018. animation-delay: -.3s
  5019. }
  5020. .sk-spinner-circle .sk-circle11:before {
  5021. -webkit-animation-delay: -.2s;
  5022. animation-delay: -.2s
  5023. }
  5024. .sk-spinner-circle .sk-circle12:before {
  5025. -webkit-animation-delay: -.1s;
  5026. animation-delay: -.1s
  5027. }
  5028. @-webkit-keyframes sk-circleBounceDelay {
  5029. 0%,
  5030. 100%,
  5031. 80% {
  5032. -webkit-transform: scale(0);
  5033. transform: scale(0)
  5034. }
  5035. 40% {
  5036. -webkit-transform: scale(1);
  5037. transform: scale(1)
  5038. }
  5039. }
  5040. @keyframes sk-circleBounceDelay {
  5041. 0%,
  5042. 100%,
  5043. 80% {
  5044. -webkit-transform: scale(0);
  5045. transform: scale(0)
  5046. }
  5047. 40% {
  5048. -webkit-transform: scale(1);
  5049. transform: scale(1)
  5050. }
  5051. }
  5052. .sk-spinner-cube-grid.sk-spinner {
  5053. width: 30px;
  5054. height: 30px;
  5055. margin: 0 auto
  5056. }
  5057. .sk-spinner-cube-grid .sk-cube {
  5058. width: 33%;
  5059. height: 33%;
  5060. background-color: #1ab394;
  5061. float: left;
  5062. -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  5063. animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out
  5064. }
  5065. .sk-spinner-cube-grid .sk-cube:nth-child(1) {
  5066. -webkit-animation-delay: .2s;
  5067. animation-delay: .2s
  5068. }
  5069. .sk-spinner-cube-grid .sk-cube:nth-child(2) {
  5070. -webkit-animation-delay: .3s;
  5071. animation-delay: .3s
  5072. }
  5073. .sk-spinner-cube-grid .sk-cube:nth-child(3) {
  5074. -webkit-animation-delay: .4s;
  5075. animation-delay: .4s
  5076. }
  5077. .sk-spinner-cube-grid .sk-cube:nth-child(4) {
  5078. -webkit-animation-delay: .1s;
  5079. animation-delay: .1s
  5080. }
  5081. .sk-spinner-cube-grid .sk-cube:nth-child(5) {
  5082. -webkit-animation-delay: .2s;
  5083. animation-delay: .2s
  5084. }
  5085. .sk-spinner-cube-grid .sk-cube:nth-child(6) {
  5086. -webkit-animation-delay: .3s;
  5087. animation-delay: .3s
  5088. }
  5089. .sk-spinner-cube-grid .sk-cube:nth-child(7) {
  5090. -webkit-animation-delay: 0s;
  5091. animation-delay: 0s
  5092. }
  5093. .sk-spinner-cube-grid .sk-cube:nth-child(8) {
  5094. -webkit-animation-delay: .1s;
  5095. animation-delay: .1s
  5096. }
  5097. .sk-spinner-cube-grid .sk-cube:nth-child(9) {
  5098. -webkit-animation-delay: .2s;
  5099. animation-delay: .2s
  5100. }
  5101. @-webkit-keyframes sk-cubeGridScaleDelay {
  5102. 0%,
  5103. 100%,
  5104. 70% {
  5105. -webkit-transform: scale3D(1, 1, 1);
  5106. transform: scale3D(1, 1, 1)
  5107. }
  5108. 35% {
  5109. -webkit-transform: scale3D(0, 0, 1);
  5110. transform: scale3D(0, 0, 1)
  5111. }
  5112. }
  5113. @keyframes sk-cubeGridScaleDelay {
  5114. 0%,
  5115. 100%,
  5116. 70% {
  5117. -webkit-transform: scale3D(1, 1, 1);
  5118. transform: scale3D(1, 1, 1)
  5119. }
  5120. 35% {
  5121. -webkit-transform: scale3D(0, 0, 1);
  5122. transform: scale3D(0, 0, 1)
  5123. }
  5124. }
  5125. .sk-spinner-wordpress.sk-spinner {
  5126. background-color: #1ab394;
  5127. width: 30px;
  5128. height: 30px;
  5129. border-radius: 30px;
  5130. position: relative;
  5131. margin: 0 auto;
  5132. -webkit-animation: sk-innerCircle 1s linear infinite;
  5133. animation: sk-innerCircle 1s linear infinite
  5134. }
  5135. .sk-spinner-wordpress .sk-inner-circle {
  5136. display: block;
  5137. background-color: #fff;
  5138. width: 8px;
  5139. height: 8px;
  5140. position: absolute;
  5141. border-radius: 8px;
  5142. top: 5px;
  5143. left: 5px
  5144. }
  5145. @-webkit-keyframes sk-innerCircle {
  5146. 0% {
  5147. -webkit-transform: rotate(0);
  5148. transform: rotate(0)
  5149. }
  5150. 100% {
  5151. -webkit-transform: rotate(360deg);
  5152. transform: rotate(360deg)
  5153. }
  5154. }
  5155. @keyframes sk-innerCircle {
  5156. 0% {
  5157. -webkit-transform: rotate(0);
  5158. transform: rotate(0)
  5159. }
  5160. 100% {
  5161. -webkit-transform: rotate(360deg);
  5162. transform: rotate(360deg)
  5163. }
  5164. }
  5165. .sk-spinner-fading-circle.sk-spinner {
  5166. margin: 0 auto;
  5167. width: 22px;
  5168. height: 22px;
  5169. position: relative
  5170. }
  5171. .sk-spinner-fading-circle .sk-circle {
  5172. width: 100%;
  5173. height: 100%;
  5174. position: absolute;
  5175. left: 0;
  5176. top: 0
  5177. }
  5178. .sk-spinner-fading-circle .sk-circle:before {
  5179. content: '';
  5180. display: block;
  5181. margin: 0 auto;
  5182. width: 18%;
  5183. height: 18%;
  5184. background-color: #1ab394;
  5185. border-radius: 100%;
  5186. -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
  5187. animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
  5188. -webkit-animation-fill-mode: both;
  5189. animation-fill-mode: both
  5190. }
  5191. .sk-spinner-fading-circle .sk-circle2 {
  5192. -webkit-transform: rotate(30deg);
  5193. -ms-transform: rotate(30deg);
  5194. transform: rotate(30deg)
  5195. }
  5196. .sk-spinner-fading-circle .sk-circle3 {
  5197. -webkit-transform: rotate(60deg);
  5198. -ms-transform: rotate(60deg);
  5199. transform: rotate(60deg)
  5200. }
  5201. .sk-spinner-fading-circle .sk-circle4 {
  5202. -webkit-transform: rotate(90deg);
  5203. -ms-transform: rotate(90deg);
  5204. transform: rotate(90deg)
  5205. }
  5206. .sk-spinner-fading-circle .sk-circle5 {
  5207. -webkit-transform: rotate(120deg);
  5208. -ms-transform: rotate(120deg);
  5209. transform: rotate(120deg)
  5210. }
  5211. .sk-spinner-fading-circle .sk-circle6 {
  5212. -webkit-transform: rotate(150deg);
  5213. -ms-transform: rotate(150deg);
  5214. transform: rotate(150deg)
  5215. }
  5216. .sk-spinner-fading-circle .sk-circle7 {
  5217. -webkit-transform: rotate(180deg);
  5218. -ms-transform: rotate(180deg);
  5219. transform: rotate(180deg)
  5220. }
  5221. .sk-spinner-fading-circle .sk-circle8 {
  5222. -webkit-transform: rotate(210deg);
  5223. -ms-transform: rotate(210deg);
  5224. transform: rotate(210deg)
  5225. }
  5226. .sk-spinner-fading-circle .sk-circle9 {
  5227. -webkit-transform: rotate(240deg);
  5228. -ms-transform: rotate(240deg);
  5229. transform: rotate(240deg)
  5230. }
  5231. .sk-spinner-fading-circle .sk-circle10 {
  5232. -webkit-transform: rotate(270deg);
  5233. -ms-transform: rotate(270deg);
  5234. transform: rotate(270deg)
  5235. }
  5236. .sk-spinner-fading-circle .sk-circle11 {
  5237. -webkit-transform: rotate(300deg);
  5238. -ms-transform: rotate(300deg);
  5239. transform: rotate(300deg)
  5240. }
  5241. .sk-spinner-fading-circle .sk-circle12 {
  5242. -webkit-transform: rotate(330deg);
  5243. -ms-transform: rotate(330deg);
  5244. transform: rotate(330deg)
  5245. }
  5246. .sk-spinner-fading-circle .sk-circle2:before {
  5247. -webkit-animation-delay: -1.1s;
  5248. animation-delay: -1.1s
  5249. }
  5250. .sk-spinner-fading-circle .sk-circle3:before {
  5251. -webkit-animation-delay: -1s;
  5252. animation-delay: -1s
  5253. }
  5254. .sk-spinner-fading-circle .sk-circle4:before {
  5255. -webkit-animation-delay: -.9s;
  5256. animation-delay: -.9s
  5257. }
  5258. .sk-spinner-fading-circle .sk-circle5:before {
  5259. -webkit-animation-delay: -.8s;
  5260. animation-delay: -.8s
  5261. }
  5262. .sk-spinner-fading-circle .sk-circle6:before {
  5263. -webkit-animation-delay: -.7s;
  5264. animation-delay: -.7s
  5265. }
  5266. .sk-spinner-fading-circle .sk-circle7:before {
  5267. -webkit-animation-delay: -.6s;
  5268. animation-delay: -.6s
  5269. }
  5270. .sk-spinner-fading-circle .sk-circle8:before {
  5271. -webkit-animation-delay: -.5s;
  5272. animation-delay: -.5s
  5273. }
  5274. .sk-spinner-fading-circle .sk-circle9:before {
  5275. -webkit-animation-delay: -.4s;
  5276. animation-delay: -.4s
  5277. }
  5278. .sk-spinner-fading-circle .sk-circle10:before {
  5279. -webkit-animation-delay: -.3s;
  5280. animation-delay: -.3s
  5281. }
  5282. .sk-spinner-fading-circle .sk-circle11:before {
  5283. -webkit-animation-delay: -.2s;
  5284. animation-delay: -.2s
  5285. }
  5286. .sk-spinner-fading-circle .sk-circle12:before {
  5287. -webkit-animation-delay: -.1s;
  5288. animation-delay: -.1s
  5289. }
  5290. @-webkit-keyframes sk-circleFadeDelay {
  5291. 0%,
  5292. 100%,
  5293. 39% {
  5294. opacity: 0
  5295. }
  5296. 40% {
  5297. opacity: 1
  5298. }
  5299. }
  5300. @keyframes sk-circleFadeDelay {
  5301. 0%,
  5302. 100%,
  5303. 39% {
  5304. opacity: 0
  5305. }
  5306. 40% {
  5307. opacity: 1
  5308. }
  5309. }
  5310. body.rtls #page-wrapper {
  5311. margin: 0 220px 0 0
  5312. }
  5313. body.rtls .nav-second-level li a {
  5314. padding: 7px 35px 7px 10px
  5315. }
  5316. body.rtls .ibox-title h5 {
  5317. float: right
  5318. }
  5319. body.rtls .pull-right {
  5320. float: left!important
  5321. }
  5322. body.rtls .pull-left {
  5323. float: right!important
  5324. }
  5325. body.rtls .ibox-tools,
  5326. body.rtls .stat-percent {
  5327. float: left
  5328. }
  5329. body.rtls .navbar-right {
  5330. float: left!important
  5331. }
  5332. body.rtls .navbar-top-links li:last-child {
  5333. margin-right: 0
  5334. }
  5335. body.rtls .minimalize-styl-2 {
  5336. float: right;
  5337. margin: 14px 20px 5px 5px
  5338. }
  5339. body.rtls .feed-element>.pull-left {
  5340. margin-left: 10px;
  5341. margin-right: 0
  5342. }
  5343. body.rtls .timeline-item .date {
  5344. text-align: left
  5345. }
  5346. body.rtls .timeline-item .date i {
  5347. left: 0;
  5348. right: auto
  5349. }
  5350. body.rtls .timeline-item .content {
  5351. border-right: 1px solid #e7eaec;
  5352. border-left: none
  5353. }
  5354. body.rtls .toast-close-button {
  5355. float: left
  5356. }
  5357. body.rtls #toast-container>.toast:before {
  5358. margin: auto -1.5em auto .5em
  5359. }
  5360. body.rtls #toast-container>div {
  5361. padding: 15px 50px 15px 15px
  5362. }
  5363. body.rtls .center-orientation .vertical-timeline-icon i {
  5364. margin-left: 0;
  5365. margin-right: -12px
  5366. }
  5367. body.rtls .vertical-timeline-icon i {
  5368. right: 50%;
  5369. left: auto;
  5370. margin-left: auto;
  5371. margin-right: -12px
  5372. }
  5373. body.rtls .file-box,
  5374. body.rtls ul.notes li {
  5375. float: right
  5376. }
  5377. body.rtls .chat-statistic,
  5378. body.rtls .chat-users {
  5379. margin-right: -30px;
  5380. margin-left: auto
  5381. }
  5382. body.rtls .dropdown-menu>li>a {
  5383. text-align: right
  5384. }
  5385. body.rtls .b-r {
  5386. border-left: 1px solid #e7eaec;
  5387. border-right: none
  5388. }
  5389. body.rtls .dd-list .dd-list {
  5390. padding-right: 30px;
  5391. padding-left: 0
  5392. }
  5393. body.rtls .dd-item>button {
  5394. float: right
  5395. }
  5396. body.rtls .skin-setttings {
  5397. margin-right: 40px;
  5398. margin-left: 0;
  5399. direction: ltr
  5400. }
  5401. body.rtls .footer.fixed {
  5402. margin-right: 220px;
  5403. margin-left: 0
  5404. }
  5405. @media (max-width:992px) {
  5406. body.rtls .chat-statistic,
  5407. body.rtls .chat-users {
  5408. margin-right: 0
  5409. }
  5410. }
  5411. body.body-small.mini-navbar .footer.fixed,
  5412. body.rtls.mini-navbar .footer.fixed {
  5413. margin: 0 70px 0 0
  5414. }
  5415. body.body-small.mini-navbar .footer.fixed,
  5416. body.rtls.mini-navbar.fixed-sidebar .footer.fixed {
  5417. margin: 0
  5418. }
  5419. body.rtls.top-navigation .navbar-toggle {
  5420. float: right;
  5421. margin-left: 15px;
  5422. margin-right: 15px
  5423. }
  5424. .body-small.rtls.top-navigation .navbar-header {
  5425. float: none
  5426. }
  5427. body.rtls.top-navigation #page-wrapper {
  5428. margin: 0
  5429. }
  5430. body.rtls.mini-navbar #page-wrapper {
  5431. margin: 0 70px 0 0
  5432. }
  5433. body.rtls.mini-navbar.fixed-sidebar #page-wrapper {
  5434. margin: 0
  5435. }
  5436. body.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper {
  5437. margin: 0 220px 0 0
  5438. }
  5439. body.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
  5440. width: 220px
  5441. }
  5442. .body-small.rtls .navbar-fixed-top {
  5443. margin-right: 0
  5444. }
  5445. .body-small.rtls .navbar-header {
  5446. float: right
  5447. }
  5448. body.rtls .navbar-top-links li:last-child {
  5449. margin-left: 20px
  5450. }
  5451. body.rtls .top-navigation #page-wrapper,
  5452. body.rtls .top-navigation .footer.fixed,
  5453. body.rtls.mini-navbar .top-navigation #page-wrapper,
  5454. body.rtls.mini-navbar.top-navigation #page-wrapper,
  5455. body.rtls.top-navigation .footer.fixed {
  5456. margin: 0
  5457. }
  5458. @media (max-width:768px) {
  5459. body.rtls .navbar-top-links li:last-child {
  5460. margin-left: 20px
  5461. }
  5462. .body-small.rtls #page-wrapper {
  5463. position: inherit;
  5464. margin: 0;
  5465. min-height: 1000px
  5466. }
  5467. .body-small.rtls .navbar-static-side {
  5468. display: none;
  5469. z-index: 2001;
  5470. position: absolute;
  5471. width: 70px
  5472. }
  5473. .body-small.rtls.mini-navbar .navbar-static-side {
  5474. display: block
  5475. }
  5476. .rtls.fixed-sidebar.body-small .navbar-static-side {
  5477. display: none;
  5478. z-index: 2001;
  5479. position: fixed;
  5480. width: 220px
  5481. }
  5482. .rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {
  5483. display: block
  5484. }
  5485. }
  5486. .rtls .ltr-support {
  5487. direction: ltr
  5488. }
  5489. .skin-setttings .title {
  5490. background: #efefef;
  5491. text-align: center;
  5492. text-transform: uppercase;
  5493. font-weight: 600;
  5494. display: block;
  5495. padding: 10px 15px;
  5496. font-size: 12px
  5497. }
  5498. .setings-item {
  5499. padding: 10px 30px
  5500. }
  5501. .setings-item.nb {
  5502. border: none
  5503. }
  5504. .setings-item.skin {
  5505. text-align: center
  5506. }
  5507. .setings-item .switch {
  5508. float: right
  5509. }
  5510. .skin-name a {
  5511. text-transform: uppercase
  5512. }
  5513. .setings-item a {
  5514. color: #fff
  5515. }
  5516. .blue-skin,
  5517. .default-skin,
  5518. .ultra-skin,
  5519. .yellow-skin {
  5520. text-align: center
  5521. }
  5522. .default-skin {
  5523. font-weight: 600;
  5524. background: #1ab394
  5525. }
  5526. .default-skin:hover {
  5527. background: #199d82
  5528. }
  5529. .blue-skin {
  5530. font-weight: 600;
  5531. background: url(patterns/header-profile-skin-1.png) repeat scroll 0 0
  5532. }
  5533. .blue-skin:hover {
  5534. background: #0d8ddb
  5535. }
  5536. .yellow-skin {
  5537. font-weight: 600;
  5538. background: url(patterns/header-profile-skin-3.png) repeat scroll 0 100%
  5539. }
  5540. .yellow-skin:hover {
  5541. background: #ce8735
  5542. }
  5543. .content-tabs {
  5544. border-bottom: solid 1px #e1e1e1;
  5545. }
  5546. .page-tabs a {
  5547. color: #333
  5548. }
  5549. .page-tabs a i {
  5550. color: #ccc
  5551. }
  5552. .page-tabs a.active{
  5553. /*background: #2f4050;*/
  5554. color: #0c93e4;
  5555. border-bottom: 2px solid #0c93e4;
  5556. }
  5557. .page-tabs a.active i {
  5558. color: #0C93E4;
  5559. }
  5560. .page-tabs a.active:hover {
  5561. /*background: #293846;*/
  5562. color: #0c93e4;
  5563. border-bottom: 2px solid #0c93e4;
  5564. cursor: default;
  5565. }
  5566. .page-tabs a.active i:hover{
  5567. color: #0c93e4;
  5568. cursor: pointer;
  5569. }
  5570. .skin-1 .minimalize-styl-2 {
  5571. margin: 14px 5px 5px 30px
  5572. }
  5573. .skin-1 .navbar-top-links li:last-child {
  5574. margin-right: 30px
  5575. }
  5576. .skin-1.fixed-nav .minimalize-styl-2 {
  5577. margin: 14px 5px 5px 15px
  5578. }
  5579. .skin-1 .spin-icon {
  5580. background: #0e9aef!important
  5581. }
  5582. .skin-1 .nav-header {
  5583. background: #0e9aef;
  5584. background: url(patterns/header-profile-skin-1.png)
  5585. }
  5586. .skin-1.mini-navbar .nav-second-level {
  5587. background: #3e495f
  5588. }
  5589. .skin-1 .breadcrumb {
  5590. background: 0 0
  5591. }
  5592. .skin-1 .page-heading {
  5593. border: none
  5594. }
  5595. .skin-1 .nav>li.active {
  5596. background: #3a4459
  5597. }
  5598. .skin-1 .nav>li>a {
  5599. color: #9ea6b9
  5600. }
  5601. .skin-1 .nav>li.active>a {
  5602. color: #fff
  5603. }
  5604. .skin-1 .navbar-minimalize {
  5605. background: #0e9aef;
  5606. border-color: #0e9aef
  5607. }
  5608. body.skin-1 {
  5609. background: #3e495f
  5610. }
  5611. .skin-1 .navbar-static-top {
  5612. background: #fff
  5613. }
  5614. .skin-1 .dashboard-header {
  5615. background: 0 0;
  5616. border-bottom: none!important;
  5617. border-top: none;
  5618. padding: 20px 30px 10px
  5619. }
  5620. .fixed-nav.skin-1 .navbar-fixed-top {
  5621. background: #fff
  5622. }
  5623. .skin-1 .wrapper-content {
  5624. padding: 30px 15px
  5625. }
  5626. .skin-1 #page-wrapper {
  5627. background: #f4f6fa
  5628. }
  5629. .skin-1 .ibox-content,
  5630. .skin-1 .ibox-title {
  5631. border-width: 1px
  5632. }
  5633. .skin-1 .ibox-content:last-child {
  5634. border-style: solid
  5635. }
  5636. .skin-1 .nav>li.active {
  5637. border: none
  5638. }
  5639. .skin-1 .nav-header {
  5640. padding: 35px 25px 25px
  5641. }
  5642. .skin-1 .nav-header a.dropdown-toggle {
  5643. color: #fff;
  5644. margin-top: 10px
  5645. }
  5646. .skin-1 .nav-header a.dropdown-toggle .text-muted {
  5647. color: #fff;
  5648. opacity: .8
  5649. }
  5650. .skin-1 .profile-element {
  5651. text-align: center
  5652. }
  5653. .skin-1 .img-circle {
  5654. border-radius: 5px
  5655. }
  5656. .skin-1 .navbar-default .nav>li>a:focus,
  5657. .skin-1 .navbar-default .nav>li>a:hover {
  5658. background: #39aef5;
  5659. color: #fff
  5660. }
  5661. .skin-1 .nav.nav-tabs>li.active>a {
  5662. color: #555
  5663. }
  5664. .skin-1 .content-tabs {
  5665. border-bottom: solid 2px #39aef5
  5666. }
  5667. .skin-1 .nav.nav-tabs>li.active {
  5668. background: 0 0
  5669. }
  5670. .skin-1 .page-tabs a.active {
  5671. background: #39aef5;
  5672. color: #fff
  5673. }
  5674. .skin-1 .page-tabs a.active i:hover,
  5675. .skin-1 .page-tabs a.active:hover {
  5676. background: #0e9aef;
  5677. color: #fff
  5678. }
  5679. .skin-3 .minimalize-styl-2 {
  5680. margin: 14px 5px 5px 30px
  5681. }
  5682. .skin-3 .navbar-top-links li:last-child {
  5683. margin-right: 30px
  5684. }
  5685. .skin-3.fixed-nav .minimalize-styl-2 {
  5686. margin: 14px 5px 5px 15px
  5687. }
  5688. .skin-3 .spin-icon {
  5689. background: #ecba52!important
  5690. }
  5691. body.boxed-layout.skin-3 #wrapper {
  5692. background: #3e2c42
  5693. }
  5694. .skin-3 .nav-header {
  5695. background: #ecba52;
  5696. background: url(patterns/header-profile-skin-3.png)
  5697. }
  5698. .skin-3.mini-navbar .nav-second-level {
  5699. background: #3e2c42
  5700. }
  5701. .skin-3 .breadcrumb {
  5702. background: 0 0
  5703. }
  5704. .skin-3 .page-heading {
  5705. border: none
  5706. }
  5707. .skin-3 .nav>li.active {
  5708. background: #38283c
  5709. }
  5710. .fixed-nav.skin-3 .navbar-fixed-top {
  5711. background: #fff
  5712. }
  5713. .skin-3 .nav>li>a {
  5714. color: #948b96
  5715. }
  5716. .skin-3 .nav>li.active>a {
  5717. color: #fff
  5718. }
  5719. .skin-3 .navbar-minimalize {
  5720. background: #ecba52;
  5721. border-color: #ecba52
  5722. }
  5723. body.skin-3 {
  5724. background: #3e2c42
  5725. }
  5726. .skin-3 .navbar-static-top {
  5727. background: #fff
  5728. }
  5729. .skin-3 .dashboard-header {
  5730. background: 0 0;
  5731. border-bottom: none!important;
  5732. border-top: none;
  5733. padding: 20px 30px 10px
  5734. }
  5735. .skin-3 .wrapper-content {
  5736. padding: 30px 15px
  5737. }
  5738. .skin-3 #page-wrapper {
  5739. background: #f4f6fa
  5740. }
  5741. .skin-3 .ibox-content,
  5742. .skin-3 .ibox-title {
  5743. border-width: 1px
  5744. }
  5745. .skin-3 .ibox-content:last-child {
  5746. border-style: solid
  5747. }
  5748. .skin-3 .nav>li.active {
  5749. border: none
  5750. }
  5751. .skin-3 .nav-header {
  5752. padding: 35px 25px 25px
  5753. }
  5754. .skin-3 .nav-header a.dropdown-toggle {
  5755. color: #fff;
  5756. margin-top: 10px
  5757. }
  5758. .skin-3 .nav-header a.dropdown-toggle .text-muted {
  5759. color: #fff;
  5760. opacity: .8
  5761. }
  5762. .skin-3 .profile-element {
  5763. text-align: center
  5764. }
  5765. .skin-3 .img-circle {
  5766. border-radius: 5px
  5767. }
  5768. .skin-3 .navbar-default .nav>li>a:focus,
  5769. .skin-3 .navbar-default .nav>li>a:hover {
  5770. background: #38283c;
  5771. color: #fff
  5772. }
  5773. .skin-3 .nav.nav-tabs>li.active>a {
  5774. color: #555
  5775. }
  5776. .skin-3 .content-tabs {
  5777. border-bottom: solid 2px #3e2c42
  5778. }
  5779. .skin-3 .nav.nav-tabs>li.active {
  5780. background: 0 0
  5781. }
  5782. .skin-3 .page-tabs a.active {
  5783. background: #3e2c42;
  5784. color: #fff
  5785. }
  5786. .skin-3 .page-tabs a.active i:hover,
  5787. .skin-3 .page-tabs a.active:hover {
  5788. background: #38283c;
  5789. color: #fff
  5790. }
  5791. @media (min-width:768px) {
  5792. .navbar-top-links .dropdown-alerts,
  5793. .navbar-top-links .dropdown-messages,
  5794. .navbar-top-links .dropdown-tasks {
  5795. margin-left: auto
  5796. }
  5797. }
  5798. @media (max-width:768px) {
  5799. body.fixed-sidebar .navbar-static-side {
  5800. display: none
  5801. }
  5802. body.fixed-sidebar.mini-navbar .navbar-static-side {
  5803. width: 70px
  5804. }
  5805. .lock-word,
  5806. .navbar-form-custom {
  5807. display: none
  5808. }
  5809. .navbar-header {
  5810. display: inline;
  5811. float: left
  5812. }
  5813. .sidebard-panel {
  5814. z-index: 2;
  5815. position: relative;
  5816. width: auto;
  5817. min-height: 100%!important
  5818. }
  5819. .sidebar-content .wrapper {
  5820. padding-right: 0;
  5821. z-index: 1
  5822. }
  5823. .fixed-sidebar.body-small .navbar-static-side {
  5824. display: none;
  5825. z-index: 2001;
  5826. position: fixed;
  5827. width: 220px
  5828. }
  5829. .fixed-sidebar.body-small.mini-navbar .navbar-static-side {
  5830. display: block
  5831. }
  5832. .ibox-tools {
  5833. float: none;
  5834. text-align: right;
  5835. display: block
  5836. }
  5837. .content-tabs {
  5838. display: none
  5839. }
  5840. #content-main {
  5841. height: calc(100% - 100px)
  5842. }
  5843. .fixed-nav #content-main {
  5844. height: calc(100% - 38px)
  5845. }
  5846. }
  5847. .navbar-static-side {
  5848. background: #384d5e;
  5849. }
  5850. .nav-close {
  5851. padding: 10px;
  5852. position: absolute;
  5853. right: 5px;
  5854. top: 5px;
  5855. font-size: 1.4em;
  5856. cursor: pointer;
  5857. z-index: 10;
  5858. display: none;
  5859. color: rgba(255, 255, 255, .3)
  5860. }
  5861. @media (max-width:350px) {
  5862. body.fixed-sidebar.mini-navbar .navbar-static-side {
  5863. width: 0
  5864. }
  5865. .nav-close {
  5866. display: block
  5867. }
  5868. #page-wrapper {
  5869. margin-left: 0!important
  5870. }
  5871. .timeline-item .date {
  5872. text-align: left;
  5873. width: 110px;
  5874. position: relative;
  5875. padding-top: 30px
  5876. }
  5877. .timeline-item .date i {
  5878. position: absolute;
  5879. top: 0;
  5880. left: 15px;
  5881. padding: 5px;
  5882. width: 30px;
  5883. text-align: center;
  5884. border: 1px solid #e7eaec;
  5885. background: #f8f8f8
  5886. }
  5887. .timeline-item .content {
  5888. border-left: none;
  5889. border-top: 1px solid #e7eaec;
  5890. padding-top: 10px;
  5891. min-height: 100px
  5892. }
  5893. .nav.navbar-top-links li.dropdown {
  5894. display: none
  5895. }
  5896. .ibox-tools {
  5897. float: none;
  5898. text-align: left;
  5899. display: inline-block
  5900. }
  5901. }
  5902. .ui-jqgrid-titlebar {
  5903. height: 40px;
  5904. line-height: 24px;
  5905. color: #676a6c;
  5906. background-color: #F9F9F9;
  5907. text-shadow: 0 1px 0 rgba(255, 255, 255, .5)
  5908. }
  5909. .ui-jqgrid .ui-jqgrid-title {
  5910. float: left;
  5911. margin-left: 5px;
  5912. font-weight: 700
  5913. }
  5914. .ui-jqgrid .ui-jqgrid-titlebar {
  5915. position: relative;
  5916. border-left: 0 solid;
  5917. border-right: 0 solid;
  5918. border-top: 0 solid
  5919. }
  5920. .social-feed-separated .social-feed-box {
  5921. margin-left: 62px
  5922. }
  5923. .social-feed-separated .social-avatar {
  5924. float: left;
  5925. padding: 0
  5926. }
  5927. .social-feed-separated .social-avatar img {
  5928. width: 52px;
  5929. height: 52px;
  5930. border: 1px solid #e7eaec
  5931. }
  5932. .social-feed-separated .social-feed-box .social-avatar {
  5933. padding: 15px 15px 0;
  5934. float: none
  5935. }
  5936. .social-feed-box {
  5937. border: 1px solid #e7eaec;
  5938. background: #fff;
  5939. margin-bottom: 15px
  5940. }
  5941. .article .social-feed-box {
  5942. margin-bottom: 0;
  5943. border-bottom: none
  5944. }
  5945. .article .social-feed-box:last-child {
  5946. margin-bottom: 0;
  5947. border-bottom: 1px solid #e7eaec
  5948. }
  5949. .article .social-feed-box p {
  5950. font-size: 13px;
  5951. line-height: 18px
  5952. }
  5953. .social-action {
  5954. margin: 15px
  5955. }
  5956. .social-avatar {
  5957. padding: 15px 15px 0
  5958. }
  5959. .social-comment .social-comment {
  5960. margin-left: 45px
  5961. }
  5962. .social-avatar img {
  5963. height: 40px;
  5964. width: 40px;
  5965. margin-right: 10px
  5966. }
  5967. .social-avatar .media-body a {
  5968. font-size: 14px;
  5969. display: block
  5970. }
  5971. .social-body {
  5972. padding: 15px
  5973. }
  5974. .social-body img {
  5975. margin-bottom: 10px
  5976. }
  5977. .social-footer {
  5978. border-top: 1px solid #e7eaec;
  5979. padding: 10px 15px;
  5980. background: #f9f9f9
  5981. }
  5982. .social-footer .social-comment img {
  5983. width: 32px;
  5984. margin-right: 10px
  5985. }
  5986. .social-comment:first-child {
  5987. margin-top: 0
  5988. }
  5989. .social-comment {
  5990. margin-top: 15px
  5991. }
  5992. .social-comment textarea {
  5993. font-size: 12px
  5994. }
  5995. .checkbox input[type=checkbox],
  5996. .checkbox-inline input[type=checkbox],
  5997. .radio input[type=radio],
  5998. .radio-inline input[type=radio] {
  5999. margin-top: -4px
  6000. }
  6001. @media (max-width:1000px) {
  6002. .welcome-message {
  6003. display: none
  6004. }
  6005. }
  6006. .echarts {
  6007. height: 240px
  6008. }
  6009. .checkbox-inline,
  6010. .checkbox-inline+.checkbox-inline,
  6011. .radio-inline,
  6012. .radio-inline+.radio-inline {
  6013. margin: 0 15px 0 0
  6014. }
  6015. .navbar-toggle {
  6016. background-color: #fff
  6017. }
  6018. .J_menuTab {
  6019. -webkit-transition: all .3s ease-out 0s;
  6020. transition: all .3s ease-out 0s
  6021. }
  6022. ::-webkit-scrollbar-track {
  6023. /*background-color: #F5F5F5*/
  6024. background-color: #dcdcdc;
  6025. border-radius: 6px;
  6026. }
  6027. ::-webkit-scrollbar {
  6028. /*width: 6px;
  6029. background-color: #F5F5F5*/
  6030. width: 12px;
  6031. background-color: #dcdcdc;
  6032. border-radius: 6px;
  6033. }
  6034. ::-webkit-scrollbar-thumb {
  6035. background-color: #999;
  6036. border-radius: 6px;
  6037. }
  6038. .gohome {
  6039. position: fixed;
  6040. top: 20px;
  6041. right: 20px;
  6042. z-index: 100
  6043. }
  6044. .gohome a {
  6045. height: 38px;
  6046. width: 38px;
  6047. display: block;
  6048. background: #2f4050;
  6049. padding: 9px 8px;
  6050. text-align: center;
  6051. color: #fff;
  6052. border-radius: 50%;
  6053. opacity: .5
  6054. }
  6055. .gohome a:hover {
  6056. opacity: 1
  6057. }
  6058. @media only screen and (-webkit-min-device-pixel-ratio:2) {
  6059. #content-main {
  6060. -webkit-overflow-scrolling: touch;
  6061. }
  6062. }
  6063. .navbar-header {
  6064. width: 60%
  6065. }
  6066. .bs-glyphicons {
  6067. margin: 0 -10px 20px;
  6068. overflow: hidden
  6069. }
  6070. .bs-glyphicons-list {
  6071. padding-left: 0;
  6072. list-style: none
  6073. }
  6074. .bs-glyphicons li {
  6075. float: left;
  6076. width: 25%;
  6077. height: 115px;
  6078. padding: 10px;
  6079. font-size: 10px;
  6080. line-height: 1.4;
  6081. text-align: center;
  6082. background-color: #f9f9f9;
  6083. border: 1px solid #fff
  6084. }
  6085. .bs-glyphicons .glyphicon {
  6086. margin-top: 5px;
  6087. margin-bottom: 10px;
  6088. font-size: 24px
  6089. }
  6090. .bs-glyphicons .glyphicon-class {
  6091. display: block;
  6092. text-align: center;
  6093. word-wrap: break-word
  6094. }
  6095. .bs-glyphicons li:hover {
  6096. color: #fff;
  6097. background-color: #1ab394
  6098. }
  6099. @media (min-width:768px) {
  6100. .bs-glyphicons {
  6101. margin-right: 0;
  6102. margin-left: 0
  6103. }
  6104. .bs-glyphicons li {
  6105. width: 12.5%;
  6106. font-size: 12px
  6107. }
  6108. }
  6109. /*---------common-------------------------*/
  6110. .clearfix:after {
  6111. visibility: hidden;
  6112. display: block;
  6113. font-size: 0;
  6114. content: ".";
  6115. clear: both;
  6116. height: 0;
  6117. }
  6118. .clearfix {
  6119. zoom: 1;
  6120. }
  6121. .fl,
  6122. .fr {
  6123. display: inline;
  6124. }
  6125. .fl {
  6126. float: left;
  6127. }
  6128. .fr {
  6129. float: right;
  6130. }
  6131. select {
  6132. height: 30px;
  6133. border-radius: 0;
  6134. background-color: #fff;
  6135. border-color: #e1e1e1;
  6136. border-image: initial;
  6137. }
  6138. .ui-jqgrid-hbox {
  6139. width: 100%;
  6140. }
  6141. .ui-jqgrid .ui-jqgrid-pager .ui-paging-info {
  6142. padding-right: 15px;
  6143. }
  6144. .ui-jqgrid .ui-jqgrid-htable thead th {
  6145. text-align: center;
  6146. }
  6147. .layui-layer-setwin .layui-layer-close {
  6148. background-position: 0 -40px;
  6149. cursor: pointer;
  6150. }
  6151. #toast-container {
  6152. z-index: 198910150;
  6153. }
  6154. .search-box{
  6155. display: inline-block;
  6156. position: relative;
  6157. height: 32px;
  6158. width: 320px;
  6159. line-height: 30px;
  6160. border: 1px solid #e1e1e1;
  6161. border-radius: 16px;
  6162. text-align: left;
  6163. padding: 0 10px;
  6164. }
  6165. .search-box input[type=search]{
  6166. border: none;
  6167. height: 30px;
  6168. width: calc(100% - 25px);
  6169. /* margin-left: 10px; */
  6170. padding: 0 10px;
  6171. }
  6172. .search-box input[type=search]:focus{
  6173. border: none;
  6174. }
  6175. .btn-blue,
  6176. .btn-blue:hover,
  6177. .btn-blue:focus{
  6178. background-color: #14B4E6;
  6179. color: #fff;
  6180. }
  6181. .btn-yellow,
  6182. .btn-yellow:hover,
  6183. .btn-yellow:focus{
  6184. background-color: #ffac15;
  6185. color: #fff;
  6186. }
  6187. .btn-green,
  6188. .btn-green:hover,
  6189. .btn-green:focus{
  6190. background-color: #1cc9b5;
  6191. color: #fff;
  6192. }
  6193. .form-control-label{
  6194. font-weight: normal;
  6195. height: 34px;
  6196. line-height: 34px;
  6197. margin: 0;
  6198. margin-right: 15px;
  6199. }
  6200. .normal-fieldset{
  6201. padding: .35em .625em .75em;
  6202. margin: 0 2px;
  6203. border: 1px solid #e1e1e1;
  6204. margin-top: 20px;
  6205. }
  6206. .normal-fieldset legend{
  6207. width: auto;
  6208. padding: 0 10px 0 0;
  6209. border-bottom: 0;
  6210. font-size: 16px;
  6211. margin: 0;
  6212. }
  6213. .ui-dialog{border-color: #fff;}
  6214. .layui-layer-setwin{top: 0!important;right: 0!important;line-height: 42px!important;}
  6215. .layui-layer-setwin a{height: 42px!important;line-height: 42px!important;width: 33px!important;margin-left: 0!important;}
  6216. .layui-layer-setwin .layui-layer-min cite{height: 14px!important;margin-top: -7px!important;left: 7px!important;background: url(../images/zuixiaohua_icon.png) center center / 60% auto no-repeat;background-color: #f8f8f8!important;}
  6217. .layui-layer-setwin .layui-layer-min:hover,.layui-layer-setwin .layui-layer-min:hover cite,.layui-layer-setwin .layui-layer-max:hover{background-color: #ebebf5!important;}
  6218. .layui-layer-setwin .layui-layer-max {
  6219. background: url(../images/zuidaohua_icon.png) no-repeat;
  6220. background-position: center center!important;
  6221. background-color: #f8f8f8!important;
  6222. }
  6223. .layui-layer-setwin .layui-layer-maxmin{background-image: url(../images/zuidaohua02_icon.png)!important;}
  6224. .layui-layer-setwin .layui-layer-close {
  6225. background: url(../images/guanbi_icon.png) no-repeat;
  6226. background-color: #f8f8f8!important;
  6227. background-position: center center!important;
  6228. }
  6229. .layui-layer-setwin .layui-layer-close:hover,.layui-layer-setwin .layui-layer-close:hover{background-color: #f96464!important;}
  6230. .layui-layer-setwin.set-close-btn{top: 0!important;right: 0!important;line-height: 33px!important;}
  6231. .layui-layer-setwin.set-close-btn a{height: 33px!important;line-height: 33px!important;width: 33px!important;margin-left: 0!important;}
  6232. .layui-layer-setwin.set-close-btn .layui-layer-close2 {right: -15px;top: -15px;}
  6233. .layui-layer-setwin.set-close-btn .layui-layer-close{background: url(../app/sign/images/guanbi_01_btn.png) center center / 100% auto no-repeat;background-color: transparent!important;background-position: center center!important;}
  6234. .layui-layer-setwin.set-close-btn .layui-layer-close:hover,.layui-layer-setwin .layui-layer-close:hover{background-color: transparent!important;}