styles.min.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. /* Syntax Quick Reference
  2. --------------------------
  3. column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  4. span($ratio: 1, $offset: 0)
  5. shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  6. unshift()
  7. edit()
  8. center($max_width: 1410px, $pad: 0)
  9. stack($pad: 0, $align: false)
  10. unstack()
  11. align($direction: both)
  12. cf()
  13. */
  14. /**
  15. * Grid settings.
  16. * All values are defaults and can therefore be easily overidden.
  17. */
  18. /**
  19. * List functions courtesy of the wonderful folks at Team Sass.
  20. * Check out their awesome grid: Singularity.
  21. */
  22. /**
  23. * Get percentage from a given ratio.
  24. * @param {number} [$ratio=1] - The column ratio of the element.
  25. * @returns {number} - The percentage value.
  26. */
  27. /**
  28. * Work out the column widths based on the ratio and gutter sizes.
  29. * @param {number} [$ratios=1] - The column ratio of the element.
  30. * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
  31. * @returns {list} $width $gutter - A list containing the with and gutter for the element.
  32. */
  33. /**
  34. * Get the set layout direction for the project.
  35. * @returns {string} $direction - The layout direction.
  36. */
  37. /**
  38. * Replace a specified list value with a new value (uses built in set-nth() if available)
  39. * @param {list} $list - The list of values you want to alter.
  40. * @param {number} $index - The index of the list item you want to replace.
  41. * @param {*} $value - The value you want to replace $index with.
  42. * @returns {list} $list - The list with the value replaced or removed.
  43. * @warn if an invalid index is supplied.
  44. */
  45. /**
  46. * Reverse a list (progressively enhanced for Sass 3.3)
  47. * @param {list} $list - The list of values you want to reverse.
  48. * @returns {list} $result - The reversed list.
  49. */
  50. /**
  51. * Get the opposite direction to a given value.
  52. * @param {string} $dir - The direction you want the opposite of.
  53. * @returns {string} - The opposite direction to $dir.
  54. * @warn if an incorrect string is provided.
  55. */
  56. /**
  57. * Style an element as a column with a gutter.
  58. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  59. * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
  60. * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
  61. * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
  62. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  63. */
  64. /**
  65. * An alias for the column mixin.
  66. * @param [$args...] - All arguments get passed through to column().
  67. */
  68. /**
  69. * Get the width of a column and nothing else.
  70. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  71. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  72. */
  73. /**
  74. * Get the gutter size of a column and nothing else.
  75. * @param {number} [ratios=1] - A width relative to its container as a fraction.
  76. * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
  77. */
  78. /**
  79. * An alias for the column-width function.
  80. * @param [$args...] - All arguments get passed through to column().
  81. */
  82. /**
  83. * An alias for the column-gutter function.
  84. * @param [$args...] - All arguments get passed through to column().
  85. */
  86. /**
  87. * Style an element as a column without any gutters for a seamless row.
  88. * @param {number} [$ratios=1] - A width relative to its container as a fraction.
  89. * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
  90. * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
  91. * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
  92. */
  93. /**
  94. * Reorder columns without altering the HTML.
  95. * @param {number} [$ratios=0] - Specify how far along you want the element to move.
  96. * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
  97. * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
  98. */
  99. /**
  100. * Reset an element that has had shift() applied to it.
  101. */
  102. /**
  103. * View the grid and its layers for easy debugging.
  104. * @param {string} [$color=black] - The background tint applied.
  105. * @param {boolean} [$important=false] - Whether to apply the style as !important.
  106. */
  107. /**
  108. * Alias for edit().
  109. */
  110. /**
  111. * Horizontally center an element.
  112. * @param {number} [$max-width=1410px] - The max width the element can be.
  113. * @param {number} [$pad=0] - Specify the element's left and right padding.
  114. */
  115. /**
  116. * Uncenter an element.
  117. */
  118. /**
  119. * Stack an element so that nothing is either side of it.
  120. * @param {number} [$pad=0] - Specify the element's left and right padding.
  121. * @param {boolean/string} [$align=false] - Specify the text align for the element.
  122. */
  123. /**
  124. * Unstack an element.
  125. */
  126. /**
  127. * Center an element on either or both axes.
  128. * @requires A parent container with relative positioning.
  129. * @param {string} [$direction=both] - Specify which axes to center the element on.
  130. */
  131. /**
  132. * Apply a clearfix to an element.
  133. */
  134. /* ==========================================================================
  135. Normalize.scss settings
  136. ========================================================================== */
  137. /**
  138. * Includes legacy browser support IE6/7
  139. *
  140. * Set to false if you want to drop support for IE6 and IE7
  141. */
  142. /* ==========================================================================
  143. Define Exo 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: 39px;
  756. padding: 11px 14px;
  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 18px;
  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 .empty {
  880. text-align: center;
  881. font-size: 1.2rem;
  882. font-weight: normal;
  883. }
  884. .notification-container .empty .status-icon {
  885. color: #54a6e5;
  886. }
  887. .notification-container .unseen {
  888. color: #6f6f6f;
  889. }
  890. .notification-container li {
  891. border-bottom: 1px solid #e9e4e4;
  892. padding: 30px 20px 50px 20px;
  893. }
  894. .notification-container li:last-child {
  895. border-bottom: none;
  896. }
  897. .notification-container .mark-seen {
  898. background-color: #cc3366;
  899. border: 1px solid #c41650;
  900. border-radius: 10px;
  901. cursor: pointer;
  902. display: none;
  903. float: right;
  904. height: 7px;
  905. margin-right: -5px;
  906. margin-top: 9px;
  907. width: 7px;
  908. }
  909. .notification-container .mark-seen:hover {
  910. background-color: #fff;
  911. border-color: #e83b75;
  912. }
  913. .notification-container .mark-seen:active {
  914. background-color: #777;
  915. border-color: #777;
  916. }
  917. .notification-container .unseen .mark-seen{
  918. display: inline-block;
  919. }
  920. .notification-container .title {
  921. color: #9e9e9e;
  922. font-weight: 600;
  923. line-height: 30px;
  924. padding: 0;
  925. text-transform: none;
  926. float: none;
  927. display: block;
  928. }
  929. .notification-container .title a {
  930. color: #9e9e9e;
  931. }
  932. .notification-container .unseen .title a,
  933. .notification-container .unseen .title {
  934. color: #cc3366;
  935. }
  936. .notification-container .unseen .title a:hover {
  937. color: #e83b75;
  938. }
  939. .notification-container .unseen .title a:active {
  940. color: #e83b75;
  941. }
  942. .notification-container a {
  943. color: #5ABDB5;/* #eee;*/
  944. }
  945. .notification-container a:hover {
  946. color: #2CA99B;
  947. }
  948. .notification-container a:active {
  949. color: #00C0C0;
  950. }
  951. .notification-container .icon {
  952. display: inline-block;
  953. width: 0;
  954. }
  955. .notification-container .icon.starred {
  956. display: inline-block;
  957. width: 21px;
  958. }
  959. .notification-container .time {
  960. float: right;
  961. margin-top: 1rem;
  962. font-size: 0.7rem;
  963. }
  964. .l-stat {
  965. margin: 34px auto;
  966. position: fixed;
  967. background-color: #fff;
  968. z-index: 100;
  969. padding-top: 36px;
  970. overflow: hidden;
  971. text-align: center;
  972. display: flex;
  973. width: 100%;
  974. max-width: 1020px;
  975. }
  976. .l-stat__col {
  977. display: inline-block;
  978. vertical-align: top;
  979. flex: 1;
  980. }
  981. .l-stat__col a {
  982. display: inline-block;
  983. padding-bottom: 36px;
  984. min-height: 70px;
  985. width: 136px;
  986. border-bottom: 4px solid #fff;
  987. overflow: hidden;
  988. background-color: #fff;
  989. padding-top: 3px;
  990. margin-top: -3px;
  991. padding-left: 5px;
  992. }
  993. .l-stat__col a:hover {
  994. border-bottom: 4px solid #e83b75;
  995. transition: 0.3s;
  996. }
  997. .l-stat__col a:active {
  998. border-bottom: 4px solid #d53067;
  999. }
  1000. .l-stat__col--active a {
  1001. border-bottom: 4px solid #cc3366;
  1002. }
  1003. .l-stat.active .l-stat__col.focus a {
  1004. border-bottom: 4px solid #5edad0;
  1005. }
  1006. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  1007. color: #36B3A9;
  1008. }
  1009. .l-stat__col a:hover .l-stat__col-title {
  1010. color: #e83b75;
  1011. }
  1012. .l-stat__col a:active .l-stat__col-title {
  1013. color: #d53067;
  1014. }
  1015. .l-stat__col ul {
  1016. list-style-type: none;
  1017. font-size: 0.8rem;
  1018. padding-left: 0;
  1019. line-height: 14px;
  1020. }
  1021. .l-stat__col li {
  1022. color: #a0a0a0;
  1023. margin-bottom: 8px;
  1024. text-transform: lowercase;
  1025. }
  1026. .l-stat__col span {
  1027. padding-left: 15px;
  1028. }
  1029. .l-stat__col-title {
  1030. text-transform: uppercase;
  1031. font-weight: 600;
  1032. color: #5b5b5b;
  1033. min-height: 21px;
  1034. }
  1035. .l-stat__col--active .l-stat__col-title {
  1036. color: #cc3366;
  1037. font-size: 22px;
  1038. margin-top: -7px;
  1039. letter-spacing: -1px;
  1040. margin-right: -4px;
  1041. }
  1042. .l-stat__col .fas {
  1043. color: #999999;
  1044. padding: 4px;
  1045. }
  1046. .l-separator.selected,
  1047. .l-separator {
  1048. height: 1px;
  1049. border-top: 1px solid #ddd;
  1050. }
  1051. div.l-content > div.l-separator:nth-of-type(2) {
  1052. margin-top: 180px;
  1053. width: 100%;
  1054. position: fixed;
  1055. z-index: 120;
  1056. }
  1057. div.l-content > div.l-separator:nth-of-type(4) {
  1058. margin-top: 225px;
  1059. width: 100%;
  1060. position: fixed;
  1061. z-index: 110;
  1062. border-top: none;
  1063. border-bottom: 1px solid #ddd;
  1064. }
  1065. .l-sort {
  1066. position: fixed;
  1067. width: 100%;
  1068. max-width: 1020px;
  1069. background-color: #fff;
  1070. z-index: 120;
  1071. margin-top: 181px;
  1072. height: 44px;
  1073. }
  1074. .l-sort__create-btn {
  1075. background-position: -331px -107px;
  1076. background-repeat: no-repeat;
  1077. bottom: -23px;
  1078. display: inline-block;
  1079. height: 45px;
  1080. left: 30px;
  1081. position: absolute;
  1082. width: 45px;
  1083. z-index: 3;
  1084. }
  1085. .l-sort__create-btn:hover {
  1086. background-position: -378px -107px;
  1087. }
  1088. .l-sort__create-btn:active {
  1089. background-position: -425px -107px;
  1090. }
  1091. .l-sort__create-btn--active {
  1092. background-position: -425px -107px;
  1093. }
  1094. .l-sort__create-btn.restore {
  1095. background-position: -331px -250px;
  1096. bottom: -22px;
  1097. }
  1098. .l-sort__create-btn.restore:hover {
  1099. background-position: -331px -250px;
  1100. }
  1101. .l-sort__create-btn.restore:active {
  1102. background-position: -331px -250px;
  1103. }
  1104. .l-sort__create-btn.edit {
  1105. background-position: -331px -154px;
  1106. bottom: -22px;
  1107. }
  1108. .l-sort__create-btn.edit:hover {
  1109. background-position: -378px -154px;
  1110. }
  1111. .l-sort__create-btn.edit:active {
  1112. background-position: -425px -154px;
  1113. }
  1114. .context-menu.sort-order {
  1115. display: inline-block;
  1116. position: absolute;
  1117. z-index: 3;
  1118. left: 397px;
  1119. margin: 0;
  1120. overflow: hidden;
  1121. top: 42px;
  1122. background-color: rgba(255,255,255,0.95);
  1123. list-style-type: none;
  1124. box-shadow: 0 2px 12px 0 rgba(20, 20, 20, 0.45);
  1125. border-radius: 8px;
  1126. border: 1px solid rgba(255,255,255,1);
  1127. padding: 0px;
  1128. }
  1129. .context-menu.sort-order li {
  1130. padding: 0;
  1131. }
  1132. .context-menu li {
  1133. border-bottom: 1px solid #ddd;
  1134. color: #2e2e2e;
  1135. cursor: pointer;
  1136. font-size: 0.8rem;
  1137. padding: 12px;
  1138. }
  1139. .context-menu.sort-order span.name {
  1140. display: inline-block;
  1141. padding: 12px;
  1142. width: 117px;
  1143. font-weight: 500;
  1144. }
  1145. .context-menu.sort-order span.up {
  1146. display: inline-block;
  1147. padding: 12px 14px;
  1148. width: 16px;
  1149. }
  1150. .context-menu.sort-order span.active {
  1151. background-color: #4f8bbc !important;
  1152. color: #4686b8;
  1153. font-size: 0.8rem;
  1154. 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%);
  1155. text-shadow: 0px 1px rgba(255,255,255,0.8);
  1156. }
  1157. .context-menu.sort-order span:hover {
  1158. color: #3b9de8;
  1159. text-shadow: 1px 1px rgba(255,255,255,0.5);
  1160. 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%);
  1161. box-shadow: inset 0px 0px 1px #fff,
  1162. inset 0px 0px 6px rgba(255,255,255,0.6);
  1163. transition: 0.2s;
  1164. }
  1165. .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
  1166. 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%);
  1167. color: #046c98;
  1168. text-shadow: 0px -1px 1px rgba(255,255,255,0.5);
  1169. box-shadow: inset 0px 0px 1px #fff,
  1170. inset -1px -1px 4px rgba(220,220,220,0.4);
  1171. }
  1172. .context-menu.sort-order span.name i.fas.fa-sort-amount-down {
  1173. float: right;
  1174. margin-top: 2px;
  1175. }
  1176. .context-menu.sort-order li:last-child {
  1177. border-bottom: none;
  1178. }
  1179. .l-sort-toolbar {
  1180. float: right;
  1181. padding: 7px 0 7px 0;
  1182. text-transform: uppercase;
  1183. font-size: 0.8rem;
  1184. }
  1185. .l-sort-toolbar table{
  1186. float: right;
  1187. }
  1188. .l-sort-toolbar td.toggle-all {
  1189. padding-top: 7px;
  1190. padding-right: 10px;
  1191. }
  1192. .l-sort-toolbar .sort-by {
  1193. cursor: pointer;
  1194. padding-top: 7px;
  1195. padding-left: 10px;
  1196. }
  1197. .l-sort-toolbar .sort-by:hover {
  1198. color: #4b4b4b;
  1199. }
  1200. .l-sort-toolbar .sort-by:hover b {
  1201. color: #4b4b4b;
  1202. }
  1203. .l-sort-toolbar .sort-by:active {
  1204. color: #3b9de8;
  1205. }
  1206. .l-sort-toolbar .sort-by:active b {
  1207. color: #3b9de8;
  1208. }
  1209. .l-sort-toolbar .sort-by b {
  1210. text-transform: uppercase;
  1211. padding-left: 3px;
  1212. font-size: 0.8rem;
  1213. }
  1214. .l-sort-toolbar .toggle-all:hover {
  1215. color: #4b4b4b;
  1216. }
  1217. .l-sort-toolbar .toggle-all:active {
  1218. color: #3b9de8;
  1219. }
  1220. .l-sort-toolbar .l-select {
  1221. float: left;
  1222. }
  1223. .l-sort-toolbar td {
  1224. vertical-align: middle;
  1225. }
  1226. .l-sort-toolbar.subtitle {
  1227. padding-left: 96px;
  1228. }
  1229. .l-sort-toolbar td.step-right:first-of-type {
  1230. padding-right: 20px;
  1231. }
  1232. .l-sort-toolbar td:nth-of-type(2) {
  1233. /* /// padding-right: 60px;*/
  1234. }
  1235. .l-sort-toolbar td:last-of-type {
  1236. /* /// padding-left: 40px; */
  1237. }
  1238. .l-sort-toolbar__filter-apply {
  1239. float: left;
  1240. width: 32px;
  1241. height: 30px;
  1242. border: 1px solid #ddd;
  1243. background-color: rgba(255,255,255,0.90);
  1244. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1245. border-radius: 4px;
  1246. border-bottom-left-radius: 0px;
  1247. border-top-left-radius: 0px;
  1248. border-left: 0px;
  1249. box-shadow: inset 0px 0px 1px rgba(41,90,152,0.1), inset 0 0px 2px rgba(255,255,255,1);
  1250. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1251. color: #006699;
  1252. padding: 0;
  1253. font-size: 0.9em;
  1254. }
  1255. .l-sort-toolbar__filter-apply:hover {
  1256. color: #3399cc;
  1257. background-color: #fff;
  1258. }
  1259. .l-sort-toolbar__filter-apply:active {
  1260. color: #409fd5;
  1261. box-shadow: inset 1px 1px 0px rgba(0,0,0,0.1);
  1262. }
  1263. .l-sort-toolbar__search {
  1264. float: left;
  1265. width: 25px;
  1266. height: 25px;
  1267. background-position: -333px -37px;
  1268. border: none;
  1269. }
  1270. .l-sort-toolbar__search:hover {
  1271. background-position: -368px -37px;
  1272. border-color: #afafac;
  1273. }
  1274. .l-sort-toolbar__search:active {
  1275. background-position: -404px -37px;
  1276. border-color: #50bdb5;
  1277. }
  1278. .l-sort-toolbar__search--active {
  1279. background-position: -404px -37px;
  1280. border-color: #50bdb5;
  1281. }
  1282. .l-sort-toolbar .vst {
  1283. padding: 0 12px;
  1284. color: #777;
  1285. text-transform: uppercase;
  1286. font-size: 0.8rem;
  1287. font-weight: 600;
  1288. line-height: 30px;
  1289. }
  1290. .l-sort-toolbar .vst:hover {
  1291. color: #cc3366;
  1292. }
  1293. .l-sort-toolbar .vst:active {
  1294. color: #3b9de8;
  1295. }
  1296. .l-sort-toolbar .vst.selected {
  1297. color: #cc3366;
  1298. /*color: #92af0b;*/
  1299. }
  1300. .l-unit-toolbar__buttonstrip {
  1301. margin-top: 12px;
  1302. display: inline-block;
  1303. font-size: 0.9em;
  1304. }
  1305. .l-unit-toolbar__buttonstrip a {
  1306. padding-left: 10px !important;
  1307. padding-right: 10px !important;
  1308. margin-right: 5px;
  1309. }
  1310. .l-unit-toolbar__buttonstrip .fas {
  1311. padding-right: 4px;
  1312. }
  1313. .subtitle {
  1314. color: #cc3366;
  1315. font-size: 0.8rem;
  1316. font-weight: 600;
  1317. margin: 20px 0 18px 129px;
  1318. text-transform: uppercase;
  1319. }
  1320. .l-select {
  1321. width: 178px;
  1322. border: 1px solid #ddd;
  1323. border-top-left-radius: 4px;
  1324. border-bottom-left-radius: 4px;
  1325. overflow-x: hidden;
  1326. position: relative;
  1327. display: inline-block;
  1328. border-style: solid none solid solid;
  1329. font-weight: 400;
  1330. }
  1331. .lang-ru .l-select {
  1332. width: 199px;
  1333. }
  1334. .l-select:after {
  1335. pointer-events: none;
  1336. width: 7px;
  1337. height: 4px;
  1338. margin-top: -2px;
  1339. content: '';
  1340. position: absolute;
  1341. right: 10px;
  1342. top: 50%;
  1343. }
  1344. .l-select select {
  1345. border: 0;
  1346. background-color: transparent;
  1347. height: 28px;
  1348. min-width: 175px;
  1349. padding-left: 10px;
  1350. background-image: url("/images/arrow.png");
  1351. background-position: 160px;
  1352. background-repeat: no-repeat;
  1353. appearance: none;
  1354. -moz-appearance: none;
  1355. -webkit-appearance: none;
  1356. }
  1357. .l-select select:focus {
  1358. border: 0;
  1359. outline: 0;
  1360. }
  1361. .lang-ru .l-select select {
  1362. min-width: 215px;
  1363. }
  1364. .l-select select option {
  1365. padding: 7px;
  1366. }
  1367. .l-sort-toolbar .l-select {
  1368. float: left;
  1369. border: 1px solid #ddd;
  1370. background-color: rgba(255,255,255,0.90);
  1371. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1372. border-radius: 4px;
  1373. border-bottom-right-radius: 0px;
  1374. border-top-right-radius: 0px;
  1375. border-right: 0px;
  1376. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1377. }
  1378. .l-unit {
  1379. color: #707070;
  1380. padding: 0 0 0 14px;
  1381. overflow: hidden;
  1382. font-size: 0.85rem;
  1383. border-radius: 0;
  1384. border-left: 1px solid transparent;
  1385. border-right: 1px solid transparent;
  1386. }
  1387. .table-header {
  1388. font-size: 0.95em !important;
  1389. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1390. border-left: 1px solid #ddd !important;
  1391. border-right: 1px solid #ddd !important;
  1392. border-bottom: 1px solid #ddd !important;
  1393. border-top: 1px solid #ddd !important;
  1394. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1395. 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;
  1396. border-top-left-radius: 0px;
  1397. border-top-right-radius: 0px;
  1398. border-bottom-left-radius: 6px;
  1399. border-bottom-right-radius: 6px;
  1400. min-height: 28px;
  1401. color: #707070;
  1402. padding: 0 0 0 14px;
  1403. overflow: hidden;
  1404. line-height: 1rem;
  1405. }
  1406. .table-header:hover {
  1407. background-color: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1408. border-left: 1px solid #ddd !important;
  1409. border-right: 1px solid #ddd !important;
  1410. }
  1411. .table-header .fas {
  1412. font-size: 1rem;
  1413. }
  1414. .units .l-unit {
  1415. border-bottom: 1px solid #ddd;
  1416. border-left: 1px solid transparent;
  1417. border-right: 1px solid transparent;
  1418. background-color: rgba(255,255,255,0.6);
  1419. }
  1420. .l-unit:hover, .units .l-unit:hover {
  1421. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  1422. background-color: #f8f8f8;
  1423. text-shadow: 0px 1px rgba(255,255,255,0.5);
  1424. border-left: 1px solid #ddd;
  1425. border-right: 1px solid #ddd;
  1426. }
  1427. .units .l-unit.l-unit--starred {
  1428. border-left: 2px solid #cc3366;
  1429. }
  1430. .units.active .l-unit.focus {
  1431. border-left: 2px solid #5edad0;
  1432. background-color: #eff5fc;
  1433. }
  1434. .units.active .l-unit.focus .l-unit__name {
  1435. color: #36b3a9;
  1436. }
  1437. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  1438. display: block;
  1439. }
  1440. .units > div:last-child {
  1441. border-bottom: none;
  1442. }
  1443. .l-unit-ft {
  1444. color: #929292;
  1445. padding: 0 0 0 15px;
  1446. }
  1447. .l-unit:hover .l-unit-toolbar__col--right {
  1448. display: block;
  1449. }
  1450. .l-unit--blue {
  1451. border-left: 2px solid #3b9de8;
  1452. }
  1453. .l-unit--suspended {
  1454. background-color: #eaeaea !important;
  1455. color: #c0c0c0;
  1456. }
  1457. .l-unit--suspended a {
  1458. color: #c0c0c0 !important;
  1459. }
  1460. .units .l-unit.l-unit--outdated {
  1461. background-color: #ffcaca;
  1462. color: #4b4b4b;
  1463. border-left: 5px solid #ff6f6f;
  1464. border-bottom: 1px solid #fff;
  1465. }
  1466. .l-unit--suspended .l-unit__name,
  1467. .l-unit--suspended b,
  1468. .l-unit--outdated .l-unit__name,
  1469. .l-unit--outdated b {
  1470. color: #c0c0c0;
  1471. }
  1472. .l-unit--outdated .l-unit__name {
  1473. color: #333;
  1474. }
  1475. .l-unit--outdated b {
  1476. color: #4b4b4b;
  1477. }
  1478. .l-unit--suspended .l-percent {
  1479. border-color: #fff;
  1480. }
  1481. .l-unit--suspended .l-percent__fill {
  1482. background-color: #fff;
  1483. }
  1484. .l-unit--suspended .l-unit__name,
  1485. .l-unit--suspended .l-unit__name span {
  1486. color: #ADADAD;
  1487. }
  1488. .l-unit--suspended.selected .l-unit__name,
  1489. .l-unit--suspended.selected .l-unit__name span {
  1490. color: #777;
  1491. }
  1492. .l-unit--suspended.selected {
  1493. background-color: #f2eab8 !important;
  1494. color: #b2ac87 !important;
  1495. }
  1496. .l-unit--outdated.selected {
  1497. background: #765D5D !important;
  1498. color: #333 !important;
  1499. }
  1500. .l-unit--suspended.selected .l-unit__name,
  1501. .l-unit--suspended.selected b,
  1502. .l-unit--outdated.selected .l-unit__name,
  1503. .l-unit--outdated.selected b,
  1504. .l-unit--suspended.selected .l-percent,
  1505. .l-unit--suspended.selected .l-percent__fill,
  1506. .l-unit--suspended.selected .l-unit__name,
  1507. .l-unit--suspended.selected .l-unit__name span {
  1508. color: #333 !important;
  1509. }
  1510. .l-unit.selected .l-percent {
  1511. border-bottom: 1px dotted #777;
  1512. }
  1513. .l-unit--selected {
  1514. background-color: #d1eddc;
  1515. }
  1516. .l-unit-toolbar{
  1517. display: none;
  1518. }
  1519. .l-unit label {
  1520. margin-bottom: 20px;
  1521. }
  1522. .l-unit__columns {
  1523. display: table;
  1524. width: 100%;
  1525. }
  1526. .l-unit__col {
  1527. display: table-cell;
  1528. padding-top: 15px;
  1529. vertical-align: top;
  1530. padding-bottom: 15px;
  1531. }
  1532. .l-unit__col--left {
  1533. width: 100px;
  1534. padding-right: 10px;
  1535. }
  1536. .units.compact .l-unit__col--left {
  1537. vertical-align: top;
  1538. }
  1539. .l-unit__col--left.step-left {
  1540. padding-left: 30px;
  1541. }
  1542. .l-unit__col--right.total {
  1543. padding-left: 16px;
  1544. }
  1545. .l-unit__col--right.back {
  1546. padding-left: 78px
  1547. }
  1548. .l-sort-toolbar .step-left {
  1549. padding-left: 40px;
  1550. }
  1551. .step-right {
  1552. padding-right: 40px;
  1553. }
  1554. .l-unit__date {
  1555. font-size: 11px;
  1556. margin-top: 10px;
  1557. padding-bottom: 30px;
  1558. text-transform: uppercase;
  1559. }
  1560. .l-unit__suspended {
  1561. display: none;
  1562. font-size: 0.8rem;
  1563. font-weight: 600;
  1564. margin-top: 36px;
  1565. text-transform: uppercase;
  1566. margin-bottom: 14px;
  1567. }
  1568. .units.compact .l-unit__suspended {
  1569. margin-top: 1px;
  1570. }
  1571. .l-unit--outdated .l-unit__suspended,
  1572. .l-unit--suspended .l-unit__suspended {
  1573. display: block;
  1574. }
  1575. .l-unit-ft .subtitle,
  1576. .l-unit .subtitle {
  1577. color: #cc3366;
  1578. font-size: 0.8rem;
  1579. font-weight: 600;
  1580. margin: 20px 0 18px 129px;
  1581. text-transform: uppercase;
  1582. }
  1583. .l-unit.l-unit--outdated .l-unit__date {
  1584. color: #d24c4c;
  1585. font-size: 10px;
  1586. text-transform: uppercase;
  1587. font-weight: 600;
  1588. }
  1589. .l-unit__name {
  1590. color: #414141;
  1591. font-size: 28px;
  1592. margin-bottom: 10px;
  1593. font-weight: 500;
  1594. letter-spacing: -0.02em;
  1595. }
  1596. .l-unit__servername {
  1597. color: #414141;
  1598. font-size: 28px;
  1599. margin-bottom: 10px;
  1600. font-weight: 300;
  1601. letter-spacing: -0.02em;
  1602. }
  1603. .l-unit__stats.separate,
  1604. .l-unit__name.separate {
  1605. padding-bottom: 15px;
  1606. }
  1607. .l-unit__name.small {
  1608. font-size: 16px;
  1609. }
  1610. .l-unit__name.small-2 {
  1611. font-size: 20px;
  1612. }
  1613. .l-unit__name span {
  1614. color: #999;
  1615. margin-left: 30px;
  1616. font-size: 0.85rem;
  1617. font-style: italic;
  1618. }
  1619. .l-unit__name span:first-of-type {
  1620. margin-left: 39px;
  1621. }
  1622. .l-unit__name b {
  1623. font-weight: normal;
  1624. font-style: italic;
  1625. }
  1626. .l-unit__ip {
  1627. margin-bottom: 26px;
  1628. font-size: 0.8rem;
  1629. color: #383838;
  1630. }
  1631. .l-unit__ip span {
  1632. padding-left: 3px;
  1633. padding-right: 3px;
  1634. }
  1635. .display-ip {
  1636. font-size: 0.8rem;
  1637. }
  1638. .display-ip span {
  1639. padding-left: 3px;
  1640. padding-right: 3px;
  1641. }
  1642. .l-unit__stats {
  1643. margin-bottom: 10px;
  1644. margin-left: 12%;
  1645. }
  1646. .l-unit__stats:hover {
  1647. border-left: 1px solid transparent !important;
  1648. border-right: 1px solid transparent !important;
  1649. box-shadow: none !important;
  1650. background: none !important;
  1651. }
  1652. .l-unit__stats table {
  1653. width: 100%;
  1654. table-layout: fixed;
  1655. }
  1656. .l-unit__stats td {
  1657. height: 22px;
  1658. padding-bottom: 3px;
  1659. vertical-align: top;
  1660. }
  1661. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  1662. color: #353535;
  1663. }
  1664. .l-unit__stat-col--left a:hover {
  1665. color: #4c8bbe;
  1666. }
  1667. .l-unit__stat-col--left {
  1668. float: left;
  1669. width: 110px;
  1670. }
  1671. .l-unit__stat-col--left.border {
  1672. border-left: 1px solid #ebebeb;
  1673. }
  1674. .l-unit__stat-col--left.border-clear {
  1675. border-left: 1px solid transparent;
  1676. }
  1677. .l-unit__stat-col--left.super-compact {
  1678. width: 50px;
  1679. }
  1680. .l-unit__stat-col--left.compact {
  1681. width: 60px;
  1682. }
  1683. .l-unit__stat-col--left.compact-1 {
  1684. width: 70px;
  1685. }
  1686. .l-unit__stat-col--left.compact-2 {
  1687. width: 80px;
  1688. }
  1689. .l-unit__stat-col--left.compact-3 {
  1690. width: 90px;
  1691. }
  1692. .l-unit__stat-col--left.compact-4 {
  1693. width: 130px;
  1694. }
  1695. .l-unit__stat-col--left.compact-5 {
  1696. width: 160px;
  1697. }
  1698. .l-unit__stat-col--left.wide {
  1699. width: 190px;
  1700. }
  1701. .l-unit__stat-col--left.wide-2 {
  1702. width: 230px;
  1703. }
  1704. .l-unit__stat-col--left.wide-3 {
  1705. width: 250px;
  1706. }
  1707. .l-unit__stat-col--left.wide-4 {
  1708. width: 550px;
  1709. }
  1710. .l-unit__stat-col--left.wide-5 {
  1711. width: 350px;
  1712. }
  1713. .l-unit__stat-col--left.wide-6 {
  1714. width: 440px;
  1715. }
  1716. .l-unit__stat-col--left.small-2 {
  1717. line-height: 11px;
  1718. }
  1719. .l-unit__stat-col--left.tiny {
  1720. font-size: 0.8rem;
  1721. }
  1722. .l-unit__stat-col--left.tiny b {
  1723. font-size: 18px;
  1724. }
  1725. .l-unit__stat-col--right {
  1726. float: left;
  1727. max-width: 152px;
  1728. }
  1729. .l-unit-toolbar__col--left {
  1730. float: left;
  1731. margin-left: -15px;
  1732. margin-top: 0;
  1733. padding-bottom: 0px;/* 8px */
  1734. padding-left: 15px;
  1735. padding-top: 15px;
  1736. width: 30px;
  1737. cursor: pointer;
  1738. display: none;
  1739. }
  1740. .l-unit-toolbar__col--right {
  1741. float: right;
  1742. }
  1743. body.mobile .l-unit-toolbar__col--right {
  1744. display: block;
  1745. }
  1746. .l-unit-toolbar .shortcut {
  1747. display: none;
  1748. }
  1749. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1750. display: block;
  1751. background-color: #69a298;
  1752. border-radius: 13px;
  1753. color: #fff;
  1754. cursor: pointer;
  1755. display: block;
  1756. font-size: 0.8rem;
  1757. font-weight: 600;
  1758. line-height: 25px;
  1759. padding-left: 7px;
  1760. padding-right: 9px;
  1761. position: absolute;
  1762. right: 3px;
  1763. top: 3px;
  1764. }
  1765. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1766. font-size: 10px;
  1767. padding-left: 2px;
  1768. padding-right: 5px;
  1769. text-transform: capitalize;
  1770. }
  1771. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1772. font-size: 17px;
  1773. padding-left: 1px;
  1774. padding-right: 7px;
  1775. }
  1776. .units.active .l-unit.focus .l-unit-toolbar i {
  1777. background: none;
  1778. }
  1779. .l-unit__stat-col.volume {
  1780. font-size: 0.8rem;
  1781. line-height: 17px;
  1782. float: right;
  1783. }
  1784. .actions-panel__col {
  1785. display: inline-block;
  1786. min-width: 18px;
  1787. text-transform: uppercase;
  1788. }
  1789. .actions-panel__col a {
  1790. color: #777;
  1791. font-weight: 600;
  1792. font-size: 0.9rem;
  1793. display: inline-block;
  1794. cursor: pointer;
  1795. }
  1796. .lang-ru .actions-panel__col a {
  1797. font-size: 0.9rem;
  1798. padding-top: 1px;
  1799. }
  1800. .lang-tw .actions-panel__col a {
  1801. font-size: 0.9rem;
  1802. font-weight: normal;
  1803. line-height: 29px;
  1804. }
  1805. .lang-ar .actions-panel__col a {
  1806. font-size: 0.9rem;
  1807. font-weight: normal;
  1808. line-height: 31px;
  1809. }
  1810. .icon-pad-right {
  1811. margin-right: 5px;
  1812. }
  1813. .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 {
  1814. display: inline-block;
  1815. vertical-align: middle;
  1816. }
  1817. .l-icon-down-arrow {
  1818. width: 7px;
  1819. height: 15px;
  1820. background-position: -280px -128px;
  1821. }
  1822. .l-icon-up-arrow {
  1823. width: 7px;
  1824. height: 15px;
  1825. background-position: -299px -129px;
  1826. }
  1827. .l-icon-star {
  1828. width: 36px;
  1829. height: 36px;
  1830. background-position: -216px 560px;
  1831. cursor: pointer;
  1832. visibility: hidden;
  1833. }
  1834. .l-unit--starred .l-icon-star {
  1835. background-position: -174px 560px;
  1836. visibility: visible;
  1837. }
  1838. .selected .l-icon-star {
  1839. filter: contrast(70%);
  1840. -webkit-filter: contrast(70%);
  1841. }
  1842. .units.compact .l-icon-star {
  1843. margin-top: -14px;
  1844. }
  1845. .l-icon-star:hover {
  1846. background-position: 0px 560px;
  1847. }
  1848. .l-icon-star:active {
  1849. -background-position: -174px 560px;
  1850. background-position: -80px 562px;
  1851. }
  1852. .l-unit:hover .l-icon-star {
  1853. visibility: visible;
  1854. }
  1855. .l-icon-to-top {
  1856. width: 35px;
  1857. height: 35px;
  1858. background-position: -330px -68px;
  1859. }
  1860. .l-icon-to-top:hover {
  1861. background-position: -366px -68px;
  1862. }
  1863. .l-icon-to-top:active {
  1864. background-position: -402px -68px;
  1865. }
  1866. .l-icon-shortcuts {
  1867. width: 35px;
  1868. height: 35px;
  1869. background-position: -240px -281px;
  1870. border-radius: 18px;
  1871. }
  1872. .l-icon-shortcuts:hover {
  1873. background-position: -160px -281px;
  1874. }
  1875. .l-icon-shortcuts:active {
  1876. background-position: -198px -281px;
  1877. }
  1878. body.mobile .l-icon-to-top,
  1879. body.mobile .l-icon-shortcuts {
  1880. display: none;
  1881. }
  1882. .l-icon-star-orange {
  1883. width: 13px;
  1884. height: 13px;
  1885. background-position: -178px -97px;
  1886. }
  1887. .l-icon-star-blue {
  1888. width: 13px;
  1889. height: 13px;
  1890. background-position: -134px -97px;
  1891. }
  1892. .media-top {
  1893. vertical-align: top;
  1894. }
  1895. .l-unit__stat-cols {
  1896. padding-right: 10px;
  1897. }
  1898. .l-unit__stat-cols.last {
  1899. padding-right: 0;
  1900. }
  1901. .l-unit__stat-cols.graph {
  1902. width: 200px;
  1903. }
  1904. .l-unit__stat-cols.tiny {
  1905. font-size:11px;
  1906. line-height: 19px;
  1907. }
  1908. .l-percent {
  1909. border-bottom: 1px dotted #ccc;
  1910. margin-top: 1px;
  1911. width: 200px;
  1912. }
  1913. .l-percent__fill {
  1914. background-color: #aacc0d;
  1915. height: 3px;
  1916. position: relative;
  1917. bottom: -1px;
  1918. }
  1919. .to-top {
  1920. display: inline-block;
  1921. position: fixed;
  1922. top: 90%;
  1923. right: 4%;
  1924. border: 1px solid #ddd;
  1925. padding: 8px;
  1926. border-radius: 50%;
  1927. background-color: #eee;
  1928. text-shadow: 1px 1px #fff;
  1929. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  1930. inset 0px 0px 1px rgba(255,255,255,0.9);
  1931. z-index: 200;
  1932. width: 16px;
  1933. height: 16px;
  1934. text-align: center;
  1935. }
  1936. .to-shortcuts {
  1937. display: inline-block;
  1938. position: fixed;
  1939. top: 90%;
  1940. right: 8%;
  1941. border: 1px solid #ddd;
  1942. padding: 8px;
  1943. border-radius: 50%;
  1944. background-color: #eee;
  1945. text-shadow: 1px 1px #fff;
  1946. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  1947. inset 0px 0px 1px rgba(255,255,255,0.9);
  1948. z-index: 200;
  1949. }
  1950. /*
  1951. #vstobjects {
  1952. margin-top: -1px;
  1953. }
  1954. */
  1955. #vstobjects .l-center {
  1956. padding-top: 20px;
  1957. padding-bottom: 30px;
  1958. font-size: 0.8rem;
  1959. }
  1960. .timer-container {
  1961. margin-top: 4px;
  1962. }
  1963. .timer-container .refresh-timer {
  1964. border: 2px solid #9f9f9f;
  1965. border-radius: 14px;
  1966. height: 14px;
  1967. width: 14px;
  1968. float: left;
  1969. margin: 2px 10px 0 0;
  1970. }
  1971. .timer-container .refresh-timer.paused {
  1972. border: 2px solid #9f9f9f;
  1973. }
  1974. .timer-container .refresh-timer.paused .loader-half.right,
  1975. .timer-container .refresh-timer.paused .loader-half.dark {
  1976. background-color: #9d9f9f;
  1977. }
  1978. .timer-container .loader-half {
  1979. border-radius: 0 14px 14px 0;
  1980. height: 14px;
  1981. width: 7px;
  1982. float: left;
  1983. }
  1984. .timer-container .loader-half.left {
  1985. border-radius: 14px 0 0 14px;
  1986. background-color: #fff;
  1987. }
  1988. .timer-container .loader-half.right {
  1989. margin-left: 7px;
  1990. background-color: #9f9f9f;
  1991. }
  1992. .timer-container .loader-half.dark {
  1993. background-color: #9f9f9f;
  1994. }
  1995. .timer-container .movement {
  1996. float: left;
  1997. width: 14px;
  1998. height: 14px;
  1999. position: absolute;
  2000. }
  2001. .timer-container .movement.left {
  2002. z-index: 10;
  2003. }
  2004. .timer-container .movement.right {
  2005. transform: rotate(180deg);
  2006. -webkit-transform: rotate(180deg);
  2007. }
  2008. .timer-container .timer-button {
  2009. cursor: pointer;
  2010. text-decoration: underline;
  2011. margin: 7px 0 0 38px;
  2012. width: 15px;
  2013. float: left;
  2014. height: 10px;
  2015. }
  2016. .timer-container .timer-button.pause {
  2017. background: url(/images/pause.png) no-repeat ;
  2018. }
  2019. .timer-container .timer-button.play {
  2020. background: url(/images/start.png) no-repeat;
  2021. }
  2022. .uppercase {
  2023. text-transform: uppercase;
  2024. }
  2025. .title b,
  2026. .title {
  2027. color: #cc3366;
  2028. font-size: 0.8rem;
  2029. font-weight: 600;
  2030. padding: 0 30px 0px 73px;
  2031. line-height: 30px;
  2032. text-transform: uppercase;
  2033. }
  2034. .title {
  2035. display: inline-block;
  2036. float: left;
  2037. }
  2038. /* form styles */
  2039. .vst-error {
  2040. color: #BE5ABF;
  2041. font-weight: 600;
  2042. overflow: hidden;
  2043. max-width: 500px;
  2044. text-overflow: ellipsis;
  2045. white-space: nowrap;
  2046. }
  2047. .vst-ok {
  2048. color: #3b9de8;
  2049. overflow: hidden;
  2050. max-width: 500px;
  2051. text-overflow: ellipsis;
  2052. white-space: nowrap;
  2053. }
  2054. .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
  2055. margin-right: 20px;
  2056. }
  2057. .vst-ok a {
  2058. color: #326b9b;
  2059. }
  2060. .vst-ok a:hover {
  2061. color: #cc3366;
  2062. }
  2063. .vst-ok a:active {
  2064. color: #d53067;
  2065. }
  2066. .data {
  2067. margin: 0 0 90px 0;
  2068. }
  2069. .data-col1 {
  2070. width: 148px;
  2071. }
  2072. .data-col1 td {
  2073. padding: 10px 0 0 5px;
  2074. }
  2075. .data-col1 tr:first-child td {
  2076. padding: 59px 0 0 5px;
  2077. }
  2078. .login-box td,
  2079. .data td {
  2080. color: #4b4b4b;
  2081. font-size: 0.85rem;
  2082. padding-bottom: 3px;
  2083. font-weight: 600;
  2084. }
  2085. .input-label {
  2086. padding-top: 20px;
  2087. }
  2088. .data input[type="checkbox"] {
  2089. display: inline;
  2090. cursor: pointer;
  2091. }
  2092. .step-top {
  2093. padding-top: 18px;
  2094. }
  2095. .step-top-small {
  2096. padding-top: 14px;
  2097. }
  2098. .jump-top {
  2099. margin-top: -60px;
  2100. }
  2101. .jump-small-top {
  2102. margin-top: -12px;
  2103. }
  2104. .float-right {
  2105. display: inline-block;
  2106. float: right;
  2107. }
  2108. .data a {
  2109. text-decoration: none;
  2110. }
  2111. label {
  2112. cursor: pointer;
  2113. }
  2114. label:hover {
  2115. color: #333;
  2116. }
  2117. .vst-input {
  2118. background-color: #fff;
  2119. border: 1px solid #cfcfcf;
  2120. border-radius: 4px;
  2121. color: #4e4e4e;
  2122. font-family: 'Exo', Arial, Arial, Helvetica, sans-serif;
  2123. font-size: 0.8rem;
  2124. height: 20px;
  2125. margin: 2px 6px 0 0;
  2126. padding: 8px 3px 8px 14px;
  2127. width: 360px;
  2128. font-weight: normal;
  2129. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2130. }
  2131. .vst-input:hover {
  2132. border: 1px solid #909090;
  2133. }
  2134. .vst-input:focus {
  2135. border: 1px solid #3b9de8;
  2136. background-color: #D7F9FF;
  2137. color: #333;
  2138. }
  2139. .vst-input:disabled,
  2140. .vst-list:disabled {
  2141. background-color: #e7e7e7;
  2142. text-shadow: 1px 1px rgba(255,255,255,1);
  2143. color: #686868;
  2144. }
  2145. .vst-input:focus:disabled {
  2146. border-color: #f1f1f1;
  2147. background-color: #f1f1f1;
  2148. }
  2149. .vst-input.long {
  2150. width: 832px;
  2151. }
  2152. .vst-input.short {
  2153. width: 200px;
  2154. }
  2155. .vst-input.vst-list-editor {
  2156. border: none;
  2157. box-shadow: none;
  2158. position: absolute;
  2159. margin-top:-34px;
  2160. margin-left: 1px;
  2161. display: block;
  2162. width: 340px;
  2163. height: 1rem;
  2164. }
  2165. .vst-input.vst-list-editor:focus {
  2166. background-color: white;
  2167. }
  2168. .vst-list {
  2169. background-color: #fff;
  2170. border: 1px solid #ccc;
  2171. border-radius: 4px;
  2172. color: #4e4e4e;
  2173. font-family: 'Exo', Arial, Helvetica,sans-serif;
  2174. font-size: 0.8rem;
  2175. font-weight: normal;
  2176. height: 36px;
  2177. cursor: pointer;
  2178. margin: 2px 6px 0 0;
  2179. min-width: 380px;
  2180. padding: 4px 1px 4px 10px;
  2181. background-image: url("/images/arrow.png");
  2182. background-position: 360px;
  2183. background-repeat: no-repeat;
  2184. width: 380px;
  2185. appearance:none;
  2186. -moz-appearance:none;
  2187. -webkit-appearance:none;
  2188. text-shadow: 0 0 0 #4b4b4b;
  2189. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2190. }
  2191. select.vst-list:-moz-focusring {
  2192. color:transparent;
  2193. }
  2194. .vst-list.long-2 {
  2195. width: 486px;
  2196. background-position: 465px;
  2197. }
  2198. .vst-list option {
  2199. padding: 6px 1px 6px 15px;
  2200. }
  2201. .vst-list:hover {
  2202. border: 1px solid #909090;
  2203. }
  2204. .vst-list:focus {
  2205. border: 1px solid #3b9de8;
  2206. color: #333;
  2207. }
  2208. .vst-list.flat {
  2209. border: 1px solid #fff;
  2210. color: #326b9b;
  2211. text-transform: uppercase;
  2212. font-weight: 600;
  2213. font-size: 0.8rem;
  2214. margin-left: -10px;
  2215. text-shadow: none !important;
  2216. box-shadow: none !important;
  2217. }
  2218. .vst-list.flat:hover {
  2219. color: #cc3366;
  2220. }
  2221. .vst-list.flat option {
  2222. color: #4e4e4e;
  2223. }
  2224. a.vst-text,
  2225. a.vst-text b{
  2226. color: #326b9b;
  2227. }
  2228. a.vst-text:hover,
  2229. a.vst-text:hover b{
  2230. color: #cc3366;
  2231. }
  2232. a.vst-text:active,
  2233. a.vst-text:active b{
  2234. color: #cc3366;
  2235. }
  2236. .advanced-options {
  2237. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  2238. border: 1px solid #ddd !important;
  2239. text-shadow: 0px 1px rgba(255,255,255,0.95);
  2240. 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;
  2241. color: #30659d !important;
  2242. padding: 4px 0px 0px 18px;
  2243. overflow: hidden;
  2244. height: 28px;
  2245. }
  2246. .advanced-options a {
  2247. color: #30659d !important;
  2248. }
  2249. .advanced-options .fas {
  2250. margin-right: 20px;
  2251. width: 14px;
  2252. }
  2253. .vst-textinput {
  2254. background-color: #fff;
  2255. border: 1px solid #cfcfcf;
  2256. border-radius: 4px;
  2257. color: #4e4e4e;
  2258. font-size: 0.8rem;
  2259. padding: 5px;
  2260. width: 560px;
  2261. height: 60px;
  2262. font-family: 'Exo', Arial, Helvetica, sans-serif;
  2263. padding: 7px 1px 3px 14px;
  2264. font-weight: normal;
  2265. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2266. }
  2267. .vst-textinput:hover {
  2268. border: 1px solid #909090;
  2269. }
  2270. .vst-textinput:focus {
  2271. border: 1px solid #3b9de8;
  2272. background-color: #D7F9FF;
  2273. color: #333;
  2274. }
  2275. .vst-textinput:disabled {
  2276. background-color: #f1f1f1;
  2277. }
  2278. .vst-textinput.console{
  2279. font-size: 0.8rem;
  2280. width: 630px;
  2281. height: 300px;
  2282. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2283. white-space: pre;
  2284. }
  2285. .vst-textinput.short {
  2286. width: 360px;
  2287. }
  2288. #advanced-options .console{
  2289. width: 833px;
  2290. height: 600px;
  2291. }
  2292. .generate {
  2293. color: #326b9b;
  2294. text-decoration: underline;
  2295. cursor: pointer;
  2296. margin-left: -3px;
  2297. padding: 0 3px;
  2298. }
  2299. .generate:hover {
  2300. background-color: #cc3366;
  2301. border-color: #cc3366;
  2302. color: #fff;
  2303. }
  2304. .generate:active {
  2305. background-color: #F7D616;
  2306. border-color: #F7D616;
  2307. }
  2308. .vst-advanced {
  2309. border-bottom: 0px solid #326b9b;
  2310. color: #326b9b;
  2311. font-size: 0.8rem;
  2312. padding: 2px 2px 0;
  2313. text-decoration: none;
  2314. text-transform: uppercase;
  2315. }
  2316. .login-box .vst-advanced:hover {
  2317. color: #cc3366;
  2318. background-color: transparent;
  2319. border-color: transparent;
  2320. }
  2321. .vst-advanced:hover {
  2322. color: #fff;
  2323. background-color: #cc3366;
  2324. border-color: #cc3366;
  2325. text-decoration: none;
  2326. }
  2327. .login-box .vst-advanced:active,
  2328. .vst-advanced:active {
  2329. color: #fff;
  2330. background-color: #F7D616;
  2331. border-color: #F7D616;
  2332. text-decoration: none;
  2333. }
  2334. .login-box .vst-advanced {
  2335. border-bottom: none;
  2336. color: #326b9b;
  2337. font-size: 10px;
  2338. padding: 2px 2px 0;
  2339. text-decoration: none;
  2340. text-transform: uppercase;
  2341. }
  2342. .vst-checkbox {
  2343. font-size: 0.85rem;
  2344. margin: 2px 6px 0 3px;
  2345. padding: 5px;
  2346. }
  2347. .lets-encrypt-note {
  2348. color: #89a40a !important;
  2349. font-style: italic;
  2350. font-weight: normal !important;
  2351. height: 30px;
  2352. padding-top: 10px;
  2353. vertical-align: top;
  2354. }
  2355. .additional-control {
  2356. margin-left: 17px;
  2357. color: #326b9b;
  2358. border-bottom: 0px solid #326b9b;
  2359. font-size: 0.8rem;
  2360. cursor: pointer;
  2361. text-transform: uppercase;
  2362. font-weight: 600;
  2363. padding: 2px 2px 0;
  2364. text-decoration: none;
  2365. }
  2366. .additional-control:hover {
  2367. background-color: #cc3366;
  2368. border-color: #cc3366;
  2369. color: #fff;
  2370. }
  2371. .additional-control:active {
  2372. color: #fff;
  2373. background-color: #aaa;
  2374. }
  2375. .additional-control.ftp-remove-user {
  2376. padding: 2px 0 0 0;
  2377. }
  2378. .additional-control.delete:hover,
  2379. .additional-control.ftp-remove-user:hover {
  2380. background-color: #FF3438;
  2381. border-color: #FF3438;
  2382. }
  2383. .additional-control.delete:active,
  2384. .additional-control.ftp-remove-user:active {
  2385. background-color: #FF5F5F;
  2386. border-color: #FF5F5F;
  2387. }
  2388. .additional-control.add:hover {
  2389. background-color: #3b9de8;
  2390. border-color: #3b9de8;
  2391. }
  2392. .additional-control.add:active{
  2393. background-color: #54a6e5;
  2394. border-color: #54a6e5;
  2395. }
  2396. .additional-control.remove-ns {
  2397. display: none;
  2398. }
  2399. .data .step-left {
  2400. padding-left: 50px;
  2401. }
  2402. .hide-password {
  2403. color: #2361a1;
  2404. margin-left: -36px;
  2405. padding-left: 3px;
  2406. z-index: 1;
  2407. }
  2408. .toggle-psw-visibility-icon {
  2409. cursor: pointer;
  2410. opacity: 1;
  2411. margin: -2px;
  2412. }
  2413. .show-passwords-enabled-action {
  2414. opacity: 0.4;
  2415. }
  2416. .ftp-path-value,
  2417. .hint,
  2418. td.hint {
  2419. color: #777;
  2420. font-size: 0.85rem;
  2421. font-style: italic;
  2422. font-weight: normal;
  2423. }
  2424. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  2425. .ui-button, .button {
  2426. filter:chroma(color=#000);
  2427. cursor: pointer;
  2428. border-radius: 3px 3px 3px 3px !important;
  2429. font-size: 1.05em !important;
  2430. font-weight: 500 !important;
  2431. padding: 2px 16px 3px 20px !important;
  2432. min-width: 100px !important;
  2433. height: 28px !important;
  2434. color: #30659d !important;
  2435. border: 1px solid #3b9de8 !important;
  2436. background-color: #3b9de8 !important;
  2437. 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;
  2438. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  2439. inset 0px 0px 1px #fff,
  2440. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2441. text-shadow: 0px 1px 1px rgba(255,255,255,0.6) !important;
  2442. }
  2443. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover {
  2444. color: #3b9de8 !important;
  2445. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  2446. border: 1px solid #54a6e5 !important;
  2447. 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;
  2448. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  2449. inset 0px 0px 1px #fff,
  2450. inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  2451. transition: 0.2s;
  2452. }
  2453. .ui-button:focus,.ui-button:active,
  2454. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  2455. .button.cancel:active,.button.cancel:focus {
  2456. border: 1px solid #378ccd !important;
  2457. 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;
  2458. color: #046c98 !important;
  2459. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  2460. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  2461. inset 0px 0px 1px #fff,
  2462. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  2463. }
  2464. .ui-button-text-only {
  2465. border: 0px !important;
  2466. background: transparent !important;
  2467. box-shadow: none !important;
  2468. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2469. }
  2470. .ui-button-text-only .selected {
  2471. font-weight: 600 !important;
  2472. }
  2473. .ui-button.cancel,
  2474. .button.cancel {
  2475. color: #717171 !important;
  2476. border: 1px solid #aaaaaa !important;
  2477. 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;
  2478. }
  2479. .ui-button-text {
  2480. padding: 0px !important;
  2481. color: #30659d !important;
  2482. }
  2483. .ui-button.cancel:active,
  2484. .button.cancel:active {
  2485. border: 1px solid #378ccd;
  2486. background-color: #378ccd;
  2487. }
  2488. a.button.cancel {
  2489. padding: 8px 38px;
  2490. text-transform: capitalize;
  2491. }
  2492. .ui-dialog button.cancel {
  2493. color: #000;
  2494. border: 1px solid #4b4b4b;
  2495. background-color: #4b4b4b;
  2496. }
  2497. /*
  2498. .ui-dialog button.cancel:hover {
  2499. color: #fff;
  2500. border: 1px solid #999;
  2501. background-color: #999;
  2502. }
  2503. .ui-dialog button.cancel:active {
  2504. border: 1px solid #54a6e5;
  2505. background-color: #54a6e5;
  2506. }
  2507. */
  2508. /*
  2509. .ui-button.danger, .button.danger {
  2510. background: linear-gradient(to bottom, #fbf1ef 0%,#f7c5bf 50%,#f5ada5 51%,#fde2df 100%) !important;
  2511. color: #F4301A !important;
  2512. text-shadow: 0px 1px rgba(255,255,255,0.5) !important;
  2513. border: 1px solid #F4968B !important;
  2514. }
  2515. */
  2516. .ui-button.danger:hover, .button.danger:hover {
  2517. background: linear-gradient(to bottom, #fbf2f1 0%,#f7cac5 50%,#f6b4ac 51%,#fde6e3 100%) !important;
  2518. color: #F4301A !important;
  2519. text-shadow: 0px 1px rgba(255,255,255,0.5) !important;
  2520. border: 1px solid #F27E71 !important;
  2521. }
  2522. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  2523. background: linear-gradient(to bottom, #f9e3df 0%,#f5a69d 50%,#f48578 51%,#fcd0ca 100%) !important;
  2524. color: #fff !important;
  2525. text-shadow: 0px -1px 1px rgba(0,0,0,0.3) !important;
  2526. border: 1px solid #F4301A !important;
  2527. }
  2528. .ui-button span {
  2529. color: #fff;
  2530. }
  2531. .ui-button:hover span {
  2532. color: #4b4b4b !important;
  2533. }
  2534. .ui-button:active span {
  2535. color: #4b4b4b;
  2536. }
  2537. .ui-button.cancel span {
  2538. color: #777;
  2539. }
  2540. .ui-button:hover span {
  2541. color: #fff;
  2542. }
  2543. .ui-button:active span {
  2544. color: #fff;
  2545. }
  2546. .ui-dialog button.cancel span {
  2547. color: #ccc;
  2548. }
  2549. .unlim-trigger {
  2550. cursor: pointer;
  2551. margin-left: -40px;
  2552. padding-left: 4px;
  2553. margin-bottom: -2px;
  2554. z-index: 1;
  2555. }
  2556. .optional {
  2557. font-size: 0.8rem;
  2558. padding: 0 0 0 6px;
  2559. font-weight: normal;
  2560. }
  2561. .data-active b {
  2562. color: #3b9de8;
  2563. font-size: 0.8rem;
  2564. text-transform: uppercase;
  2565. }
  2566. .data-suspended b {
  2567. color: #A3A3A3;
  2568. font-size: 0.8rem;
  2569. font-weight: 600;
  2570. text-transform: uppercase;
  2571. }
  2572. .data-date {
  2573. font-weight: normal;
  2574. color: #777;
  2575. font-size: 0.8rem;
  2576. line-height: 23px;
  2577. }
  2578. .data-dotted {
  2579. vertical-align: top;
  2580. }
  2581. .mail-infoblock-td {
  2582. vertical-align: top;
  2583. }
  2584. .mail-infoblock {
  2585. font-size: 0.85rem;
  2586. color: #777;
  2587. border: 1px solid #d9d9d9;
  2588. padding: 0px 5px 12px 20px;
  2589. margin-top: 83px;
  2590. min-width: 320px;
  2591. overflow: hidden;
  2592. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2593. border-radius: 5px;
  2594. }
  2595. .mail-infoblock:hover {
  2596. overflow: visible;
  2597. }
  2598. .mail-infoblock td {
  2599. color: #505050;
  2600. font-size: 0.75rem;
  2601. height: 20px;
  2602. font-weight: normal;
  2603. }
  2604. .mail-infoblock td:first-child{
  2605. padding-right: 14px;
  2606. font-weight: 600;
  2607. }
  2608. .mail-infoblock div {
  2609. white-space: nowrap;
  2610. }
  2611. .mail-infoblock a {
  2612. color: #326b9b;
  2613. }
  2614. .mail-infoblock a:hover {
  2615. color: #cc3366;
  2616. }
  2617. .additional-info {
  2618. margin-top: 30px;
  2619. width: 547px;
  2620. }
  2621. .additional-info td {
  2622. font-size: 0.8rem;
  2623. height: 22px;
  2624. font-weight: normal;
  2625. }
  2626. .additional-info td.details {
  2627. padding-left: 20px;
  2628. }
  2629. :focus {outline:none;}
  2630. ::-moz-focus-inner {border:0;}
  2631. .login {
  2632. background-color: #fff;
  2633. box-shadow: 0px 8px 30px rgba(49,98,153, 0.75);
  2634. font-family: 'Exo', Tahoma, Arial, Helvetica, sans-serif;
  2635. margin: 0;
  2636. padding: 0;
  2637. text-align: left;
  2638. vertical-align: top;
  2639. width: 500px;
  2640. border-radius: 6px;
  2641. }
  2642. .login-welcome {
  2643. font-size: 1.1rem !important;
  2644. font-weight: 400 !important;
  2645. padding-bottom: 30px !important;
  2646. }
  2647. .qr-code {
  2648. border: 1px solid #cfcfcf;
  2649. border-radius: 4px;
  2650. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2651. }
  2652. .password-option {
  2653. margin-top: 15px;
  2654. }
  2655. .login a.error {
  2656. color: #BE5ABF;
  2657. font-size: 0.8rem;
  2658. }
  2659. .hestiacp {
  2660. color: #505050;
  2661. }
  2662. .hestiacp:hover {
  2663. color: #326b9b;
  2664. }
  2665. .hestiacp:active {
  2666. color: #cc3366;
  2667. }
  2668. .login-bottom {
  2669. height: 60px;
  2670. text-align: right;
  2671. vertical-align: top;
  2672. font-size: 0.75rem !important;
  2673. margin-right: 65px;
  2674. }
  2675. .l-unit.selected {
  2676. background-color: #fefba7;
  2677. color: #4b4b4b;
  2678. border-bottom: 1px solid #c0b990;
  2679. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  2680. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2681. border-left: 1px solid #ddd;
  2682. border-right: 1px solid #ddd;
  2683. }
  2684. .l-unit.selected:hover {
  2685. background-color: #fefccd;
  2686. color: #4b4b4b;
  2687. box-shadow: 0px 2px 14px rgba(150,150,150,0.25);
  2688. text-shadow: 0px 1px rgba(255,255,255,0.6);
  2689. }
  2690. .l-unit.selected b,
  2691. .l-unit.selected strong {
  2692. color: #4b4b4b;
  2693. }
  2694. /* MAIN MENU COLLAPSED */
  2695. .collapsed .l-stat {
  2696. padding-top: 20px;
  2697. }
  2698. .collapsed .l-stat__col a {
  2699. height: 0;
  2700. min-height: 0;
  2701. overflow: hidden;
  2702. }
  2703. .collapsed .l-stat__col-title {
  2704. padding-top: 2px;
  2705. }
  2706. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2707. margin-top: 93px;
  2708. position: fixed;
  2709. }
  2710. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2711. margin-top: 138px;
  2712. position: fixed;
  2713. }
  2714. div.l-content.collapsed .l-sort {
  2715. margin-top: 94px;
  2716. }
  2717. .l-content > .units.l-center::before {
  2718. content: '';
  2719. display: block;
  2720. height: 225px;
  2721. }
  2722. .console-output {
  2723. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2724. font-size: 0.8rem;
  2725. color: #202020;
  2726. letter-spacing: -0.01em;
  2727. }
  2728. form#vstobjects {
  2729. padding-top: 240px;
  2730. }
  2731. form#vstobjects.suspended {
  2732. background-color: #EAEAEA;
  2733. padding-bottom: 30px;
  2734. }
  2735. #add-icon {
  2736. width: 45px;
  2737. height: 45px;
  2738. display: inline-block;
  2739. z-index: 3;
  2740. }
  2741. .l-sort__create-btn.restore #add-icon {
  2742. background-position: -378px -250px;
  2743. }
  2744. .l-sort__create-btn.edit #add-icon {
  2745. background-position: -378px -154px;
  2746. }
  2747. #tooltip {
  2748. background-color: #3b9de8;
  2749. border-radius: 15px;
  2750. bottom: 6px;
  2751. color: #fff;
  2752. font-size: 0.8rem;
  2753. font-weight: 600;
  2754. height: 26px;
  2755. left: 12px;
  2756. letter-spacing: 0;
  2757. line-height: 25px;
  2758. margin-left: 12px;
  2759. margin-top: 7px;
  2760. padding: 3px 14px 3px 27px;
  2761. position: absolute;
  2762. text-transform: uppercase;
  2763. white-space: nowrap;
  2764. word-break: keep-all;
  2765. z-index: -1;
  2766. }
  2767. .l-sort__create-btn:active #add-icon {
  2768. background-position: -425px -107px;
  2769. }
  2770. .l-sort__create-btn.restore:active #add-icon {
  2771. background-position: -425px -250px !important;
  2772. }
  2773. .l-sort__create-btn.edit:active #add-icon {
  2774. background-position: -425px -154px !important;
  2775. }
  2776. .l-sort__create-btn.edit:hover #tooltip {
  2777. background-color: #3b9de8;
  2778. }
  2779. .l-sort__create-btn.edit:active #tooltip {
  2780. background-color: #3BF0E6 !important;
  2781. }
  2782. .l-sort__create-btn:active #tooltip {
  2783. background-color: #54a6e5;
  2784. }
  2785. .pill {
  2786. border-radius: 18px;
  2787. display: inline-block;
  2788. text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
  2789. }
  2790. .pill.usage{
  2791. margin-top: 8px;
  2792. font-size: 0.75rem;
  2793. padding: 4px;
  2794. padding-left: 8px;
  2795. padding-right: 8px;
  2796. margin-right: 10px;
  2797. line-height: 0.75rem;
  2798. box-shadow: 0px 1px 1px rgba(0,0,0,0.25), inset 0px 0px 1px rgba(0,0,0,0.15);
  2799. background-color: rgba(255,255,255,0.75);
  2800. font-weight: 500;
  2801. border: 1px solid rgba(255,255,255,0.9);
  2802. text-shadow: 0px 1px 1px rgba(255,255,255,0.5);
  2803. color: #30659d;
  2804. }
  2805. .pill.usage b { color: #30659d; }
  2806. .badge {
  2807. display: inline-block;
  2808. min-width: 24px;
  2809. min-height: 24px;
  2810. line-height: 24px;
  2811. border-radius: 50%;
  2812. font-weight: 600;
  2813. box-shadow: 0px 1px 3px rgba(120,120,120,0.6);
  2814. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  2815. }
  2816. .badge.large {
  2817. min-width: 48px;
  2818. min-height: 48px;
  2819. line-height: 48px;
  2820. }
  2821. .badge.raised {
  2822. background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.05) 100%);
  2823. }
  2824. .l-unit--suspended .badge {
  2825. background: #eaeaea !important;
  2826. color: #c0c0c0 !important;
  2827. text-shadow: 0px -1px #fafafa !important;
  2828. box-shadow: 0px 1px 2px rgba(120,120,120,0.3) !important;
  2829. }
  2830. .pill.gray, .badge.gray {
  2831. border: 1px solid #ddd;
  2832. background-color: #eaeaea;
  2833. color: #6c6c6c;
  2834. text-shadow: 0px 1px #fafafa !important;
  2835. }
  2836. .pill.blue, .badge.blue {
  2837. border: 1px solid #fff;
  2838. background-color: #316198;
  2839. color: #fff;
  2840. }
  2841. .pill.purple, .badge.purple {
  2842. border: 1px solid #fff;
  2843. background-color: #8e2fca;
  2844. color: #fff;
  2845. }
  2846. .pill.teal, .badge.teal {
  2847. border: 1px solid #fff;
  2848. background-color: #33cccc;
  2849. color: #fff;
  2850. }
  2851. .pill.maroon, .badge.maroon {
  2852. border: 1px solid #fff;
  2853. background-color: #cc3366;
  2854. color: #fff;
  2855. }
  2856. .pill.red, .badge.red {
  2857. border: 1px solid #fff;
  2858. background-color: #ff3333;
  2859. color: #fff;
  2860. }
  2861. .pill.orange, .badge.orange {
  2862. border: 1px solid #fff;
  2863. background-color: #f6a800;
  2864. color: #fff;
  2865. }
  2866. .pill.green, .badge.green {
  2867. border: 1px solid #fff;
  2868. background-color: #53ba55;
  2869. color: #fff;
  2870. }
  2871. .pill.lightblue, .badge.lightblue {
  2872. border: 1px solid #fff;
  2873. background-color: #6eb6f0;
  2874. color: #fff;
  2875. }
  2876. .status-icon.large {
  2877. font-size: 1rem;
  2878. }
  2879. .status-icon.yellow, .status-icon.yellow:hover,
  2880. .updates .status-icon.yellow, .updates .status-icon.yellow:hover {
  2881. color: #f3e72c;
  2882. }
  2883. .status-icon.teal, .status-icon.teal:hover,
  2884. .updates .status-icon.teal, .updates .status-icon.teal:hover {
  2885. color: #33cccc;
  2886. }
  2887. .status-icon.purple, .status-icon.purple:hover
  2888. .updates .status-icon.purple, .updates .status-icon.purple:hover {
  2889. color: #8e2fca;
  2890. }
  2891. .status-icon.maroon, .status-icon.maroon:hover,
  2892. .updates .status-icon.purple, .updates .status-icon.purple:hover {
  2893. color: #cc3366;
  2894. }
  2895. .status-icon.red, .status-icon.red:hover,
  2896. .updates .status-icon.red, .updates .status-icon.red:hover {
  2897. color: #ff3333;
  2898. }
  2899. .status-icon.green, .status-icon.green:hover,
  2900. .updates .status-icon.green, .updates .status-icon.green:hover {
  2901. color: #53ba55;
  2902. }
  2903. .status-icon.orange, .status-icon.orange:hover,
  2904. .updates .status-icon.orange, .updates .status-icon.orange:hover {
  2905. color: #ffc043;
  2906. }
  2907. .status-icon.lightblue, .status-icon.lightblue:hover,
  2908. .updates .status-icon.lightblue, .updates .status-icon.lightblue:hover {
  2909. color: #6eb6f0;
  2910. }
  2911. .status-icon.highlight, .status-icon.highlight:hover,
  2912. .updates .status-icon.highlight, .updates .status-icon.highlight:hover {
  2913. color: #323232;
  2914. }
  2915. .status-icon.blue, .status-icon.blue:hover,
  2916. .updates .status-icon.blue, .updates .status-icon.blue:hover {
  2917. color: #326b9b;
  2918. }
  2919. .status-icon.dim {
  2920. color: #ddd;
  2921. text-shadow: 1px 1px rgba(255,255,255,0.3);
  2922. }
  2923. .status-icon.dim {
  2924. color: #ddd;
  2925. text-shadow: 1px 1px rgba(255,255,255,0.3);
  2926. }
  2927. .l-unit--suspended .status-icon.dim {
  2928. color: #c0c0c0 !important;
  2929. text-shadow: 0px !important;
  2930. }
  2931. .noselect {
  2932. -webkit-touch-callout: none;
  2933. -webkit-user-select: none;
  2934. -khtml-user-select: none;
  2935. -moz-user-select: none;
  2936. -ms-user-select: none;
  2937. -user-select: none;
  2938. }
  2939. .search-input {
  2940. background-color: #fff;
  2941. border: 1px solid #ddd;
  2942. height: 26px;
  2943. line-height: 28px;
  2944. padding-left: 7px;
  2945. float: left;
  2946. width: 120px;
  2947. border-top-left-radius: 4px;
  2948. border-bottom-left-radius: 4px;
  2949. border-right: 0;
  2950. /* visibility: hidden;*/
  2951. -webkit-transition: width .2s ease-out;
  2952. -moz-transition: width .2s ease-out;
  2953. -o-transition: width .2s ease-out;
  2954. transition: width .2s ease-out;
  2955. }
  2956. .lang-ru .search-input{
  2957. width: 74px;
  2958. }
  2959. .lang-ru .search-input.activated{
  2960. width: 70px;
  2961. }
  2962. .search-input.activated{
  2963. width: 120px;
  2964. visibility: visible;
  2965. }
  2966. .search-input:focus {
  2967. /*
  2968. background-color: #e8fcff;
  2969. border-color: #75c9c2;
  2970. color: #333;
  2971. */
  2972. }
  2973. .float-left {
  2974. float: left;
  2975. }
  2976. .float-right {
  2977. float: right;
  2978. }
  2979. .display-inline-block {
  2980. display: inline-block;
  2981. }
  2982. .width-100p {
  2983. width: 100%;
  2984. }
  2985. .l-sort-toolbar table td {
  2986. float: left;
  2987. margin-left: 10px;
  2988. }
  2989. .l-sort-toolbar__search-box {
  2990. float: right !important;
  2991. padding-right: 0 !important;
  2992. }
  2993. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  2994. -background-color: #dfdedd;
  2995. }
  2996. .shortcuts {
  2997. background: rgba(20, 20, 20, 0.92);
  2998. display: inline-block;
  2999. position: fixed;
  3000. left: 50%;
  3001. bottom: 0;
  3002. color: #eee;
  3003. width: 800px;
  3004. border: 1px solid rgba(255,255,255,0.7);
  3005. border-bottom: 0px;
  3006. font-size: 0.8rem;
  3007. z-index: 120;
  3008. transform: translate(-50%, 0);
  3009. border-top-left-radius: 6px;
  3010. border-top-right-radius: 6px;
  3011. box-shadow: 0px 3px 40px rgba(0,0,0,0.6);
  3012. }
  3013. .shortcuts .header {
  3014. border-bottom: 1px solid #333;
  3015. height: 43px;
  3016. }
  3017. .shortcuts .title {
  3018. text-transform: uppercase;
  3019. color: #ffcc00;
  3020. padding: 7px 0 7px 14px;
  3021. display: inline-block;
  3022. float: left;
  3023. font-size: 0.85rem;
  3024. letter-spacing: -0.01em;
  3025. }
  3026. .shortcuts .close {
  3027. cursor: pointer;
  3028. display: inline-block;
  3029. float: right;
  3030. height: 32px;
  3031. padding-top: 11px;
  3032. width: 46px;
  3033. }
  3034. .shortcuts .close:hover {
  3035. background-color: #000;
  3036. }
  3037. .shortcuts .close:active {
  3038. background-color: #3b9de8;
  3039. }
  3040. .shortcuts .close .fas {
  3041. font-size: 1.3rem;
  3042. }
  3043. .shortcuts ul {
  3044. list-style-type: none;
  3045. padding: 30px 20px;
  3046. display: inline-block;
  3047. float: left;
  3048. width: 360px;
  3049. }
  3050. .shortcuts ul li {
  3051. padding: 5px 20px;
  3052. }
  3053. .shortcuts ul li.step-top {
  3054. padding-top: 30px;
  3055. }
  3056. .shortcuts ul li span {
  3057. color: #48F4EF;
  3058. display: inline-block;
  3059. font-weight: 600;
  3060. padding: 0 20px 0 0;
  3061. text-align: right;
  3062. /* width: 140px;*/
  3063. }
  3064. .shortcuts ul li span.bigger {
  3065. font-size: 18px;
  3066. }
  3067. .description {
  3068. font-weight: normal;
  3069. line-height: 25px;
  3070. padding-bottom: 45px;
  3071. margin-left: 50px;
  3072. }
  3073. .description ul{
  3074. margin-top: 15px;
  3075. list-style: none;
  3076. padding-left: 0;
  3077. }
  3078. .description li{
  3079. margin: 10px 0;
  3080. }
  3081. .description a {
  3082. line-height: 30px;
  3083. text-decoration: underline;
  3084. color: #326b9b;
  3085. }
  3086. .description a.purchase {
  3087. color: #FFF;
  3088. background-color: #3b9de8;
  3089. border: none;
  3090. border-radius: 3px;
  3091. font-size: 0.8rem;
  3092. font-weight: 600;
  3093. padding: 7px 15px;;
  3094. text-transform: capitalize;
  3095. text-decoration: none;
  3096. }
  3097. .description a.purchase:hover {
  3098. background-color: #54a6e5;
  3099. color: #4b4b4b;
  3100. }
  3101. .description a.purchase:active {
  3102. background-color: #54a6e5;
  3103. color: #4b4b4b;
  3104. }
  3105. .description a.cancel {
  3106. background-color: #999;
  3107. border: none;
  3108. border-radius: 3px;
  3109. color: #fff;
  3110. font-size: 0.8rem;
  3111. font-weight: 600;
  3112. padding: 7px 15px;
  3113. text-transform: capitalize;
  3114. text-decoration: none;
  3115. }
  3116. .description a.cancel:hover {
  3117. background-color: #326b9b;
  3118. }
  3119. .description a.cancel:active {
  3120. background-color: #5f9491;
  3121. }
  3122. .description.cancel-success {
  3123. color: #8fac0a;
  3124. font-weight: 600;
  3125. }
  3126. .description .licence {
  3127. padding: 20px 0;
  3128. color: #326b9b;
  3129. }
  3130. .description .licence input {
  3131. margin-left: 17px;
  3132. width: 137px;
  3133. }
  3134. .description span {
  3135. font-style: italic;
  3136. line-height: 45px;
  3137. padding-top: 20px;
  3138. }
  3139. .description .twoco {
  3140. font-style: italic;
  3141. line-height: 15px;
  3142. font-size: 0.8rem;
  3143. }
  3144. .ui-dialog {
  3145. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3146. font-weight: 500 !important;
  3147. background-color: rgba(245,245,245,0.87) !important;
  3148. box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.55) !important;
  3149. border-radius: 6px !important;
  3150. border: 1px solid rgba(255,255,255,0.9) !important;
  3151. text-align: center !important;
  3152. }
  3153. .ui-dialog .ui-dialog-content {
  3154. color: #121212 !important;
  3155. padding: 10px 26px 30px !important;
  3156. }
  3157. .ui-dialog .ui-dialog-title {
  3158. color: #046c98 !important;
  3159. font-size: 1.1em !important;
  3160. text-transform: none !important;
  3161. letter-spacing: -0.01em !important;
  3162. text-align: center !important;
  3163. float: none !important;
  3164. }
  3165. .ui-dialog-buttonpane {
  3166. border-color: #aaaaaa !important;
  3167. }
  3168. .ui-widget-overlay {
  3169. opacity: 0.8 !important;
  3170. background: rgba(10,10,10,0.9) !important;
  3171. }
  3172. .helper-container {
  3173. float: right;
  3174. margin-bottom: -450px;
  3175. margin-top: 410px;
  3176. margin-right: 22px;
  3177. padding-top: 3px;
  3178. width: 563px;
  3179. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  3180. border: 1px solid #cfcfcf;
  3181. border-radius: 4px;
  3182. }
  3183. .context-helper {
  3184. text-transform: uppercase;
  3185. /*text-decoration: underline;*/
  3186. color: #777;
  3187. font-size: 0.8rem;
  3188. cursor: pointer;
  3189. font-weight: 600;
  3190. float: right;
  3191. }
  3192. .context-helper:hover {
  3193. color: #3b9de8;
  3194. }
  3195. .context-helper:active {
  3196. color: #cc3366;
  3197. }
  3198. .cron-helper-tabs {
  3199. /* margin-top: 30px;*/
  3200. border: none !important;
  3201. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3202. }
  3203. .cron-helper-tabs a {
  3204. color: #777;
  3205. font-size: 0.8rem;
  3206. font-weight: 600;
  3207. line-height: 30px;
  3208. padding: 0 12px;
  3209. text-transform: uppercase;
  3210. }
  3211. .cron-helper-tabs a:hover {
  3212. color: #cc3366;
  3213. }
  3214. .cron-helper-tabs a:active {
  3215. color: #3b9de8;
  3216. }
  3217. .cron-helper-tabs .ui-tabs-selected a {
  3218. color: #cc3366;
  3219. }
  3220. .cron-helper-tabs select.short {
  3221. background-position: -388px -604px;
  3222. min-width: 30px;
  3223. width: 70px;
  3224. }
  3225. .cron-helper-tabs p {
  3226. color: #777;
  3227. font-size: 0.8rem;
  3228. }
  3229. .cron-helper-tabs p span{
  3230. padding-right: 15px;
  3231. padding-left: 25px;
  3232. }
  3233. .cron-helper-tabs p span.first{
  3234. display: inline-block;
  3235. padding-right: 15px;
  3236. width: 100px;
  3237. padding-left: 0;
  3238. }
  3239. .cron-helper-tabs .button {
  3240. width: auto;
  3241. background-color: #3b9de8;
  3242. border: 1px solid #3b9de8;
  3243. text-transform: capitalize;
  3244. }
  3245. .cron-helper-tabs .button:hover {
  3246. background-color: #5BD8CF;
  3247. border: 1px solid #5BD8CF;
  3248. }
  3249. .cron-helper-tabs .button:active {
  3250. background-color: #4FBCB4;
  3251. border: 1px solid #4FBCB4;
  3252. }
  3253. .context-helper-close {
  3254. cursor: pointer;
  3255. display: inline-block;
  3256. float: right;
  3257. height: 32px;
  3258. padding-top: 11px;
  3259. width: 46px;
  3260. filter: contrast(50%);
  3261. }
  3262. .context-helper-close:hover {
  3263. background-color: #aaa;
  3264. filter: none;
  3265. }
  3266. .context-helper-close:active {
  3267. background-color: #999;
  3268. filter: none;
  3269. }
  3270. .server-info {
  3271. }
  3272. .server-info-data {
  3273. margin-left: 100px;
  3274. margin-top: -20px;
  3275. }
  3276. .server-info-name {
  3277. margin-top: 5px;
  3278. margin-bottom: 30px;
  3279. }
  3280. .icon-server-info {
  3281. font-size: 5.2em;
  3282. float: left;
  3283. margin-right: 32px;
  3284. }
  3285. @media screen and (max-width: 950px) {
  3286. .helper-container {
  3287. display: none;
  3288. }
  3289. }