AdminLTE.css 107 KB

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