AdminLTE.css 90 KB

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