styles.min.css 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. /* Syntax Quick Reference
  2. --------------------------
  3. column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  4. span($ratio: 1, $offset: 0)
  5. shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  6. unshift()
  7. edit()
  8. center($max_width: 1410px, $pad: 0)
  9. stack($pad: 0, $align: false)
  10. unstack()
  11. align($direction: both)
  12. cf()
  13. */
  14. /**
  15. * Grid settings.
  16. * All values are defaults and can therefore be easily overidden.
  17. */
  18. /**
  19. * List functions courtesy of the wonderful folks at Team Sass.
  20. * Check out their awesome grid: Singularity.
  21. */
  22. /**
  23. * Get percentage from a given ratio.
  24. * @param {number} [$ratio=1] - The column ratio of the element.
  25. * @returns {number} - The percentage value.
  26. */
  27. /**
  28. * Work out the column widths based on the ratio and gutter sizes.
  29. * @param {number} [$ratios=1] - The column ratio of the element.
  30. * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
  31. * @returns {list} $width $gutter - A list containing the with and gutter for the element.
  32. */
  33. /**
  34. * Get the set layout direction for the project.
  35. * @returns {string} $direction - The layout direction.
  36. */
  37. /**
  38. * Replace a specified list value with a new value (uses built in set-nth() if available)
  39. * @param {list} $list - The list of values you want to alter.
  40. * @param {number} $index - The index of the list item you want to replace.
  41. * @param {*} $value - The value you want to replace $index with.
  42. * @returns {list} $list - The list with the value replaced or removed.
  43. * @warn if an invalid index is supplied.
  44. */
  45. /**
  46. * Reverse a list (progressively enhanced for Sass 3.3)
  47. * @param {list} $list - The list of values you want to reverse.
  48. * @returns {list} $result - The reversed list.
  49. */
  50. /**
  51. * Get the opposite direction to a given value.
  52. * @param {string} $dir - The direction you want the opposite of.
  53. * @returns {string} - The opposite direction to $dir.
  54. * @warn if an incorrect string is provided.
  55. */
  56. /**
  57. * Style an element as a column with a gutter.
  58. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  59. * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
  60. * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
  61. * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
  62. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  63. */
  64. /**
  65. * An alias for the column mixin.
  66. * @param [$args...] - All arguments get passed through to column().
  67. */
  68. /**
  69. * Get the width of a column and nothing else.
  70. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  71. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  72. */
  73. /**
  74. * Get the gutter size of a column and nothing else.
  75. * @param {number} [ratios=1] - A width relative to its container as a fraction.
  76. * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
  77. */
  78. /**
  79. * An alias for the column-width function.
  80. * @param [$args...] - All arguments get passed through to column().
  81. */
  82. /**
  83. * An alias for the column-gutter function.
  84. * @param [$args...] - All arguments get passed through to column().
  85. */
  86. /**
  87. * Style an element as a column without any gutters for a seamless row.
  88. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  89. * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
  90. * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
  91. * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
  92. */
  93. /**
  94. * Reorder columns without altering the HTML.
  95. * @param {number} [$ratios=0] - Specify how far along you want the element to move.
  96. * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
  97. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  98. */
  99. /**
  100. * Reset an element that has had shift() applied to it.
  101. */
  102. /**
  103. * View the grid and its layers for easy debugging.
  104. * @param {string} [$color=black] - The background tint applied.
  105. * @param {boolean} [$important=false] - Whether to apply the style as !important.
  106. */
  107. /**
  108. * Alias for edit().
  109. */
  110. /**
  111. * Horizontally center an element.
  112. * @param {number} [$max-width=1410px] - The max width the element can be.
  113. * @param {number} [$pad=0] - Specify the element's left and right padding.
  114. */
  115. /**
  116. * Uncenter an element.
  117. */
  118. /**
  119. * Stack an element so that nothing is either side of it.
  120. * @param {number} [$pad=0] - Specify the element's left and right padding.
  121. * @param {boolean/string} [$align=false] - Specify the text align for the element.
  122. */
  123. /**
  124. * Unstack an element.
  125. */
  126. /**
  127. * Center an element on either or both axes.
  128. * @requires A parent container with relative positioning.
  129. * @param {string} [$direction=both] - Specify which axes to center the element on.
  130. */
  131. /**
  132. * Apply a clearfix to an element.
  133. */
  134. /* ==========================================================================
  135. Normalize.scss settings
  136. ========================================================================== */
  137. /**
  138. * Includes legacy browser support IE6/7
  139. *
  140. * Set to false if you want to drop support for IE6 and IE7
  141. */
  142. /* ==========================================================================
  143. Define Exo 2 font family
  144. ========================================================================== */
  145. /* exo-2-100 - latin */
  146. @font-face {
  147. font-family: 'Exo 2';
  148. font-style: normal;
  149. font-weight: 100;
  150. src: local('Exo 2 Thin'), local('Exo2-Thin'),
  151. url('../webfonts/exo-2-v5-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  152. url('../webfonts/exo-2-v5-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  153. }
  154. /* exo-2-100italic - latin */
  155. @font-face {
  156. font-family: 'Exo 2';
  157. font-style: italic;
  158. font-weight: 100;
  159. src: local('Exo 2 Thin Italic'), local('Exo2-ThinItalic'),
  160. url('../webfonts/exo-2-v5-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  161. url('../webfonts/exo-2-v5-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  162. }
  163. /* exo-2-200 - latin */
  164. @font-face {
  165. font-family: 'Exo 2';
  166. font-style: normal;
  167. font-weight: 200;
  168. src: local('Exo 2 Extra Light'), local('Exo2-ExtraLight'),
  169. url('../webfonts/exo-2-v5-latin-200.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  170. url('../webfonts/exo-2-v5-latin-200.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  171. }
  172. /* exo-2-200italic - latin */
  173. @font-face {
  174. font-family: 'Exo 2';
  175. font-style: italic;
  176. font-weight: 200;
  177. src: local('Exo 2 Extra Light Italic'), local('Exo2-ExtraLightItalic'),
  178. url('../webfonts/exo-2-v5-latin-200italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  179. url('../webfonts/exo-2-v5-latin-200italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  180. }
  181. /* exo-2-300 - latin */
  182. @font-face {
  183. font-family: 'Exo 2';
  184. font-style: normal;
  185. font-weight: 300;
  186. src: local('Exo 2 Light'), local('Exo2-Light'),
  187. url('../webfonts/exo-2-v5-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  188. url('../webfonts/exo-2-v5-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  189. }
  190. /* exo-2-300italic - latin */
  191. @font-face {
  192. font-family: 'Exo 2';
  193. font-style: italic;
  194. font-weight: 300;
  195. src: local('Exo 2 Light Italic'), local('Exo2-LightItalic'),
  196. url('../webfonts/exo-2-v5-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  197. url('../webfonts/exo-2-v5-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  198. }
  199. /* exo-2-regular - latin */
  200. @font-face {
  201. font-family: 'Exo 2';
  202. font-style: normal;
  203. font-weight: 400;
  204. src: local('Exo 2'), local('Exo2-Regular'),
  205. url('../webfonts/exo-2-v5-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  206. url('../webfonts/exo-2-v5-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  207. }
  208. /* exo-2-italic - latin */
  209. @font-face {
  210. font-family: 'Exo 2';
  211. font-style: italic;
  212. font-weight: 400;
  213. src: local('Exo 2 Italic'), local('Exo2-Italic'),
  214. url('../webfonts/exo-2-v5-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  215. url('../webfonts/exo-2-v5-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  216. }
  217. /* exo-2-500 - latin */
  218. @font-face {
  219. font-family: 'Exo 2';
  220. font-style: normal;
  221. font-weight: 500;
  222. src: local('Exo 2 Medium'), local('Exo2-Medium'),
  223. url('../webfonts/exo-2-v5-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  224. url('../webfonts/exo-2-v5-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  225. }
  226. /* exo-2-500italic - latin */
  227. @font-face {
  228. font-family: 'Exo 2';
  229. font-style: italic;
  230. font-weight: 500;
  231. src: local('Exo 2 Medium Italic'), local('Exo2-MediumItalic'),
  232. url('../webfonts/exo-2-v5-latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  233. url('../webfonts/exo-2-v5-latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  234. }
  235. /* exo-2-600 - latin */
  236. @font-face {
  237. font-family: 'Exo 2';
  238. font-style: normal;
  239. font-weight: 600;
  240. src: local('Exo 2 Semi Bold'), local('Exo2-SemiBold'),
  241. url('../webfonts/exo-2-v5-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  242. url('../webfonts/exo-2-v5-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  243. }
  244. /* exo-2-600italic - latin */
  245. @font-face {
  246. font-family: 'Exo 2';
  247. font-style: italic;
  248. font-weight: 600;
  249. src: local('Exo 2 Semi Bold Italic'), local('Exo2-SemiBoldItalic'),
  250. url('../webfonts/exo-2-v5-latin-600italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  251. url('../webfonts/exo-2-v5-latin-600italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  252. }
  253. /* exo-2-700 - latin */
  254. @font-face {
  255. font-family: 'Exo 2';
  256. font-style: normal;
  257. font-weight: 700;
  258. src: local('Exo 2 Bold'), local('Exo2-Bold'),
  259. url('../webfonts/exo-2-v5-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  260. url('../webfonts/exo-2-v5-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  261. }
  262. /* exo-2-700italic - latin */
  263. @font-face {
  264. font-family: 'Exo 2';
  265. font-style: italic;
  266. font-weight: 700;
  267. src: local('Exo 2 Bold Italic'), local('Exo2-BoldItalic'),
  268. url('../webfonts/exo-2-v5-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  269. url('../webfonts/exo-2-v5-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  270. }
  271. /* exo-2-800 - latin */
  272. @font-face {
  273. font-family: 'Exo 2';
  274. font-style: normal;
  275. font-weight: 800;
  276. src: local('Exo 2 Extra Bold'), local('Exo2-ExtraBold'),
  277. url('../webfonts/exo-2-v5-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  278. url('../webfonts/exo-2-v5-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  279. }
  280. /* exo-2-800italic - latin */
  281. @font-face {
  282. font-family: 'Exo 2';
  283. font-style: italic;
  284. font-weight: 800;
  285. src: local('Exo 2 Extra Bold Italic'), local('Exo2-ExtraBoldItalic'),
  286. url('../webfonts/exo-2-v5-latin-800italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  287. url('../webfonts/exo-2-v5-latin-800italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  288. }
  289. /* exo-2-900 - latin */
  290. @font-face {
  291. font-family: 'Exo 2';
  292. font-style: normal;
  293. font-weight: 900;
  294. src: local('Exo 2 Black'), local('Exo2-Black'),
  295. url('../webfonts/exo-2-v5-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  296. url('../webfonts/exo-2-v5-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  297. }
  298. /* exo-2-900italic - latin */
  299. @font-face {
  300. font-family: 'Exo 2';
  301. font-style: italic;
  302. font-weight: 900;
  303. src: local('Exo 2 Black Italic'), local('Exo2-BlackItalic'),
  304. url('../webfonts/exo-2-v5-latin-900italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  305. url('../webfonts/exo-2-v5-latin-900italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  306. }
  307. /* Base
  308. ========================================================================== */
  309. /**
  310. * 1. Set default font family to sans-serif.
  311. * 2. Prevent iOS text size adjust after orientation change, without disabling
  312. * user zoom.
  313. * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
  314. * `em` units.
  315. */
  316. html {
  317. font-family: sans-serif;
  318. /* 1 */
  319. -ms-text-size-adjust: 100%;
  320. /* 2 */
  321. -webkit-text-size-adjust: 100%;
  322. /* 2 */
  323. }
  324. /**
  325. * Remove default margin.
  326. */
  327. body {
  328. margin: 0;
  329. background-color: #fff;
  330. }
  331. /* HTML5 display definitions
  332. ========================================================================== */
  333. /**
  334. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  335. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  336. * and Firefox.
  337. * Correct `block` display not defined for `main` in IE 11.
  338. */
  339. article,
  340. aside,
  341. details,
  342. figcaption,
  343. figure,
  344. footer,
  345. header,
  346. hgroup,
  347. main,
  348. menu,
  349. nav,
  350. section,
  351. summary {
  352. display: block;
  353. }
  354. /**
  355. * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  356. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  357. */
  358. audio,
  359. canvas,
  360. progress,
  361. video {
  362. display: inline-block;
  363. /* 1 */
  364. vertical-align: baseline;
  365. /* 2 */
  366. }
  367. /**
  368. * Prevents modern browsers from displaying `audio` without controls.
  369. * Remove excess height in iOS 5 devices.
  370. */
  371. audio:not([controls]) {
  372. display: none;
  373. height: 0;
  374. }
  375. /**
  376. * Address `[hidden]` styling not present in IE 8/9/10.
  377. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  378. */
  379. [hidden],
  380. template {
  381. display: none;
  382. }
  383. .hidden {
  384. display: none;
  385. }
  386. /* Links
  387. ========================================================================== */
  388. /**
  389. * Remove the gray background color from active links in IE 10.
  390. */
  391. a {
  392. background-color: transparent;
  393. }
  394. /**
  395. * Improve readability when focused and also mouse hovered in all browsers.
  396. */
  397. a:active, a:hover {
  398. outline: 0;
  399. }
  400. /* Text-level semantics
  401. ========================================================================== */
  402. /**
  403. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  404. */
  405. abbr[title] {
  406. border-bottom: 1px dotted;
  407. }
  408. /**
  409. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  410. */
  411. b,
  412. strong {
  413. font-weight: 600;
  414. color: #5f5f5f;
  415. }
  416. /**
  417. * Address styling not present in Safari and Chrome.
  418. */
  419. dfn {
  420. font-style: italic;
  421. }
  422. /**
  423. * Address variable `h1` font-size and margin within `section` and `article`
  424. * contexts in Firefox 4+, Safari, and Chrome.
  425. */
  426. h1 {
  427. font-size: 2em;
  428. margin: 0.67em 0;
  429. }
  430. /**
  431. * Addresses styling not present in IE 8/9.
  432. */
  433. mark {
  434. background: #ff0;
  435. color: #000;
  436. }
  437. /**
  438. * Address inconsistent and variable font size in all browsers.
  439. */
  440. small {
  441. font-size: 80%;
  442. }
  443. /**
  444. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  445. */
  446. sub,
  447. sup {
  448. font-size: 75%;
  449. line-height: 0;
  450. position: relative;
  451. vertical-align: baseline;
  452. }
  453. sup {
  454. top: -0.5em;
  455. }
  456. sub {
  457. bottom: -0.25em;
  458. }
  459. /* Embedded content
  460. ========================================================================== */
  461. /**
  462. * 1. Remove border when inside `a` element in IE 8/9/10.
  463. * 2. Improves image quality when scaled in IE 7.
  464. */
  465. img {
  466. border: 0;
  467. }
  468. /**
  469. * Correct overflow not hidden in IE 9/10/11.
  470. */
  471. svg:not(:root) {
  472. overflow: hidden;
  473. }
  474. /* Grouping content
  475. ========================================================================== */
  476. /**
  477. * Address margin not present in IE 8/9 and Safari.
  478. */
  479. figure {
  480. margin: 1em 40px;
  481. }
  482. /**
  483. * Address differences between Firefox and other browsers.
  484. */
  485. hr {
  486. box-sizing: content-box;
  487. height: 0;
  488. }
  489. /**
  490. * Contain overflow in all browsers.
  491. */
  492. pre {
  493. overflow: auto;
  494. }
  495. /**
  496. * Address odd `em`-unit font size rendering in all browsers.
  497. * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  498. */
  499. code,
  500. kbd,
  501. pre,
  502. samp {
  503. font-family: monospace, monospace;
  504. font-size: 1em;
  505. }
  506. /* Forms
  507. ========================================================================== */
  508. /**
  509. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  510. * styling of `select`, unless a `border` property is set.
  511. */
  512. /**
  513. * 1. Correct color not being inherited.
  514. * Known issue: affects color of disabled elements.
  515. * 2. Correct font properties not being inherited.
  516. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  517. * 4. Improves appearance and consistency in all browsers.
  518. */
  519. button,
  520. input,
  521. optgroup,
  522. select,
  523. textarea {
  524. color: inherit;
  525. /* 1 */
  526. font: inherit;
  527. /* 2 */
  528. margin: 0;
  529. /* 3 */
  530. }
  531. /**
  532. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  533. */
  534. button {
  535. overflow: visible;
  536. }
  537. /**
  538. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  539. * All other form control elements do not inherit `text-transform` values.
  540. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  541. * Correct `select` style inheritance in Firefox.
  542. */
  543. button,
  544. select {
  545. text-transform: none;
  546. /*color: transparent !important;*/
  547. text-shadow: 0 0 0 #4b4b4b !important;
  548. }
  549. /**
  550. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  551. * and `video` controls.
  552. * 2. Correct inability to style clickable `input` types in iOS.
  553. * 3. Improve usability and consistency of cursor style between image-type
  554. * `input` and others.
  555. * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
  556. * Known issue: inner spacing remains in IE 6.
  557. */
  558. button,
  559. html input[type="button"],
  560. input[type="reset"],
  561. input[type="submit"] {
  562. -webkit-appearance: button;
  563. /* 2 */
  564. cursor: pointer;
  565. /* 3 */
  566. }
  567. /**
  568. * Re-set default cursor for disabled elements.
  569. */
  570. button[disabled],
  571. html input[disabled] {
  572. cursor: default;
  573. }
  574. /**
  575. * Remove inner padding and border in Firefox 4+.
  576. */
  577. button::-moz-focus-inner,
  578. input::-moz-focus-inner {
  579. border: 0;
  580. padding: 0;
  581. }
  582. /**
  583. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  584. * the UA stylesheet.
  585. */
  586. input {
  587. line-height: normal;
  588. }
  589. /**
  590. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  591. * 2. Remove excess padding in IE 8/9/10.
  592. * Known issue: excess padding remains in IE 6.
  593. */
  594. input[type="checkbox"],
  595. input[type="radio"] {
  596. box-sizing: border-box;
  597. /* 1 */
  598. padding: 0;
  599. /* 2 */
  600. }
  601. /**
  602. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  603. * `font-size` values of the `input`, it causes the cursor style of the
  604. * decrement button to change from `default` to `text`.
  605. */
  606. input[type="number"]::-webkit-inner-spin-button,
  607. input[type="number"]::-webkit-outer-spin-button {
  608. height: auto;
  609. }
  610. /**
  611. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  612. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  613. * (include `-moz` to future-proof).
  614. */
  615. input[type="search"] {
  616. -webkit-appearance: textfield;
  617. /* 1 */
  618. /* 2 */
  619. box-sizing: content-box;
  620. }
  621. /**
  622. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  623. * Safari (but not Chrome) clips the cancel button when the search input has
  624. * padding (and `textfield` appearance).
  625. */
  626. input[type="search"]::-webkit-search-cancel-button,
  627. input[type="search"]::-webkit-search-decoration {
  628. -webkit-appearance: none;
  629. }
  630. /**
  631. * Define consistent border, margin, and padding.
  632. */
  633. fieldset {
  634. border: 1px solid #c0c0c0;
  635. margin: 0 2px;
  636. padding: 0.35em 0.625em 0.75em;
  637. }
  638. /**
  639. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  640. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  641. * 3. Corrects text not wrapping in Firefox 3.
  642. * 4. Corrects alignment displayed oddly in IE 6/7.
  643. */
  644. legend {
  645. border: 0;
  646. /* 1 */
  647. padding: 0;
  648. /* 2 */
  649. }
  650. /**
  651. * Remove default vertical scrollbar in IE 8/9/10/11.
  652. */
  653. textarea {
  654. overflow: auto;
  655. }
  656. /**
  657. * Don't inherit the `font-weight` (applied by a rule above).
  658. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  659. */
  660. optgroup {
  661. font-weight: 600;
  662. }
  663. /* Tables
  664. ========================================================================== */
  665. /**
  666. * Remove most spacing between table cells.
  667. */
  668. table {
  669. border-collapse: collapse;
  670. border-spacing: 0;
  671. }
  672. td,
  673. th {
  674. padding: 0;
  675. }
  676. * {
  677. -webkit-tap-highlight-color: transparent;
  678. }
  679. body {
  680. /* -webkit-touch-callout: none;
  681. -webkit-text-size-adjust: none;
  682. -webkit-user-select: none; */
  683. }
  684. html,
  685. input,
  686. textarea,
  687. select,
  688. button {
  689. -webkit-font-smoothing: antialiased;
  690. -moz-osx-font-smoothing: grayscale;
  691. }
  692. html {
  693. height: 100%;
  694. }
  695. body {
  696. font-family: 'Exo 2', Arial;
  697. overflow-x: hidden;
  698. font-size: 14px;
  699. height: 100%;
  700. color: #929292;
  701. letter-spacing: -0.01em;
  702. }
  703. .body-login, .body-reset {
  704. height: auto;
  705. padding-top: 10%;
  706. background-color: #eee;
  707. }
  708. a {
  709. text-decoration: none;
  710. color: #929292;
  711. }
  712. .disabled {
  713. text-decoration: line-through;
  714. }
  715. .clearfix:before,
  716. .clearfix:after {
  717. content: '';
  718. display: table;
  719. }
  720. .clearfix:after {
  721. clear: both;
  722. }
  723. .text-right {
  724. text-align: right;
  725. }
  726. .text-center {
  727. text-align: center;
  728. }
  729. .text-small {
  730. font-size: 0.85em;
  731. }
  732. .check-label {
  733. display: inline-block;
  734. cursor: pointer;
  735. position: relative;
  736. line-height: 16px;
  737. padding-left: 26px;
  738. }
  739. .check-label:before {
  740. content: '';
  741. width: 16px;
  742. height: 16px;
  743. position: absolute;
  744. left: 0;
  745. top: 0;
  746. display: inline-block;
  747. background-image: url("/images/sprite.png?1446554103");
  748. background-size: 450px auto;
  749. background-repeat: no-repeat;
  750. background-position: -232px -9px;
  751. z-index: 99;
  752. }
  753. input[type="checkbox"] {
  754. display: none;
  755. }
  756. .clicked-on.check-label:before,
  757. .selected .check-label:before {
  758. content: '';
  759. display: inline-block;
  760. width: 27px;
  761. height: 27px;
  762. background-position: -225px -42px;
  763. left: -6px;
  764. top: -6px;
  765. }
  766. .l-center {
  767. margin: 0 auto;
  768. max-width: 998px;
  769. }
  770. .l-logo {
  771. background-image: url("/images/sprite.png?1446554103");
  772. background-position: -116px -4px;
  773. background-repeat: no-repeat;
  774. display: inline-block;
  775. float: left;
  776. height: 27px;
  777. margin-top: 2px;
  778. width: 73px;
  779. }
  780. .l-header {
  781. background-color: #336699;
  782. background: linear-gradient(to bottom, rgba(14,100,166,1) 0%,rgba(14,89,150,1) 50%,rgba(10,77,140,1) 51%,rgba(15,57,115,1) 99%,rgba(15,57,115,1) 99%,rgba(7,18,61,1) 100%);
  783. overflow: hidden;
  784. margin-bottom: 28px;
  785. position: fixed;
  786. width: 100%;
  787. z-index: 100;
  788. height: 34px;
  789. }
  790. .l-header a {
  791. font-size: 12px;
  792. }
  793. .l-menu__item--active {
  794. /*background-color: #fff;*/
  795. }
  796. .l-menu__item.l-menu__item--active a {
  797. color: #2b72b9;
  798. font-size: 12px;
  799. background-color: #fff;
  800. text-shadow: none;
  801. }
  802. .l-menu {
  803. float: left;
  804. position: fixed;
  805. margin-left: 70px;
  806. }
  807. .l-menu__item {
  808. float: left;
  809. font-weight: 600;
  810. }
  811. .l-menu__item a {
  812. color: #f7f7f7;
  813. position: relative;
  814. line-height: 34px;
  815. padding: 11px 18px;
  816. }
  817. .l-menu__item a:hover {
  818. background-color: #336699;
  819. background: linear-gradient(to bottom, rgba(19,135,223,1) 0%,rgba(19,122,207,1) 50%,rgba(14,108,196,1) 51%,rgba(21,82,167,1) 99%,rgba(21,82,167,1) 99%,rgba(13,33,111,1) 100%);
  820. color: #fff;
  821. text-shadow: 0px 1px rgba(0,0,0,0.35);
  822. transition: 0.3s;
  823. }
  824. .l-menu__item a:active {
  825. background-color: #336699;
  826. background: linear-gradient(to bottom, rgba(19,135,223,1) 0%,rgba(19,122,207,1) 50%,rgba(14,108,196,1) 51%,rgba(21,82,167,1) 99%,rgba(21,82,167,1) 99%,rgba(13,33,111,1) 100%);
  827. color: #fff;
  828. text-shadow: 0px -1px rgba(0,0,0,0.35);
  829. transition: 0.3s;
  830. }
  831. .l-menu.active .l-menu__item.focus a {
  832. text-decoration: underline;
  833. color: #5edad0;
  834. }
  835. .l-menu.active .l-menu__item.focus a:hover {
  836. background-color: #f79b44;
  837. color: #fff;
  838. }
  839. .lang-ua .l-menu__item a,
  840. .lang-nl .l-menu__item a,
  841. .lang-fr .l-menu__item a,
  842. .lang-ru .l-menu__item a {
  843. padding: 11px 18px;
  844. }
  845. .lang-el .l-menu__item a,
  846. .lang-tr .l-menu__item a {
  847. padding: 11px 15px;
  848. }
  849. .lang-ar .l-menu__item a {
  850. padding: 11px 11px;
  851. }
  852. .lang-ar .l-menu__item a {
  853. line-height: 35px;
  854. }
  855. .lang-de .l-menu__item a {
  856. padding: 11px 12px;
  857. }
  858. .lang-tw .l-menu__item a {
  859. padding: 13px 18px;
  860. }
  861. .l-profile {
  862. overflow: hidden;
  863. float: right;
  864. }
  865. .l-profile__username {
  866. float: left;
  867. color: #8ed8fd;
  868. padding: 10px 0 0 10px;
  869. margin-right: 2px;
  870. font-weight: 600;
  871. }
  872. .l-profile__username:hover {
  873. color: #d2f0ff;
  874. }
  875. .l-profile__username:active {
  876. color: #56a9d2;
  877. }
  878. .l-profile__logout {
  879. float: left;
  880. color: #dbf94e;
  881. padding: 10px 0 0 10px;
  882. font-weight: 600;
  883. }
  884. .l-profile__logout:hover {
  885. color: #f5ffc3 !important;
  886. }
  887. .l-profile__logout:active {
  888. color: #d0e859;
  889. }
  890. .lang-cn .l-profile__logout {
  891. padding: 8px 5px;
  892. }
  893. .lang-tw .l-profile__logout {
  894. padding: 8px 5px;
  895. }
  896. .l-profile__server {
  897. color: #ceefff;
  898. padding-top: 10px;
  899. float: left;
  900. }
  901. .l-profile__notifications {
  902. background: url("/images/sprite.png?1446554103") no-repeat scroll -129px -135px;
  903. border-radius: 30px;
  904. color: #fff;
  905. cursor: pointer;
  906. float: left;
  907. font-weight: 600;
  908. height: 15px;
  909. margin-right: 4px;
  910. margin-top: 5px;
  911. padding: 10px 5px 0;
  912. width: 15px;
  913. }
  914. .l-profile__notifications.active {
  915. background-color: #454545;
  916. }
  917. .l-profile__notifications:hover {
  918. background-color: #333;
  919. }
  920. .l-profile__notifications:active {
  921. background-color: #c4da5e;
  922. }
  923. .l-profile__notifications.updates {
  924. background-position: -202px -135px;
  925. }
  926. .notification-container {
  927. background-color: #454545;
  928. box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  929. list-style-type: none;
  930. margin: 0;
  931. overflow: hidden;
  932. padding-left: 0;
  933. position: fixed;
  934. top: 34px;
  935. width: 351px;
  936. z-index: 200;
  937. font-size: 13px;
  938. padding: 0;
  939. color: #7f7f7f;
  940. }
  941. .notification-container .unseen {
  942. color: #ABABAB;
  943. }
  944. .notification-container li {
  945. border-bottom: 1px solid #4b4b4b;
  946. padding: 10px 15px 24px;
  947. }
  948. .notification-container .mark-seen {
  949. background-color: #abc04b;
  950. border: 2px solid #454545;
  951. border-radius: 10px;
  952. cursor: pointer;
  953. display: none;
  954. float: right;
  955. height: 7px;
  956. margin-right: -5px;
  957. margin-top: 0;
  958. width: 7px;
  959. }
  960. .notification-container .mark-seen:hover {
  961. background-color: #333;
  962. border-color: #abc04b;
  963. }
  964. .notification-container .mark-seen:active {
  965. background-color: #777;
  966. border-color: #777;
  967. }
  968. .notification-container .unseen .mark-seen{
  969. display: inline-block;
  970. }
  971. .notification-container .title {
  972. color: #9e9e9e;
  973. font-weight: 600;
  974. line-height: 30px;
  975. padding: 0;
  976. text-transform: none;
  977. float: none;
  978. display: block;
  979. }
  980. .notification-container .title a {
  981. color: #9e9e9e;
  982. }
  983. .notification-container .unseen .title a,
  984. .notification-container .unseen .title {
  985. color: #C4DA5E;
  986. }
  987. .notification-container .unseen .title a:hover {
  988. color: #ffcc00;
  989. }
  990. .notification-container .unseen .title a:active {
  991. color: #dacf2e;
  992. }
  993. .notification-container a {
  994. color: #5ABDB5;/* #eee;*/
  995. }
  996. .notification-container a:hover {
  997. color: #2CA99B;
  998. }
  999. .notification-container a:active {
  1000. color: #00C0C0;
  1001. }
  1002. .notification-container .icon {
  1003. display: inline-block;
  1004. width: 0;
  1005. }
  1006. .notification-container .icon.starred {
  1007. display: inline-block;
  1008. width: 21px;
  1009. background: url("/images/sprite.png?1446554103") repeat scroll -184px 556px;
  1010. }
  1011. .l-stat {
  1012. margin: 0 auto;
  1013. margin: 34px auto;
  1014. position: fixed;
  1015. background-color: #fff;
  1016. z-index: 100;
  1017. padding-top: 30px;
  1018. width: 100%;
  1019. overflow: hidden;
  1020. }
  1021. .l-stat__col {
  1022. display: block;
  1023. vertical-align: top;
  1024. float: left;
  1025. }
  1026. .l-stat__col a {
  1027. display: inline-block;
  1028. padding-bottom: 36px;
  1029. min-height: 111px;
  1030. width: 138px;
  1031. border-bottom: 3px solid #fff;
  1032. overflow: hidden;
  1033. background-color: #fff;
  1034. padding-top: 3px;
  1035. margin-top: -3px;
  1036. padding-left: 5px;
  1037. }
  1038. .l-stat__col a:hover {
  1039. border-bottom: 3px solid #ff8e61;
  1040. transition: 0.3s;
  1041. }
  1042. .l-stat__col a:active {
  1043. border-bottom: 3px solid #f72b44;
  1044. }
  1045. .l-stat__col--active a {
  1046. border-bottom: 3px solid #ff6e42;
  1047. }
  1048. .l-stat.active .l-stat__col.focus a {
  1049. border-bottom: 3px solid #5edad0;
  1050. }
  1051. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  1052. color: #36B3A9;
  1053. }
  1054. .l-stat__col a:hover .l-stat__col-title {
  1055. color: #ff6701;
  1056. }
  1057. .l-stat__col a:active .l-stat__col-title {
  1058. color: #f72b44;
  1059. }
  1060. .l-stat__col ul {
  1061. list-style-type: none;
  1062. font-size: 12.5px;
  1063. padding-left: 0;
  1064. line-height: 14px;
  1065. }
  1066. .l-stat__col li {
  1067. color: #a0a0a0;
  1068. margin-bottom: 8px;
  1069. text-transform: lowercase;
  1070. }
  1071. .l-stat__col span {
  1072. padding-left: 15px;
  1073. }
  1074. .l-stat__col-title {
  1075. text-transform: uppercase;
  1076. font-weight: 600;
  1077. color: #373737;
  1078. min-height: 21px;
  1079. }
  1080. .l-stat__col--active .l-stat__col-title {
  1081. color: #ff6701;
  1082. font-size: 24px;
  1083. margin-top: -7px;
  1084. letter-spacing: -1px;
  1085. margin-right: -8px;
  1086. }
  1087. .l-stat__col .fas {
  1088. color: #999999;
  1089. padding: 4px;
  1090. }
  1091. .l-separator.selected,
  1092. .l-separator {
  1093. height: 1px;
  1094. background-color: #ddd;
  1095. }
  1096. div.l-content > div.l-separator:nth-of-type(2) {
  1097. margin-top: 214px;
  1098. width: 100%;
  1099. position: fixed;
  1100. z-index: 120;
  1101. }
  1102. div.l-content > div.l-separator:nth-of-type(4) {
  1103. margin-top: 259px;
  1104. width: 100%;
  1105. position: fixed;
  1106. z-index: 100;
  1107. }
  1108. .l-sort {
  1109. position: fixed;
  1110. width: 998px;
  1111. background-color: #fff;
  1112. z-index: 110;
  1113. margin-top: 215px;
  1114. }
  1115. .l-sort__create-btn {
  1116. background-image: url("/images/sprite.png?1446554103");
  1117. background-position: -331px -107px;
  1118. background-repeat: no-repeat;
  1119. bottom: -23px;
  1120. display: inline-block;
  1121. height: 45px;
  1122. left: 30px;
  1123. position: absolute;
  1124. width: 45px;
  1125. z-index: 3;
  1126. }
  1127. .l-sort__create-btn:hover {
  1128. background-position: -378px -107px;
  1129. }
  1130. .l-sort__create-btn:active {
  1131. background-position: -425px -107px;
  1132. }
  1133. .l-sort__create-btn--active {
  1134. background-position: -425px -107px;
  1135. }
  1136. .l-sort__create-btn.restore {
  1137. background-position: -331px -250px;
  1138. bottom: -22px;
  1139. }
  1140. .l-sort__create-btn.restore:hover {
  1141. background-position: -331px -250px;
  1142. }
  1143. .l-sort__create-btn.restore:active {
  1144. background-position: -331px -250px;
  1145. }
  1146. .l-sort__create-btn.edit {
  1147. background-position: -331px -154px;
  1148. bottom: -22px;
  1149. }
  1150. .l-sort__create-btn.edit:hover {
  1151. background-position: -378px -154px;
  1152. }
  1153. .l-sort__create-btn.edit:active {
  1154. background-position: -425px -154px;
  1155. }
  1156. .context-menu.sort-order {
  1157. display: inline-block;
  1158. position: absolute;
  1159. z-index: 3;
  1160. left: 397px;
  1161. margin: 0;
  1162. overflow: hidden;
  1163. top: 42px;
  1164. width: 201px;
  1165. background-color: #5c5c5c;
  1166. list-style-type: none;
  1167. padding-left: 0;
  1168. box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  1169. }
  1170. .context-menu.sort-order li {
  1171. padding: 0;
  1172. }
  1173. .context-menu li {
  1174. border-bottom: 1px solid #777;
  1175. color: #fff;
  1176. cursor: pointer;
  1177. font-size: 13px;
  1178. padding: 12px;
  1179. }
  1180. .context-menu.sort-order span.name {
  1181. background: url("/images/sprite.png?1446554103") no-repeat scroll -292px -361px rgba(0, 0, 0, 0);
  1182. display: inline-block;
  1183. padding: 12px 28px 12px 12px;
  1184. width: 117px;
  1185. text-transform: uppercase;
  1186. font-weight: 600;
  1187. }
  1188. .context-menu.sort-order span.up {
  1189. background: url("/images/sprite.png?1446554103") no-repeat scroll -434px -417px rgba(0, 0, 0, 0);
  1190. display: inline-block;
  1191. padding: 12px 14px;
  1192. width: 16px;
  1193. }
  1194. .context-menu.sort-order span.active {
  1195. background-color: #FFD437;
  1196. color: #4b4b4b;
  1197. }
  1198. .context-menu.sort-order span:hover {
  1199. background-color: #777;
  1200. color: #fff;
  1201. }
  1202. .context-menu.sort-order span:active {
  1203. background-color: #ffcc00;
  1204. }
  1205. .l-sort-toolbar {
  1206. float: right;
  1207. padding: 7px 0 7px 0;
  1208. width: 100%;
  1209. text-transform: uppercase;
  1210. font-size: 12px;
  1211. }
  1212. .l-sort-toolbar table{
  1213. float: right;
  1214. }
  1215. .l-sort-toolbar td.toggle-all {
  1216. padding-top: 7px;
  1217. padding-right: 20px;
  1218. }
  1219. .l-sort-toolbar .sort-by {
  1220. cursor: pointer;
  1221. padding-top: 7px;
  1222. padding-left: 40px;
  1223. }
  1224. .l-sort-toolbar .sort-by:hover {
  1225. color: #4b4b4b;
  1226. }
  1227. .l-sort-toolbar .sort-by:hover b {
  1228. color: #4b4b4b;
  1229. }
  1230. .l-sort-toolbar .sort-by:active {
  1231. color: #55c9c0;
  1232. }
  1233. .l-sort-toolbar .sort-by:active b {
  1234. color: #55c9c0;
  1235. }
  1236. .l-sort-toolbar .sort-by b {
  1237. text-transform: uppercase;
  1238. padding-left: 3px;
  1239. font-size: 13px;
  1240. }
  1241. .l-sort-toolbar .toggle-all:hover {
  1242. color: #4b4b4b;
  1243. }
  1244. .l-sort-toolbar .toggle-all:active {
  1245. color: #55c9c0;
  1246. }
  1247. .l-sort-toolbar .l-select {
  1248. float: left;
  1249. }
  1250. .l-sort-toolbar td {
  1251. vertical-align: middle;
  1252. }
  1253. .l-sort-toolbar.subtitle {
  1254. padding-left: 96px;
  1255. }
  1256. .l-sort-toolbar td:first-of-type {
  1257. padding-left: 40px;
  1258. }
  1259. .l-sort-toolbar td.step-right:first-of-type {
  1260. padding-right: 20px;
  1261. }
  1262. .l-sort-toolbar td:nth-of-type(2) {
  1263. /* /// padding-right: 60px;*/
  1264. padding-right: 20px;
  1265. }
  1266. .l-sort-toolbar td:last-of-type {
  1267. /* /// padding-left: 40px; */
  1268. }
  1269. .l-sort-toolbar__filter-apply {
  1270. float: left;
  1271. width: 30px;
  1272. height: 30px;
  1273. background-image: url("/images/sprite.png?1446554103");
  1274. background-position: -333px -1px;
  1275. border: none;
  1276. }
  1277. .l-sort-toolbar__filter-apply:hover {
  1278. background-position: -368px -1px;
  1279. border-color: #afafac;
  1280. }
  1281. .l-sort-toolbar__filter-apply:active {
  1282. background-position: -404px -1px;
  1283. border-color: #afafac;
  1284. }
  1285. .l-sort-toolbar__filter-apply--active {
  1286. background-position: -404px -1px;
  1287. border-color: #50bdb5;
  1288. }
  1289. .l-sort-toolbar__search {
  1290. float: left;
  1291. width: 25px;
  1292. height: 25px;
  1293. background-image: url("/images/sprite.png?1446554103");
  1294. background-position: -333px -37px;
  1295. border: none;
  1296. }
  1297. .l-sort-toolbar__search:hover {
  1298. background-position: -368px -37px;
  1299. border-color: #afafac;
  1300. }
  1301. .l-sort-toolbar__search:active {
  1302. background-position: -404px -37px;
  1303. border-color: #50bdb5;
  1304. }
  1305. .l-sort-toolbar__search--active {
  1306. background-position: -404px -37px;
  1307. border-color: #50bdb5;
  1308. }
  1309. .l-sort-toolbar .vst {
  1310. padding: 0 12px;
  1311. color: #777;
  1312. text-transform: uppercase;
  1313. font-size: 12px;
  1314. font-weight: 600;
  1315. line-height: 30px;
  1316. }
  1317. .l-sort-toolbar .vst:hover {
  1318. color: #ff6701;
  1319. }
  1320. .l-sort-toolbar .vst:active {
  1321. color: #55C9C0;
  1322. }
  1323. .l-sort-toolbar .vst.selected {
  1324. color: #ff6701;
  1325. /*color: #92af0b;*/
  1326. }
  1327. .subtitle {
  1328. color: #ff6701;
  1329. font-size: 13px;
  1330. font-weight: 600;
  1331. margin: 20px 0 18px 129px;
  1332. text-transform: uppercase;
  1333. }
  1334. .l-select {
  1335. width: 178px;
  1336. height: 28px;
  1337. border: 1px solid #ddd;
  1338. border-top-left-radius: 4px;
  1339. border-bottom-left-radius: 4px;
  1340. overflow-x: hidden;
  1341. position: relative;
  1342. display: inline-block;
  1343. border-style: solid none solid solid;
  1344. font-weight: 400;
  1345. }
  1346. .lang-ru .l-select {
  1347. width: 199px;
  1348. }
  1349. .l-select:after {
  1350. pointer-events: none;
  1351. background-image: url("/images/sprite.png?1446554103");
  1352. background-position: -245px -175px;
  1353. width: 7px;
  1354. height: 4px;
  1355. margin-top: -2px;
  1356. content: '';
  1357. position: absolute;
  1358. right: 10px;
  1359. top: 50%;
  1360. }
  1361. .l-select select {
  1362. border: 0;
  1363. background-color: transparent;
  1364. line-height: 28px;
  1365. height: 28px;
  1366. min-width: 208px;
  1367. padding-left: 4px;
  1368. appearance:none;
  1369. -moz-appearance:none;
  1370. -webkit-appearance:none;
  1371. padding-left: 10px;
  1372. }
  1373. .l-select select:focus {
  1374. border: 0;
  1375. outline: 0;
  1376. }
  1377. .lang-ru .l-select select {
  1378. min-width: 215px;
  1379. }
  1380. .l-select select option {
  1381. padding: 7px;
  1382. }
  1383. .l-unit {
  1384. color: #707070;
  1385. padding: 0 0 0 24px;
  1386. overflow: hidden;
  1387. font-size: 13px;
  1388. }
  1389. .table-header {
  1390. font-size: 1.05em;
  1391. }
  1392. .units .l-unit {
  1393. border-bottom: 1px solid #ddd;
  1394. }
  1395. .units .l-unit.l-unit--starred {
  1396. border-left: 2px solid #ff6701;
  1397. }
  1398. .units.active .l-unit.focus {
  1399. border-left: 2px solid #5edad0;
  1400. }
  1401. .units.active .l-unit.focus .l-unit__name {
  1402. color: #36b3a9;
  1403. }
  1404. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  1405. display: block;
  1406. }
  1407. .units > div:last-child {
  1408. border-bottom: none;
  1409. }
  1410. .l-unit-ft {
  1411. color: #929292;
  1412. padding: 0 0 0 15px;
  1413. }
  1414. .l-unit:hover .l-unit-toolbar__col--right {
  1415. display: block;
  1416. }
  1417. .l-unit--blue {
  1418. border-left: 2px solid #55c9c0;
  1419. }
  1420. .l-unit--suspended {
  1421. background-color: #eaeaea;
  1422. color: #c0c0c0;
  1423. }
  1424. .units .l-unit.l-unit--outdated {
  1425. background-color: #ffcaca;
  1426. color: #4b4b4b;
  1427. border-left: 5px solid #ff6f6f;
  1428. border-bottom: 1px solid #fff;
  1429. }
  1430. .l-unit--suspended .l-unit__name,
  1431. .l-unit--suspended b,
  1432. .l-unit--outdated .l-unit__name,
  1433. .l-unit--outdated b {
  1434. color: #c0c0c0;
  1435. }
  1436. .l-unit--outdated .l-unit__name {
  1437. color: #333;
  1438. }
  1439. .l-unit--outdated b {
  1440. color: #4b4b4b;
  1441. }
  1442. .l-unit--suspended .l-percent {
  1443. border-color: #fff;
  1444. }
  1445. .l-unit--suspended .l-percent__fill {
  1446. background-color: #fff;
  1447. }
  1448. .l-unit--suspended .l-unit__name,
  1449. .l-unit--suspended .l-unit__name span {
  1450. color: #ADADAD;
  1451. }
  1452. .l-unit--suspended.selected .l-unit__name,
  1453. .l-unit--suspended.selected .l-unit__name span {
  1454. color: #777;
  1455. }
  1456. .l-unit--suspended.selected {
  1457. background-color: #f2eab8 !important;
  1458. color: #b2ac87 !important;
  1459. }
  1460. .l-unit--outdated.selected {
  1461. background: #765D5D !important;
  1462. color: #333 !important;
  1463. }
  1464. .l-unit--suspended.selected .l-unit__name,
  1465. .l-unit--suspended.selected b,
  1466. .l-unit--outdated.selected .l-unit__name,
  1467. .l-unit--outdated.selected b,
  1468. .l-unit--suspended.selected .l-percent,
  1469. .l-unit--suspended.selected .l-percent__fill,
  1470. .l-unit--suspended.selected .l-unit__name,
  1471. .l-unit--suspended.selected .l-unit__name span {
  1472. color: #333 !important;
  1473. }
  1474. .l-unit.selected .l-percent {
  1475. border-bottom: 1px dotted #777;
  1476. }
  1477. .l-unit--selected {
  1478. background-color: #d1eddc;
  1479. }
  1480. .l-unit-toolbar{
  1481. height: 39px;
  1482. }
  1483. .l-unit label {
  1484. margin-bottom: 20px;
  1485. }
  1486. .l-unit__columns {
  1487. display: table;
  1488. width: 100%;
  1489. }
  1490. .l-unit__col {
  1491. display: table-cell;
  1492. padding-top: 1px;
  1493. vertical-align: top;
  1494. }
  1495. .l-unit__col--left {
  1496. width: 100px;
  1497. padding-right: 10px;
  1498. }
  1499. .units.compact .l-unit__col--left {
  1500. vertical-align: top;
  1501. }
  1502. .l-unit__col--left.step-left {
  1503. padding-left: 30px;
  1504. }
  1505. .l-unit__col--right.total {
  1506. padding-left: 16px;
  1507. }
  1508. .l-unit__col--right.back {
  1509. padding-left: 78px
  1510. }
  1511. .l-sort-toolbar .step-left {
  1512. padding-left: 40px;
  1513. }
  1514. .step-right {
  1515. padding-right: 40px;
  1516. }
  1517. .l-unit__date {
  1518. font-size: 11px;
  1519. margin-top: 10px;
  1520. padding-bottom: 30px;
  1521. text-transform: uppercase;
  1522. }
  1523. .l-unit__suspended {
  1524. display: none;
  1525. font-size: 12px;
  1526. font-weight: 600;
  1527. margin-top: 36px;
  1528. text-transform: uppercase;
  1529. margin-bottom: 14px;
  1530. }
  1531. .units.compact .l-unit__suspended {
  1532. margin-top: 1px;
  1533. }
  1534. .l-unit--outdated .l-unit__suspended,
  1535. .l-unit--suspended .l-unit__suspended {
  1536. display: block;
  1537. }
  1538. .l-unit-ft .subtitle,
  1539. .l-unit .subtitle {
  1540. color: #ff6701;
  1541. font-size: 13px;
  1542. font-weight: 600;
  1543. margin: 20px 0 18px 129px;
  1544. text-transform: uppercase;
  1545. }
  1546. .l-unit.l-unit--outdated .l-unit__date {
  1547. color: #d24c4c;
  1548. font-size: 10px;
  1549. text-transform: uppercase;
  1550. font-weight: 600;
  1551. }
  1552. .l-unit__name {
  1553. color: #414141;
  1554. font-size: 28px;
  1555. margin-bottom: 10px;
  1556. font-weight: 500;
  1557. letter-spacing: -0.02em;
  1558. }
  1559. .l-unit__stats.separate,
  1560. .l-unit__name.separate {
  1561. padding-bottom: 15px;
  1562. }
  1563. .l-unit__name.small {
  1564. font-size: 16px;
  1565. }
  1566. .l-unit__name.small-2 {
  1567. font-size: 20px;
  1568. }
  1569. .l-unit__name span {
  1570. color: #999;
  1571. margin-left: 30px;
  1572. font-size: 14px;
  1573. font-style: italic;
  1574. }
  1575. .l-unit__name span:first-of-type {
  1576. margin-left: 39px;
  1577. }
  1578. .l-unit__name b {
  1579. font-weight: normal;
  1580. font-style: italic;
  1581. }
  1582. .l-unit__ip {
  1583. margin-bottom: 26px;
  1584. font-size: 13px;
  1585. color: #383838;
  1586. }
  1587. .l-unit__ip span {
  1588. padding-left: 3px;
  1589. padding-right: 3px;
  1590. }
  1591. .display-ip {
  1592. font-size: 13px;
  1593. }
  1594. .display-ip span {
  1595. padding-left: 3px;
  1596. padding-right: 3px;
  1597. }
  1598. .l-unit__stats {
  1599. margin-bottom: 50px;
  1600. }
  1601. .l-unit__stats table {
  1602. width: 100%;
  1603. table-layout: fixed;
  1604. }
  1605. .l-unit__stats td {
  1606. height: 22px;
  1607. padding-bottom: 3px;
  1608. vertical-align: top;
  1609. }
  1610. .l-unit__stat-col--left {
  1611. float: left;
  1612. width: 110px;
  1613. }
  1614. .l-unit__stat-col--left.compact {
  1615. width: 70px;
  1616. }
  1617. .l-unit__stat-col--left.compact-2 {
  1618. width: 80px;
  1619. }
  1620. .l-unit__stat-col--left.compact-3 {
  1621. width: 90px;
  1622. }
  1623. .l-unit__stat-col--left.wide {
  1624. width: 190px;
  1625. }
  1626. .l-unit__stat-col--left.wide-2 {
  1627. width: 230px;
  1628. }
  1629. .l-unit__stat-col--left.wide-3 {
  1630. width: 250px;
  1631. }
  1632. .l-unit__stat-col--left.wide-4 {
  1633. width: 550px;
  1634. }
  1635. .l-unit__stat-col--left.wide-5 {
  1636. width: 330px;
  1637. }
  1638. .l-unit__stat-col--left.small-2 {
  1639. line-height: 11px;
  1640. }
  1641. .l-unit__stat-col--left.tiny {
  1642. font-size: 12px;
  1643. }
  1644. .l-unit__stat-col--left.tiny b {
  1645. font-size: 18px;
  1646. }
  1647. .l-unit__stat-col--right {
  1648. float: left;
  1649. max-width: 152px;
  1650. }
  1651. .l-unit-toolbar__col--left {
  1652. float: left;
  1653. margin-left: -15px;
  1654. margin-top: 0;
  1655. padding-bottom: 0px;/* 8px */
  1656. padding-left: 15px;
  1657. padding-top: 15px;
  1658. width: 30px;
  1659. cursor: pointer;
  1660. }
  1661. .l-unit-toolbar__col--right {
  1662. float: right;
  1663. display: none;
  1664. }
  1665. body.mobile .l-unit-toolbar__col--right {
  1666. display: block;
  1667. }
  1668. .l-unit-toolbar .shortcut {
  1669. display: none;
  1670. }
  1671. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1672. display: block;
  1673. background-color: #69a298;
  1674. border-radius: 13px;
  1675. color: #fff;
  1676. cursor: pointer;
  1677. display: block;
  1678. font-size: 13px;
  1679. font-weight: 600;
  1680. line-height: 25px;
  1681. padding-left: 7px;
  1682. padding-right: 9px;
  1683. position: absolute;
  1684. right: 3px;
  1685. top: 3px;
  1686. }
  1687. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1688. font-size: 10px;
  1689. padding-left: 2px;
  1690. padding-right: 5px;
  1691. text-transform: capitalize;
  1692. }
  1693. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1694. font-size: 17px;
  1695. padding-left: 1px;
  1696. padding-right: 7px;
  1697. }
  1698. .units.active .l-unit.focus .l-unit-toolbar i {
  1699. background: none;
  1700. }
  1701. .l-unit__stat-col.volume {
  1702. font-size: 13px;
  1703. line-height: 17px;
  1704. float: right;
  1705. }
  1706. .actions-panel__col {
  1707. float: left;
  1708. min-width: 95px;
  1709. min-height: 31px;
  1710. text-transform: uppercase;
  1711. background-color: #dfdedd;
  1712. border-right: 1px solid #d8d7d7;
  1713. position: relative;
  1714. }
  1715. .selected .actions-panel__col {
  1716. -webkit-filter: contrast(80%);
  1717. filter: contrast(80%);
  1718. }
  1719. .actions-panel__col i {
  1720. background-image: url("/images/sprite.png?1446554103");
  1721. background-repeat: no-repeat;
  1722. display: inline-block;
  1723. float: right;
  1724. content: '';
  1725. width: 31px;
  1726. height: 31px;
  1727. position: absolute;
  1728. top: 0;
  1729. right: 0;
  1730. }
  1731. .actions-panel__col a {
  1732. line-height: 31px;
  1733. color: #777;
  1734. font-weight: 600;
  1735. font-size: 13px;
  1736. padding-left: 13px;
  1737. display: block;
  1738. cursor: pointer;
  1739. position: relative;
  1740. padding-right: 36px;
  1741. }
  1742. .lang-ru .actions-panel__col a {
  1743. font-size: 12px;
  1744. padding-top: 1px;
  1745. }
  1746. .lang-tw .actions-panel__col a {
  1747. font-size: 14px;
  1748. font-weight: normal;
  1749. line-height: 29px;
  1750. }
  1751. .lang-ar .actions-panel__col a {
  1752. font-size: 14px;
  1753. font-weight: normal;
  1754. line-height: 31px;
  1755. }
  1756. .actions-panel__favorite a {
  1757. background-color: #afafac;
  1758. color: #fff;
  1759. }
  1760. .actions-panel__favorite i {
  1761. background-position: -39px -85px;
  1762. }
  1763. .actions-panel__edit i {
  1764. background-position: -1px -169px;
  1765. }
  1766. .actions-panel__edit:hover a {
  1767. background-color: #3b9de8;
  1768. color: #fff;
  1769. }
  1770. .actions-panel__edit:active a {
  1771. background-color: #54a6e5;
  1772. color: #4b4b4b;
  1773. }
  1774. .actions-panel__edit:hover a i {
  1775. background-position: -41px -169px;
  1776. }
  1777. .actions-panel__edit:active a i {
  1778. background-position: -81px -169px;
  1779. }
  1780. .actions-panel__edit--active a {
  1781. background-color: #54a6e5;
  1782. color: #fff;
  1783. }
  1784. .actions-panel__edit--active i {
  1785. background-position: -78px -169px;
  1786. }
  1787. .actions-panel__restart i {
  1788. background-position: -1px -520px;
  1789. }
  1790. .actions-panel__restart:hover a {
  1791. background-color: #3b9de8;
  1792. color: #fff;
  1793. }
  1794. .actions-panel__restart:active a {
  1795. background-color: #54a6e5;
  1796. color: #4b4b4b;
  1797. }
  1798. .actions-panel__restart:hover a i {
  1799. background-position: -41px -520px;
  1800. }
  1801. .actions-panel__restart:active a i {
  1802. background-position: -81px -520px;
  1803. }
  1804. .actions-panel__restart--active a {
  1805. background-color: #54a6e5;
  1806. color: #fff;
  1807. }
  1808. .actions-panel__restart--active i {
  1809. background-position: -78px -520px;
  1810. }
  1811. .actions-panel__add i {
  1812. background-position: -1px -285px;
  1813. }
  1814. .actions-panel__add:hover a {
  1815. background-color: #3b9de8;
  1816. color: #fff;
  1817. }
  1818. .actions-panel__add:active a {
  1819. background-color: #54a6e5;
  1820. color: #4b4b4b;
  1821. }
  1822. .actions-panel__add:hover a i {
  1823. background-position: -41px -285px;
  1824. }
  1825. .actions-panel__add:active a i {
  1826. background-position: -81px -285px;
  1827. }
  1828. .actions-panel__add--active a {
  1829. background-color: #54a6e5;
  1830. color: #fff;
  1831. }
  1832. .actions-panel__add--active i {
  1833. background-position: -78px -285px;
  1834. }
  1835. .actions-panel__update i {
  1836. background-position: -1px -481px;
  1837. }
  1838. .actions-panel__update:hover a {
  1839. background-color: #3b9de8;
  1840. color: #fff;
  1841. }
  1842. .actions-panel__update:active a {
  1843. background-color: #54a6e5;
  1844. color: #4b4b4b;
  1845. }
  1846. .actions-panel__update:hover a i {
  1847. background-position: -41px -481px;
  1848. }
  1849. .actions-panel__update:active a i {
  1850. background-position: -81px -481px;
  1851. }
  1852. .actions-panel__update--active a {
  1853. background-color: #54a6e5;
  1854. color: #fff;
  1855. }
  1856. .actions-panel__update--active i {
  1857. background-position: -78px -481px;
  1858. }
  1859. .actions-panel__logs i {
  1860. background-position: -2px -130px;
  1861. }
  1862. .actions-panel__logs:hover a {
  1863. background-color: #afafac;
  1864. color: #fff;
  1865. }
  1866. .actions-panel__logs:active a {
  1867. background-color: #55c9c0;
  1868. color: #fff;
  1869. }
  1870. .actions-panel__logs:hover a i {
  1871. background-position: -42px -130px;
  1872. }
  1873. .actions-panel__logs:active a i {
  1874. background-position: -82px -130px;
  1875. }
  1876. .actions-panel__logs--active a {
  1877. background-color: #55c9c0;
  1878. color: #fff;
  1879. }
  1880. .actions-panel__logs--active i {
  1881. background-position: -79px -130px;
  1882. }
  1883. .actions-panel__db i {
  1884. background-position: -2px -363px;
  1885. }
  1886. .actions-panel__db:hover a {
  1887. background-color: #afafac;
  1888. color: #fff;
  1889. }
  1890. .actions-panel__db:active a {
  1891. background-color: #55c9c0;
  1892. color: #fff;
  1893. }
  1894. .actions-panel__db:hover a i {
  1895. background-position: -42px -363px;
  1896. }
  1897. .actions-panel__db:active a i {
  1898. background-position: -82px -363px;
  1899. }
  1900. .actions-panel__db--active a {
  1901. background-color: #55c9c0;
  1902. color: #fff;
  1903. }
  1904. .actions-panel__db--active i {
  1905. background-position: -79px -362px;
  1906. }
  1907. .actions-panel__suspend i {
  1908. background-position: -1px -51px;
  1909. }
  1910. .actions-panel__suspend:hover a {
  1911. background-color: #afafac;
  1912. color: #fff;
  1913. }
  1914. .actions-panel__suspend:active a {
  1915. background-color: #55c9c0;
  1916. color: #fff;
  1917. }
  1918. .actions-panel__suspend:hover a i {
  1919. background-position: -41px -51px;
  1920. }
  1921. .actions-panel__suspend:active a i {
  1922. background-position: -81px -51px;
  1923. }
  1924. .actions-panel__suspend--active a {
  1925. background-color: #55c9c0;
  1926. color: #fff;
  1927. }
  1928. .actions-panel__suspend--active i {
  1929. background-position: -78px -51px;
  1930. }
  1931. .actions-panel__unsuspend i {
  1932. background-position: -1px -12px;
  1933. }
  1934. .actions-panel__unsuspend:hover a {
  1935. background-color: #afafac;
  1936. color: #fff;
  1937. }
  1938. .actions-panel__unsuspend:active a {
  1939. background-color: #55c9c0;
  1940. color: #fff;
  1941. }
  1942. .actions-panel__unsuspend:hover a i {
  1943. background-position: -41px -12px;
  1944. }
  1945. .actions-panel__unsuspend:active a i {
  1946. background-position: -81px -12px;
  1947. }
  1948. .actions-panel__unsuspend--active a {
  1949. background-color: #55c9c0;
  1950. color: #fff;
  1951. }
  1952. .actions-panel__unsuspend--active i {
  1953. background-position: -78px -12px;
  1954. }
  1955. .actions-panel__loginas i {
  1956. background-position: -1px -245px;
  1957. }
  1958. .actions-panel__loginas:hover a {
  1959. background-color: #afafac;
  1960. color: #fff;
  1961. }
  1962. .actions-panel__loginas:active a {
  1963. background-color: #55c9c0;
  1964. color: #fff;
  1965. }
  1966. .actions-panel__loginas:hover a i {
  1967. background-position: -41px -245px;
  1968. }
  1969. .actions-panel__loginas:active a i {
  1970. background-position: -81px -245px;
  1971. }
  1972. .actions-panel__loginas--active a {
  1973. background-color: #55c9c0;
  1974. color: #fff;
  1975. }
  1976. .actions-panel__loginas--active i {
  1977. background-position: -78px -245px;
  1978. }
  1979. .actions-panel__download i {
  1980. background-position: -1px -402px;
  1981. }
  1982. .actions-panel__download:hover a {
  1983. background-color: #3b9de8;
  1984. color: #fff;
  1985. }
  1986. .actions-panel__download:active a {
  1987. background-color: #54a6e5;
  1988. color: #4b4b4b;
  1989. }
  1990. .actions-panel__download:hover a i {
  1991. background-position: -41px -402px;
  1992. }
  1993. .actions-panel__download:active a i {
  1994. background-position: -81px -402px;
  1995. }
  1996. .actions-panel__download--active a {
  1997. background-color: #54a6e5;
  1998. color: #fff;
  1999. }
  2000. .actions-panel__download--active i {
  2001. background-position: -78px -402px;
  2002. }
  2003. .actions-panel__configure i {
  2004. background-position: -1px -442px;
  2005. }
  2006. .actions-panel__configure:hover a {
  2007. background-color: #55c9c0;
  2008. color: #fff;
  2009. }
  2010. .actions-panel__configure:active a {
  2011. background-color: #afafac;
  2012. color: #fff;
  2013. }
  2014. .actions-panel__configure:hover a i {
  2015. background-position: -81px -442px;
  2016. }
  2017. .actions-panel__configure:active a i {
  2018. background-position: -41px -442px;
  2019. }
  2020. .actions-panel__configure--active a {
  2021. background-color: #55c9c0;
  2022. color: #fff;
  2023. }
  2024. .actions-panel__configure--active i {
  2025. background-position: -78px -442px;
  2026. }
  2027. .actions-panel__.l-icon-starmail i {
  2028. background-position: -1px -324px;
  2029. }
  2030. .actions-panel__mail:hover a {
  2031. background-color: #afafac;
  2032. color: #fff;
  2033. }
  2034. .actions-panel__mail:active a {
  2035. background-color: #55c9c0;
  2036. color: #fff;
  2037. }
  2038. .actions-panel__mail:hover a i {
  2039. background-position: -41px -324px;
  2040. }
  2041. .actions-panel__mail:active a i {
  2042. background-position: -81px -324px;
  2043. }
  2044. .actions-panel__mail--active a {
  2045. background-color: #55c9c0;
  2046. color: #fff;
  2047. }
  2048. .actions-panel__mail--active i {
  2049. background-position: -78px -324px;
  2050. }
  2051. .actions-panel__delete i {
  2052. background-position: -1px -207px;
  2053. }
  2054. .actions-panel__delete:hover a {
  2055. background-color: #ff3438;
  2056. color: #fff;
  2057. }
  2058. .actions-panel__delete:active a {
  2059. background-color: #ff5f5f;
  2060. color: #fff;
  2061. }
  2062. .actions-panel__delete:hover a i {
  2063. background-position: -41px -207px;
  2064. }
  2065. .actions-panel__delete:active a i {
  2066. background-position: -81px -207px;
  2067. }
  2068. .actions-panel__delete--active a {
  2069. background-color: #ff5f5f;
  2070. color: #fff;
  2071. }
  2072. .actions-panel__delete--active i {
  2073. background-position: -78px -207px;
  2074. }
  2075. .actions-panel__stop i {
  2076. background-position: -1px -561px;
  2077. }
  2078. .actions-panel__stop:hover a {
  2079. background-color: #ff3438;
  2080. color: #fff;
  2081. }
  2082. .actions-panel__stop:active a {
  2083. background-color: #ff5f5f;
  2084. color: #fff;
  2085. }
  2086. .actions-panel__stop:hover a i {
  2087. background-position: -41px -561px;
  2088. }
  2089. .actions-panel__stop:active a i {
  2090. background-position: -81px -561px;
  2091. }
  2092. .actions-panel__stop--active a {
  2093. background-color: #ff5f5f;
  2094. color: #fff;
  2095. }
  2096. .actions-panel__stop--active i {
  2097. background-position: -78px -561px;
  2098. }
  2099. .actions-panel__start i {
  2100. background-position: -1px -482px;
  2101. }
  2102. .actions-panel__start:hover a {
  2103. background-color: #3b9de8;
  2104. color: #fff;
  2105. }
  2106. .actions-panel__start:active a {
  2107. background-color: #54a6e5;
  2108. color: #4b4b4b;
  2109. }
  2110. .actions-panel__start:hover a i {
  2111. background-position: -41px -482px;
  2112. }
  2113. .actions-panel__start:active a i {
  2114. background-position: -81px -482px;
  2115. }
  2116. .actions-panel__start--active a {
  2117. background-color: #54a6e5;
  2118. color: #fff;
  2119. }
  2120. .actions-panel__start--active i {
  2121. background-position: -78px -482px;
  2122. }
  2123. .icon-pad-right {
  2124. margin-right: 5px;
  2125. }
  2126. .l-icon-up-arrow, .l-icon-down-arrow, .l-icon-star, .l-icon-to-top, .l-icon-shortcuts, .l-icon-star-orange, .l-icon-star-blue {
  2127. display: inline-block;
  2128. vertical-align: middle;
  2129. background-image: url("/images/sprite.png?1446554103");
  2130. }
  2131. .l-icon-down-arrow {
  2132. width: 7px;
  2133. height: 15px;
  2134. background-position: -280px -128px;
  2135. }
  2136. .l-icon-up-arrow {
  2137. width: 7px;
  2138. height: 15px;
  2139. background-position: -299px -129px;
  2140. }
  2141. .l-icon-star {
  2142. width: 36px;
  2143. height: 36px;
  2144. background-position: -216px 560px;
  2145. cursor: pointer;
  2146. visibility: hidden;
  2147. }
  2148. .l-unit--starred .l-icon-star {
  2149. background-position: -174px 560px;
  2150. visibility: visible;
  2151. }
  2152. .selected .l-icon-star {
  2153. filter: contrast(70%);
  2154. -webkit-filter: contrast(70%);
  2155. }
  2156. .units.compact .l-icon-star {
  2157. margin-top: -14px;
  2158. }
  2159. .l-icon-star:hover {
  2160. background-position: 0px 560px;
  2161. }
  2162. .l-icon-star:active {
  2163. -background-position: -174px 560px;
  2164. background-position: -80px 562px;
  2165. }
  2166. .l-unit:hover .l-icon-star {
  2167. visibility: visible;
  2168. }
  2169. .l-icon-to-top {
  2170. width: 35px;
  2171. height: 35px;
  2172. background-position: -330px -68px;
  2173. }
  2174. .l-icon-to-top:hover {
  2175. background-position: -366px -68px;
  2176. }
  2177. .l-icon-to-top:active {
  2178. background-position: -402px -68px;
  2179. }
  2180. .l-icon-shortcuts {
  2181. width: 35px;
  2182. height: 35px;
  2183. background-position: -240px -281px;
  2184. border-radius: 18px;
  2185. }
  2186. .l-icon-shortcuts:hover {
  2187. background-position: -160px -281px;
  2188. }
  2189. .l-icon-shortcuts:active {
  2190. background-position: -198px -281px;
  2191. }
  2192. body.mobile .l-icon-to-top,
  2193. body.mobile .l-icon-shortcuts {
  2194. display: none;
  2195. }
  2196. .l-icon-star-orange {
  2197. width: 13px;
  2198. height: 13px;
  2199. background-position: -178px -97px;
  2200. }
  2201. .l-icon-star-blue {
  2202. width: 13px;
  2203. height: 13px;
  2204. background-position: -134px -97px;
  2205. }
  2206. .media-top {
  2207. vertical-align: top;
  2208. }
  2209. .l-unit__stat-cols {
  2210. padding-right: 10px;
  2211. }
  2212. .l-unit__stat-cols.last {
  2213. padding-right: 0;
  2214. }
  2215. .l-unit__stat-cols.graph {
  2216. width: 200px;
  2217. }
  2218. .l-unit__stat-cols.tiny {
  2219. font-size:11px;
  2220. line-height: 19px;
  2221. }
  2222. .l-percent {
  2223. border-bottom: 1px dotted #ccc;
  2224. margin-top: 1px;
  2225. width: 200px;
  2226. }
  2227. .l-percent__fill {
  2228. background-color: #aacc0d;
  2229. height: 3px;
  2230. position: relative;
  2231. bottom: -1px;
  2232. }
  2233. .to-top {
  2234. display: inline-block;
  2235. position: fixed;
  2236. top: 92%;
  2237. right: 1%;
  2238. }
  2239. .to-shortcuts {
  2240. display: inline-block;
  2241. position: fixed;
  2242. top: 92%;
  2243. right: 4%;
  2244. }
  2245. /*
  2246. #vstobjects {
  2247. margin-top: -1px;
  2248. }
  2249. */
  2250. #vstobjects .l-center {
  2251. padding-top: 20px;
  2252. padding-bottom: 30px;
  2253. font-size: 13px;
  2254. }
  2255. .timer-container {
  2256. margin-top: 4px;
  2257. }
  2258. .timer-container .refresh-timer {
  2259. border: 2px solid #9f9f9f;
  2260. border-radius: 14px;
  2261. height: 14px;
  2262. width: 14px;
  2263. float: left;
  2264. margin: 2px 10px 0 0;
  2265. }
  2266. .timer-container .refresh-timer.paused {
  2267. border: 2px solid #9f9f9f;
  2268. }
  2269. .timer-container .refresh-timer.paused .loader-half.right,
  2270. .timer-container .refresh-timer.paused .loader-half.dark {
  2271. background-color: #9d9f9f;
  2272. }
  2273. .timer-container .loader-half {
  2274. border-radius: 0 14px 14px 0;
  2275. height: 14px;
  2276. width: 7px;
  2277. float: left;
  2278. }
  2279. .timer-container .loader-half.left {
  2280. border-radius: 14px 0 0 14px;
  2281. background-color: #fff;
  2282. }
  2283. .timer-container .loader-half.right {
  2284. margin-left: 7px;
  2285. background-color: #9f9f9f;
  2286. }
  2287. .timer-container .loader-half.dark {
  2288. background-color: #9f9f9f;
  2289. }
  2290. .timer-container .movement {
  2291. float: left;
  2292. width: 14px;
  2293. height: 14px;
  2294. position: absolute;
  2295. }
  2296. .timer-container .movement.left {
  2297. z-index: 10;
  2298. }
  2299. .timer-container .movement.right {
  2300. transform: rotate(180deg);
  2301. -webkit-transform: rotate(180deg);
  2302. }
  2303. .timer-container .timer-button {
  2304. cursor: pointer;
  2305. text-decoration: underline;
  2306. margin: 7px 0 0 38px;
  2307. width: 15px;
  2308. float: left;
  2309. height: 10px;
  2310. }
  2311. .timer-container .timer-button.pause {
  2312. background: url(/images/pause.png) no-repeat ;
  2313. }
  2314. .timer-container .timer-button.play {
  2315. background: url(/images/start.png) no-repeat;
  2316. }
  2317. .uppercase {
  2318. text-transform: uppercase;
  2319. }
  2320. .title b,
  2321. .title {
  2322. color: #ff6701;
  2323. font-size: 13px;
  2324. font-weight: 600;
  2325. padding: 0 30px 0px 73px;
  2326. line-height: 30px;
  2327. text-transform: uppercase;
  2328. }
  2329. .title {
  2330. display: inline-block;
  2331. float: left;
  2332. }
  2333. /* form styles */
  2334. .vst-error {
  2335. color: #BE5ABF;
  2336. font-weight: 600;
  2337. display: inline-block;
  2338. height: 17px;
  2339. overflow: hidden;
  2340. padding-top: 6px;
  2341. width: 593px;
  2342. }
  2343. .vst-ok {
  2344. color: #3b9de8;
  2345. font-weight: 600;
  2346. display: inline-block;
  2347. height: 17px;
  2348. overflow: hidden;
  2349. padding-top: 6px;
  2350. max-width: 600px;
  2351. }
  2352. .vst-ok a {
  2353. color: #326b9b;
  2354. }
  2355. .vst-ok a:hover {
  2356. color: #ff6701;
  2357. }
  2358. .vst-ok a:active {
  2359. color: #f72b44;
  2360. }
  2361. .data {
  2362. margin: 0 0 90px 0;
  2363. }
  2364. .data-col1 {
  2365. width: 148px;
  2366. }
  2367. .data-col1 td {
  2368. padding: 10px 0 0 5px;
  2369. }
  2370. .data-col1 tr:first-child td {
  2371. padding: 59px 0 0 5px;
  2372. }
  2373. .login-box td,
  2374. .data td {
  2375. color: #4b4b4b;
  2376. font-size: 14px;
  2377. padding-bottom: 3px;
  2378. font-weight: 600;
  2379. }
  2380. .input-label {
  2381. padding-top: 20px;
  2382. }
  2383. .data input[type="checkbox"] {
  2384. display: inline;
  2385. cursor: pointer;
  2386. }
  2387. .step-top {
  2388. padding-top: 24px;
  2389. }
  2390. .step-top-small {
  2391. padding-top: 18px;
  2392. }
  2393. .jump-top {
  2394. margin-top: -60px;
  2395. }
  2396. .jump-small-top {
  2397. margin-top: -12px;
  2398. }
  2399. .float-right {
  2400. display: inline-block;
  2401. float: right;
  2402. }
  2403. .data a {
  2404. text-decoration: none;
  2405. }
  2406. label {
  2407. cursor: pointer;
  2408. }
  2409. label:hover {
  2410. color: #333;
  2411. }
  2412. .vst-input {
  2413. background-color: #fff;
  2414. border: 1px solid #cfcfcf;
  2415. border-radius: 4px;
  2416. color: #4e4e4e;
  2417. font-family: 'Exo 2', Arial, Arial, Helvetica, sans-serif;
  2418. font-size: 13px;
  2419. height: 20px;
  2420. margin: 2px 6px 0 0;
  2421. padding: 8px 3px 8px 14px;
  2422. width: 360px;
  2423. font-weight: normal;
  2424. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2425. }
  2426. .vst-input:hover {
  2427. border: 1px solid #909090;
  2428. }
  2429. .vst-input:focus {
  2430. border: 1px solid #55C9C0;
  2431. background-color: #D7F9FF;
  2432. color: #333;
  2433. }
  2434. .vst-input:disabled,
  2435. .vst-list:disabled {
  2436. background-color: #e0e0e0;
  2437. }
  2438. .vst-input:focus:disabled {
  2439. border-color: #f1f1f1;
  2440. background-color: #f1f1f1;
  2441. }
  2442. .vst-input.long {
  2443. width: 832px;
  2444. }
  2445. .vst-input.short {
  2446. width: 200px;
  2447. }
  2448. .vst-list {
  2449. background-color: #fff;
  2450. border: 1px solid #ccc;
  2451. border-radius: 4px;
  2452. color: #4e4e4e;
  2453. font-family: 'Exo 2', Arial, Helvetica,sans-serif;
  2454. font-size: 13px;
  2455. font-weight: normal;
  2456. height: 36px;
  2457. cursor: pointer;
  2458. margin: 2px 6px 0 0;
  2459. min-width: 380px;
  2460. padding: 4px 1px 4px 10px;
  2461. background-image: url("/images/sprite.png?1446554103");
  2462. background-position: -70px -607px;
  2463. width: 380px;
  2464. appearance:none;
  2465. -moz-appearance:none;
  2466. -webkit-appearance:none;
  2467. text-shadow: 0 0 0 #4b4b4b;
  2468. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2469. }
  2470. .vst-list.long-2 {
  2471. width: 486px;
  2472. background-position: 502px -604px;
  2473. }
  2474. .vst-list option {
  2475. padding: 6px 1px 6px 15px;
  2476. }
  2477. .vst-list:hover {
  2478. border: 1px solid #909090;
  2479. }
  2480. .vst-list:focus {
  2481. border: 1px solid #55C9C0;
  2482. color: #333;
  2483. }
  2484. .vst-list.flat {
  2485. border: 1px solid #fff;
  2486. color: #326b9b;
  2487. text-transform: uppercase;
  2488. font-weight: 600;
  2489. font-size: 13px;
  2490. margin-left: -10px;
  2491. background-position: -60px -609px;
  2492. text-shadow: none !important;
  2493. box-shadow: none !important;
  2494. }
  2495. .vst-list.flat:hover {
  2496. color: #ff6701;
  2497. }
  2498. .vst-list.flat option {
  2499. color: #4e4e4e;
  2500. }
  2501. a.vst-text,
  2502. a.vst-text b{
  2503. color: #326b9b;
  2504. }
  2505. a.vst-text:hover,
  2506. a.vst-text:hover b{
  2507. color: #ff6701;
  2508. }
  2509. a.vst-text:active,
  2510. a.vst-text:active b{
  2511. color: #ff6701;
  2512. }
  2513. .vst-textinput {
  2514. background-color: #fff;
  2515. border: 1px solid #cfcfcf;
  2516. border-radius: 4px;
  2517. color: #4e4e4e;
  2518. font-size: 13px;
  2519. padding: 5px;
  2520. width: 560px;
  2521. height: 90px;
  2522. font-family: 'Exo 2', Arial, Helvetica, sans-serif;
  2523. padding: 7px 1px 3px 14px;
  2524. font-weight: normal;
  2525. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2526. }
  2527. .vst-textinput:hover {
  2528. border: 1px solid #909090;
  2529. }
  2530. .vst-textinput:focus {
  2531. border: 1px solid #55C9C0;
  2532. background-color: #D7F9FF;
  2533. color: #333;
  2534. }
  2535. .vst-textinput:disabled {
  2536. background-color: #f1f1f1;
  2537. }
  2538. .vst-textinput.console{
  2539. font-size: 13px;
  2540. width: 630px;
  2541. height: 300px;
  2542. font-family:"Lucida Console", Monaco, monospace;
  2543. white-space: pre;
  2544. }
  2545. .vst-textinput.short {
  2546. width: 360px;
  2547. }
  2548. #advanced-options .console{
  2549. width: 833px;
  2550. height: 600px;
  2551. }
  2552. .generate {
  2553. color: #326b9b;
  2554. text-decoration: underline;
  2555. cursor: pointer;
  2556. margin-left: -3px;
  2557. padding: 0 3px;
  2558. }
  2559. .generate:hover {
  2560. background-color: #ff6701;
  2561. border-color: #ff6701;
  2562. color: #fff;
  2563. }
  2564. .generate:active {
  2565. background-color: #F7D616;
  2566. border-color: #F7D616;
  2567. }
  2568. .vst-advanced {
  2569. border-bottom: 0px solid #326b9b;
  2570. color: #326b9b;
  2571. font-size: 12px;
  2572. padding: 2px 2px 0;
  2573. text-decoration: none;
  2574. text-transform: uppercase;
  2575. }
  2576. .login-box .vst-advanced:hover {
  2577. color: #ff6701;
  2578. background-color: transparent;
  2579. border-color: transparent;
  2580. }
  2581. .vst-advanced:hover {
  2582. color: #fff;
  2583. background-color: #ff6701;
  2584. border-color: #ff6701;
  2585. text-decoration: none;
  2586. }
  2587. .login-box .vst-advanced:active,
  2588. .vst-advanced:active {
  2589. color: #fff;
  2590. background-color: #F7D616;
  2591. border-color: #F7D616;
  2592. text-decoration: none;
  2593. }
  2594. .login-box .vst-advanced {
  2595. border-bottom: none;
  2596. color: #326b9b;
  2597. font-size: 10px;
  2598. padding: 2px 2px 0;
  2599. text-decoration: none;
  2600. text-transform: uppercase;
  2601. }
  2602. .vst-checkbox {
  2603. font-size: 14px;
  2604. margin: 2px 6px 0 3px;
  2605. padding: 5px;
  2606. }
  2607. .lets-encrypt-note {
  2608. color: #89a40a !important;
  2609. font-style: italic;
  2610. font-weight: normal !important;
  2611. height: 30px;
  2612. padding-top: 10px;
  2613. vertical-align: top;
  2614. }
  2615. .additional-control {
  2616. margin-left: 17px;
  2617. color: #326b9b;
  2618. border-bottom: 0px solid #326b9b;
  2619. font-size: 12px;
  2620. cursor: pointer;
  2621. text-transform: uppercase;
  2622. font-weight: 600;
  2623. padding: 2px 2px 0;
  2624. text-decoration: none;
  2625. }
  2626. .additional-control:hover {
  2627. background-color: #ff6701;
  2628. border-color: #ff6701;
  2629. color: #fff;
  2630. }
  2631. .additional-control:active {
  2632. color: #fff;
  2633. background-color: #aaa;
  2634. }
  2635. .additional-control.ftp-remove-user {
  2636. padding: 2px 0 0 0;
  2637. }
  2638. .additional-control.delete:hover,
  2639. .additional-control.ftp-remove-user:hover {
  2640. background-color: #FF3438;
  2641. border-color: #FF3438;
  2642. }
  2643. .additional-control.delete:active,
  2644. .additional-control.ftp-remove-user:active {
  2645. background-color: #FF5F5F;
  2646. border-color: #FF5F5F;
  2647. }
  2648. .additional-control.add:hover {
  2649. background-color: #3b9de8;
  2650. border-color: #3b9de8;
  2651. }
  2652. .additional-control.add:active{
  2653. background-color: #54a6e5;
  2654. border-color: #54a6e5;
  2655. }
  2656. .additional-control.remove-ns {
  2657. display: none;
  2658. }
  2659. .data .step-left {
  2660. padding-left: 50px;
  2661. }
  2662. .hide-password {
  2663. color: #2361a1;
  2664. margin-left: -36px;
  2665. padding-left: 3px;
  2666. z-index: 1;
  2667. }
  2668. .toggle-psw-visibility-icon {
  2669. cursor: pointer;
  2670. opacity: 1;
  2671. margin: -2px;
  2672. }
  2673. .show-passwords-enabled-action {
  2674. opacity: 0.4;
  2675. }
  2676. .ftp-path-value,
  2677. .hint,
  2678. td.hint {
  2679. color: #777;
  2680. font-size: 14px;
  2681. font-style: italic;
  2682. font-weight: normal;
  2683. }
  2684. .ftp-path-prefix { padding-top: 12px; font-size: 12px; color: #555; }
  2685. .ui-button,
  2686. .button {
  2687. filter:chroma(color=#000);
  2688. cursor: pointer;
  2689. border-radius: 3px 3px 3px 3px;
  2690. font-size: 13px;
  2691. font-weight: 700;
  2692. padding: 2px 16px 3px 16px;
  2693. width: 108px;
  2694. height: 34px;
  2695. color: #fafafa;
  2696. border: 1px solid #3b9de8;
  2697. background-color: #3b9de8;
  2698. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  2699. text-shadow: 0px 1px 1px rgba(0,0,0,0.1);
  2700. }
  2701. .ui-button:hover,
  2702. .button:hover {
  2703. color: #fff !important;
  2704. border: 1px solid #54a6e5 !important;
  2705. background-color: #54a6e5 !important;
  2706. }
  2707. .ui-button:active,
  2708. .button:active {
  2709. border: 1px solid #378ccd !important;
  2710. background-color: #378ccd !important;
  2711. color: #fff !important;
  2712. text-shadow: 0px -1px 1px rgba(0,0,0,0.1);
  2713. }
  2714. .ui-button:focus,
  2715. .button:focus {
  2716. border: 1px solid #3b9de8;
  2717. background-color: #3b9de8;
  2718. }
  2719. .ui-button.cancel,
  2720. .button.cancel {
  2721. color: #777;
  2722. border: 1px solid #DFDEDD;
  2723. background-color: #DFDEDD;
  2724. }
  2725. .ui-button.cancel:hover,
  2726. .button.cancel:hover {
  2727. color: #fff;
  2728. border: 1px solid #999;
  2729. background-color: #999;
  2730. }
  2731. .ui-button.cancel:active,
  2732. .button.cancel:active {
  2733. border: 1px solid #378ccd;
  2734. background-color: #378ccd;
  2735. }
  2736. a.button.cancel {
  2737. padding: 8px 38px;
  2738. text-transform: capitalize;
  2739. }
  2740. .ui-dialog button.cancel {
  2741. color: #000;
  2742. border: 1px solid #4b4b4b;
  2743. background-color: #4b4b4b;
  2744. }
  2745. /*
  2746. .ui-dialog button.cancel:hover {
  2747. color: #fff;
  2748. border: 1px solid #999;
  2749. background-color: #999;
  2750. }
  2751. .ui-dialog button.cancel:active {
  2752. border: 1px solid #54a6e5;
  2753. background-color: #54a6e5;
  2754. }
  2755. */
  2756. .ui-button span {
  2757. color: #fff;
  2758. }
  2759. .ui-button:hover span {
  2760. color: #4b4b4b !important;
  2761. }
  2762. .ui-button:active span {
  2763. color: #4b4b4b;
  2764. }
  2765. .ui-button.cancel span {
  2766. color: #777;
  2767. }
  2768. .ui-button:hover span {
  2769. color: #fff;
  2770. }
  2771. .ui-button:active span {
  2772. color: #fff;
  2773. }
  2774. .ui-dialog button.cancel span {
  2775. color: #ccc;
  2776. }
  2777. .unlim-trigger {
  2778. cursor: pointer;
  2779. margin-left: -40px;
  2780. padding-left: 4px;
  2781. margin-bottom: -2px;
  2782. z-index: 1;
  2783. }
  2784. .optional {
  2785. font-size: 13px;
  2786. padding: 0 0 0 6px;
  2787. font-weight: normal;
  2788. }
  2789. .data-active b {
  2790. color: #3b9de8;
  2791. font-size: 12px;
  2792. text-transform: uppercase;
  2793. }
  2794. .data-suspended b {
  2795. color: #A3A3A3;
  2796. font-size: 12px;
  2797. font-weight: 600;
  2798. text-transform: uppercase;
  2799. }
  2800. .data-date {
  2801. font-weight: normal;
  2802. color: #777;
  2803. font-size: 13px;
  2804. line-height: 23px;
  2805. }
  2806. .data-dotted {
  2807. vertical-align: top;
  2808. }
  2809. .mail-infoblock-td {
  2810. vertical-align: top;
  2811. }
  2812. .mail-infoblock {
  2813. margin-left: -130px;
  2814. font-size: 13px;
  2815. color: #777;
  2816. border: 1px solid #d9d9d9;
  2817. padding: 0px 5px 12px 20px;
  2818. margin-top: 47px;
  2819. min-width: 320px;
  2820. overflow: hidden;
  2821. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2822. border-radius: 4px;
  2823. }
  2824. .mail-infoblock:hover {
  2825. overflow: visible;
  2826. }
  2827. .mail-infoblock td {
  2828. color: #505050;
  2829. font-size: 11.5px;
  2830. height: 20px;
  2831. font-weight: normal;
  2832. }
  2833. .mail-infoblock td:first-child{
  2834. padding-right: 14px;
  2835. font-weight: 600;
  2836. }
  2837. .mail-infoblock div {
  2838. white-space: nowrap;
  2839. }
  2840. .mail-infoblock a {
  2841. color: #326b9b;
  2842. }
  2843. .mail-infoblock a:hover {
  2844. color: #ff6701;
  2845. }
  2846. .additional-info {
  2847. margin-left: 30px;
  2848. margin-top: 30px;
  2849. width: 547px;
  2850. }
  2851. .additional-info td {
  2852. font-size: 13px;
  2853. height: 22px;
  2854. font-weight: normal;
  2855. }
  2856. .additional-info td.details {
  2857. padding-left: 20px;
  2858. }
  2859. :focus {outline:none;}
  2860. ::-moz-focus-inner {border:0;}
  2861. .login {
  2862. background-color: #fff;
  2863. box-shadow: 0px 9px 35px rgba(70, 70, 70, 0.7);
  2864. font-family: 'Exo 2', Arial, Helvetica,sans-serif;
  2865. margin: 0;
  2866. padding: 0;
  2867. text-align: left;
  2868. vertical-align: top;
  2869. width: 500px;
  2870. border-radius: 5px;
  2871. }
  2872. .qr-code {
  2873. border: 1px solid #cfcfcf;
  2874. border-radius: 4px;
  2875. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2876. }
  2877. .password-option {
  2878. margin-top: 15px;
  2879. }
  2880. .login a.error {
  2881. color: #BE5ABF;
  2882. }
  2883. .hestiacp {
  2884. color: #505050;
  2885. font-size: 10px;
  2886. text-align: right;
  2887. }
  2888. .hestiacp:hover {
  2889. color: #326b9b;
  2890. }
  2891. .hestiacp:active {
  2892. color: #ff6701;
  2893. }
  2894. .login-bottom {
  2895. height: 50px;
  2896. margin: 0;
  2897. padding: 0 26px 0 0;
  2898. text-align: right;
  2899. vertical-align: top;
  2900. width: 474px;
  2901. }
  2902. .l-unit.selected {
  2903. background-color: #feef9a;
  2904. color: #4b4b4b;
  2905. border-bottom: 1px solid #c0b990;
  2906. }
  2907. .l-unit.selected b,
  2908. .l-unit.selected strong {
  2909. color: #4b4b4b;
  2910. }
  2911. /* MAIN MENU COLLAPSED */
  2912. .collapsed .l-stat {
  2913. padding-top: 20px;
  2914. }
  2915. .collapsed .l-stat__col a {
  2916. height: 0;
  2917. min-height: 0;
  2918. overflow: hidden;
  2919. }
  2920. .collapsed .l-stat__col-title {
  2921. padding-top: 2px;
  2922. }
  2923. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2924. margin-top: 93px;
  2925. position: fixed;
  2926. }
  2927. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2928. margin-top: 138px;
  2929. position: fixed;
  2930. }
  2931. div.l-content.collapsed .l-sort {
  2932. margin-top: 94px;
  2933. }
  2934. .l-content > .units.l-center::before {
  2935. content: '';
  2936. display: block;
  2937. height: 260px;
  2938. }
  2939. form#vstobjects {
  2940. padding-top: 280px;
  2941. }
  2942. form#vstobjects.suspended {
  2943. background-color: #EAEAEA;
  2944. padding-bottom: 30px;
  2945. }
  2946. #add-icon {
  2947. width: 45px;
  2948. height: 45px;
  2949. background-image: url("/images/sprite.png?1446554103");
  2950. background-position: -378px -107px;
  2951. background-repeat: no-repeat;
  2952. display: inline-block;
  2953. z-index: 3;
  2954. }
  2955. .l-sort__create-btn.restore #add-icon {
  2956. background-position: -378px -250px;
  2957. }
  2958. .l-sort__create-btn.edit #add-icon {
  2959. background-position: -378px -154px;
  2960. }
  2961. #tooltip {
  2962. background-color: #3b9de8;
  2963. border-radius: 15px;
  2964. bottom: 6px;
  2965. color: #fff;
  2966. font-size: 13px;
  2967. font-weight: 600;
  2968. height: 26px;
  2969. left: 12px;
  2970. letter-spacing: 0;
  2971. line-height: 25px;
  2972. margin-left: 12px;
  2973. margin-top: 7px;
  2974. padding: 3px 14px 3px 27px;
  2975. position: absolute;
  2976. text-transform: uppercase;
  2977. white-space: nowrap;
  2978. word-break: keep-all;
  2979. z-index: -1;
  2980. }
  2981. .l-sort__create-btn:active #add-icon {
  2982. background-position: -425px -107px;
  2983. }
  2984. .l-sort__create-btn.restore:active #add-icon {
  2985. background-position: -425px -250px !important;
  2986. }
  2987. .l-sort__create-btn.edit:active #add-icon {
  2988. background-position: -425px -154px !important;
  2989. }
  2990. .l-sort__create-btn.edit:hover #tooltip {
  2991. background-color: #55C9C0;
  2992. }
  2993. .l-sort__create-btn.edit:active #tooltip {
  2994. background-color: #3BF0E6 !important;
  2995. }
  2996. .l-sort__create-btn:active #tooltip {
  2997. background-color: #54a6e5;
  2998. }
  2999. .status-icon-red {
  3000. color: #ff3333;
  3001. }
  3002. .status-icon-green {
  3003. color: #53ba55;
  3004. }
  3005. .status-icon-orange {
  3006. color: #faab00;
  3007. }
  3008. .noselect {
  3009. -webkit-touch-callout: none;
  3010. -webkit-user-select: none;
  3011. -khtml-user-select: none;
  3012. -moz-user-select: none;
  3013. -ms-user-select: none;
  3014. -user-select: none;
  3015. }
  3016. .search-input {
  3017. background-color: #fff;
  3018. border: 1px solid #ddd;
  3019. height: 21px;
  3020. line-height: 28px;
  3021. padding-left: 7px;
  3022. float: left;
  3023. width: 120px;
  3024. border-top-left-radius: 4px;
  3025. border-bottom-left-radius: 4px;
  3026. /* visibility: hidden;*/
  3027. -webkit-transition: width .2s ease-out;
  3028. -moz-transition: width .2s ease-out;
  3029. -o-transition: width .2s ease-out;
  3030. transition: width .2s ease-out;
  3031. }
  3032. .lang-ru .search-input{
  3033. width: 74px;
  3034. }
  3035. .lang-ru .search-input.activated{
  3036. width: 70px;
  3037. }
  3038. .search-input.activated{
  3039. width: 120px;
  3040. visibility: visible;
  3041. }
  3042. .search-input:focus {
  3043. /*
  3044. background-color: #e8fcff;
  3045. border-color: #75c9c2;
  3046. color: #333;
  3047. */
  3048. }
  3049. .float-left {
  3050. float: left;
  3051. }
  3052. .float-right {
  3053. float: right;
  3054. }
  3055. .display-inline-block {
  3056. display: inline-block;
  3057. }
  3058. .width-100p {
  3059. width: 100%;
  3060. }
  3061. .l-sort-toolbar table td {
  3062. float: left;
  3063. }
  3064. .l-sort-toolbar__search-box {
  3065. float: right !important;
  3066. padding-top: 3px;
  3067. padding-right: 0 !important;
  3068. }
  3069. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  3070. -background-color: #dfdedd;
  3071. }
  3072. .shortcuts {
  3073. background: rgba(20, 20, 20, 0.92);
  3074. display: inline-block;
  3075. position: fixed;
  3076. left: 50%;
  3077. bottom: 0;
  3078. color: #eee;
  3079. width: 800px;
  3080. border: 1px solid rgba(255,255,255,0.7);
  3081. border-bottom: 0px;
  3082. font-size: 12px;
  3083. z-index: 120;
  3084. transform: translate(-50%, 0);
  3085. border-top-left-radius: 6px;
  3086. border-top-right-radius: 6px;
  3087. box-shadow: 0px 3px 40px rgba(0,0,0,0.6);
  3088. }
  3089. .shortcuts .header {
  3090. border-bottom: 1px solid #333;
  3091. height: 43px;
  3092. }
  3093. .shortcuts .title {
  3094. text-transform: uppercase;
  3095. color: #ffcc00;
  3096. padding: 7px 0 7px 14px;
  3097. display: inline-block;
  3098. float: left;
  3099. font-size: 14px;
  3100. letter-spacing: -0.01em;
  3101. }
  3102. .shortcuts .close {
  3103. background: url("/images/sprite.png?1446554103") repeat scroll -408px -469px;
  3104. cursor: pointer;
  3105. display: inline-block;
  3106. float: right;
  3107. height: 32px;
  3108. padding-top: 11px;
  3109. width: 46px;
  3110. }
  3111. .shortcuts .close:hover {
  3112. background-color: #000;
  3113. }
  3114. .shortcuts .close:active {
  3115. background-color: #55c9c0;
  3116. }
  3117. .shortcuts ul {
  3118. list-style-type: none;
  3119. padding: 30px 20px;
  3120. display: inline-block;
  3121. float: left;
  3122. width: 360px;
  3123. }
  3124. .shortcuts ul li {
  3125. padding: 5px 20px;
  3126. }
  3127. .shortcuts ul li.step-top {
  3128. padding-top: 30px;
  3129. }
  3130. .shortcuts ul li span {
  3131. color: #48F4EF;
  3132. display: inline-block;
  3133. font-weight: 600;
  3134. padding: 0 20px 0 0;
  3135. text-align: right;
  3136. /* width: 140px;*/
  3137. }
  3138. .shortcuts ul li span.bigger {
  3139. font-size: 18px;
  3140. }
  3141. .description {
  3142. font-weight: normal;
  3143. line-height: 25px;
  3144. padding-bottom: 45px;
  3145. margin-left: 50px;
  3146. }
  3147. .description ul{
  3148. margin-top: 15px;
  3149. list-style: none;
  3150. padding-left: 0;
  3151. }
  3152. .description li{
  3153. margin: 10px 0;
  3154. }
  3155. .description a {
  3156. line-height: 30px;
  3157. text-decoration: underline;
  3158. color: #326b9b;
  3159. }
  3160. .description a.purchase {
  3161. color: #FFF;
  3162. background-color: #3b9de8;
  3163. border: none;
  3164. border-radius: 3px;
  3165. font-size: 13px;
  3166. font-weight: 600;
  3167. padding: 7px 15px;;
  3168. text-transform: capitalize;
  3169. text-decoration: none;
  3170. }
  3171. .description a.purchase:hover {
  3172. background-color: #54a6e5;
  3173. color: #4b4b4b;
  3174. }
  3175. .description a.purchase:active {
  3176. background-color: #54a6e5;
  3177. color: #4b4b4b;
  3178. }
  3179. .description a.cancel {
  3180. background-color: #999;
  3181. border: none;
  3182. border-radius: 3px;
  3183. color: #fff;
  3184. font-size: 13px;
  3185. font-weight: 600;
  3186. padding: 7px 15px;
  3187. text-transform: capitalize;
  3188. text-decoration: none;
  3189. }
  3190. .description a.cancel:hover {
  3191. background-color: #326b9b;
  3192. }
  3193. .description a.cancel:active {
  3194. background-color: #5f9491;
  3195. }
  3196. .description.cancel-success {
  3197. color: #8fac0a;
  3198. font-weight: 600;
  3199. }
  3200. .description .licence {
  3201. padding: 20px 0;
  3202. color: #326b9b;
  3203. }
  3204. .description .licence input {
  3205. margin-left: 17px;
  3206. width: 137px;
  3207. }
  3208. .description span {
  3209. font-style: italic;
  3210. line-height: 45px;
  3211. padding-top: 20px;
  3212. }
  3213. .description .twoco {
  3214. font-style: italic;
  3215. line-height: 15px;
  3216. font-size: 13px;
  3217. }
  3218. .ui-dialog {
  3219. font-family: 'Exo 2', Arial, Helvetica, sans-serif !important;
  3220. font-weight: 500 !important;
  3221. background-color: rgba(245,245,245,0.87) !important;
  3222. box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.55) !important;
  3223. border-radius: 6px !important;
  3224. border: 1px solid rgba(255,255,255,0.9) !important;
  3225. text-align: center !important;
  3226. }
  3227. .ui-dialog .ui-dialog-content {
  3228. color: #121212 !important;
  3229. padding: 10px 26px 30px !important;
  3230. }
  3231. .ui-dialog-buttonpane {
  3232. border-color: #aaaaaa !important;
  3233. }
  3234. .ui-widget-overlay {
  3235. opacity: 0.8 !important;
  3236. background: rgba(10,10,10,0.9) !important;
  3237. }
  3238. .helper-container {
  3239. float: right;
  3240. height: 293px;
  3241. margin-bottom: -450px;
  3242. margin-top: 459px;
  3243. padding-top: 3px;
  3244. width: 563px;
  3245. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  3246. }
  3247. .context-helper {
  3248. text-transform: uppercase;
  3249. /*text-decoration: underline;*/
  3250. color: #777;
  3251. font-size: 12px;
  3252. cursor: pointer;
  3253. font-weight: 600;
  3254. float: right;
  3255. }
  3256. .context-helper:hover {
  3257. color: #55C9C0;
  3258. }
  3259. .context-helper:active {
  3260. color: #ff6701;
  3261. }
  3262. .cron-helper-tabs {
  3263. /* margin-top: 30px;*/
  3264. border: none !important;
  3265. font-family: 'Exo 2', Arial, Helvetica, sans-serif !important;
  3266. }
  3267. .cron-helper-tabs a {
  3268. color: #777;
  3269. font-size: 12px;
  3270. font-weight: 600;
  3271. line-height: 30px;
  3272. padding: 0 12px;
  3273. text-transform: uppercase;
  3274. }
  3275. .cron-helper-tabs a:hover {
  3276. color: #ff6701;
  3277. }
  3278. .cron-helper-tabs a:active {
  3279. color: #55C9C0;
  3280. }
  3281. .cron-helper-tabs .ui-tabs-selected a {
  3282. color: #ff6701;
  3283. }
  3284. .cron-helper-tabs select {
  3285. font-size: 15px !important;
  3286. }
  3287. .cron-helper-tabs select.short {
  3288. background-position: -388px -604px;
  3289. min-width: 30px;
  3290. width: 70px;
  3291. }
  3292. .cron-helper-tabs p {
  3293. color: #777;
  3294. font-size: 13px;
  3295. }
  3296. .cron-helper-tabs p span{
  3297. padding-right: 15px;
  3298. padding-left: 25px;
  3299. }
  3300. .cron-helper-tabs p span.first{
  3301. display: inline-block;
  3302. padding-right: 15px;
  3303. width: 100px;
  3304. padding-left: 0;
  3305. }
  3306. .cron-helper-tabs .button {
  3307. width: auto;
  3308. background-color: #55C9C0;
  3309. border: 1px solid #55C9C0;
  3310. text-transform: capitalize;
  3311. }
  3312. .cron-helper-tabs .button:hover {
  3313. background-color: #5BD8CF;
  3314. border: 1px solid #5BD8CF;
  3315. }
  3316. .cron-helper-tabs .button:active {
  3317. background-color: #4FBCB4;
  3318. border: 1px solid #4FBCB4;
  3319. }
  3320. .context-helper-close {
  3321. background: rgba(0, 0, 0, 0) url("/images/sprite.png?1446554103") repeat scroll -408px -469px;
  3322. cursor: pointer;
  3323. display: inline-block;
  3324. float: right;
  3325. height: 32px;
  3326. padding-top: 11px;
  3327. width: 46px;
  3328. filter: contrast(50%);
  3329. }
  3330. .context-helper-close:hover {
  3331. background-color: #aaa;
  3332. filter: none;
  3333. }
  3334. .context-helper-close:active {
  3335. background-color: #999;
  3336. filter: none;
  3337. }
  3338. @media screen and (max-width: 950px) {
  3339. .helper-container {
  3340. display: none;
  3341. }
  3342. }