fastadmin.css 132 KB

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