styles.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612
  1. @font-face {
  2. font-family: "Golos Text";
  3. src: url(/fonts/GolosText-Regular.woff2) format("woff2"), url(/fonts/GolosText-Regular.woff) format("woff");
  4. font-weight: 400;
  5. font-style: normal;
  6. font-display: swap;
  7. }
  8. @font-face {
  9. font-family: "Golos Text";
  10. src: url(/fonts/GolosText-Bold.woff2) format("woff2"), url(/fonts/GolosText-Bold.woff) format("woff");
  11. font-weight: 700;
  12. font-style: normal;
  13. font-display: swap;
  14. }
  15. @font-face {
  16. font-family: "Golos Text";
  17. src: url(/fonts/GolosText-Black.woff2) format("woff2"), url(/fonts/GolosText-Black.woff) format("woff");
  18. font-weight: 900;
  19. font-style: normal;
  20. font-display: swap;
  21. }
  22. @font-face {
  23. font-family: "Roboto";
  24. src: url(/fonts/Roboto.woff2) format("woff2"), url(/fonts/Roboto.woff) format("woff");
  25. font-weight: 400;
  26. font-style: normal;
  27. font-display: swap;
  28. }
  29. @font-face {
  30. font-family: "Source Serif Pro";
  31. src: url(/fonts/SourceSerifPro-Regular.woff2) format("woff2"), url(/fonts/SourceSerifPro-Regular.woff2) format("woff");
  32. font-weight: 100;
  33. font-style: normal;
  34. font-display: swap;
  35. }
  36. html {
  37. width: 100%;
  38. }
  39. html body {
  40. font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  41. background-color: #f5f5f5;
  42. overflow-y: scroll;
  43. }
  44. html body.dark {
  45. background-color: #7a7a7a;
  46. }
  47. html body.dark header .header__bottom {
  48. background-color: #989898;
  49. }
  50. html body .section {
  51. padding-left: 20px;
  52. padding-right: 20px;
  53. }
  54. html body .section .section-wrapper {
  55. box-sizing: border-box;
  56. margin-left: auto;
  57. margin-right: auto;
  58. max-width: 1306px;
  59. }
  60. html body .breadcrumbs {
  61. display: flex;
  62. }
  63. html body .breadcrumbs .breadcrumb {
  64. position: relative;
  65. display: inline-block;
  66. background: transparent;
  67. font: 12px/14px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  68. color: #5a748b;
  69. letter-spacing: 0.15em;
  70. text-transform: uppercase;
  71. padding: 0;
  72. margin-right: 30px;
  73. }
  74. html body .breadcrumbs .breadcrumb:not(:last-child):before {
  75. display: block;
  76. position: absolute;
  77. content: "•";
  78. right: -16px;
  79. color: #a8a8a8;
  80. }
  81. #zuck-modal .item .blur-bg {
  82. background-image: url(https://green.amic.ru/images/news/webp/508059_size1.webp);
  83. height: 100%;
  84. width: 100%;
  85. background-size: cover;
  86. background-repeat: no-repeat;
  87. filter: brightness(0.4) blur(10px);
  88. transform: scalex(-1);
  89. }
  90. #zuck-modal .item .image-container {
  91. height: 75%;
  92. background-color: #000;
  93. border-radius: 30px;
  94. position: absolute;
  95. top: 0;
  96. bottom: 0;
  97. margin: auto;
  98. left: 0;
  99. right: 0;
  100. width: 50%;
  101. max-width: 35%;
  102. overflow: hidden;
  103. box-shadow: #000 0 0 10px;
  104. display: flex;
  105. align-items: center;
  106. }
  107. #zuck-modal .item .image-container img {
  108. width: 100%;
  109. }
  110. @media (max-width: 500px) {
  111. #zuck-modal .item .image-container {
  112. bottom: auto;
  113. top: 185px;
  114. height: 38%;
  115. }
  116. }
  117. #zuck-modal .item .title a {
  118. background: #000000ab;
  119. z-index: 9;
  120. position: absolute;
  121. width: 50%;
  122. left: 0;
  123. right: 0;
  124. margin: auto;
  125. color: #fff;
  126. padding: 30px;
  127. border-radius: 20px;
  128. box-shadow: black 0 0 4px;
  129. font-weight: bold;
  130. }
  131. #zuck-modal .item .comments {
  132. position: absolute;
  133. right: 0;
  134. background: #000000ab;
  135. z-index: 1;
  136. color: white;
  137. width: 300px;
  138. padding: 30px;
  139. font-size: 12px;
  140. }
  141. #zuck-modal .item .comments .comment {
  142. margin-bottom: 15px;
  143. border-bottom: 1px solid white;
  144. }
  145. #zuck-modal .item .comments .comment .published_at {
  146. font-size: 10px;
  147. color: #a4a3a3;
  148. }
  149. @media (max-width: 500px) {
  150. #zuck-modal .item .comments {
  151. display: none;
  152. }
  153. }
  154. @media (max-width: 1024px) {
  155. #zuck-modal .item .title a {
  156. width: 80%;
  157. font-size: 20px;
  158. top: 20px;
  159. text-align: center;
  160. }
  161. #zuck-modal .item .image-container {
  162. width: 90%;
  163. max-width: 90%;
  164. }
  165. }
  166. #zuck-modal #zuck-modal-content .story-viewer .head .left .back {
  167. color: white;
  168. }
  169. @media (max-width: 500px) {
  170. #zuck-modal #zuck-modal-content .story-viewer .head .left .info .name {
  171. display: none;
  172. }
  173. }
  174. #stories .story {
  175. max-width: 110px !important;
  176. }
  177. #stories .story .item-link {
  178. position: relative;
  179. perspective: 1000px;
  180. }
  181. #stories .story .item-link:hover .item-preview {
  182. opacity: 0;
  183. transform: rotateY(180deg);
  184. }
  185. #stories .story .item-link:hover .info {
  186. opacity: 1;
  187. transform: rotateY(0deg);
  188. }
  189. #stories .story .item-link .item-preview {
  190. transform-style: preserve-3d;
  191. transition: transform 0.8s, opacity 0.8s;
  192. max-height: 110px !important;
  193. opacity: 1;
  194. }
  195. #stories .story .item-link .info {
  196. display: block;
  197. margin-top: 0;
  198. line-height: 1.2em;
  199. width: 100%;
  200. height: 100%;
  201. overflow: hidden;
  202. text-overflow: ellipsis;
  203. position: absolute;
  204. white-space: normal;
  205. top: 0;
  206. left: 0;
  207. opacity: 0;
  208. transform-style: preserve-3d;
  209. transition: transform 0.8s, opacity 0.8s;
  210. transform: rotateY(180deg);
  211. }
  212. #stories .story .item-link .info .name {
  213. height: 100%;
  214. display: block;
  215. overflow: hidden;
  216. text-overflow: ellipsis;
  217. font-size: 14px;
  218. }
  219. @media (max-width: 500px) {
  220. #stories .story .item-link .info {
  221. max-height: 100%;
  222. overflow-y: scroll;
  223. margin-top: 0;
  224. }
  225. }
  226. @media (max-width: 500px) {
  227. #stories {
  228. margin-bottom: 18px;
  229. }
  230. }
  231. header #js-header-bottom-id.fixed {
  232. position: fixed;
  233. top: 0;
  234. z-index: 99999;
  235. width: 100%;
  236. }
  237. @media (max-width: 500px) {
  238. header .nav-cont {
  239. max-width: 100%;
  240. overflow: hidden;
  241. position: relative;
  242. }
  243. header .nav-cont .header__bottom .header-bottom__nav {
  244. display: none;
  245. }
  246. header .nav-cont .header__bottom .header-bottom__wrapper .header-bottom__side {
  247. display: none;
  248. }
  249. header .nav-cont .burger {
  250. position: absolute;
  251. height: 30px;
  252. width: 25px;
  253. top: 0;
  254. bottom: 0;
  255. right: 15px;
  256. margin: auto;
  257. }
  258. header .nav-cont .burger .hamburger {
  259. display: block;
  260. position: absolute;
  261. height: 2px;
  262. width: 100%;
  263. top: 0px;
  264. bottom: 0;
  265. margin: auto;
  266. background: black;
  267. }
  268. header .nav-cont .burger .hamburger:before {
  269. content: "";
  270. display: block;
  271. position: absolute;
  272. height: 2px;
  273. width: 100%;
  274. top: -6px;
  275. background: black;
  276. }
  277. header .nav-cont .burger .hamburger:after {
  278. content: "";
  279. display: block;
  280. position: absolute;
  281. height: 2px;
  282. width: 100%;
  283. top: 6px;
  284. background: black;
  285. }
  286. header .nav-cont .dots {
  287. position: absolute;
  288. height: 30px;
  289. width: 25px;
  290. top: 0;
  291. bottom: 0;
  292. right: 60px;
  293. margin: auto;
  294. display: flex;
  295. justify-content: center;
  296. align-items: center;
  297. }
  298. header .nav-cont .dots .dots-anhcor {
  299. height: 4px;
  300. width: 4px;
  301. background: #a8a8a8;
  302. border-radius: 50%;
  303. }
  304. header .nav-cont .dots .dots-anhcor:before,
  305. header .nav-cont .dots .dots-anhcor:after {
  306. content: "";
  307. position: absolute;
  308. height: 4px;
  309. width: 4px;
  310. background: #a8a8a8;
  311. border-radius: 50%;
  312. }
  313. header .nav-cont .dots .dots-anhcor:before {
  314. top: 5px;
  315. }
  316. header .nav-cont .dots .dots-anhcor:after {
  317. top: 20px;
  318. }
  319. }
  320. header {
  321. position: relative;
  322. padding: 10px 0;
  323. }
  324. header #stories {
  325. display: none;
  326. }
  327. header #stories.stories {
  328. display: block;
  329. }
  330. @media (max-width: 991px) {
  331. header .stories-cel {
  332. max-width: 100%;
  333. }
  334. }
  335. header .stories_cont {
  336. display: flex;
  337. height: 100%;
  338. align-items: center;
  339. }
  340. @media (max-width: 500px) {
  341. header .stories_cont {
  342. margin-right: -15px;
  343. }
  344. }
  345. @media (max-width: 991px) {
  346. header .header-center__comments {
  347. display: none;
  348. }
  349. }
  350. header .header-center__info {
  351. color: #5a748b;
  352. align-items: center;
  353. display: flex;
  354. height: 100%;
  355. }
  356. header .header-center__info-link {
  357. white-space: nowrap;
  358. color: #3b9b00;
  359. line-height: 22px;
  360. }
  361. header .header-center__info-link_down {
  362. color: #ad0000;
  363. }
  364. header .header-comments__item:not(:last-child) {
  365. margin-bottom: 8px;
  366. }
  367. header .header-comments__title {
  368. margin-bottom: 5px;
  369. font-size: 12px;
  370. line-height: 17px;
  371. color: #a8a8a8;
  372. text-transform: uppercase;
  373. letter-spacing: 0.1em;
  374. }
  375. header .header-comments-item__bottom,
  376. header .header-comments-item__text {
  377. line-height: 16px;
  378. max-height: 32px;
  379. overflow: hidden;
  380. font-size: 12px;
  381. }
  382. header .header-comments-item__bottom {
  383. display: flex;
  384. justify-content: space-between;
  385. color: #a8a8a8;
  386. }
  387. header .header-comments-item__bottom .header-comments-item__title {
  388. max-width: 355px;
  389. overflow: hidden;
  390. white-space: nowrap;
  391. text-overflow: ellipsis;
  392. }
  393. header .header-comments-item__bottom .header-comments-item__time {
  394. white-space: nowrap;
  395. }
  396. header .header__bottom {
  397. background-color: white;
  398. }
  399. header .header__bottom .header-bottom__wrapper {
  400. display: flex;
  401. justify-content: space-between;
  402. padding: 15px 0 13px;
  403. }
  404. header .header__bottom .header-bottom__wrapper .header-bottom__main {
  405. display: flex;
  406. align-items: center;
  407. }
  408. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__logo {
  409. margin-right: 32px;
  410. }
  411. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__nav {
  412. margin: 0 42px 0 53px;
  413. }
  414. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__nav .header-nav .header-nav__list {
  415. display: flex;
  416. list-style: none;
  417. margin: 0;
  418. }
  419. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__nav .header-nav .header-nav__list .header-nav__item:not(:last-child) {
  420. margin-right: 23px;
  421. }
  422. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__nav .header-nav .header-nav__list .header-nav__link {
  423. font: 700 12px/14px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  424. text-transform: uppercase;
  425. letter-spacing: 0.065em;
  426. }
  427. header .header__bottom .header-bottom__wrapper .header-bottom__side {
  428. display: flex;
  429. }
  430. header .header__bottom .header-bottom__wrapper .header-bottom__side .header-bottom__buttons {
  431. display: flex;
  432. align-items: center;
  433. }
  434. header .header__bottom .header-bottom__wrapper .header-bottom__side .header-bottom__buttons .header-bottom__button:not(:last-child) {
  435. margin-right: 10px;
  436. }
  437. @media (max-width: 500px) {
  438. header .header__bottom .header-bottom__wrapper {
  439. display: flex;
  440. justify-content: space-between;
  441. padding: 0;
  442. }
  443. header .header__bottom .header-bottom__wrapper .header-bottom__main .header-bottom__logo {
  444. margin-right: 0;
  445. padding: 7px 0;
  446. }
  447. }
  448. header #stories {
  449. -ms-overflow-style: none;
  450. /* IE and Edge */
  451. scrollbar-width: none;
  452. /* Firefox */
  453. }
  454. header #stories::-webkit-scrollbar {
  455. display: none;
  456. }
  457. @media (max-width: 500px) {
  458. .sidemenu_overlay,
  459. .sidemenu_rubrics_overlay {
  460. position: fixed;
  461. width: 100%;
  462. height: 100%;
  463. left: 100%;
  464. top: 0;
  465. background: #00000055;
  466. color: white;
  467. transition: 0.2s ease-in-out;
  468. }
  469. .sidemenu_overlay.active,
  470. .sidemenu_rubrics_overlay.active {
  471. left: 0;
  472. }
  473. .sidemenu_overlay .sidemenu,
  474. .sidemenu_rubrics_overlay .sidemenu {
  475. display: block;
  476. height: 100%;
  477. width: calc(100% - 30px);
  478. margin-left: 30px;
  479. background-color: #3b5573;
  480. }
  481. .sidemenu_overlay .sidemenu .sidemenu_header,
  482. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header {
  483. background: #eaeaea;
  484. padding: 10px;
  485. display: flex;
  486. align-items: center;
  487. }
  488. .sidemenu_overlay .sidemenu .sidemenu_header .search_form,
  489. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form {
  490. display: flex;
  491. flex-grow: 1;
  492. }
  493. .sidemenu_overlay .sidemenu .sidemenu_header .search_form input,
  494. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form input {
  495. display: block;
  496. border: none;
  497. flex-grow: 1;
  498. border-top-left-radius: 50px;
  499. border-bottom-left-radius: 50px;
  500. outline: none;
  501. padding: 4px 3px 4px 26px;
  502. width: 20%;
  503. background-image: url(/img/search.svg);
  504. background-repeat: no-repeat;
  505. background-size: 14px;
  506. background-position: 9px 8px;
  507. }
  508. .sidemenu_overlay .sidemenu .sidemenu_header .search_form button,
  509. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form button {
  510. display: block;
  511. border: none;
  512. background: #f5f5f5;
  513. color: #f6911f;
  514. border-top-right-radius: 50px;
  515. border-bottom-right-radius: 50px;
  516. padding: 3px 10px;
  517. outline: none;
  518. }
  519. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger,
  520. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger {
  521. display: flex;
  522. color: #767471;
  523. height: 15px;
  524. margin-left: 15px;
  525. }
  526. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner,
  527. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner {
  528. background-color: #767471;
  529. }
  530. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner:after,
  531. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner:after {
  532. background-color: #767471;
  533. }
  534. .sidemenu_overlay .sidemenu .sidemenu_content ul,
  535. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul {
  536. list-style: none;
  537. padding: 0;
  538. margin-top: 15px;
  539. }
  540. .sidemenu_overlay .sidemenu .sidemenu_content ul li,
  541. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul li {
  542. margin-bottom: 15px;
  543. }
  544. .sidemenu_overlay .sidemenu .sidemenu_content ul li a,
  545. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul li a {
  546. position: relative;
  547. font-size: 20px;
  548. padding: 0 0 0 30px;
  549. text-decoration: none;
  550. color: white;
  551. font-weight: bold;
  552. }
  553. .sidemenu_overlay .sidemenu .sidemenu_content .header-bottom__buttons,
  554. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content .header-bottom__buttons {
  555. padding: 0 30px;
  556. margin-bottom: 5px;
  557. }
  558. .sidemenu_overlay .sidemenu .sidemenu_content .header-bottom__buttons .header-bottom__button,
  559. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content .header-bottom__buttons .header-bottom__button {
  560. margin-bottom: 5px;
  561. }
  562. .sidemenu_overlay .sidemenu .sidemenu_content .header-bottom__buttons .header-bottom__button a,
  563. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content .header-bottom__buttons .header-bottom__button a {
  564. width: 140px;
  565. }
  566. }
  567. .hamburger {
  568. display: block;
  569. position: absolute;
  570. height: 15px;
  571. right: 0px;
  572. color: gray;
  573. }
  574. .hamburger .hamburger-inner {
  575. background-color: gray;
  576. }
  577. @media not (max-width: 500px) {
  578. .burgerd {
  579. line-height: 12px;
  580. font-size: 23px;
  581. cursor: pointer;
  582. }
  583. /*
  584. .burger{
  585. position: absolute;
  586. height: 30px;
  587. width: 25px;
  588. bottom: 26px;
  589. left: 15px;
  590. margin: auto;
  591. .hamburger{
  592. display: block;
  593. position: absolute;
  594. height: 2px;
  595. width: 100%;
  596. top: 0px;
  597. bottom: 0;
  598. margin: auto;
  599. background: black;
  600. &:before{
  601. content: "";
  602. display: block;
  603. position: absolute;
  604. height: 2px;
  605. width: 100%;
  606. top: -6px;
  607. background: black;
  608. }
  609. &:after{
  610. content: "";
  611. display: block;
  612. position: absolute;
  613. height: 2px;
  614. width: 100%;
  615. top: 6px;
  616. background: black;
  617. }
  618. }
  619. }
  620. */
  621. .dots {
  622. position: absolute;
  623. height: 30px;
  624. width: 25px;
  625. top: 0;
  626. bottom: 0;
  627. right: 60px;
  628. margin: auto;
  629. display: flex;
  630. justify-content: center;
  631. align-items: center;
  632. }
  633. .dots .dots-anhcor {
  634. height: 4px;
  635. width: 4px;
  636. background: #a8a8a8;
  637. border-radius: 50%;
  638. }
  639. .dots .dots-anhcor:before,
  640. .dots .dots-anhcor:after {
  641. content: "";
  642. position: absolute;
  643. height: 4px;
  644. width: 4px;
  645. background: #a8a8a8;
  646. border-radius: 50%;
  647. }
  648. .dots .dots-anhcor:before {
  649. top: 5px;
  650. }
  651. .dots .dots-anhcor:after {
  652. top: 20px;
  653. }
  654. .sidemenu_overlay,
  655. .sidemenu_rubrics_overlay {
  656. position: fixed;
  657. width: 100%;
  658. height: 100%;
  659. left: 100%;
  660. top: 0;
  661. background: #00000055;
  662. color: white;
  663. transition: 0.2s ease-in-out;
  664. }
  665. .sidemenu_overlay.active,
  666. .sidemenu_rubrics_overlay.active {
  667. left: 0;
  668. backdrop-filter: blur(5px);
  669. }
  670. .sidemenu_overlay .sidemenu,
  671. .sidemenu_rubrics_overlay .sidemenu {
  672. display: block;
  673. height: 100%;
  674. background-color: #3b5573;
  675. width: calc(100% - 300px);
  676. margin: 0 auto;
  677. opacity: 0.9;
  678. }
  679. .sidemenu_overlay .sidemenu .sidemenu_header,
  680. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header {
  681. background: #eaeaea;
  682. padding: 10px;
  683. display: flex;
  684. align-items: center;
  685. }
  686. .sidemenu_overlay .sidemenu .sidemenu_header .search_form,
  687. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form {
  688. display: flex;
  689. flex-grow: 1;
  690. }
  691. .sidemenu_overlay .sidemenu .sidemenu_header .search_form input,
  692. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form input {
  693. display: block;
  694. border: none;
  695. flex-grow: 1;
  696. border-top-left-radius: 50px;
  697. border-bottom-left-radius: 50px;
  698. outline: none;
  699. padding: 4px 3px 4px 26px;
  700. width: 20%;
  701. background-image: url(/img/search.svg);
  702. background-repeat: no-repeat;
  703. background-size: 14px;
  704. background-position: 9px 8px;
  705. }
  706. .sidemenu_overlay .sidemenu .sidemenu_header .search_form button,
  707. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .search_form button {
  708. display: block;
  709. border: none;
  710. background: #f5f5f5;
  711. color: #f6911f;
  712. border-top-right-radius: 50px;
  713. border-bottom-right-radius: 50px;
  714. padding: 3px 10px;
  715. outline: none;
  716. }
  717. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger,
  718. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger {
  719. display: flex;
  720. color: #767471;
  721. height: 15px;
  722. margin-left: 15px;
  723. }
  724. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner,
  725. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner {
  726. background-color: #767471;
  727. }
  728. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner:after,
  729. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-inner:after {
  730. background-color: #767471;
  731. }
  732. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger,
  733. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger,
  734. .sidemenu_overlay .sidemenu .sidemenu_header .dots,
  735. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots {
  736. position: relative;
  737. width: 20px;
  738. }
  739. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box,
  740. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box,
  741. .sidemenu_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box,
  742. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box {
  743. transform: rotate(45deg);
  744. }
  745. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box:before,
  746. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box:before,
  747. .sidemenu_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box:before,
  748. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box:before {
  749. top: 0;
  750. transform: rotate(90deg);
  751. }
  752. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box:after,
  753. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger.is-active .hamburger-box:after,
  754. .sidemenu_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box:after,
  755. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots.is-active .hamburger-box:after {
  756. display: none;
  757. }
  758. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box,
  759. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box,
  760. .sidemenu_overlay .sidemenu .sidemenu_header .dots .hamburger-box,
  761. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots .hamburger-box {
  762. display: block;
  763. position: absolute;
  764. height: 2px;
  765. width: 100%;
  766. top: 0px;
  767. bottom: 0;
  768. margin: auto;
  769. background: black;
  770. }
  771. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box:before,
  772. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box:before,
  773. .sidemenu_overlay .sidemenu .sidemenu_header .dots .hamburger-box:before,
  774. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots .hamburger-box:before {
  775. content: "";
  776. display: block;
  777. position: absolute;
  778. height: 2px;
  779. width: 100%;
  780. top: -6px;
  781. background: black;
  782. }
  783. .sidemenu_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box:after,
  784. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .hamburger .hamburger-box:after,
  785. .sidemenu_overlay .sidemenu .sidemenu_header .dots .hamburger-box:after,
  786. .sidemenu_rubrics_overlay .sidemenu .sidemenu_header .dots .hamburger-box:after {
  787. content: "";
  788. display: block;
  789. position: absolute;
  790. height: 2px;
  791. width: 100%;
  792. top: 6px;
  793. background: black;
  794. }
  795. .sidemenu_overlay .sidemenu .sidemenu_content,
  796. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content {
  797. margin: 20px 50px;
  798. overflow: hidden;
  799. }
  800. .sidemenu_overlay .sidemenu .sidemenu_content .list-wrapper,
  801. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content .list-wrapper {
  802. -webkit-column-count: 4;
  803. -moz-column-count: 4;
  804. column-count: 4;
  805. border-top: 1px solid #ea943a;
  806. margin-top: 0px;
  807. padding-top: 8px;
  808. }
  809. .sidemenu_overlay .sidemenu .sidemenu_content ul,
  810. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul {
  811. list-style: none;
  812. padding: 0;
  813. margin-top: 15px;
  814. margin-bottom: 0px;
  815. -webkit-column-count: 4;
  816. -moz-column-count: 4;
  817. column-count: 4;
  818. }
  819. .sidemenu_overlay .sidemenu .sidemenu_content ul li,
  820. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul li {
  821. margin-bottom: 15px;
  822. }
  823. .sidemenu_overlay .sidemenu .sidemenu_content ul li a,
  824. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul li a {
  825. position: relative;
  826. font-size: 20px;
  827. padding: 0 0 0 30px;
  828. text-decoration: none;
  829. color: white;
  830. font-weight: bold;
  831. }
  832. .sidemenu_overlay .sidemenu .sidemenu_content ul .hr,
  833. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content ul .hr {
  834. width: 50%;
  835. border-top: solid #e8864b 1px;
  836. }
  837. .sidemenu_overlay .sidemenu .sidemenu_content .header-bottom__buttons,
  838. .sidemenu_rubrics_overlay .sidemenu .sidemenu_content .header-bottom__buttons {
  839. display: none;
  840. }
  841. }
  842. body > main {
  843. margin-top: 20px;
  844. }
  845. @media (max-width: 500px) {
  846. body > main {
  847. margin-top: 0px;
  848. }
  849. }
  850. .news-link {
  851. text-decoration: none;
  852. color: #3e3e3e;
  853. outline: none;
  854. transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  855. font: 700 18px/32px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  856. margin-bottom: 10px;
  857. display: block;
  858. }
  859. .lenta {
  860. background: white;
  861. font: 14px/20px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  862. min-height: 100%;
  863. overflow-x: hidden;
  864. }
  865. .lenta h3 {
  866. font: 14px/20px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  867. margin: 0;
  868. display: flex;
  869. }
  870. .lenta h3 .published_at {
  871. transition: 0.3s;
  872. display: flex;
  873. min-height: 100%;
  874. max-width: 82px;
  875. min-width: 82px;
  876. font: 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  877. color: #a8a8a8;
  878. align-items: center;
  879. justify-content: center;
  880. flex-direction: column;
  881. align-content: center;
  882. justify-items: center;
  883. text-align: center;
  884. padding: 0 3px;
  885. }
  886. .lenta h3 .published_at .commnets {
  887. display: block;
  888. }
  889. .lenta h3 .published_at .commnets .icon {
  890. width: 10px;
  891. height: 10px;
  892. fill: #a8a8a8;
  893. margin-right: 5px;
  894. }
  895. .lenta .list-wrapper > div {
  896. padding: 12px 2px 12px 10px;
  897. transition: background-color 0.3s;
  898. }
  899. .lenta .list-wrapper > div a {
  900. transition: 0.3s;
  901. flex-grow: 1;
  902. }
  903. .lenta .list-wrapper > div:hover {
  904. background: #f6911f;
  905. }
  906. .lenta .list-wrapper > div:hover .published_at {
  907. color: hsla(0, 0%, 100%, 0.5);
  908. }
  909. .lenta .list-wrapper > div:hover a {
  910. color: white;
  911. }
  912. .lenta .all-news {
  913. display: flex;
  914. padding: 30px;
  915. justify-content: center;
  916. }
  917. .lenta .all-news a {
  918. display: block;
  919. padding: 10px 20px;
  920. border-radius: 50px;
  921. background: #f5f5f5;
  922. color: #f6911f;
  923. }
  924. .footer {
  925. margin-top: 30px;
  926. background-color: #eaeaea;
  927. color: #878787;
  928. padding: 30px 0 0 0;
  929. }
  930. .footer .footer-nav__item a {
  931. font: 12px/25px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  932. color: #5a748b;
  933. }
  934. .footer .footer-top__about {
  935. font: 10px/16px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  936. color: #878787;
  937. }
  938. @media (max-width: 500px) {
  939. .footer .footer-top__about {
  940. font: 12px/20px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  941. }
  942. }
  943. .footer .socials .socials__list {
  944. display: flex;
  945. }
  946. .footer .socials .icon {
  947. fill: #B7A8A8;
  948. width: 24px;
  949. height: 14px;
  950. }
  951. .footer .footer__bottom {
  952. background: white;
  953. padding: 8px 0;
  954. font: 12px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  955. color: #a8a8a8;
  956. }
  957. .footer .footer__bottom a {
  958. color: #a8a8a8;
  959. }
  960. .main-view {
  961. display: flex;
  962. flex-wrap: wrap;
  963. }
  964. .main-view picture {
  965. filter: brightness(0.7);
  966. }
  967. .main-view .group {
  968. position: relative;
  969. width: 40%;
  970. }
  971. @media (max-width: 500px) {
  972. .main-view .group {
  973. width: 100%;
  974. }
  975. }
  976. .main-view .group::after {
  977. content: "";
  978. position: absolute;
  979. height: calc(100% - 30px);
  980. top: 0;
  981. bottom: 0;
  982. left: 0;
  983. display: block;
  984. width: 1px;
  985. background-color: #e8e8e8;
  986. z-index: 1;
  987. margin: auto;
  988. }
  989. .news-item {
  990. z-index: 1;
  991. text-align: left;
  992. display: flex;
  993. align-items: flex-end;
  994. justify-content: flex-start;
  995. align-content: flex-end;
  996. flex-wrap: wrap;
  997. overflow: hidden;
  998. position: relative;
  999. }
  1000. @media (max-width: 500px) {
  1001. .news-item {
  1002. width: 100% !important;
  1003. }
  1004. }
  1005. .news-item.main {
  1006. width: 100%;
  1007. box-shadow: black 0 0 14px -5px;
  1008. }
  1009. .news-item.main a {
  1010. color: white;
  1011. }
  1012. .news-item picture:after {
  1013. position: absolute;
  1014. transition: 0.3s;
  1015. opacity: 1;
  1016. content: "";
  1017. height: 100%;
  1018. width: 100%;
  1019. top: 0;
  1020. left: 0;
  1021. background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  1022. }
  1023. .news-item picture:hover::after {
  1024. opacity: 0.4;
  1025. }
  1026. .news-item .meta {
  1027. position: absolute;
  1028. bottom: 0;
  1029. left: 0;
  1030. color: #fff;
  1031. padding: 15px 30px;
  1032. }
  1033. .news-item .meta .title {
  1034. font: 700 28px/32px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1035. margin-bottom: 10px;
  1036. }
  1037. @media (max-width: 500px) {
  1038. .news-item .meta .title {
  1039. font-size: 14px;
  1040. line-height: 16px;
  1041. }
  1042. }
  1043. @media (max-width: 500px) and (resolution: 150dpi) {
  1044. .news-item .meta .title {
  1045. font-size: 10px;
  1046. line-height: 12px;
  1047. }
  1048. }
  1049. .news-item .meta .lead {
  1050. margin-bottom: 15px;
  1051. font: 18px/25px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1052. color: hsla(0, 0%, 100%, 0.8);
  1053. font-size: 16px;
  1054. line-height: 150%;
  1055. }
  1056. @media (max-width: 500px) {
  1057. .news-item .meta .lead {
  1058. font-size: 12px;
  1059. }
  1060. }
  1061. .news-item .meta .published_at {
  1062. color: hsla(0, 0%, 100%, 0.5);
  1063. font: 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1064. }
  1065. .news-item .meta .published_at .commnets {
  1066. margin-left: 20px;
  1067. }
  1068. .news-item .meta .published_at .icon {
  1069. width: 10px;
  1070. height: 10px;
  1071. fill: #a8a8a8;
  1072. margin-right: 5px;
  1073. }
  1074. .news-item.main {
  1075. margin-bottom: 30px;
  1076. }
  1077. .news-item.high .meta .title {
  1078. font-weight: 700 !important;
  1079. }
  1080. .news-item.high,
  1081. .news-item.low {
  1082. width: 60%;
  1083. align-content: center;
  1084. background: white;
  1085. }
  1086. .news-item.high:hover .published_at,
  1087. .news-item.low:hover .published_at {
  1088. color: #3b5573;
  1089. }
  1090. .news-item.high .meta,
  1091. .news-item.low .meta {
  1092. position: relative;
  1093. color: #3e3e3e;
  1094. padding: 50px 15px 15px 15px;
  1095. }
  1096. .news-item.high .meta .title,
  1097. .news-item.low .meta .title {
  1098. font: 24px/34px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1099. }
  1100. .news-item.high .meta .lead,
  1101. .news-item.low .meta .lead {
  1102. font-size: 16px;
  1103. line-height: 150%;
  1104. color: #3e3e3e;
  1105. }
  1106. .news-item.high .meta .published_at,
  1107. .news-item.low .meta .published_at {
  1108. position: absolute;
  1109. top: 15px;
  1110. left: 15px;
  1111. color: #aeaeae;
  1112. }
  1113. .news-item.low {
  1114. width: 100%;
  1115. padding-bottom: 15px;
  1116. }
  1117. .news-item.low .meta .title {
  1118. font: 18px/26px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1119. margin: 0;
  1120. }
  1121. .news-item.low:nth-child(1)::after {
  1122. content: "";
  1123. position: absolute;
  1124. width: calc(100% - 15px);
  1125. bottom: 0;
  1126. left: 0;
  1127. display: block;
  1128. height: 1px;
  1129. background-color: #e8e8e8;
  1130. z-index: 1;
  1131. }
  1132. #lenta-container {
  1133. -ms-overflow-style: none;
  1134. scrollbar-width: none;
  1135. overflow-y: scroll;
  1136. }
  1137. @media (max-width: 500px) {
  1138. #lenta-container {
  1139. max-height: 100% !important;
  1140. }
  1141. }
  1142. #lenta-container::-webkit-scrollbar {
  1143. display: none;
  1144. }
  1145. #lenta-container + .shadow {
  1146. position: relative;
  1147. width: 100%;
  1148. content: "";
  1149. top: -50px;
  1150. left: 0;
  1151. right: 0;
  1152. margin: auto;
  1153. height: 50px;
  1154. background: linear-gradient(transparent, #fff);
  1155. }
  1156. .partner-news {
  1157. margin-top: 30px;
  1158. }
  1159. .partner-news > div {
  1160. flex-grow: 1;
  1161. }
  1162. .partner-news #top_slider {
  1163. display: flex;
  1164. overflow: hidden;
  1165. position: relative;
  1166. }
  1167. .partner-news #top_slider .arrows {
  1168. position: absolute;
  1169. height: 50px;
  1170. width: 100%;
  1171. top: 27%;
  1172. left: 0;
  1173. z-index: 1;
  1174. font-size: 25px;
  1175. }
  1176. .partner-news #top_slider .arrows > div {
  1177. position: absolute;
  1178. top: 0;
  1179. cursor: pointer;
  1180. height: 50px;
  1181. width: 50px;
  1182. color: white;
  1183. border-radius: 50%;
  1184. background: #f6911f;
  1185. display: flex;
  1186. align-items: center;
  1187. justify-content: center;
  1188. }
  1189. .partner-news #top_slider .arrows > div svg {
  1190. fill: white;
  1191. height: 20px;
  1192. width: 20px;
  1193. }
  1194. .partner-news #top_slider .arrows > div.next {
  1195. right: 0px;
  1196. }
  1197. .partner-news #top_slider .arrows > div.prev {
  1198. left: 0px;
  1199. }
  1200. .partner-news #top_slider .slides {
  1201. display: flex;
  1202. overflow: hidden;
  1203. position: relative;
  1204. }
  1205. .partner-news #top_slider .slides > div {
  1206. min-width: 100%!important;
  1207. padding: 0;
  1208. margin-right: 15px;
  1209. transform: translate(0, 0);
  1210. transition: 0.3s;
  1211. }
  1212. .partner-news .partner-news-item {
  1213. position: relative;
  1214. background-color: white;
  1215. height: 100%;
  1216. padding-bottom: 30px;
  1217. }
  1218. .partner-news .partner-news-item .meta {
  1219. padding: 15px;
  1220. }
  1221. .partner-news .partner-news-item .meta h2 {
  1222. font: 18px/22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1223. }
  1224. .partner-news .partner-news-item .meta .published_at {
  1225. position: absolute;
  1226. bottom: 15px;
  1227. left: 15px;
  1228. color: #a8a8a8;
  1229. }
  1230. .partner-news .partner-news-item .meta .published_at .icon {
  1231. width: 10px;
  1232. height: 10px;
  1233. fill: #a8a8a8;
  1234. margin-right: 5px;
  1235. }
  1236. .slpager {
  1237. position: absolute;
  1238. bottom: 20px;
  1239. right: 30px;
  1240. z-index: 100;
  1241. }
  1242. .slider-indicator {
  1243. flex: 0 1 auto;
  1244. box-sizing: content-box;
  1245. width: 10px;
  1246. height: 5px;
  1247. margin-right: 3px;
  1248. margin-left: 3px;
  1249. text-indent: -999px;
  1250. background-color: rgba(255, 255, 255, 0.6);
  1251. background-clip: padding-box;
  1252. border-top: 15px solid transparent;
  1253. border-bottom: 15px solid transparent;
  1254. cursor: pointer;
  1255. display: block;
  1256. float: left;
  1257. }
  1258. .slider-indicator.active {
  1259. background-color: #ff7f00;
  1260. z-index: 101;
  1261. }
  1262. .slinner {
  1263. z-index: 101;
  1264. }
  1265. .main-view > div {
  1266. flex-grow: 1;
  1267. }
  1268. .main-view #top_mslider {
  1269. display: flex;
  1270. overflow: hidden;
  1271. position: relative;
  1272. width: 100%;
  1273. box-shadow: #000 0 0 14px -5px;
  1274. margin-bottom: 30px;
  1275. }
  1276. .main-view #top_mslider .arrows {
  1277. position: absolute;
  1278. height: 50px;
  1279. width: 100%;
  1280. top: 44%;
  1281. left: 0;
  1282. z-index: 100;
  1283. font-size: 25px;
  1284. opacity: 0.7;
  1285. }
  1286. @media (max-width: 500px) {
  1287. .main-view #top_mslider .arrows {
  1288. top: 8%;
  1289. }
  1290. }
  1291. .main-view #top_mslider .arrows > div {
  1292. position: absolute;
  1293. top: 0;
  1294. cursor: pointer;
  1295. height: 50px;
  1296. width: 50px;
  1297. color: white;
  1298. border-radius: 50%;
  1299. background: #f6911f;
  1300. display: flex;
  1301. align-items: center;
  1302. justify-content: center;
  1303. }
  1304. .main-view #top_mslider .arrows > div svg {
  1305. fill: white;
  1306. height: 20px;
  1307. width: 20px;
  1308. }
  1309. .main-view #top_mslider .arrows > div.next {
  1310. right: 5px;
  1311. }
  1312. .main-view #top_mslider .arrows > div.prev {
  1313. left: 5px;
  1314. }
  1315. .main-view #top_mslider .slides {
  1316. display: flex;
  1317. overflow: hidden;
  1318. position: relative;
  1319. width: 100%;
  1320. }
  1321. .main-view #top_mslider .slides > div {
  1322. min-width: 100%!important;
  1323. padding: 0;
  1324. margin-right: 15px;
  1325. transform: translate(0, 0);
  1326. transition: 0.3s;
  1327. }
  1328. .main-view .news-sitem {
  1329. z-index: 1;
  1330. text-align: left;
  1331. display: flex;
  1332. align-items: flex-end;
  1333. justify-content: flex-start;
  1334. align-content: flex-end;
  1335. flex-wrap: wrap;
  1336. overflow: hidden;
  1337. position: relative;
  1338. }
  1339. @media (max-width: 500px) {
  1340. .main-view .news-sitem {
  1341. width: 100% !important;
  1342. }
  1343. }
  1344. .main-view .news-sitem.main {
  1345. width: 100%;
  1346. }
  1347. .main-view .news-sitem.main a {
  1348. color: white;
  1349. }
  1350. .main-view .news-sitem picture:after {
  1351. position: absolute;
  1352. transition: 0.3s;
  1353. opacity: 1;
  1354. content: "";
  1355. height: 100%;
  1356. width: 100%;
  1357. top: 0;
  1358. left: 0;
  1359. background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  1360. }
  1361. .main-view .news-sitem picture:hover::after {
  1362. opacity: 0.4;
  1363. }
  1364. .main-view .news-sitem .meta {
  1365. position: absolute;
  1366. bottom: 0;
  1367. left: 0;
  1368. color: #fff;
  1369. padding: 15px 30px;
  1370. }
  1371. .main-view .news-sitem .meta .title {
  1372. font: 700 28px/32px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1373. margin-bottom: 10px;
  1374. }
  1375. @media (max-width: 500px) {
  1376. .main-view .news-sitem .meta .title {
  1377. font-size: 14px;
  1378. line-height: 16px;
  1379. }
  1380. }
  1381. .main-view .news-sitem .meta .lead {
  1382. margin-bottom: 15px;
  1383. font: 18px/25px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1384. color: hsla(0, 0%, 100%, 0.8);
  1385. font-size: 16px;
  1386. line-height: 150%;
  1387. }
  1388. @media (max-width: 500px) {
  1389. .main-view .news-sitem .meta .lead {
  1390. font-size: 12px;
  1391. }
  1392. }
  1393. .main-view .news-sitem .meta .published_at {
  1394. color: hsla(0, 0%, 100%, 0.5);
  1395. font: 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1396. }
  1397. .main-view .news-sitem .meta .published_at .commnets {
  1398. margin-left: 20px;
  1399. }
  1400. .main-view .news-sitem .meta .published_at .icon {
  1401. width: 10px;
  1402. height: 10px;
  1403. fill: #a8a8a8;
  1404. margin-right: 5px;
  1405. }
  1406. .wide-widget {
  1407. margin-top: 30px;
  1408. }
  1409. .wide-widget .cont {
  1410. position: relative;
  1411. }
  1412. .wide-widget picture:after {
  1413. position: absolute;
  1414. transition: 0.3s;
  1415. opacity: 1;
  1416. content: "";
  1417. height: 100%;
  1418. width: 100%;
  1419. top: 0;
  1420. left: 0;
  1421. background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  1422. }
  1423. .wide-widget picture:hover::after {
  1424. opacity: 0.4;
  1425. }
  1426. .wide-widget .meta {
  1427. position: absolute;
  1428. bottom: 0;
  1429. left: 0;
  1430. width: 100%;
  1431. height: 100%;
  1432. }
  1433. .wide-widget .meta .topic {
  1434. text-transform: uppercase;
  1435. position: absolute;
  1436. width: 210px;
  1437. height: 40px;
  1438. bottom: 5px;
  1439. left: 0;
  1440. right: 0;
  1441. margin: auto;
  1442. font: 14px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1443. color: hsla(0, 0%, 100%, 0.5);
  1444. display: flex;
  1445. justify-content: center;
  1446. align-items: center;
  1447. }
  1448. .wide-widget .meta .topic::before,
  1449. .wide-widget .meta .topic::after {
  1450. content: "";
  1451. display: block;
  1452. position: absolute;
  1453. height: 100%;
  1454. width: 1px;
  1455. background-color: hsla(0, 0%, 100%, 0.2);
  1456. top: 0;
  1457. left: 0;
  1458. }
  1459. .wide-widget .meta .topic::after {
  1460. right: 0;
  1461. left: unset;
  1462. }
  1463. .wide-widget .meta .topic a {
  1464. color: inherit;
  1465. font: inherit;
  1466. }
  1467. .wide-widget .meta .title {
  1468. position: absolute;
  1469. bottom: 60px;
  1470. left: 20px;
  1471. color: white;
  1472. margin: 0;
  1473. max-width: 541px;
  1474. font: 700 30px/36px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1475. }
  1476. .wide-widget .meta .title a {
  1477. color: white;
  1478. }
  1479. .wide-widget .meta .commnets {
  1480. position: absolute;
  1481. right: 20px;
  1482. bottom: 20px;
  1483. color: #a8a8a8;
  1484. font: 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1485. }
  1486. .wide-widget .meta .commnets .icon {
  1487. width: 15px;
  1488. height: 15px;
  1489. fill: #a8a8a8;
  1490. margin-right: 5px;
  1491. }
  1492. .wide-widget .adv .cont {
  1493. background: white;
  1494. height: 100%;
  1495. display: flex;
  1496. align-items: center;
  1497. justify-content: center;
  1498. }
  1499. .text-news-widget {
  1500. margin-top: 30px;
  1501. }
  1502. .text-news-widget > div > .cont {
  1503. background: white;
  1504. padding: 0 30px;
  1505. }
  1506. .text-news-widget .widget-title {
  1507. font: 700 18px/22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1508. color: #3e3e3e;
  1509. padding: 30px 15px;
  1510. }
  1511. .text-news-widget .text-widget-item .cont {
  1512. padding: 0 15px 30px 15px;
  1513. position: relative;
  1514. height: 100%;
  1515. }
  1516. .text-news-widget .text-widget-item .cont .meta .title {
  1517. font: 16px/19px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1518. color: #3e3e3e;
  1519. }
  1520. .text-news-widget .text-widget-item .cont .published_at {
  1521. position: absolute;
  1522. width: 100%;
  1523. bottom: 15px;
  1524. font: 14px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1525. color: #a8a8a8;
  1526. }
  1527. .text-news-widget .text-widget-item .cont .published_at .comments {
  1528. position: absolute;
  1529. right: 45px;
  1530. }
  1531. .text-news-widget .text-widget-item .cont .published_at .comments .icon {
  1532. width: 10px;
  1533. height: 10px;
  1534. fill: #a8a8a8;
  1535. margin-right: 5px;
  1536. }
  1537. @media not (max-width: 500px) {
  1538. .widget-title {
  1539. margin-bottom: -15px !important;
  1540. margin-top: 25px !important;
  1541. }
  1542. }
  1543. .topic-widget {
  1544. margin-top: 30px;
  1545. }
  1546. .topic-widget .cont {
  1547. position: relative;
  1548. overflow: hidden;
  1549. }
  1550. @media (max-width: 500px) {
  1551. .topic-widget .cont {
  1552. height: auto;
  1553. }
  1554. }
  1555. .topic-widget picture {
  1556. filter: brightness(0.6);
  1557. }
  1558. .topic-widget .content {
  1559. position: absolute;
  1560. bottom: 0;
  1561. left: 0;
  1562. padding: 30px;
  1563. max-width: 100%;
  1564. }
  1565. @media (max-width: 500px) {
  1566. .topic-widget .content {
  1567. padding: 15px;
  1568. max-width: 100%;
  1569. }
  1570. }
  1571. .topic-widget .topic-title {
  1572. max-width: 608px;
  1573. font: 36px/43px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1574. color: #fff;
  1575. margin-bottom: 50px;
  1576. }
  1577. .topic-widget .topic-title a {
  1578. color: #fff;
  1579. }
  1580. @media (max-width: 500px) {
  1581. .topic-widget .topic-title {
  1582. margin-bottom: 5px;
  1583. font-size: 22px;
  1584. line-height: normal;
  1585. }
  1586. }
  1587. @media (max-width: 500px) {
  1588. @keyframes move-swipe {
  1589. 0% {
  1590. transform: translateX(-20px);
  1591. }
  1592. 50% {
  1593. transform: translateX(20px);
  1594. }
  1595. 100% {
  1596. transform: translateX(-20px);
  1597. }
  1598. }
  1599. .topic-widget .swipe-icon {
  1600. animation: move-swipe 4s ease infinite;
  1601. display: block;
  1602. position: absolute;
  1603. min-width: 50px;
  1604. width: 40px;
  1605. height: 40px;
  1606. background-image: url(/img/swipe.svg);
  1607. background-size: contain;
  1608. background-repeat: no-repeat;
  1609. margin: auto;
  1610. left: 0;
  1611. right: 0;
  1612. bottom: 27px;
  1613. z-index: 0;
  1614. fill: white;
  1615. opacity: 0.5;
  1616. }
  1617. }
  1618. .topic-widget .topic-news {
  1619. display: flex;
  1620. overflow: hidden;
  1621. }
  1622. .topic-widget .topic-news .swipe-icon {
  1623. display: none;
  1624. }
  1625. @media (max-width: 500px) {
  1626. .topic-widget .topic-news .navigation {
  1627. top: 15px;
  1628. }
  1629. .topic-widget .topic-news .navigation.prev {
  1630. left: -17px;
  1631. }
  1632. .topic-widget .topic-news .navigation.next {
  1633. right: -15px;
  1634. }
  1635. .topic-widget .topic-news .title {
  1636. line-height: 20px;
  1637. }
  1638. }
  1639. @media (max-width: 500px) {
  1640. .topic-widget .topic-news > div {
  1641. display: block;
  1642. min-width: 95%;
  1643. }
  1644. .topic-widget .topic-news > div:nth-child(1) {
  1645. display: block;
  1646. padding: 0;
  1647. }
  1648. }
  1649. .topic-widget .topic-news .cont {
  1650. height: 100%;
  1651. padding-bottom: 30px;
  1652. }
  1653. .topic-widget .topic-news .title {
  1654. margin: 0;
  1655. line-height: 23px;
  1656. }
  1657. .topic-widget .topic-news .title a {
  1658. font: 700 16px/19px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1659. color: #fff;
  1660. line-height: 0;
  1661. }
  1662. .topic-widget .topic-news .comments {
  1663. color: #fff;
  1664. position: absolute;
  1665. bottom: 0;
  1666. margin: 0;
  1667. }
  1668. .topic-widget .topic-news .comments .icon {
  1669. width: 10px;
  1670. height: 10px;
  1671. fill: #fff;
  1672. margin-right: 5px;
  1673. }
  1674. @media (max-width: 500px) {
  1675. #main-view-container {
  1676. order: 1;
  1677. padding-right: 0;
  1678. padding-left: 0;
  1679. }
  1680. #lenta-wrapper {
  1681. order: 0;
  1682. padding-right: 0;
  1683. padding-left: 0;
  1684. }
  1685. #lenta-wrapper .news-link {
  1686. padding: 0 15px;
  1687. }
  1688. #lenta-wrapper .lenta {
  1689. margin-bottom: 15px;
  1690. }
  1691. #lenta-wrapper .lenta .list-wrapper > div {
  1692. display: none;
  1693. padding: 12px 15px 12px 15px;
  1694. }
  1695. #lenta-wrapper .lenta .list-wrapper > div:nth-child(-n+8) {
  1696. display: block;
  1697. }
  1698. .partner-news {
  1699. margin-top: 15px;
  1700. }
  1701. .partner-news > div {
  1702. margin-bottom: 15px;
  1703. }
  1704. .wide-widget .meta h2.title {
  1705. font-size: 16px;
  1706. line-height: 20px;
  1707. padding-right: 15px;
  1708. }
  1709. }
  1710. .widget {
  1711. position: relative;
  1712. }
  1713. .widget.topic-widget .navigation {
  1714. top: 75px;
  1715. }
  1716. .widget.topic-widget .navigation.prev {
  1717. left: 0px;
  1718. }
  1719. .widget.topic-widget .navigation.prev:after {
  1720. background-color: transparent;
  1721. }
  1722. .widget.topic-widget .navigation.next {
  1723. right: 0px;
  1724. }
  1725. .widget.topic-widget .navigation.next:after {
  1726. background-color: transparent;
  1727. }
  1728. .widget .navigation {
  1729. position: absolute;
  1730. width: 50px;
  1731. height: 50px;
  1732. top: 0;
  1733. bottom: 0;
  1734. margin: auto;
  1735. z-index: 9;
  1736. opacity: 0.8;
  1737. cursor: pointer;
  1738. }
  1739. .widget .navigation:after {
  1740. content: "";
  1741. background-color: #f6911f;
  1742. border-radius: 50%;
  1743. height: 100%;
  1744. width: 100%;
  1745. color: white;
  1746. display: flex;
  1747. justify-content: center;
  1748. align-items: center;
  1749. font-size: 25px;
  1750. background-repeat: no-repeat;
  1751. background-position: center;
  1752. }
  1753. .widget .navigation.prev {
  1754. left: -15px;
  1755. }
  1756. .widget .navigation.prev:after {
  1757. background-image: url("/svg/clear/h-slider-prev.svg");
  1758. }
  1759. .widget .navigation.next {
  1760. right: -15px;
  1761. }
  1762. .widget .navigation.next:after {
  1763. background-image: url("/svg/clear/h-slider-next.svg");
  1764. }
  1765. .partner-news.colorful {
  1766. height: 402px;
  1767. overflow: hidden;
  1768. display: flex;
  1769. flex-wrap: nowrap;
  1770. position: relative;
  1771. }
  1772. .partner-news.colorful .colorful-news-item {
  1773. position: relative;
  1774. cursor: pointer;
  1775. width: 296px;
  1776. height: 402px;
  1777. margin: 0 15px;
  1778. overflow: hidden;
  1779. display: flex;
  1780. min-width: 296px;
  1781. }
  1782. @media (max-width: 500px) {
  1783. .partner-news.colorful .colorful-news-item {
  1784. min-width: calc(100% - 30px);
  1785. }
  1786. }
  1787. .partner-news.colorful .colorful-news-item a {
  1788. color: #fff;
  1789. text-decoration: none;
  1790. }
  1791. .partner-news.colorful .colorful-news-item a.button {
  1792. color: #f6911f;
  1793. font-size: 16px;
  1794. }
  1795. .partner-news.colorful .colorful-news-item .background {
  1796. width: 100%;
  1797. height: 100%;
  1798. display: flex;
  1799. justify-content: center;
  1800. }
  1801. .partner-news.colorful .colorful-news-item .background picture {
  1802. height: 100%;
  1803. }
  1804. .partner-news.colorful .colorful-news-item .background picture img {
  1805. height: 100%;
  1806. }
  1807. .partner-news.colorful .colorful-news-item:before {
  1808. content: "";
  1809. position: absolute;
  1810. width: 100%;
  1811. height: 100%;
  1812. opacity: 0.8;
  1813. z-index: 1;
  1814. }
  1815. .partner-news.colorful .colorful-news-item.orange:before {
  1816. background-color: #979795;
  1817. }
  1818. .partner-news.colorful .colorful-news-item.blue:before {
  1819. background-color: #3b5573;
  1820. }
  1821. .partner-news.colorful .rubric {
  1822. position: absolute;
  1823. display: flex;
  1824. top: 15px;
  1825. width: 100%;
  1826. padding: 0 13px;
  1827. letter-spacing: 0.08em;
  1828. white-space: nowrap;
  1829. text-transform: uppercase;
  1830. color: #fff;
  1831. font: 700 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1832. z-index: 2;
  1833. }
  1834. .partner-news.colorful .rubric a {
  1835. margin: 0 15px;
  1836. }
  1837. .partner-news.colorful .rubric:before,
  1838. .partner-news.colorful .rubric:after {
  1839. content: "";
  1840. width: 100%;
  1841. height: 1px;
  1842. background: white;
  1843. align-self: center;
  1844. }
  1845. .partner-news.colorful .title {
  1846. position: absolute;
  1847. top: 85px;
  1848. width: 100%;
  1849. text-align: center;
  1850. padding: 20px;
  1851. z-index: 2;
  1852. font: 24px/29px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1853. }
  1854. .partner-news.colorful .title .comments {
  1855. display: block;
  1856. font-size: 14px;
  1857. color: #fff;
  1858. }
  1859. .partner-news.colorful .title .comments svg {
  1860. fill: #fff;
  1861. width: 12px;
  1862. margin-right: 7px;
  1863. }
  1864. #tfilters-modal {
  1865. top: 40%;
  1866. padding: 30px;
  1867. right: 60px;
  1868. left: 0;
  1869. margin: auto;
  1870. height: auto;
  1871. border: solid 1px #eee;
  1872. }
  1873. .mymodal {
  1874. position: fixed;
  1875. top: 0;
  1876. left: 0;
  1877. z-index: 1050;
  1878. width: 100%;
  1879. height: 100%;
  1880. overflow: hidden;
  1881. outline: 0;
  1882. }
  1883. .checkbox-lg .form-check-input {
  1884. top: 0.8rem;
  1885. transform: scale(1.4);
  1886. margin-right: 0.7rem;
  1887. }
  1888. .checkbox-lg .form-check-label {
  1889. padding-top: 13px;
  1890. font-size: 16px;
  1891. padding-left: 4px;
  1892. }
  1893. .checkbox-xl .form-check-input {
  1894. top: 1.2rem;
  1895. transform: scale(1.7);
  1896. margin-right: 0.8rem;
  1897. }
  1898. .checkbox-xl .form-check-label {
  1899. padding-top: 19px;
  1900. font-size: 19px;
  1901. padding-left: 5px;
  1902. }
  1903. .btn-gray {
  1904. background: rgba(59, 85, 115, 0.08);
  1905. border-radius: 4px;
  1906. color: #3b5573;
  1907. padding: 0 30px;
  1908. height: 40px;
  1909. display: flex;
  1910. justify-content: center;
  1911. align-items: center;
  1912. }
  1913. /*
  1914. *
  1915. * Для опросника
  1916. */
  1917. .inquirer-item {
  1918. background-color: #5a748b;
  1919. position: relative;
  1920. height: 100%;
  1921. padding-bottom: 30px;
  1922. display: flex;
  1923. justify-content: start;
  1924. flex-wrap: nowrap;
  1925. flex-direction: column;
  1926. }
  1927. .inquirer-item .rubric::after,
  1928. .inquirer-item .rubric::before {
  1929. content: "";
  1930. width: 100%;
  1931. height: 1px;
  1932. align-self: center;
  1933. background: #fff;
  1934. }
  1935. .inquirer-item .rubric a {
  1936. margin: 0 15px;
  1937. color: #fff;
  1938. }
  1939. .inquirer-item .meta {
  1940. width: 100%;
  1941. }
  1942. .inquirer-item .rubric {
  1943. position: relative;
  1944. display: flex;
  1945. top: 15px;
  1946. width: 100%;
  1947. padding: 0 13px;
  1948. letter-spacing: 0.08em;
  1949. white-space: nowrap;
  1950. text-transform: uppercase;
  1951. color: #fff;
  1952. font: 700 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1953. z-index: 2;
  1954. }
  1955. .inquirer-item .title a {
  1956. color: #fff;
  1957. text-decoration: none;
  1958. }
  1959. .inquirer-item .title {
  1960. position: relative;
  1961. top: 20px;
  1962. width: 100%;
  1963. text-align: center;
  1964. padding: 20px;
  1965. z-index: 2;
  1966. font: 24px/29px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1967. }
  1968. .inquirer-item .answer {
  1969. display: flex;
  1970. position: relative;
  1971. width: 100%;
  1972. top: 5px;
  1973. flex-direction: column;
  1974. }
  1975. .inquirer-item .answer input {
  1976. margin: 4px 5px 0 0;
  1977. position: relative;
  1978. float: left;
  1979. }
  1980. .inquirer-item .answer label {
  1981. color: #fff;
  1982. font: 16px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1983. display: flex;
  1984. }
  1985. .inquirer-item .answer p {
  1986. color: #fff;
  1987. font: 16px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  1988. }
  1989. .form-check-main {
  1990. margin-bottom: 15px;
  1991. }
  1992. .form-check-main .form-check-input-col {
  1993. margin: 0;
  1994. position: relative;
  1995. float: left;
  1996. margin-top: 5px !important;
  1997. }
  1998. .form-check-main .form-check-label-col {
  1999. display: flex;
  2000. margin-bottom: 15px;
  2001. padding-left: 5px;
  2002. padding-top: 5px;
  2003. }
  2004. .bg-amic {
  2005. background: #ff8813;
  2006. }
  2007. .percent {
  2008. color: #fff;
  2009. margin-top: -5px;
  2010. }
  2011. .nowrap {
  2012. white-space: nowrap;
  2013. }
  2014. .textcols {
  2015. column-gap: 4%;
  2016. display: block !important;
  2017. }
  2018. @media (max-width: 500px) {
  2019. .textcols {
  2020. column-count: 1;
  2021. }
  2022. }
  2023. @media not (max-width: 500px) {
  2024. .textcols {
  2025. column-count: 2;
  2026. }
  2027. }
  2028. .podcasts h1 {
  2029. font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2030. margin-bottom: 30px;
  2031. }
  2032. .podcasts .topic_item {
  2033. margin-bottom: 30px;
  2034. }
  2035. .podcasts .topic_item .topic_title {
  2036. color: #000;
  2037. font-size: 24px;
  2038. font-weight: 700;
  2039. font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2040. margin: 0 0 30px 0;
  2041. display: flex;
  2042. align-items: center;
  2043. }
  2044. .podcasts .topic_item .topic_title a {
  2045. display: inline-flex;
  2046. }
  2047. .podcasts .topic_item .topic_title .video-list-title-link {
  2048. margin-left: 15px;
  2049. height: 40px;
  2050. width: 40px;
  2051. display: inline-flex;
  2052. justify-content: center;
  2053. align-items: center;
  2054. background: #80808070;
  2055. border-radius: 50%;
  2056. }
  2057. .podcasts .topic_item .topic_title .video-list-title-link svg {
  2058. width: 20px;
  2059. height: 20px;
  2060. margin-left: 3px;
  2061. }
  2062. .podcasts .topic_item .topic_items .topic-news-item {
  2063. display: block;
  2064. flex-grow: 1;
  2065. margin-bottom: 30px;
  2066. }
  2067. .podcasts .topic_item .topic_items .topic-news-item a {
  2068. display: flex;
  2069. height: 100%;
  2070. flex-direction: column;
  2071. }
  2072. .podcasts .topic_item .topic_items .topic-news-item picture {
  2073. width: 100%;
  2074. }
  2075. .podcasts .topic_item .topic_items .topic-news-item .meta {
  2076. position: relative;
  2077. background: white;
  2078. flex-grow: 1;
  2079. padding: 15px 15px 35px 15px;
  2080. }
  2081. .podcasts .topic_item .topic_items .topic-news-item .meta .title {
  2082. font-size: 16px;
  2083. }
  2084. .podcasts .topic_item .topic_items .topic-news-item .meta .published_at {
  2085. position: absolute;
  2086. bottom: 15px;
  2087. left: 15px;
  2088. }
  2089. .podcasts .pagination {
  2090. margin: auto;
  2091. color: #3b5573;
  2092. display: flex;
  2093. font: 14px/1 "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2094. }
  2095. .podcasts .pagination li {
  2096. background: rgba(59, 85, 115, 0.08);
  2097. display: flex;
  2098. width: 40px;
  2099. height: 40px;
  2100. border-radius: 4px;
  2101. margin-right: 7px;
  2102. justify-content: center;
  2103. align-items: center;
  2104. }
  2105. .podcasts .pagination li a {
  2106. display: flex;
  2107. width: 100%;
  2108. height: 100%;
  2109. justify-content: center;
  2110. align-items: center;
  2111. }
  2112. .podcasts .pagination li.active a {
  2113. background: #f5f5f5;
  2114. color: #f6911f;
  2115. }
  2116. .podcasts .pagination li.disabled {
  2117. cursor: not-allowed;
  2118. color: #b3b3b3;
  2119. user-select: none;
  2120. }
  2121. .post-view .share-this {
  2122. overflow: hidden;
  2123. text-align: center;
  2124. margin: 10px;
  2125. }
  2126. .post-view .youtube-iframe-placeholder {
  2127. cursor: pointer;
  2128. }
  2129. .post-view .youtube-iframe-placeholder:after {
  2130. content: "";
  2131. position: absolute;
  2132. width: 68px;
  2133. height: 68px;
  2134. top: 0;
  2135. bottom: 0;
  2136. left: 0;
  2137. right: 0;
  2138. margin: auto;
  2139. background: url(/img/youtube-red.svg);
  2140. background-size: contain;
  2141. background-repeat: no-repeat;
  2142. }
  2143. .post-view #infinity_newsfeed {
  2144. display: none;
  2145. }
  2146. .post-view #infinity_newsfeed .post {
  2147. border-top: 1px solid #eee;
  2148. }
  2149. .post-view #infinity_newsfeed .post .lead {
  2150. padding-bottom: 0;
  2151. }
  2152. @media (max-width: 500px) {
  2153. .post-view #lenta-container {
  2154. display: none;
  2155. }
  2156. .post-view #infinity_newsfeed {
  2157. display: flex;
  2158. }
  2159. .post-view #infinity_newsfeed .list {
  2160. max-width: 100%;
  2161. }
  2162. .post-view #infinity_newsfeed .list .post .commnets {
  2163. margin-left: 20px;
  2164. }
  2165. .post-view #infinity_newsfeed .list .post .commnets svg {
  2166. width: 10px;
  2167. height: 10px;
  2168. fill: #a8a8a8;
  2169. margin-right: 5px;
  2170. }
  2171. }
  2172. .post {
  2173. background: white;
  2174. padding: 30px;
  2175. }
  2176. @media (max-width: 500px) {
  2177. .post {
  2178. margin: 0 -15px;
  2179. padding: 15px;
  2180. }
  2181. }
  2182. .post iframe {
  2183. max-width: 100% !important;
  2184. width: 100%;
  2185. }
  2186. .post h1 {
  2187. font-size: 36px;
  2188. font-weight: bold;
  2189. margin-bottom: 15px;
  2190. }
  2191. .post h2 {
  2192. font: 30px/30px "Source Serif Pro", "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2193. color: #222;
  2194. font-weight: bold;
  2195. line-height: 1.5;
  2196. }
  2197. .post a {
  2198. color: #5a748b;
  2199. }
  2200. .post .person {
  2201. border-bottom: dashed 1px #888;
  2202. }
  2203. .post .lead {
  2204. font-size: 20px;
  2205. line-height: 140%;
  2206. padding-bottom: 20px;
  2207. color: #737373;
  2208. }
  2209. .post .published_at,
  2210. .post .image-title {
  2211. margin-bottom: 20px;
  2212. font: 12px/14px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2213. color: #878787;
  2214. }
  2215. .post .image-title-fix {
  2216. position: relative;
  2217. background-color: #fff;
  2218. width: 100%;
  2219. display: flex;
  2220. padding-top: 20px;
  2221. }
  2222. .post .share_and_comment {
  2223. display: flex;
  2224. }
  2225. .post .share_and_comment a {
  2226. width: 41px;
  2227. height: 41px;
  2228. display: flex;
  2229. justify-content: center;
  2230. align-items: center;
  2231. background-color: rgba(59, 85, 115, 0.08);
  2232. border-radius: 11px;
  2233. margin-right: 5px;
  2234. }
  2235. .post .share_and_comment a.comments_btn {
  2236. width: auto;
  2237. padding: 0 20px;
  2238. font: 14px/1 "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2239. color: #3b5573;
  2240. }
  2241. .post .share_and_comment a img {
  2242. width: 15px;
  2243. height: 15px;
  2244. }
  2245. .post .share_and_comment a svg {
  2246. fill: #00077b;
  2247. }
  2248. .post .share_and_comment a svg.icon-ok {
  2249. width: 9px;
  2250. height: 15px;
  2251. }
  2252. .post .share_and_comment a svg.icon-vk {
  2253. width: 16px;
  2254. height: 9px;
  2255. }
  2256. .post .share_and_comment a svg.icon-tw {
  2257. width: 15px;
  2258. height: 12px;
  2259. }
  2260. .post .text {
  2261. font: 20px/30px "Source Serif Pro", "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2262. color: #222;
  2263. }
  2264. .post .text h6 {
  2265. background-color: #f7f5ee;
  2266. padding: 20px 10px 20px 20px;
  2267. margin: 30px 0;
  2268. border-left: 2px solid #f6911f;
  2269. line-height: 150%;
  2270. font-size: 20px;
  2271. }
  2272. .post .text h5 {
  2273. margin-top: -10px;
  2274. color: #767676;
  2275. font-size: 0.83em;
  2276. }
  2277. .post .text .iframe-wrapper {
  2278. max-width: 100%;
  2279. margin-bottom: 30px;
  2280. position: relative;
  2281. width: 100%;
  2282. padding-bottom: 56.25%;
  2283. }
  2284. .post .text .iframe-wrapper iframe {
  2285. position: absolute;
  2286. width: 100%;
  2287. height: 100%;
  2288. }
  2289. .post .text div.pic {
  2290. margin-bottom: 20px;
  2291. }
  2292. .post .text .advertisement {
  2293. border-radius: 5px;
  2294. margin-right: 5px;
  2295. padding: 5px 20px;
  2296. font: 14px/16px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2297. background-color: rgba(0, 0, 0, 0.06);
  2298. line-height: 50px;
  2299. }
  2300. .post .text .med_advertisement {
  2301. border-radius: 5px;
  2302. margin-right: 5px;
  2303. padding: 5px 20px;
  2304. font: 16px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2305. background-color: rgba(0, 0, 0, 0.06);
  2306. }
  2307. .post .text img {
  2308. max-width: 100%;
  2309. }
  2310. .post .text .juxtapose img {
  2311. max-width: none;
  2312. width: initial !important;
  2313. }
  2314. .post .text ul {
  2315. list-style: disc;
  2316. padding-left: 40px;
  2317. margin-top: 1em;
  2318. margin-bottom: 1 em;
  2319. margin-left: 0;
  2320. margin-right: 0;
  2321. }
  2322. .post .text div.overlayadv {
  2323. position: absolute;
  2324. background-color: rgba(0, 0, 0, 0.1);
  2325. opacity: 0.1;
  2326. }
  2327. .post .fotoramast {
  2328. margin-bottom: 30px;
  2329. }
  2330. .post .fotoramast .any {
  2331. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2332. font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2333. height: 100%;
  2334. box-sizing: border-box;
  2335. padding: 10px;
  2336. background-color: #00000070;
  2337. width: 100%;
  2338. }
  2339. .post .fotoramast .text {
  2340. position: absolute;
  2341. bottom: 0;
  2342. height: auto;
  2343. padding: 2%;
  2344. width: 96%;
  2345. font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2346. }
  2347. .post .fotoramast .header {
  2348. font-size: 40px;
  2349. line-height: 120%;
  2350. display: block;
  2351. text-align: center;
  2352. }
  2353. .post .fotoramast .inverse {
  2354. color: #fff;
  2355. text-shadow: 0 1px 0 #000;
  2356. }
  2357. .post .fotoramast .lid {
  2358. font-size: 20px;
  2359. padding-top: 10px;
  2360. line-height: 120%;
  2361. display: block;
  2362. }
  2363. .post .title_001 {
  2364. position: relative;
  2365. display: inline-block;
  2366. background: 0 0;
  2367. font: 12px/14px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2368. color: #5a748b;
  2369. letter-spacing: 0.15em;
  2370. text-transform: uppercase;
  2371. padding: 0;
  2372. margin: 0 0 10px 30px;
  2373. }
  2374. .post .title_001 a {
  2375. color: #62a2db;
  2376. }
  2377. @media (max-width: 500px) {
  2378. .post .fotoramast .header {
  2379. font-size: 109%;
  2380. line-height: 110%;
  2381. display: block;
  2382. text-align: center;
  2383. }
  2384. .post .fotoramast .lid {
  2385. font-size: 17px;
  2386. padding-top: 10px;
  2387. line-height: 110%;
  2388. display: block;
  2389. }
  2390. .post .title_001 {
  2391. margin: 0 0 10px 0;
  2392. letter-spacing: 0.08em;
  2393. }
  2394. }
  2395. .post .gallery {
  2396. display: flex;
  2397. overflow: hidden;
  2398. width: 100%;
  2399. padding-bottom: 56.25%;
  2400. position: relative;
  2401. margin-bottom: 86px;
  2402. }
  2403. .post .gallery img {
  2404. width: 100%;
  2405. position: absolute;
  2406. }
  2407. .post .gallery .splide__list {
  2408. height: 60px;
  2409. }
  2410. .post .gallery .splide__slide {
  2411. opacity: 0.6;
  2412. transition: 0.3s;
  2413. overflow: hidden;
  2414. }
  2415. .post .gallery .splide__slide.is-active {
  2416. opacity: 1;
  2417. }
  2418. @keyframes galleryButtonAnimation {
  2419. 0% {
  2420. transform: scale(1, 1);
  2421. }
  2422. 50% {
  2423. transform: scale(1.3, 1.3);
  2424. }
  2425. 100% {
  2426. transform: scale(1.2, 1.2);
  2427. }
  2428. }
  2429. .post .gallery-wrapper {
  2430. position: relative;
  2431. transition: 0.2s;
  2432. margin-left: auto;
  2433. margin-right: auto;
  2434. min-height: 340px;
  2435. width: 90%;
  2436. padding-bottom: 18px;
  2437. }
  2438. .post .gallery-wrapper .fullscreenButton {
  2439. position: absolute;
  2440. top: 20px;
  2441. right: 20px;
  2442. display: block;
  2443. width: 28px;
  2444. height: 28px;
  2445. background-image: url("/img/fullscreen.svg");
  2446. background-size: contain;
  2447. transition: 0.2s;
  2448. filter: brightness(24%);
  2449. opacity: 45%;
  2450. }
  2451. .post .gallery-wrapper .fullscreenButton:hover {
  2452. transform: scale(1.2, 1.2);
  2453. animation: galleryButtonAnimation 0.3s ease-in-out;
  2454. }
  2455. .post .gallery-wrapper.fullscreen {
  2456. position: fixed;
  2457. top: 0px;
  2458. left: 0px;
  2459. width: 100%;
  2460. height: 100%;
  2461. max-width: 100% !important;
  2462. z-index: 9999999999;
  2463. background: #000000d4;
  2464. display: flex;
  2465. flex-direction: column;
  2466. justify-items: center;
  2467. }
  2468. .post .gallery-wrapper.fullscreen .gallery {
  2469. height: 150px;
  2470. }
  2471. .post .gallery-wrapper.fullscreen .gallery-view {
  2472. width: 100%;
  2473. height: calc(100% - 150px);
  2474. display: flex;
  2475. justify-content: center;
  2476. flex-grow: 1;
  2477. }
  2478. .post .gallery-wrapper.fullscreen .gallery-view .splide__slide {
  2479. padding-bottom: 0;
  2480. height: 100%;
  2481. }
  2482. .post .gallery-wrapper.fullscreen .gallery-view .splide__slide img {
  2483. position: relative;
  2484. width: auto !important;
  2485. height: auto !important;
  2486. }
  2487. .post .gallery-wrapper.fullscreen .fullscreenButton {
  2488. background-image: url("/img/close.svg");
  2489. filter: invert(1);
  2490. opacity: 1;
  2491. }
  2492. .post .splide.gallery-view {
  2493. margin-bottom: 8px;
  2494. }
  2495. .post .splide.gallery-view .splide__slide {
  2496. padding-bottom: 56.25%;
  2497. height: 0;
  2498. overflow: hidden;
  2499. display: flex;
  2500. justify-content: center;
  2501. }
  2502. .post .splide.gallery-view .splide__slide .image-capture {
  2503. display: block;
  2504. position: absolute;
  2505. width: 100%;
  2506. text-align: center;
  2507. bottom: 0;
  2508. background: #00000078;
  2509. color: white;
  2510. z-index: 1;
  2511. padding: 5px 20px;
  2512. font: 14px/16px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2513. }
  2514. .post .splide.gallery-view .splide__slide img {
  2515. position: absolute;
  2516. max-width: 100%;
  2517. max-height: 100%;
  2518. width: auto !important;
  2519. margin: auto;
  2520. top: 0;
  2521. bottom: 0;
  2522. }
  2523. .post .fotorama__arr {
  2524. z-index: 9999;
  2525. position: absolute;
  2526. }
  2527. .post .phfc {
  2528. width: 100%;
  2529. text-align: center;
  2530. height: 100%;
  2531. }
  2532. .post .phfc span {
  2533. text-align: left;
  2534. font-size: 130%;
  2535. line-height: normal;
  2536. margin: auto 5px;
  2537. position: absolute;
  2538. top: 0;
  2539. right: 0;
  2540. bottom: 0;
  2541. left: 0;
  2542. height: fit-content;
  2543. }
  2544. .post .phfc iframe {
  2545. aspect-ratio: 16/9;
  2546. height: auto;
  2547. margin: auto;
  2548. width: 94%;
  2549. display: block;
  2550. padding: 18px;
  2551. }
  2552. .post .phfce {
  2553. width: 100%;
  2554. text-align: center;
  2555. text-shadow: 2px 2px #000;
  2556. display: flex;
  2557. height: 100%;
  2558. background-color: #0000007d;
  2559. color: #fff;
  2560. }
  2561. .post .phfce span {
  2562. text-align: left;
  2563. font-size: 200%;
  2564. line-height: normal;
  2565. margin: auto 20px;
  2566. }
  2567. .post .fotorama--fullscreen .phfce span {
  2568. font-size: 400%;
  2569. margin: auto 100px;
  2570. }
  2571. .post .fotorama--fullscreen .phfc span {
  2572. font-size: 400%;
  2573. margin: auto 100px;
  2574. color: #b7b7b7;
  2575. display: block;
  2576. text-align: left;
  2577. line-height: normal;
  2578. }
  2579. .post .fotorama--fullscreen .phfc iframe {
  2580. width: 100%;
  2581. }
  2582. @media only screen and (min-width: 1300px) {
  2583. .post .phfc span {
  2584. font-size: 130%;
  2585. }
  2586. }
  2587. @media only screen and (max-width: 1300px) {
  2588. .post .phfc span {
  2589. font-size: 110%;
  2590. }
  2591. }
  2592. @media only screen and (max-width: 1200px) {
  2593. .post .phfc span {
  2594. font-size: 85%;
  2595. }
  2596. .post .phfc h2 {
  2597. font-size: 100%;
  2598. font-weight: bold;
  2599. }
  2600. }
  2601. @media only screen and (max-width: 994px) {
  2602. .post .phfc span,
  2603. .post h2 {
  2604. font-size: 70%;
  2605. }
  2606. .post .phfc h2 {
  2607. font-weight: bold;
  2608. }
  2609. }
  2610. @media only screen and (max-width: 534px) {
  2611. .post .phfc span,
  2612. .post h2 {
  2613. font-size: 68%;
  2614. }
  2615. .post .phfc h2 {
  2616. font-weight: bold;
  2617. }
  2618. }
  2619. @media only screen and (max-width: 386px) {
  2620. .post .phfc span,
  2621. .post h2 {
  2622. font-size: 58%;
  2623. }
  2624. .post .phfc h2 {
  2625. font-weight: bold;
  2626. }
  2627. }
  2628. @media only screen and (max-width: 310px) {
  2629. .post .phfc span,
  2630. .post h2 {
  2631. font-size: 40%;
  2632. }
  2633. .post .phfc h2 {
  2634. font-weight: bold;
  2635. }
  2636. }
  2637. .post .inject {
  2638. display: flex;
  2639. margin-bottom: 25px;
  2640. width: 100%;
  2641. }
  2642. .post .inject .illustration {
  2643. width: 250px;
  2644. min-width: 250px;
  2645. display: flex;
  2646. align-items: center;
  2647. margin-right: 30px;
  2648. }
  2649. .post .inject .illustration .picture-cont-16x9 {
  2650. margin: 0;
  2651. }
  2652. .post .inject .meta {
  2653. border-top: 1px solid #eeeeee;
  2654. border-bottom: 1px solid #eee;
  2655. padding: 20px 20px 20px 0;
  2656. }
  2657. .post .inject .meta .title {
  2658. line-height: 24px;
  2659. margin: 0;
  2660. }
  2661. .post .inject .meta .title a {
  2662. color: #222;
  2663. font: 700 22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2664. }
  2665. @media (max-width: 500px) {
  2666. .post .inject {
  2667. flex-wrap: wrap;
  2668. border-top: 1px solid #eeeeee;
  2669. border-bottom: 1px solid #eee;
  2670. }
  2671. .post .inject .illustration {
  2672. width: 100%;
  2673. min-width: 100%;
  2674. margin-right: 0;
  2675. padding-top: 20px;
  2676. }
  2677. .post .inject .meta {
  2678. border-top: none;
  2679. border-bottom: none;
  2680. padding: 20px 0 20px 0;
  2681. }
  2682. .post .inject .meta .title a {
  2683. font-size: 18px;
  2684. }
  2685. }
  2686. .post .inject1 {
  2687. display: block;
  2688. margin-bottom: 5px;
  2689. width: 320px;
  2690. min-width: 320px;
  2691. float: left;
  2692. clear: both;
  2693. padding-top: 13px;
  2694. margin-right: 20px;
  2695. }
  2696. .post .inject1 .illustration {
  2697. width: 100%;
  2698. min-width: 320px;
  2699. display: flex;
  2700. padding-top: 10px;
  2701. border-top: 3px solid #eeeeee;
  2702. }
  2703. .post .inject1 .illustration .picture-cont-16x9 {
  2704. margin: 0;
  2705. }
  2706. .post .inject1 .meta {
  2707. border-bottom: 1px solid #eee;
  2708. padding: 14px 14px 15px 0;
  2709. }
  2710. .post .inject1 .meta .title {
  2711. line-height: 22px;
  2712. margin: 0;
  2713. }
  2714. .post .inject1 .meta .title a {
  2715. color: #222;
  2716. font: 600 20px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2717. }
  2718. .post .inject1 .meta .title p {
  2719. font-size: 14px;
  2720. color: #888;
  2721. font-weight: normal;
  2722. margin-top: 5px;
  2723. }
  2724. @media (max-width: 500px) {
  2725. .post .inject1 {
  2726. flex-wrap: wrap;
  2727. border-top: 1px solid #eeeeee;
  2728. border-bottom: 1px solid #eee;
  2729. float: none;
  2730. margin-right: 0px;
  2731. }
  2732. .post .inject1 .illustration {
  2733. width: 100%;
  2734. min-width: 100%;
  2735. margin-right: 0;
  2736. padding-top: 20px;
  2737. }
  2738. .post .inject1 .meta {
  2739. border-top: none;
  2740. border-bottom: none;
  2741. padding: 20px 0 20px 0;
  2742. }
  2743. .post .inject1 .meta .title a {
  2744. font-size: 18px;
  2745. }
  2746. }
  2747. .post .inject2 {
  2748. z-index: 1;
  2749. text-align: left;
  2750. display: flex;
  2751. align-items: flex-end;
  2752. justify-content: flex-start;
  2753. align-content: flex-end;
  2754. flex-wrap: wrap;
  2755. overflow: hidden;
  2756. position: relative;
  2757. margin-bottom: 30px;
  2758. }
  2759. .post .inject2 .illustration {
  2760. width: 100%;
  2761. min-width: 600px;
  2762. display: flex;
  2763. padding-top: 10px;
  2764. border-top: 3px solid #eeeeee;
  2765. }
  2766. .post .inject2 .illustration .picture-cont-16x9 {
  2767. margin: 0;
  2768. filter: brightness(0.6);
  2769. }
  2770. .post .inject2 .meta {
  2771. position: absolute;
  2772. bottom: 0;
  2773. left: 0;
  2774. color: #fff;
  2775. padding: 0 30px;
  2776. border-bottom: 1px solid #eee;
  2777. }
  2778. .post .inject2 .meta .title {
  2779. line-height: 30px;
  2780. margin-bottom: 10px;
  2781. }
  2782. .post .inject2 .meta .title a {
  2783. color: #fff;
  2784. font: 700 28px/32px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2785. }
  2786. .post .inject2 .meta .breadcrumbs a {
  2787. color: #fffefe8c;
  2788. font: 400 12px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2789. }
  2790. .post .inject2 .meta .lead {
  2791. font-size: 16px;
  2792. line-height: 150%;
  2793. padding-bottom: 15px;
  2794. color: hsla(0, 0%, 100%, 0.8);
  2795. }
  2796. @media (max-width: 500px) {
  2797. .post .inject2 {
  2798. flex-wrap: wrap;
  2799. border-top: 1px solid #eeeeee;
  2800. border-bottom: 1px solid #eee;
  2801. margin-bottom: 5px;
  2802. }
  2803. .post .inject2 .illustration {
  2804. width: 100%;
  2805. min-width: 100%;
  2806. margin-right: 0;
  2807. padding-top: 20px;
  2808. }
  2809. .post .inject2 .breadcrumbs,
  2810. .post .inject2 .lead {
  2811. display: none;
  2812. }
  2813. .post .inject2 .meta {
  2814. position: relative;
  2815. border-top: none;
  2816. border-bottom: none;
  2817. padding: 0;
  2818. }
  2819. .post .inject2 .meta .title {
  2820. font: 700 22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2821. }
  2822. .post .inject2 .meta .title a {
  2823. color: #222;
  2824. font-size: 18px;
  2825. }
  2826. }
  2827. .post .picture-cont-16x9 {
  2828. overflow: hidden;
  2829. margin-bottom: 30px;
  2830. }
  2831. .post .picture-cont-16x9 img {
  2832. width: 100%;
  2833. height: auto !important;
  2834. }
  2835. .post .pic img {
  2836. max-width: 100%;
  2837. }
  2838. .post .person img {
  2839. width: 30%;
  2840. }
  2841. @media (max-width: 500px) {
  2842. .post .person img {
  2843. width: 100%;
  2844. }
  2845. }
  2846. .post section.comments {
  2847. padding: 30px 0;
  2848. border-top: 1px solid #eee;
  2849. }
  2850. .post section.comments .comments-list .comment-item {
  2851. margin-bottom: 15px;
  2852. }
  2853. .post section.comments .comments-list .comment-item .message {
  2854. color: #3e3e3e;
  2855. font: 14px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2856. }
  2857. .post section.comments .comments-list .comment-item .meta {
  2858. color: #737373;
  2859. }
  2860. .post section.comments .comments-list .comment-item .meta a.answer {
  2861. color: #5a748b;
  2862. }
  2863. .post section.comments form textarea {
  2864. border-radius: 0;
  2865. border: #eee;
  2866. background-color: rgba(59, 85, 115, 0.08);
  2867. font: 14px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2868. }
  2869. .post section.comments form button {
  2870. padding: 0 25px;
  2871. height: 41px;
  2872. background-color: rgba(59, 85, 115, 0.08);
  2873. border-radius: 11px;
  2874. color: #3b5573;
  2875. outline: none;
  2876. border: none;
  2877. font: 14px/18px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2878. }
  2879. .post .post_tags {
  2880. position: relative;
  2881. padding-top: 10px;
  2882. padding-bottom: 10px;
  2883. overflow: hidden;
  2884. }
  2885. .post .post_tags .post_tags-item {
  2886. display: inline-block;
  2887. font: 700 12px/14px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2888. text-transform: uppercase;
  2889. vertical-align: top;
  2890. height: 26px;
  2891. margin: 0 6px 6px 0;
  2892. border: 1px solid #7b7b7b;
  2893. color: #454545;
  2894. font-size: 14px;
  2895. line-height: 24px;
  2896. white-space: nowrap;
  2897. font-weight: 400;
  2898. border-radius: 4px;
  2899. padding: 0 10px;
  2900. max-width: 100%;
  2901. text-overflow: ellipsis;
  2902. overflow: hidden;
  2903. text-decoration: none;
  2904. }
  2905. .post .post_tags .post_tags-item:hover {
  2906. color: #ff7f00;
  2907. background-color: #eee;
  2908. }
  2909. .post .person-widget {
  2910. display: flex;
  2911. flex-direction: column;
  2912. align-items: center;
  2913. width: 145px;
  2914. overflow: hidden;
  2915. float: left;
  2916. margin: 5px 15px 5px 0px;
  2917. }
  2918. .post .person-widget .name {
  2919. display: block;
  2920. text-align: center;
  2921. color: #151515;
  2922. font: 12px/12px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2923. font-size: 12px;
  2924. font-style: normal;
  2925. font-weight: 600;
  2926. line-height: 120%;
  2927. margin-top: 12px;
  2928. margin-bottom: 5px;
  2929. }
  2930. .post .person-widget .jobtitle {
  2931. display: block;
  2932. color: #151515;
  2933. text-align: center;
  2934. font: 12px/12px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2935. font-size: 12px;
  2936. font-style: normal;
  2937. font-weight: 100;
  2938. line-height: 120%;
  2939. }
  2940. .reationbutton {
  2941. filter: grayscale(1);
  2942. transform: scale(1);
  2943. display: block;
  2944. }
  2945. .reationbutton:hover {
  2946. filter: grayscale(0);
  2947. transform: scale(1.15);
  2948. }
  2949. .reactionb i {
  2950. text-align: center;
  2951. font-style: normal;
  2952. color: #aaa;
  2953. font-weight: 600;
  2954. font-size: 10px;
  2955. margin: 5px;
  2956. line-height: 14px;
  2957. }
  2958. .reationbutton.active {
  2959. filter: grayscale(0);
  2960. }
  2961. .archive {
  2962. background: white;
  2963. padding: 30px 30px 30px 0;
  2964. }
  2965. @media (max-width: 375px) {
  2966. .archive {
  2967. padding: 0;
  2968. }
  2969. .archive .news-list {
  2970. padding: 15px 10px;
  2971. position: relative;
  2972. }
  2973. .archive .news-list .filters {
  2974. top: 10px;
  2975. right: 10px;
  2976. }
  2977. }
  2978. .archive .topics-list {
  2979. height: 100%;
  2980. }
  2981. @media (max-width: 500px) {
  2982. .archive .topics-list {
  2983. display: none;
  2984. }
  2985. }
  2986. .archive .topics-list .topics-continer {
  2987. border-right: 1px solid #eee;
  2988. }
  2989. .archive .topics-list .topics-continer ul li a {
  2990. font: 18px/22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  2991. padding: 15px 10px 10px 30px;
  2992. display: block;
  2993. }
  2994. .archive .topics-list .topics-continer ul li a.active {
  2995. background: rgba(59, 85, 115, 0.1);
  2996. }
  2997. .archive .topics-list .topics-continer ul li .hr {
  2998. border-bottom: #282b2b 2px;
  2999. display: flex;
  3000. border-bottom: 1px solid #bfbebd;
  3001. margin: 0px 30px;
  3002. padding-top: 5px;
  3003. }
  3004. .archive .topics-list .topics-continer ul li .header {
  3005. text-align: center;
  3006. font-weight: bold;
  3007. font-size: 1.4em;
  3008. position: relative;
  3009. display: none;
  3010. padding: 4px;
  3011. color: #888787;
  3012. }
  3013. .archive .news-list {
  3014. position: relative;
  3015. }
  3016. .archive .news-list .archive-news-item {
  3017. display: flex;
  3018. padding: 30px 30px 30px 0;
  3019. border-bottom: 1px solid #eee;
  3020. align-items: center;
  3021. }
  3022. .archive .news-list .archive-news-item .illustration {
  3023. min-width: 220px;
  3024. width: 220px;
  3025. margin-right: 30px;
  3026. }
  3027. .archive .news-list .archive-news-item .illustration .picture-cont-16x9 div {
  3028. height: 56.25%;
  3029. overflow: hidden;
  3030. }
  3031. .archive .news-list .archive-news-item .meta .title a {
  3032. font: 24px/29px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3033. }
  3034. .archive .news-list .archive-news-item .meta .published_at {
  3035. font: 12px/17px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3036. color: #a8a8a8;
  3037. }
  3038. .archive .news-list .archive-news-item .meta .published_at .icon {
  3039. width: 10px;
  3040. height: 10px;
  3041. fill: #a8a8a8;
  3042. margin-right: 5px;
  3043. }
  3044. @media (max-width: 500px) {
  3045. .archive .news-list .archive-news-item {
  3046. flex-direction: column;
  3047. padding: 0;
  3048. padding-bottom: 15px;
  3049. margin-bottom: 15px;
  3050. }
  3051. .archive .news-list .archive-news-item .illustration {
  3052. width: 100%;
  3053. margin-right: 0;
  3054. margin-bottom: 15px;
  3055. }
  3056. }
  3057. .archive .pagination {
  3058. margin-top: 30px;
  3059. color: #3b5573;
  3060. display: flex;
  3061. font: 14px/1 "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3062. max-width: 100%;
  3063. overflow: hidden;
  3064. }
  3065. @media (max-width: 500px) {
  3066. .archive .pagination {
  3067. overflow-x: scroll;
  3068. }
  3069. }
  3070. .archive .pagination li {
  3071. background: rgba(59, 85, 115, 0.08);
  3072. display: flex;
  3073. flex-grow: 1;
  3074. height: 40px;
  3075. border-radius: 4px;
  3076. margin-right: 7px;
  3077. justify-content: center;
  3078. align-items: center;
  3079. }
  3080. .archive .pagination li a {
  3081. display: flex;
  3082. width: 100%;
  3083. height: 100%;
  3084. justify-content: center;
  3085. align-items: center;
  3086. }
  3087. .archive .pagination li.active a {
  3088. background: #f5f5f5;
  3089. color: #f6911f;
  3090. }
  3091. .archive .pagination li.disabled {
  3092. cursor: not-allowed;
  3093. color: #b3b3b3;
  3094. user-select: none;
  3095. }
  3096. .archive .filters {
  3097. position: absolute;
  3098. top: 0;
  3099. right: 0;
  3100. }
  3101. .archive .filters .icon {
  3102. width: 25px;
  3103. height: 25px;
  3104. }
  3105. .archive #filters-modal {
  3106. position: fixed;
  3107. display: block;
  3108. width: 500px;
  3109. padding: 30px;
  3110. background: #fff;
  3111. box-shadow: #000 0 0 11px -5px;
  3112. z-index: 999;
  3113. right: 60px;
  3114. left: 0;
  3115. top: -100%;
  3116. margin: auto;
  3117. transition: 0.3s;
  3118. opacity: 0;
  3119. }
  3120. @media (max-width: 500px) {
  3121. .archive #filters-modal {
  3122. width: 100%;
  3123. }
  3124. }
  3125. .archive #filters-modal.active {
  3126. display: block;
  3127. top: 40%;
  3128. opacity: 1;
  3129. }
  3130. .archive #filters-modal form {
  3131. display: flex;
  3132. justify-content: center;
  3133. flex-wrap: wrap;
  3134. }
  3135. .archive #filters-modal form button {
  3136. background: rgba(59, 85, 115, 0.08);
  3137. display: flex;
  3138. height: 40px;
  3139. border-radius: 4px;
  3140. justify-content: center;
  3141. align-items: center;
  3142. outline: none;
  3143. border: none;
  3144. padding: 0 30px;
  3145. font: 14px/1 "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3146. color: #3b5573;
  3147. }
  3148. .search-header {
  3149. background: #eaeaea;
  3150. padding: 10px;
  3151. display: flex;
  3152. align-items: center;
  3153. margin-bottom: 15px;
  3154. }
  3155. .search-header .search_form {
  3156. display: flex;
  3157. flex-grow: 1;
  3158. align-items: center;
  3159. }
  3160. .search-header .search_form h6 {
  3161. margin: 0;
  3162. margin-right: 15px;
  3163. }
  3164. .search-header .search_form input {
  3165. display: block;
  3166. border: none;
  3167. flex-grow: 1;
  3168. border-top-left-radius: 50px;
  3169. border-bottom-left-radius: 50px;
  3170. outline: none;
  3171. padding: 4px 3px 4px 26px;
  3172. width: 20%;
  3173. background-image: url(/img/search.svg);
  3174. background-repeat: no-repeat;
  3175. background-size: 14px;
  3176. background-position: 9px 8px;
  3177. }
  3178. .search-header .search_form button {
  3179. display: block;
  3180. border: none;
  3181. background: #f5f5f5;
  3182. color: #f6911f;
  3183. border-top-right-radius: 50px;
  3184. border-bottom-right-radius: 50px;
  3185. padding: 3px 10px;
  3186. outline: none;
  3187. }
  3188. .archive .search_form {
  3189. display: flex;
  3190. flex-wrap: wrap;
  3191. }
  3192. @media (max-width: 375px) {
  3193. .archive .search_form h6 {
  3194. flex: 100%;
  3195. margin: 0 0 15px 0;
  3196. }
  3197. }
  3198. .container {
  3199. max-width: 100%;
  3200. overflow-x: hidden;
  3201. }
  3202. @media (min-width: 576px) {
  3203. .container,
  3204. .container-sm {
  3205. max-width: 540px;
  3206. }
  3207. }
  3208. @media (min-width: 768px) {
  3209. .container,
  3210. .container-sm,
  3211. .container-md {
  3212. max-width: 720px;
  3213. }
  3214. }
  3215. @media (min-width: 992px) {
  3216. .container,
  3217. .container-sm,
  3218. .container-md,
  3219. .container-lg {
  3220. max-width: 960px;
  3221. }
  3222. }
  3223. @media (min-width: 1200px) {
  3224. .container,
  3225. .container-sm,
  3226. .container-md,
  3227. .container-lg,
  3228. .container-xl {
  3229. max-width: 1306px;
  3230. }
  3231. }
  3232. @media all {
  3233. .longrid {
  3234. max-width: 95%;
  3235. }
  3236. .longrid .post .text .gallery-wrapper div {
  3237. margin-left: 0;
  3238. margin-right: 0;
  3239. }
  3240. .longrid .post .text p {
  3241. margin-left: auto;
  3242. margin-right: auto;
  3243. max-width: 1200px;
  3244. margin-bottom: 2rem;
  3245. }
  3246. .longrid .post .text ul,
  3247. .longrid .post .text ol,
  3248. .longrid .post .text dl {
  3249. margin-left: auto;
  3250. margin-right: auto;
  3251. max-width: 1200px;
  3252. margin-bottom: 2rem;
  3253. }
  3254. .longrid .post .text .inject1,
  3255. .longrid .post .text .inject2,
  3256. .longrid .post .text .inject {
  3257. margin-left: auto;
  3258. margin-right: auto;
  3259. max-width: 1200px;
  3260. margin-bottom: 2rem;
  3261. }
  3262. .longrid .post .text .inject .illustration {
  3263. margin-right: 30px;
  3264. }
  3265. .longrid .post .text h2 {
  3266. margin-left: auto;
  3267. margin-right: auto;
  3268. max-width: 1200px;
  3269. font-weight: 700;
  3270. }
  3271. .longrid .post .text div {
  3272. margin-left: auto;
  3273. margin-right: auto;
  3274. max-width: 1200px;
  3275. }
  3276. .longrid .post .text div .pic {
  3277. max-width: 100%;
  3278. margin-bottom: 20px;
  3279. }
  3280. .longrid .post .text .wides {
  3281. margin-left: auto;
  3282. margin-right: auto;
  3283. max-width: 95%;
  3284. }
  3285. .longrid .post .text .bukvica::first-letter {
  3286. font-size: 182px;
  3287. margin: 0 28px 0 0;
  3288. float: left;
  3289. line-height: 192px;
  3290. vertical-align: top;
  3291. }
  3292. .longrid .post .text .hr {
  3293. clear: both;
  3294. }
  3295. .longrid .post h1,
  3296. .longrid .post h2,
  3297. .longrid .post h3,
  3298. .longrid .post h4,
  3299. .longrid .post h5 {
  3300. max-width: 1200px;
  3301. margin-right: auto;
  3302. margin-left: auto;
  3303. }
  3304. .longrid .post h4 {
  3305. margin-bottom: 40px;
  3306. }
  3307. .longrid .post h1 {
  3308. text-align: center;
  3309. font-size: 45px;
  3310. }
  3311. .longrid .post .lead {
  3312. margin-right: auto;
  3313. margin-left: auto;
  3314. max-width: 1100px;
  3315. }
  3316. .longrid .post .published_at {
  3317. margin-right: auto;
  3318. margin-left: auto;
  3319. max-width: 1200px;
  3320. }
  3321. .longrid .post section.comments {
  3322. max-width: 1200px;
  3323. margin: 0 auto;
  3324. }
  3325. .longrid .post .share_and_comment {
  3326. max-width: 1200px;
  3327. margin: 0 auto;
  3328. }
  3329. }
  3330. @media all and (max-width: 500px) {
  3331. .longrid .post h1 {
  3332. text-align: left;
  3333. font-size: 25px;
  3334. }
  3335. }
  3336. body {
  3337. -webkit-font-smoothing: antialiased;
  3338. -webkit-text-size-adjust: 100%;
  3339. font: 12px/22px "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3340. }
  3341. body .fixed_social_links {
  3342. position: fixed;
  3343. right: 0;
  3344. width: 50px;
  3345. height: 135px;
  3346. background: #eee;
  3347. top: 0;
  3348. bottom: 0;
  3349. margin: auto;
  3350. z-index: 999;
  3351. }
  3352. body .fixed_social_links .icons-container {
  3353. display: flex;
  3354. flex-direction: column;
  3355. width: 100%;
  3356. }
  3357. body .fixed_social_links a {
  3358. text-align: center;
  3359. }
  3360. body .fixed_social_links a svg.icon-vk {
  3361. height: 18px;
  3362. width: 50px;
  3363. fill: #0A5DFE;
  3364. margin-top: 15px;
  3365. }
  3366. body .fixed_social_links a svg.icon-ok {
  3367. width: 23px;
  3368. height: 35px;
  3369. fill: orange;
  3370. }
  3371. body .fixed_social_links a svg.icon-tg {
  3372. width: 30px;
  3373. height: 50px;
  3374. }
  3375. body ul {
  3376. list-style: none;
  3377. padding: 0;
  3378. }
  3379. body .button-gray {
  3380. padding: 0 16px 0 20px;
  3381. height: 32px;
  3382. background-color: #f5f5f5;
  3383. border-radius: 36px;
  3384. }
  3385. body a {
  3386. text-decoration: none;
  3387. color: #3E3E42;
  3388. outline: none;
  3389. transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  3390. }
  3391. body a:hover {
  3392. color: #3b5573;
  3393. text-decoration: none;
  3394. }
  3395. body .button {
  3396. position: relative;
  3397. display: inline-flex;
  3398. justify-content: center;
  3399. align-items: center;
  3400. margin: 0;
  3401. border: none;
  3402. cursor: pointer;
  3403. outline: 0;
  3404. z-index: 10;
  3405. transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  3406. -webkit-appearance: none;
  3407. border-radius: 50px;
  3408. background: #f5f5f5;
  3409. padding: 3px 12px;
  3410. color: #ff7f00;
  3411. white-space: nowrap;
  3412. }
  3413. body .button_gray {
  3414. padding: 0 16px 0 20px;
  3415. height: 32px;
  3416. background-color: #f5f5f5;
  3417. border-radius: 36px;
  3418. }
  3419. body .hidden {
  3420. display: none;
  3421. }
  3422. div.picture-cont-16x9 {
  3423. position: relative;
  3424. width: 100%;
  3425. padding-bottom: 56.25%;
  3426. overflow: hidden;
  3427. }
  3428. div.picture-cont-16x9 picture {
  3429. position: absolute;
  3430. top: 0;
  3431. left: 0;
  3432. width: 100%;
  3433. height: 100%;
  3434. }
  3435. div.picture-cont-16x9 picture img {
  3436. aspect-ratio: 16/9;
  3437. object-fit: cover;
  3438. height: 100%;
  3439. }
  3440. .sidemenu_overlay,
  3441. .sidemenu_rubrics_overlay {
  3442. display: none;
  3443. z-index: 99999;
  3444. }
  3445. .sidemenu_overlay .sidemenu_content,
  3446. .sidemenu_rubrics_overlay .sidemenu_content {
  3447. max-height: calc(100% - 50px);
  3448. overflow: scroll;
  3449. }
  3450. .sidemenu_overlay.active,
  3451. .sidemenu_rubrics_overlay.active {
  3452. display: block;
  3453. }
  3454. @media (max-width: 700px) {
  3455. .fixed_social_links {
  3456. display: none;
  3457. }
  3458. }
  3459. @media (max-width: 500px) {
  3460. .post h1 {
  3461. font-size: 25px;
  3462. }
  3463. .post h2 {
  3464. font-size: 23px;
  3465. }
  3466. .post h3 {
  3467. font-size: 16px;
  3468. }
  3469. .post h4 {
  3470. font-size: 14px;
  3471. }
  3472. .post h5 {
  3473. font-size: 14px;
  3474. }
  3475. .post .text h6 {
  3476. font-size: 14px;
  3477. }
  3478. .sidemenu_overlay,
  3479. .sidemenu_rubrics_overlay {
  3480. display: block;
  3481. }
  3482. .hamburger,
  3483. .dots {
  3484. position: relative;
  3485. width: 20px;
  3486. }
  3487. .hamburger.is-active .hamburger-box,
  3488. .dots.is-active .hamburger-box {
  3489. transform: rotate(45deg);
  3490. }
  3491. .hamburger.is-active .hamburger-box:before,
  3492. .dots.is-active .hamburger-box:before {
  3493. top: 0;
  3494. transform: rotate(90deg);
  3495. }
  3496. .hamburger.is-active .hamburger-box:after,
  3497. .dots.is-active .hamburger-box:after {
  3498. display: none;
  3499. }
  3500. .hamburger .hamburger-box,
  3501. .dots .hamburger-box {
  3502. display: block;
  3503. position: absolute;
  3504. height: 2px;
  3505. width: 100%;
  3506. top: 0px;
  3507. bottom: 0;
  3508. margin: auto;
  3509. background: black;
  3510. }
  3511. .hamburger .hamburger-box:before,
  3512. .dots .hamburger-box:before {
  3513. content: "";
  3514. display: block;
  3515. position: absolute;
  3516. height: 2px;
  3517. width: 100%;
  3518. top: -6px;
  3519. background: black;
  3520. }
  3521. .hamburger .hamburger-box:after,
  3522. .dots .hamburger-box:after {
  3523. content: "";
  3524. display: block;
  3525. position: absolute;
  3526. height: 2px;
  3527. width: 100%;
  3528. top: 6px;
  3529. background: black;
  3530. }
  3531. }
  3532. .desktop-search {
  3533. display: flex;
  3534. }
  3535. @media (max-width: 500px) {
  3536. .desktop-search {
  3537. display: none;
  3538. }
  3539. }
  3540. .desktop-search .search_form {
  3541. display: flex;
  3542. flex-grow: 1;
  3543. align-items: center;
  3544. border: 1px solid #eaeaea;
  3545. border-radius: 50px;
  3546. }
  3547. .desktop-search .search_form h6 {
  3548. margin: 0;
  3549. margin-right: 15px;
  3550. }
  3551. .desktop-search .search_form input {
  3552. display: block;
  3553. border: none;
  3554. flex-grow: 1;
  3555. border-top-left-radius: 50px;
  3556. border-bottom-left-radius: 50px;
  3557. outline: none;
  3558. padding: 4px 3px 4px 26px;
  3559. width: 20%;
  3560. background-image: url(/img/search.svg);
  3561. background-repeat: no-repeat;
  3562. background-size: 14px;
  3563. background-position: 9px 8px;
  3564. }
  3565. .desktop-search .search_form button {
  3566. display: block;
  3567. border: none;
  3568. background: #f5f5f5;
  3569. color: #f6911f;
  3570. border-top-right-radius: 50px;
  3571. border-bottom-right-radius: 50px;
  3572. padding: 4px 10px;
  3573. outline: none;
  3574. }
  3575. @media (max-width: 375px) {
  3576. .desktop-search {
  3577. display: none;
  3578. }
  3579. }
  3580. .header-banner .header-banner_desktop {
  3581. display: block;
  3582. position: relative;
  3583. min-height: 200px;
  3584. text-align: center;
  3585. }
  3586. .header-banner .header-banner_mobile {
  3587. position: relative;
  3588. }
  3589. .header-banner .header-banner_mobile .placeholder {
  3590. position: absolute;
  3591. opacity: 1;
  3592. transition: 0.3s;
  3593. z-index: 2;
  3594. height: 100%;
  3595. top: 0;
  3596. left: 0;
  3597. margin: auto;
  3598. right: 0;
  3599. background: url(/img/adv_placeholder.jpg) no-repeat;
  3600. background-size: contain;
  3601. background-position: center;
  3602. }
  3603. .header-banner .header-banner_mobile .placeholder::after {
  3604. position: absolute;
  3605. bottom: 102px;
  3606. font-size: 8px;
  3607. color: gray;
  3608. margin: auto;
  3609. width: 100%;
  3610. left: 0;
  3611. text-transform: uppercase;
  3612. }