Няма описание

style.min862f.css 113KB

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