fastadmin.css 134 KB

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