custom.css 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902
  1. .body .main_container .right_col {
  2. background: #F7F7F7;
  3. min-height:100vh;
  4. }
  5. .right_col_wrapper {
  6. min-height:100vh;
  7. }
  8. .daterangepicker .ranges li {
  9. color: #73879C;
  10. }
  11. .daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
  12. background: #536A7F;
  13. border: 1px solid #536A7F;
  14. color: #fff;
  15. }
  16. .daterangepicker .input-mini {
  17. background-color: #eee;
  18. border: 1px solid #ccc;
  19. box-shadow: none !important;
  20. }
  21. .daterangepicker .input-mini.active {
  22. border: 1px solid #ccc;
  23. }
  24. .daterangepicker select.monthselect, .daterangepicker select.yearselect, .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  25. font-size: 12px;
  26. padding: 1px;
  27. height: auto;
  28. margin: 0;
  29. cursor: default;
  30. height: 30px;
  31. border: 1px solid #ADB2B5;
  32. line-height: 30px;
  33. border-radius: 0px !important;
  34. }
  35. .daterangepicker select.monthselect {
  36. margin-right: 2%;
  37. }
  38. .daterangepicker td.in-range {
  39. background: #E4E7EA;
  40. color: #73879C;
  41. }
  42. .daterangepicker td.active, .daterangepicker td.active:hover {
  43. background-color: #536A7F;
  44. color: #fff;
  45. }
  46. .daterangepicker th.available:hover {
  47. background: #eee;
  48. color: #34495E;
  49. }
  50. .daterangepicker:before, .daterangepicker:after {
  51. content: none;
  52. }
  53. .daterangepicker .calendar.single {
  54. margin: 0 0 4px 0;
  55. }
  56. .daterangepicker .calendar.single .calendar-table {
  57. width: 224px;
  58. padding: 0 0 4px 0 !important;
  59. }
  60. .daterangepicker .calendar.single .calendar-table thead tr:first-child th {
  61. padding: 8px 5px;
  62. }
  63. .daterangepicker .calendar.single .calendar-table thead th {
  64. border-radius: 0;
  65. }
  66. .daterangepicker.picker_1 {
  67. color: #fff;
  68. background: #34495E;
  69. }
  70. .daterangepicker.picker_1 .calendar-table {
  71. background: #34495E;
  72. }
  73. .daterangepicker.picker_1 .calendar-table thead tr {
  74. background: #213345;
  75. }
  76. .daterangepicker.picker_1 .calendar-table thead tr:first-child {
  77. background: #1ABB9C;
  78. }
  79. .daterangepicker.picker_1 .calendar-table td.off {
  80. background: #34495E;
  81. color: #999;
  82. }
  83. .daterangepicker.picker_1 .calendar-table td.available:hover {
  84. color: #34495E;
  85. }
  86. .daterangepicker.picker_2 .calendar-table thead tr {
  87. color: #1ABB9C;
  88. }
  89. .daterangepicker.picker_2 .calendar-table thead tr:first-child {
  90. color: #73879C;
  91. }
  92. .daterangepicker.picker_3 .calendar-table thead tr:first-child {
  93. color: #fff;
  94. background: #1ABB9C;
  95. }
  96. .daterangepicker.picker_4 .calendar-table thead tr:first-child {
  97. color: #fff;
  98. background: #34495E;
  99. }
  100. .daterangepicker.picker_4 .calendar-table td, .daterangepicker.picker_4 .calendar-table td.off {
  101. background: #ECF0F1;
  102. border: 1px solid #fff;
  103. border-radius: 0;
  104. }
  105. .daterangepicker.picker_4 .calendar-table td.active {
  106. background: #34495E;
  107. }
  108. /* TODO check if calendar should be showed even if not working clicking it */
  109. /*.calendar-exibit .show-calendar {
  110. float: none;
  111. display: block;
  112. position: relative;
  113. background-color: #fff;
  114. border: 1px solid #ccc;
  115. margin-bottom: 20px;
  116. border: 1px solid rgba(0, 0, 0, 0.15);
  117. overflow: hidden;
  118. }*/
  119. .calendar-exibit .show-calendar .calendar {
  120. margin: 0 0 4px 0;
  121. }
  122. .calendar-exibit .show-calendar.picker_1 {
  123. background: #34495E;
  124. }
  125. .calendar-exibit .calendar-table {
  126. padding: 0 0 4px 0;
  127. }
  128. @charset "UTF-8";
  129. .left_col {
  130. background: #2A3F54;
  131. }
  132. .left_col {
  133. min-height: 100%;
  134. padding: 0;
  135. z-index: 9999;
  136. }
  137. .left_col.menu_fixed {
  138. position: fixed;
  139. height: 100%;
  140. }
  141. .left_col.menu_fixed + .right_col_wrapper {
  142. float:right;
  143. }
  144. .left_col .mCSB_container,
  145. .left_col .mCustomScrollBox {
  146. overflow: visible;
  147. }
  148. .nav-sm .hidden-small {
  149. visibility: hidden;
  150. }
  151. .nav-sm .container-fluid.body .right_col {
  152. padding: 10px 20px;
  153. margin-left: 70px;
  154. z-index: 2;
  155. }
  156. .nav-sm .navbar.nav_title {
  157. width: 100%;
  158. text-align: center;
  159. padding:0px;
  160. }
  161. .nav-sm .navbar.nav_title a span {
  162. display: none;
  163. }
  164. .nav-sm .navbar.nav_title a i {
  165. font-size: 27px;
  166. margin: 13px 0 0 3px;
  167. }
  168. .site_title i {
  169. border: 1px solid #EAEAEA;
  170. padding: 5px 6px;
  171. border-radius: 50%;
  172. }
  173. .nav-sm .main_container .top_nav {
  174. display: block;
  175. z-index: 2;
  176. }
  177. .nav-sm .nav.side-menu li a {
  178. text-align: center !important;
  179. font-weight: 400;
  180. font-size: 10px;
  181. padding: 10px 5px;
  182. }
  183. .nav-sm .nav.child_menu li.active,
  184. .nav-sm .nav.side-menu li.active-sm {
  185. border-right: 5px solid #1ABB9C;
  186. }
  187. .nav-sm ul.nav.child_menu ul,
  188. .nav-sm .nav.side-menu li.active-sm ul ul {
  189. position: static;
  190. width: 200px;
  191. background: none;
  192. }
  193. .nav-sm > .nav.side-menu > li.active-sm > a {
  194. color: #1ABB9C !important;
  195. }
  196. .nav-sm .nav.side-menu li a i.toggle-up {
  197. display: none !important;
  198. }
  199. .nav-sm .nav.side-menu li a i {
  200. font-size: 25px !important;
  201. text-align: center;
  202. width: 100% !important;
  203. margin-bottom: 5px;
  204. }
  205. .nav-sm ul.nav.child_menu {
  206. left: 100%;
  207. position: absolute;
  208. top: 0;
  209. width: 210px;
  210. z-index: 4000;
  211. background: #3E5367;
  212. display: none;
  213. }
  214. .nav-sm ul.nav.child_menu li {
  215. padding: 0 10px;
  216. }
  217. .nav-sm ul.nav.child_menu li a {
  218. text-align: left !important;
  219. }
  220. .nav-sm .profile {
  221. display: none;
  222. }
  223. .menu_section {
  224. margin-bottom: 35px;
  225. }
  226. .menu_section h3 {
  227. padding-left: 23px;
  228. color: #fff;
  229. text-transform: uppercase;
  230. letter-spacing: .5px;
  231. font-weight: bold;
  232. font-size: 11px;
  233. margin-bottom: 0;
  234. margin-top: 0;
  235. text-shadow: 1px 1px #000;
  236. }
  237. .menu_section > ul {
  238. margin-top: 10px;
  239. }
  240. .profile_pic {
  241. width: 35%;
  242. float: left;
  243. }
  244. .img-circle.profile_img {
  245. width: 70%;
  246. background: #fff;
  247. margin-left: 15%;
  248. z-index: 1000;
  249. position: inherit;
  250. margin-top: 20px;
  251. border: 1px solid rgba(52, 73, 94, 0.44);
  252. padding: 4px;
  253. }
  254. .profile_info {
  255. padding: 25px 10px 10px;
  256. width: 65%;
  257. float: left;
  258. }
  259. .profile_info span {
  260. font-size: 13px;
  261. line-height: 30px;
  262. color: #BAB8B8;
  263. }
  264. .profile_info h2 {
  265. font-size: 14px;
  266. color: #ECF0F1;
  267. margin: 0;
  268. font-weight: 300;
  269. }
  270. .profile.img_2 {
  271. text-align: center;
  272. }
  273. .profile.img_2 .profile_pic {
  274. width: 100%;
  275. }
  276. .profile.img_2 .profile_pic .img-circle.profile_img {
  277. width: 50%;
  278. margin: 10px 0 0;
  279. }
  280. .profile.img_2 .profile_info {
  281. padding: 15px 10px 0;
  282. width: 100%;
  283. margin-bottom: 10px;
  284. float: left;
  285. }
  286. .main_menu span.fa {
  287. float: right;
  288. text-align: center;
  289. margin-top: 5px;
  290. font-size: 10px;
  291. min-width: inherit;
  292. color: #C4CFDA;
  293. }
  294. .active a span.fa {
  295. text-align: right !important;
  296. margin-right: 4px;
  297. }
  298. .nav-sm .menu_section {
  299. margin: 0;
  300. }
  301. .nav-sm span.fa,
  302. .nav-sm .menu_section h3 {
  303. display: none;
  304. }
  305. .nav-sm li li span.fa {
  306. display: inline-block;
  307. }
  308. .top_nav {
  309. background: #EDEDED;
  310. }
  311. .nav_menu {
  312. float: left;
  313. border-bottom: 1px solid #D9DEE4;
  314. width: 100%;
  315. position: relative;
  316. }
  317. @media (min-width: 480px) {
  318. .nav_menu {
  319. position: static;
  320. }
  321. }
  322. .nav-md .container-fluid .left_col.menu_fixed {
  323. height: 100%;
  324. position: fixed;
  325. }
  326. body .container-fluid.body .right_col {
  327. background: #F7F7F7;
  328. }
  329. .nav-md .container-fluid.body .right_col {
  330. padding: 10px 20px 0;
  331. margin-left: 230px;
  332. }
  333. .nav_title {
  334. width: auto;
  335. float: left;
  336. background: #2A3F54;
  337. border-radius: 0;
  338. height: 57px;
  339. }
  340. @media (max-width: 991px) {
  341. .nav-md .container-fluid.body .right_col, .nav-md .container-fluid.body .top_nav {
  342. width: 100%;
  343. margin: 0;
  344. }
  345. .nav-md .container-fluid .left_col {
  346. display: none;
  347. }
  348. .nav-md .container-fluid .right_col {
  349. width: 100%;
  350. }
  351. }
  352. @media (max-width: 1200px) {
  353. .x_title h2 {
  354. width: 62%;
  355. font-size: 17px;
  356. }
  357. .tile, .graph {
  358. zoom: 85%;
  359. height: inherit;
  360. }
  361. .x_content .nav > li > a {
  362. padding:10px !important;
  363. }
  364. }
  365. @media (max-width: 1270px) and (min-width: 192px) {
  366. .x_title h2 small {
  367. display: none;
  368. }
  369. }
  370. .left_col .mCSB_scrollTools {
  371. width: 6px;
  372. }
  373. .left_col .mCSB_dragger {
  374. max-height: 400px !important;
  375. }
  376. /** ------------------------------------------ **/
  377. .blue {
  378. color: #3498DB;
  379. }
  380. .purple {
  381. color: #9B59B6;
  382. }
  383. .green {
  384. color: #1ABB9C;
  385. }
  386. .aero {
  387. color: #9CC2CB;
  388. }
  389. .red {
  390. color: #E74C3C;
  391. }
  392. .dark {
  393. color: #34495E;
  394. }
  395. .border-blue {
  396. border-color: #3498DB !important;
  397. }
  398. .border-purple {
  399. border-color: #9B59B6 !important;
  400. }
  401. .border-green {
  402. border-color: #1ABB9C !important;
  403. }
  404. .border-aero {
  405. border-color: #9CC2CB !important;
  406. }
  407. .border-red {
  408. border-color: #E74C3C !important;
  409. }
  410. .border-dark {
  411. border-color: #34495E !important;
  412. }
  413. .bg-white {
  414. background: #fff !important;
  415. border: 1px solid #fff !important;
  416. color: #73879C;
  417. }
  418. .bg-green {
  419. background: #1ABB9C !important;
  420. border: 1px solid #1ABB9C !important;
  421. color: #fff;
  422. }
  423. .bg-red {
  424. background: #E74C3C !important;
  425. border: 1px solid #E74C3C !important;
  426. color: #fff;
  427. }
  428. .bg-blue {
  429. background: #3498DB !important;
  430. border: 1px solid #3498DB !important;
  431. color: #fff;
  432. }
  433. .bg-orange {
  434. background: #F39C12 !important;
  435. border: 1px solid #F39C12 !important;
  436. color: #fff;
  437. }
  438. .bg-purple {
  439. background: #9B59B6 !important;
  440. border: 1px solid #9B59B6 !important;
  441. color: #fff;
  442. }
  443. .bg-blue-sky {
  444. background: #50C1CF !important;
  445. border: 1px solid #50C1CF !important;
  446. color: #fff;
  447. }
  448. .navbar-nav > li > a, .navbar-brand, .navbar-nav > li > a {
  449. color: #fff !important;
  450. }
  451. .top_nav .nav > li > a:focus, .top_nav .nav > li > a:hover, .top_nav .nav .open > a, .top_nav .nav .open > a:focus, .top_nav .nav .open > a:hover {
  452. background: #D9DEE4;
  453. }
  454. body {
  455. color: #73879C;
  456. background: #2A3F54;
  457. font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
  458. font-size: 13px;
  459. font-weight: 400;
  460. line-height: 1.471;
  461. }
  462. .main_container .top_nav {
  463. display: block;
  464. /*margin-left: 230px;*/
  465. }
  466. .no-padding {
  467. padding: 0 !important;
  468. }
  469. .page-title .title_left {
  470. width: 45%;
  471. float: left;
  472. display: block;
  473. }
  474. .page-title .title_left h3 {
  475. margin: 9px 0;
  476. }
  477. .page-title .title_right {
  478. width: 55%;
  479. float: left;
  480. display: block;
  481. }
  482. .page-title .title_right .pull-right {
  483. margin: 10px 0;
  484. }
  485. .fixed_height_320 {
  486. height: 320px;
  487. }
  488. .fixed_height_390 {
  489. height: 390px;
  490. }
  491. .fixed_height_200 {
  492. height: 200px;
  493. }
  494. .overflow_hidden {
  495. overflow: hidden;
  496. }
  497. .progress-bar-dark {
  498. background-color: #34495E !important;
  499. }
  500. .progress-bar-gray {
  501. background-color: #BDC3C7 !important;
  502. }
  503. table.no-margin .progress {
  504. margin-bottom: 0;
  505. }
  506. .main_content {
  507. padding: 10px 20px;
  508. }
  509. .col-md-55 {
  510. width: 50%;
  511. margin-bottom: 10px;
  512. }
  513. @media (min-width: 768px) {
  514. .col-md-55 {
  515. width: 20%;
  516. }
  517. }
  518. @media (min-width: 992px) {
  519. .col-md-55 {
  520. width: 20%;
  521. }
  522. }
  523. @media (min-width: 1200px) {
  524. .col-md-55 {
  525. width: 20%;
  526. }
  527. }
  528. @media (min-width: 192px) and (max-width: 1270px) {
  529. table.tile_info span.right {
  530. margin-right: 7px;
  531. float: left;
  532. }
  533. }
  534. .center-margin {
  535. margin: 0 auto;
  536. float: none !important;
  537. }
  538. .col-md-55 {
  539. position: relative;
  540. min-height: 1px;
  541. float: left;
  542. padding: 15px;
  543. }
  544. h1, .h1, h2, .h2, h3, .h3 {
  545. margin-top: 10px;
  546. margin-bottom: 10px;
  547. }
  548. a {
  549. color: #5A738E;
  550. text-decoration: none;
  551. }
  552. a, a:visited, a:focus, a:active, :visited, :focus, :active, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  553. outline: 0;
  554. }
  555. a:hover, a:focus {
  556. text-decoration: none;
  557. }
  558. .navbar {
  559. margin-bottom: 0;
  560. }
  561. .navbar-header {
  562. background: #34495E;
  563. }
  564. .navbar-right {
  565. margin-right: 0;
  566. }
  567. .top_nav .navbar-right {
  568. margin: 0;
  569. width: 70%;
  570. float: right;
  571. display: block;
  572. }
  573. .top_nav .navbar-right li {
  574. display: inline-block;
  575. float: right;
  576. position: static;
  577. }
  578. @media (min-width: 480px) {
  579. .top_nav .navbar-right li {
  580. position: relative;
  581. }
  582. }
  583. .top_nav .dropdown-menu li {
  584. width: 100%;
  585. }
  586. .top_nav .dropdown-menu li a {
  587. width: 100%;
  588. padding: 12px 20px;
  589. }
  590. .top_nav li a i {
  591. font-size: 15px;
  592. }
  593. .navbar-static-top {
  594. position: fixed;
  595. top: 0;
  596. width: 100%;
  597. }
  598. .sidebar-header {
  599. border-bottom: 0;
  600. margin-top: 46px;
  601. }
  602. .sidebar-header:first-of-type {
  603. margin-top: 0;
  604. }
  605. .nav.side-menu > li {
  606. position: relative;
  607. display: block;
  608. cursor: pointer;
  609. }
  610. .nav.side-menu > li > a {
  611. margin-bottom: 6px;
  612. }
  613. .nav.side-menu > li > a:hover {
  614. color: #F2F5F7 !important;
  615. }
  616. .nav.side-menu > li > a:hover, .nav > li > a:focus {
  617. text-decoration: none;
  618. background: transparent;
  619. }
  620. .nav.child_menu {
  621. display: none;
  622. }
  623. .nav.child_menu li:hover,
  624. .nav.child_menu li.active {
  625. background-color: rgba(255, 255, 255, 0.06);
  626. }
  627. .nav.child_menu li {
  628. padding-left: 36px;
  629. }
  630. .nav-md ul.nav.child_menu li:before {
  631. background: #425668;
  632. bottom: auto;
  633. content: "";
  634. height: 8px;
  635. left: 23px;
  636. margin-top: 15px;
  637. position: absolute;
  638. right: auto;
  639. width: 8px;
  640. z-index: 1;
  641. border-radius: 50%;
  642. }
  643. .nav-md ul.nav.child_menu li:after {
  644. border-left: 1px solid #425668;
  645. bottom: 0;
  646. content: "";
  647. left: 26px;
  648. position: absolute;
  649. top: 0;
  650. }
  651. .nav-md ul.nav.child_menu li:last-child::after {
  652. bottom: 50%;
  653. }
  654. .nav.side-menu > li > a, .nav.child_menu > li > a {
  655. color: #E7E7E7;
  656. font-weight: 500;
  657. }
  658. .nav.child_menu li li:hover,
  659. .nav.child_menu li li.active {
  660. background: none;
  661. }
  662. .nav.child_menu li li a:hover,
  663. .nav.child_menu li li a.active {
  664. color: #fff;
  665. }
  666. .nav > li > a {
  667. position: relative;
  668. display: block;
  669. padding: 13px 15px 12px;
  670. }
  671. .nav.side-menu > li.current-page, .nav.side-menu > li.active {
  672. border-right: 5px solid #1ABB9C;
  673. }
  674. .nav li.current-page {
  675. background: rgba(255, 255, 255, 0.05);
  676. }
  677. .nav li li li.current-page {
  678. background: none;
  679. }
  680. .nav li li.current-page a {
  681. color: #fff;
  682. }
  683. .nav.side-menu > li.active > a {
  684. text-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0;
  685. background: linear-gradient(#334556, #2C4257), #2A3F54;
  686. box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0;
  687. }
  688. .navbar-brand, .navbar-nav > li > a {
  689. font-weight: 500;
  690. color: #ECF0F1 !important;
  691. margin-left: 0 !important;
  692. line-height: 32px;
  693. }
  694. .site_title {
  695. text-overflow: ellipsis;
  696. overflow: hidden;
  697. font-weight: 400;
  698. font-size: 22px;
  699. width: 100%;
  700. color: #ECF0F1 !important;
  701. margin-left: 0 !important;
  702. line-height: 59px;
  703. display: block;
  704. height: 55px;
  705. margin: 0;
  706. /* padding-left: 10px;*/
  707. }
  708. .site_title:hover, .site_title:focus {
  709. text-decoration: none;
  710. }
  711. .nav.navbar-nav > li > a {
  712. color: #515356 !important;
  713. }
  714. .nav.top_menu > li > a {
  715. position: relative;
  716. display: block;
  717. padding: 10px 15px;
  718. color: #34495E !important;
  719. }
  720. .nav > li > a:hover, .nav > li > a:focus {
  721. background-color: transparent;
  722. }
  723. .top_search .form-control {
  724. border-right: 0;
  725. box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.075);
  726. border-radius: 25px 0px 0px 25px;
  727. padding-left: 20px;
  728. border: 1px solid rgba(221, 226, 232, 0.49);
  729. }
  730. .top_search .form-control:focus {
  731. border: 1px solid rgba(221, 226, 232, 0.49);
  732. border-right: 0;
  733. }
  734. .top_search .input-group-btn button {
  735. border-radius: 0px 25px 25px 0px;
  736. border: 1px solid rgba(221, 226, 232, 0.49);
  737. border-left: 0;
  738. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  739. color: #93A2B2;
  740. margin-bottom: 0 !important;
  741. }
  742. .toggle {
  743. float: left;
  744. margin: 0;
  745. width: 70px;
  746. }
  747. .toggle a {
  748. padding: 15px 0px 15px 0px;
  749. margin: 0;
  750. cursor: pointer;
  751. }
  752. .toggle a i {
  753. font-size: 26px;
  754. }
  755. .nav.child_menu > li > a {
  756. color: rgba(255, 255, 255, 0.75);
  757. font-size: 12px;
  758. padding: 9px;
  759. }
  760. .panel_toolbox {
  761. float: right;
  762. min-width: 70px;
  763. }
  764. .panel_toolbox > li {
  765. float: left;
  766. cursor: pointer;
  767. }
  768. .panel_toolbox > li > a {
  769. padding: 5px;
  770. color: #C5C7CB;
  771. font-size: 14px;
  772. }
  773. .panel_toolbox > li > a:hover {
  774. background: #F5F7FA;
  775. }
  776. .line_30 {
  777. line-height: 30px;
  778. }
  779. .main_menu_side {
  780. padding: 0;
  781. }
  782. .bs-docs-sidebar .nav > li > a {
  783. display: block;
  784. padding: 4px 6px;
  785. }
  786. footer {
  787. background: #fff;
  788. padding: 10px 20px;
  789. display: block;
  790. }
  791. .footer_fixed footer {
  792. position: fixed;
  793. left: 0px;
  794. bottom: 0px;
  795. width: 100%;
  796. }
  797. @media (min-width: 768px) {
  798. .footer_fixed footer {
  799. margin-left: 0;
  800. }
  801. }
  802. @media (min-width: 768px) {
  803. .footer_fixed .nav-sm footer {
  804. margin-left: 0;
  805. }
  806. }
  807. .tile-stats.sparkline {
  808. padding: 10px;
  809. text-align: center;
  810. }
  811. .jqstooltip {
  812. background: #34495E !important;
  813. width: 30px !important;
  814. height: 22px !important;
  815. text-decoration: none;
  816. }
  817. .tooltip {
  818. display: block !important;
  819. }
  820. .tiles {
  821. border-top: 1px solid #ccc;
  822. margin-top: 15px;
  823. padding-top: 5px;
  824. margin-bottom: 0;
  825. }
  826. .tile {
  827. overflow: hidden;
  828. }
  829. .top_tiles {
  830. margin-bottom: 0;
  831. }
  832. .top_tiles .tile h2 {
  833. font-size: 30px;
  834. line-height: 30px;
  835. margin: 3px 0 7px;
  836. font-weight: bold;
  837. }
  838. article.media {
  839. width: 100%;
  840. }
  841. /* ********* custom accordion **************************** */
  842. *, *:before, *:after {
  843. box-sizing: border-box;
  844. }
  845. #integration-list {
  846. width: 100%;
  847. margin: 0 auto;
  848. display: table;
  849. }
  850. #integration-list ul {
  851. padding: 0;
  852. margin: 20px 0;
  853. color: #555;
  854. }
  855. #integration-list ul > li {
  856. list-style: none;
  857. border-top: 1px solid #ddd;
  858. display: block;
  859. padding: 15px;
  860. overflow: hidden;
  861. }
  862. #integration-list ul:last-child {
  863. border-bottom: 1px solid #ddd;
  864. }
  865. #integration-list ul > li:hover {
  866. background: #efefef;
  867. }
  868. .expand {
  869. display: block;
  870. text-decoration: none;
  871. color: #555;
  872. cursor: pointer;
  873. }
  874. .expand h2 {
  875. width: 85%;
  876. float: left;
  877. }
  878. #left, #right {
  879. display: table;
  880. }
  881. #sup {
  882. display: table-cell;
  883. vertical-align: middle;
  884. width: 80%;
  885. }
  886. .detail a {
  887. text-decoration: none;
  888. color: #C0392B;
  889. border: 1px solid #C0392B;
  890. padding: 6px 10px 5px;
  891. font-size: 13px;
  892. margin-right: 7px;
  893. }
  894. .detail {
  895. margin: 10px 0 10px 0px;
  896. display: none;
  897. line-height: 22px;
  898. height: 150px;
  899. }
  900. .detail span {
  901. margin: 0;
  902. }
  903. .right-arrow {
  904. width: 10px;
  905. float: right;
  906. font-weight: bold;
  907. font-size: 20px;
  908. }
  909. .accordion .card {
  910. margin-bottom: 5px;
  911. border-radius: 0;
  912. border-bottom: 1px solid #efefef;
  913. }
  914. .accordion .card:hover {
  915. background: #F2F5F7;
  916. }
  917. .x_panel {
  918. position: relative;
  919. width: 100%;
  920. margin-bottom: 10px;
  921. padding: 10px 17px;
  922. display: inline-block;
  923. background: #fff;
  924. border: 1px solid #E6E9ED;
  925. -moz-column-break-inside: avoid;
  926. column-break-inside: avoid;
  927. opacity: 1;
  928. transition: all .2s ease;
  929. }
  930. .x_title {
  931. border-bottom: 2px solid #E6E9ED;
  932. padding: 1px 5px 6px;
  933. margin-bottom: 10px;
  934. }
  935. .x_title .filter {
  936. width: 40%;
  937. float: right;
  938. }
  939. .x_title h2 {
  940. margin: 5px 0 6px;
  941. float: left;
  942. display: block;
  943. text-overflow: ellipsis;
  944. overflow: hidden;
  945. white-space: nowrap;
  946. }
  947. .x_title h2 small {
  948. margin-left: 10px;
  949. }
  950. .x_title span {
  951. color: #BDBDBD;
  952. }
  953. .x_content {
  954. padding: 0 5px 6px;
  955. position: relative;
  956. width: 100%;
  957. float: left;
  958. clear: both;
  959. margin-top: 5px;
  960. }
  961. legend {
  962. padding-bottom: 7px;
  963. }
  964. .demo-placeholder {
  965. height: 280px;
  966. }
  967. /** Contacts **/
  968. .profile_details {
  969. padding:15px;
  970. }
  971. .profile_details:nth-child(3n) {
  972. clear: both;
  973. }
  974. .profile_details .profile_view {
  975. display: inline-block;
  976. padding: 10px 0 0;
  977. background: #fff;
  978. width:100%;
  979. height:100%;
  980. }
  981. .profile_details .profile_view .divider {
  982. border-top: 1px solid #e5e5e5;
  983. padding-top: 5px;
  984. margin-top: 5px;
  985. }
  986. .profile_details .profile_view .ratings {
  987. margin-bottom: 0;
  988. }
  989. .profile_details .profile_view .bottom {
  990. background: #F2F5F7;
  991. padding: 9px 0;
  992. border-top: 1px solid #E6E9ED;
  993. }
  994. .profile_details .profile_view .left {
  995. margin-top: 20px;
  996. }
  997. .profile_details .profile_view .left p {
  998. margin-bottom: 3px;
  999. }
  1000. .profile_details .profile_view .right {
  1001. margin-top: 0px;
  1002. padding: 10px;
  1003. }
  1004. .profile_details .profile_view .img-circle {
  1005. border: 1px solid #E6E9ED;
  1006. padding: 2px;
  1007. max-width:150px;
  1008. border-radius:75px;
  1009. }
  1010. .profile_details .profile_view h2 {
  1011. margin: 5px 0;
  1012. }
  1013. .profile_details .profile_view .ratings {
  1014. font-size: 16px;
  1015. }
  1016. .profile_details .profile_view .brief {
  1017. margin: 0;
  1018. font-weight: 300;
  1019. }
  1020. .profile_details .profile_left {
  1021. background: white;
  1022. }
  1023. .pagination.pagination-split li {
  1024. display: inline-block;
  1025. margin-right: 3px;
  1026. }
  1027. .pagination.pagination-split li a {
  1028. border-radius: 4px;
  1029. color: #768399;
  1030. -moz-border-radius: 4px;
  1031. -webkit-border-radius: 4px;
  1032. }
  1033. /** Contacts **/
  1034. /* ********* /custom accordion **************************** */
  1035. /* ********* dashboard widget **************************** */
  1036. table.tile h3, table.tile h4, table.tile span {
  1037. font-weight: bold;
  1038. vertical-align: middle !important;
  1039. }
  1040. table.tile th, table.tile td {
  1041. text-align: center;
  1042. }
  1043. table.tile th {
  1044. border-bottom: 1px solid #E6ECEE;
  1045. }
  1046. table.tile td {
  1047. padding: 5px 0;
  1048. }
  1049. table.tile td ul {
  1050. text-align: left;
  1051. padding-left: 0;
  1052. }
  1053. table.tile td ul li {
  1054. list-style: none;
  1055. width: 100%;
  1056. }
  1057. table.tile td ul li a {
  1058. width: 100%;
  1059. }
  1060. table.tile td ul li a big {
  1061. right: 0;
  1062. float: right;
  1063. margin-right: 13px;
  1064. }
  1065. table.tile_info {
  1066. width: 100%;
  1067. }
  1068. table.tile_info td {
  1069. text-align: left;
  1070. padding: 1px;
  1071. font-size: 15px;
  1072. }
  1073. table.tile_info td p {
  1074. white-space: nowrap;
  1075. overflow: hidden;
  1076. text-overflow: ellipsis;
  1077. margin: 0;
  1078. line-height: 28px;
  1079. }
  1080. table.tile_info td i {
  1081. margin-right: 8px;
  1082. font-size: 17px;
  1083. float: left;
  1084. width: 18px;
  1085. line-height: 28px;
  1086. }
  1087. table.tile_info td:first-child {
  1088. width: 83%;
  1089. }
  1090. td span {
  1091. line-height: 28px;
  1092. }
  1093. .sidebar-widget {
  1094. overflow: hidden;
  1095. }
  1096. .error-number {
  1097. font-size: 90px;
  1098. line-height: 90px;
  1099. margin: 20px 0;
  1100. }
  1101. .col-middle {
  1102. margin-top: 5%;
  1103. }
  1104. .mid_center {
  1105. width: 370px;
  1106. margin: 0 auto;
  1107. text-align: center;
  1108. padding: 10px 20px;
  1109. }
  1110. h3.degrees {
  1111. font-size: 22px;
  1112. font-weight: 400;
  1113. text-align: center;
  1114. }
  1115. .degrees:after {
  1116. content: "o";
  1117. position: relative;
  1118. top: -12px;
  1119. font-size: 13px;
  1120. font-weight: 300;
  1121. }
  1122. .daily-weather .day {
  1123. font-size: 14px;
  1124. border-top: 2px solid rgba(115, 135, 156, 0.36);
  1125. text-align: center;
  1126. border-bottom: 2px solid rgba(115, 135, 156, 0.36);
  1127. padding: 5px 0;
  1128. }
  1129. .weather-days .col-sm-2 {
  1130. overflow: hidden;
  1131. width: 16.66666667%;
  1132. }
  1133. .weather .row {
  1134. margin-bottom: 0;
  1135. }
  1136. /* ********* tables styling ******************************* */
  1137. .bulk-actions {
  1138. display: none;
  1139. }
  1140. table.countries_list {
  1141. width: 100%;
  1142. }
  1143. table.countries_list td {
  1144. padding: 0 10px;
  1145. line-height: 30px;
  1146. border-top: 1px solid #eeeeee;
  1147. }
  1148. .dataTables_paginate a {
  1149. padding: 6px 9px !important;
  1150. background: #ddd !important;
  1151. border-color: #ddd !important;
  1152. }
  1153. .paging_full_numbers a.paginate_active {
  1154. background-color: rgba(38, 185, 154, 0.59) !important;
  1155. border-color: rgba(38, 185, 154, 0.59) !important;
  1156. }
  1157. button.DTTT_button, div.DTTT_button, a.DTTT_button {
  1158. border: 1px solid #E7E7E7 !important;
  1159. background: #E7E7E7 !important;
  1160. box-shadow: none !important;
  1161. }
  1162. table.jambo_table {
  1163. border: 1px solid rgba(221, 221, 221, 0.78);
  1164. }
  1165. table.jambo_table thead {
  1166. background: rgba(52, 73, 94, 0.94);
  1167. color: #ECF0F1;
  1168. }
  1169. table.jambo_table tbody tr:hover td {
  1170. background: rgba(38, 185, 154, 0.07);
  1171. border-top: 1px solid rgba(38, 185, 154, 0.11);
  1172. border-bottom: 1px solid rgba(38, 185, 154, 0.11);
  1173. }
  1174. table.jambo_table tbody tr.selected {
  1175. background: rgba(38, 185, 154, 0.16);
  1176. }
  1177. table.jambo_table tbody tr.selected td {
  1178. border-top: 1px solid rgba(38, 185, 154, 0.4);
  1179. border-bottom: 1px solid rgba(38, 185, 154, 0.4);
  1180. }
  1181. .dataTables_paginate a {
  1182. background: #ff0000;
  1183. }
  1184. .dataTables_wrapper {
  1185. position: relative;
  1186. clear: both;
  1187. zoom: 1;
  1188. }
  1189. .dataTables_processing {
  1190. position: absolute;
  1191. top: 50%;
  1192. left: 50%;
  1193. width: 250px;
  1194. height: 30px;
  1195. margin-left: -125px;
  1196. margin-top: -15px;
  1197. padding: 14px 0 2px 0;
  1198. border: 1px solid #ddd;
  1199. text-align: center;
  1200. color: #999;
  1201. font-size: 14px;
  1202. background-color: white;
  1203. }
  1204. .dataTables_length {
  1205. width: 40%;
  1206. float: left;
  1207. }
  1208. .dataTables_filter {
  1209. /* width: 50%;*/
  1210. float: right;
  1211. text-align: right;
  1212. }
  1213. .dataTables_info {
  1214. width: 60%;
  1215. float: left;
  1216. }
  1217. .dataTables_paginate {
  1218. float: right;
  1219. text-align: right;
  1220. }
  1221. table.dataTable th.focus,
  1222. table.dataTable td.focus {
  1223. outline: 2px solid #1ABB9C !important;
  1224. outline-offset: -1px;
  1225. }
  1226. table.display {
  1227. margin: 0 auto;
  1228. clear: both;
  1229. width: 100%;
  1230. }
  1231. table.display thead th {
  1232. padding: 8px 18px 8px 10px;
  1233. border-bottom: 1px solid black;
  1234. font-weight: bold;
  1235. cursor: pointer;
  1236. }
  1237. table.display tfoot th {
  1238. padding: 3px 18px 3px 10px;
  1239. border-top: 1px solid black;
  1240. font-weight: bold;
  1241. }
  1242. table.display tr.heading2 td {
  1243. border-bottom: 1px solid #aaa;
  1244. }
  1245. table.display td {
  1246. padding: 3px 10px;
  1247. }
  1248. table.display td.center {
  1249. text-align: center;
  1250. }
  1251. table.display thead th:active, table.display thead td:active {
  1252. outline: none;
  1253. }
  1254. .dataTables_scroll {
  1255. clear: both;
  1256. }
  1257. .dataTables_scrollBody {
  1258. *margin-top: -1px;
  1259. -webkit-overflow-scrolling: touch;
  1260. }
  1261. .top .dataTables_info {
  1262. float: none;
  1263. }
  1264. .clear {
  1265. clear: both;
  1266. }
  1267. .dataTables_empty {
  1268. text-align: center;
  1269. }
  1270. tfoot input {
  1271. margin: 0.5em 0;
  1272. width: 100%;
  1273. color: #444;
  1274. }
  1275. tfoot input.search_init {
  1276. color: #999;
  1277. }
  1278. td.group {
  1279. background-color: #d1cfd0;
  1280. border-bottom: 2px solid #A19B9E;
  1281. border-top: 2px solid #A19B9E;
  1282. }
  1283. td.details {
  1284. background-color: #d1cfd0;
  1285. border: 2px solid #A19B9E;
  1286. }
  1287. .example_alt_pagination div.dataTables_info {
  1288. width: 40%;
  1289. }
  1290. .paging_full_numbers {
  1291. width: 400px;
  1292. height: 22px;
  1293. line-height: 22px;
  1294. }
  1295. .paging_full_numbers a:active {
  1296. outline: none;
  1297. }
  1298. .paging_full_numbers a:hover {
  1299. text-decoration: none;
  1300. }
  1301. .paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active {
  1302. border: 1px solid #aaa;
  1303. -webkit-border-radius: 5px;
  1304. -moz-border-radius: 5px;
  1305. padding: 2px 5px;
  1306. margin: 0 3px;
  1307. cursor: pointer;
  1308. }
  1309. .paging_full_numbers a.paginate_button {
  1310. background-color: #ddd;
  1311. }
  1312. .paging_full_numbers a.paginate_button:hover {
  1313. background-color: #ccc;
  1314. text-decoration: none !important;
  1315. }
  1316. .paging_full_numbers a.paginate_active {
  1317. background-color: #99B3FF;
  1318. }
  1319. table.display tr.even.row_selected td {
  1320. background-color: #B0BED9;
  1321. }
  1322. table.display tr.odd.row_selected td {
  1323. background-color: #9FAFD1;
  1324. }
  1325. div.box {
  1326. height: 100px;
  1327. padding: 10px;
  1328. overflow: auto;
  1329. border: 1px solid #8080FF;
  1330. background-color: #E5E5FF;
  1331. }
  1332. /* ********* /tables styling ****************************** */
  1333. /* ********* /dashboard widget **************************** */
  1334. /* ********* widgets *************************************** */
  1335. ul.msg_list li {
  1336. background: #f7f7f7;
  1337. padding: 5px;
  1338. display: -ms-flexbox;
  1339. display: flex;
  1340. margin: 6px 6px 0;
  1341. width: 96% !important;
  1342. }
  1343. ul.msg_list li:last-child {
  1344. margin-bottom: 6px;
  1345. }
  1346. ul.msg_list li a {
  1347. padding: 3px 5px !important;
  1348. }
  1349. ul.msg_list li a .image img {
  1350. border-radius: 2px 2px 2px 2px;
  1351. -webkit-border-radius: 2px 2px 2px 2px;
  1352. float: left;
  1353. margin-right: 10px;
  1354. width: 11%;
  1355. }
  1356. ul.msg_list li a .time {
  1357. font-size: 11px;
  1358. font-style: italic;
  1359. font-weight: bold;
  1360. position: absolute;
  1361. right: 35px;
  1362. }
  1363. ul.msg_list li a .message {
  1364. display: block !important;
  1365. font-size: 11px;
  1366. }
  1367. .dropdown-menu.msg_list span {
  1368. white-space: normal;
  1369. }
  1370. .dropdown-menu {
  1371. border: medium none;
  1372. box-shadow: none;
  1373. display: none;
  1374. float: left;
  1375. font-size: 12px;
  1376. left: 0;
  1377. list-style: none outside none;
  1378. padding: 0;
  1379. position: absolute;
  1380. text-shadow: none;
  1381. top: 100%;
  1382. z-index: 9998;
  1383. border: 1px solid #D9DEE4;
  1384. border-top-left-radius: 0;
  1385. border-top-right-radius: 0;
  1386. }
  1387. .dropdown-menu > li > a {
  1388. color: #5A738E;
  1389. }
  1390. .navbar-nav .open .dropdown-menu {
  1391. position: absolute;
  1392. background: #fff;
  1393. margin-top: 0;
  1394. border: 1px solid #D9DEE4;
  1395. -webkit-box-shadow: none;
  1396. right: 0;
  1397. left: auto;
  1398. width: 220px;
  1399. }
  1400. .navbar-nav .open .dropdown-menu.msg_list {
  1401. width: 300px;
  1402. }
  1403. .info-number .badge {
  1404. font-size: 10px;
  1405. font-weight: normal;
  1406. line-height: 13px;
  1407. padding: 2px 6px;
  1408. position: absolute;
  1409. right: 2px;
  1410. top: 8px;
  1411. }
  1412. ul.to_do {
  1413. padding: 0;
  1414. }
  1415. ul.to_do li {
  1416. background: #f3f3f3;
  1417. border-radius: 3px;
  1418. position: relative;
  1419. padding: 7px;
  1420. margin-bottom: 5px;
  1421. list-style: none;
  1422. }
  1423. ul.to_do p {
  1424. margin: 0;
  1425. }
  1426. .dashboard-widget {
  1427. background: #f6f6f6;
  1428. border-top: 5px solid #79C3DF;
  1429. border-radius: 3px;
  1430. padding: 5px 10px 10px;
  1431. }
  1432. .dashboard-widget .dashboard-widget-title {
  1433. font-weight: normal;
  1434. border-bottom: 1px solid #c1cdcd;
  1435. margin: 0 0 10px 0;
  1436. padding-bottom: 5px;
  1437. padding-left: 40px;
  1438. line-height: 30px;
  1439. }
  1440. .dashboard-widget .dashboard-widget-title i {
  1441. font-size: 100%;
  1442. margin-left: -35px;
  1443. margin-right: 10px;
  1444. color: #33a1c9;
  1445. padding: 3px 6px;
  1446. border: 1px solid #abd9ea;
  1447. border-radius: 5px;
  1448. background: #fff;
  1449. }
  1450. ul.quick-list {
  1451. width: 45%;
  1452. padding-left: 0;
  1453. display: inline-block;
  1454. }
  1455. ul.quick-list li {
  1456. padding-left: 10px;
  1457. list-style: none;
  1458. margin: 0;
  1459. padding-bottom: 6px;
  1460. padding-top: 4px;
  1461. white-space: nowrap;
  1462. text-overflow: ellipsis;
  1463. overflow: hidden;
  1464. }
  1465. ul.quick-list li i {
  1466. padding-right: 10px;
  1467. color: #757679;
  1468. }
  1469. .dashboard-widget-content {
  1470. padding-top: 9px;
  1471. }
  1472. .dashboard-widget-content .sidebar-widget {
  1473. width: 50%;
  1474. display: inline-block;
  1475. vertical-align: top;
  1476. background: #fff;
  1477. border: 1px solid #abd9ea;
  1478. border-radius: 5px;
  1479. text-align: center;
  1480. float: right;
  1481. padding: 2px;
  1482. margin-top: 10px;
  1483. }
  1484. .widget_summary {
  1485. width: 100%;
  1486. display: -ms-inline-flexbox;
  1487. display: inline-flex;
  1488. }
  1489. .widget_summary .w_left {
  1490. float: left;
  1491. text-align: left;
  1492. }
  1493. .widget_summary .w_center {
  1494. float: left;
  1495. }
  1496. .widget_summary .w_right {
  1497. float: left;
  1498. text-align: right;
  1499. }
  1500. .widget_summary .w_right span {
  1501. font-size: 20px;
  1502. }
  1503. .w_20 {
  1504. width: 20%;
  1505. }
  1506. .w_25 {
  1507. width: 25%;
  1508. }
  1509. .w_55 {
  1510. width: 55%;
  1511. }
  1512. h5.graph_title {
  1513. text-align: left;
  1514. margin-left: 10px;
  1515. }
  1516. h5.graph_title i {
  1517. margin-right: 10px;
  1518. font-size: 17px;
  1519. }
  1520. span.right {
  1521. float: right;
  1522. font-size: 14px !important;
  1523. }
  1524. .tile_info a {
  1525. text-overflow: ellipsis;
  1526. }
  1527. .sidebar-footer {
  1528. bottom: 0px;
  1529. clear: both;
  1530. display: block;
  1531. padding: 5px 0 0 0;
  1532. position: fixed;
  1533. left: 0;
  1534. background: #2A3F54;
  1535. }
  1536. .sidebar-footer a {
  1537. padding: 7px 0 3px;
  1538. text-align: center;
  1539. width: 25%;
  1540. font-size: 17px;
  1541. display: block;
  1542. float: left;
  1543. background: #172D44;
  1544. }
  1545. .sidebar-footer a:hover {
  1546. background: #425567;
  1547. }
  1548. /** top tiles */
  1549. .tile_count {
  1550. margin-bottom: 20px;
  1551. margin-top: 20px;
  1552. }
  1553. .tile_count .tile_stats_count {
  1554. border-bottom: 1px solid #D9DEE4;
  1555. text-overflow: ellipsis;
  1556. overflow: hidden;
  1557. white-space: nowrap;
  1558. position: relative;
  1559. }
  1560. @media (min-width: 992px) {
  1561. .tile_count .tile_stats_count {
  1562. margin-bottom: 10px;
  1563. border-bottom: 0;
  1564. padding-bottom: 10px;
  1565. }
  1566. }
  1567. .tile_count .tile_stats_count:before {
  1568. content: "";
  1569. position: absolute;
  1570. left: 0;
  1571. height: 65px;
  1572. border-left: 2px solid #ADB2B5;
  1573. margin-top: 10px;
  1574. }
  1575. @media (min-width: 992px) {
  1576. .tile_count .tile_stats_count:first-child:before {
  1577. border-left: 0;
  1578. }
  1579. }
  1580. .tile_count .tile_stats_count .count {
  1581. font-size: 30px;
  1582. line-height: 47px;
  1583. font-weight: 600;
  1584. }
  1585. @media (min-width: 768px) {
  1586. .tile_count .tile_stats_count .count {
  1587. font-size: 40px;
  1588. }
  1589. }
  1590. @media (min-width: 992px) and (max-width: 1100px) {
  1591. .tile_count .tile_stats_count .count {
  1592. font-size: 30px;
  1593. }
  1594. .main_menu span.fa {
  1595. position:absolute;
  1596. right:0;
  1597. }
  1598. }
  1599. .tile_count .tile_stats_count span {
  1600. font-size: 12px;
  1601. }
  1602. @media (min-width: 768px) {
  1603. .tile_count .tile_stats_count span {
  1604. font-size: 13px;
  1605. }
  1606. }
  1607. .tile_count .tile_stats_count .count_bottom i {
  1608. width: 12px;
  1609. }
  1610. /** /top tiles **/
  1611. .dashboard_graph {
  1612. background: #fff;
  1613. padding: 7px 10px;
  1614. }
  1615. a.user-profile {
  1616. color: #5E6974 !important;
  1617. }
  1618. .user-profile img {
  1619. width: 29px;
  1620. height: 29px;
  1621. border-radius: 50%;
  1622. margin-right: 10px;
  1623. }
  1624. ul.top_profiles {
  1625. height: auto;
  1626. width: 100%;
  1627. }
  1628. ul.top_profiles li {
  1629. margin: 0;
  1630. padding: 3px 5px;
  1631. }
  1632. ul.top_profiles li:nth-child(odd) {
  1633. background-color: #eee;
  1634. }
  1635. .media .profile_thumb {
  1636. border: 1px solid;
  1637. width: 50px;
  1638. height: 50px;
  1639. margin: 5px 10px 5px 0;
  1640. border-radius: 50%;
  1641. padding: 9px 12px;
  1642. }
  1643. .media .profile_thumb i {
  1644. font-size: 30px;
  1645. }
  1646. .media .date {
  1647. background: #ccc;
  1648. width: 52px;
  1649. margin-right: 10px;
  1650. border-radius: 10px;
  1651. padding: 5px;
  1652. }
  1653. .media .date .month {
  1654. margin: 0;
  1655. text-align: center;
  1656. color: #fff;
  1657. }
  1658. .media .date .day {
  1659. text-align: center;
  1660. color: #fff;
  1661. font-size: 27px;
  1662. margin: 0;
  1663. line-height: 27px;
  1664. font-weight: bold;
  1665. }
  1666. .event .media-body a.title {
  1667. font-weight: bold;
  1668. }
  1669. .event .media-body p {
  1670. margin-bottom: 0;
  1671. }
  1672. h4.graph_title {
  1673. margin: 7px;
  1674. text-align: center;
  1675. }
  1676. /* ********* /widgets *************************************** */
  1677. /* ********* iconts-display **************************** */
  1678. .fontawesome-icon-list .fa-hover a:hover {
  1679. background-color: #B7B7B7;
  1680. color: #fff;
  1681. text-decoration: none;
  1682. }
  1683. .fontawesome-icon-list .fa-hover a {
  1684. display: block;
  1685. line-height: 32px;
  1686. height: 32px;
  1687. padding-left: 10px;
  1688. border-radius: 4px;
  1689. }
  1690. .main_menu .fa {
  1691. width: 26px;
  1692. opacity: .99;
  1693. display: inline-block;
  1694. font-family: FontAwesome;
  1695. font-style: normal;
  1696. font-weight: normal;
  1697. font-size: 18px;
  1698. -webkit-font-smoothing: antialiased;
  1699. -moz-osx-font-smoothing: grayscale;
  1700. }
  1701. /* ********* /iconts-display *********************** */
  1702. /** tile stats **/
  1703. .tile-stats {
  1704. position: relative;
  1705. display: block;
  1706. margin-bottom: 12px;
  1707. border: 1px solid #E4E4E4;
  1708. -webkit-border-radius: 5px;
  1709. overflow: hidden;
  1710. padding-bottom: 5px;
  1711. -webkit-background-clip: padding-box;
  1712. -moz-border-radius: 5px;
  1713. -moz-background-clip: padding;
  1714. border-radius: 5px;
  1715. background-clip: padding-box;
  1716. background: #FFF;
  1717. transition: all 300ms ease-in-out;
  1718. padding-left:10px;
  1719. padding-right:10px;
  1720. }
  1721. .tile-stats h3 {
  1722. padding-left:10px;
  1723. }
  1724. .tile-stats:hover .icon i {
  1725. animation-name: tansformAnimation;
  1726. animation-duration: .5s;
  1727. animation-iteration-count: 1;
  1728. color: rgba(58, 58, 58, 0.41);
  1729. animation-timing-function: ease;
  1730. animation-fill-mode: forwards;
  1731. -webkit-animation-name: tansformAnimation;
  1732. -webkit-animation-duration: .5s;
  1733. -webkit-animation-iteration-count: 1;
  1734. -webkit-animation-timing-function: ease;
  1735. -webkit-animation-fill-mode: forwards;
  1736. -moz-animation-name: tansformAnimation;
  1737. -moz-animation-duration: .5s;
  1738. -moz-animation-iteration-count: 1;
  1739. -moz-animation-timing-function: ease;
  1740. -moz-animation-fill-mode: forwards;
  1741. }
  1742. .tile-stats .icon {
  1743. width: 20px;
  1744. height: 20px;
  1745. color: #BAB8B8;
  1746. position: absolute;
  1747. right: 53px;
  1748. top: 22px;
  1749. z-index: 1;
  1750. }
  1751. .tile-stats .icon i {
  1752. margin: 0;
  1753. font-size: 60px;
  1754. line-height: 0;
  1755. vertical-align: bottom;
  1756. padding: 0;
  1757. }
  1758. .tile-stats .count {
  1759. font-size: 38px;
  1760. font-weight: bold;
  1761. line-height: 1.65857;
  1762. }
  1763. .tile-stats .count, .tile-stats h5, .tile-stats p {
  1764. position: relative;
  1765. margin: 0;
  1766. margin-left: 10px;
  1767. z-index: 5;
  1768. padding: 0;
  1769. }
  1770. .tile-stats h5 {
  1771. color: #BAB8B8;
  1772. }
  1773. .tile-stats p {
  1774. margin-top: 5px;
  1775. font-size: 12px;
  1776. }
  1777. .tile-stats > .dash-box-footer {
  1778. position: relative;
  1779. text-align: center;
  1780. margin-top: 5px;
  1781. padding: 3px 0;
  1782. color: #fff;
  1783. color: rgba(255, 255, 255, 0.8);
  1784. display: block;
  1785. z-index: 10;
  1786. background: rgba(0, 0, 0, 0.1);
  1787. text-decoration: none;
  1788. }
  1789. .tile-stats > .dash-box-footer:hover {
  1790. color: #fff;
  1791. background: rgba(0, 0, 0, 0.15);
  1792. }
  1793. .tile-stats > .dash-box-footer:hover {
  1794. color: #fff;
  1795. background: rgba(0, 0, 0, 0.15);
  1796. }
  1797. table.tile_info {
  1798. padding: 10px 15px;
  1799. }
  1800. table.tile_info span.right {
  1801. margin-right: 0;
  1802. float: right;
  1803. position: absolute;
  1804. right: 4%;
  1805. }
  1806. .tile:hover {
  1807. text-decoration: none;
  1808. }
  1809. .tile_header {
  1810. border-bottom: transparent;
  1811. padding: 7px 15px;
  1812. margin-bottom: 15px;
  1813. background: #E7E7E7;
  1814. }
  1815. .tile_head h4 {
  1816. margin-top: 0;
  1817. margin-bottom: 5px;
  1818. }
  1819. .tiles-bottom {
  1820. padding: 5px 10px;
  1821. margin-top: 10px;
  1822. background: rgba(194, 194, 194, 0.3);
  1823. text-align: left;
  1824. }
  1825. /** /tile stats **/
  1826. /** inbox **/
  1827. a.star {
  1828. color: #428bca !important;
  1829. }
  1830. .mail_content {
  1831. background: none repeat scroll 0 0 #FFFFFF;
  1832. border-radius: 4px;
  1833. margin-top: 20px;
  1834. min-height: 500px;
  1835. padding: 10px 11px;
  1836. width: 100%;
  1837. }
  1838. .list-btn-mail {
  1839. margin-bottom: 15px;
  1840. }
  1841. .list-btn-mail.active {
  1842. border-bottom: 1px solid #39B3D7;
  1843. padding: 0 0 14px;
  1844. }
  1845. .list-btn-mail > i {
  1846. float: left;
  1847. font-size: 18px;
  1848. font-style: normal;
  1849. width: 33px;
  1850. }
  1851. .list-btn-mail > .cn {
  1852. background: none repeat scroll 0 0 #39B3D7;
  1853. border-radius: 12px;
  1854. color: #FFFFFF;
  1855. float: right;
  1856. font-style: normal;
  1857. padding: 0 5px;
  1858. }
  1859. .button-mail {
  1860. margin: 0 0 15px !important;
  1861. text-align: left;
  1862. width: 100%;
  1863. }
  1864. .btn-group-vertical .btn, .btn-group .btn {
  1865. margin-bottom: 0;
  1866. margin-right: 0;
  1867. }
  1868. .mail_list_column {
  1869. border-left: 1px solid #DBDBDB;
  1870. }
  1871. .mail_view {
  1872. border-left: 1px solid #DBDBDB;
  1873. }
  1874. .mail_list {
  1875. width: 100%;
  1876. border-bottom: 1px solid #DBDBDB;
  1877. margin-bottom: 2px;
  1878. display: inline-block;
  1879. }
  1880. .mail_list .left {
  1881. width: 5%;
  1882. float: left;
  1883. margin-right: 3%;
  1884. }
  1885. .mail_list .right {
  1886. width: 90%;
  1887. float: left;
  1888. }
  1889. .mail_list h3 {
  1890. font-size: 15px;
  1891. font-weight: bold;
  1892. margin: 0px 0 6px;
  1893. }
  1894. .mail_list h3 small {
  1895. float: right;
  1896. color: #ADABAB;
  1897. font-size: 11px;
  1898. line-height: 20px;
  1899. }
  1900. .mail_list .badge {
  1901. padding: 3px 6px;
  1902. font-size: 8px;
  1903. background: #BAB7B7;
  1904. }
  1905. @media (max-width: 767px) {
  1906. .mail_list {
  1907. margin-bottom: 5px;
  1908. display: inline-block;
  1909. }
  1910. }
  1911. .mail_heading h4 {
  1912. font-size: 18px;
  1913. border-bottom: 1px solid #ddd;
  1914. padding-bottom: 10px;
  1915. margin-top: 20px;
  1916. }
  1917. .attachment {
  1918. margin-top: 30px;
  1919. }
  1920. .attachment ul {
  1921. width: 100%;
  1922. list-style: none;
  1923. padding-left: 0;
  1924. display: inline-block;
  1925. margin-bottom: 30px;
  1926. }
  1927. .attachment ul li {
  1928. float: left;
  1929. width: 150px;
  1930. margin-right: 10px;
  1931. margin-bottom: 10px;
  1932. }
  1933. .attachment ul li img {
  1934. height: 150px;
  1935. border: 1px solid #ddd;
  1936. padding: 5px;
  1937. margin-bottom: 10px;
  1938. }
  1939. .attachment ul li span {
  1940. float: right;
  1941. }
  1942. .attachment .file-name {
  1943. float: left;
  1944. }
  1945. .attachment .links {
  1946. width: 100%;
  1947. display: inline-block;
  1948. }
  1949. .compose {
  1950. padding: 0;
  1951. position: fixed;
  1952. bottom: 0;
  1953. right: 0;
  1954. background: #fff;
  1955. border: 1px solid #D9DEE4;
  1956. border-right: 0;
  1957. border-bottom: 0;
  1958. border-top-left-radius: 5px;
  1959. z-index: 9999;
  1960. display: none;
  1961. }
  1962. .compose .compose-header {
  1963. padding: 5px;
  1964. background: #169F85;
  1965. color: #fff;
  1966. border-top-left-radius: 5px;
  1967. }
  1968. .compose .compose-header .close {
  1969. text-shadow: 0 1px 0 #ffffff;
  1970. line-height: .8;
  1971. }
  1972. .compose .compose-body .editor.btn-toolbar {
  1973. margin: 0;
  1974. }
  1975. .compose .compose-body .editor-wrapper {
  1976. height: 100%;
  1977. min-height: 50px;
  1978. max-height: 180px;
  1979. border-radius: 0;
  1980. border-left: none;
  1981. border-right: none;
  1982. overflow: auto;
  1983. }
  1984. .compose .compose-footer {
  1985. padding: 10px;
  1986. }
  1987. /** /inbox **/
  1988. /* ********* form design **************************** */
  1989. .editor.btn-toolbar {
  1990. zoom: 1;
  1991. background: #F7F7F7;
  1992. margin: 5px 2px;
  1993. padding: 3px 0;
  1994. border: 1px solid #EFEFEF;
  1995. }
  1996. .input-group {
  1997. margin-bottom: 10px;
  1998. }
  1999. .ln_solid {
  2000. border-top: 1px solid #e5e5e5;
  2001. color: #ffffff;
  2002. background-color: #ffffff;
  2003. height: 1px;
  2004. margin: 20px 0;
  2005. }
  2006. span.section {
  2007. display: block;
  2008. width: 100%;
  2009. padding: 0;
  2010. margin-bottom: 20px;
  2011. font-size: 21px;
  2012. line-height: inherit;
  2013. color: #333;
  2014. border: 0;
  2015. border-bottom: 1px solid #e5e5e5;
  2016. }
  2017. .form-control {
  2018. border-radius: 0;
  2019. width: 100%;
  2020. }
  2021. .form-horizontal .control-label {
  2022. padding-top: 8px;
  2023. }
  2024. .form-control:focus {
  2025. border-color: #CCD0D7;
  2026. box-shadow: none !important;
  2027. }
  2028. legend {
  2029. font-size: 18px;
  2030. color: inherit;
  2031. }
  2032. .form-horizontal .form-group {
  2033. margin-right: 0;
  2034. margin-left: 0;
  2035. }
  2036. .form-control-feedback {
  2037. margin-top: 8px;
  2038. height: 23px;
  2039. color: #bbb;
  2040. line-height: 24px;
  2041. font-size: 15px;
  2042. }
  2043. .form-control-feedback.left {
  2044. border-right: 1px solid #ccc;
  2045. left: 28px;
  2046. top: 0px;
  2047. padding-right: 10px;
  2048. position: absolute;
  2049. }
  2050. .form-control-feedback.right {
  2051. border-left: 1px solid #ccc;
  2052. right: 28px;
  2053. top: 0px;
  2054. padding-left: 10px;
  2055. position: absolute;
  2056. }
  2057. .form-control.has-feedback-left {
  2058. padding-left: 45px;
  2059. }
  2060. .form-control.has-feedback-right {
  2061. padding-right: 45px;
  2062. }
  2063. .form-group {
  2064. margin-bottom: 10px;
  2065. }
  2066. .validate {
  2067. margin-top: 10px;
  2068. }
  2069. .invalid-form-error-message {
  2070. margin-top: 10px;
  2071. padding: 5px;
  2072. }
  2073. .invalid-form-error-message.filled {
  2074. border-left: 2px solid #E74C3C;
  2075. }
  2076. p.parsley-success {
  2077. color: #468847;
  2078. background-color: #DFF0D8;
  2079. border: 1px solid #D6E9C6;
  2080. }
  2081. p.parsley-error {
  2082. color: #B94A48;
  2083. background-color: #F2DEDE;
  2084. border: 1px solid #EED3D7;
  2085. }
  2086. ul.parsley-errors-list {
  2087. list-style: none;
  2088. color: #E74C3C;
  2089. padding-left: 0;
  2090. }
  2091. input.parsley-error, textarea.parsley-error, select.parsley-error {
  2092. background: #FAEDEC;
  2093. border: 1px solid #E85445;
  2094. }
  2095. .btn-group .parsley-errors-list {
  2096. display: none;
  2097. }
  2098. .bad input, .bad select, .bad textarea {
  2099. border: 1px solid #CE5454;
  2100. box-shadow: 0 0 4px -2px #CE5454;
  2101. position: relative;
  2102. left: 0;
  2103. -moz-animation: .7s 1 shake linear;
  2104. -webkit-animation: 0.7s 1 shake linear;
  2105. }
  2106. .item input, .item textarea {
  2107. transition: 0.42s;
  2108. }
  2109. /* alerts (when validation fails) */
  2110. .item .alert {
  2111. float: left;
  2112. margin: 0 0 0 20px;
  2113. padding: 3px 10px;
  2114. color: #FFF;
  2115. border-radius: 3px 4px 4px 3px;
  2116. background-color: #CE5454;
  2117. max-width: 170px;
  2118. white-space: pre;
  2119. position: relative;
  2120. left: -15px;
  2121. opacity: 0;
  2122. z-index: 1;
  2123. transition: 0.15s ease-out;
  2124. }
  2125. .item .alert::after {
  2126. content: '';
  2127. display: block;
  2128. height: 0;
  2129. width: 0;
  2130. border-color: transparent #CE5454 transparent transparent;
  2131. border-style: solid;
  2132. border-width: 11px 7px;
  2133. position: absolute;
  2134. left: -13px;
  2135. top: 1px;
  2136. }
  2137. .item.bad .alert {
  2138. left: 0;
  2139. opacity: 1;
  2140. }
  2141. .inl-bl {
  2142. display: inline-block;
  2143. }
  2144. .card .markup {
  2145. background: #fff;
  2146. color: #777;
  2147. position: relative;
  2148. padding: 45px 15px 15px;
  2149. margin: 15px 0 0 0;
  2150. background-color: #fff;
  2151. border-radius: 0 0 4px 4px;
  2152. box-shadow: none;
  2153. }
  2154. .card .markup::after {
  2155. content: "Example";
  2156. position: absolute;
  2157. top: 15px;
  2158. left: 15px;
  2159. font-size: 12px;
  2160. font-weight: bold;
  2161. color: #bbb;
  2162. text-transform: uppercase;
  2163. letter-spacing: 1px;
  2164. }
  2165. /* ***** autocomplete ***** */
  2166. .autocomplete-suggestions {
  2167. border: 1px solid #e4e4e4;
  2168. background: #F4F4F4;
  2169. cursor: default;
  2170. overflow: auto;
  2171. }
  2172. .autocomplete-suggestion {
  2173. padding: 2px 5px;
  2174. font-size: 1.2em;
  2175. white-space: nowrap;
  2176. overflow: hidden;
  2177. }
  2178. .autocomplete-selected {
  2179. background: #f0f0f0;
  2180. }
  2181. .autocomplete-suggestions strong {
  2182. font-weight: normal;
  2183. color: #3399ff;
  2184. font-weight: bolder;
  2185. }
  2186. /* ***** /autocomplete *****/
  2187. /* ***** buttons ********/
  2188. .btn {
  2189. border-radius: 3px;
  2190. }
  2191. a.btn-success, a.btn-primary, a.btn-warning, a.btn-danger {
  2192. color: #fff !important;
  2193. }
  2194. .btn-success {
  2195. background: #26B99A;
  2196. border: 1px solid #169F85;
  2197. }
  2198. .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
  2199. background: #169F85;
  2200. }
  2201. .btn-dark {
  2202. color: #E9EDEF;
  2203. background-color: #4B5F71;
  2204. border-color: #364B5F;
  2205. }
  2206. .btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .open .dropdown-toggle.btn-dark {
  2207. color: #FFFFFF;
  2208. background-color: #394D5F;
  2209. border-color: #394D5F;
  2210. }
  2211. .btn-round {
  2212. border-radius: 30px;
  2213. }
  2214. .btn.btn-app {
  2215. position: relative;
  2216. padding: 15px 5px;
  2217. margin: 0 0 10px 10px;
  2218. min-width: 80px;
  2219. height: 60px;
  2220. box-shadow: none;
  2221. border-radius: 0;
  2222. text-align: center;
  2223. color: #666;
  2224. border: 1px solid #ddd;
  2225. background-color: #fafafa;
  2226. font-size: 12px;
  2227. }
  2228. .btn.btn-app > .fa, .btn.btn-app > .glyphicon, .btn.btn-app > .ion {
  2229. font-size: 20px;
  2230. display: block;
  2231. }
  2232. .btn.btn-app:hover {
  2233. background: #f4f4f4;
  2234. color: #444;
  2235. border-color: #aaa;
  2236. }
  2237. .btn.btn-app:active, .btn.btn-app:focus {
  2238. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2239. }
  2240. .btn.btn-app > .badge {
  2241. position: absolute;
  2242. top: -3px;
  2243. right: -10px;
  2244. font-size: 10px;
  2245. font-weight: 400;
  2246. }
  2247. /* ***** /buttons *******/
  2248. /* ********* /form design **************************** */
  2249. /* ********* form textarea **************************** */
  2250. textarea {
  2251. padding: 10px;
  2252. vertical-align: top;
  2253. width: 200px;
  2254. }
  2255. textarea:focus {
  2256. outline-style: solid;
  2257. outline-width: 2px;
  2258. }
  2259. .btn_ {
  2260. display: inline-block;
  2261. padding: 3px 9px;
  2262. margin-bottom: 0;
  2263. font-size: 14px;
  2264. line-height: 20px;
  2265. text-align: center;
  2266. vertical-align: middle;
  2267. cursor: pointer;
  2268. color: #333333;
  2269. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  2270. background-color: #f5f5f5;
  2271. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  2272. background-repeat: repeat-x;
  2273. filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0)";
  2274. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  2275. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2276. filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
  2277. border: 1px solid #cccccc;
  2278. border-bottom-color: #b3b3b3;
  2279. border-radius: 4px;
  2280. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2281. }
  2282. /* ********* /form textarea **************************** */
  2283. /* ********* glyphicons **************************** */
  2284. .bs-glyphicons {
  2285. margin: 0 -10px 20px;
  2286. overflow: hidden;
  2287. }
  2288. .bs-glyphicons-list {
  2289. padding-left: 0;
  2290. list-style: none;
  2291. }
  2292. .bs-glyphicons li {
  2293. float: left;
  2294. width: 25%;
  2295. height: 115px;
  2296. padding: 10px;
  2297. font-size: 10px;
  2298. line-height: 1.4;
  2299. text-align: center;
  2300. background-color: #f9f9f9;
  2301. border: 1px solid #fff;
  2302. }
  2303. .bs-glyphicons .glyphicon {
  2304. margin-top: 5px;
  2305. margin-bottom: 10px;
  2306. font-size: 24px;
  2307. }
  2308. .bs-glyphicons .glyphicon-class {
  2309. display: block;
  2310. text-align: center;
  2311. word-wrap: break-word;
  2312. }
  2313. .bs-glyphicons li:hover {
  2314. color: #fff;
  2315. background-color: #1ABB9C;
  2316. }
  2317. @media (min-width: 768px) {
  2318. .bs-glyphicons {
  2319. margin-right: 0;
  2320. margin-left: 0;
  2321. }
  2322. .bs-glyphicons li {
  2323. width: 12.5%;
  2324. font-size: 12px;
  2325. }
  2326. }
  2327. /* ********* /glyphicons **************************** */
  2328. /* ********* form tags input **************************** */
  2329. .tagsinput {
  2330. border: 1px solid #CCC;
  2331. background: #FFF;
  2332. padding: 6px 6px 0;
  2333. width: 300px;
  2334. overflow-y: auto;
  2335. }
  2336. span.tag {
  2337. -moz-border-radius: 2px;
  2338. -webkit-border-radius: 2px;
  2339. display: block;
  2340. float: left;
  2341. padding: 5px 9px;
  2342. text-decoration: none;
  2343. background: #1ABB9C;
  2344. color: #F1F6F7;
  2345. margin-right: 5px;
  2346. font-weight: 500;
  2347. margin-bottom: 5px;
  2348. font-family: helvetica;
  2349. }
  2350. span.tag a {
  2351. color: #F1F6F7 !important;
  2352. }
  2353. .tagsinput span.tag a {
  2354. font-weight: bold;
  2355. color: #82ad2b;
  2356. text-decoration: none;
  2357. font-size: 11px;
  2358. }
  2359. .tagsinput input {
  2360. width: 80px;
  2361. margin: 0px;
  2362. font-family: helvetica;
  2363. font-size: 13px;
  2364. border: 1px solid transparent;
  2365. padding: 3px;
  2366. background: transparent;
  2367. color: #000;
  2368. outline: 0px;
  2369. }
  2370. .tagsinput div {
  2371. display: block;
  2372. float: left;
  2373. }
  2374. .tags_clear {
  2375. clear: both;
  2376. width: 100%;
  2377. height: 0px;
  2378. }
  2379. .not_valid {
  2380. background: #FBD8DB !important;
  2381. color: #90111A !important;
  2382. }
  2383. /* ********* /form tags input **************************** */
  2384. /** Tabs **/
  2385. ul.bar_tabs {
  2386. overflow: visible;
  2387. background: #F5F7FA;
  2388. height: 25px;
  2389. margin: 21px 0 14px;
  2390. padding-left: 14px;
  2391. position: relative;
  2392. z-index: 1;
  2393. width: 100%;
  2394. border-bottom: 1px solid #E6E9ED;
  2395. }
  2396. ul.bar_tabs > li {
  2397. border: 1px solid #E6E9ED;
  2398. color: #333 !important;
  2399. margin-top: -17px;
  2400. margin-left: 8px;
  2401. background: #fff;
  2402. border-bottom: none;
  2403. border-radius: 4px 4px 0 0;
  2404. }
  2405. ul.bar_tabs > li.active {
  2406. border-right: 6px solid #D3D6DA;
  2407. border-top: 0;
  2408. margin-top: -15px;
  2409. }
  2410. ul.bar_tabs > li a {
  2411. padding: 10px 17px;
  2412. background: #F5F7FA;
  2413. margin: 0;
  2414. border-top-right-radius: 0;
  2415. }
  2416. ul.bar_tabs > li a:hover {
  2417. border: 1px solid transparent;
  2418. }
  2419. ul.bar_tabs > li.active a {
  2420. border-bottom: none;
  2421. }
  2422. ul.bar_tabs.right {
  2423. padding-right: 14px;
  2424. }
  2425. ul.bar_tabs.right li {
  2426. float: right;
  2427. }
  2428. a:focus {
  2429. outline: none;
  2430. }
  2431. /** /Tabs **/
  2432. /* ********* timeline **************************** */
  2433. ul.timeline li {
  2434. position: relative;
  2435. border-bottom: 1px solid #e8e8e8;
  2436. clear: both;
  2437. }
  2438. .timeline .block {
  2439. margin: 0;
  2440. border-left: 3px solid #e8e8e8;
  2441. overflow: visible;
  2442. padding: 10px 15px;
  2443. margin-left: 105px;
  2444. }
  2445. .timeline.widget {
  2446. min-width: 0;
  2447. max-width: inherit;
  2448. }
  2449. .timeline.widget .block {
  2450. margin-left: 5px;
  2451. }
  2452. .timeline .tags {
  2453. position: absolute;
  2454. top: 15px;
  2455. left: 0;
  2456. width: 84px;
  2457. }
  2458. .timeline .tag {
  2459. display: block;
  2460. height: 30px;
  2461. font-size: 13px;
  2462. padding: 8px;
  2463. }
  2464. .timeline .tag span {
  2465. display: block;
  2466. overflow: hidden;
  2467. width: 100%;
  2468. white-space: nowrap;
  2469. text-overflow: ellipsis;
  2470. }
  2471. .tag {
  2472. line-height: 1;
  2473. background: #1ABB9C;
  2474. color: #fff !important;
  2475. }
  2476. .tag:after {
  2477. content: " ";
  2478. height: 30px;
  2479. width: 0;
  2480. position: absolute;
  2481. left: 100%;
  2482. top: 0;
  2483. margin: 0;
  2484. pointer-events: none;
  2485. border-top: 14px solid transparent;
  2486. border-bottom: 14px solid transparent;
  2487. border-left: 11px solid #1ABB9C;
  2488. }
  2489. .timeline h2.title {
  2490. position: relative;
  2491. font-size: 16px;
  2492. margin: 0;
  2493. }
  2494. .timeline h2.title:before {
  2495. content: "";
  2496. position: absolute;
  2497. left: -23px;
  2498. top: 3px;
  2499. display: block;
  2500. width: 14px;
  2501. height: 14px;
  2502. border: 3px solid #d2d3d2;
  2503. border-radius: 14px;
  2504. background: #f9f9f9;
  2505. }
  2506. .timeline .byline {
  2507. padding: .25em 0;
  2508. }
  2509. .byline {
  2510. -webkit-font-smoothing: antialiased;
  2511. font-style: italic;
  2512. font-size: .9375em;
  2513. line-height: 1.3;
  2514. color: #aab6aa;
  2515. }
  2516. ul.social li {
  2517. border: 0;
  2518. }
  2519. /* ********* /timeline **************************** */
  2520. /* ********* profile/social **************************** */
  2521. .social-sidebar, .social-body {
  2522. float: right;
  2523. }
  2524. .social-sidebar {
  2525. background: #EDEDED;
  2526. width: 22%;
  2527. }
  2528. .social-body {
  2529. border: 1px solid #ccc;
  2530. width: 78%;
  2531. }
  2532. .thumb img {
  2533. width: 50px;
  2534. height: 50px;
  2535. border-radius: 50%;
  2536. }
  2537. .chat .thumb img {
  2538. width: 27px;
  2539. height: 27px;
  2540. border-radius: 50%;
  2541. }
  2542. .chat .status {
  2543. float: left;
  2544. margin: 16px 0 0 -16px;
  2545. font-size: 14px;
  2546. font-weight: bold;
  2547. width: 12px;
  2548. height: 12px;
  2549. display: block;
  2550. border: 2px solid #FFF;
  2551. z-index: 12312;
  2552. border-radius: 50%;
  2553. }
  2554. .chat .status.online {
  2555. background: #1ABB9C;
  2556. }
  2557. .chat .status.away {
  2558. background: #F39C12;
  2559. }
  2560. .chat .status.offline {
  2561. background: #ccc;
  2562. }
  2563. .chat .media-body {
  2564. padding-top: 5px;
  2565. }
  2566. /* ********* /profile/social **************************** */
  2567. /* ********* widgets **************************** */
  2568. .dashboard_graph .x_title {
  2569. padding: 5px 5px 7px;
  2570. }
  2571. .dashboard_graph .x_title h3 {
  2572. margin: 0;
  2573. font-weight: normal;
  2574. }
  2575. .chart {
  2576. position: relative;
  2577. display: inline-block;
  2578. width: 110px;
  2579. height: 110px;
  2580. margin-top: 5px;
  2581. margin-bottom: 5px;
  2582. text-align: center;
  2583. }
  2584. .chart canvas {
  2585. position: absolute;
  2586. top: 0;
  2587. left: 0;
  2588. }
  2589. /* TODO To be tested furthermore. This is a fix for canvas distorsion */
  2590. canvas {
  2591. max-width:100%;
  2592. height:auto !important;
  2593. }
  2594. .percent {
  2595. display: inline-block;
  2596. line-height: 110px;
  2597. z-index: 2;
  2598. font-size: 18px;
  2599. }
  2600. .percent:after {
  2601. content: '%';
  2602. margin-left: 0.1em;
  2603. font-size: .8em;
  2604. }
  2605. .angular {
  2606. margin-top: 100px;
  2607. }
  2608. .angular .chart {
  2609. margin-top: 0;
  2610. }
  2611. .widget_tally_box .btn-group button {
  2612. text-align: center;
  2613. }
  2614. .widget_tally_box .btn-group button {
  2615. color: inherit;
  2616. font-weight: 500;
  2617. background-color: #f5f5f5;
  2618. border: 1px solid #e7e7e7;
  2619. }
  2620. ul.widget_tally, ul.widget_tally li {
  2621. width: 100%;
  2622. }
  2623. ul.widget_tally li {
  2624. padding: 2px 10px;
  2625. border-bottom: 1px solid #ECECEC;
  2626. padding-bottom: 4px;
  2627. }
  2628. ul.widget_tally .month {
  2629. width: 70%;
  2630. float: left;
  2631. }
  2632. ul.widget_tally .count {
  2633. width: 30%;
  2634. float: left;
  2635. text-align: right;
  2636. }
  2637. .pie_bg {
  2638. border-bottom: 1px solid rgba(101, 204, 182, 0.16);
  2639. padding-bottom: 15px;
  2640. border-radius: 4px;
  2641. filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0)";
  2642. filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
  2643. padding-bottom: 10px;
  2644. box-shadow: 0 4px 6px -6px #222;
  2645. }
  2646. .widget_tally_box .flex {
  2647. display: -ms-flexbox;
  2648. display: flex;
  2649. }
  2650. ul.widget_profile_box {
  2651. width: 100%;
  2652. height: 42px;
  2653. padding: 3px;
  2654. background: #ececec;
  2655. margin-top: 40px;
  2656. margin-left: 1px;
  2657. }
  2658. ul.widget_profile_box li:first-child {
  2659. width: 25%;
  2660. float: left;
  2661. }
  2662. ul.widget_profile_box li:first-child a {
  2663. float: left;
  2664. }
  2665. ul.widget_profile_box li:last-child {
  2666. width: 25%;
  2667. float: right;
  2668. }
  2669. ul.widget_profile_box li:last-child a {
  2670. float: right;
  2671. }
  2672. ul.widget_profile_box li a {
  2673. font-size: 22px;
  2674. text-align: center;
  2675. width: 35px;
  2676. height: 35px;
  2677. border: 1px solid rgba(52, 73, 94, 0.44);
  2678. display: block;
  2679. border-radius: 50%;
  2680. padding: 0px;
  2681. }
  2682. ul.widget_profile_box li a:hover {
  2683. color: #1ABB9C !important;
  2684. border: 1px solid #26b99a;
  2685. }
  2686. ul.widget_profile_box li .profile_img {
  2687. width: 85px;
  2688. height: 85px;
  2689. margin: 0;
  2690. margin-top: -28px;
  2691. }
  2692. .profile_img img {
  2693. max-width:100%;
  2694. }
  2695. .widget_tally_box p, .widget_tally_box span {
  2696. text-align: center;
  2697. }
  2698. .widget_tally_box .name {
  2699. text-align: center;
  2700. margin: 25px;
  2701. }
  2702. .widget_tally_box .name_title {
  2703. text-align: center;
  2704. margin: 5px;
  2705. }
  2706. .widget_tally_box ul.legend {
  2707. margin: 0;
  2708. }
  2709. .widget_tally_box ul.legend p, .widget_tally_box ul.legend span {
  2710. text-align: left;
  2711. }
  2712. .widget_tally_box ul.legend li .icon {
  2713. font-size: 20px;
  2714. float: left;
  2715. width: 14px;
  2716. }
  2717. .widget_tally_box ul.legend li .name {
  2718. font-size: 14px;
  2719. margin: 5px 0 0 14px;
  2720. text-overflow: ellipsis;
  2721. float: left;
  2722. }
  2723. .widget_tally_box ul.legend p {
  2724. display: inline-block;
  2725. margin: 0;
  2726. }
  2727. .widget_tally_box ul.verticle_bars li {
  2728. height: 140px;
  2729. width: 23%;
  2730. }
  2731. .widget .verticle_bars li .progress.vertical.progress_wide {
  2732. width: 65%;
  2733. }
  2734. ul.count2 {
  2735. width: 100%;
  2736. margin-left: 1px;
  2737. border: 1px solid #ddd;
  2738. border-left: 0;
  2739. border-right: 0;
  2740. padding: 10px 0;
  2741. }
  2742. ul.count2 li {
  2743. width: 30%;
  2744. text-align: center;
  2745. }
  2746. ul.count2 li h3 {
  2747. font-weight: 400;
  2748. margin: 0;
  2749. }
  2750. ul.count2 li span {
  2751. font-weight: 300;
  2752. }
  2753. /* ********* /widgets **************************** */
  2754. .divider {
  2755. border-bottom: 1px solid #ddd;
  2756. margin: 10px;
  2757. }
  2758. .divider-dashed {
  2759. border-top: 1px dashed #e7eaec;
  2760. background-color: #ffffff;
  2761. height: 1px;
  2762. margin: 10px 0;
  2763. }
  2764. ul.messages {
  2765. padding: 0;
  2766. list-style: none;
  2767. }
  2768. ul.messages li, .tasks li {
  2769. border-bottom: 1px dotted #e6e6e6;
  2770. padding: 8px 0;
  2771. }
  2772. ul.messages li img.avatar, img.avatar {
  2773. height: 32px;
  2774. width: 32px;
  2775. float: left;
  2776. display: inline-block;
  2777. border-radius: 2px;
  2778. padding: 2px;
  2779. background: #f7f7f7;
  2780. border: 1px solid #e6e6e6;
  2781. }
  2782. ul.messages li .message_date {
  2783. float: right;
  2784. text-align: right;
  2785. }
  2786. ul.messages li .message_wrapper {
  2787. margin-left: 50px;
  2788. margin-right: 40px;
  2789. }
  2790. ul.messages li .message_wrapper h4.heading {
  2791. font-weight: 600;
  2792. margin: 0;
  2793. cursor: pointer;
  2794. margin-bottom: 10px;
  2795. line-height: 100%;
  2796. }
  2797. ul.messages li .message_wrapper blockquote {
  2798. padding: 0px 10px;
  2799. margin: 0;
  2800. border-left: 5px solid #eee;
  2801. }
  2802. ul.user_data li {
  2803. margin-bottom: 6px;
  2804. }
  2805. ul.user_data li p {
  2806. margin-bottom: 0;
  2807. }
  2808. ul.user_data li .progress {
  2809. width: 90%;
  2810. }
  2811. .project_progress .progress {
  2812. margin-bottom: 3px !important;
  2813. margin-top: 5px;
  2814. }
  2815. .projects .list-inline {
  2816. margin: 0;
  2817. }
  2818. .profile_title {
  2819. background: #F5F7FA;
  2820. border: 0;
  2821. padding: 7px 0;
  2822. display: -ms-flexbox;
  2823. display: flex;
  2824. }
  2825. ul.stats-overview {
  2826. border-bottom: 1px solid #e8e8e8;
  2827. padding-bottom: 10px;
  2828. margin-bottom: 10px;
  2829. }
  2830. ul.stats-overview li {
  2831. display: inline-block;
  2832. text-align: center;
  2833. padding: 0 15px;
  2834. width: 30%;
  2835. font-size: 14px;
  2836. border-right: 1px solid #e8e8e8;
  2837. }
  2838. ul.stats-overview li:last-child {
  2839. border-right: 0;
  2840. }
  2841. ul.stats-overview li .name {
  2842. font-size: 12px;
  2843. }
  2844. ul.stats-overview li .value {
  2845. font-size: 14px;
  2846. font-weight: bold;
  2847. display: block;
  2848. }
  2849. ul.stats-overview li:first-child {
  2850. padding-left: 0;
  2851. }
  2852. ul.project_files li {
  2853. margin-bottom: 5px;
  2854. }
  2855. ul.project_files li a i {
  2856. width: 20px;
  2857. }
  2858. .project_detail p {
  2859. margin-bottom: 10px;
  2860. }
  2861. .project_detail p.title {
  2862. font-weight: bold;
  2863. margin-bottom: 0;
  2864. }
  2865. .avatar img {
  2866. border-radius: 50%;
  2867. max-width: 45px;
  2868. }
  2869. /* ********* pricing **************************** */
  2870. .pricing {
  2871. background: #fff;
  2872. }
  2873. .pricing .title {
  2874. background: #1ABB9C;
  2875. height: 110px;
  2876. color: #fff;
  2877. padding: 15px 0 0;
  2878. text-align: center;
  2879. }
  2880. .pricing .title h2 {
  2881. text-transform: capitalize;
  2882. font-size: 18px;
  2883. border-radius: 5px 5px 0 0;
  2884. margin: 0;
  2885. font-weight: 400;
  2886. }
  2887. .pricing .title h1 {
  2888. font-size: 30px;
  2889. margin: 12px;
  2890. }
  2891. .pricing .title span {
  2892. background: rgba(51, 51, 51, 0.28);
  2893. padding: 2px 5px;
  2894. }
  2895. .pricing_features {
  2896. background: #FAFAFA;
  2897. padding: 20px 15px;
  2898. min-height: 230px;
  2899. font-size: 13.5px;
  2900. }
  2901. .pricing_features ul li {
  2902. margin-top: 10px;
  2903. }
  2904. .pricing_footer {
  2905. padding: 10px 15px;
  2906. background-color: #f5f5f5;
  2907. border-top: 1px solid #ddd;
  2908. text-align: center;
  2909. border-bottom-right-radius: 3px;
  2910. border-bottom-left-radius: 3px;
  2911. }
  2912. .pricing_footer p {
  2913. font-size: 13px;
  2914. padding: 10px 0 2px;
  2915. display: block;
  2916. }
  2917. .ui-ribbon-container {
  2918. position: relative;
  2919. }
  2920. .ui-ribbon-container .ui-ribbon-wrapper {
  2921. position: absolute;
  2922. overflow: hidden;
  2923. width: 85px;
  2924. height: 88px;
  2925. top: -3px;
  2926. right: -3px;
  2927. }
  2928. .ui-ribbon-container.ui-ribbon-primary .ui-ribbon {
  2929. background-color: #5b90bf;
  2930. }
  2931. .ui-ribbon-container .ui-ribbon {
  2932. position: relative;
  2933. display: block;
  2934. text-align: center;
  2935. font-size: 15px;
  2936. font-weight: 700;
  2937. color: #fff;
  2938. transform: rotate(45deg);
  2939. padding: 7px 0;
  2940. left: -5px;
  2941. top: 15px;
  2942. width: 120px;
  2943. line-height: 20px;
  2944. background-color: #555;
  2945. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  2946. }
  2947. .ui-ribbon-container.ui-ribbon-primary .ui-ribbon:after, .ui-ribbon-container.ui-ribbon-primary .ui-ribbon:before {
  2948. border-top: 2px solid #5b90bf;
  2949. }
  2950. .ui-ribbon-container .ui-ribbon:before {
  2951. left: 0;
  2952. bottom: -1px;
  2953. }
  2954. .ui-ribbon-container .ui-ribbon:before {
  2955. right: 0;
  2956. }
  2957. .ui-ribbon-container .ui-ribbon:after, .ui-ribbon-container .ui-ribbon:before {
  2958. position: absolute;
  2959. content: " ";
  2960. line-height: 0;
  2961. border-top: 2px solid #555;
  2962. border-left: 2px solid transparent;
  2963. border-right: 2px solid transparent;
  2964. }
  2965. /* ********* /pricing **************************** */
  2966. /* ********* media gallery **************************** */
  2967. .thumbnail .image {
  2968. height: 120px;
  2969. overflow: hidden;
  2970. }
  2971. .caption {
  2972. padding: 9px 5px;
  2973. background: #F7F7F7;
  2974. }
  2975. .caption p {
  2976. margin-bottom: 5px;
  2977. }
  2978. .thumbnail {
  2979. height: 190px;
  2980. overflow: hidden;
  2981. padding: 5px;
  2982. border: 1px solid #ddd;
  2983. }
  2984. .view {
  2985. overflow: hidden;
  2986. position: relative;
  2987. text-align: center;
  2988. box-shadow: 1px 1px 2px #e6e6e6;
  2989. cursor: default;
  2990. }
  2991. .view .mask, .view .content {
  2992. position: absolute;
  2993. width: 100%;
  2994. overflow: hidden;
  2995. top: 0;
  2996. left: 0;
  2997. }
  2998. .view img {
  2999. display: block;
  3000. position: relative;
  3001. }
  3002. .view .tools {
  3003. text-transform: uppercase;
  3004. color: #fff;
  3005. text-align: center;
  3006. position: relative;
  3007. font-size: 17px;
  3008. padding: 3px;
  3009. background: rgba(0, 0, 0, 0.35);
  3010. margin: 43px 0 0 0;
  3011. }
  3012. .mask.no-caption .tools {
  3013. margin: 90px 0 0 0;
  3014. }
  3015. .view .tools a {
  3016. display: inline-block;
  3017. color: #FFF;
  3018. font-size: 18px;
  3019. font-weight: 400;
  3020. padding: 0 4px;
  3021. }
  3022. .view p {
  3023. font-family: Georgia, serif;
  3024. font-style: italic;
  3025. font-size: 12px;
  3026. position: relative;
  3027. color: #fff;
  3028. padding: 10px 20px 20px;
  3029. text-align: center;
  3030. }
  3031. .view a.info {
  3032. display: inline-block;
  3033. text-decoration: none;
  3034. padding: 7px 14px;
  3035. background: #000;
  3036. color: #fff;
  3037. text-transform: uppercase;
  3038. box-shadow: 0 0 1px #000;
  3039. }
  3040. .view-first img {
  3041. transition: all 0.2s linear;
  3042. }
  3043. .view-first .mask {
  3044. opacity: 0;
  3045. background-color: rgba(0, 0, 0, 0.5);
  3046. transition: all 0.4s ease-in-out;
  3047. }
  3048. .view-first .tools {
  3049. transform: translateY(-100px);
  3050. opacity: 0;
  3051. transition: all 0.2s ease-in-out;
  3052. }
  3053. .view-first p {
  3054. transform: translateY(100px);
  3055. opacity: 0;
  3056. transition: all 0.2s linear;
  3057. }
  3058. .view-first:hover img {
  3059. transform: scale(1.1);
  3060. }
  3061. .view-first:hover .mask {
  3062. opacity: 1;
  3063. }
  3064. .view-first:hover .tools, .view-first:hover p {
  3065. opacity: 1;
  3066. transform: translateY(0px);
  3067. }
  3068. .view-first:hover p {
  3069. transition-delay: 0.1s;
  3070. }
  3071. /* ********* /media gallery **************************** */
  3072. /* ********* verticle tabs **************************** */
  3073. /*!
  3074. * bootstrap-vertical-tabs - v1.2.1
  3075. * https://dbtek.github.io/bootstrap-vertical-tabs
  3076. * 2014-11-07
  3077. * Copyright (c) 2014 ─░smail Demirbilek
  3078. * License: MIT
  3079. */
  3080. .tabs-left, .tabs-right {
  3081. border-bottom: none;
  3082. padding-top: 2px;
  3083. }
  3084. .tabs-left {
  3085. border-right: 1px solid #F7F7F7;
  3086. }
  3087. .tabs-right {
  3088. border-left: 1px solid #F7F7F7;
  3089. }
  3090. .tabs-left > li, .tabs-right > li {
  3091. float: none;
  3092. margin-bottom: 2px;
  3093. }
  3094. .tabs-left > li {
  3095. margin-right: -1px;
  3096. }
  3097. .tabs-right > li {
  3098. margin-left: -1px;
  3099. }
  3100. .tabs-left > li.active > a, .tabs-left > li.active > a:hover, .tabs-left > li.active > a:focus {
  3101. border-bottom-color: #F7F7F7;
  3102. border-right-color: transparent;
  3103. }
  3104. .tabs-right > li.active > a, .tabs-right > li.active > a:hover, .tabs-right > li.active > a:focus {
  3105. border-bottom: 1px solid #F7F7F7;
  3106. border-left-color: transparent;
  3107. }
  3108. .tabs-left > li > a {
  3109. border-radius: 4px 0 0 4px;
  3110. margin-right: 0;
  3111. display: block;
  3112. background: #F7F7F7;
  3113. text-overflow: ellipsis;
  3114. overflow: hidden;
  3115. }
  3116. .tabs-right > li > a {
  3117. border-radius: 0 4px 4px 0;
  3118. margin-right: 0;
  3119. background: #F7F7F7;
  3120. text-overflow: ellipsis;
  3121. overflow: hidden;
  3122. }
  3123. .sideways {
  3124. margin-top: 50px;
  3125. border: none;
  3126. position: relative;
  3127. }
  3128. .sideways > li {
  3129. height: 20px;
  3130. width: 120px;
  3131. margin-bottom: 100px;
  3132. }
  3133. .sideways > li > a {
  3134. border-bottom: 1px solid #ddd;
  3135. border-right-color: transparent;
  3136. text-align: center;
  3137. border-radius: 4px 4px 0px 0px;
  3138. }
  3139. .sideways > li.active > a, .sideways > li.active > a:hover, .sideways > li.active > a:focus {
  3140. border-bottom-color: transparent;
  3141. border-right-color: #ddd;
  3142. border-left-color: #ddd;
  3143. }
  3144. .sideways.tabs-left {
  3145. left: -50px;
  3146. }
  3147. .sideways.tabs-right {
  3148. right: -50px;
  3149. }
  3150. .sideways.tabs-right > li {
  3151. transform: rotate(90deg);
  3152. }
  3153. .sideways.tabs-left > li {
  3154. transform: rotate(-90deg);
  3155. }
  3156. /* ********* /verticle tabs **************************** */
  3157. /* ********* moris **************************** */
  3158. .morris-hover {
  3159. position: absolute;
  3160. z-index: 1000;
  3161. }
  3162. .morris-hover.morris-default-style {
  3163. padding: 6px;
  3164. color: #666;
  3165. background: rgba(243, 242, 243, 0.8);
  3166. border: solid 2px rgba(195, 194, 196, 0.8);
  3167. font-family: sans-serif;
  3168. font-size: 12px;
  3169. text-align: center;
  3170. }
  3171. .morris-hover.morris-default-style .morris-hover-row-label {
  3172. font-weight: bold;
  3173. margin: 0.25em 0;
  3174. }
  3175. .morris-hover.morris-default-style .morris-hover-point {
  3176. white-space: nowrap;
  3177. margin: 0.1em 0;
  3178. }
  3179. /* ********* /moris **************************** */
  3180. /* ********* ecommerce **************************** */
  3181. .price {
  3182. font-size: 40px;
  3183. font-weight: 400;
  3184. color: #26B99A;
  3185. margin: 0;
  3186. }
  3187. .prod_title {
  3188. border-bottom: 1px solid #DFDFDF;
  3189. padding-bottom: 5px;
  3190. margin: 30px 0;
  3191. font-size: 20px;
  3192. font-weight: 400;
  3193. }
  3194. .product-image img {
  3195. width: 90%;
  3196. }
  3197. .prod_color li p {
  3198. margin-bottom: 0;
  3199. }
  3200. .prod_size li {
  3201. padding: 0;
  3202. }
  3203. .prod_color .color {
  3204. width: 25px;
  3205. height: 25px;
  3206. border: 2px solid rgba(51, 51, 51, 0.28) !important;
  3207. padding: 2px;
  3208. border-radius: 50px;
  3209. }
  3210. .product_gallery a {
  3211. width: 100px;
  3212. height: 100px;
  3213. float: left;
  3214. margin: 10px;
  3215. border: 1px solid #e5e5e5;
  3216. }
  3217. .product_gallery a img {
  3218. width: 100%;
  3219. margin-top: 15px;
  3220. }
  3221. .product_price {
  3222. margin: 20px 0;
  3223. padding: 5px 10px;
  3224. background-color: #FFFFFF;
  3225. text-align: left;
  3226. border: 2px dashed #E0E0E0;
  3227. }
  3228. .price-tax {
  3229. font-size: 18px;
  3230. }
  3231. .product_social {
  3232. margin: 20px 0;
  3233. }
  3234. .product_social ul li a i {
  3235. font-size: 35px;
  3236. }
  3237. /* ********* /ecommerce **************************** */
  3238. /** login **/
  3239. .login {
  3240. background: #F7F7F7;
  3241. }
  3242. .login .fa-paw {
  3243. font-size: 26px;
  3244. }
  3245. a.hiddenanchor {
  3246. display: none;
  3247. }
  3248. .login_wrapper {
  3249. right: 0px;
  3250. margin: 0px auto;
  3251. margin-top: 5%;
  3252. max-width: 350px;
  3253. position: relative;
  3254. }
  3255. .registration_form, .login_form {
  3256. position: absolute;
  3257. top: 0px;
  3258. width: 100%;
  3259. }
  3260. .registration_form {
  3261. z-index: 21;
  3262. opacity: 0;
  3263. width: 100%;
  3264. }
  3265. .login_form {
  3266. z-index: 22;
  3267. }
  3268. #signup:target ~ .login_wrapper .registration_form, #signin:target ~ .login_wrapper .login_form {
  3269. z-index: 22;
  3270. animation-name: fadeInLeft;
  3271. animation-delay: .1s;
  3272. }
  3273. #signup:target ~ .login_wrapper .login_form, #signin:target ~ .login_wrapper .registration_form {
  3274. animation-name: fadeOutLeft;
  3275. pointer-events: none;
  3276. }
  3277. .animate {
  3278. -webkit-animation-duration: 0.5s;
  3279. -webkit-animation-timing-function: ease;
  3280. -webkit-animation-fill-mode: both;
  3281. -moz-animation-duration: 0.5s;
  3282. -moz-animation-timing-function: ease;
  3283. -moz-animation-fill-mode: both;
  3284. -o-animation-duration: 0.5s;
  3285. -o-animation-timing-function: ease;
  3286. -o-animation-fill-mode: both;
  3287. -ms-animation-duration: 0.5s;
  3288. -ms-animation-timing-function: ease;
  3289. -ms-animation-fill-mode: both;
  3290. animation-duration: 0.5s;
  3291. animation-timing-function: ease;
  3292. animation-fill-mode: both;
  3293. }
  3294. /** /login **/
  3295. /** signup **/
  3296. .login_box {
  3297. padding: 20px;
  3298. margin: auto;
  3299. }
  3300. .left {
  3301. float: left;
  3302. }
  3303. .calendar.left {
  3304. float: initial !important;
  3305. }
  3306. .alignleft {
  3307. float: left;
  3308. margin-right: 15px;
  3309. }
  3310. .alignright {
  3311. float: right;
  3312. margin-left: 15px;
  3313. }
  3314. .clearfix:after, form:after {
  3315. content: ".";
  3316. display: block;
  3317. height: 0;
  3318. clear: both;
  3319. visibility: hidden;
  3320. }
  3321. .login_content {
  3322. margin: 0 auto;
  3323. padding: 25px 0 0;
  3324. position: relative;
  3325. text-align: center;
  3326. text-shadow: 0 1px 0 #fff;
  3327. min-width: 280px;
  3328. }
  3329. .login_content a,
  3330. .login_content .btn-default:hover {
  3331. text-decoration: none;
  3332. }
  3333. .login_content a:hover {
  3334. text-decoration: underline;
  3335. }
  3336. .login_content h1 {
  3337. font: normal 25px Helvetica, Arial, sans-serif;
  3338. letter-spacing: -0.05em;
  3339. line-height: 20px;
  3340. margin: 10px 0 30px;
  3341. }
  3342. .login_content h1:before, .login_content h1:after {
  3343. content: "";
  3344. height: 1px;
  3345. position: absolute;
  3346. top: 10px;
  3347. width: 27%;
  3348. }
  3349. .login_content h1:after {
  3350. background: #7e7e7e;
  3351. background: linear-gradient(to right, #7e7e7e 0%, white 100%);
  3352. right: 0;
  3353. }
  3354. .login_content h1:before {
  3355. background: #7e7e7e;
  3356. background: linear-gradient(to left, #7e7e7e 0%, white 100%);
  3357. left: 0;
  3358. }
  3359. .login_content h1:before, .login_content h1:after {
  3360. content: "";
  3361. height: 1px;
  3362. position: absolute;
  3363. top: 10px;
  3364. width: 20%;
  3365. }
  3366. .login_content h1:after {
  3367. background: #7e7e7e;
  3368. background: linear-gradient(to right, #7e7e7e 0%, white 100%);
  3369. right: 0;
  3370. }
  3371. .login_content h1:before {
  3372. background: #7e7e7e;
  3373. background: linear-gradient(to left, #7e7e7e 0%, white 100%);
  3374. left: 0;
  3375. }
  3376. .login_content form {
  3377. margin: 20px 0;
  3378. position: relative;
  3379. }
  3380. .login_content form input[type="text"], .login_content form input[type="email"], .login_content form input[type="password"] {
  3381. border-radius: 3px;
  3382. -ms-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, 0.08) inset;
  3383. -o-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, 0.08) inset;
  3384. box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, 0.08) inset;
  3385. border: 1px solid #c8c8c8;
  3386. color: #777;
  3387. margin: 0 0 20px;
  3388. width: 100%;
  3389. }
  3390. .login_content form input[type="text"]:focus, .login_content form input[type="email"]:focus, .login_content form input[type="password"]:focus {
  3391. -ms-box-shadow: 0 0 2px #ed1c24 inset;
  3392. -o-box-shadow: 0 0 2px #ed1c24 inset;
  3393. box-shadow: 0 0 2px #A97AAD inset;
  3394. background-color: #fff;
  3395. border: 1px solid #A878AF;
  3396. outline: none;
  3397. }
  3398. #username {
  3399. background-position: 10px 10px !important;
  3400. }
  3401. #password {
  3402. background-position: 10px -53px !important;
  3403. }
  3404. .login_content form div a {
  3405. font-size: 12px;
  3406. margin: 10px 15px 0 0;
  3407. margin-right: 0px;
  3408. }
  3409. .reset_pass {
  3410. margin-top: 10px !important;
  3411. }
  3412. .separator {
  3413. border-top: 1px solid #D8D8D8;
  3414. margin-top: 10px;
  3415. padding-top: 10px;
  3416. }
  3417. .button {
  3418. background: #f7f9fa;
  3419. background: linear-gradient(to bottom, #f7f9fa 0%, #f0f0f0 100%);
  3420. filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f9fa', endColorstr='#f0f0f0', GradientType=0)";
  3421. -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  3422. -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  3423. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  3424. border-radius: 0 0 5px 5px;
  3425. border-top: 1px solid #CFD5D9;
  3426. padding: 15px 0;
  3427. }
  3428. .login_content form input[type="submit"], #content form .submit {
  3429. float: left;
  3430. margin-left: 38px;
  3431. }
  3432. .button a {
  3433. background: url(http://cssdeck.com/uploads/media/items/8/8bcLQqF.png) 0 -112px no-repeat;
  3434. color: #7E7E7E;
  3435. font-size: 17px;
  3436. padding: 2px 0 2px 40px;
  3437. text-decoration: none;
  3438. transition: all 0.3s ease;
  3439. }
  3440. .button a:hover {
  3441. background-position: 0 -135px;
  3442. color: #00aeef;
  3443. }
  3444. header {
  3445. width: 100%;
  3446. }
  3447. /** signup **/
  3448. /** NProgress **/
  3449. #nprogress .bar {
  3450. background: #1ABB9C;
  3451. }
  3452. #nprogress .peg {
  3453. box-shadow: 0 0 10px #1ABB9C, 0 0 5px #1ABB9C;
  3454. }
  3455. #nprogress .spinner-icon {
  3456. border-top-color: #1ABB9C;
  3457. border-left-color: #1ABB9C;
  3458. }
  3459. /** /NProgress **/
  3460. /** bootstrap-wysiwyg **/
  3461. .editor-wrapper {
  3462. min-height: 250px;
  3463. background-color: white;
  3464. border-collapse: separate;
  3465. border: 1px solid #cccccc;
  3466. padding: 4px;
  3467. box-sizing: content-box;
  3468. box-shadow: rgba(0, 0, 0, 0.07451) 0px 1px 1px 0px inset;
  3469. border-top-right-radius: 3px;
  3470. border-bottom-right-radius: 3px;
  3471. border-bottom-left-radius: 3px;
  3472. border-top-left-radius: 3px;
  3473. overflow: scroll;
  3474. outline: none;
  3475. }
  3476. .voiceBtn {
  3477. width: 20px;
  3478. color: transparent;
  3479. background-color: transparent;
  3480. transform: scale(2, 2);
  3481. -webkit-transform: scale(2, 2);
  3482. -moz-transform: scale(2, 2);
  3483. border: transparent;
  3484. cursor: pointer;
  3485. box-shadow: none;
  3486. -webkit-box-shadow: none;
  3487. }
  3488. div[data-role="editor-toolbar"] {
  3489. -webkit-user-select: none;
  3490. -moz-user-select: none;
  3491. -ms-user-select: none;
  3492. user-select: none;
  3493. }
  3494. .dropdown-menu a {
  3495. cursor: pointer;
  3496. }
  3497. /** /bootstrap-wysiwyg **/
  3498. /** Select2 **/
  3499. .select2-container--default .select2-selection--single,
  3500. .select2-container--default .select2-selection--multiple {
  3501. background-color: #fff;
  3502. border: 1px solid #ccc;
  3503. border-radius: 0;
  3504. min-height: 38px;
  3505. }
  3506. .select2-container--default .select2-selection--single .select2-selection__rendered {
  3507. color: #73879C;
  3508. padding-top: 5px;
  3509. }
  3510. .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  3511. padding-top: 3px;
  3512. }
  3513. .select2-container--default .select2-selection--single .select2-selection__arrow {
  3514. height: 36px;
  3515. }
  3516. .select2-container--default .select2-selection--multiple .select2-selection__choice,
  3517. .select2-container--default .select2-selection--multiple .select2-selection__clear {
  3518. margin-top: 2px;
  3519. border: none;
  3520. border-radius: 0;
  3521. padding: 3px 5px;
  3522. }
  3523. .select2-container--default.select2-container--focus .select2-selection--multiple {
  3524. border: 1px solid #ccc;
  3525. }
  3526. /** /Select2 **/
  3527. /** Switchery **/
  3528. .switchery {
  3529. width: 32px;
  3530. height: 20px;
  3531. }
  3532. .switchery > small {
  3533. width: 20px;
  3534. height: 20px;
  3535. }
  3536. /** /Switchery **/
  3537. /** Normalize.css **/
  3538. fieldset {
  3539. border: none;
  3540. margin: 0;
  3541. padding: 0;
  3542. }
  3543. /** /Normalize.css **/
  3544. /** Cropper **/
  3545. .cropper .img-container,
  3546. .cropper .img-preview {
  3547. background-color: #f7f7f7;
  3548. width: 100%;
  3549. text-align: center;
  3550. }
  3551. .cropper .img-container {
  3552. min-height: 200px;
  3553. max-height: 516px;
  3554. margin-bottom: 20px;
  3555. }
  3556. @media (min-width: 768px) {
  3557. .cropper .img-container {
  3558. min-height: 516px;
  3559. }
  3560. }
  3561. .cropper .img-container > img {
  3562. max-width: 100%;
  3563. }
  3564. .cropper .docs-preview {
  3565. margin-right: -15px;
  3566. }
  3567. .cropper .img-preview {
  3568. float: left;
  3569. margin-right: 10px;
  3570. margin-bottom: 10px;
  3571. overflow: hidden;
  3572. }
  3573. .cropper .img-preview > img {
  3574. max-width: 100%;
  3575. }
  3576. .cropper .preview-lg {
  3577. width: 263px;
  3578. height: 148px;
  3579. }
  3580. .cropper .preview-md {
  3581. width: 139px;
  3582. height: 78px;
  3583. }
  3584. .cropper .preview-sm {
  3585. width: 69px;
  3586. height: 39px;
  3587. }
  3588. .cropper .preview-xs {
  3589. width: 35px;
  3590. height: 20px;
  3591. margin-right: 0;
  3592. }
  3593. .cropper .docs-data > .input-group {
  3594. margin-bottom: 10px;
  3595. }
  3596. .cropper .docs-data > .input-group > label {
  3597. min-width: 80px;
  3598. }
  3599. .cropper .docs-data > .input-group > span {
  3600. min-width: 50px;
  3601. }
  3602. .cropper .docs-buttons > .btn,
  3603. .cropper .docs-buttons > .btn-group,
  3604. .cropper .docs-buttons > .form-control {
  3605. margin-right: 5px;
  3606. margin-bottom: 10px;
  3607. }
  3608. .cropper .docs-toggles > .btn,
  3609. .cropper .docs-toggles > .btn-group,
  3610. .cropper .docs-toggles > .dropdown {
  3611. margin-bottom: 10px;
  3612. }
  3613. .cropper .docs-tooltip {
  3614. display: block;
  3615. margin: -6px -12px;
  3616. padding: 6px 12px;
  3617. }
  3618. .cropper .docs-tooltip > .icon {
  3619. margin: 0 -3px;
  3620. vertical-align: top;
  3621. }
  3622. .cropper .tooltip-inner {
  3623. white-space: normal;
  3624. }
  3625. .cropper .btn-upload .tooltip-inner,
  3626. .cropper .btn-toggle .tooltip-inner {
  3627. white-space: nowrap;
  3628. }
  3629. .cropper .btn-toggle {
  3630. padding: 6px;
  3631. }
  3632. .cropper .btn-toggle > .docs-tooltip {
  3633. margin: -6px;
  3634. padding: 6px;
  3635. }
  3636. @media (max-width: 400px) {
  3637. .cropper .btn-group-crop {
  3638. margin-right: -15px !important;
  3639. }
  3640. .cropper .btn-group-crop > .btn {
  3641. padding-left: 5px;
  3642. padding-right: 5px;
  3643. }
  3644. .cropper .btn-group-crop .docs-tooltip {
  3645. margin-left: -5px;
  3646. margin-right: -5px;
  3647. padding-left: 5px;
  3648. padding-right: 5px;
  3649. }
  3650. }
  3651. .cropper .docs-options .dropdown-menu {
  3652. width: 100%;
  3653. }
  3654. .cropper .docs-options .dropdown-menu > li {
  3655. padding: 3px 20px;
  3656. }
  3657. .cropper .docs-options .dropdown-menu > li:hover {
  3658. background-color: #f7f7f7;
  3659. }
  3660. .cropper .docs-options .dropdown-menu > li > label {
  3661. display: block;
  3662. }
  3663. .cropper .docs-cropped .modal-body {
  3664. text-align: center;
  3665. }
  3666. .cropper .docs-cropped .modal-body > img,
  3667. .cropper .docs-cropped .modal-body > canvas {
  3668. max-width: 100%;
  3669. }
  3670. .cropper .docs-diagram .modal-dialog {
  3671. max-width: 352px;
  3672. }
  3673. .cropper .docs-cropped canvas {
  3674. max-width: 100%;
  3675. }
  3676. /** /Cropper **/
  3677. /** jQuery Smart Wizard **/
  3678. .form_wizard .stepContainer {
  3679. display: block;
  3680. position: relative;
  3681. margin: 0;
  3682. padding: 0;
  3683. border: 0 solid #CCC;
  3684. overflow-x: hidden;
  3685. }
  3686. .wizard_horizontal ul.wizard_steps {
  3687. display: table;
  3688. list-style: none;
  3689. position: relative;
  3690. width: 100%;
  3691. margin: 0 0 20px;
  3692. }
  3693. .wizard_horizontal ul.wizard_steps li {
  3694. display: table-cell;
  3695. text-align: center;
  3696. }
  3697. .wizard_horizontal ul.wizard_steps li a, .wizard_horizontal ul.wizard_steps li:hover {
  3698. display: block;
  3699. position: relative;
  3700. -moz-opacity: 1;
  3701. filter: alpha(opacity=100);
  3702. opacity: 1;
  3703. color: #666;
  3704. }
  3705. .wizard_horizontal ul.wizard_steps li a:before {
  3706. content: "";
  3707. position: absolute;
  3708. height: 4px;
  3709. background: #ccc;
  3710. top: 20px;
  3711. width: 100%;
  3712. z-index: 4;
  3713. left: 0;
  3714. }
  3715. .wizard_horizontal ul.wizard_steps li a.disabled .step_no {
  3716. background: #ccc;
  3717. }
  3718. .wizard_horizontal ul.wizard_steps li a .step_no {
  3719. width: 40px;
  3720. height: 40px;
  3721. line-height: 40px;
  3722. border-radius: 100px;
  3723. display: block;
  3724. margin: 0 auto 5px;
  3725. font-size: 16px;
  3726. text-align: center;
  3727. position: relative;
  3728. z-index: 5;
  3729. }
  3730. .wizard_horizontal ul.wizard_steps li a.selected:before, .step_no {
  3731. background: #34495E;
  3732. color: #fff;
  3733. }
  3734. .wizard_horizontal ul.wizard_steps li a.done:before, .wizard_horizontal ul.wizard_steps li a.done .step_no {
  3735. background: #1ABB9C;
  3736. color: #fff;
  3737. }
  3738. .wizard_horizontal ul.wizard_steps li:first-child a:before {
  3739. left: 50%;
  3740. }
  3741. .wizard_horizontal ul.wizard_steps li:last-child a:before {
  3742. right: 50%;
  3743. width: 50%;
  3744. left: auto;
  3745. }
  3746. .wizard_verticle .stepContainer {
  3747. width: 80%;
  3748. float: left;
  3749. padding: 0 10px;
  3750. }
  3751. .actionBar {
  3752. width: 100%;
  3753. border-top: 1px solid #ddd;
  3754. padding: 10px 5px;
  3755. text-align: right;
  3756. margin-top: 10px;
  3757. }
  3758. .actionBar .buttonDisabled {
  3759. cursor: not-allowed;
  3760. pointer-events: none;
  3761. opacity: .65;
  3762. filter: alpha(opacity=65);
  3763. box-shadow: none;
  3764. }
  3765. .actionBar a {
  3766. margin: 0 3px;
  3767. }
  3768. .wizard_verticle .wizard_content {
  3769. width: 80%;
  3770. float: left;
  3771. padding-left: 20px;
  3772. }
  3773. .wizard_verticle ul.wizard_steps {
  3774. display: table;
  3775. list-style: none;
  3776. position: relative;
  3777. width: 20%;
  3778. float: left;
  3779. margin: 0 0 20px;
  3780. }
  3781. .wizard_verticle ul.wizard_steps li {
  3782. display: list-item;
  3783. text-align: center;
  3784. }
  3785. .wizard_verticle ul.wizard_steps li a {
  3786. height: 80px;
  3787. }
  3788. .wizard_verticle ul.wizard_steps li a:first-child {
  3789. margin-top: 20px;
  3790. }
  3791. .wizard_verticle ul.wizard_steps li a, .wizard_verticle ul.wizard_steps li:hover {
  3792. display: block;
  3793. position: relative;
  3794. -moz-opacity: 1;
  3795. filter: alpha(opacity=100);
  3796. opacity: 1;
  3797. color: #666;
  3798. }
  3799. .wizard_verticle ul.wizard_steps li a:before {
  3800. content: "";
  3801. position: absolute;
  3802. height: 100%;
  3803. background: #ccc;
  3804. top: 20px;
  3805. width: 4px;
  3806. z-index: 4;
  3807. left: 49%;
  3808. }
  3809. .wizard_verticle ul.wizard_steps li a.disabled .step_no {
  3810. background: #ccc;
  3811. }
  3812. .wizard_verticle ul.wizard_steps li a .step_no {
  3813. width: 40px;
  3814. height: 40px;
  3815. line-height: 40px;
  3816. border-radius: 100px;
  3817. display: block;
  3818. margin: 0 auto 5px;
  3819. font-size: 16px;
  3820. text-align: center;
  3821. position: relative;
  3822. z-index: 5;
  3823. }
  3824. .wizard_verticle ul.wizard_steps li a.selected:before, .step_no {
  3825. background: #34495E;
  3826. color: #fff;
  3827. }
  3828. .wizard_verticle ul.wizard_steps li a.done:before, .wizard_verticle ul.wizard_steps li a.done .step_no {
  3829. background: #1ABB9C;
  3830. color: #fff;
  3831. }
  3832. .wizard_verticle ul.wizard_steps li:first-child a:before {
  3833. left: 49%;
  3834. }
  3835. .wizard_verticle ul.wizard_steps li:last-child a:before {
  3836. left: 49%;
  3837. left: auto;
  3838. width: 0;
  3839. }
  3840. .form_wizard .loader {
  3841. display: none;
  3842. }
  3843. .form_wizard .msgBox {
  3844. display: none;
  3845. }
  3846. /** jQuery Smart Wizard **/
  3847. /** bootstrap-progressbar **/
  3848. .progress {
  3849. border-radius: 0;
  3850. }
  3851. .progress-bar-info {
  3852. background-color: #3498DB;
  3853. }
  3854. .progress-bar-success {
  3855. background-color: #26B99A;
  3856. }
  3857. .progress_summary .progress {
  3858. margin: 5px 0 12px !important;
  3859. }
  3860. .progress_summary .row {
  3861. margin-bottom: 5px;
  3862. }
  3863. .progress_summary .row .col-xs-2 {
  3864. padding: 0;
  3865. }
  3866. .progress_summary .more_info span {
  3867. text-align: right;
  3868. float: right;
  3869. }
  3870. .progress_summary .data span {
  3871. text-align: right;
  3872. float: right;
  3873. }
  3874. .progress_summary p {
  3875. margin-bottom: 3px;
  3876. width: 100%;
  3877. }
  3878. .progress_title .left {
  3879. float: left;
  3880. text-align: left;
  3881. }
  3882. .progress_title .right {
  3883. float: right;
  3884. text-align: right;
  3885. font-weight: 300;
  3886. }
  3887. .progress.progress_sm {
  3888. border-radius: 0;
  3889. margin-bottom: 18px;
  3890. height: 10px !important;
  3891. }
  3892. .progress.progress_sm .progress-bar {
  3893. height: 10px !important;
  3894. }
  3895. .dashboard_graph p {
  3896. margin: 0 0 4px;
  3897. }
  3898. ul.verticle_bars {
  3899. width: 100%;
  3900. }
  3901. ul.verticle_bars li {
  3902. width: 23%;
  3903. height: 200px;
  3904. margin: 0;
  3905. }
  3906. .progress.vertical.progress_wide {
  3907. width: 35px;
  3908. }
  3909. /** bootstrap-progressbar **/
  3910. /** PNotify **/
  3911. .alert-success {
  3912. color: #ffffff;
  3913. background-color: rgba(38, 185, 154, 0.88);
  3914. border-color: rgba(38, 185, 154, 0.88);
  3915. }
  3916. .alert-info {
  3917. color: #E9EDEF;
  3918. background-color: rgba(52, 152, 219, 0.88);
  3919. border-color: rgba(52, 152, 219, 0.88);
  3920. }
  3921. .alert-warning {
  3922. color: #E9EDEF;
  3923. background-color: rgba(243, 156, 18, 0.88);
  3924. border-color: rgba(243, 156, 18, 0.88);
  3925. }
  3926. .alert-danger,
  3927. .alert-error {
  3928. color: #E9EDEF;
  3929. background-color: rgba(231, 76, 60, 0.88);
  3930. border-color: rgba(231, 76, 60, 0.88);
  3931. }
  3932. .ui-pnotify.dark .ui-pnotify-container {
  3933. color: #E9EDEF;
  3934. background-color: rgba(52, 73, 94, 0.88);
  3935. border-color: rgba(52, 73, 94, 0.88);
  3936. }
  3937. .custom-notifications {
  3938. position: fixed;
  3939. margin: 15px;
  3940. right: 0;
  3941. float: right;
  3942. width: 400px;
  3943. z-index: 4000;
  3944. bottom: 0;
  3945. }
  3946. ul.notifications {
  3947. float: right;
  3948. display: block;
  3949. margin-bottom: 7px;
  3950. padding: 0;
  3951. width: 100%;
  3952. }
  3953. .notifications li {
  3954. float: right;
  3955. margin: 3px;
  3956. width: 36px;
  3957. box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  3958. }
  3959. .notifications li:last-child {
  3960. margin-left: 0;
  3961. }
  3962. .notifications a {
  3963. display: block;
  3964. text-align: center;
  3965. text-decoration: none;
  3966. text-transform: uppercase;
  3967. padding: 9px 8px;
  3968. }
  3969. .tabbed_notifications .text {
  3970. padding: 5px 15px;
  3971. height: 140px;
  3972. border-radius: 7px;
  3973. box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
  3974. }
  3975. .tabbed_notifications div p {
  3976. display: inline-block;
  3977. }
  3978. .tabbed_notifications h2 {
  3979. font-weight: bold;
  3980. text-transform: uppercase;
  3981. width: 80%;
  3982. float: left;
  3983. height: 20px;
  3984. text-overflow: ellipsis;
  3985. overflow: hidden;
  3986. display: block;
  3987. }
  3988. .tabbed_notifications .close {
  3989. padding: 5px;
  3990. color: #E9EDEF;
  3991. float: right;
  3992. opacity: 1;
  3993. }
  3994. /** /PNotify **/
  3995. /** FullCalendar **/
  3996. .fc-state-default {
  3997. background: #f5f5f5;
  3998. color: #73879C;
  3999. }
  4000. .fc-state-down,
  4001. .fc-state-active {
  4002. color: #333;
  4003. background: #ccc;
  4004. }
  4005. /** /FullCalendar **/
  4006. /** Dropzone.js **/
  4007. .dropzone {
  4008. min-height: 300px;
  4009. border: 1px solid #e5e5e5;
  4010. }
  4011. .fc-view-container .fc-content {
  4012. color: #fff;
  4013. }
  4014. /** /Dropzone.js **/
  4015. @media (max-width: 767px) {
  4016. .x_panel .dropdown-menu {
  4017. left: initial;
  4018. right: 0;
  4019. }
  4020. }
  4021. @media (max-width:510px) {
  4022. .dataTables_filter {
  4023. float:none;
  4024. }
  4025. div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
  4026. text-align: left;
  4027. }
  4028. }
  4029. /* Experiment for responsive tables - from https://codepen.io/AllThingsSmitty/pen/MyqmdM */
  4030. @media screen and (max-width: 700px) {
  4031. table.responsive-experimental {
  4032. border: 0;
  4033. }
  4034. table.responsive-experimental caption {
  4035. font-size: 1.3em;
  4036. }
  4037. table.responsive-experimental thead {
  4038. border: none;
  4039. clip: rect(0 0 0 0);
  4040. height: 1px;
  4041. margin: -1px;
  4042. overflow: hidden;
  4043. padding: 0;
  4044. position: absolute;
  4045. width: 1px;
  4046. }
  4047. table.responsive-experimental tr {
  4048. border-bottom: 3px solid #ddd;
  4049. display: block;
  4050. margin-bottom: .625em;
  4051. }
  4052. table.responsive-experimental td {
  4053. border-bottom: 1px solid #ddd;
  4054. display: block;
  4055. font-size: .8em;
  4056. text-align: right;
  4057. clear:both;
  4058. }
  4059. table.responsive-experimental td::before {
  4060. /*
  4061. * aria-label has no advantage, it won't be read inside a table
  4062. content: attr(aria-label);
  4063. */
  4064. content: attr(data-label);
  4065. float: left;
  4066. font-weight: bold;
  4067. font-size:13px;
  4068. width: 30%;
  4069. text-align: left;
  4070. }
  4071. table.responsive-experimental td:last-child {
  4072. border-bottom: 0;
  4073. }
  4074. table.responsive-experimental ul {
  4075. float:right;
  4076. }
  4077. table.responsive-experimental .td-wrapper {
  4078. width:70%;
  4079. float:right;
  4080. }
  4081. }