custom.css 82 KB

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