styles.css 71 KB

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