styles.min.css 79 KB

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