style.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054
  1. /*MAIN PAGE*/
  2. header{
  3. position: fixed;
  4. height: 45px;
  5. width: 100%;
  6. background: #3b434d;
  7. z-index: 99999999;
  8. }
  9. a:focus{
  10. text-decoration: none;
  11. }
  12. header .menu{
  13. position: relative;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. header .menu ul li a{
  18. height: 100%;
  19. color: #fff;
  20. font-family: Cuprum, sans-serif;
  21. font-size: 16px;
  22. }
  23. header .menu ul li a:hover{
  24. text-decoration: none;
  25. color: #5597d1;
  26. }
  27. header .menu ul{
  28. padding: 0;
  29. margin-bottom:0;
  30. height: 100%;
  31. width: 100%;
  32. list-style: none;
  33. top: 0;
  34. left: 0;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. overflow: hidden;
  39. }
  40. header .menu ul li{
  41. padding-top: 13px;
  42. margin:0 10px;
  43. height: 100%;
  44. float: left;
  45. }
  46. header .menu .circles{
  47. right: 0;
  48. position: absolute;
  49. padding-top: 5px ;
  50. }
  51. header .circles .circle{
  52. margin: 5px 2px;
  53. float: left;
  54. width: 30px;
  55. height: 30px;
  56. background:url(../images/circle-1.png);
  57. }
  58. header .circles .circle:nth-child(2){
  59. background:url(../images/circle-2.png);
  60. }
  61. header .circles .circle:nth-child(3){
  62. background:url(../images/circle-3.png);
  63. }
  64. header .burger{
  65. display: none;
  66. width: 30px;
  67. height: 30px;
  68. background: url(../images/menu-burger.png) center no-repeat;
  69. cursor: pointer;
  70. }
  71. header .menu-mobile{
  72. list-style: none;
  73. text-align: center;
  74. color: #000;
  75. background: #3b434d;
  76. }
  77. header .menu-mobile ul{
  78. list-style: none;
  79. }
  80. header .menu-mobile ul li{
  81. margin-top: 10px;
  82. }
  83. header .menu-mobile ul li a{
  84. color: #fff;
  85. font-family: Cuprum, sans-serif;
  86. font-size: 18px;
  87. }
  88. header .menu-mobile ul li a:hover{
  89. text-decoration: none;
  90. cursor: pointer;
  91. color: #5597d1;
  92. }
  93. .main-container{
  94. padding-top: 60px;
  95. }
  96. .left-side{
  97. font-family: Cuprum, sans-serif;
  98. font-weight: 400;
  99. width: 20%;
  100. }
  101. @media (min-width: 992px){
  102. .left-side{
  103. padding-right: 20px;
  104. }
  105. }
  106. @media (min-width: 768px){
  107. .left-side{
  108. padding: 0 2px;
  109. }
  110. }
  111. .left-side .info{
  112. /*padding: 0 10px;*/
  113. margin-bottom: 20px;
  114. }
  115. .left-side .logo{
  116. text-align: center;
  117. margin-bottom: 15px
  118. }
  119. .left-side .logo-subtitle{
  120. line-height: 16px;
  121. font-size: 14px;
  122. text-align: center;
  123. color:#a1a1a1;
  124. }
  125. .left-side .howtoget_button{
  126. font-size: 16px;
  127. display: block;
  128. cursor: pointer;
  129. padding: 10px 0;
  130. text-align: center;
  131. text-decoration: underline;
  132. color:#929292;
  133. background: #ebebeb;
  134. margin: 10px 0;
  135. }
  136. .left-side .contact{
  137. color:#929292;
  138. font-size: 14px;
  139. }
  140. .left-side .value{
  141. font-size: 16px;
  142. margin-bottom: 5px;
  143. }
  144. .left-side .all-phones{
  145. display: inline-block;
  146. text-decoration: underline;
  147. }
  148. .left-side .all-phones img{
  149. margin-left: 5px;
  150. }
  151. .left-side .specializations .spec-header{
  152. padding: 6px 10px;
  153. font-size: 22px;
  154. font-weight: 700;
  155. background: #929292;
  156. color: #fff;
  157. }
  158. .left-side .specializations .spec-header a{
  159. display: inline-block;
  160. float: right;
  161. }
  162. .left-side .spec{
  163. display: block;
  164. color: inherit;
  165. text-decoration: none;
  166. margin-top: 10px;
  167. min-height: 54px;
  168. background: #ebebeb;
  169. border-radius: 32px 0 0 32px;
  170. position: relative;
  171. }
  172. .left-side .spec .spec-avatar{
  173. width: 50px;
  174. height: 50px;
  175. border-radius: 50%;
  176. display: block;
  177. position: absolute;
  178. margin-left: -10px;
  179. z-index: 10;
  180. left: 12px;
  181. top: 2px;
  182. }
  183. .left-side .spec .text{
  184. margin-left: 55px;
  185. padding-top: 5px;
  186. }
  187. .left-side .spec .text .subtitle{
  188. font-size: 14px;
  189. color: #929292;
  190. }
  191. .left-side .spec .text .title{
  192. font-size: 16px;
  193. }
  194. .left-side .more{
  195. text-align: right;
  196. margin-top: 10px;
  197. }
  198. .left-side .more a{
  199. font-size: 14px;
  200. color:#929292;
  201. }
  202. .left-side .add-info{
  203. width: 100%;
  204. display: inline-block;
  205. margin-top: 40px;
  206. }
  207. .left-side .add-info .info{
  208. padding-top: 20px;
  209. height: 90px;
  210. font-size: 20px;
  211. line-height: 20px;
  212. font-weight: 700;
  213. background: #ebd0ce;
  214. text-align: center;
  215. color: #fff;
  216. }
  217. .main-title{
  218. position: relative;
  219. }
  220. .main-title .title{
  221. font-family: Cuprum;
  222. font-weight: 700;
  223. color: #004d7b;
  224. }
  225. .main-title .subtitle{
  226. font-family: Cuprum;
  227. font-weight: 700;
  228. font-size: 16px;
  229. color: #929292;
  230. margin-bottom: 20px;
  231. }
  232. .soc{
  233. position: absolute;
  234. right: 60px;
  235. top: 30px;
  236. }
  237. .soc .social{
  238. float: left;
  239. width: 25px;
  240. height: 25px;
  241. margin-right: 4px;
  242. border-radius: 50%;
  243. background: blue;
  244. display: block;
  245. }
  246. .soc .fb{
  247. background: url(../images/soc-fb.png)
  248. }
  249. .soc .vk{
  250. background: url(../images/soc-vk.png)
  251. }
  252. .soc .ok{
  253. background: url(../images/soc-ok.png)
  254. }
  255. .soc .tw{
  256. background: url(../images/soc-twitter.png)
  257. }
  258. .soc .fb:hover{
  259. background: url(../images/soc-fb-hover.png)
  260. }
  261. .soc .vk:hover{
  262. background: url(../images/soc-vk-hover.png)
  263. }
  264. .soc .ok:hover{
  265. background: url(../images/soc-ok-hover.png)
  266. }
  267. .soc .tw:hover{
  268. background: url(../images/soc-twitter-hover.png)
  269. }
  270. .main-container .col-lg-10{
  271. width: 80%;
  272. }
  273. /*.main-container .content{
  274. padding-right: 0;
  275. }*/
  276. .content-left{
  277. padding-right: 0;
  278. }
  279. .content-left .slider{
  280. position: relative;
  281. }
  282. .content-left .arrow{
  283. width: 10px;
  284. height: 16px;
  285. position: absolute;
  286. z-index: 10;
  287. top: 50%;
  288. cursor: pointer;
  289. }
  290. .content-left .arrow-left{
  291. background: url(../images/slide-arrow-left.png);
  292. left: 10px;
  293. }
  294. .content-left .arrow-right{
  295. background: url(../images/slider-arrow-right.png);
  296. right: 10px;
  297. }
  298. .content-left .swiper-slide img{
  299. display: block;
  300. }
  301. .content-left .about{
  302. display: inline-block;
  303. margin-top: 40px;
  304. }
  305. .content-left .about .block-header{
  306. padding: 6px 10px;
  307. font-size: 22px;
  308. font-weight: 700;
  309. font-family: Cuprum, sans-serif;
  310. background: #929292;
  311. color: #fff;
  312. margin-bottom: 10px;
  313. }
  314. .content-left .about .block-header img{
  315. float: right;
  316. margin-top: 3px;
  317. }
  318. .about .doctor{
  319. font-family: Cuprum, sans-serif;
  320. font-weight: 400;
  321. }
  322. .about .doctor .doctor-avatar{
  323. margin-bottom: 8px;
  324. text-align: center;
  325. }
  326. .about .doctor .doctor-name{
  327. text-align: center;
  328. font-size: 22px;
  329. color: #004d7b;
  330. line-height: 22px;
  331. margin-bottom: 4px;
  332. }
  333. .about .doctor .doctor-desc{
  334. text-align: center;
  335. color: #929292;
  336. }
  337. .about .doctor .doctor-link{
  338. padding: 9px 0;
  339. font-size: 14px;
  340. margin-top: 15px;
  341. text-align: center;
  342. background: #ebebeb;
  343. }
  344. .about .doctor .doctor-link a{
  345. color: #929292;
  346. text-decoration: underline;
  347. }
  348. .about .about-text .title{
  349. font-family: Cuprum, sans-serif;
  350. font-weight: 700;
  351. font-size: 16px;
  352. }
  353. .about .about-text .text{
  354. font-family: Open Sans, sans-serif;
  355. font-size: 16px;
  356. color: #3b434d;
  357. }
  358. .content-left .about .more-text{
  359. font-family: Open Sans, sans-serif;
  360. margin-top: 10px;
  361. }
  362. .about .more{
  363. margin-top: 10px;
  364. text-align: right;
  365. }
  366. .about .more a{
  367. font-size: 14px;
  368. color:#929292;
  369. }
  370. .content-left .clinics{
  371. margin-top: 40px;
  372. }
  373. .content-left .clinics .clinic{
  374. min-height: 75px;
  375. width: 100%;
  376. position: relative;
  377. display: inline-block;
  378. margin-bottom: 10px;
  379. border: 1px solid #ebebeb;
  380. }
  381. .content-left .clinics .block-header{
  382. padding: 6px 10px;
  383. font-size: 22px;
  384. font-weight: 700;
  385. font-family: Cuprum, sans-serif;
  386. background: #929292;
  387. color: #fff;
  388. margin-bottom: 10px;
  389. }
  390. .content-left .clinics .block-header img{
  391. float: right;
  392. margin-top: 3px;
  393. }
  394. .content-left .clinics .clinic-image{
  395. margin-right: 15px;
  396. display: block;
  397. float: left;
  398. height: 100%;
  399. }
  400. .content-left .clinics .text{
  401. /*padding-left: 115px;*/
  402. }
  403. .content-left .clinics .text .title{
  404. padding-top: 10px;
  405. font-size: 18px;
  406. line-height: 18px;
  407. font-family: Cuprum, sans-serif;
  408. }
  409. .content-left .clinics .text .subtitle{
  410. font-family: Open Sans, sans-serif;
  411. color: #a1a1a1;
  412. padding-left: 10px;
  413. }
  414. .content-left .clinics .clinic .recomended{
  415. position: absolute;
  416. left: -7px;
  417. bottom: 5px;
  418. height: 36px;
  419. width: 196px;
  420. padding-top: 6px;
  421. font-family: Cuprum, sans-serif;
  422. font-size: 16px;
  423. color: #fff;
  424. padding-left: 6px;
  425. background:url(../images/green-recomended.png) no-repeat;
  426. }
  427. .clinics .arrow-right-blue{
  428. cursor: pointer;
  429. position: absolute;
  430. background: url(../images/arrow-right-blue.png) no-repeat center;
  431. right: 0;
  432. top: 0;
  433. width: 20px;
  434. height: 75px;
  435. }
  436. .content-left .clinics .more{
  437. text-align: right;
  438. margin-top: 10px;
  439. }
  440. .content-left .clinics .more a{
  441. font-size: 14px;
  442. color:#929292;
  443. }
  444. .content-right{
  445. padding-left: 0;
  446. }
  447. /*.content*/ .importants{
  448. font-family: Open Sans, sans-serif;
  449. }
  450. .content-right .importants .important{
  451. margin-left: 10px;
  452. }
  453. /*.content*/ .importants .important{
  454. height: 90px;
  455. margin-bottom: 10px;
  456. padding:0;
  457. display: block;
  458. background: #d7d7d7;
  459. }
  460. /*.content */.importants .important:hover{
  461. text-decoration: none;
  462. background: #004d7b;
  463. }
  464. /*.content*/ .importants .important:focus{
  465. text-decoration: none;
  466. }
  467. /*.content*/ .importants .important:nth-child(1) .description{
  468. padding-top: 20px;
  469. }
  470. /*.content*/ .importants .important:nth-child(2) .description{
  471. padding-top: 15px;
  472. padding-left: 0;
  473. }
  474. /*.content*/ .importants .important:nth-child(4) .description{
  475. padding-top: 10px;
  476. }
  477. /*.content*/ .importants .important:nth-child(6) .description{
  478. padding-top: 20px;
  479. }
  480. /*.content*/ .importants .important .important-image{
  481. padding-top: 20px;
  482. margin-left: 5px;
  483. height: 100%;
  484. width: 25%;
  485. display: block;
  486. float: left;
  487. }
  488. /*.content*/ .importants .important .description{
  489. color: #fff;
  490. font-weight: 700;
  491. height: 100%;
  492. font-size: 15px;
  493. padding-left: 65px;
  494. }
  495. .content-right .today{
  496. margin-top: 25px;
  497. padding-left: 15px;
  498. display: inline-block;
  499. }
  500. .content-right .today .today-item .head{
  501. display: block;
  502. cursor: pointer;
  503. background: #929292;
  504. padding: 12px 5px;
  505. font-size: 13px;
  506. font-family: Cuprum;
  507. text-align: right;
  508. height: 40px;
  509. color: #fff;
  510. border-radius: 10px 0 0 0;
  511. }
  512. .content-right .today .today-item .head:hover{
  513. text-decoration: none;
  514. }
  515. .content-right .today .today-item .head-blue{
  516. background: #5597d1;
  517. }
  518. .content-right .today .today-item .head .date{
  519. float: left;
  520. display: block;
  521. }
  522. .content-right .today .today-item .head .name{
  523. float: right;
  524. display: block;
  525. }
  526. .content-right .today .today-item{
  527. padding-right: 0;
  528. }
  529. .content-right .today .block-header{
  530. padding: 6px 10px;
  531. font-size: 22px;
  532. font-weight: 700;
  533. font-family: Cuprum, sans-serif;
  534. background: #929292;
  535. color: #fff;
  536. margin-bottom: 10px;
  537. }
  538. .content-right .today .block-header img{
  539. float: right;
  540. margin-top: 3px;
  541. }
  542. .content-right .today .image{
  543. position: relative;
  544. margin-top: 10px;
  545. }
  546. .content-right .today .image img{
  547. display: block;
  548. width: 200px;
  549. margin: 0 auto;
  550. }
  551. .content-right .today .logo{
  552. border-radius: 50px;
  553. position: absolute;
  554. top: 0;
  555. font-family: Cuprum, sans-serif;
  556. right: 15px;
  557. width: 60px;
  558. height: 60px;
  559. }
  560. .content-right .today .logo img{
  561. border-radius: 50%;
  562. width: 60px;
  563. height: 60px;
  564. }
  565. .content-right .today .free{
  566. position: absolute;
  567. padding-top: 5px;
  568. padding-left: 7px;
  569. top: 60px;
  570. left: -5px;
  571. font-family: Cuprum, sans-serif;
  572. color: #fff;
  573. width: 200px;
  574. height: 40px;
  575. background: url(../images/free-bg.png) no-repeat;
  576. }
  577. .content-right .today .desc{
  578. margin-top:10px;
  579. margin-bottom: 10px;
  580. font-family: Cuprum, sans-serif;
  581. padding-left: 5px;
  582. font-size: 14px;
  583. }
  584. .content-right .today .org{
  585. cursor: pointer;
  586. display: block;
  587. font-family: Cuprum, sans-serif;
  588. font-weight: 600;
  589. text-align: center;
  590. border-top:1px solid #ebebeb;
  591. padding-top: 5px;
  592. color: #004d7b;
  593. }
  594. .content-right .today .org:hover{
  595. text-decoration: none;
  596. }
  597. .content-right .today .adress{
  598. margin-top: 5px;
  599. font-family: Cuprum, sans-serif;
  600. font-size: 14px;
  601. padding: 15px 0;
  602. background: #ebebeb;
  603. color: #929292;
  604. text-align: center;
  605. }
  606. .content-right .news .block-header{
  607. padding: 6px 10px;
  608. font-size: 22px;
  609. font-weight: 700;
  610. font-family: Cuprum, sans-serif;
  611. background: #929292;
  612. color: #fff;
  613. margin-bottom: 10px;
  614. }
  615. .content-right .news .block-header img{
  616. float: right;
  617. margin-top: 3px;
  618. }
  619. .content-right .news-item{
  620. height: 320px;
  621. display: block;
  622. color: inherit;
  623. cursor: pointer;
  624. padding: 0 10px;
  625. padding-right: 0;
  626. margin-bottom: 20px;
  627. }
  628. .content-right .news-item:hover{
  629. text-decoration: none;
  630. }
  631. .content-right .news-item .inner{
  632. height: inherit;
  633. background: #ebebeb;
  634. border-radius: 10px 0 0 0;
  635. overflow: hidden;
  636. }
  637. .content-right .news{
  638. display: inline-block;
  639. margin-top: 25px;
  640. padding-left: 15px;
  641. }
  642. .content-right .news .image{
  643. font-family: Cuprum, sans-serif;
  644. margin-bottom: 20px;
  645. color:#fff;
  646. height: 160px;
  647. /* width: 205px;*/
  648. margin: 0 auto;
  649. position: relative;
  650. }
  651. .content-right .news .image img{
  652. display: block;
  653. margin: 0 auto;
  654. }
  655. .content-right .news .image .title{
  656. font-size: 16px;
  657. font-weight: 400;
  658. position: absolute;
  659. bottom: 10px;
  660. display: block;
  661. color: #fff;
  662. left: 20%;
  663. }
  664. .content-right .news .desc{
  665. font-family: Open Sans, sans-serif;
  666. padding-left: 10px;
  667. font-size: 14px;
  668. line-height: 17px;
  669. }
  670. .content-right .news .data{
  671. padding: 10px 0;
  672. margin:10px;
  673. margin-top:20px;
  674. color: #929292;
  675. text-align: right;
  676. border-top: 1px solid #d4d4d4;
  677. }
  678. /*footer*/
  679. footer{
  680. position: absolute;
  681. margin-top: 40px;
  682. width: 100%;
  683. padding-top: 40px;
  684. padding-bottom: 20px;
  685. display: inline-block;
  686. background: #3b434d;
  687. }
  688. footer .list{
  689. position: relative;
  690. list-style: none;
  691. float: left;
  692. width: 20%;
  693. font-family: Cuprum, sans-serif;
  694. font-size: 16px;
  695. }
  696. footer .list a{
  697. color: #f2f2f3
  698. }
  699. footer .list li:nth-child(1){
  700. }
  701. footer .list li:nth-child(1) a{
  702. color: #75787b;
  703. font-weight: 700;
  704. font-size: 18px;
  705. }
  706. footer .admin-button{
  707. background: #ebebeb;
  708. margin-top: 25px;
  709. padding: 10px 5px;
  710. text-align: center;
  711. display: block !important;
  712. }
  713. footer .admin-button a{
  714. font-size: 14px;
  715. color: #929292;
  716. text-decoration: underline;
  717. }
  718. footer .admin-button a:hover{
  719. text-decoration: underline;
  720. }
  721. footer .copyright{
  722. float: right;
  723. height: auto;
  724. margin-top: 40px;
  725. }
  726. footer .copyright .text{
  727. color: #919293;
  728. font-family: Open Sans, sans-serif;
  729. float: left;
  730. width: 60%;
  731. text-align: right;
  732. }
  733. footer .copyright a{
  734. font-family: Open Sans, sans-serif;
  735. padding-left: 8px;
  736. text-decoration: underline;
  737. color: #9e9e9e;
  738. }
  739. footer .copyright a:hover{
  740. color: #9e9e9e;
  741. text-decoration: underline;
  742. }
  743. footer .copyright .logo{
  744. text-align: center;
  745. float: left;
  746. margin-left: 20px;
  747. }
  748. /**/
  749. @media (min-width: 1200px){
  750. .important{
  751. width: 47%;
  752. }
  753. }
  754. @media (min-width: 992px){
  755. .content-right .today .today-item{
  756. width: 50%;
  757. margin-top: 20px;
  758. }
  759. .content-right .news-item{
  760. width: 50%;
  761. }
  762. }
  763. @media (min-width: 768px){
  764. .content-right .today .today-item{
  765. float: left;
  766. width: 50%;
  767. }
  768. .content-right .news-item{
  769. float: left;
  770. width: 50%;
  771. }
  772. }
  773. @media (max-width: 992px){
  774. .left-side{
  775. width: 27% !important;
  776. }
  777. .content-a-lot{
  778. padding-right: 0;
  779. }
  780. .main-container .col-lg-10{
  781. width: 73% !important;
  782. }
  783. header .circles{
  784. position: static !important;
  785. }
  786. header .menu ul li a{
  787. font-size: 14.5px ;
  788. }
  789. }
  790. @media (max-width: 1200px){
  791. .main-title .soc{
  792. display: none;
  793. }
  794. footer .admin-button{
  795. width: 100%;
  796. }
  797. footer .list{
  798. width: 100%;
  799. padding-right: 40px;
  800. }
  801. footer .list li{
  802. display: none;
  803. }
  804. footer .list li:nth-child(1){
  805. display: block;
  806. }
  807. }
  808. @media (max-width: 1200px){
  809. .left-side{
  810. width: 20%;
  811. }
  812. .content-left{
  813. width: 100%;
  814. }
  815. .content-left .clinic{
  816. width: 100%;
  817. }
  818. .content-right{
  819. width: 100%;
  820. }
  821. .content-right .importants .important .description{
  822. padding-top: 30px !important;
  823. }
  824. .content-right .importants .important .important-image{
  825. width: 10%;
  826. }
  827. }
  828. @media (max-width: 768px){
  829. .left-side .specializations .spec{
  830. display: none;
  831. }
  832. .left-side .specializations .more{
  833. display: none;
  834. }
  835. .left-side .add-info{
  836. display: none;
  837. }
  838. .main-container .main-title{
  839. display: none;
  840. }
  841. .content .clinics{
  842. display: none;
  843. }
  844. .content-right{
  845. padding-right: 0;
  846. }
  847. .content-right .importants{
  848. display: none;
  849. }
  850. .left-side{
  851. width: 100% !important;
  852. margin-bottom: 40px;
  853. }
  854. .main-container .col-lg-10 {
  855. width: 100% !important;
  856. }
  857. .main-container .main-title{
  858. width: 100% !important;
  859. }
  860. .main-container .content-right{
  861. width: 100% !important;
  862. }
  863. .main-container .content-right .today{
  864. width: 100% !important;
  865. }
  866. .importants{
  867. width: 100% !important;
  868. }
  869. .main-container .content-left{
  870. width: 100% !important;
  871. }
  872. .main-container .content-left .clinic{
  873. width: 100% !important;
  874. }
  875. .main-container .mobile{
  876. display: block;
  877. }
  878. .left-side .title{
  879. font-size: 32px;
  880. }
  881. .left-side .main-title{
  882. padding: 0;
  883. }
  884. .left-side{
  885. padding-right: 15px;
  886. }
  887. .left-side .logo-subtitle{
  888. width: 50%;
  889. margin: 0 auto;
  890. }
  891. .left-side .specializations .spec-header a{
  892. transform: rotate(90deg);
  893. }
  894. .content-left .doctor{
  895. margin-bottom: 30px;
  896. }
  897. .content-left .about .about-text{
  898. margin-bottom: 30px;
  899. }
  900. .main-container .content-a-lot{
  901. padding-right: 0;
  902. }
  903. .content-right .today .today-item{
  904. width: 50%;
  905. float: left;
  906. }
  907. .content-right .news .news-item{
  908. width: 50%;
  909. float: left;
  910. }
  911. header .menu li{
  912. display: none;
  913. }
  914. header .menu ul .circles{
  915. display: block;
  916. position: absolute !important;
  917. }
  918. header .menu ul .burger{
  919. left: 0;
  920. }
  921. header .menu-mobile{
  922. position: absolute;
  923. width: 100%;
  924. }
  925. header .menu-mobile ul{
  926. padding: 0;
  927. }
  928. }
  929. @media(max-width: 485px){
  930. .content-right .news .news-item{
  931. width: 100%
  932. }
  933. .content-right .today .today-item{
  934. margin: 0 auto;
  935. width: 100%;
  936. margin-bottom: 10px;
  937. }
  938. }
  939. .mobile{
  940. display: none;
  941. }
  942. /*MAIN CONTENT END*/
  943. /*END MAIN PAGE*/
  944. /*CONTACTS PAGE*/
  945. .contacts-container .side-bar .logo{
  946. margin-bottom: 50px;
  947. }
  948. .contacts-container .main-title{
  949. padding-left: 40px;
  950. }
  951. .contacts-container .main-title .title{
  952. font-size: 34px;
  953. }
  954. .side-bar ul{
  955. list-style: none;
  956. padding-left: 0;
  957. }
  958. .side-bar li{
  959. padding: 7px 0;
  960. text-align: right;
  961. border-bottom: 1px solid #ebebeb;
  962. }
  963. .side-bar li:first-child{
  964. border-top: 1px solid #ebebeb;
  965. }
  966. .side-bar li a{
  967. color: #004d7b;
  968. font-family: Cuprum, sans-serif;
  969. font-weight: 600;
  970. font-size: 17px;
  971. }
  972. .side-bar li a:hover{
  973. text-decoration: none;
  974. }
  975. .contacts-container .map{
  976. margin-bottom: 50px;
  977. }
  978. .contacts-container #map{
  979. height: 345px;
  980. margin: auto;
  981. }
  982. .contacts-container .right-side-bar .info{
  983. margin-bottom: 10px;
  984. }
  985. .contacts-container .right-side-bar .soc{
  986. position: static;
  987. display: inline-block;
  988. text-align: center;
  989. /*padding: 0 10px;*/
  990. margin-top: 0;
  991. margin-bottom: 20px;
  992. }
  993. .contacts-container .center-content .work-time{
  994. margin-bottom: 40px;
  995. }
  996. .contacts-container .center-content .work-time .min-title{
  997. margin-bottom: 20px;
  998. font-family: Cuprum, sans-serif;
  999. font-size: 20px;
  1000. font-weight: 700;
  1001. }
  1002. .contacts-container .center-content .work-time .text{
  1003. font-size: 16px;
  1004. }
  1005. .contacts-container .center-content .to-doctors{
  1006. display: inline-block;
  1007. }
  1008. .contacts-container .center-content .to-doctors .min-title{
  1009. margin-bottom: 20px;
  1010. font-family: Cuprum, sans-serif;
  1011. font-size: 18px;
  1012. font-weight: 700;
  1013. }
  1014. .contacts-container .center-content .callback .min-title-text{
  1015. font-size: 16px;
  1016. font-family: Cuprum;
  1017. font-weight: 700;
  1018. }
  1019. .contacts-container .center-content .to-doctors .personal-doctor{
  1020. width: 33.33333333332%;
  1021. display: inline-block;
  1022. color: #000;
  1023. padding: 0;
  1024. padding-right: 10px;
  1025. text-decoration: none;
  1026. margin-bottom: 40px;
  1027. }
  1028. .contacts-container .center-content .to-doctors .personal-doctor .doctor-type{
  1029. font-size: 14px;
  1030. font-family: Cuprum, sans-serif;
  1031. color: #929292;
  1032. }
  1033. .contacts-container .center-content .to-doctors .personal-doctor .doctor-header{
  1034. display: inline-block;
  1035. width: 100%;
  1036. background: #ebebeb;
  1037. border-radius: 30px 0 0 30px;
  1038. }
  1039. .contacts-container .center-content .to-doctors .personal-doctor .doctor-image{
  1040. float: left;
  1041. }
  1042. .contacts-container .center-content .to-doctors .personal-doctor .doctor-name{
  1043. padding-top: 10px;
  1044. padding-left: 65px;
  1045. font-family: Cuprum, sans-serif;
  1046. color: #004d7b;
  1047. font-size: 18px;
  1048. line-height: 18px;
  1049. }
  1050. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1051. width: 13%;
  1052. float: left;
  1053. padding-top: 70px;
  1054. }
  1055. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text{
  1056. padding-top: 10px;
  1057. width: 87%;
  1058. float: left;
  1059. }
  1060. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .category{
  1061. color: #929292;
  1062. margin-bottom: 10px;
  1063. }
  1064. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .otdels{
  1065. color: #004d7b;
  1066. font-family: Open Sans, sans-serif;
  1067. }
  1068. .contacts-container .center-content .to-doctors .personal-doctor .contacts{
  1069. display: inline-block;
  1070. margin-top: 10px;
  1071. width: 100%;
  1072. background: #ebebeb;
  1073. padding-top: 10px;
  1074. padding-left: 5px;
  1075. padding-right: 5px;
  1076. }
  1077. .contacts-container .center-content .to-doctors .personal-doctor .contact{
  1078. color:#929292;
  1079. font-size: 14px;
  1080. font-family: Cuprum, sans-serif;
  1081. }
  1082. .contacts-container .center-content .to-doctors .personal-doctor .value{
  1083. font-size: 16px;
  1084. margin-bottom: 5px;
  1085. font-family: Cuprum, sans-serif;
  1086. }
  1087. .contacts-container .center-content .to-doctors .personal-doctor .value a {
  1088. font-size: 15px;
  1089. }
  1090. .contacts-container .center-content .to-doctors .personal-doctor .priem{
  1091. margin-top: 10px;
  1092. font-weight: 700;
  1093. font-size: 16px;
  1094. font-family: Cuprum, sans-serif;
  1095. }
  1096. .contacts-container .center-content .callback{
  1097. width: 100%;
  1098. display: inline-block;
  1099. }
  1100. .contacts-container .center-content .callback .min-title{
  1101. margin-bottom: 20px;
  1102. font-family: Cuprum, sans-serif;
  1103. font-size: 20px;
  1104. font-weight: 700;
  1105. }
  1106. .contacts-container .center-content .callback .min-title-text{
  1107. font-size: 19px;
  1108. margin-bottom: 30px;
  1109. }
  1110. .contacts-container .center-content .callback form p{
  1111. font-size: 12px;
  1112. color: #929292;
  1113. }
  1114. .contacts-container .center-content .callback form input{
  1115. margin-bottom: 10px;
  1116. padding-left: 5px;
  1117. font-family: Open Sans, sans-serif;
  1118. font-size: 14px;
  1119. font-weight: 400;
  1120. width: 100%;
  1121. height: 30px;
  1122. color: #929292;
  1123. background: #ebebeb;
  1124. border: none;
  1125. }
  1126. .contacts-container .center-content .callback form input[type = "checkbox"]{
  1127. width: 20px;
  1128. height: inherit;
  1129. }
  1130. .contacts-container .center-content .callback form span{
  1131. font-size: 12px;
  1132. color: #929292;
  1133. }
  1134. .contacts-container .center-content .callback form textarea{
  1135. width: 100%;
  1136. height: 110px;
  1137. padding-left: 5px;
  1138. font-family: Open Sans, sans-serif;
  1139. font-size: 14px;
  1140. color: #929292;
  1141. background: #ebebeb;
  1142. border: none;
  1143. resize: none;
  1144. }
  1145. .contacts-container .center-content .callback form .form-button{
  1146. margin-top: 10px;
  1147. cursor: pointer;
  1148. padding: 7px 0;
  1149. color: #fff;
  1150. text-align: center;
  1151. font-family: Cuprum , sans-serif;
  1152. font-weight: 700;
  1153. background: #004d7b;
  1154. border: 0;
  1155. }
  1156. .contacts-container .center-content .to-doctors .doctor-button{
  1157. display: inline-block;
  1158. width: 100%;
  1159. margin-top: 10px;
  1160. text-align: center;
  1161. text-decoration: underline;
  1162. font-family: Cuprum, sans-serif;
  1163. padding: 7px 0;
  1164. color: #929292;
  1165. background: #ebebeb;
  1166. }
  1167. .contacts-container .center-content .to-doctors .doctor-button:hover{
  1168. color: #fff;
  1169. background: #004d7b;
  1170. }
  1171. /*
  1172. .contacts-container .center-content .*/
  1173. @media (max-width: 1200px){
  1174. .contacts-container .left-side {
  1175. width: 20% !important;
  1176. }
  1177. .contacts-container .importants .important:nth-child(2) .description{
  1178. padding-left:58px;
  1179. }
  1180. }
  1181. @media (min-width: 1200px){
  1182. .contacts-container .main-title {
  1183. width: 60%;
  1184. padding-left: 40px;
  1185. }
  1186. .contacts-container .focus-content {
  1187. width: 60%;
  1188. padding-left: 40px;
  1189. }
  1190. .contacts-container .important{
  1191. width: 100%;
  1192. }
  1193. }
  1194. @media (max-width: 1200px){
  1195. .contacts-container .center-content .callback{
  1196. margin-bottom: 40px;
  1197. }
  1198. .contacts-container .left-side {
  1199. width: 100% !important;
  1200. margin-bottom: 40px;
  1201. }
  1202. .contacts-container .left-side .main-title{
  1203. float: none;
  1204. width: 100% !important;
  1205. }
  1206. .contacts-container .center-content{
  1207. width: 100%;
  1208. }
  1209. .contacts-container .center-content .to-doctors .personal-doctor{
  1210. width: 100%;
  1211. }
  1212. .contacts-container .center-content .callback form .form-button{
  1213. width: 100%;
  1214. }
  1215. .contacts-container .main-title{
  1216. padding-left: 15px;
  1217. }
  1218. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1219. width: 10%;
  1220. padding-top: 20px;
  1221. }
  1222. .contacts-container .left-side .importants .important-image{
  1223. width: 10%;
  1224. }
  1225. .contacts-container .left-side .importants .description{
  1226. padding-top: 20px !important;
  1227. }
  1228. .contacts-container .right-side-bar .info .logo{
  1229. display: none;
  1230. }
  1231. .contacts-container .main-title{
  1232. display: block;
  1233. }
  1234. .contacts-container .center-content .title{
  1235. display: none;
  1236. }
  1237. .contacts-container .center-content .subtitle{
  1238. display: none;
  1239. }
  1240. }
  1241. /*CONTACTS PAGE END*/
  1242. /*SPECIALISTS PAGE*/
  1243. .specs-container .center-content .classes{
  1244. margin-bottom: 15px;
  1245. }
  1246. .specs-container .center-content .classes a{
  1247. display: block;
  1248. color: #004d7b;
  1249. }
  1250. .specs-container .center-content .text{
  1251. font-family: Open Sans, sans-serif;
  1252. margin-bottom: 20px;
  1253. }
  1254. .specs-container .today{
  1255. width: 100%;
  1256. margin-top: 25px;
  1257. /* padding-left: 15px;
  1258. padding-right: 15px;*/
  1259. display: inline-block;
  1260. }
  1261. .specs-container .today .today-item{
  1262. padding-left: 0;
  1263. margin-bottom: 20px;
  1264. }
  1265. .specs-container .today .today-item .head{
  1266. display: block;
  1267. cursor: pointer;
  1268. background: #929292;
  1269. padding: 12px 5px;
  1270. font-size: 13px;
  1271. font-family: Cuprum;
  1272. text-align: right;
  1273. height: 40px;
  1274. color: #fff;
  1275. border-radius: 10px 0 0 0;
  1276. }
  1277. .specs-container .today .today-item .head:hover{
  1278. text-decoration: none;
  1279. }
  1280. .specs-container .today .today-item .head-blue{
  1281. background: #5597d1;
  1282. }
  1283. .specs-container .today .today-item .head .date{
  1284. float: left;
  1285. display: block;
  1286. }
  1287. .specs-container .today .today-item .head .name{
  1288. float: right;
  1289. display: block;
  1290. }
  1291. /*.contacts-container .today .today-item{
  1292. padding-right: 0;
  1293. }
  1294. */
  1295. .specs-container .today .block-header{
  1296. padding: 6px 10px;
  1297. font-size: 22px;
  1298. font-weight: 700;
  1299. font-family: Cuprum, sans-serif;
  1300. background: #929292;
  1301. color: #fff;
  1302. margin-bottom: 10px;
  1303. }
  1304. .specs-container .today .block-header img{
  1305. float: right;
  1306. margin-top: 3px;
  1307. }
  1308. .specs-container .today .image{
  1309. position: relative;
  1310. margin-top: 10px;
  1311. }
  1312. .specs-container .today .image img{
  1313. display: block;
  1314. width: 200px;
  1315. margin: 0 auto;
  1316. }
  1317. .specs-container .today .logo{
  1318. position: absolute;
  1319. top: 0;
  1320. font-family: Cuprum, sans-serif;
  1321. right: 15px;
  1322. width: 60px;
  1323. height: 60px;
  1324. }
  1325. .specs-container .today .logo img{
  1326. width: 60px;
  1327. height: 60px;
  1328. }
  1329. .specs-container .today .free{
  1330. position: absolute;
  1331. padding-top: 5px;
  1332. padding-left: 7px;
  1333. top: 60px;
  1334. left: -5px;
  1335. font-family: Cuprum, sans-serif;
  1336. color: #fff;
  1337. width: 200px;
  1338. height: 40px;
  1339. background: url(../images/free-bg.png) no-repeat;
  1340. }
  1341. .specs-container .today .desc{
  1342. margin-top:10px;
  1343. margin-bottom: 10px;
  1344. font-family: Cuprum, sans-serif;
  1345. padding-left: 5px;
  1346. font-size: 14px;
  1347. }
  1348. .specs-container .today .org{
  1349. font-family: Cuprum, sans-serif;
  1350. font-weight: 600;
  1351. text-align: center;
  1352. border-top:1px solid #ebebeb;
  1353. padding-top: 5px;
  1354. color: #004d7b;
  1355. }
  1356. .specs-container .today .adress{
  1357. margin-top: 5px;
  1358. font-family: Cuprum, sans-serif;
  1359. font-size: 14px;
  1360. padding: 15px 0;
  1361. background: #ebebeb;
  1362. color: #929292;
  1363. text-align: center;
  1364. }
  1365. .specs-container .center-content .vacancies{
  1366. margin-bottom: 40px;
  1367. }
  1368. .specs-container .center-content .vacan-table{
  1369. border-top: 1px solid #ebebeb;
  1370. }
  1371. .specs-container .center-content .vacancies .vac{
  1372. padding: 7px 10px;
  1373. }
  1374. .specs-container .center-content .vacancies .vac:nth-child(even){
  1375. background: #ebebeb;
  1376. }
  1377. .specs-container .center-content .vacancies .vacation{
  1378. float: left;
  1379. }
  1380. .specs-container .center-content .vacancies .vacation a{
  1381. color:#004d7b;
  1382. }
  1383. .specs-container .center-content .vacancies .value{
  1384. text-align: right;
  1385. }
  1386. @media (min-width: 768px){
  1387. .specs-container .today .today-item {
  1388. float: left;
  1389. width: 33.333332%;
  1390. }
  1391. }
  1392. /*SPECIALISTS PAGE END*/
  1393. /*NEWS*/
  1394. .left-side .add-info-news{
  1395. margin-top: 15px;
  1396. }
  1397. .right-side-bar .today{
  1398. width: 100% ;
  1399. margin-top: 25px;
  1400. display: inline-block;
  1401. }
  1402. .right-side-bar .today .today-item{
  1403. padding: 0 10px;
  1404. }
  1405. .right-side-bar .today .today-item .head{
  1406. display: block;
  1407. background: #929292;
  1408. padding: 12px 5px;
  1409. font-size: 13px;
  1410. font-family: Cuprum;
  1411. text-align: right;
  1412. height: 40px;
  1413. color: #fff;
  1414. border-radius: 10px 0 0 0;
  1415. }
  1416. .right-side-bar .today .today-item .head-blue{
  1417. background: #5597d1;
  1418. }
  1419. .right-side-bar .today .today-item .head .date{
  1420. float: left;
  1421. display: block;
  1422. }
  1423. .right-side-bar .today .today-item .head .name{
  1424. float: right;
  1425. display: block;
  1426. }
  1427. .right-side-bar .today .today-item{
  1428. margin-bottom: 15px;
  1429. }
  1430. .right-side-bar .today .block-header{
  1431. padding: 6px 10px;
  1432. font-size: 22px;
  1433. font-weight: 700;
  1434. font-family: Cuprum, sans-serif;
  1435. background: #929292;
  1436. color: #fff;
  1437. margin-bottom: 10px;
  1438. }
  1439. .right-side-bar .today .block-header img{
  1440. float: right;
  1441. margin-top: 3px;
  1442. }
  1443. .right-side-bar .today .image{
  1444. position: relative;
  1445. margin-top: 10px;
  1446. }
  1447. .right-side-bar .today .image img{
  1448. display: block;
  1449. width: 200px;
  1450. margin: 0 auto;
  1451. }
  1452. .right-side-bar .today .logo{
  1453. position: absolute;
  1454. top: 0;
  1455. font-family: Cuprum, sans-serif;
  1456. right: 15px;
  1457. width: 60px;
  1458. height: 60px;
  1459. }
  1460. .right-side-bar .today .logo img{
  1461. width: 60px;
  1462. height: 60px;
  1463. }
  1464. .right-side-bar .today .free{
  1465. position: absolute;
  1466. padding-top: 5px;
  1467. padding-left: 7px;
  1468. top: 60px;
  1469. left: -5px;
  1470. font-family: Cuprum, sans-serif;
  1471. color: #fff;
  1472. width: 200px;
  1473. height: 40px;
  1474. background: url(../images/free-bg.png) no-repeat;
  1475. }
  1476. .right-side-bar .today .desc{
  1477. margin-top:10px;
  1478. margin-bottom: 10px;
  1479. font-family: Cuprum, sans-serif;
  1480. padding-left: 5px;
  1481. font-size: 14px;
  1482. }
  1483. .right-side-bar .today .org{
  1484. cursor: pointer;
  1485. text-decoration: none;
  1486. display: block;
  1487. font-family: Cuprum, sans-serif;
  1488. font-weight: 600;
  1489. text-align: center;
  1490. border-top:1px solid #ebebeb;
  1491. padding-top: 5px;
  1492. color: #004d7b;
  1493. }
  1494. .right-side-bar .today .adress{
  1495. margin-top: 5px;
  1496. font-family: Cuprum, sans-serif;
  1497. font-size: 14px;
  1498. padding: 15px 0;
  1499. background: #ebebeb;
  1500. color: #929292;
  1501. text-align: center;
  1502. }
  1503. .contacts-container .center-content .news .block-header{
  1504. padding: 6px 10px;
  1505. font-size: 22px;
  1506. font-weight: 700;
  1507. font-family: Cuprum, sans-serif;
  1508. background: #929292;
  1509. color: #fff;
  1510. margin-bottom: 10px;
  1511. }
  1512. .contacts-container .center-content .news .block-header img{
  1513. float: right;
  1514. margin-top: 3px;
  1515. }
  1516. .contacts-container .center-content .news-item{
  1517. display: block;
  1518. color: inherit;
  1519. cursor: pointer;
  1520. text-decoration: none;
  1521. height: 320px;
  1522. padding: 0 10px;
  1523. padding-right: 0;
  1524. margin-bottom: 20px;
  1525. }
  1526. .contacts-container .center-content .news-item .inner{
  1527. height: inherit;
  1528. background: #ebebeb;
  1529. border-radius: 10px 0 0 0;
  1530. overflow: hidden;
  1531. }
  1532. .contacts-container .center-content .news{
  1533. display: inline-block;
  1534. margin-top: 25px;
  1535. padding-left: 0px;
  1536. }
  1537. .contacts-container .center-content .news .image{
  1538. font-family: Cuprum, sans-serif;
  1539. margin-bottom: 20px;
  1540. color:#fff;
  1541. height: 160px;
  1542. /* width: 205px;*/
  1543. margin: 0 auto;
  1544. position: relative;
  1545. }
  1546. .contacts-container .center-content .news .image img{
  1547. display: block;
  1548. margin: 0 auto;
  1549. }
  1550. .contacts-container .center-content .news .image .title{
  1551. font-size: 16px;
  1552. font-weight: 400;
  1553. position: absolute;
  1554. bottom: 10px;
  1555. display: block;
  1556. color: #fff;
  1557. left: 20%;
  1558. }
  1559. .contacts-container .center-content .news .desc{
  1560. font-family: Open Sans, sans-serif;
  1561. padding-left: 10px;
  1562. font-size: 14px;
  1563. line-height: 17px;
  1564. }
  1565. .contacts-container .center-content .news .data{
  1566. padding: 10px 0;
  1567. margin:10px;
  1568. margin-top:20px;
  1569. color: #929292;
  1570. text-align: right;
  1571. border-top: 1px solid #d4d4d4;
  1572. }
  1573. .center-content .pagination-container{
  1574. /*background: #ebebeb;*/
  1575. padding-left: 10px;
  1576. }
  1577. .center-content .pagination{
  1578. font-family: Open Sans, sans-serif;
  1579. font-weight: 500;
  1580. width: 100%;
  1581. height: 40px;
  1582. background: #ebebeb;
  1583. }
  1584. .center-content .pagination .number{
  1585. cursor: pointer;
  1586. padding-top: 10px;
  1587. /*margin: 0 10px;*/
  1588. }
  1589. .center-content .pagination .number:hover{
  1590. color:#e77140;
  1591. }
  1592. .center-content .pagination .active{
  1593. color: #e77140;
  1594. border-bottom:2px solid #e55e26;
  1595. }
  1596. .center-content .pagination .arrow-left{
  1597. background: url(../images/pagination-left.png) no-repeat center;
  1598. cursor: pointer;
  1599. }
  1600. .center-content .pagination .arrow-right{
  1601. background: url(../images/pagination-right.png) no-repeat center;
  1602. cursor: pointer;
  1603. }
  1604. .center-content .pagination div{
  1605. height: 40px;
  1606. float: left;
  1607. width: 7.14%;
  1608. text-align: center;
  1609. }
  1610. @media(max-width: 1200px){
  1611. .right-side-bar .today .today-item{
  1612. width: 33.33333%;
  1613. float: left;
  1614. }
  1615. .left-side .news-importants{
  1616. display: none;
  1617. }
  1618. }
  1619. @media(min-width: 992px){
  1620. .left-side .new-importants{
  1621. display: none;
  1622. }
  1623. }
  1624. @media(max-width: 768px){
  1625. .right-side-bar .today .today-item{
  1626. width: 100%;
  1627. float: left;
  1628. }
  1629. .right-side-bar .today{
  1630. display: none;
  1631. }
  1632. .center-content .pagination{
  1633. display: none;
  1634. }
  1635. .left-side .add-info {
  1636. display: block;
  1637. }
  1638. }
  1639. @media(max-width: 550px){
  1640. .center-content .news{
  1641. padding-left: 0;
  1642. }
  1643. .center-content .news .news-item{
  1644. padding-left: 0;
  1645. width: 93%;
  1646. float: none;
  1647. margin: 0 auto;
  1648. margin-bottom: 20px;
  1649. }
  1650. .center-content .news .news-item .image{
  1651. padding-left: 0;
  1652. width:100%;
  1653. margin: 0 auto;
  1654. }
  1655. .center-content .news .news-item .image img{
  1656. margin: 0 auto;
  1657. }
  1658. }
  1659. /*NEWS END*/
  1660. /*ABOUT*/
  1661. /*.center-content .about{
  1662. display: inline-block;
  1663. }*/
  1664. .center-content .about .doctor{
  1665. padding-left: 0;
  1666. }
  1667. .center-content .about .about-text .title{
  1668. font-family: Cuprum, sans-serif;
  1669. font-weight: 700;
  1670. font-size: 24px;
  1671. }
  1672. .center-content .about-main-text{
  1673. display: inline-block;
  1674. margin-top: 20px;
  1675. font-size: 16px;
  1676. }
  1677. .center-content .about-main-text .image{
  1678. text-align: center;
  1679. float: right;
  1680. margin-top: 20px;
  1681. margin-left: 20px;
  1682. margin-bottom: 20px;
  1683. }
  1684. .center-content .youtube{
  1685. width: 100%;
  1686. margin-top: 20px;
  1687. text-align: center;
  1688. }
  1689. .center-content .to-doctors-about{
  1690. padding-left: 0;
  1691. margin-bottom: 0 !important;
  1692. margin-top: 40px;
  1693. }
  1694. .center-content .to-doctors-about .personal-doctor .doctor-name span{
  1695. display: block;
  1696. float: left;
  1697. }
  1698. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1699. font-size: 14px;
  1700. float: right;
  1701. padding-right: 20px;
  1702. }
  1703. .center-content .to-doctors-about .personal-doctor{
  1704. width: 100% !important;
  1705. border-bottom: 1px solid #ebebeb;
  1706. }
  1707. .center-content .to-doctors-about .doctor-header{
  1708. height: 40px;
  1709. border-radius: 70px 0 0 30px;
  1710. }
  1711. .center-content .to-doctors-about .personal-doctor .image{
  1712. padding-top: 30px !important;
  1713. }
  1714. .center-content .equip{
  1715. margin-bottom: 40px;
  1716. }
  1717. .center-content .media{
  1718. margin-bottom: 40px;
  1719. overflow: visible;
  1720. position: relative;
  1721. padding-top: 30px;
  1722. border-top: 1px solid #ebebeb;
  1723. }
  1724. .center-content .media .swiper-button-next{
  1725. background: url(../images/media-arrow-right.png) no-repeat center;
  1726. top: 60%;
  1727. right: -25px;
  1728. }
  1729. .center-content .media .swiper-button-prev{
  1730. background: url(../images/media-arrow-left.png) no-repeat center;
  1731. top: 60%;
  1732. left: -30px;
  1733. }
  1734. .center-content .media .swiper-container {
  1735. width: inherit;
  1736. height: 140px;
  1737. margin: 20px auto;
  1738. }
  1739. .center-content .media .swiper-container iframe{
  1740. width: 100%;
  1741. height: 100%;
  1742. }
  1743. .center-content .media .swiper-slide {
  1744. width: 30% !important;
  1745. text-align: center;
  1746. font-size: 18px;
  1747. background: #fff;
  1748. /* Center slide text vertically */
  1749. display: -webkit-box;
  1750. display: -ms-flexbox;
  1751. display: -webkit-flex;
  1752. display: flex;
  1753. -webkit-box-pack: center;
  1754. -ms-flex-pack: center;
  1755. -webkit-justify-content: center;
  1756. justify-content: center;
  1757. -webkit-box-align: center;
  1758. -ms-flex-align: center;
  1759. -webkit-align-items: center;
  1760. align-items: center;
  1761. }
  1762. .center-content .media-text{
  1763. line-height: 20px;
  1764. font-size: 15px;
  1765. }
  1766. .center-content .pagination .show-all{
  1767. text-align: center;
  1768. padding-top: 10px;
  1769. font-size: 13px;
  1770. display:inline-block;
  1771. color: #fff;
  1772. background: #3b434d;
  1773. width: 20%;
  1774. height: 100%;
  1775. float: right;
  1776. }
  1777. .center-content .pagination .show-all:hover{
  1778. text-decoration: none;
  1779. background: #e65e26;
  1780. }
  1781. .center-content .pagination .show-all:focus{
  1782. text-decoration: none;
  1783. }
  1784. .center-content .documents{
  1785. font-family: Open Sans, sans-serif;
  1786. color: #3b434d;
  1787. background: #ebebeb;
  1788. }
  1789. .center-content .documents .row{
  1790. margin-right: 0;
  1791. margin-left: 0;
  1792. }
  1793. .center-content .documents .doc-item{
  1794. width: 20%;
  1795. float: left;
  1796. padding: 5px;
  1797. }
  1798. .center-content .documents .year{
  1799. width: 8%;
  1800. }
  1801. .center-content .documents .doc-name{
  1802. color: #004d7b;
  1803. width: 22%;
  1804. }
  1805. .center-content .documents .doc-data{
  1806. width: 14%;
  1807. }
  1808. .center-content .documents .doc-desc{
  1809. width: 25%;
  1810. }
  1811. .center-content .documents .doc-org{
  1812. width: 25%;
  1813. }
  1814. @media (max-width: 1200px){
  1815. .center-content .about{
  1816. margin-bottom: 20px;
  1817. }
  1818. .center-content .about .doctor{
  1819. margin-bottom: 20px;
  1820. }
  1821. .center-content .about .about-text .title{
  1822. display: block;
  1823. }
  1824. }
  1825. @media (max-width: 768px){
  1826. .center-content .documents .doc-item{
  1827. width: 100%;
  1828. float: none;
  1829. padding: 5px;
  1830. }
  1831. .center-content .documents .row{
  1832. margin: 20px 0;
  1833. }
  1834. .center-content .about-main-text .image{
  1835. display: none;
  1836. }
  1837. .center-content .about .youtube iframe{
  1838. width: 100%;
  1839. }
  1840. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1841. display: none;
  1842. }
  1843. .center-content .to-doctors-about .personal-doctor .doctor-image{
  1844. display: none;
  1845. }
  1846. .center-content .to-doctors .personal-doctor .doctor-header{
  1847. border-radius: 0 !important;
  1848. }
  1849. .center-content .to-doctors .personal-doctor .doctor-header .doctor-name{
  1850. padding-left: 15px !important;
  1851. }
  1852. }
  1853. @media (max-width: 768px){
  1854. .smi{
  1855. display: none;
  1856. }
  1857. }
  1858. /*ABOUT END*/
  1859. /*SERVICES*/
  1860. .service-text{
  1861. font-family: Open Sans, sans-serif;
  1862. }
  1863. .service-title{
  1864. font-family: Cuprum ,sans-serif;
  1865. font-weight: 600;
  1866. font-size: 26px;
  1867. margin: 30px 0;
  1868. }
  1869. .service-item{
  1870. font-family: Open Sans, sans-serif;
  1871. color :#404040;
  1872. border-top: 1px solid #ebebeb;
  1873. border-bottom: 1px solid #ebebeb;
  1874. width: 100%;
  1875. display: inline-block;
  1876. }
  1877. .service-row{
  1878. display: inline-block;
  1879. width: 100%;
  1880. padding: 4px 5px;
  1881. }
  1882. .service-row:nth-child(even){
  1883. background: #ebebeb;
  1884. }
  1885. .service-item .service-unit{
  1886. width: 11%;
  1887. float: left;
  1888. }
  1889. .service-item .service-unit:nth-child(1){
  1890. width: 9%;
  1891. }
  1892. .service-item .service-unit:nth-child(2){
  1893. width: 50%;
  1894. }
  1895. .service-item .service-unit:nth-child(3){
  1896. width:11%;
  1897. }
  1898. .service-item .service-unit:nth-child(4){
  1899. width: 9%;
  1900. text-align: center;
  1901. }
  1902. .service-item .service-unit:nth-child(5){
  1903. width: 9%;
  1904. text-align: center;
  1905. }
  1906. .service-more{
  1907. display: none;
  1908. text-align: right;
  1909. margin-top: 10px;
  1910. }
  1911. .service-more a{
  1912. font-size: 14px;
  1913. color:#929292;
  1914. }
  1915. .service-more:last-child{
  1916. margin-bottom: 60px;
  1917. }
  1918. @media(max-width: 768px){
  1919. .service-more{
  1920. display: block;
  1921. }
  1922. .service-item .service-unit{
  1923. text-align: left !important;
  1924. width: 100% !important;
  1925. float: none;
  1926. padding: 5px;
  1927. }
  1928. .service-row{
  1929. margin: 20px 0;
  1930. }
  1931. .service-item .service-unit:nth-child(1){
  1932. display: none;
  1933. }
  1934. }
  1935. /*SERVICES END*/
  1936. /*TODAY*/
  1937. .today-page{
  1938. width: 100%;
  1939. margin-top: 25px;
  1940. padding-left: 0px;
  1941. display: inline-block;
  1942. }
  1943. .today-page .today-item .head{
  1944. background: #929292;
  1945. padding: 12px 5px;
  1946. font-size: 13px;
  1947. font-family: Cuprum;
  1948. text-align: right;
  1949. height: 40px;
  1950. color: #fff;
  1951. border-radius: 10px 0 0 0;
  1952. }
  1953. .today-page .today-item .head-blue{
  1954. background: #5597d1;
  1955. }
  1956. .today-page .today-item .head .date{
  1957. float: left;
  1958. display: block;
  1959. }
  1960. .today-page .today-item .head .name{
  1961. float: right;
  1962. display: block;
  1963. }
  1964. .today-page .today-item{
  1965. padding-right: 0;
  1966. margin-bottom: 20px;
  1967. }
  1968. .today-page .image{
  1969. position: relative;
  1970. margin-top: 10px;
  1971. }
  1972. .today-page .image img{
  1973. display: block;
  1974. width: 200px;
  1975. margin: 0 auto;
  1976. }
  1977. .today-page .logo{
  1978. position: absolute;
  1979. top: 0;
  1980. font-family: Cuprum, sans-serif;
  1981. right: 15px;
  1982. width: 60px;
  1983. height: 60px;
  1984. }
  1985. .today-page .logo img{
  1986. width: 60px;
  1987. height: 60px;
  1988. }
  1989. .today-page .free{
  1990. position: absolute;
  1991. padding-top: 5px;
  1992. padding-left: 7px;
  1993. top: 60px;
  1994. left: -5px;
  1995. font-family: Cuprum, sans-serif;
  1996. color: #fff;
  1997. width: 200px;
  1998. height: 40px;
  1999. background: url(../images/free-bg.png) no-repeat;
  2000. }
  2001. .today-page .desc{
  2002. margin-top:10px;
  2003. margin-bottom: 10px;
  2004. font-family: Cuprum, sans-serif;
  2005. padding-left: 5px;
  2006. font-size: 14px;
  2007. }
  2008. .today-page .org{
  2009. font-family: Cuprum, sans-serif;
  2010. font-weight: 600;
  2011. text-align: center;
  2012. border-top:1px solid #ebebeb;
  2013. padding-top: 5px;
  2014. color: #004d7b;
  2015. }
  2016. .today-page .adress{
  2017. margin-top: 5px;
  2018. font-family: Cuprum, sans-serif;
  2019. font-size: 14px;
  2020. padding: 15px 0;
  2021. background: #ebebeb;
  2022. color: #929292;
  2023. text-align: center;
  2024. }
  2025. .pagination-mobile{
  2026. display: none;
  2027. }
  2028. @media (max-width: 768px){
  2029. .center-content .pagination-mobile{
  2030. display: block;
  2031. }
  2032. .center-content .pagination-mobile .pagination div{
  2033. width: 16.66666%;
  2034. }
  2035. }
  2036. /*TODAY END*/
  2037. /*PATIENT*/
  2038. .min-title{
  2039. margin-bottom: 20px;
  2040. font-family: Cuprum, sans-serif;
  2041. font-size: 20px;
  2042. font-weight: 700;
  2043. }
  2044. .patients-text{
  2045. font-family: Open Sans, sans-serif;
  2046. line-height: 22px;
  2047. margin-bottom: 20px;
  2048. }
  2049. /*PATIENT END*/
  2050. /*VACANCIES*/
  2051. .vacancy .vacancy-header{
  2052. font-family: Cuprum;
  2053. display: inline-block;
  2054. padding: 5px 12px;
  2055. margin-bottom: 10px;
  2056. background: #d7d7d7;
  2057. width: 100%;
  2058. }
  2059. .vacancy-wrap {
  2060. display: inline-block;
  2061. margin-bottom: 15px;
  2062. }
  2063. .vacancy .vacancy-header .name{
  2064. display: inline-block;
  2065. font-family: Cuprum;
  2066. font-weight: bold;
  2067. width: 60%;
  2068. float: left;
  2069. font-size: 18px;
  2070. }
  2071. .vacancy .vacancy-header .date{
  2072. padding-top: 5px;
  2073. height: 20px;
  2074. width: 40%;
  2075. font-size: 13px;
  2076. color: #929292;
  2077. text-align: right;
  2078. float: left;
  2079. }
  2080. .vacancy .vacancy-data{
  2081. margin-bottom: 15px;
  2082. padding-left: 0;
  2083. }
  2084. .vacancy-data .org .text{
  2085. font-size: 14px;
  2086. font-family: Cuprum;
  2087. color: #929292;
  2088. }
  2089. .vacancy-data .org .org-name{
  2090. font-size: 18px;
  2091. font-family: Cuprum;
  2092. font-weight: 400;
  2093. color: #004d7b;
  2094. margin-bottom: 15px;
  2095. }
  2096. .vacancy .vacancy-table{
  2097. display: inline-block;
  2098. border-top:1px solid #ebebeb;
  2099. border-bottom:1px solid #ebebeb;
  2100. }
  2101. .vacancy .vacancy-table .vacancy-row{
  2102. width: 100%;
  2103. display:inline-block;
  2104. padding: 5px 10px;
  2105. }
  2106. .vacancy .vacancy-table .vacancy-row:nth-child(even){
  2107. background: #ebebeb;
  2108. }
  2109. .vacancy .vacancy-table .vacancy-row .name{
  2110. width: 70%;
  2111. float: left;
  2112. }
  2113. .vacancy .vacancy-table .vacancy-row .data{
  2114. width: 30%;
  2115. float: left;
  2116. text-align: left;
  2117. }
  2118. .vacancy .contact{
  2119. font-family: Cuprum;
  2120. color:#929292;
  2121. font-size: 14px;
  2122. }
  2123. .vacancy .contacts .otd a{
  2124. font-size: 17px;
  2125. color: #115984;
  2126. }
  2127. .vacancy .value{
  2128. font-size: 16px;
  2129. margin-bottom: 5px;
  2130. }
  2131. .vacancy .vacancy-contacts{
  2132. padding-left: 0;
  2133. }
  2134. .vacancy .contacts .value{
  2135. color: #004d7b;
  2136. font-size: 16px;
  2137. font-family: Cuprum;
  2138. }
  2139. @media(max-width: 420px){
  2140. .vacancy .vacancy-data .vacancy-table .vacancy-row div{
  2141. width: 100%;
  2142. float: none;
  2143. }
  2144. }
  2145. .mini-title-2{
  2146. font-family: Cuprum;
  2147. font-weight: 600;
  2148. font-size: 18px;
  2149. margin-bottom: 10px;
  2150. }
  2151. .vacancy-text{
  2152. font-family: Open Sans;
  2153. margin-bottom: 40px;
  2154. }
  2155. /*VACANCIES END*/
  2156. /*UNITS*/
  2157. .content-left .unit-clinics{
  2158. margin-top: 0;
  2159. }
  2160. .soc .contact {
  2161. font-family: Cuprum;
  2162. color: #929292;
  2163. font-size: 14px;
  2164. }
  2165. .soc .value {
  2166. font-family: Cuprum;
  2167. font-size: 16px;
  2168. margin-bottom: 5px;
  2169. }
  2170. .under-title .soc{
  2171. position: static;
  2172. display: inline-block;
  2173. text-align: center;
  2174. padding: 0 10px;
  2175. margin-top: 0;
  2176. margin-bottom: 20px;
  2177. }
  2178. .content .more{
  2179. margin-bottom: 10px;
  2180. }
  2181. .container .content .unit-clinics{
  2182. display: block;
  2183. }
  2184. .container .importants-unit{
  2185. display: block;
  2186. }
  2187. @media(max-width: 700px){
  2188. .content .unit-clinics .clinic {
  2189. padding-left: 15px;
  2190. }
  2191. .content .unit-clinics .clinic .title{
  2192. margin-bottom: 10px;
  2193. }
  2194. .content .unit-clinics .clinic .subtitle{
  2195. padding-left: 0;
  2196. }
  2197. .content .unit-clinics .clinic .clinic-image{
  2198. display: none;
  2199. }
  2200. }
  2201. @media(max-width: 400px){
  2202. .container .importants-unit .important .description{
  2203. font-size: 14px;
  2204. }
  2205. .container .importants-unit .important:nth-child(5) .description{
  2206. padding-top: 15px !important;
  2207. }
  2208. .container .importants-unit .important:nth-child(3) .description{
  2209. padding-top: 15px !important;
  2210. }
  2211. .container .importants-unit .important:nth-child(2) .description{
  2212. padding-left: 55px !important;
  2213. }
  2214. }
  2215. /*UNITS END*/
  2216. /*CONTROLS-ORG-PAGE*/
  2217. .control-org{
  2218. width: 100%;
  2219. margin-bottom: 40px;
  2220. display: inline-block;
  2221. border: 1px solid #ebebeb;
  2222. }
  2223. .control-org .col-lg-4{
  2224. height: 100%;
  2225. padding-right: 0;
  2226. }
  2227. .control-org .col-md-3:first-child{
  2228. padding-left: 0;
  2229. }
  2230. .control-org .col-md-4:last-child{
  2231. padding-right: 15px;
  2232. }
  2233. .control-org .col-md-4:last-child .subtext{
  2234. text-align: center;
  2235. }
  2236. .control-org .control-org-header{
  2237. display: block;
  2238. width: 100%;
  2239. color: #000;
  2240. margin-bottom: 10px;
  2241. text-decoration: none;
  2242. cursor: pointer;
  2243. font-size: 18px;
  2244. font-weight: 600;
  2245. padding: 5px 10px;
  2246. font-family: Cuprum;
  2247. background: #ebebeb;
  2248. }
  2249. .control-org .control-org-header:hover{
  2250. background: #004d7b;
  2251. color: #fff;
  2252. }
  2253. .control-org .image{
  2254. text-align: center;
  2255. margin-bottom: 10px;
  2256. }
  2257. .control-org .value{
  2258. font-family: Cuprum, sans-serif;
  2259. margin-bottom: 5px;
  2260. font-size: 15px;
  2261. }
  2262. .control-org .work-time .mini-title{
  2263. font-size: 14px;
  2264. font-family: Cuprum;
  2265. color: #929292;
  2266. }
  2267. .control-org .work-time .text{
  2268. margin-top: 2px;
  2269. font-size: 18px ;
  2270. font-family: Cuprum;
  2271. font-weight: bold;
  2272. }
  2273. .control-org .subtext{
  2274. font-size: 14px;
  2275. font-family: Cuprum;
  2276. color: #929292;
  2277. line-height: 16px;
  2278. }
  2279. .control-org .howtoget_button{
  2280. font-family: Cuprum, sans-serif;
  2281. font-size: 16px;
  2282. display: block;
  2283. cursor: pointer;
  2284. padding: 10px 0;
  2285. text-align: center;
  2286. text-decoration: underline;
  2287. color:#929292;
  2288. background: #ebebeb;
  2289. margin: 10px 0;
  2290. }
  2291. .control-org .phone{
  2292. font-family: Cuprum, sans-serif;
  2293. font-weight: 600;
  2294. font-size: 22px;
  2295. padding: 7px 0;
  2296. color: #004d7b;
  2297. text-align:center;
  2298. }
  2299. @media(max-width: 991px){
  2300. .control-org .image{
  2301. text-align: center;
  2302. }
  2303. .control-org .col-lg-4{
  2304. padding-right: 15px;
  2305. }
  2306. }
  2307. /*CONTROLS-ORG-PAGE END*/
  2308. /*UNIT*/
  2309. .control-org-unit{
  2310. border: none;
  2311. margin-bottom: 0;
  2312. }
  2313. .control-org-unit .subtext{
  2314. text-align: center;
  2315. }
  2316. .control-org-unit .all-phones{
  2317. font-family: Cuprum;
  2318. margin-bottom: 5px;
  2319. color:#929292;
  2320. display: inline-block;
  2321. text-decoration: underline;
  2322. }
  2323. .control-org-unit .all-phones img{
  2324. margin-left: 5px;
  2325. }
  2326. .control-org-unit .contact{
  2327. font-family: Cuprum;
  2328. color: #929292;
  2329. }
  2330. .control-org-unit .col-md-4:last-child{
  2331. padding-right: 0;
  2332. }
  2333. .control-org-unit .personal-doctor{
  2334. width: 100%;
  2335. display: inline-block;
  2336. color: #000;
  2337. padding: 0;
  2338. padding-right: 0;
  2339. text-decoration: none;
  2340. margin-bottom: 40px;
  2341. }
  2342. .control-org-unit .personal-doctor .doctor-type{
  2343. font-size: 14px;
  2344. font-family: Cuprum, sans-serif;
  2345. color: #929292;
  2346. }
  2347. .control-org-unit .personal-doctor .doctor-header{
  2348. display: inline-block;
  2349. width: 100%;
  2350. background: #ebebeb;
  2351. border-radius: 30px 0 0 30px;
  2352. }
  2353. .control-org-unit .personal-doctor .doctor-image{
  2354. float: left;
  2355. }
  2356. .control-org-unit .personal-doctor .doctor-name{
  2357. padding-top: 10px;
  2358. padding-left: 65px;
  2359. font-family: Cuprum, sans-serif;
  2360. color: #004d7b;
  2361. font-size: 18px;
  2362. line-height: 18px;
  2363. }
  2364. .control-org-unit .personal-doctor .doctor-category .image{
  2365. width: 13%;
  2366. float: left;
  2367. padding-top: 70px;
  2368. }
  2369. .control-org-unit .personal-doctor .doctor-category .text{
  2370. padding-top: 10px;
  2371. width: 87%;
  2372. float: left;
  2373. }
  2374. .control-org-unit .personal-doctor .doctor-category .text .category{
  2375. color: #929292;
  2376. margin-bottom: 10px;
  2377. }
  2378. .control-org-unit .personal-doctor .doctor-category .text .otdels{
  2379. color: #004d7b;
  2380. font-family: Open Sans, sans-serif;
  2381. }
  2382. .control-org-unit .personal-doctor .contacts{
  2383. display: inline-block;
  2384. margin-top: 10px;
  2385. width: 100%;
  2386. background: #ebebeb;
  2387. padding-top: 10px;
  2388. padding-left: 5px;
  2389. padding-right: 5px;
  2390. }
  2391. .control-org-unit .personal-doctor .contact{
  2392. color:#929292;
  2393. font-size: 14px;
  2394. font-family: Cuprum, sans-serif;
  2395. }
  2396. .control-org-unit .personal-doctor .value{
  2397. font-size: 16px;
  2398. margin-bottom: 5px;
  2399. font-family: Cuprum, sans-serif;
  2400. }
  2401. .control-org-unit .personal-doctor .value a {
  2402. font-size: 15px;
  2403. }
  2404. .control-org-unit .personal-doctor .priem{
  2405. margin-top: 10px;
  2406. font-weight: 700;
  2407. font-size: 16px;
  2408. font-family: Cuprum, sans-serif;
  2409. }
  2410. .center-content .more{
  2411. text-align: right;
  2412. margin-top: 10px;
  2413. }
  2414. .center-content .more a{
  2415. font-family: Cuprum;
  2416. font-size: 14px;
  2417. color:#929292;
  2418. }
  2419. .center-content .youtube-unit{
  2420. display: none;
  2421. }
  2422. .control-org-unit .soc{
  2423. margin-top:40px;
  2424. position: static;
  2425. }
  2426. .documents-unit{
  2427. margin-bottom: 30px;
  2428. }
  2429. @media(max-width: 1200px){
  2430. .content .today-unit{
  2431. display: none;
  2432. }
  2433. .control-org-unit .youtube-unit{
  2434. display: block;
  2435. }
  2436. .mobile-invisible-doctors{
  2437. display: none;
  2438. }
  2439. }
  2440. /*UNIT END*/
  2441. /*FAQ*/
  2442. .qa{
  2443. padding:10px 10px;
  2444. width: 100%;
  2445. margin-bottom: 20px;
  2446. font-family: Cuprum, sans-serif;
  2447. }
  2448. .qa .name{
  2449. font-size: 16px;
  2450. font-weight: 600;
  2451. width: 50%;
  2452. float: left;
  2453. }
  2454. .qa .date{
  2455. font-size: 16px;
  2456. text-align: right;
  2457. width: 50%;
  2458. color:#929292;
  2459. float: left;
  2460. }
  2461. .qa .text{
  2462. margin-top: 25px;
  2463. font-family: Open Sans;
  2464. }
  2465. .question{
  2466. background: #d7d7d7;
  2467. }
  2468. .answer {
  2469. margin-left: 2%;
  2470. width: 98%;
  2471. border: 2px solid #d7d7d7;
  2472. padding-top: 10px;
  2473. position: relative;
  2474. z-index: 0;
  2475. background: #fff;
  2476. color: #000;
  2477. }
  2478. .answer::after, .answer::before {
  2479. content: '';
  2480. position: absolute;
  2481. background: #fff;
  2482. border-bottom: 2px solid #d7d7d7;
  2483. border-left: 2px solid #d7d7d7;
  2484. left: 20px;
  2485. top: -12px;
  2486. width: 20px;
  2487. height: 20px;
  2488. z-index: -1;
  2489. transform: rotate(45deg);
  2490. -webkit-transform: rotate(135deg);
  2491. }
  2492. .answer::before {
  2493. z-index: 1;
  2494. }
  2495. /*FAQ END*/