AdminLTE.css 96 KB

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