AdminLTE.css 97 KB

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