fastadmin.css 134 KB

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