styles.css 77 KB

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