style.min.css 145 KB

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