styles.min.css 80 KB

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