all2.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. a{
  2. color: #5597d1;
  3. text-decoration: none;
  4. }
  5. a:hover{
  6. color: #004d7b;
  7. }
  8. img{
  9. max-width: 100%;
  10. height: auto;
  11. }
  12. .grid-row{
  13. font-size: 0;
  14. margin: 0 -5px 0 -5px;
  15. }
  16. .grid-col{
  17. display: inline-block;
  18. box-sizing: border-box;
  19. vertical-align: top;
  20. padding: 0 5px;
  21. font-size: 15px;
  22. }
  23. .grid-col-1{width: 25%;}
  24. .grid-col-2{width: 50%;}
  25. .grid-col-3{width: 75%;}
  26. .grid-col-4{width: 100%;}
  27. .grid-col-33{width: 33.3333333333%;}
  28. .grid-col-66{width: 66.6666666666%;}
  29. .breadcrumbs{
  30. position: relative;
  31. z-index: 2;
  32. }
  33. .search--headline{
  34. height: 44px;
  35. margin-bottom: 40px;
  36. padding: 0 18px 0 56px;
  37. box-sizing: border-box;
  38. position: relative;
  39. display: -webkit-flex;
  40. display: -ms-flex;
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. align-content: center;
  45. align-items: center;
  46. background: #ebebeb;
  47. z-index: 2;
  48. }
  49. .search--headline:before {
  50. content: '';
  51. position: absolute;
  52. width: 49px;
  53. height: 49px;
  54. border-radius: 50%;
  55. left: -10px;
  56. top: -8px;
  57. border: 5px solid #ffffff;
  58. background: url("../img/icon_search_01.png") center/auto no-repeat #3b434d;
  59. }
  60. .search--headline--text{
  61. width: 900px;
  62. margin-right: 20px;
  63. font-family: 'cuprum';
  64. font-size: 20px;
  65. font-weight: bold;
  66. color: #3b434d;
  67. overflow: hidden;
  68. }
  69. .orglist--headline{
  70. height: 44px;
  71. margin-bottom: 15px;
  72. padding: 0 18px 0 56px;
  73. box-sizing: border-box;
  74. position: relative;
  75. display: -webkit-flex;
  76. display: -ms-flex;
  77. display: flex;
  78. flex-direction: row;
  79. justify-content: space-between;
  80. align-content: center;
  81. align-items: center;
  82. background: #ebebeb;
  83. z-index: 2;
  84. }
  85. .orglist--headline:before {
  86. content: '';
  87. position: absolute;
  88. width: 49px;
  89. height: 49px;
  90. border-radius: 50%;
  91. left: -10px;
  92. top: -8px;
  93. border: 5px solid #ffffff;
  94. background: url("../img/icon_leftbar_innermenu_01@2x.png") center/50% 50% no-repeat #004d7b;
  95. }
  96. .orglist--headline--text{
  97. width: 900px;
  98. margin-right: 20px;
  99. font-family: 'cuprum';
  100. font-size: 20px;
  101. font-weight: bold;
  102. color: #004d7b;
  103. overflow: hidden;
  104. }
  105. .search--headline--form{
  106. width: 216px;
  107. position: relative;
  108. }
  109. .search--headline--form .search__iconzoom {
  110. position: absolute;
  111. right: 0;
  112. top: 0;
  113. width: 30px;
  114. height: 30px;
  115. background: url("../img/icon_zoom_search@2x.png") 0 0/cover no-repeat;
  116. border-radius: 0 25px 25px 0 / 0 25px 25px 0;
  117. cursor: pointer;
  118. overflow: hidden;
  119. display: none;
  120. }
  121. .search--headline--form input:focus + .search__iconzoom{
  122. display: block;
  123. }
  124. .pagetitle2container{
  125. height: 44px;
  126. margin-bottom: 17px;
  127. padding: 0 18px 0 54px;
  128. box-sizing: border-box;
  129. position: relative;
  130. display: -webkit-flex;
  131. display: -ms-flex;
  132. display: flex;
  133. flex-direction: row;
  134. justify-content: space-between;
  135. align-content: center;
  136. align-items: center;
  137. background: #ebebeb;
  138. }
  139. .pagetitle2container:before {
  140. content: '';
  141. position: absolute;
  142. width: 49px;
  143. height: 49px;
  144. border-radius: 50%;
  145. left: -10px;
  146. top: -8px;
  147. border: 5px solid #ffffff;
  148. background: url("../img/icon_search_01.png") center/auto no-repeat #004d7b;
  149. }
  150. .pagetitle2container.title--spec:before{
  151. background: url("../img/icon_search_01.png") center/auto no-repeat #3b434d;
  152. }
  153. .pagetitle2container.title--serv:before{
  154. background: url("../img/icon_leftbar_innermenu_03@2x.png") center/20px auto no-repeat #5597d1;
  155. }
  156. .pagetitle2container h1{
  157. font-family: 'cuprum';
  158. font-size: 20px;
  159. font-weight: bold;
  160. color: #004d7b;
  161. white-space: nowrap;
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. }
  165. .pagetitle2container.title--spec h1{
  166. color: #3b434d;
  167. }
  168. .pagetitle2container.title--serv h1{
  169. color: #5597d1;
  170. }
  171. .org1__item{
  172. border: 1px solid #ebebeb;
  173. border-radius: 10px 0 0 0;
  174. position: relative;
  175. background: #fff;
  176. font-family: 'cuprum';
  177. box-sizing: border-box;
  178. padding: 5px 10px 0;
  179. text-align: center;
  180. display: flex;
  181. flex-direction: column;
  182. margin: 0 auto 10px;
  183. max-width: 237px;
  184. }
  185. .item-badge{
  186. display: inline-block;
  187. padding: 0 10px 0 0;
  188. background: #53b02e;
  189. position: absolute;
  190. left: -8px;
  191. font-size: 18px;
  192. line-height: 1;
  193. color: #fff;
  194. white-space: nowrap;
  195. text-align: left;
  196. }
  197. .org1__item .item-badge{
  198. bottom: 74px;
  199. }
  200. .akcia__item .item-badge{
  201. top: 120px;
  202. }
  203. .item-badge:after{
  204. content: '';
  205. display: block;
  206. position: absolute;
  207. top: 0;
  208. right: -10px;
  209. width: 0;
  210. height: 0;
  211. border-top: 15px solid #53b02e;
  212. border-right: 10px solid transparent;
  213. }
  214. .item-badge:before{
  215. content: '';
  216. display: block;
  217. position: absolute;
  218. bottom: 0;
  219. right: -10px;
  220. width: 0;
  221. height: 0;
  222. border-bottom: 15px solid #53b02e;
  223. border-right: 10px solid transparent;
  224. }
  225. .item-badge div{
  226. height: 30px;
  227. box-sizing: border-box;
  228. padding: 5px 0 0 7px;
  229. }
  230. .item-badge div:before{
  231. content: '';
  232. display: block;
  233. position: absolute;
  234. bottom: -6px;
  235. left: 0;
  236. width: 0;
  237. height: 0;
  238. border-top: 6px solid #3b434d;
  239. border-left: 7px solid transparent;
  240. }
  241. .item-badge.item-badge-green{
  242. background: #53b02e;
  243. }
  244. .item-badge.item-badge-green:after{
  245. border-top: 15px solid #53b02e;
  246. }
  247. .item-badge.item-badge-green:after{
  248. border-bottom: 15px solid #53b02e;
  249. }
  250. .item-badge.item-badge-orange{
  251. background: #e65e26;
  252. }
  253. .item-badge.item-badge-orange:after{
  254. border-top: 15px solid #e65e26;
  255. }
  256. .item-badge.item-badge-orange:after{
  257. border-bottom: 15px solid #e65e26;
  258. }
  259. .item-badge.item-badge-blue{
  260. background: #5597d1;
  261. }
  262. .item-badge.item-badge-blue:after{
  263. border-top: 15px solid #5597d1;
  264. }
  265. .item-badge.item-badge-blue:after{
  266. border-bottom: 15px solid #5597d1;
  267. }
  268. .org1__title{
  269. height: 70px;
  270. margin-bottom: 9px;
  271. overflow: hidden;
  272. display: -webkit-flex;
  273. display: -ms-flex;
  274. display: flex;
  275. -webkit-align-items: center;
  276. -webkit-box-align: center;
  277. -ms-flex-align: center;
  278. align-items: center;
  279. }
  280. .org1__title a{
  281. margin: auto;
  282. line-height: 18px;
  283. color: #004d7b;
  284. text-decoration: none;
  285. }
  286. .org1__desc{
  287. height: 31px;
  288. margin-bottom: 6px;
  289. overflow: hidden;
  290. display: -webkit-flex;
  291. display: -ms-flex;
  292. display: flex;
  293. -webkit-align-items: center;
  294. -webkit-box-align: center;
  295. -ms-flex-align: center;
  296. align-items: center;
  297. font-size: 13px;
  298. line-height: 16px;
  299. color: #929292;
  300. }
  301. .org1__desc span{
  302. margin: auto;
  303. }
  304. .org1__img{
  305. height: 130px;
  306. overflow: hidden;
  307. margin-bottom: 10px;
  308. }
  309. .org1__img img{
  310. display: block;
  311. margin: 0 auto;
  312. }
  313. .org1__adress{
  314. height: 57px;
  315. margin-bottom: 9px;
  316. overflow: hidden;
  317. display: -webkit-flex;
  318. display: -ms-flex;
  319. display: flex;
  320. -webkit-align-items: center;
  321. -webkit-box-align: center;
  322. -ms-flex-align: center;
  323. align-items: center;
  324. font-size: 14px;
  325. line-height: 18px;
  326. color: #929292;
  327. background: #ebebeb;
  328. margin: 0 -10px;
  329. }
  330. .org1__adress span{
  331. margin: auto;
  332. }
  333. .row-org2{
  334. margin-bottom: 30px;
  335. }
  336. .org2__item{
  337. border: 1px solid #ebebeb;
  338. background: #fff;
  339. font-family: 'cuprum';
  340. margin-bottom: 10px;
  341. position: relative;
  342. padding-right: 30px;
  343. }
  344. .org2__item.recommend-badge:before{
  345. content: 'Редакция рекомендует!';
  346. display: block;
  347. width: 193px;
  348. height: 36px;
  349. box-sizing: border-box;
  350. padding: 5px 0 0 7px;
  351. background: url(../img/recommend-badge.png) no-repeat;
  352. position: absolute;
  353. bottom: 6px;
  354. left: -8px;
  355. font-size: 18px;
  356. line-height: 1;
  357. color: #fff;
  358. white-space: nowrap;
  359. text-align: left;
  360. }
  361. .org2__img{
  362. float: left;
  363. margin: -1px 9px -1px -1px;
  364. }
  365. .org2__img img{
  366. display: block;
  367. }
  368. .org2__title{
  369. height: 29px;
  370. margin: 5px 0 6px;
  371. overflow: hidden;
  372. }
  373. .org2__title a{
  374. display: table-cell;
  375. height: 29px;
  376. vertical-align: middle;
  377. font-size: 17px;
  378. line-height: 14px;
  379. color: #3b434d;
  380. text-decoration: none;
  381. }
  382. .org2__desc{
  383. height: 29px;
  384. overflow: hidden;
  385. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  386. font-size: 13px;
  387. line-height: 14px;
  388. color: #3b434d;
  389. }
  390. .org2__desc span{
  391. display: table-cell;
  392. height: 29px;
  393. vertical-align: middle;
  394. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  395. font-size: 13px;
  396. line-height: 14px;
  397. color: #3b434d;
  398. text-decoration: none;
  399. }
  400. .org2__link{
  401. display: block;
  402. width: 14px;
  403. height: 14px;
  404. position: absolute;
  405. top: 50%;
  406. right: 4px;
  407. margin-top: -7px;
  408. background: url(../img/icon_leftbar_title_arrow1.png) no-repeat;
  409. }
  410. .marg-bottom-none{
  411. margin-bottom: 0;
  412. }
  413. .personals__item{
  414. max-width: 227px;
  415. margin-left: auto;
  416. margin-right: auto;
  417. }
  418. .blockslide--content .personals2__item{
  419. margin: 0 0 3px 10px;
  420. }
  421. .personals2__item {
  422. border-radius: 32px 0 0 0 / 32px 0 0 0;
  423. display: -webkit-flex;
  424. display: -ms-flex;
  425. display: flex;
  426. flex-direction: column;
  427. margin-bottom: 10px;
  428. }
  429. .personals2__top{
  430. padding: 5px 9px 4px 60px;
  431. font-size: 13px;
  432. color: #929292;
  433. }
  434. .personals2__doljnost{
  435. float: left;
  436. width: 50%;
  437. box-sizing: border-box;
  438. }
  439. .personals2__writelink{
  440. float: left;
  441. width: 50%;
  442. box-sizing: border-box;
  443. text-align: right;
  444. }
  445. .personals2__writelink a{
  446. color: #929292;
  447. text-decoration: none;
  448. }
  449. .personals2__writelink a:after{
  450. content: '';
  451. display: inline-block;
  452. width: 8px;
  453. height: 8px;
  454. background: url(../img/icon_leftbar_title_arrow3.png) no-repeat;
  455. background-size: 8px 8px;
  456. margin-left: 1px;
  457. }
  458. .personals2__link {
  459. text-decoration: none;
  460. position: relative;
  461. }
  462. .personals2__item:hover .personals2__title {
  463. background: #d2dee9;
  464. }
  465. .personals2__item:hover .personals2__details {
  466. border-color: #d2dee9 !important;
  467. }
  468. .personals2__title {
  469. background: #ebebeb;
  470. border-radius: 32px 0 0 32px;
  471. display: -webkit-flex;
  472. display: -ms-flex;
  473. display: flex;
  474. flex-direction: row;
  475. flex-wrap: nowrap;
  476. align-items: center;
  477. position: relative;
  478. }
  479. .personals2__name {
  480. width: 60%;
  481. color: #004d7b;
  482. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  483. font-size: 17px;
  484. height: 41px;
  485. display: -webkit-flex;
  486. display: -ms-flex;
  487. display: flex;
  488. flex-direction: column;
  489. justify-content: center;
  490. padding-left: 62px;
  491. }
  492. .personals2__description{
  493. width: 40%;
  494. text-align: right;
  495. display: block;
  496. position: relative;
  497. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  498. font-size: 13px;
  499. color: #929292;
  500. padding: 0 10px 0 10px;
  501. box-sizing: border-box;
  502. }
  503. .personals2__photo {
  504. width: 63px;
  505. height: 63px;
  506. border-radius: 50%;
  507. display: block;
  508. position: absolute;
  509. margin-left: -10px;
  510. z-index: 10;
  511. left: 0;
  512. top: 0;
  513. }
  514. .personals2__details {
  515. border: 1px solid #ebebeb;
  516. border-top: none;
  517. padding-left: 58px;
  518. }
  519. .personals2__category {
  520. padding: 8px 10px 3px 25px;
  521. }
  522. .personals2__category {
  523. display: block;
  524. position: relative;
  525. padding: 7px 10px 5px 27px;
  526. min-height: 20px;
  527. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  528. font-size: 13px;
  529. color: #004d7b;
  530. background: url("data:image/gif;base64,R0lGODlhFAAVAOZpAPr8/P3+/vz9/Tdzl9vm7KrE0+Pr8afC0TBvlEh/oK3G1bHJ19fj6m2Zs/T3+V+PrClqkPf5+2eVsBZchnmhukF6nbvQ3DFvlGyYs93n7U2Do0+EpNXi6RpfiHqiusvb5CxskkV9n46wxVaJqDNxlVWIp/v8/fX4+u7z9jRxlpy6zK/H1p+8zbrP21GGpanD0rXL2VyNq7PK2HCbtSpqkd/p7i1sksLU39nk60qBodrl7IerwV6PrCRmjihpkJi3yvj6+9bi6j54m+fu82KRrqC9zidojzVyloSpv77S3aXA0HafuKO/z8bX4XOdt0d/oABNe2iWsfb5+pS0yPP3+bfN2rbM2WuYsuLr8F2Oq9jk6xxhiXyku1mLqVuNquTs8UmAoaS/0MHU32WUr5e2yXuju97o7sjZ44WqwP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM5RDM2NDc0NTRBMTFFN0I1MjNBNjc1RDRDQTFCNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM5RDM2NDg0NTRBMTFFN0I1MjNBNjc1RDRDQTFCNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4MzlEMzY0NTQ1NEExMUU3QjUyM0E2NzVENENBMUI0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4MzlEMzY0NjQ1NEExMUU3QjUyM0E2NzVENENBMUI0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAGkALAAAAAAUABUAAAfdgGmCaQAqGjdpCwkFAYOOjhY+KVZpByETHI+aPzGPA1WajgFkXQ6ORwqhgwJFWVSOFy+qgwoPpoRpCCuzghYjAIRSaRALvGkGIDKDSh04xmksEE4FDT0wWC0oaY2qSUJQORwMCTQlNdyaEWlBCcADEgQuU7MCaU0VGWkXB2lIFMYf8KUZwCTNkgbGCDwxk4ZEmDRlZhgbosFArgJpPGB4hE7QiQ07xBg5k4ZLlGcHbCAQIQjNlTT1VAH7wkCQgS0TtMQMZQJdBAwSvGx4NgjIAwpjwBAdpIMHEQKDAgEAOw==") 2px 50% no-repeat;
  531. }
  532. .content--ad{
  533. margin-bottom: 10px;
  534. }
  535. .content--ad img{
  536. display: block;
  537. }
  538. .leftbar__item.leftbar__item--sidebarmenu:before{
  539. display: none;
  540. }
  541. .sidebarmenu{
  542. display: block;
  543. }
  544. .sidebarmenu__title {
  545. font-size: 17px;
  546. text-decoration: none;
  547. color: #3b434d;
  548. }
  549. .sidebarmenu__list {
  550. width: 100%;
  551. position: relative;
  552. z-index: 5;
  553. height: 0;
  554. overflow: hidden;
  555. transition: all .5s ease;
  556. }
  557. .sidebarmenu__list.active {
  558. height: auto;
  559. overflow: auto;
  560. transition: all .5s ease;
  561. }
  562. .sidebarmenu__item {
  563. border-bottom: 1px solid #ebebeb;
  564. border-left: 1px solid #ebebeb;
  565. border-right: 1px solid #ebebeb;
  566. }
  567. .sidebarmenu__link {
  568. color: #3b434d;
  569. background: #fff;
  570. text-decoration: none;
  571. font-size: 15px;
  572. padding: 8px;
  573. line-height: 19px;
  574. display: block;
  575. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  576. font-weight: normal;
  577. }
  578. .sidebarmenu__link:hover {
  579. color: #004d7b;
  580. background: #d2dee9;
  581. }
  582. .leftbar{
  583. position: relative;
  584. z-index: 5;
  585. }
  586. .leftbar__title--sidebarmenu {
  587. border-radius: 0;
  588. padding-left: 10px;
  589. }
  590. .services {
  591. display: block;
  592. }
  593. .services__title {
  594. text-decoration: none;
  595. color: #5597d1;
  596. }
  597. .services__title::before {
  598. content: '';
  599. position: absolute;
  600. width: 51px;
  601. height: 51px;
  602. border-radius: 50%;
  603. left: -10px;
  604. top: -8px;
  605. border: 5px solid #ffffff;
  606. background: url("../img/icon_leftbar_innermenu_03@2x.png") 50% 50%/20px 24px no-repeat #5597d1;
  607. }
  608. .services__list {
  609. width: 100%;
  610. margin-top: 5px;
  611. position: relative;
  612. z-index: 5;
  613. height: 0;
  614. overflow: hidden;
  615. transition: all .5s ease;
  616. background: #fff;
  617. }
  618. .services__list.active {
  619. height: auto;
  620. overflow: auto;
  621. transition: all .5s ease;
  622. }
  623. .services__item {
  624. border-bottom: 1px solid #ebebeb;
  625. }
  626. .services__link {
  627. color: #5597d1;
  628. text-decoration: none;
  629. font-size: 15px;
  630. padding: 8px;
  631. line-height: 19px;
  632. display: block;
  633. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  634. font-weight: normal;
  635. }
  636. .services__link:hover {
  637. color: #004d7b;
  638. background: #d2dee9;
  639. }
  640. .orgsingle--sidemenus .specialization__link,.orgsingle--sidemenus .services__link{
  641. padding: 6px 8px 7px;
  642. line-height: 14px;
  643. }
  644. #map1{
  645. position: absolute;
  646. top: 0;
  647. left: 0;
  648. right: 0;
  649. height: 637px;
  650. z-index: 1;
  651. }
  652. .centerbar.withmap{
  653. margin-top: 300px;
  654. position: relative;
  655. z-index: 2;
  656. }
  657. .sidebarmenu2--container{
  658. width: 210px;
  659. }
  660. .sidebarmenu2{
  661. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  662. font-size: 15px;
  663. line-height: 18px;
  664. background: #fff;
  665. }
  666. .sidebarmenu2 > li{
  667. display: block;
  668. }
  669. .sidebarmenu2 > li > a{
  670. display: block;
  671. position: relative;
  672. color: #004d7b;
  673. line-height: 18px;
  674. text-decoration: none;
  675. padding: 9px 23px 8px 9px;
  676. border-bottom: 1px solid #ebebeb;
  677. }
  678. .sidebarmenu2 > li.menu-item-has-children > a:after{
  679. content: '';
  680. display: block;
  681. width: 14px;
  682. height: 14px;
  683. background: url(../img/icon_leftbar_title_arrow1.png) no-repeat;
  684. position: absolute;
  685. right: 3px;
  686. top: 50%;
  687. margin-top: -7px;
  688. -moz-transform: rotate(0deg);
  689. -ms-transform: rotate(0deg);
  690. -webkit-transform: rotate(0deg);
  691. -o-transform: rotate(0deg);
  692. transform: rotate(0deg);
  693. }
  694. .sidebarmenu2 > li.menu-item-has-children > a.active:after{
  695. -moz-transform: rotate(90deg);
  696. -ms-transform: rotate(90deg);
  697. -webkit-transform: rotate(90deg);
  698. -o-transform: rotate(90deg);
  699. transform: rotate(90deg);
  700. }
  701. .sidebarmenu2 > li > ul{
  702. display: none;
  703. padding: 6px 0;
  704. border-bottom: 1px solid #ebebeb;
  705. }
  706. .sidebarmenu2 > li > ul > li > a{
  707. display: block;
  708. position: relative;
  709. color: #929292;
  710. line-height: 18px;
  711. text-decoration: none;
  712. padding: 3px 10px 3px 24px;
  713. }
  714. .sidebarmenu2 > li > ul > li > a:before{
  715. content: '';
  716. display: block;
  717. width: 5px;
  718. height: 8px;
  719. background: url(../img/icon_leftbar_submenu.png);
  720. position: absolute;
  721. top: 8px;
  722. left: 10px;
  723. }
  724. .sidebarmenu2 > li > ul > li > a:hover,.sidebarmenu2 > li > ul > li.current > a{
  725. background: #004d7b;
  726. color: #fff;
  727. }
  728. .sidebarmenu2 > li > ul > li > a:hover:before,.sidebarmenu2 > li > ul > li.current > a:before{
  729. background-position: center bottom;
  730. }
  731. .menu-slide{
  732. position: relative;
  733. }
  734. .menu-slide > ul{
  735. display: none;
  736. position: absolute;
  737. top: 45px;
  738. left: 0;
  739. right: 0;
  740. }
  741. .menu-slide > ul.active{
  742. display: block;
  743. }
  744. .item--menu--all{
  745. background: #ebebeb;
  746. padding: 6px 10px;
  747. text-align: center;
  748. font-size: 13px;
  749. margin-bottom: 10px;
  750. }
  751. .item--menu--all a{
  752. color: #929292;
  753. }
  754. .specsingle--leftlinks{
  755. margin-bottom: 0;
  756. }
  757. .specsingle--leftlinks:before{
  758. display: none;
  759. }
  760. .specsingle--leftlinks--item{
  761. display: block;
  762. background: #004d7b;
  763. padding: 5px 0;
  764. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  765. font-size: 17px;
  766. font-weight: bold;
  767. line-height: 20px;
  768. color: #fff;
  769. text-align: center;
  770. margin-bottom: 34px;
  771. }
  772. .specsingle--leftlinks--item:hover{
  773. background: #5597d1;
  774. color: #fff;
  775. }
  776. .specsingle--leftsingular:before{
  777. display: none;
  778. }
  779. .specsingle--leftsingular--item{
  780. height: 56px;
  781. background: #ebebeb;
  782. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  783. padding: 0 10px 0 60px;
  784. border-radius: 28px 0 0 28px;
  785. position: relative;
  786. margin-bottom: 11px;
  787. }
  788. .specsingle--leftsingular--item:last-child{
  789. margin-bottom: 0;
  790. }
  791. .specsingle--leftsingular--item:before{
  792. background: #fff;
  793. border-radius: 50%;
  794. content: "";
  795. height: 50px;
  796. left: 3px;
  797. position: absolute;
  798. top: 3px;
  799. width: 50px;
  800. }
  801. .specsingle--leftsingular--title{
  802. padding-top: 4px;
  803. height: 20px;
  804. overflow: hidden;
  805. font-size: 13px;
  806. font-weight: bold;
  807. color: #929292;
  808. white-space: nowrap;
  809. text-overflow: ellipsis;
  810. }
  811. .specsingle--leftsingular--value{
  812. height: 29px;
  813. font-size: 15px;
  814. line-height: 14px;
  815. font-weight: bold;
  816. color: #3b434d;
  817. overflow: hidden;
  818. }
  819. .pagination2 {
  820. display: -webkit-flex;
  821. display: -ms-flex;
  822. display: flex;
  823. flex-direction: row;
  824. justify-content: space-between;
  825. padding-top: 20px;
  826. }
  827. .pagination2__container {
  828. background: #ebebeb;
  829. line-height: 40px;
  830. display: -webkit-flex;
  831. display: -ms-flex;
  832. display: flex;
  833. flex-direction: row;
  834. justify-content: center;
  835. position: relative;
  836. padding-right: 150px;
  837. margin: 12px 12px 0 0;
  838. }
  839. .pagination2__list {
  840. display: -webkit-flex;
  841. display: -ms-flex;
  842. display: flex;
  843. flex-direction: row;
  844. }
  845. .pagination2__item {
  846. background: #ebebeb;
  847. line-height: 40px;
  848. display: -webkit-flex;
  849. display: -ms-flex;
  850. display: flex;
  851. flex-direction: row;
  852. justify-content: center;
  853. }
  854. .pagination2__link {
  855. width: 40px;
  856. height: 40px;
  857. line-height: 40px;
  858. display: block;
  859. text-align: center;
  860. text-decoration: none;
  861. font-size: 13px;
  862. color: #3b434d;
  863. }
  864. .pagination2__link--left {
  865. background: url("../img/icon_arrows_pagination2@2x.png") 0 0/80px 80px no-repeat;
  866. }
  867. .pagination2__link--left:hover {
  868. background-position: 0 -40px;
  869. }
  870. .pagination2__link--right {
  871. background: url("../img/icon_arrows_pagination2@2x.png") -40px 0/80px 80px no-repeat;
  872. }
  873. .pagination2__link--right:hover {
  874. background-position: -40px -40px;
  875. }
  876. .pagination2__link:hover {
  877. color: #5597d1;
  878. }
  879. .pagination2__link--separator:hover {
  880. color: #3b434d;
  881. }
  882. .pagination2__link--active {
  883. color: #5597d1;
  884. border-bottom: 2px solid #5597d1;
  885. }
  886. .pagination2__filter {
  887. position: absolute;
  888. right: 0;
  889. width: 150px;
  890. display: -webkit-flex;
  891. display: -ms-flex;
  892. display: flex;
  893. flex-direction: row;
  894. justify-content: center;
  895. align-items: center;
  896. align-content: center;
  897. cursor: pointer;
  898. background: #3b444d;
  899. color: #ffffff;
  900. text-decoration: none;
  901. font-size: 13px;
  902. line-height: 40px;
  903. }
  904. .pagination2__filter:hover {
  905. background: #5597d1;
  906. }
  907. .pagination2__filtermobile{
  908. display: none;
  909. }
  910. .col--orgsingle{
  911. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  912. border: 1px solid #ebebeb;
  913. border-radius: 10px 0 0 0;
  914. padding: 0 2px 0 9px;
  915. margin: 0 0 10px 4px;
  916. }
  917. .single--headline{
  918. margin-bottom: 30px;
  919. padding: 0 3px;
  920. }
  921. .single--headline h1{
  922. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  923. font-size: 32px;
  924. font-weight: bold;
  925. color: #004d7b;
  926. padding: 3px 0 0 0;
  927. margin-bottom: 5px;
  928. }
  929. .single--subheadline{
  930. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  931. font-size: 18px;
  932. font-weight: bold;
  933. color: #3b434d;
  934. }
  935. .row--orgsingle--top{
  936. margin-bottom: 25px;
  937. }
  938. .orgsingle--col-1{
  939. padding-top: 3px;
  940. max-width: 200px;
  941. }
  942. .orgsingle--col-1 img{
  943. margin-bottom: 3px;
  944. }
  945. .orgsingle--adress{
  946. font-size: 14px;
  947. line-height: 16px;
  948. text-align: center;
  949. color: #929292;
  950. margin-bottom: 13px;
  951. }
  952. .orgsingle--path{
  953. background: #ebebeb;
  954. padding: 6px 10px;
  955. text-align: center;
  956. font-size: 13px;
  957. margin-bottom: 10px;
  958. }
  959. .orgsingle--path a{
  960. color: #929292;
  961. }
  962. .orgsingle--col-2{
  963. padding-left: 10px;
  964. max-width: 240px;
  965. }
  966. .orgsingle--col-2 a{
  967. color: #004d7b;
  968. text-decoration: none;
  969. }
  970. .orgsingle--contact--headline{
  971. font-size: 13px;
  972. color: #929292;
  973. margin-bottom: 2px;
  974. }
  975. .orgsingle--contact--phone{
  976. padding: 2px 0 1px 25px;
  977. background: url(../img/icon_contact_01.png) no-repeat left center;
  978. margin-bottom: 4px;
  979. }
  980. .orgsingle--contact--site{
  981. padding: 2px 0 1px 25px;
  982. background: url(../img/icon_contact_02.png) no-repeat left center;
  983. }
  984. .orgsingle--contact--email{
  985. padding: 2px 0 1px 25px;
  986. background: url(../img/icon_contact_03.png) no-repeat left center;
  987. margin-bottom: 5px;
  988. }
  989. .orgsingle--contact--timework{
  990. line-height: 22px;
  991. margin-bottom: 32px;
  992. }
  993. .orgsingle--contact--allphone{
  994. font-size: 13px;
  995. padding-left: 4px;
  996. margin-bottom: 5px;
  997. }
  998. .orgsingle--contact--allphone a{
  999. color: #929292;
  1000. }
  1001. .orgsingle--contact--allphone a:after{
  1002. content: '';
  1003. display: inline-block;
  1004. width: 7px;
  1005. height: 7px;
  1006. background: url(../img/icon_leftbar_title_arrow3.png) no-repeat center/7px 7px;
  1007. margin-left: 5px;
  1008. }
  1009. .social--orgsingle li{
  1010. display: inline-block;
  1011. width: 24px;
  1012. height: 24px;
  1013. }
  1014. .social--orgsingle .social__link{
  1015. width: 24px;
  1016. height: 24px;
  1017. background-size: 24px 24px;
  1018. }
  1019. .social--orgsingle .social__link--fb {background-image: url("../img/icon_soc_01.png");}
  1020. .social--orgsingle .social__link--vk {background-image: url("../img/icon_soc_02.png");}
  1021. .social--orgsingle .social__link--ok {background-image: url("../img/icon_soc_03.png");}
  1022. .social--orgsingle .social__link--tw {background-image: url("../img/icon_soc_04.png");}
  1023. .orgsingle--col-3{
  1024. margin-left: 14px;
  1025. padding-left: 3px;
  1026. border-left: 1px solid #ebebeb;
  1027. max-width: 230px;
  1028. }
  1029. .orgsingle-list{
  1030. margin-top: -6px;
  1031. }
  1032. .orgsingle-list > li > a{
  1033. display: block;
  1034. padding: 7px 6px;
  1035. line-height: 14px;
  1036. color: #004d7b;
  1037. text-decoration: none;
  1038. }
  1039. .orgsingle-list > li > a:hover{
  1040. background: #ebebeb;
  1041. }
  1042. .orgsingle-list > li.active > a{
  1043. color: #929292;
  1044. }
  1045. .blockslide{
  1046. margin-bottom: 14px;
  1047. }
  1048. .blockslide--title{
  1049. padding: 9px 0;
  1050. position: relative;
  1051. font-size: 20px;
  1052. font-weight: bold;
  1053. color: #3b434d;
  1054. }
  1055. .blockslide--handler{
  1056. position: absolute;
  1057. top: 50%;
  1058. right: 3px;
  1059. width: 15px;
  1060. height: 9px;
  1061. margin-top: -4px;
  1062. cursor: pointer;
  1063. background: url(../img/blockslide_sprite.png) no-repeat;
  1064. }
  1065. .orgsingle--table{
  1066. background: #ebebeb;
  1067. }
  1068. .orgsingle--table td{
  1069. border: none;
  1070. padding: 5px;
  1071. vertical-align: top;
  1072. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1073. font-size: 13px;
  1074. line-height: 15px;
  1075. color: #3b434d;
  1076. }
  1077. .orgsingle--table tr td:first-child{
  1078. padding-right: 19px;
  1079. }
  1080. .orgsingle--table tr:first-child td{
  1081. padding-top: 10px;
  1082. }
  1083. .orgsingle--table tr:last-child td{
  1084. padding-bottom: 7px;
  1085. }
  1086. .orgsingle--table a{
  1087. display: block;
  1088. color: #004d7b;
  1089. text-decoration: none;
  1090. position: relative;
  1091. padding-left: 20px;
  1092. }
  1093. .table_icon:before{
  1094. content: '';
  1095. display: inline-block;
  1096. width: 13px;
  1097. height: 15px;
  1098. margin: 0 5px 0 0;
  1099. position: absolute;
  1100. top: 2px;
  1101. left: 0;
  1102. background: url(../img/icon_table_link.png);
  1103. }
  1104. .orgsingle--description{
  1105. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1106. font-size: 15px;
  1107. line-height: 18px;
  1108. position: relative;
  1109. overflow: hidden;
  1110. max-height: none;
  1111. padding-top: 13px;
  1112. }
  1113. .orgsingle--description.closed{
  1114. max-height: 100px;
  1115. }
  1116. .orgsingle--description.closed:after {
  1117. background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%) repeat scroll 0 0;
  1118. bottom: 0;
  1119. content: "";
  1120. display: block;
  1121. height: 100px;
  1122. left: 0;
  1123. position: absolute;
  1124. right: 0;
  1125. }
  1126. .orgsingle--description--handler{
  1127. text-align: center;
  1128. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1129. font-size: 13px;
  1130. color: #004d7b;
  1131. padding-top: 3px;
  1132. margin-bottom: 29px;
  1133. cursor: pointer;
  1134. }
  1135. .orgsingle--org2{
  1136. margin-bottom: 20px;
  1137. }
  1138. .orgsingle--org2--headline{
  1139. font-size: 20px;
  1140. font-weight: bold;
  1141. color: #3b434d;
  1142. margin-bottom: 10px;
  1143. }
  1144. .col-mediateka{
  1145. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1146. border: 1px solid #ebebeb;
  1147. padding: 8px 9px 0 9px;
  1148. margin: 0 3px 0 7px;
  1149. }
  1150. .mediateka--headline{
  1151. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1152. color: #3b434d;
  1153. font-size: 17px;
  1154. font-weight: bold;
  1155. margin-bottom: 17px;
  1156. }
  1157. .mediateka--slider{
  1158. margin: 0 30px 13px;
  1159. }
  1160. .mediateka--slider .slick-arrow{
  1161. width: 25px;
  1162. height: 45px;
  1163. position: absolute;
  1164. top: 50%;
  1165. margin-top: -23px;
  1166. cursor: pointer;
  1167. background-image: url(../img/slider/slidersprite.png);
  1168. }
  1169. .mediateka--slider .slick-arrow.slick-prev{
  1170. background-position: left top;
  1171. left: -27px;
  1172. }
  1173. .mediateka--slider .slick-arrow.slick-prev:hover{
  1174. background-position: left bottom;
  1175. }
  1176. .mediateka--slider .slick-arrow.slick-next{
  1177. background-position: right top;
  1178. right: -27px;
  1179. }
  1180. .mediateka--slider .slick-arrow.slick-next:hover{
  1181. background-position: right bottom;
  1182. }
  1183. .mediateka--slide{
  1184. text-align: center;
  1185. }
  1186. .mediateka--slide > div{
  1187. max-width: 200px;
  1188. margin: 0 auto;
  1189. }
  1190. .mediateka--list{
  1191. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1192. font-size: 15px;
  1193. margin-bottom: 5px;
  1194. }
  1195. .mediateka--list li{
  1196. margin-bottom: 3px;
  1197. }
  1198. .postbody{
  1199. font-size: 15px;
  1200. line-height: 24px;
  1201. color: #404040;
  1202. margin-bottom: 30px;
  1203. }
  1204. .postbody h1{
  1205. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1206. font-size: 32px;
  1207. font-weight: bold;
  1208. line-height: 30px;
  1209. margin-bottom: 12px;
  1210. }
  1211. .postbody h2{
  1212. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1213. font-size: 25px;
  1214. font-weight: bold;
  1215. }
  1216. .postbody h3{
  1217. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1218. font-size: 20px;
  1219. font-weight: bold;
  1220. }
  1221. .postbody h4{
  1222. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1223. font-size: 17px;
  1224. }
  1225. .postbody h5{
  1226. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1227. font-size: 17px;
  1228. font-weight: bold;
  1229. }
  1230. .postbody h6{
  1231. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1232. font-size: 15px;
  1233. font-weight: bold;
  1234. }
  1235. .postbody h7{
  1236. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1237. font-size: 13px;
  1238. font-weight: bold;
  1239. }
  1240. .postbody p{
  1241. margin-bottom: 24px;
  1242. }
  1243. .postbody ol{
  1244. font-size: 15px;
  1245. color: #929292;
  1246. counter-reset: li;
  1247. margin-bottom: 24px;
  1248. }
  1249. .postbody ol li{
  1250. margin-bottom: 4px;
  1251. }
  1252. .postbody ol li:before{
  1253. content: counter(li, decimal)'.';
  1254. counter-increment: li;
  1255. display: inline-block;
  1256. color: #d7d7d7;
  1257. margin-right: 4px;
  1258. }
  1259. .postbody ul{
  1260. font-size: 15px;
  1261. color: #929292;
  1262. margin-bottom: 24px;
  1263. }
  1264. .postbody ul li{
  1265. margin-bottom: 4px;
  1266. position: relative;
  1267. padding-left: 17px;
  1268. }
  1269. .postbody ul li:before{
  1270. content: '';
  1271. display: block;
  1272. width: 4px;
  1273. height: 4px;
  1274. border-radius: 50%;
  1275. background: #929292;
  1276. position: absolute;
  1277. top: 10px;
  1278. left: 5px;
  1279. }
  1280. .postbody table{
  1281. font-size: 12px;
  1282. line-height: 16px;
  1283. margin-bottom: 24px;
  1284. }
  1285. .postbody table td{
  1286. vertical-align: top;
  1287. padding: 7px 11px;
  1288. }
  1289. .postbody table thead tr td{
  1290. padding: 14px 11px;
  1291. background: #d7d7d7;
  1292. }
  1293. .postbody table tr:nth-child(even) td{
  1294. background: #ebebeb;
  1295. }
  1296. .alignright {
  1297. float:right;
  1298. margin: 20px 0 20px 20px;
  1299. }
  1300. .alignleft {
  1301. float:left;
  1302. margin: 20px 20px 20px 0;
  1303. }
  1304. .aligncenter {
  1305. display: block;
  1306. margin: 20px auto;
  1307. }
  1308. .postbody .video-wrapper {
  1309. position:relative;
  1310. padding-bottom:56.25%;
  1311. padding-top:30px;
  1312. height:0;
  1313. overflow:hidden;
  1314. margin-bottom: 24px;
  1315. }
  1316. .postbody .video-wrapper iframe,.postbody .video-wrapper object,.postbody .video-wrapper embed {
  1317. position:absolute;
  1318. top:0;
  1319. left:0;
  1320. width:100%;
  1321. height:100%;
  1322. }
  1323. .specsingle--news1--headline{
  1324. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1325. font-size: 32px;
  1326. font-weight: bold;
  1327. line-height: 30px;
  1328. margin-bottom: 12px;
  1329. color: #3b434d;
  1330. background: url(../img/icon_filter_26x26@2x.png) no-repeat 10px 9px/14px 14px;
  1331. padding-left: 30px;
  1332. }
  1333. .specialization__list{
  1334. background: #fff;
  1335. }
  1336. .specsingle--orglist{
  1337. margin-bottom: 30px;
  1338. }
  1339. .shortnews{
  1340. max-width: 230px;
  1341. margin-left: auto;
  1342. margin-right: auto;
  1343. }
  1344. .nobadge{
  1345. }
  1346. .nobadge:before{
  1347. display: none;
  1348. }
  1349. .nobadge .leftbar__title{
  1350. padding: 8px 10px 0;
  1351. background: #ebebeb;
  1352. border-radius: 10px 0 0 0;
  1353. height: 30px;
  1354. }
  1355. .nobadge .leftbar__title:before{
  1356. display: none;
  1357. }
  1358. .social--fixed{
  1359. z-index: 3;
  1360. }
  1361. .pagination__icon{
  1362. display: inline-block;
  1363. vertical-align: top;
  1364. position: relative;
  1365. top: -1px;
  1366. width: 15px;
  1367. height: 15px;
  1368. margin-right: 10px;
  1369. background: url(../img/icon_pagination.png) no-repeat;
  1370. }
  1371. .centerbar.withmap.spravochnik{
  1372. margin-top: 380px;
  1373. }
  1374. .spravochnik .pagetitle2container{
  1375. margin-bottom: 14px;
  1376. }
  1377. .spravochnik .specialization__list{
  1378. margin-top: 0;
  1379. margin-bottom: 10px;
  1380. padding-top: 6px;
  1381. }
  1382. .spravochnik .specialization__link{
  1383. padding: 4px 8px 5px;
  1384. }
  1385. .spravochnik .services__list{
  1386. margin-top: 0;
  1387. margin-bottom: 6px;
  1388. padding-top: 0;
  1389. }
  1390. .spravochnik .services__link{
  1391. padding: 4px 8px 5px;
  1392. }
  1393. .spravochnik .filterservice{
  1394. margin-bottom: 10px;
  1395. }
  1396. .spravochnik .personals__item{
  1397. margin-bottom: 10px;
  1398. }
  1399. .spravochnik .personals__description{
  1400. padding-top: 4px;
  1401. }
  1402. .spravochnik .personals__category{
  1403. padding-top: 0px;
  1404. padding-bottom: 2px;
  1405. line-height: 16px;
  1406. }
  1407. .filterspec{
  1408. background: #ebebeb;
  1409. border-radius: 10px 0 0 0;
  1410. margin-bottom: 10px;
  1411. }
  1412. .filterspec--title{
  1413. padding: 6px 7px;
  1414. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1415. font-size: 20px;
  1416. font-weight: bold;
  1417. color: #3b434d;
  1418. margin-bottom: 9px;
  1419. }
  1420. .filterspec--list{
  1421. padding: 7px 7px 5px;
  1422. }
  1423. .filterspec--form{
  1424. margin: 0 5px;
  1425. }
  1426. .filterspec--list li{
  1427. margin-bottom: 7px;
  1428. }
  1429. .filterspec--list label{
  1430. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1431. font-size: 15px;
  1432. color: #3b434d;
  1433. }
  1434. .filterspec--list li span{
  1435. display: inline-block;
  1436. vertical-align: middle;
  1437. padding-left: 5px;
  1438. }
  1439. .filterspec--list li input{
  1440. vertical-align: middle;
  1441. }
  1442. .filterspec--all{
  1443. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1444. font-size: 15px;
  1445. color: #3b434d;
  1446. padding: 0 0 13px 25px;
  1447. }
  1448. .filterspec--all a{
  1449. color: #3b434d !important;
  1450. }
  1451. .filterspec .btn{
  1452. background: #3b434d;
  1453. }
  1454. .spravochnik .filterservice__title{
  1455. padding: 2px 10px 0
  1456. }
  1457. .spravochnik .filterservice__block{
  1458. padding-top: 7px;
  1459. }
  1460. .spravochnik .filterservice__inputcase{
  1461. margin-bottom: 14px;
  1462. }
  1463. .akcia__item{
  1464. background: #fff;
  1465. border: 1px solid #ebebeb;
  1466. border-radius: 10px 0 0;
  1467. box-sizing: border-box;
  1468. display: flex;
  1469. flex-direction: column;
  1470. font-family: "cuprum";
  1471. margin: 0 auto 10px;
  1472. max-width: 237px;
  1473. position: relative;
  1474. text-align: center;
  1475. }
  1476. .akcia__head{
  1477. height: 29px;
  1478. box-sizing: border-box;
  1479. padding: 0 9px;
  1480. background: #929292;
  1481. border-radius: 10px 0 0;
  1482. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1483. font-size: 13px;
  1484. line-height: 14px;
  1485. color: #fff;
  1486. flex-direction: row;
  1487. overflow: hidden;
  1488. display: -webkit-flex;
  1489. display: -ms-flex;
  1490. display: flex;
  1491. -webkit-align-items: center;
  1492. -webkit-box-align: center;
  1493. -ms-flex-align: center;
  1494. align-items: center;
  1495. margin-bottom: 10px;
  1496. }
  1497. .akcia__item.akcia__grey .akcia__head{
  1498. background: #929292;
  1499. }
  1500. .akcia__item.akcia__orange .akcia__head{
  1501. background: #e65e26;
  1502. }
  1503. .akcia__date{
  1504. width: 50%;
  1505. text-align: left;
  1506. }
  1507. .akcia__name1{
  1508. width: 50%;
  1509. text-align: right;
  1510. }
  1511. .akcia__body{
  1512. padding: 0 12px;
  1513. }
  1514. .akcia__img{
  1515. margin-bottom: 2px;
  1516. }
  1517. .akcia__name2{
  1518. height: 72px;
  1519. overflow: hidden;
  1520. display: -webkit-flex;
  1521. display: -ms-flex;
  1522. display: flex;
  1523. -webkit-align-items: center;
  1524. -webkit-box-align: center;
  1525. -ms-flex-align: center;
  1526. align-items: center;
  1527. margin-bottom: 4px;
  1528. line-height: 18px;
  1529. color: #292929;
  1530. text-align: left;
  1531. }
  1532. .akcia__place{
  1533. border-top: 1px solid #ebebeb;
  1534. height: 38px;
  1535. overflow: hidden;
  1536. display: -webkit-flex;
  1537. display: -ms-flex;
  1538. display: flex;
  1539. -webkit-align-items: center;
  1540. -webkit-box-align: center;
  1541. -ms-flex-align: center;
  1542. align-items: center;
  1543. font-size: 14px;
  1544. line-height: 17px;
  1545. color: #004d7b;
  1546. text-align: center;
  1547. }
  1548. .akcia__adress {
  1549. -moz-box-align: center;
  1550. align-items: center;
  1551. background: #ebebeb none repeat scroll 0 0;
  1552. color: #929292;
  1553. display: flex;
  1554. font-size: 14px;
  1555. height: 39px;
  1556. line-height: 16px;
  1557. overflow: hidden;
  1558. }
  1559. .akcia__item span{
  1560. margin: auto;
  1561. }
  1562. .leftbar__item{
  1563. max-width: 220px;
  1564. }
  1565. @media screen and (max-width: 1220px) {
  1566. .wrapper{
  1567. padding: 0 15px;
  1568. box-sizing: border-box;
  1569. }
  1570. .hidden-mobile{
  1571. display: none;
  1572. }
  1573. .specsingle--leftlinks{
  1574. display: flex;
  1575. flex-direction: row;
  1576. justify-content: space-between;
  1577. margin: 0 -10px;
  1578. max-width: none !important;
  1579. }
  1580. .specsingle--leftlinks--item{
  1581. width: 50%;
  1582. margin: 0 10px 34px;
  1583. padding: 12px 0 13px;
  1584. }
  1585. .leftbar{
  1586. flex-direction:row;
  1587. }
  1588. .leftbar__item{
  1589. margin-right: 28px;
  1590. }
  1591. }
  1592. @media screen and (max-width: 960px) {
  1593. .grid-col-1{width: 100%;}
  1594. .grid-col-2{width: 100%;}
  1595. .grid-col-3{width: 100%;}
  1596. .grid-col-4{width: 100%;}
  1597. .grid-col-33{width: 100%;}
  1598. .grid-col-66{width: 100%;}
  1599. .rightbar{
  1600. display: none;
  1601. }
  1602. .orgsingle-rightbar{
  1603. display: none;
  1604. }
  1605. .col-mediateka{
  1606. display: none;
  1607. }
  1608. .orgsingle--col-1,.orgsingle--col-2,.orgsingle--col-3{
  1609. margin: 0 auto;
  1610. border: none;
  1611. }
  1612. .orgsingle--table{
  1613. display: block;
  1614. }
  1615. .orgsingle--table tr{
  1616. display: block;
  1617. }
  1618. .orgsingle--table td{
  1619. display: block;
  1620. padding: 0 !important;
  1621. margin-bottom: 11px;
  1622. }
  1623. .leftbar__item{
  1624. max-width: 240px;
  1625. margin-left: auto;
  1626. margin-right: auto;
  1627. }
  1628. .trailernews__region,.trailernews__right,.trailernews__imgcase{
  1629. display: none;
  1630. }
  1631. .trailernews__textcase{
  1632. width: 100%;
  1633. }
  1634. .trailernews__left{
  1635. width: 100%;
  1636. justify-content: space-between;
  1637. }
  1638. .trailernews__date{
  1639. order: 1;
  1640. }
  1641. .videorow--smi{
  1642. display: none;
  1643. }
  1644. }
  1645. @media screen and (max-width: 600px) {
  1646. #map1{
  1647. display: none;
  1648. }
  1649. .centerbar.withmap{
  1650. margin-top: 0;
  1651. }
  1652. .org2__item{
  1653. padding-right: 0;
  1654. }
  1655. .org2__img,.org2__link,.org2__item.recommend-badge:before{
  1656. display: none;
  1657. }
  1658. .org2__title{
  1659. height: auto;
  1660. }
  1661. .org2__desc{
  1662. height: auto;
  1663. }
  1664. .personals2__title{
  1665. border-radius: 0;
  1666. padding-left: 8px;
  1667. padding-right: 8px;
  1668. }
  1669. .personals2__name{
  1670. width: auto;
  1671. padding-left: 0;
  1672. }
  1673. .personals2__details{
  1674. padding-left: 0;
  1675. }
  1676. .personals2__photo,.personals2__description{
  1677. display: none;
  1678. }
  1679. .pagination__filter{
  1680. width: 50px;
  1681. }
  1682. .pagination__item{
  1683. width: calc(100% - 50px);
  1684. }
  1685. .pagination__icon{
  1686. margin-right: 0;
  1687. }
  1688. .pagination__btn{
  1689. display: none;
  1690. }
  1691. .pagination2__container{
  1692. padding-right: 40px;
  1693. }
  1694. .pagination2__filter{
  1695. display: none;
  1696. }
  1697. .pagination2__filter.pagination2__filtermobile{
  1698. display: block;
  1699. width: 40px;
  1700. text-align: center;
  1701. }
  1702. .specsingle--leftlinks{
  1703. flex-direction: column;
  1704. justify-content: center;
  1705. margin-left: 0;
  1706. margin-right: 0;
  1707. }
  1708. .specsingle--leftlinks--item{
  1709. width: 100%;
  1710. margin-left: 0;
  1711. margin-right: 0;
  1712. }
  1713. .alignright,.alignleft{
  1714. display: block;
  1715. float:none;
  1716. margin: 20px auto;
  1717. }
  1718. .leftbar{
  1719. flex-direction: column;
  1720. align-items:flex-start;
  1721. }
  1722. .leftbar__item{
  1723. margin-left: 0;
  1724. }
  1725. }