AdminLTE.css 92 KB

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