styles.min.css 76 KB

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