fastadmin.css 134 KB

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