style.min.css 145 KB

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