AdminLTE.css 90 KB

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