styles.min.css 80 KB

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