styles.css 77 KB

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