AdminLTE-without-plugins.css 87 KB

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