custom.css 95 KB

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