styles.min.css 77 KB

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