style.min.css 148 KB

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