AdminLTE.css 98 KB

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