style.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170
  1. /*
  2. Template Name: Metro Lab Dashboard build with Bootstrap v2.3.1
  3. Template Version: 1.0
  4. Author: Mosaddek
  5. Website: http://thevectorlab.net/
  6. */
  7. /* body styles */
  8. body {
  9. color: #000;
  10. font-family: 'Arial';
  11. padding: 0px !important;
  12. margin: 0px !important;
  13. font-size:13px;
  14. /*overflow-x: hidden ;*/
  15. background:#404040 ;
  16. }
  17. @font-face {
  18. font-family: 'MyriadPro-Bold';
  19. src: url('../font/myriadprobold.eot');
  20. src: url('../font/myriadprobold.eot@#iefix') format('embedded-opentype'),
  21. url('../font/myriadprobold.woff') format('woff'),
  22. url('../font/myriadprobold.ttf') format('truetype'),
  23. url('../font/myriadprobold.svg#myriadprobold') format('svg');
  24. font-weight: normal;
  25. font-style: normal;
  26. }
  27. @font-face {
  28. font-family: 'MyriadPro-It';
  29. src: url('../font/myriadproit.eot');
  30. src: url('../font/myriadproit.eot@#iefix') format('embedded-opentype'),
  31. url('../font/myriadproit.woff') format('woff'),
  32. url('../font/myriadproit.ttf') format('truetype'),
  33. url('../font/myriadproit.svg#myriadproit') format('svg');
  34. font-weight: normal;
  35. font-style: normal;
  36. }
  37. @font-face {
  38. font-family: 'MyriadPro-Light';
  39. src: url('../font/myriadprolight.eot');
  40. src: url('../font/myriadprolight.eot@#iefix') format('embedded-opentype'),
  41. url('../font/myriadprolight.woff') format('woff'),
  42. url('../font/myriadprolight.ttf') format('truetype'),
  43. url('../font/myriadprolight.svg#myriadprolight') format('svg');
  44. font-weight: normal;
  45. font-style: normal;
  46. }
  47. @font-face {
  48. font-family: 'MyriadPro-Regular';
  49. src: url('../font/myriadproregular.eot');
  50. src: url('../font/myriadproregular.eot@#iefix') format('embedded-opentype'),
  51. url('../font/myriadproregular.woff') format('woff'),
  52. url('../font/myriadproregular.ttf') format('truetype'),
  53. url('../font/myriadproregular.svg#myriadproregular') format('svg');
  54. font-weight: normal;
  55. font-style: normal;
  56. }
  57. div, input, select, textarea, span, img, table, td, th, p, a, button, ul, li {
  58. border-radius: 0 !important;
  59. -moz-border-radius: 0 !important;
  60. -webkit-border-radius: 0 !important;
  61. }
  62. /*buttons style*/
  63. .btn{
  64. border-radius: 0;
  65. background: #e8e8e8;
  66. outline: none;
  67. border: none;
  68. box-shadow: none;
  69. text-shadow: none;
  70. }
  71. .btn:hover{
  72. border-radius: 0;
  73. box-shadow: none;
  74. -moz-box-shadow: none;
  75. -webkit-box-shadow: none;
  76. }
  77. .btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  78. background-color: #d5d5d5;
  79. }
  80. .btn-group > .btn:first-child,
  81. .btn-group > .btn:last-child,
  82. .btn-group > .dropdown-toggle,
  83. .btn-group-vertical > .btn:first-child,
  84. .btn-group-vertical > .btn:last-child {
  85. border-radius: 0px;
  86. -moz-border-radius: 0px;
  87. -webkit-border-radius: 0px;
  88. }
  89. .btn-primary{
  90. background: #2fade7;
  91. }
  92. .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled], .btn-group.open .btn-primary.dropdown-toggle {
  93. background-color: #3492c9;
  94. }
  95. .btn-success{
  96. background: #87bb33;
  97. }
  98. .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled],
  99. .btn-group.open .btn-success.dropdown-toggle{
  100. background-color: #78a300;
  101. }
  102. .btn-info{
  103. background: #22c0cb;
  104. }
  105. .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled],
  106. .btn-group.open .btn-info.dropdown-toggle{
  107. background-color: #31a6b1;
  108. }
  109. .btn-warning{
  110. background: #fb9800;
  111. }
  112. .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled],
  113. .btn-group.open .btn-warning.dropdown-toggle{
  114. background-color: #de8a00;
  115. }
  116. .btn-danger{
  117. background: #dc5d3a;
  118. }
  119. .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled],
  120. .btn-group.open .btn-danger.dropdown-toggle{
  121. background-color: #c1552b;
  122. }
  123. .btn-inverse{
  124. background: #484848;
  125. }
  126. .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled],
  127. .btn-group.open .btn-inverse.dropdown-toggle{
  128. background-color: #292929;
  129. }
  130. .btn-link {
  131. background: none;
  132. box-shadow: none;
  133. }
  134. .input-prepend .add-on:first-child, .input-prepend .btn:first-child,
  135. .input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child,
  136. .input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child,
  137. .input-append .add-on:last-child, .input-append .btn:last-child, .input-append .btn-group:last-child > .dropdown-toggle{
  138. border: 1px solid #ddd;
  139. border-radius: 0px;
  140. }
  141. .btn-group.open .dropdown-toggle {
  142. box-shadow: none;
  143. }
  144. .uneditable-input {
  145. width: 135px;
  146. }
  147. .switch-form input {
  148. width: 110px;
  149. }
  150. /* style switcher */
  151. #theme-change {
  152. position: fixed;
  153. width: 20px;
  154. height: 22px;
  155. overflow: hidden;
  156. top:70px;
  157. right: 0px;
  158. white-space: nowrap;
  159. padding: 5px 10px 5px 8px;
  160. background-color: #dcdcdc;
  161. z-index: 100;
  162. color: #737373;
  163. }
  164. #theme-change > i {
  165. font-size: 18px;
  166. cursor: pointer;
  167. display: inline-block;
  168. margin-right: 2px;
  169. margin-top: 2px;
  170. }
  171. #theme-change:hover, #theme-change > i:hover {
  172. color: #737373;
  173. }
  174. #theme-change label {
  175. display: inline-block !important;
  176. }
  177. #theme-change .text {
  178. margin-right: 2px;
  179. font-weight: bold;
  180. font-size: 14px;
  181. }
  182. #theme-change .settings {
  183. display: none;
  184. }
  185. #theme-change .colors {
  186. display: block;
  187. }
  188. #theme-change .checker {
  189. display: inline-block !important;
  190. margin-top:-1px;
  191. }
  192. #theme-change .colors span {
  193. display: inline-block;
  194. width: 35px;
  195. height: 30px;
  196. margin: 2px 1px -7px 1px;
  197. border: 2px solid #ddd;
  198. cursor: pointer;
  199. }
  200. #theme-change .layout {
  201. width: 100px;
  202. margin-top: 7px;
  203. margin-left: 63px;
  204. margin-bottom: 5px;
  205. display: block;
  206. }
  207. #theme-change .colors span.active, #theme-change .colors span:hover {
  208. border: 2px solid white;
  209. }
  210. #theme-change .colors .color-default {
  211. background-color: #4A8BC2;
  212. }
  213. #theme-change .colors .color-green {
  214. background-color: #74B749;
  215. }
  216. #theme-change .colors .color-purple {
  217. background-color: #7265ae;
  218. }
  219. #theme-change .colors .color-gray {
  220. background-color: #2d2d2d;
  221. }
  222. #theme-change .colors .color-red {
  223. background-color: #DE577B;
  224. }
  225. /*form element */
  226. textarea, select, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, .fileupload-new .input-append .btn-file {
  227. border: 1px solid #ddd;
  228. transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  229. -webkit-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  230. -o-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  231. border-radius: 0 !important;
  232. -moz-border-radius: 0 !important;
  233. -webkit-border-radius: 0 !important;
  234. box-shadow: none !important;
  235. }
  236. .form-horizontal .control-label {
  237. text-align: left;
  238. }
  239. /* general typography*/
  240. h3 small, h2 small, h5 small {
  241. color: #868686;
  242. }
  243. h1, h2, h3, h4, h5, h6 {
  244. font-weight: normal;
  245. font-family: "MyriadPro-Light";
  246. }
  247. h1.block, h2.block, h3.block, h4.block, h5.block, h6.block {
  248. padding-bottom: 10px;
  249. }
  250. .page-title {
  251. font-size: 28px;
  252. display: block;
  253. font-weight: normal !important;
  254. margin: 13px 0px 8px 0px;
  255. font-family: 'MyriadPro-Light';
  256. }
  257. .page-title small {
  258. font-size: 14px;
  259. }
  260. /* general tools */
  261. img.center {
  262. text-align:center;
  263. }
  264. .phone-margin-top-5:before {
  265. display: block;
  266. margin-top: 5px;
  267. }
  268. .no-padding {
  269. padding: 0px !important;
  270. }
  271. .no-margin {
  272. margin: 0px !important;
  273. }
  274. .no-bottom-space {
  275. padding-bottom:0px !important;
  276. margin-bottom: 0px !important;
  277. }
  278. .no-top-space {
  279. padding-top:0px !important;
  280. margin-top: 0px !important;
  281. }
  282. .hide {
  283. display: none;
  284. }
  285. .bold {
  286. font-weight:bold;
  287. }
  288. .border {
  289. border: 1px solid #ddd
  290. }
  291. .small {
  292. font-size: 11px !important;
  293. }
  294. .btn-top-space {
  295. margin-top: 5px !important;
  296. }
  297. .italic {
  298. font-style: italic !important;
  299. }
  300. i.big {
  301. font-size: 20px;
  302. }
  303. i.warning {
  304. color: #E74955;
  305. }
  306. i.critical {
  307. color: #22878E;
  308. }
  309. i.normal {
  310. color: #A5D16C;
  311. }
  312. hr {
  313. margin: 15px 0;
  314. border: 0;
  315. border-top: 1px solid #E0DFDF;
  316. border-bottom: 1px solid #FEFEFE;
  317. }
  318. i.icon, a.icon {
  319. color: #999;
  320. }
  321. a.icon:hover {
  322. text-decoration: none;
  323. -webkit-transition: all 0.1s ease-in-out;
  324. -moz-transition: all 0.1s ease-in-out;
  325. -o-transition: all 0.1s ease-in-out;
  326. -ms-transition: all 0.1s ease-in-out;
  327. transition: all 0.1s ease-in-out;
  328. opacity: .4;
  329. }
  330. a.icon.huge i{
  331. font-size: 16px !important;
  332. }
  333. .space5 {
  334. display: block;
  335. height: 5px !important;
  336. clear: both;
  337. }
  338. .space10 {
  339. height: 10px !important;
  340. clear: both;
  341. }
  342. .space12 {
  343. height: 12px !important;
  344. clear: both;
  345. }
  346. .space15 {
  347. height: 15px !important;
  348. clear: both;
  349. }
  350. .space20 {
  351. height: 20px !important;
  352. clear: both;
  353. }
  354. .mtop5 {
  355. margin-top: 5px
  356. }
  357. .mtop7 {
  358. margin-top: 7px
  359. }
  360. .mtop10 {
  361. margin-top: 10px
  362. }
  363. .no-text-shadow {
  364. text-shadow: none !important;
  365. }
  366. .notify-row {
  367. float: left;
  368. padding: 5px;
  369. }
  370. /*fix outlines on click*/
  371. a,a:focus, a:hover, a:active {
  372. outline: 0;
  373. }
  374. /* header nav bar*/
  375. #header .brand {
  376. margin-top: 0px !important;
  377. padding: 18px 20px;
  378. width: 132px;
  379. }
  380. #header.navbar {
  381. min-width: 0px;
  382. }
  383. #header .navbar .nav > li > a{
  384. padding:0px !important;
  385. }
  386. .navbar .nav > li > a {
  387. padding: 10px;
  388. }
  389. .navbar-inner, .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner {
  390. box-shadow: none;
  391. }
  392. #header .navbar-inner .nav > li {
  393. margin-left: 0px !important;
  394. margin-right: 0px !important;
  395. }
  396. #header .navbar-inverse .brand, .navbar-inverse .nav > li > a{
  397. color: #fff;
  398. }
  399. #header .navbar-inner li.dropdown .dropdown-toggle i {
  400. font-size: 20px;
  401. }
  402. #header .navbar-inner li.dropdown .dropdown-toggle .label {
  403. position: relative;
  404. top:-3px;
  405. font-size: 9px !important;
  406. padding-top: 0px !important;
  407. padding-bottom: 0px !important;
  408. margin-top: 0px !important;
  409. display: inline-block !important;
  410. }
  411. #header.navbar-inverse .btn-navbar {
  412. background-image: none;
  413. margin-top: 10px;
  414. color: white;
  415. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  416. background-color: #e9ebec;
  417. border-color: #caced1 #caced1 black;
  418. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  419. }
  420. #header.navbar-inverse .btn-navbar:hover {
  421. background-color: #caced1;
  422. }
  423. #header .navbar-inner {
  424. top:0px;
  425. width: 100%;
  426. margin: 0px !important;
  427. margin-bottom: -2px !important;
  428. border-top: 0px !important;
  429. border-left: 0px !important;
  430. border-right: 0px !important;
  431. padding: 0px;
  432. -webkit-border-radius: 0;
  433. -moz-border-radius: 0;
  434. border-radius: 0;
  435. }
  436. #header.navbar-inverse .navbar-inner {
  437. height: 60px;
  438. border:none !important;
  439. }
  440. #header.navbar-inverse .divider-vertical {
  441. height: 40px;
  442. }
  443. #header .navbar-search {
  444. margin-left: 110px;
  445. }
  446. #header .top-nav .dropdown-menu {
  447. margin-top: 3px;
  448. }
  449. .top-menu {
  450. padding: 5px;
  451. }
  452. #header .top-menu .dropdown .dropdown-toggle .caret {
  453. margin-top: 12px !important;
  454. }
  455. .navbar-inverse .navbar-search .search-query {
  456. background-color: #FFFFFF;
  457. border: 0 none;
  458. color: #333333;
  459. outline: 0 none;
  460. padding: 5px 15px;
  461. text-shadow: none;
  462. }
  463. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  464. border-bottom-color: #FFFFFF;
  465. border-top-color: #FFFFFF;
  466. }
  467. /* main container */
  468. .fixed-top #container {
  469. margin-top: 60px;
  470. }
  471. /* i8 fix for form input height in fluid rows */
  472. .ie8 .row-fluid [class*="span"] {
  473. min-height: 20px !important;
  474. }
  475. /* body container */
  476. #main-content {
  477. margin-top: 0px;
  478. margin-left: 180px;
  479. min-height: 1000px;
  480. background: #fff;
  481. margin-bottom: 40px !important;
  482. }
  483. /* page container */
  484. .sidebar-toggle-box {
  485. float: left;
  486. height: 60px;
  487. margin-left: -20px;
  488. margin-right: 20px;
  489. padding: 0 30px;
  490. }
  491. .sidebar-toggle-box .icon-reorder {
  492. cursor: pointer;
  493. display: inline-block;
  494. font-size: 20px;
  495. margin-top: 17px;
  496. }
  497. .sidebar-closed > #sidebar > ul {
  498. display: none;
  499. }
  500. .sidebar-closed #main-content {
  501. margin-left: 0px;
  502. }
  503. .sidebar-closed #sidebar {
  504. margin-left: -115px;
  505. }
  506. /* sidebar menu */
  507. [class^="icon-"], [class*=" icon-"] {
  508. margin-top: 0;
  509. }
  510. #sidebar {
  511. z-index: 100;
  512. background: #404040;
  513. }
  514. .sidebar-scroll {
  515. position: fixed;
  516. overflow-y: scroll;
  517. height: 100%;
  518. width: 180px;
  519. z-index: 100;
  520. }
  521. #sidebar ul{
  522. margin-bottom:180px !important;
  523. }
  524. #sidebar .navbar-search {
  525. border: 0px;
  526. -webkit-box-shadow: none !important;
  527. -moz-box-shadow: none !important;
  528. box-shadow: none !important;
  529. }
  530. #sidebar.closed {
  531. display: none;
  532. }
  533. #sidebar > ul {
  534. list-style: none;
  535. margin: 0;
  536. padding: 0;
  537. margin: 0;
  538. padding: 0;
  539. -webkit-border-radius: 0px;
  540. -moz-border-radius: 0px;
  541. border-radius: 0px;
  542. }
  543. #sidebar > ul > li {
  544. display: block;
  545. margin: 0 0 1px 0px;
  546. padding: 0;
  547. border: 0px;
  548. line-height: 30px;
  549. }
  550. #sidebar > ul > li > a {
  551. display: block;
  552. position: relative;
  553. margin: 0;
  554. border: 0px;
  555. -webkit-border-radius: 0px !important;
  556. -moz-border-radius: 0px !important;
  557. border-radius: 0px !important;
  558. text-decoration: none;
  559. font-size: 12px;
  560. font-weight: normal;
  561. text-align: left;
  562. width: 150px;
  563. padding: 5px 15px;
  564. background: #505050;
  565. transition-duration: 500ms;
  566. transition-property: width, background;
  567. transition-timing-function: ease;
  568. -webkit-transition-duration: 500ms;
  569. -webkit-transition-property: width, background;
  570. -webkit-transition-timing-function: ease;
  571. }
  572. #sidebar > ul > li > a > span {
  573. display: inline-block;
  574. line-height: normal;
  575. }
  576. #sidebar > ul > li a i {
  577. color:#eaeaea;
  578. font-size: 16px;
  579. }
  580. #sidebar > ul > li a i {
  581. width: 25px;
  582. }
  583. #sidebar > ul > li.active > a{
  584. border: none;
  585. }
  586. #sidebar > ul > li.active > a .arrow {
  587. margin-right: 0px;
  588. }
  589. #sidebar > ul > li.active > a .arrow.open {
  590. margin-right: 0px;
  591. }
  592. #sidebar ul > li > a .arrow {
  593. float: right;
  594. margin-top: 12px;
  595. margin-right: 0px;
  596. width: 0;
  597. height: 0;
  598. border-left: 4px solid #A0A0A0;
  599. border-top: 4px solid transparent;
  600. border-bottom: 4px solid transparent;
  601. }
  602. #sidebar > ul > li > a .arrow.open {
  603. float: right;
  604. margin-top: 14px;
  605. margin-right: 0px;
  606. width: 0;
  607. height: 0;
  608. border-top: 5px solid #A0A0A0;
  609. border-left: 4px solid transparent;
  610. border-right: 4px solid transparent;
  611. }
  612. #sidebar ul > li.active > a .arrow, #sidebar ul > li > a:hover .arrow {
  613. float: right;
  614. margin-top: 12px;
  615. margin-right: 0px;
  616. width: 0;
  617. height: 0;
  618. border-left: 4px solid #fff;
  619. border-top: 4px solid transparent;
  620. border-bottom: 4px solid transparent;
  621. }
  622. #sidebar > ul > li.active > a .arrow.open, #sidebar > ul > li > a:hover .arrow.open {
  623. float: right;
  624. margin-top: 14px;
  625. margin-right: 0px;
  626. width: 0;
  627. height: 0;
  628. border-top: 5px solid #fff;
  629. border-left: 4px solid transparent;
  630. border-right: 4px solid transparent;
  631. }
  632. #sidebar > ul > li > ul.sub {
  633. display: none;
  634. list-style: none;
  635. clear: both;
  636. margin: 0px;
  637. }
  638. #sidebar > ul > li > ul.sub {
  639. margin-bottom: 0 !important;
  640. }
  641. #sidebar > ul > li.active > ul.sub {
  642. display: block;
  643. margin-bottom: 0 !important;
  644. }
  645. #sidebar > ul > li > ul.sub > li {
  646. background: none !important;
  647. padding: 0px;
  648. margin-bottom: 1px;
  649. }
  650. #sidebar > ul > li > ul.sub > li > a {
  651. display: block;
  652. position: relative;
  653. padding: 10px 10px 10px 45px;
  654. color: #ccc;
  655. text-decoration: none;
  656. text-shadow: 0 1px 1px #000;
  657. font-size: 12px;
  658. font-weight: normal;
  659. line-height: normal;
  660. }
  661. /* footer */
  662. #footer {
  663. background: #f0f0f0;
  664. bottom: 0;
  665. color:#757575 ;
  666. font-size: 12px;
  667. padding: 10px;
  668. position: fixed;
  669. text-align: center;
  670. width: 100%;
  671. z-index: 10;
  672. }
  673. #footer .goto {
  674. display: block;
  675. text-decoration: none;
  676. cursor: pointer;
  677. margin-top: -8px;
  678. margin-right: 0px;
  679. margin-bottom: 0px;
  680. font-size: 16px;
  681. background-color: #111;
  682. opacity: 0.8;
  683. padding: 8px 12px;
  684. opacity:0.4;
  685. filter: alpha(opacity = 40);
  686. }
  687. #footer .goto:hover {
  688. background: #4a8bc2;
  689. opacity: 1;
  690. transition-duration: 500ms;
  691. transition-property: width, background;
  692. transition-timing-function: ease;
  693. -webkit-transition-duration: 500ms;
  694. -webkit-transition-property: width, background;
  695. -webkit-transition-timing-function: ease;
  696. }
  697. #footer .goto {
  698. font-size: 14px;
  699. color: #fff;
  700. text-decoration: none;
  701. opacity: 1;
  702. }
  703. /* general form */
  704. form legend {
  705. margin: 15px 0px 10px 0px !important;
  706. }
  707. .form-actions {
  708. background-color: #fff ;
  709. }
  710. .widget-body.form form {
  711. margin: 0px !important;
  712. padding: 0px !important;
  713. }
  714. .widget-body.form .control-group:last-child {
  715. padding-bottom: 0px !important;
  716. margin-bottom: 0px !important;
  717. }
  718. .widget-body.form .form-actions{
  719. margin-left:-15px !important;
  720. margin-right:-15px !important;
  721. margin-top: 20px !important;
  722. margin-bottom: -15px !important;
  723. margin-top: 20px;
  724. padding-left: 195px;
  725. -webkit-border-radius: 0px 0px 4px 4px;
  726. -moz-border-radius: 0px 0px 4px 4px;
  727. border-radius: 0px 0px 4px 4px;
  728. }
  729. .widget-body .dataTables_info, .widget-body .dataTables_paginate {
  730. margin-top: 5px !important;
  731. padding-bottom: 0px !important;
  732. margin-bottom: -4px !important;
  733. }
  734. .widget-body .table {
  735. padding-bottom: 0px !important;
  736. margin-bottom: 0px !important;
  737. }
  738. .widget-title > h4, .chats li.in .name {
  739. color: #fff;
  740. }
  741. /* custom form input error states with icons */
  742. .input-icon input {
  743. padding-right: 25px !important;
  744. }
  745. .input-icon .input-error, .input-icon .input-warning, .input-icon .input-success {
  746. display: inline-block !important;
  747. position: relative !important;
  748. top: 4px;
  749. right: 25px !important;
  750. font-size: 16px;
  751. }
  752. .input-icon .input-error {
  753. color:#B94A48;
  754. }
  755. .input-icon .input-warning {
  756. color: #C09853;
  757. }
  758. .input-icon .input-success {
  759. color: #468847;
  760. }
  761. /* custom breadcrumb */
  762. .breadcrumb {
  763. border-radius: 0 ;
  764. margin-top: 10px;
  765. }
  766. .breadcrumb li > a{
  767. color: #888888;
  768. }
  769. /*general search */
  770. .breadcrumb > li.search-wrap {
  771. background: none !important;
  772. float: right;
  773. }
  774. .breadcrumb .search-input-area {
  775. float: right;
  776. margin-top: 20px;
  777. margin-right: -15px;
  778. }
  779. .search-input-area input {
  780. border: 0px !important;
  781. padding-left: 8px;
  782. padding-right: 20px;
  783. background: #e5e5e5;
  784. height: 28px;
  785. width: 240px;
  786. box-shadow: none;
  787. border-left: 10px solid #fff !important;
  788. transition: all 0.5s ease-in-out 0s;
  789. -webkit-transition: all 0.5s ease-in-out 0s;
  790. }
  791. .search-input-area button, .search-input-area button:focus {
  792. border: 0px !important;
  793. text-align: center;
  794. background: #4f4f4f !important;
  795. height: 36px;
  796. width: 40px;
  797. box-shadow: none;
  798. text-shadow: none;
  799. color: #fff !important;
  800. }
  801. .search-input-area input:focus {
  802. outline: 0;
  803. background: #ccc !important;
  804. }
  805. .breadcrumb .search-input-area > i, #sidebar .search-input-area > i {
  806. cursor: pointer;
  807. display: inline-block !important;
  808. font-size: 18px;
  809. position: absolute !important;
  810. right: -10px !important;
  811. top: 7px !important;
  812. }
  813. /* widget container */
  814. .sortable .widget .widget-title {
  815. cursor: move;
  816. }
  817. .sortable-box-placeholder {
  818. background-color: #f5f5f5;
  819. border: 1px dashed #DDDDDD;
  820. display: block;
  821. margin-top: 0px !important;
  822. margin-left: 1%;
  823. margin-right: 0.6%;
  824. -webkit-border-radius: 3px;
  825. -moz-border-radius: 3px;
  826. border-radius: 3px;
  827. }
  828. .sortable-box-placeholder * {
  829. visibility:hidden;
  830. }
  831. .widget {
  832. background:#fff;
  833. clear: both;
  834. margin-bottom: 20px;
  835. margin-top: 0;
  836. border: 1px solid #404040;
  837. }
  838. .widget-title {
  839. background: #404040;
  840. height: 36px;
  841. }
  842. .widget.green {
  843. border: 1px solid #74B749;
  844. }
  845. .widget.green .widget-title {
  846. background: #74B749;
  847. }
  848. .widget.blue {
  849. border: 1px solid #4A8BC2;
  850. }
  851. .widget.blue .widget-title {
  852. background: #4A8BC2;
  853. }
  854. .widget.purple {
  855. border: 1px solid #9D4A9C;
  856. }
  857. .widget.purple .widget-title {
  858. background: #9D4A9C;
  859. }
  860. .widget.yellow {
  861. border: 1px solid #FFB400;
  862. }
  863. .widget.yellow .widget-title {
  864. background: #FFB400;
  865. }
  866. .widget.orange {
  867. border: 1px solid #F37B53;
  868. }
  869. .widget.orange .widget-title {
  870. background: #F37B53;
  871. }
  872. .widget.red {
  873. border: 1px solid #DE577B;
  874. }
  875. .widget.red .widget-title {
  876. background: #DE577B;
  877. }
  878. .widget-title > h4 {
  879. float: left;
  880. font-size: 14px;
  881. font-weight: normal;
  882. padding: 10px 11px 10px 15px;
  883. line-height: 12px;
  884. margin: 0;
  885. font-family: 'MyriadPro-Regular';
  886. }
  887. .widget-title > h4 i {
  888. font-size: 14px;
  889. margin-right: 2px;
  890. }
  891. .widget-title span.tools {
  892. float: right;
  893. margin: 2px 0 0;
  894. padding: 6px 5px 6px 10px;
  895. }
  896. .widget-title span.tools > a {
  897. display: inline-block;
  898. margin-right: 5px;
  899. color: #fff;
  900. font-size: 14px;
  901. text-decoration: none;
  902. }
  903. .widget-title span.tools > a:hover {
  904. text-decoration: none;
  905. -webkit-transition: all 0.1s ease-in-out;
  906. -moz-transition: all 0.1s ease-in-out;
  907. -o-transition: all 0.1s ease-in-out;
  908. -ms-transition: all 0.1s ease-in-out;
  909. transition: all 0.1s ease-in-out;
  910. opacity: .7;
  911. }
  912. .widget-title .btn-group {
  913. margin-right:5px;
  914. margin-top: -2px;
  915. }
  916. .widget-title .btn-group .caret {
  917. margin-top: 8px;
  918. margin-left: 3px;
  919. }
  920. .widget-body {
  921. padding: 15px 15px;
  922. }
  923. /* icon buttons */
  924. .icon-btn {
  925. height: 70px;
  926. width: 50px;
  927. margin: 10px 0px 10px 0px;
  928. padding: 16px 0px 0px 0px;
  929. font-size: 10px;
  930. background-color: #fff !important;
  931. border: 1px solid #ccc;
  932. display:block !important;
  933. color: #646464 !important;
  934. text-align: center;
  935. cursor: pointer;
  936. position: relative;
  937. -webkit-transition: all 0.3s ease !important;
  938. -moz-transition: all 0.3s ease !important;
  939. -ms-transition: all 0.3s ease !important;
  940. -o-transition: all 0.3s ease !important;
  941. transition: all 0.3s ease !important;
  942. }
  943. .ie8 .icon-btn:hover {
  944. filter: none !important;
  945. }
  946. .icon-btn:hover {
  947. border: 1px solid #404040;
  948. background: #fff !important;
  949. text-decoration: none !important;
  950. box-shadow: none !important;
  951. color: #444 !important;
  952. -webkit-transition: all 0.3s ease !important;
  953. -moz-transition: all 0.3s ease !important;
  954. -ms-transition: all 0.3s ease !important;
  955. -o-transition: all 0.3s ease !important;
  956. transition: all 0.3s ease !important;
  957. }
  958. .icon-btn i {
  959. font-size: 20px;
  960. color: #777 !important;
  961. }
  962. .icon-btn div {
  963. margin-top: 5px;
  964. margin-bottom: 20px;
  965. font-size: 12px !important;
  966. font-family: Arial;
  967. }
  968. .icon-btn .badge {
  969. position: absolute;
  970. font-size: 10px !important;
  971. top: 26px;
  972. right: -8px;
  973. height: 14px;
  974. padding: 3px 7px;
  975. color: white !important;
  976. -webkit-border-radius: 10px;
  977. -moz-border-radius: 10px;
  978. border-radius: 10px;
  979. text-shadow: none;
  980. font-family: Arial;
  981. }
  982. .icon-btn:hover .badge {
  983. -webkit-transition: all 0.3s ease !important;
  984. -moz-transition: all 0.3s ease !important;
  985. -ms-transition: all 0.3s ease !important;
  986. -o-transition: all 0.3s ease !important;
  987. transition: all 0.3s ease !important;
  988. }
  989. .icon-btn i {
  990. -webkit-transition: all .5s ease-in-out;
  991. -moz-transition: all .5s ease-in-out;
  992. -o-transition: all .5s ease-in-out;
  993. -ms-transition: all .5s ease-in-out;
  994. }
  995. .icon-btn:hover i {
  996. -webkit-transform: rotate(360deg);
  997. -moz-transform: rotate(360deg);
  998. -o-transform: rotate(360deg);
  999. -ms-transform: rotate(360deg);
  1000. color: #fff;
  1001. opacity: 1;
  1002. }
  1003. /* custom dropdown */
  1004. .dropdown-menu {
  1005. position: absolute;
  1006. top: 100%;
  1007. left: 0;
  1008. z-index: 1000;
  1009. display: none;
  1010. float: left;
  1011. padding: 0px 0;
  1012. margin: 2px 0 0;
  1013. list-style: none;
  1014. text-shadow: none;
  1015. background-color: #fcfcfc;
  1016. border: 1px solid rgba(0, 2, 1, 0.2);
  1017. -webkit-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
  1018. -moz-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
  1019. box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
  1020. -webkit-background-clip: padding-box;
  1021. -moz-background-clipp: padding;
  1022. background-clip: padding-box;
  1023. padding: 0px 0;
  1024. margin:0px;
  1025. list-style: none;
  1026. text-shadow: none;
  1027. }
  1028. .dropdown-menu.opens-left {
  1029. margin-top: 2px;
  1030. margin-left: -88px;
  1031. }
  1032. .ie8 .dropdown-menu.opens-left {
  1033. margin-left: -82px;
  1034. }
  1035. .dropdown-menu.extended {
  1036. top:40px;
  1037. min-width: 160px !important;
  1038. max-width: 300px !important;
  1039. width: 235px !important;
  1040. }
  1041. .dropdown-menu.logout {
  1042. width: 150px !important;
  1043. min-width: 120px !important;
  1044. max-width: 260px !important;
  1045. }
  1046. .dropdown-menu.extended li a{
  1047. display: block;
  1048. padding: 5px 10px !important;
  1049. clear: both;
  1050. font-weight: normal;
  1051. line-height: 20px;
  1052. white-space: normal !important;
  1053. }
  1054. .dropdown-menu.extended .arrow{
  1055. top:-14px;
  1056. left: 10px;
  1057. position: absolute;
  1058. margin-top: 6px;
  1059. margin-right: 12px;
  1060. width: 0;
  1061. height: 0;
  1062. border-bottom: 8px solid #f3f3f3;
  1063. border-left: 8px solid transparent;
  1064. border-right: 8px solid transparent;
  1065. }
  1066. .dropdown-menu.extended li i{
  1067. margin-right: 3px;
  1068. }
  1069. .dropdown-menu.extended li a{
  1070. padding: 10px !important;
  1071. background-color: #fff !important;
  1072. }
  1073. .dropdown-menu.extended li a:hover {
  1074. background-color: #f3f3f3 !important;
  1075. }
  1076. .dropdown-menu.extended li p{
  1077. padding: 10px;
  1078. background-color: #eee;
  1079. margin: 0px;
  1080. color: #666;
  1081. }
  1082. .dropdown-menu.extended li a{
  1083. padding: 7px 0 5px 0px;
  1084. list-style: none;
  1085. border-bottom: 1px solid #EBEBEB !important;
  1086. font-size: 12px;
  1087. }
  1088. .dropdown-menu.extended li:first-child a {
  1089. border-top: none;
  1090. border-bottom: 1px solid #EBEBEB !important;
  1091. }
  1092. .dropdown-menu.extended li:last-child a {
  1093. border-top: 1px solid white !important;
  1094. border-bottom: 1px solid #EBEBEB !important;
  1095. }
  1096. .dropdown-menu.inbox li a .photo img {
  1097. float: left;
  1098. height: 40px;
  1099. width: 40px;
  1100. margin-right: 4px;
  1101. -webkit-border-radius: 2px;
  1102. -moz-border-radius: 2px;
  1103. border-radius: 2px;
  1104. }
  1105. .dropdown-menu.inbox li a .subject {
  1106. display: block;
  1107. }
  1108. .dropdown-menu.inbox li a .subject .from {
  1109. font-size: 12px;
  1110. font-weight: bold;
  1111. }
  1112. .dropdown-menu.inbox li a .subject .time {
  1113. font-size: 11px;
  1114. font-weight: bold;
  1115. font-style: italic;
  1116. position: absolute;
  1117. right: 5px;
  1118. }
  1119. .dropdown-menu.inbox li a .message {
  1120. display: block !important;
  1121. font-size: 11px;
  1122. }
  1123. /*fontawesome*/
  1124. .fontawesome-icon-list .span3{
  1125. margin-left: 0;
  1126. }
  1127. .fontawesome-icon-list .span3 i{
  1128. font-size: 16px;
  1129. }
  1130. .fontawesome-icon-list .span3 a{
  1131. color: #888888;
  1132. }
  1133. /* star rating */
  1134. .rating {
  1135. unicode-bidi: bidi-override;
  1136. direction: rtl;
  1137. font-size: 30px;
  1138. }
  1139. .rating span.star,
  1140. .rating span.star {
  1141. font-family: FontAwesome;
  1142. font-weight: normal;
  1143. font-style: normal;
  1144. display: inline-block;
  1145. }
  1146. .rating span.star:hover,
  1147. .rating span.star:hover {
  1148. cursor: pointer;
  1149. }
  1150. .rating span.star:before,
  1151. .rating span.star:before {
  1152. content: "\f006";
  1153. padding-right: 5px;
  1154. color: #999999;
  1155. }
  1156. .rating span.star:hover:before,
  1157. .rating span.star:hover:before,
  1158. .rating span.star:hover ~ span.star:before,
  1159. .rating span.star:hover ~ span.star:before {
  1160. content: "\f005";
  1161. color: #87bb33;
  1162. }
  1163. /* adjust uniform components */
  1164. .radio, .checkbox {
  1165. padding-left: 0px !important;
  1166. }
  1167. .controls > .radio,
  1168. .controls > .checkbox {
  1169. display: inline-block;
  1170. padding: 0 !important;
  1171. margin: 0 25px 0 0 !important;
  1172. }
  1173. .controls > .radio.line,
  1174. .controls > .checkbox.line {
  1175. display: block;
  1176. padding: 0 !important;
  1177. margin: 0 !important;
  1178. margin-top: 5px !important;
  1179. }
  1180. .controls .text {
  1181. display: block;
  1182. margin-top: 5px;
  1183. }
  1184. .checkbox div.checker {
  1185. margin-right: 2px !important;
  1186. }
  1187. .uploader {
  1188. margin-top: 2px !important;
  1189. }
  1190. /*toggle style*/
  1191. .toggle-button label {
  1192. background: #fefefe !important;
  1193. border-radius: 0 !important;
  1194. }
  1195. /* line 83, ../sass/bootstrap-toggle-buttons.scss */
  1196. .toggle-button span.labelRight {
  1197. background: #fefefe !important;
  1198. }
  1199. /* line 91, ../sass/bootstrap-toggle-buttons.scss */
  1200. .toggle-button span.primary, .toggle-button span.labelLeft {
  1201. color: #fefefe;
  1202. background: #4e89c7 !important;
  1203. }
  1204. /* line 96, ../sass/bootstrap-toggle-buttons.scss */
  1205. .toggle-button span.info {
  1206. color: #fefefe;
  1207. background: #3daced !important;
  1208. }
  1209. /* line 102, ../sass/bootstrap-toggle-buttons.scss */
  1210. .toggle-button span.success {
  1211. color: #fefefe;
  1212. background: #97c80b !important;
  1213. }
  1214. /* line 108, ../sass/bootstrap-toggle-buttons.scss */
  1215. .toggle-button span.warning {
  1216. color: #fefefe;
  1217. background: #f9b400 !important;
  1218. }
  1219. /* line 114, ../sass/bootstrap-toggle-buttons.scss */
  1220. .toggle-button span.danger {
  1221. color: #fefefe;
  1222. background: #e24b53 !important;
  1223. }
  1224. /* font awesome icon classes */
  1225. [class^="icon-"], [class*=" icon-"],[class^="icon-"]:hover, [class*=" icon-"]:hover {
  1226. background: none !important;
  1227. }
  1228. /* hide by default ie8*/
  1229. .visible-ie8 {
  1230. display: none;
  1231. }
  1232. .tab-content {
  1233. padding: 0px;
  1234. overflow: hidden;
  1235. }
  1236. /*navigation*/
  1237. .bs-docs-example .navbar-inner .nav .dropdown-toggle:hover,
  1238. .bs-docs-example .navbar .nav li.dropdown.active > .dropdown-toggle,
  1239. .bs-docs-example .navbar .nav li.dropdown.open.active > .dropdown-toggle,
  1240. .bs-docs-example .navbar-inner .nav .dropdown.open .dropdown-toggle{
  1241. background-color: #E5E5E5 !important;
  1242. color: #555555;
  1243. }
  1244. .bs-docs-example .navbar .nav > .active > a,
  1245. .bs-docs-example .navbar .nav > .active > a:hover,
  1246. .bs-docs-example .navbar .nav > .active > a:focus {
  1247. box-shadow: none;
  1248. }
  1249. .bs-docs-example .navbar-inner {
  1250. background: #f2f2f2;
  1251. }
  1252. /*flot chart*/
  1253. .plots{
  1254. margin-top: 20px;
  1255. width:100%;
  1256. height:300px
  1257. }
  1258. .metro_tips {
  1259. background: rgba(0, 0, 0, 0.6);
  1260. color: #fff;
  1261. padding: 5px 10px;
  1262. border-radius: 2px;
  1263. }
  1264. /*easy pie chart*/
  1265. .easy-pie-chart {
  1266. display: inline-block;
  1267. margin: 0px 18px;
  1268. }
  1269. .easy-pie-chart .title {
  1270. text-align: center;
  1271. }
  1272. .update-btn {
  1273. float: right;
  1274. margin-top: 3px;
  1275. }
  1276. /*spark line chart*/
  1277. .sparkline {
  1278. padding: 9px 13px;
  1279. display: inline-block;
  1280. text-align: center;
  1281. }
  1282. .sparkline .sparkline-tittle {
  1283. font-size: 16px;
  1284. padding-top: 15px;
  1285. display: inline-block;
  1286. font-weight:normal;
  1287. font-family: "MyriadPro-Light";
  1288. }
  1289. /* charts & stats */
  1290. .chart, .pie, .bars {
  1291. height: 300px;
  1292. }
  1293. .stat {
  1294. margin: 0px;
  1295. padding: 0px;
  1296. }
  1297. .item-list.table .percent {
  1298. width: 30px;
  1299. float: right;
  1300. margin-right: 10px;
  1301. margin-top: 3px;
  1302. }
  1303. .item-list.table .title {
  1304. padding-top: -5px;
  1305. }
  1306. .stat .title {
  1307. margin-left: 10px;
  1308. margin-right: 10px;
  1309. font-size1: 13px;
  1310. }
  1311. .stat.good .percent {
  1312. color: #52e136;
  1313. font-size: 16px;
  1314. font-weight: bold;
  1315. }
  1316. .stat.bad .percent {
  1317. color: #d12610;
  1318. font-size: 16px;
  1319. font-weight: bold;
  1320. }
  1321. .stat.ok .percent {
  1322. color: #37b7f3;
  1323. font-size: 16px;
  1324. font-weight: bold;
  1325. }
  1326. /* general list for item with picture */
  1327. ul.item-list li .pic {
  1328. height: 50px;
  1329. width: 50px;
  1330. float: left;
  1331. margin-top: 3px;
  1332. margin-right: 5px;
  1333. -webkit-border-radius: 2px !important;
  1334. -moz-border-radius: 2px !important;
  1335. border-radius: 2px !important;
  1336. }
  1337. ul.item-list {
  1338. margin: 0px;
  1339. list-style: none;
  1340. }
  1341. ul.item-list li {
  1342. /*padding: 11px 0;*/
  1343. list-style: none;
  1344. border-top: 1px solid white;
  1345. border-bottom: 10px solid #fff;
  1346. font-size: 12px;
  1347. background: #ededed;
  1348. }
  1349. ul.item-list li:first-child {
  1350. border-top: none;
  1351. /*border-bottom: 1px solid #EBEBEB;*/
  1352. }
  1353. ul.item-list li:last-child {
  1354. border-top: none;
  1355. border-bottom: none;
  1356. }
  1357. ul.item-list li .label {
  1358. margin-right: 5px;
  1359. padding: 12px !important;
  1360. }
  1361. ul.item-list .pull-right span {
  1362. padding: 9px !important;
  1363. display: inline-block;
  1364. }
  1365. /* general purpose block with css3 gradient background */
  1366. .block {
  1367. line-height: 18px;
  1368. margin: 0 0 20px 0;
  1369. padding: 10px;
  1370. text-align: center;
  1371. }
  1372. /* metro dashboard states */
  1373. .metro-nav {
  1374. font-family: 'MyriadPro-Light';
  1375. }
  1376. .metro-nav .nav-block-orange {
  1377. background: #f37b53;
  1378. }
  1379. .metro-nav .nav-block-yellow {
  1380. background: #FFB400;
  1381. }
  1382. .metro-nav .nav-block-blue {
  1383. background: #0DAED3;
  1384. }
  1385. .metro-nav .nav-block-green {
  1386. background: #74B749;
  1387. }
  1388. .metro-nav .nav-block-red {
  1389. background:#de577b;
  1390. }
  1391. .metro-nav .nav-block-purple {
  1392. background: #9d4a9c;
  1393. }
  1394. .metro-nav .nav-block-grey {
  1395. background: #77808a;
  1396. }
  1397. .metro-fix-view .metro-nav-block.double {
  1398. width: 251px !important;
  1399. }
  1400. .metro-fix-view .metro-nav-block.long {
  1401. width: 251px !important;
  1402. height: 235px !important;
  1403. }
  1404. .metro-fix-view .metro-nav-block.long .value {
  1405. padding-top: 30px !important;
  1406. display: inline-block;
  1407. }
  1408. .metro-fix-view .metro-nav-block.long .value i {
  1409. font-size: 90px;
  1410. }
  1411. .metro-fix-view .metro-nav-block {
  1412. color: white;
  1413. cursor: pointer;
  1414. display: block;
  1415. float: left;
  1416. font-weight: 300;
  1417. height: 120px;
  1418. letter-spacing: 0.02em;
  1419. line-height: 20px;
  1420. margin: 0 1% 1% 0;
  1421. overflow: hidden;
  1422. position: relative;
  1423. text-decoration: none;
  1424. width: 120px !important;
  1425. z-index: 1;
  1426. }
  1427. .metro-nav .metro-nav-block.double {
  1428. width: 28%;
  1429. }
  1430. .metro-nav .metro-nav-block {
  1431. color: white;
  1432. cursor: pointer;
  1433. display: block;
  1434. float: left;
  1435. font-weight: 300;
  1436. height:114px;
  1437. letter-spacing: 0.02em;
  1438. line-height: 20px;
  1439. margin: 0 1% 1% 0;
  1440. overflow: hidden;
  1441. position: relative;
  1442. text-decoration: none;
  1443. width: 17%;
  1444. z-index: 1;
  1445. }
  1446. .metro-nav .metro-nav-block i {
  1447. font-size: 50px;
  1448. margin-top: 20px;
  1449. display: inline-block;
  1450. }
  1451. .metro-nav .metro-nav-block:last-child {
  1452. margin-right: 0;
  1453. }
  1454. .metro-nav .metro-nav-block a {
  1455. color: white;
  1456. font-size: 18px;
  1457. font-weight: 400;
  1458. height: 90%;
  1459. line-height: 16px;
  1460. overflow: hidden;
  1461. padding: 5px 10px;
  1462. position: absolute;
  1463. text-overflow: ellipsis;
  1464. vertical-align: top;
  1465. width: 88%;
  1466. text-decoration: none;
  1467. }
  1468. .metro-nav .metro-nav-block a i {
  1469. transition: all 0.5s ease-in-out 0s;
  1470. -moz-transition: all 0.5s ease-in-out 0s;
  1471. -webkit-transition: all 0.5s ease-in-out 0s;
  1472. -o-transition: all 0.5s ease-in-out 0s;
  1473. }
  1474. .metro-nav .metro-nav-block a .info {
  1475. transition: all 0.4s ease-in-out 0s;
  1476. -moz-transition: all 0.4s ease-in-out 0s;
  1477. -webkit-transition: all 0.4s ease-in-out 0s;
  1478. -o-transition: all 0.4s ease-in-out 0s;
  1479. }
  1480. .metro-nav .metro-nav-block a:hover i{
  1481. transform:rotate(83deg);
  1482. -moz-transform:rotate(83deg);
  1483. -webkit-transform:rotate(83deg);
  1484. -o-transform:rotate(83deg);
  1485. font-size: 140px;
  1486. opacity: 0.2;
  1487. }
  1488. .metro-nav .metro-nav-block.long a:hover i{
  1489. font-size: 200px;
  1490. }
  1491. .metro-nav .metro-nav-block.long a {
  1492. height: 96%;
  1493. }
  1494. .metro-nav .metro-nav-block a:hover .info {
  1495. transform:rotate(360deg);
  1496. -moz-transform:rotate(360deg);
  1497. -webkit-transform:rotate(360deg);
  1498. -o-transform:rotate(360deg);
  1499. font-size: 40px;
  1500. opacity: 0.6;
  1501. }
  1502. .metro-nav .metro-nav-block:hover {
  1503. opacity: 0.8;
  1504. }
  1505. .metro-nav .metro-nav-block.double a {
  1506. width: 94%;
  1507. }
  1508. .metro-nav .metro-nav-block .info {
  1509. font-size: 24px;
  1510. position: absolute;
  1511. right: 10px;
  1512. top: 45px;
  1513. }
  1514. .metro-nav .metro-nav-block .status, .metro-nav .metro-nav-block .tile-status {
  1515. background-color: transparent;
  1516. bottom: -10px;
  1517. font-size: 14px;
  1518. left: 10px;
  1519. min-height: 30px;
  1520. position: absolute;
  1521. }
  1522. /*task bar*/
  1523. .no-margin-bot {
  1524. margin-bottom: 0 !important;
  1525. }
  1526. .dropdown-menu.tasks-bar .task-info {
  1527. margin-bottom: 5px;
  1528. }
  1529. .dropdown-menu.tasks-bar .task-info .desc {
  1530. font-size: 13px;
  1531. font-weight: normal;
  1532. }
  1533. .dropdown-menu.tasks-bar .task-info .percent {
  1534. float: right;
  1535. font-size: 13px;
  1536. font-weight: bold;
  1537. display: inline-block;
  1538. padding-left: 10px;
  1539. }
  1540. /* mini chart and bar containers */
  1541. .bar-chart {display: none}
  1542. .line-chart {display: none}
  1543. /* custom label and badges */
  1544. .notify-row .badge {
  1545. position: absolute;
  1546. top: -5px;
  1547. z-index: 100;
  1548. right: 1px;
  1549. }
  1550. .badge {
  1551. -webkit-border-radius: 10px!important;
  1552. -moz-border-radius: 10px !important;
  1553. border-radius: 10px !important;
  1554. padding: 2px 6px;
  1555. }
  1556. .label {
  1557. -webkit-border-radius: 0px !important;
  1558. -moz-border-radius: 0px !important;
  1559. border-radius: 0px !important;
  1560. text-shadow: none !important;
  1561. padding: 5px !important;
  1562. }
  1563. .label-success, .badge-success {
  1564. background-color: #a5d16c;
  1565. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a5d16c), color-stop(100%, #a5d16c));
  1566. background-image: -webkit-linear-gradient(top, #a5d16c, #a5d16c);
  1567. background-image: -moz-linear-gradient(top, #a5d16c, #a5d16c);
  1568. background-image: -ms-linear-gradient(top, #a5d16c, #a5d16c);
  1569. background-image: -o-linear-gradient(top, #a5d16c, #a5d16c);
  1570. background-image: linear-gradient(top, #a5d16c, #a5d16c);
  1571. }
  1572. .label-warning, .badge-warning {
  1573. background-color: #fcb322;
  1574. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcb322), color-stop(100%, #fcb322));
  1575. background-image: -webkit-linear-gradient(top, #fcb322, #fcb322);
  1576. background-image: -moz-linear-gradient(top, #fcb322, #fcb322);
  1577. background-image: -ms-linear-gradient(top, #fcb322, #fcb322);
  1578. background-image: -o-linear-gradient(top, #fcb322, #fcb322);
  1579. background-image: linear-gradient(top, #fcb322, #fcb322);
  1580. }
  1581. .label-important, .badge-important {
  1582. background-color: #e74955;
  1583. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e74955), color-stop(100%, #e74955));
  1584. background-image: -webkit-linear-gradient(top, #e74955, #e74955);
  1585. background-image: -moz-linear-gradient(top, #e74955, #e74955);
  1586. background-image: -ms-linear-gradient(top, #e74955, #e74955);
  1587. background-image: -o-linear-gradient(top, #e74955, #e74955);
  1588. background-image: linear-gradient(top, #e74955, #e74955);
  1589. }
  1590. .label-info, .badge-info {
  1591. background-color: #32c2cd;
  1592. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #32c2cd), color-stop(100%, #32c2cd));
  1593. background-image: -webkit-linear-gradient(top, #32c2cd, #32c2cd);
  1594. background-image: -moz-linear-gradient(top, #32c2cd, #32c2cd);
  1595. background-image: -ms-linear-gradient(top, #32c2cd, #32c2cd);
  1596. background-image: -o-linear-gradient(top, #32c2cd, #32c2cd);
  1597. background-image: linear-gradient(top, #32c2cd, #32c2cd);
  1598. }
  1599. .label-mini {
  1600. font-size: 11px;
  1601. }
  1602. /*progress bar*/
  1603. .progress {
  1604. height: 10px;
  1605. border-radius: 0;
  1606. -moz-border-radius: 0;
  1607. -webkit-border-radius: 0;
  1608. }
  1609. .progress {
  1610. margin-bottom: 20px;
  1611. overflow: hidden;
  1612. background-color: #ededed !important;
  1613. background-image: -moz-linear-gradient(top, #ededed, #ededed);
  1614. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ededed), to(#ededed));
  1615. background-image: -webkit-linear-gradient(top, #ededed, #ededed);
  1616. background-image: -o-linear-gradient(top, #ededed, #ededed);
  1617. background-image: linear-gradient(to bottom, #ededed, #ededed);
  1618. background-repeat: repeat-x;
  1619. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  1620. -webkit-box-shadow: none;
  1621. -moz-box-shadow: none;
  1622. box-shadow: none;
  1623. }
  1624. .progress .bar {
  1625. float: left;
  1626. width: 0;
  1627. height: 100%;
  1628. font-size: 12px;
  1629. color: #ffffff;
  1630. text-align: center;
  1631. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1632. background-color: #0e90d2;
  1633. background-image: -moz-linear-gradient(top, #0e90d2, #0e90d2);
  1634. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0e90d2), to(#0e90d2));
  1635. background-image: -webkit-linear-gradient(top, #0e90d2, #0e90d2);
  1636. background-image: -o-linear-gradient(top, #0e90d2, #0e90d2);
  1637. background-image: linear-gradient(to bottom, #0e90d2, #0e90d2);
  1638. background-repeat: repeat-x;
  1639. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  1640. -webkit-box-shadow: none;
  1641. -moz-box-shadow: none;
  1642. box-shadow: none;
  1643. -webkit-box-sizing: border-box;
  1644. -moz-box-sizing: border-box;
  1645. box-sizing: border-box;
  1646. -webkit-transition: width 0.6s ease;
  1647. -moz-transition: width 0.6s ease;
  1648. -o-transition: width 0.6s ease;
  1649. transition: width 0.6s ease;
  1650. }
  1651. .progress .bar + .bar {
  1652. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  1653. -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  1654. box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  1655. }
  1656. .progress-striped .bar {
  1657. background-color: #149bdf;
  1658. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1659. 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);
  1660. background-image: -moz-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);
  1661. 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);
  1662. 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);
  1663. -webkit-background-size: 40px 40px;
  1664. -moz-background-size: 40px 40px;
  1665. -o-background-size: 40px 40px;
  1666. background-size: 40px 40px;
  1667. }
  1668. .progress.active .bar {
  1669. -webkit-animation: progress-bar-stripes 2s linear infinite;
  1670. -moz-animation: progress-bar-stripes 2s linear infinite;
  1671. -ms-animation: progress-bar-stripes 2s linear infinite;
  1672. -o-animation: progress-bar-stripes 2s linear infinite;
  1673. animation: progress-bar-stripes 2s linear infinite;
  1674. }
  1675. .progress-danger .bar,
  1676. .progress .bar-danger {
  1677. background-color: #dd514c;
  1678. background-image: -moz-linear-gradient(top, #dd514c, #dd514c);
  1679. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dd514c), to(#dd514c));
  1680. background-image: -webkit-linear-gradient(top, #dd514c, #dd514c);
  1681. background-image: -o-linear-gradient(top, #dd514c, #dd514c);
  1682. background-image: linear-gradient(to bottom, #dd514c, #dd514c);
  1683. background-repeat: repeat-x;
  1684. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
  1685. }
  1686. .progress-danger.progress-striped .bar,
  1687. .progress-striped .bar-danger {
  1688. background-color: #ee5f5b;
  1689. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1690. 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);
  1691. background-image: -moz-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);
  1692. 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);
  1693. 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);
  1694. }
  1695. .progress-success .bar,
  1696. .progress .bar-success {
  1697. background-color: #5eb95e;
  1698. background-image: -moz-linear-gradient(top, #5eb95e, #5eb95e);
  1699. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5eb95e), to(#5eb95e));
  1700. background-image: -webkit-linear-gradient(top, #5eb95e, #5eb95e);
  1701. background-image: -o-linear-gradient(top, #5eb95e, #5eb95e);
  1702. background-image: linear-gradient(to bottom, #5eb95e, #5eb95e);
  1703. background-repeat: repeat-x;
  1704. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
  1705. }
  1706. .progress-success.progress-striped .bar,
  1707. .progress-striped .bar-success {
  1708. background-color: #62c462;
  1709. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1710. 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);
  1711. background-image: -moz-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);
  1712. 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);
  1713. 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);
  1714. }
  1715. .progress-info .bar,
  1716. .progress .bar-info {
  1717. background-color: #4bb1cf;
  1718. background-image: -moz-linear-gradient(top, #4bb1cf, #4bb1cf);
  1719. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4bb1cf), to(#4bb1cf));
  1720. background-image: -webkit-linear-gradient(top, #4bb1cf, #4bb1cf);
  1721. background-image: -o-linear-gradient(top, #4bb1cf, #4bb1cf);
  1722. background-image: linear-gradient(to bottom, #4bb1cf, #4bb1cf);
  1723. background-repeat: repeat-x;
  1724. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
  1725. }
  1726. .progress-info.progress-striped .bar,
  1727. .progress-striped .bar-info {
  1728. background-color: #5bc0de;
  1729. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1730. 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);
  1731. background-image: -moz-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);
  1732. 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);
  1733. 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);
  1734. }
  1735. .progress-warning .bar,
  1736. .progress .bar-warning {
  1737. background-color: #faa732;
  1738. background-image: -moz-linear-gradient(top, #faa732, #faa732);
  1739. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#faa732), to(#faa732));
  1740. background-image: -webkit-linear-gradient(top, #faa732, #faa732);
  1741. background-image: -o-linear-gradient(top, #faa732, #faa732);
  1742. background-image: linear-gradient(to bottom, #faa732, #faa732);
  1743. background-repeat: repeat-x;
  1744. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  1745. }
  1746. .progress-warning.progress-striped .bar,
  1747. .progress-striped .bar-warning {
  1748. background-color: #fbb450;
  1749. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1750. 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);
  1751. background-image: -moz-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);
  1752. 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);
  1753. 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);
  1754. }
  1755. /*pre loader list */
  1756. .list_items > li {
  1757. padding: 0 16px 12px 0;
  1758. }
  1759. /*pagination */
  1760. .pagination {
  1761. margin: 10px 0;
  1762. }
  1763. /*slider*/
  1764. table.sliders tr td {
  1765. padding: 30px 0;
  1766. }
  1767. .slider {
  1768. margin-top: 3px;
  1769. }
  1770. .slider-info {
  1771. padding-top: 10px;
  1772. }
  1773. .sliders .ui-widget-header {
  1774. background: #95c9ff !important;
  1775. }
  1776. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  1777. border-bottom-right-radius: 0 !important;
  1778. }
  1779. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  1780. border-bottom-left-radius: 0 !important;
  1781. }
  1782. .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  1783. border-top-right-radius: 0 !important;
  1784. }
  1785. .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  1786. border-top-left-radius: 0 !important;
  1787. }
  1788. #eq span {
  1789. height:120px; float:left; margin:15px
  1790. }
  1791. .ui-widget-content {
  1792. background: #eaeaea !important;
  1793. border: none !important;
  1794. }
  1795. .ui-slider-horizontal {
  1796. height: 8px !important;
  1797. }
  1798. .ui-slider-horizontal .ui-slider-handle {
  1799. top: -0.4em !important;
  1800. }
  1801. .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  1802. background: #F5F5F5 !important;
  1803. }
  1804. .ui-slider-vertical {
  1805. width: 8px !important;
  1806. }
  1807. .ui-slider-vertical .ui-slider-handle {
  1808. left: -0.45em !important;
  1809. }
  1810. /*font awesome icon style*/
  1811. .icon-style-list ul.unstyled li {
  1812. /*border: 1px solid #EAEAEA;*/
  1813. font-family: arial;
  1814. line-height: 30px;
  1815. margin-bottom: 10px;
  1816. padding: 0 10px;
  1817. font-size: 13px;
  1818. background: #eeeeee;
  1819. border-radius: 3px;
  1820. -moz-border-radius: 3px;
  1821. -webkit-border-radius: 3px;
  1822. }
  1823. .icon-style-list ul.unstyled li i {
  1824. font-size: 16px;
  1825. padding-right: 5px;
  1826. }
  1827. .icon-style-list h3, .icon-style-list h4 {
  1828. font-family: Arial;
  1829. }
  1830. ul.icons {
  1831. list-style-type: none;
  1832. text-indent: -0.75em;
  1833. margin-left: 25px;
  1834. }
  1835. /*alpha listing*/
  1836. .upper-alpha {
  1837. list-style: upper-alpha;
  1838. }
  1839. /*roman list*/
  1840. .roman-list {
  1841. list-style: upper-roman;
  1842. }
  1843. /*glyphicons icon style*/
  1844. .the-icons {
  1845. list-style: none;
  1846. margin-left: 0;
  1847. }
  1848. .the-icons li {
  1849. float: left;
  1850. line-height: 25px;
  1851. width:20%;
  1852. line-height: 30px;
  1853. }
  1854. /* item block */
  1855. .item {
  1856. overflow: hidden;
  1857. display: block;
  1858. }
  1859. .item:hover .zoom-icon{
  1860. opacity:0.5;
  1861. filter: alpha(opacity = 50);
  1862. }
  1863. /* zoom icon overlay on images */
  1864. .zoom {
  1865. cursor: pointer;
  1866. width: 100%;
  1867. height: 100%;
  1868. position: relative;
  1869. z-index: 5;
  1870. }
  1871. .zoom .zoom-icon {
  1872. background-image:url("../img/overlay-icon.png");
  1873. background-color: #222;
  1874. background-repeat: no-repeat;
  1875. background-position: 50%;
  1876. position: absolute;
  1877. width: inherit;
  1878. height: inherit;
  1879. opacity: 0;
  1880. filter: alpha(opacity = 0);
  1881. z-index: 6;
  1882. top:0;
  1883. }
  1884. /* login page */
  1885. .login-wrap {
  1886. width: 960px;
  1887. margin: 5% auto 0;
  1888. color: #fff;
  1889. text-align: center;
  1890. font-family: "MyriadPro-Light";
  1891. }
  1892. .login-wrap .metro {
  1893. height: 150px;
  1894. float: left;
  1895. margin: 0 10px 10px 0;
  1896. }
  1897. .login-wrap .double-size {
  1898. width: 310px;
  1899. }
  1900. .login-wrap .single-size {
  1901. width: 150px;
  1902. }
  1903. .login-wrap .red {
  1904. background: #e8687f;
  1905. }
  1906. .login-wrap .green {
  1907. background: #90bb4f;
  1908. }
  1909. .login-wrap .yellow {
  1910. background: #f5c147;
  1911. }
  1912. .login-wrap .terques {
  1913. background: #38bec9;
  1914. }
  1915. .login-wrap .navy-blue {
  1916. background: #5f7cb4;
  1917. }
  1918. .login-wrap .deep-red {
  1919. background: #993f3e;
  1920. }
  1921. .login-wrap .blue {
  1922. background: #48b5ee;
  1923. }
  1924. .login-wrap .purple {
  1925. background: #af5ec5;
  1926. }
  1927. .login-btn, .login-btn:hover {
  1928. background: none;
  1929. font-size: 28px;
  1930. margin-top: 65px;
  1931. font-family: "MyriadPro-Light";
  1932. color: #fff;
  1933. }
  1934. .login-btn i {
  1935. font-size: 22px !important;
  1936. padding-top: 0 !important;
  1937. display: inline !important;
  1938. }
  1939. .login-wrap .single-size a.social-link, .login-wrap .double-size a.social-link {
  1940. margin-top: 45px;
  1941. color: #fff;
  1942. display: inline-block;
  1943. text-decoration: none;
  1944. }
  1945. .login-wrap .single-size a.social-link i , .login-wrap .double-size a.social-link i{
  1946. font-size: 20px;
  1947. display: block;
  1948. padding-top: 0;
  1949. padding-bottom: 10px;
  1950. }
  1951. .login-footer {
  1952. width: 100%;
  1953. display: inline-block;
  1954. }
  1955. .remember-hint input[type="checkbox"]{
  1956. margin-top: -2px;
  1957. }
  1958. .forgot-hint a{
  1959. color: #fff;
  1960. margin-right: 10px;
  1961. }
  1962. /*lock page*/
  1963. body.lock {
  1964. background: #393939;
  1965. }
  1966. .lock-header {
  1967. margin-top: 5%;
  1968. text-align: center;
  1969. }
  1970. .lock .lock-wrap {
  1971. width: 800px;
  1972. margin: 5% auto 0;
  1973. color: #fff;
  1974. text-align: center;
  1975. font-family: "MyriadPro-Light";
  1976. }
  1977. .lock-wrap .metro {
  1978. height: 165px;
  1979. float: left;
  1980. margin: 0 10px 10px 0;
  1981. }
  1982. .lock-wrap .double-size {
  1983. width: 38%;
  1984. }
  1985. .lock-wrap .single-size {
  1986. width: 20%;
  1987. }
  1988. .lock-wrap .blue {
  1989. background: #66bbfc;
  1990. }
  1991. .lock-wrap .green {
  1992. background: #0ca389;
  1993. }
  1994. .lock-wrap .terques {
  1995. background: #36b1b9;
  1996. }
  1997. .lock-wrap .gray {
  1998. background: #595858;
  1999. }
  2000. .lock-wrap .orange {
  2001. background: #f37b53;
  2002. }
  2003. .lock-wrap .red {
  2004. background: #e8687f;
  2005. }
  2006. .lock-wrap h1 {
  2007. font-size: 25px;
  2008. text-align: center;
  2009. margin-bottom: 0;
  2010. padding-bottom: 0;
  2011. line-height: normal;
  2012. padding-top: 50px;
  2013. }
  2014. .lock-wrap p {
  2015. font-size: 15px;
  2016. text-align: center;
  2017. margin-bottom: 0;
  2018. padding-bottom: 0;
  2019. line-height: normal;
  2020. }
  2021. .lock-input {
  2022. margin-top: 60px;
  2023. }
  2024. .lock-input input {
  2025. height: 30px;
  2026. background: #fff;
  2027. box-shadow: none;
  2028. border:1px solid #fff;
  2029. }
  2030. .lock-input input:focus {
  2031. border:1px solid #fff !important;
  2032. }
  2033. .lock-input button.btn {
  2034. height: 40px;
  2035. background: #3db5a1;
  2036. border:1px solid #3db5a1 !important;
  2037. }
  2038. .lock-input button.btn i {
  2039. color: #fff;
  2040. font-size: 14px;
  2041. }
  2042. .single-size i {
  2043. font-size: 80px;
  2044. display: block;
  2045. padding-top: 30px;
  2046. }
  2047. .single-size span, .double-size span{
  2048. font-size: 20px;
  2049. }
  2050. .double-size span {
  2051. padding: 0 20px;
  2052. }
  2053. .double-size i {
  2054. font-size: 70px;
  2055. display: inline-block;
  2056. vertical-align: middle;
  2057. }
  2058. a.user-position {
  2059. margin-top: 40px;
  2060. display: inline-block;
  2061. text-decoration: none;
  2062. color: #fff;
  2063. }
  2064. a.user-position:hover {
  2065. color: #fff;
  2066. }
  2067. .user-position i, .social-link i {
  2068. transition: all 0.3s ease-in-out 0s;
  2069. -webkit-transition: all 0.3s ease-in-out 0s;
  2070. -o-transition: all 0.3s ease-in-out 0s;
  2071. }
  2072. .user-position:hover i, .social-link:hover i{
  2073. transform:rotate(360deg);
  2074. -webkit-transform:rotate(360deg);
  2075. -o-transform:rotate(360deg);
  2076. opacity: 0.2;
  2077. }
  2078. a.social-link i {
  2079. font-size: 30px !important;
  2080. }
  2081. /* Square stats */
  2082. .square-state {
  2083. }
  2084. .square-state .icon-btn {
  2085. margin-top: 0;
  2086. margin-bottom: 20px;
  2087. }
  2088. /*map stats*/
  2089. .map-stat {
  2090. margin: 20px;
  2091. display: block;
  2092. }
  2093. .map-stat:before,
  2094. .map-stat:after {
  2095. display: table;
  2096. line-height: 0;
  2097. content: "";
  2098. }
  2099. .map-stat:after {
  2100. clear: both;
  2101. }
  2102. .map-stat .visual {
  2103. width: 70px;
  2104. height: 60px;
  2105. margin-right: 5px;
  2106. display: block;
  2107. float: left;
  2108. }
  2109. .map-stat .visual i{
  2110. margin-top: 15px;
  2111. display: block;
  2112. font-size: 68px;
  2113. color: #4d4d4d;
  2114. }
  2115. .map-stat .details {
  2116. display: block;
  2117. float: left;
  2118. margin-left: 5px;
  2119. padding-top: 0px;
  2120. }
  2121. .map-stat .details .title {
  2122. margin: 0px 0px 5px 0px !important;
  2123. padding: 0px !important;
  2124. font-size: 12px;
  2125. color: #878787;
  2126. }
  2127. .map-stat .details .title i {
  2128. margin-top:2px !important;
  2129. color: #52e136;
  2130. font-size: 16px;
  2131. }
  2132. .map-stat .details .title i.down {
  2133. color: #b63625;
  2134. }
  2135. .map-stat .details .number {
  2136. margin: 0px !important;
  2137. margin-bottom: 7px !important;
  2138. font-size: 42px;
  2139. padding: 0px;
  2140. font-weight: bold;
  2141. color: #35d1fe;
  2142. }
  2143. /*scroller padding*/
  2144. .scroller {
  2145. padding-right: 10px;
  2146. }
  2147. /*jqvmap changes*/
  2148. .jqvmap-zoomin {
  2149. background-color: #666 !important;
  2150. }
  2151. .jqvmap-zoomout {
  2152. background-color: #666 !important;
  2153. }
  2154. .vmaps {
  2155. position: relative;
  2156. overflow: hidden;
  2157. height: 300px;
  2158. }
  2159. /* google maps */
  2160. .gmaps {
  2161. height: 300px;
  2162. width: 100%;
  2163. }
  2164. /* important! bootstrap sets max-width on img to 100% which conflicts with google map canvas*/
  2165. .gmaps img {
  2166. max-width: none;
  2167. }
  2168. #gmap_static div{
  2169. background-repeat: no-repeat !important;
  2170. background-position: 50% 50% !important;
  2171. height:100%;
  2172. display:block;
  2173. height: 300px;
  2174. }
  2175. #gmap_routes_instructions {
  2176. margin-top: 10px;
  2177. margin-bottom: 0px;
  2178. }
  2179. /* advance tables*/
  2180. .table-advance {
  2181. margin-bottom: 10px !important;
  2182. }
  2183. .table-advance thead {
  2184. color: #999;
  2185. }
  2186. .table-advance thead tr th{
  2187. background-color: #DDD;
  2188. color: #666;
  2189. }
  2190. .table-advance div.success, .table-advance div.info,
  2191. .table-advance div.important, .table-advance div.warning, .table-advance div.danger {
  2192. position: absolute;
  2193. margin-top:5px;
  2194. float: left;
  2195. width: 10px;
  2196. height: 10px;
  2197. margin-right: 20px !important;
  2198. }
  2199. .table-advance tr td {
  2200. border-left-width: 0px;
  2201. vertical-align: middle;
  2202. }
  2203. .table-advance tr td:first-child {
  2204. border-left-width: 1px !important;
  2205. }
  2206. .table-advance tr td.highlight:first-child a {
  2207. margin-left: 15px;
  2208. }
  2209. .table-advance td.highlight div.success {
  2210. border-left: 10px solid #A5D16C;
  2211. }
  2212. .table-advance td.highlight div.info {
  2213. border-left: 10px solid #87ceeb;
  2214. }
  2215. .table-advance td.highlight div.important {
  2216. border-left: 10px solid #f02c71;
  2217. }
  2218. .table-advance td.highlight div.warning {
  2219. border-left: 10px solid #fdbb39;
  2220. }
  2221. .table-advance td.highlight div.danger {
  2222. border-left: 10px solid #e23e29;
  2223. }
  2224. /*gritter changes*/
  2225. .gritter-close {
  2226. left:auto !important;
  2227. right: 3px !important;
  2228. }
  2229. /*calender*/
  2230. .has-toolbar.fc {
  2231. margin-top: 50px;
  2232. }
  2233. .fc-header-title {
  2234. display: inline-block;
  2235. margin-top: -50px;
  2236. vertical-align: top;
  2237. }
  2238. .fc-view {
  2239. margin-top: -50px;
  2240. overflow: hidden;
  2241. width: 100%;
  2242. }
  2243. .fc-state-default, .fc-state-default .fc-button-inner {
  2244. background: #F3F3F3 !important;
  2245. border-color: #DDDDDD;
  2246. border-style: none solid;
  2247. color: #646464;
  2248. }
  2249. .fc-state-active, .fc-state-active .fc-button-inner,
  2250. .fc-state-hover, .fc-state-hover .fc-button-inner{
  2251. background: #444444 !important;
  2252. color: #fff !important;
  2253. }
  2254. .fc-event-skin {
  2255. background-color: #4a8bc2 !important;
  2256. border-color: #4a8bc2 !important;
  2257. color: #FFFFFF !important;
  2258. }
  2259. .fc-grid th {
  2260. height: 30px;
  2261. line-height: 30px;
  2262. text-align: center;
  2263. background: #F3F3F3 !important;
  2264. }
  2265. .fc-header-title h2 {
  2266. font-size: 20px !important;
  2267. color: #404040;
  2268. }
  2269. .external-event {
  2270. cursor: move;
  2271. display: inline-block !important;
  2272. margin-bottom: 10px !important;
  2273. margin-right: 10px !important;
  2274. background: #4A8BC2 !important;
  2275. }
  2276. #external-events p input[type="checkbox"]{
  2277. margin: 0;
  2278. }
  2279. /* hide chosen search box */
  2280. .event_priority_chzn .chzn-search {
  2281. display: none !important;
  2282. }
  2283. /* widget tabs */
  2284. .widget-tabs .nav-tabs {
  2285. position: relative;
  2286. margin-top: -52px;
  2287. }
  2288. .widget-tabs .nav-tabs > li {
  2289. float: right;
  2290. }
  2291. .widget-tabs .nav-tabs {
  2292. border-bottom: none;
  2293. margin-right: 5px;
  2294. }
  2295. .widget-tabs .nav-tabs > li > a {
  2296. padding-top: 9px;
  2297. padding-bottom: 10px;
  2298. line-height: 17px;
  2299. margin-left: 0px;
  2300. margin-right: 0px;
  2301. border-left: none !important;
  2302. border-right: none !important;
  2303. -webkit-border-radius: 0px;
  2304. -moz-border-radius: 0px;
  2305. border-radius: 0px;
  2306. color: #fff;
  2307. }
  2308. .widget-tabs .nav-tabs > li:last-child > a {
  2309. border-right:0;
  2310. }
  2311. .widget-tabs .nav-tabs > li {
  2312. margin-left: -1px;
  2313. }
  2314. .widget-tabs .nav-tabs > li > a:hover {
  2315. margin-bottom: 0px;
  2316. border-bottom: 0;
  2317. margin-left: 0px;
  2318. margin-right: 0px;
  2319. border-left: 0;
  2320. border-right: 0;
  2321. background-color: rgba(256,256,256,0.6);
  2322. color: #404040;
  2323. border-top: 1px solid transparent;
  2324. }
  2325. .widget-tabs .nav-tabs > .active > a {
  2326. color: #555555;
  2327. cursor: default;
  2328. background-color: #fff;
  2329. }
  2330. .widget-tabs .widget-body.form {
  2331. padding: 0px;
  2332. }
  2333. .widget-tabs .widget-body.form .tab-pane {
  2334. padding: 15px;
  2335. padding-top: 0px;
  2336. }
  2337. .widget-tabs .widget-body.form .nav-tabs {
  2338. margin-top: -37px;
  2339. }
  2340. /*TodoList*/
  2341. .todo-list {
  2342. margin: 0px;
  2343. padding: 0px;
  2344. list-style: none;
  2345. }
  2346. .todo-list li {
  2347. padding: 1px 0 8px 0px;
  2348. margin-bottom: 5px;
  2349. border-bottom: 1px solid #EBEBEB;
  2350. }
  2351. .todo-list li:first-child {
  2352. border-top: none;
  2353. border-bottom: 1px solid #EBEBEB;
  2354. }
  2355. .todo-list li:last-child {
  2356. border-top: none;
  2357. border-bottom: none;
  2358. }
  2359. .todo-list li:before,
  2360. .todo-list li:after {
  2361. display: table;
  2362. line-height: 0;
  2363. content: "";
  2364. }
  2365. .todo-list li:after {
  2366. clear: both;
  2367. }
  2368. .todo-list .col1 {
  2369. float:left;
  2370. width:100%;
  2371. clear: both;
  2372. }
  2373. .todo-list .col2 {
  2374. float:left;
  2375. width:120px;
  2376. margin-left:-120px;
  2377. text-align: right;
  2378. }
  2379. .todo-list .col1 .cont {
  2380. float:left;
  2381. margin-right:120px;
  2382. overflow:hidden;
  2383. }
  2384. /*Timeline chat*/
  2385. .chat-form {
  2386. margin-top: 15px;
  2387. padding: 10px;
  2388. background-color: #eee;
  2389. clear: both;
  2390. }
  2391. .chat-form .input-cont {
  2392. margin-right: 55px;
  2393. }
  2394. .chat-form .input-cont input {
  2395. margin-bottom: 0px;
  2396. }
  2397. .chat-form .input-cont input{
  2398. border: 1px solid #fff !important;
  2399. width: 94%;
  2400. margin-top:0;
  2401. border-radius: 0;
  2402. -moz-border-radius: 0;
  2403. -webkit-border-radius: 0;
  2404. }
  2405. .chat-form .input-cont input {
  2406. background-color: #fff !important;
  2407. }
  2408. .chat-form .input-cont input:focus{
  2409. border: 1px solid #2FADE7 !important;
  2410. }
  2411. .chat-form .btn-cont {
  2412. margin-top: -38px;
  2413. position: relative;
  2414. float: right;
  2415. }
  2416. .chat-form .btn-cont .btn {
  2417. border-left: 0px;
  2418. -webkit-border-radius: 0px;
  2419. -moz-border-radius: 0px;
  2420. border-radius: 0px;
  2421. margin-top: 8px;
  2422. }
  2423. .timeline-messages:before {
  2424. background: rgba(0, 0, 0, 0.1);
  2425. bottom: 0;
  2426. top: 0;
  2427. width: 2px;
  2428. }
  2429. .timeline-messages:before, .msg-time-chat:before, .msg-time-chat .text:before {
  2430. content: "";
  2431. left: 58px;
  2432. position: absolute;
  2433. top: -2px;
  2434. }
  2435. .timeline-messages, .msg-time-chat , .timeline-messages .msg-in, .timeline-messages .msg-out {
  2436. position: relative;
  2437. }
  2438. .timeline-messages .msg-in .arrow {
  2439. border-right: 8px solid #ededed !important;
  2440. }
  2441. .timeline-messages .msg-in .arrow {
  2442. border-bottom: 8px solid transparent;
  2443. border-top: 8px solid transparent;
  2444. display: block;
  2445. height: 0;
  2446. left: -8px;
  2447. position: absolute;
  2448. top: 13px;
  2449. width: 0;
  2450. }
  2451. .timeline-messages .msg-out .arrow {
  2452. border-right: 8px solid #dff1ff !important;
  2453. }
  2454. .timeline-messages .msg-out .arrow {
  2455. border-bottom: 8px solid transparent;
  2456. border-top: 8px solid transparent;
  2457. display: block;
  2458. height: 0;
  2459. left: -8px;
  2460. position: absolute;
  2461. top: 13px;
  2462. width: 0;
  2463. }
  2464. .msg-time-chat:first-child:before {
  2465. margin-top: 16px;
  2466. }
  2467. .msg-time-chat:before {
  2468. background:#CCCCCC;
  2469. border: 2px solid #FAFAFA;
  2470. border-radius: 100px;
  2471. -moz-border-radius: 100px;
  2472. -webkit-border-radius: 100px;
  2473. height: 10px;
  2474. margin: 23px 0 0 -6px;
  2475. width: 10px;
  2476. }
  2477. .msg-time-chat:hover:before {
  2478. background: #2FADE7;
  2479. }
  2480. .msg-time-chat:first-child {
  2481. padding-top: 0;
  2482. }
  2483. .message-img {
  2484. float: left;
  2485. margin-right: 30px;
  2486. overflow: hidden;
  2487. }
  2488. .message-img img {
  2489. display: block;
  2490. height: 44px;
  2491. width: 44px;
  2492. }
  2493. .message-body {
  2494. margin-left: 80px;
  2495. }
  2496. .msg-time-chat .msg-in .text {
  2497. background: #ededed;
  2498. padding: 10px;
  2499. }
  2500. .msg-time-chat .msg-out .text {
  2501. background: #dff1ff;
  2502. padding: 10px;
  2503. }
  2504. .msg-time-chat p {
  2505. margin: 0;
  2506. color: #504e4f;
  2507. }
  2508. .msg-time-chat .attribution {
  2509. color: #504e4f;
  2510. font-size: 11px;
  2511. margin: 0px 0 5px;
  2512. }
  2513. .msg-time-chat {
  2514. overflow: hidden;
  2515. padding:8px 0;
  2516. }
  2517. .msg-in a, .msg-in a:hover{
  2518. color: #fff;
  2519. padding: 2px 4px;
  2520. background: #818181;
  2521. text-decoration: none;
  2522. }
  2523. .msg-out a, .msg-out a:hover{
  2524. color: #fff;
  2525. padding: 2px 4px;
  2526. background: #3cabec;
  2527. text-decoration: none;
  2528. }
  2529. /* Input icons */
  2530. /* input with right aligned and colored icons */
  2531. .input-icon input {
  2532. padding-right: 25px !important;
  2533. }
  2534. .input-icon .input-info,
  2535. .input-icon .input-error,
  2536. .input-icon .input-warning,
  2537. .input-icon .input-success {
  2538. display: inline-block !important;
  2539. position: relative !important;
  2540. top: 3px;
  2541. right: 25px !important;
  2542. font-size: 16px;
  2543. }
  2544. .input-icon .input-info {
  2545. color:#27a9e3;
  2546. }
  2547. .input-icon .input-error {
  2548. color:#B94A48;
  2549. }
  2550. .input-icon .input-warning {
  2551. color: #C09853;
  2552. }
  2553. .input-icon .input-success {
  2554. color: #468847;
  2555. }
  2556. /* input with left aligned icons */
  2557. .input-icon.left i {
  2558. color: #ccc;
  2559. display: block !important;
  2560. position: absolute !important;
  2561. z-index: 1;
  2562. margin: 6px 2px 4px 10px;
  2563. width: 16px;
  2564. height: 16px;
  2565. border1: 1px solid #ddd;
  2566. font-size: 16px;
  2567. text-align: center;
  2568. }
  2569. .input-icon.left input {
  2570. padding-left: 33px !important;
  2571. }
  2572. /* Modify tags input plugin css */
  2573. div.tagsinput {
  2574. height: 40px !important;
  2575. margin: 0 !important;
  2576. padding: 5px !important;
  2577. overflow: auto !important;
  2578. }
  2579. div.tagsinput span.tag {
  2580. background: #CDE69C !important;
  2581. color: #638421 !important;
  2582. border: 0 !important;
  2583. padding: 3px 6px !important;
  2584. margin-bottom: 4px !important;
  2585. }
  2586. div.tagsinput input {
  2587. padding: 3px 6px !important;
  2588. }
  2589. div.tagsinput span.tag a {
  2590. color: #82AD2B !important;
  2591. }
  2592. div.tagsinput .not_valid {
  2593. color: #fff !important;
  2594. padding: 3px 6px !important;
  2595. background-color: #e02222 !important;
  2596. }
  2597. /* File uploader plugin css changes */
  2598. .fileupload .close {
  2599. position: relative;
  2600. top:4px !important;
  2601. }
  2602. /*Form wizard*/
  2603. .custom-wizard-pills .nav-pills > li > a {
  2604. padding-top: 30px;
  2605. padding-bottom: 30px;
  2606. background: #eee;
  2607. }
  2608. .custom-wizard-pills .nav-pills {
  2609. margin: 0 auto 30px;
  2610. width: 50%;
  2611. }
  2612. .custom-wizard-pills .nav-pills > li {
  2613. margin-right: 20px;
  2614. }
  2615. .custom-wizard-pills .nav-pills li.active a, .custom-wizard-pills .nav-pills li a:hover {
  2616. color: #fff;
  2617. }
  2618. .custom-wizard-pills .nav-pills > li > a {
  2619. padding-left: 30px;
  2620. padding-right: 30px;
  2621. color: #757575;
  2622. }
  2623. .pager .previous > a, .pager .previous > span {
  2624. float: left;
  2625. margin-right: 5px;
  2626. }
  2627. .pager .next > a, .pager .next > span {
  2628. float: right;
  2629. margin-left: 5px;
  2630. }
  2631. #tabsleft ul li a span {
  2632. display: block;
  2633. }
  2634. #tabsleft ul li a .strong {
  2635. font-weight: bold;
  2636. }
  2637. #tabsleft > .nav-tabs > li > a {
  2638. background: #eee;
  2639. color: #838383;
  2640. }
  2641. #tabsleft > .nav-tabs > li.active > a {
  2642. background: #fff;
  2643. color: #5a5a5a;
  2644. }
  2645. /*ck editor*/
  2646. .cke_top, .cke_bottom {
  2647. background: #F5F5F5 !important;
  2648. background: -moz-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
  2649. background: -webkit-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
  2650. background: -o-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
  2651. box-shadow: none;
  2652. padding: 6px 8px 2px;
  2653. }
  2654. .cke_top {
  2655. border-bottom: 1px solid #cccccc !important;
  2656. }
  2657. .cke_chrome {
  2658. border: 1px solid #cccccc !important;
  2659. box-shadow: none !important;
  2660. display: block;
  2661. padding: 0;
  2662. }
  2663. /*form validation*/
  2664. .cmxform .controls label.error {
  2665. display: inline;
  2666. margin: 0 10px;
  2667. color: #B94A48;
  2668. }
  2669. input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus, .cmxform .controls input.error , .cmxform .controls textarea.error{
  2670. border-color: #B94A48 !important;
  2671. }
  2672. #signupForm label.error {
  2673. display: inline;
  2674. margin-left: 10px;
  2675. width: auto;
  2676. color: #B94A48;
  2677. }
  2678. /*Pricing table*/
  2679. .pricing-table {
  2680. color: #fff;
  2681. }
  2682. .pricing-table:hover{
  2683. /*opacity: 0.8;*/
  2684. }
  2685. .pricing-table.most-popular {
  2686. position: relative;
  2687. top: -22px;
  2688. padding-bottom: 30px;
  2689. }
  2690. .pricing-table.most-popular h3 {
  2691. padding: 10px 0;
  2692. }
  2693. .pricing-table.terques {
  2694. background: #36b1b9;
  2695. }
  2696. .pricing-table.red {
  2697. background: #de577b;
  2698. }
  2699. .pricing-table.green {
  2700. background: #0ca389;
  2701. }
  2702. .pricing-table.purple {
  2703. background: #9d4a9c;
  2704. }
  2705. .pricing-head {
  2706. text-align: center;
  2707. }
  2708. .pricing-title {
  2709. text-align: center;
  2710. padding: 0px 0 30px 0;
  2711. }
  2712. .pricing-head h3 {
  2713. color: #fff;
  2714. font-size: 18px;
  2715. font-weight: 300;
  2716. margin: 0;
  2717. }
  2718. .green .pricing-head h3 {
  2719. color: #fff;
  2720. font-size: 18px;
  2721. font-weight: 300;
  2722. margin: 0;
  2723. }
  2724. .terques .pricing-head h3 {
  2725. color: #fff;
  2726. font-size: 18px;
  2727. font-weight: 300;
  2728. margin: 0;
  2729. }
  2730. .red .pricing-head h3 {
  2731. color: #fff;
  2732. font-size: 18px;
  2733. font-weight: 300;
  2734. margin: 0;
  2735. }
  2736. .pricing-head h3 span, .pricing-head h4 span {
  2737. display: block;
  2738. font-size: 12px;
  2739. font-style: italic;
  2740. margin-top: 5px;
  2741. }
  2742. .pricing-table.red .pricing-head h4 {
  2743. background:#c74e6e;
  2744. color: #fff;
  2745. font-size: 54px;
  2746. font-weight: 300;
  2747. padding: 25px 0 10px 0;
  2748. margin:0;
  2749. }
  2750. .pricing-table.terques .pricing-head h4 {
  2751. background:#309fa6;
  2752. color: #fff;
  2753. font-size: 54px;
  2754. font-weight: 300;
  2755. padding: 25px 0 10px 0;
  2756. margin:0;
  2757. }
  2758. .pricing-table.green .pricing-head h4 {
  2759. background:#0b927b;
  2760. color: #fff;
  2761. font-size: 54px;
  2762. font-weight: 300;
  2763. padding: 25px 0 10px 0;
  2764. margin:0;
  2765. }
  2766. .pricing-table.purple .pricing-head h4 {
  2767. background:#8d428c;
  2768. color: #fff;
  2769. font-size: 54px;
  2770. font-weight: 300;
  2771. padding: 25px 0 10px 0;
  2772. margin:0;
  2773. }
  2774. .pricing-table .price-actions a.btn {
  2775. color: #fff;
  2776. padding: 10px 15px;
  2777. transition-duration: 500ms;
  2778. transition-property: width, background;
  2779. transition-timing-function: ease;
  2780. -webkit-transition-duration: 500ms;
  2781. -webkit-transition-property: width, background;
  2782. -webkit-transition-timing-function: ease;
  2783. }
  2784. .pricing-table .price-actions a.btn:hover {
  2785. color: #fff;
  2786. background: #404040;
  2787. }
  2788. .pricing-table.terques .price-actions .btn {
  2789. background: #2b8e94;
  2790. }
  2791. .pricing-table.red .price-actions .btn{
  2792. background: #b24662;
  2793. }
  2794. .pricing-table.green .price-actions .btn {
  2795. background: #0a826e;
  2796. }
  2797. .pricing-table.purple .price-actions .btn {
  2798. background: #7e3b7d;
  2799. }
  2800. .pricing-head span.note {
  2801. display: inline;
  2802. font-size: 17px;
  2803. line-height: 0.8em;
  2804. position: relative;
  2805. top: -28px;
  2806. }
  2807. .pricing-table ul {
  2808. margin: 15px 0px;
  2809. padding: 0px;
  2810. list-style: none;
  2811. text-align: center;
  2812. }
  2813. .pricing-table ul li {
  2814. border-bottom: 1px dotted #fff;
  2815. margin: 0 2em;
  2816. padding: 1em 0;
  2817. text-align: center;
  2818. }
  2819. .pricing-table ul li i {
  2820. position: absolute;
  2821. margin-right: 0px;
  2822. margin-top: -2px;
  2823. margin-left: -17px;
  2824. color: #35aa47;
  2825. font-size: 16px;
  2826. }
  2827. .price-actions {
  2828. padding: 1.15em;
  2829. text-align: center;
  2830. }
  2831. .pricing-table.selected {
  2832. background-color: #35aa47;
  2833. }
  2834. .pricing-table.selected:hover {
  2835. border-color: #ddd;
  2836. }
  2837. .pricing-table.selected .desc {
  2838. border-bottom-color: #fff;
  2839. }
  2840. .pricing-table.selected h3,
  2841. .pricing-table.selected .desc,
  2842. .pricing-table.selected ul li,
  2843. .pricing-table.selected ul li i,
  2844. .pricing-table.selected .rate {
  2845. color: #fff;
  2846. }
  2847. /* Date tables plugin changes */
  2848. .dataTable {
  2849. clear: both;
  2850. margin-top: 5px;
  2851. }
  2852. .dataTables_filter label {
  2853. line-height: 32px !important;
  2854. }
  2855. .dataTables_paginate,
  2856. .dataTables_filter {
  2857. float: right;
  2858. }
  2859. /*404 page*/
  2860. .error-404 {
  2861. background: url("../img/404bg.jpg")no-repeat center center fixed #393939;
  2862. -moz-background-size: cover;
  2863. -webkit-background-size: cover;
  2864. -o-background-size: cover;
  2865. background-size: cover;
  2866. }
  2867. .error-wrap.error-wrap-404 {
  2868. width: 875px;
  2869. margin: 12% auto 0;
  2870. color: #fff;
  2871. text-align: center;
  2872. }
  2873. .error-wrap .metro.big {
  2874. float: left;
  2875. width: 340px;
  2876. height: 340px;
  2877. margin: 0 10px 10px 0;
  2878. font-family: "MyriadPro-Light";
  2879. }
  2880. .error-wrap.error-wrap-404 .metro.double {
  2881. float: left;
  2882. width: 340px;
  2883. height: 165px;
  2884. margin: 0 10px 10px 0;
  2885. font-family: "MyriadPro-Light";
  2886. }
  2887. .error-wrap.error-wrap-404 .home {
  2888. color: #fff;
  2889. font-size: 70px;
  2890. text-decoration: none;
  2891. margin-top: 40px;
  2892. display: inline-block;
  2893. }
  2894. .error-wrap .metro.double .page-txt {
  2895. font-family: "MyriadPro-Light";
  2896. font-size: 30px;
  2897. }
  2898. .error-wrap.error-wrap-404 .metro {
  2899. float: left;
  2900. }
  2901. .error-wrap.error-wrap-404 .metro.big span {
  2902. padding-top: 160px;
  2903. }
  2904. .error-wrap.error-wrap-404 .terques {
  2905. background: rgba(75,183,192,0.8);
  2906. }
  2907. .error-wrap.error-wrap-404 .red {
  2908. background: rgba(232,104,127,0.8);
  2909. }
  2910. .error-wrap.error-wrap-404 .gray {
  2911. background: rgba(89,88,88,0.5);
  2912. }
  2913. /*500 page*/
  2914. .error-500 {
  2915. background: url("../img/500bg.jpg")no-repeat center center fixed #393939;
  2916. -moz-background-size: cover;
  2917. -webkit-background-size: cover;
  2918. -o-background-size: cover;
  2919. background-size: cover;
  2920. }
  2921. .error-wrap {
  2922. width: 100%;
  2923. margin: 12% auto 0;
  2924. color: #fff;
  2925. text-align: center;
  2926. }
  2927. .error-wrap h1 {
  2928. font-size: 45px;
  2929. }
  2930. .error-wrap h2 {
  2931. font-size: 25px;
  2932. }
  2933. .error-wrap .metro {
  2934. width: 165px;
  2935. height: 165px;
  2936. display: inline-block;
  2937. margin: 0 10px 10px 0;
  2938. }
  2939. .error-wrap .metro span {
  2940. font-size: 70px;
  2941. padding-top: 70px;
  2942. display: inline-block;
  2943. }
  2944. .error-wrap p {
  2945. font-family: "MyriadPro-Light";
  2946. padding-top: 20px;
  2947. font-size: 16px;
  2948. }
  2949. .error-wrap p a {
  2950. color: #48cffe;
  2951. }
  2952. .error-wrap .green {
  2953. background: rgba(142,191,72,0.8);
  2954. }
  2955. .error-wrap .yellow {
  2956. background: rgba(245,193,70,0.8);
  2957. }
  2958. .error-wrap .purple {
  2959. background: rgba(175,94,197,0.8);
  2960. }
  2961. /*faq list*/
  2962. ul.faq-list li {
  2963. line-height: 30px;
  2964. }
  2965. ul.faq-list li a{
  2966. background: #eee;
  2967. margin-bottom: 1px;
  2968. color: #868686;
  2969. }
  2970. ul.faq-list li a:hover, ul.faq-list li a.active{
  2971. margin-bottom: 1px;
  2972. color: #fff;
  2973. }
  2974. /*search result*/
  2975. .search-result label {
  2976. width: 0px !important;
  2977. }
  2978. .search-result .controls {
  2979. margin-left: 100px;
  2980. float: left;
  2981. margin-right: 10px;
  2982. }
  2983. .search-result label, .search-result input, .search-result button {
  2984. float: left;
  2985. }
  2986. .classic-search {
  2987. margin-bottom: 30px;
  2988. }
  2989. .classic-search h4 {
  2990. margin-bottom: 3px;
  2991. }
  2992. .classic-search h4 a {
  2993. color: #314558;
  2994. }
  2995. .file-search tr td img {
  2996. float: left;
  2997. padding-right: 10px;
  2998. }
  2999. .file-search tr td strong {
  3000. display: block;
  3001. padding-top: 5px;
  3002. }
  3003. .file-search tr td {
  3004. vertical-align: middle;
  3005. }
  3006. .product-search {
  3007. background: #F7F7F7;
  3008. margin-bottom: 15px;
  3009. }
  3010. .product-text img {
  3011. float: left;
  3012. margin-right: 15px;
  3013. }
  3014. .product-text, .product-text .product-text-info {
  3015. overflow: hidden;
  3016. }
  3017. .product-info {
  3018. color: #616161;
  3019. float: left;
  3020. font-size: 12px;
  3021. margin-bottom: 5px;
  3022. padding: 15px 30px;
  3023. text-transform: uppercase;
  3024. }
  3025. .product-info span {
  3026. color: #e18090;
  3027. display: block;
  3028. font-size: 25px;
  3029. font-weight: 200;
  3030. margin-top: 10px;
  3031. text-transform: uppercase;
  3032. }
  3033. /*mail-btn*/
  3034. .mail-btn .btn {
  3035. background-image: -moz-linear-gradient(center top , #FDFDFD 0%, #EAEAEA 100%);
  3036. box-shadow: none;
  3037. }
  3038. .mail-btn .btn:hover, .mail-btn .btn:focus {
  3039. background: none;
  3040. box-shadow: none;
  3041. }
  3042. .mail-btn .btn-group > .btn + .btn {
  3043. margin-left: 0;
  3044. }
  3045. /*alert*/
  3046. .alert {
  3047. border-radius: 0;
  3048. -moz-border-radius: 0;
  3049. -webkit-border-radius: 0;
  3050. }
  3051. /*error*/
  3052. .error-page {display: block; text-align: center;}
  3053. .error-page h1 {color: #adafb2; font-size: 30px; font-weight: bold; line-height: 50px; padding: 20px 0}
  3054. .error-page h1 strong {color: #adafb2; font-size: 60px; font-weight: bold}
  3055. .error-page p {color: #adafb2; font-size: 20px; font-weight: bold;}
  3056. /*profile*/
  3057. .profile-pic {
  3058. display: block;
  3059. margin-bottom: 10px;
  3060. }
  3061. .nav-stacked > li > a {
  3062. border-radius: 0!important;
  3063. -moz-border-radius: 0!important;
  3064. -webkit-border-radius: 0!important;
  3065. }
  3066. /*gallery*/
  3067. .metro-gallery {
  3068. position: relative;
  3069. }
  3070. .mega-covercaption {
  3071. display: none;
  3072. }
  3073. .mega-covercaption:hover {
  3074. display: block;
  3075. }
  3076. /*accordion-group*/
  3077. .accordion-group a {
  3078. text-decoration: none;
  3079. }
  3080. .accordion-group {
  3081. border-radius: 0!important;
  3082. -moz-border-radius: 0!important;
  3083. -webkit-border-radius: 0!important;
  3084. }
  3085. /*tab*/
  3086. .custom-tab .nav-tabs > li > a {
  3087. border-radius: 0!important;
  3088. -moz-border-radius: 0!important;
  3089. -webkit-border-radius: 0!important;
  3090. }
  3091. .custom-tab > .nav-tabs {
  3092. border: medium none;
  3093. margin: 0;
  3094. }
  3095. .custom-tab > .tab-content {
  3096. /*background-color: #FFFFFF;*/
  3097. border: 1px solid #DDDDDD;
  3098. border-radius: 0 0 0 0;
  3099. padding: 10px;
  3100. }
  3101. /*tree view*/
  3102. .widget-body > .actions {
  3103. float: right;
  3104. margin: 6px 0 0;
  3105. padding: 3px 5px 2px;
  3106. }
  3107. /*blog*/
  3108. .blog {
  3109. border-bottom: 1px solid #dcdbdb;
  3110. display: inline-block;
  3111. margin: 10px 0;
  3112. }
  3113. .blog img {margin-bottom: 10px; width: 100%; margin-top: 12px}
  3114. .blog h2, .blog h2 a{
  3115. color: #868686 !important;
  3116. font-size: 28px;
  3117. font-weight: normal;
  3118. margin: 15px 0 0 0;
  3119. padding: 0;
  3120. line-height: normal;
  3121. }
  3122. .blog h2 a:hover {
  3123. color: #4A8BC2 !important;
  3124. }
  3125. .blog p {
  3126. margin-bottom: 20px;
  3127. }
  3128. .blog a.blog-features {
  3129. display: block;
  3130. text-align: center;
  3131. margin-bottom: 10px;
  3132. font-family: "MyriadPro-Light";
  3133. padding: 10px;
  3134. font-weight: normal;
  3135. background: #ededed;
  3136. color: #969696;
  3137. text-decoration: none;
  3138. transition-duration: 500ms;
  3139. transition-property: width, background;
  3140. transition-timing-function: ease;
  3141. -webkit-transition-duration: 500ms;
  3142. -webkit-transition-property: width, background;
  3143. -webkit-transition-timing-function: ease;
  3144. }
  3145. .blog .author {
  3146. color: #3b3431;
  3147. }
  3148. .blog .blog-features i {
  3149. font-size: 35px;
  3150. margin: 5px 0;
  3151. display: inline-block;
  3152. }
  3153. .blog .orange .blog-features.active, .blog .orange .blog-features:hover {
  3154. background: #f37b53;
  3155. color: #fff;
  3156. }
  3157. .blog .green .blog-features.active, .blog .green .blog-features:hover {
  3158. background: #0ca389;
  3159. color: #fff;
  3160. }
  3161. .blog .red .blog-features.active, .blog .red .blog-features:hover {
  3162. background: #de577b;
  3163. color: #fff;
  3164. }
  3165. .blog .yellow .blog-features.active, .blog .yellow .blog-features:hover {
  3166. background: #fccb2f;
  3167. color: #fff;
  3168. }
  3169. .blog .date p{
  3170. margin: 0;
  3171. padding: 0px;
  3172. line-height: 30px;
  3173. }
  3174. .blog .date .day, .blog .date .month {
  3175. display: block;
  3176. }
  3177. .blog .date .day {
  3178. font-size: 35px;
  3179. margin: 5px 0;
  3180. }
  3181. .blog .date .month {
  3182. text-transform: uppercase;
  3183. font-size: 20px;
  3184. }
  3185. .blog-side-bar {
  3186. padding: 15px 0px 1px 10px;
  3187. color: #fff;
  3188. margin-bottom: 20px;
  3189. }
  3190. .blog-side-bar h2 {
  3191. text-transform: uppercase;
  3192. font-size: 18px;
  3193. margin: 0;
  3194. padding: 0;
  3195. line-height: normal;
  3196. font-family: "MyriadPro-Regular";
  3197. }
  3198. .blog-side-bar ul {
  3199. margin-top: 15px;
  3200. margin-left: 0;
  3201. }
  3202. /*blue box*/
  3203. .blog-side-bar.blue-box {
  3204. background: #66bbfc;
  3205. }
  3206. .blog-side-bar.blue-box ul li {
  3207. display: inline-block;
  3208. text-align: center;
  3209. }
  3210. .blog-side-bar.blue-box ul li a {
  3211. background: #5ca8e2;
  3212. margin: 0px 5px 8px 0;
  3213. padding: 10px;
  3214. display: inline-block;
  3215. text-align: center;
  3216. width: 74px;
  3217. height: 74px;
  3218. transition-duration: 500ms;
  3219. transition-property: width, background;
  3220. transition-timing-function: ease;
  3221. -webkit-transition-duration: 500ms;
  3222. -webkit-transition-property: width, background;
  3223. -webkit-transition-timing-function: ease;
  3224. }
  3225. .blog-side-bar.blue-box ul li a:hover {
  3226. background: #fff;
  3227. }
  3228. .blog-side-bar.blue-box ul li a:hover i, .blog-side-bar.blue-box ul li a:hover span{
  3229. color: #606060;
  3230. }
  3231. /*green box*/
  3232. .blog-side-bar.green-box {
  3233. background: #0ca389;
  3234. }
  3235. .blog-side-bar .green-box-blog {
  3236. background: #0b927b;
  3237. padding: 2%;
  3238. width: 93%;
  3239. display: inline-block;
  3240. }
  3241. .blog-side-bar.green-box ul li {
  3242. display: inline-block;
  3243. text-align: center;
  3244. }
  3245. .blog-side-bar.green-box ul li a {
  3246. background: #5ca8e2;
  3247. margin: 0px 5px 8px 0;
  3248. padding: 10px;
  3249. display: inline-block;
  3250. text-align: center;
  3251. width: 80px;
  3252. height: 80px;
  3253. transition-duration: 500ms;
  3254. transition-property: width, background;
  3255. transition-timing-function: ease;
  3256. -webkit-transition-duration: 500ms;
  3257. -webkit-transition-property: width, background;
  3258. -webkit-transition-timing-function: ease;
  3259. }
  3260. .blog-side-bar.green-box ul li a:hover {
  3261. background: #fff;
  3262. }
  3263. .blog-side-bar.green-box ul li a:hover i, .blog-side-bar.green-box ul li a:hover span{
  3264. color: #606060;
  3265. }
  3266. /*red box*/
  3267. .blog-side-bar.red-box {
  3268. background: #de577b;
  3269. }
  3270. .blog-side-bar.red-box ul li {
  3271. display: inline-block;
  3272. text-align: center;
  3273. }
  3274. .blog-side-bar.red-box ul li a {
  3275. background: #da6e4b;
  3276. padding: 10px;
  3277. display: inline-block;
  3278. text-align: center;
  3279. transition-duration: 500ms;
  3280. transition-property: width, background;
  3281. transition-timing-function: ease;
  3282. -webkit-transition-duration: 500ms;
  3283. -webkit-transition-property: width, background;
  3284. -webkit-transition-timing-function: ease;
  3285. }
  3286. .blog-side-bar.red-box ul li a:hover {
  3287. background: #fff;
  3288. }
  3289. .blog-side-bar.red-box ul li a:hover i, .blog-side-bar.red-box ul li a:hover span{
  3290. color: #606060;
  3291. }
  3292. /*-------*/
  3293. /*orange box*/
  3294. .blog-side-bar.orange-box {
  3295. background: #f37b53;
  3296. }
  3297. .blog-side-bar.orange-box ul li {
  3298. display: inline-block;
  3299. text-align: center;
  3300. }
  3301. .blog-side-bar.orange-box ul li a {
  3302. background: #da6e4b;
  3303. margin: 0px 5px 8px 0;
  3304. padding: 10px;
  3305. display: inline-block;
  3306. text-align: center;
  3307. width: 74px;
  3308. height: 74px;
  3309. transition-duration: 500ms;
  3310. transition-property: width, background;
  3311. transition-timing-function: ease;
  3312. -webkit-transition-duration: 500ms;
  3313. -webkit-transition-property: width, background;
  3314. -webkit-transition-timing-function: ease;
  3315. }
  3316. .blog-side-bar.orange-box ul li a:hover {
  3317. background: #fff;
  3318. }
  3319. .blog-side-bar.orange-box ul li a:hover i, .blog-side-bar.orange-box ul li a:hover span{
  3320. color: #606060;
  3321. }
  3322. /*-------*/
  3323. .blog-side-bar ul li i {
  3324. font-size: 30px;
  3325. width: 100%;
  3326. margin-top: 10px;
  3327. }
  3328. .blog-side-bar ul li span.large {
  3329. font-size: 25px;
  3330. width: 100%;
  3331. margin-top: 10px;
  3332. font-family: "MyriadPro-Light";
  3333. text-transform: uppercase;
  3334. }
  3335. .blog-side-bar ul li i, .blog-side-bar ul li span {
  3336. display: inline-block;
  3337. color: #fff;
  3338. }
  3339. .blog-side-bar ul li:last-child {
  3340. margin-right: 0;
  3341. }
  3342. .blog-side-bar ul li a {
  3343. display: block;
  3344. line-height: 35px;
  3345. text-decoration: none;
  3346. }
  3347. .blog-side-bar h5, .blog-side-bar h5 a {
  3348. padding: 0;
  3349. margin: 10px 0 0 0;
  3350. line-height: normal;
  3351. font-weight: bold;
  3352. color: #fff;
  3353. }
  3354. .blog-side-bar p {
  3355. margin-bottom: 0;
  3356. }
  3357. .blog-side-bar ul.tag {
  3358. width: 100%;
  3359. display: inline-block;
  3360. }
  3361. .blog-side-bar ul.tag li {
  3362. float: left;
  3363. margin-right: 10px;
  3364. border-bottom: none;
  3365. margin-bottom: 10px;
  3366. line-height: 18px;
  3367. }
  3368. .blog-side-bar ul.tag li a {
  3369. color: #fff;
  3370. padding: 0px 10px;
  3371. background: #c74e6e;
  3372. }
  3373. .blog-side-bar ul.tag li a:hover {
  3374. background: #fff;
  3375. color: #606060;
  3376. transition-duration: 500ms;
  3377. transition-property: width, background;
  3378. transition-timing-function: ease;
  3379. -webkit-transition-duration: 500ms;
  3380. -webkit-transition-property: width, background;
  3381. -webkit-transition-timing-function: ease;
  3382. }
  3383. .show-right {
  3384. float: right !important;
  3385. }
  3386. .post-comment .color-red {
  3387. color: #FF0000;
  3388. }
  3389. /*custom pagination*/
  3390. .custom-pagination {
  3391. margin: 10px 0 20px;
  3392. }
  3393. .custom-pagination ul {
  3394. display: inline-block;
  3395. margin-bottom: 0;
  3396. margin-left: 0;
  3397. }
  3398. .custom-pagination ul > li {
  3399. display: inline;
  3400. margin: 0 5px;
  3401. }
  3402. .custom-pagination ul > li > a {
  3403. border: 1px solid #dcdbdb;
  3404. color: #717171;
  3405. padding: 5px 10px;
  3406. text-decoration: none;
  3407. transition-duration: 500ms;
  3408. transition-property: width, background;
  3409. transition-timing-function: ease;
  3410. -webkit-transition-duration: 500ms;
  3411. -webkit-transition-property: width, background;
  3412. -webkit-transition-timing-function: ease;
  3413. }
  3414. .custom-pagination ul > li > a:hover,
  3415. .custom-pagination ul > li > a:focus,
  3416. .custom-pagination ul > .active > a,
  3417. .custom-pagination ul > .active > span {
  3418. background: #4a8bc2;
  3419. border: 1px solid #4a8bc2;
  3420. color: #fff;
  3421. padding: 5px 10px;
  3422. text-decoration: none;
  3423. }
  3424. /*invoice-list*/
  3425. .invoice-list h5 {
  3426. text-transform: uppercase;
  3427. }
  3428. .invoice-block {
  3429. text-align: right;
  3430. }
  3431. ul.amounts li {
  3432. padding:10px;
  3433. margin-bottom: 5px;
  3434. background: #f1f1f1;
  3435. }
  3436. .invoice-date-range .control-group label, .invoice-date-range .control-group input {
  3437. float: left;
  3438. }
  3439. .invoice-date-range .control-group label {
  3440. width: 70px;
  3441. }
  3442. .invoice-date-range .control-group input {
  3443. margin-right: 15px;
  3444. }
  3445. .billing-form label{
  3446. width: 25%;
  3447. float: left;
  3448. }
  3449. .invoice-input input {
  3450. margin-bottom: 0;
  3451. }
  3452. /*about us*/
  3453. .about-us img{
  3454. width: 100%;
  3455. height: 188px;
  3456. }
  3457. .about-us .info {
  3458. height: 188px;
  3459. color: #fff;
  3460. float: left;
  3461. width: 100%;
  3462. }
  3463. .about-us .terques {
  3464. background: #2fbfca;
  3465. }
  3466. .about-us .red {
  3467. background: #de577b;
  3468. }
  3469. .about-us .green {
  3470. background: #8ebf48;
  3471. }
  3472. .about-us .blue {
  3473. background: #66bbfc;
  3474. }
  3475. .about-us .yellow {
  3476. background: #f5c146;
  3477. }
  3478. .about-us .orange {
  3479. background: #f37b53;
  3480. }
  3481. .about-us .info h1 {
  3482. font-size: 30px;
  3483. text-align: center;
  3484. padding-top: 45px;
  3485. line-height: normal;
  3486. margin-bottom: 0;
  3487. font-family: "MyriadPro-Light";
  3488. }
  3489. .about-us .info p {
  3490. font-size: 14px;
  3491. text-align: center;
  3492. font-family: "MyriadPro-Light";
  3493. text-transform: uppercase;
  3494. }
  3495. .about-us .info .social-links {
  3496. text-align: center;
  3497. display: inline-block;
  3498. width: 100%;
  3499. }
  3500. .about-us .info .social-links a {
  3501. margin: 0 5px;
  3502. font-size: 20px;
  3503. color: rgba(256,256,256,0.5);
  3504. text-decoration: none;
  3505. }
  3506. .about-us .info .social-links a:hover {
  3507. color: #fff;
  3508. }
  3509. /*contact us*/
  3510. .contact-us h3 {
  3511. text-align: center;
  3512. padding-bottom:0px;
  3513. margin:0;
  3514. }
  3515. .contact-us h4 {
  3516. color: #fff !important;
  3517. margin:0;
  3518. padding: 12px 11px 10px 15px;
  3519. }
  3520. .contact-us .feedback p {
  3521. text-align: center;
  3522. }
  3523. .one-half {
  3524. margin-right: 21px;
  3525. }
  3526. .feedback .control-group {
  3527. margin-bottom: 15px;
  3528. }
  3529. .datepicker.dropdown-menu {z-index: 10000;}
  3530. /*editable table*/
  3531. #editable-sample tr td input.small {
  3532. width: 160px !important;
  3533. }