AdminLTE.css 101 KB

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