伊川12345

style.min862f.css 112KB

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