/*  -------------------------------------------------
  Подключаем нестандартные шрифты | Custom fonts
  ------------------------------------------------- */
/*@font-face {
	font-family: 'Helvetica Neue';
	src:	url('fonts/HelveticaNeueCyr-Med.eot?#iefix') format('embedded-opentype'),
	url('fonts/HelveticaNeueCyr-Med.otf')  format('opentype'),
	url('fonts/HelveticaNeueCyr-Med.woff') format('woff'), url('HelveticaNeueCyr-Med.ttf')  format('truetype'),
	url('fonts/HelveticaNeueCyr-Med.svg#HelveticaNeueCyr-Medium') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Helvetica Neue';
	src: url('fonts/HelveticaNeueCyr-UltraLight.otf')  format('opentype');
	font-weight: lighter;
	font-style: normal;
}

@font-face {
	font-family: 'Helvetica Neue';
	src:	url('fonts/HelveticaNeue-CondensedBold.eot?#iefix') format('embedded-opentype'),
	url('fonts/HelveticaNeue-CondensedBold.otf')  format('opentype'),
	url('fonts/HelveticaNeue-CondensedBold.woff') format('woff'),
	url('fonts/HelveticaNeue-CondensedBold.ttf')  format('truetype'),
	url('fonts/HelveticaNeue-CondensedBold.svg#HelveticaNeue-CondensedBold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'MinionPro-Bld';
	src:	url('fonts/MinionPro-Bold.eot?#iefix') format('embedded-opentype'),
	url('fonts/MinionPro-Bold.otf')  format('opentype'),
	url('fonts/MinionPro-Bold.woff') format('woff'),
	url('fonts/MinionPro-Bold.ttf')  format('truetype'),
	url('fonts/MinionPro-Bold.svg#MinionPro-Bold') format('svg');
	font-weight: normal;
	font-style: normal;
}*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap&subset=cyrillic');
@charset "utf-8";
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
header,
section,
footer {
	clear: both;
}
/* Всегда показывать полосу прокрутки (чтобы сайт не прыгал, когда на других страницах нет данной полосы)
   force a vertical scrollbar to prevent a jumpy page */
html {
	overflow-y: scroll;
}
/* Добавляем буллеты к UL и цифры к OL, т.к. в контенте могут использоваться стандартные списки
  we can use default ULs & OLs with bullets */
ul, ol {
	/* font-size: 11pt; 
	line-height: 1.4;*/
	line-height: 18pt;
	font-size: 11pt;
}
ul {
	list-style: inside;
	margin: 0 0 20px;
}
ol {
	list-style: outside decimal;
	margin: 15px 0 15px 30px;
	margin: 0 0 15px 20px;
}
ul li, ol li {
	margin-bottom: 0px;
	position: relative;
}
ol li {
	padding-left: 10px;
}
ul.list-square {
	list-style: none;
	padding-left: 20px;
}
ul.list-square li::before {
	content: "■";
	font-size: 12px;
	padding-right: 10px;
	color: #0054a5;
	margin: 0px 0px 0px -20px;
	position: absolute;
	top: 0px;
}
ul.list-none {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
td img {
	vertical-align: top;
}
/* Сбрасываем отступы у элементов форм
  Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
	margin: 0;
	outline: none;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
input,
select {
	vertical-align: middle;
}
input[type=radio],
input[type=checkbox] {
	margin: 1px 4px 4px 0;
}
input[type=text],
input[type=password] {
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
	resize: vertical;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
}
/* Решение проблемы с обрезанием стилизованных кнопок в IE | make buttons play nice in IE */
button,
input[type=submit] {
	width: auto;
	overflow: visible;
}
.ie7 input[type=submit],
.ie7 input[type=reset],
.ie7 input[type=button] {
	-webkit-filter: chroma(color=#000000);
	filter: chroma(color=#000000);
}
/* Курсор-указатель на кликабельных элементах | hand cursor on clickable elements */
input[type=button],
input[type=submit],
button {
	cursor: pointer;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}
small {
	font-size: 85%;
}
strong {
	font-weight: bold;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}
/* Стандартизируем моноширные элементы | standardize any monospaced elements */
pre,
code,
kbd,
samp {
	font-family: monospace, sans-serif;
}
pre {
	white-space: pre;
}
h1, .h1 {
	font-size: 30px;
	text-transform: uppercase;
	color: #a7a8aa;
	padding: 20px 0 18px;
	font-weight:  400;
}

h2, .h2 {
	font-size: 16px;
	color: #111;
	padding: 10px 0 18px;
}
h4 {
	font-size: 16px;
	font-weight: 600;
	padding: 10px 0 16px;
}
p {
/*	font-size: 14px;
	line-height: 1.5;
	padding: 10px 0;*/
	padding: 0 0 16px 0;
	font-size: 11pt;
}
a,
.container a {
	color: #004d8c;
	text-decoration: underline;
	font-weight: 400;
}
a:hover,
.container a:hover {
	color: #266599;
	text-decoration: none;
}


/* Устанавливаем произвольный цвет для выделения (не забываем убрать тень для текста)
  Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
/* ::-moz-selection{ background:#fcd700; color:#fff; text-shadow:none; } */
/* ::selection { background:#fcd700; color:#fff; text-shadow:none; } */
/* Устанавливаем произвольный цвет подсветки ссылок на Apple устройствах: j.mp/webkit-tap-highlight-color */
/* a:link {-webkit-tap-highlight-color:#fcd700;} */
/* Правильный ресайз картинок в IE7
  scale images in IE7 more attractively */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/* Сброс float блоков | let's clear some floats */
.clear {
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
}
.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: 'Open Sans', sans-serif !important;
	font-weight: 400;
	min-height: 100%;
	height: auto;
	position: relative;
	color: #555;
	min-width: 1018px;
	margin-top: 40px;
}
body,
body.main {
	background: #fff url(/local/templates/main_new/images/header-bg.jpg) center 56px/100% no-repeat;
	/*margin-top: 60px;*/
	margin: 0 auto;
}
.no-scroll {overflow:hidden;position:fixed;width:100%;}
.no-scroll .overlay {display:block;}
.bold {font-weight:bold;}
.header {
  max-width: 1300px;
  position: relative;
  margin: 0 auto 30px;
  padding: 0 50px;
}
body.main .header {
	margin-bottom: 0;
}
.content {
  max-width: 1300px;
  /*margin: 0 auto 25px;*/
  margin: 0 auto;
  padding: 0 50px;
  overflow: hidden;
}
.container {
	width: 100%;
	margin: 0 auto;
	position: relative;
	min-height: 200px;
	color: #595959;
  clear: both;
}

.content .container {
  margin-bottom: 20px;
}


/* .container p {
	padding: 0 0 16px 0; font-size: 11pt;
} */
.container p.strong {
	font-size: 11.4pt;
	padding-bottom: 8px;
}
.container:after {
	content: " ";
	clear: both;
}

/*------------------------------
	TOPBAR
--------------------------------*/
.topbar {
	display: flex;
	width: 100%;
	top: 0;
	left: 0;
	position: static;
	/*padding: 8px 2px;*/
	background-color: #fff;
	border-bottom: 1px solid #e9e9e9;
	z-index: 999;
/* 
	position: fixed;
	height: 50px;
	border-bottom: 1px solid #d8d8d8;
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.15);
	box-shadow: 0 0 8px rgba(0,0,0,.15);
	box-shadow: 0px -4px 12px #00000073;
	z-index: 99;
*/

/*
	border-bottom: 1px solid #e2e2e2;
	z-index: 100;
	box-shadow: 0 4px 12px -6px rgba(85,85,85,.5);
*/
}
.topbar .bar {
	width: 100%;
	max-width: 1300px;
	margin: auto;
	padding: 8px 50px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.topbar .search,
.topbar .worktime,
.topbar .socnets {
	width: 33.333%;
}

.topbar form.search-form {
	display: flex;
	padding: 0px 0px 0px 10px;
	background: white;
	overflow: hidden;
	border-radius: 5px;
}
.topbar button {
	margin: auto;
	background: white;
	border: none;
	width: 27px;
	font-size: 14px;
	padding-bottom: 0px;
	height: 100%;
}
.topbar .appointment-btn {
  vertical-align: middle;
  cursor: pointer;
  color: #FFFFFF;
  text-align: center;
  background: rgb(194, 82, 70);
  font-family: 'Open Sans';
}
/*----------- searcher -----------*/
.topbar .search form {
	width: 100%;
	max-width: 300px;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
}
:focus{outline: none;}
.search .search-input {
	width: 100%;
	height: 38px;
	font-size: 14px;
	color: #595959;
	padding: 0 44px 0 12px;
	border: 2px solid #ddd;
	-webkit-border-radius: 2px;
	border-radius: 3px;
	z-index: 101;
	box-sizing: border-box;
	transition: all .2s ease;
}
.search .search-input:focus {
	border-color: #6fa3d1;
}
.search .search-input:focus ~ button{
	background-color: #6fa3d1;
}
.search .search-btn {
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	width: 38px;
	line-height: 38px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	background-color: #ddd;
	border: none;
	border-radius: 0 3px 3px 0;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .2s ease;
	cursor: pointer;
	z-index: 101;
}
.search .search-input::-webkit-input-placeholder {color: #b3b3b3; opacity:1;}
.search .search-input::-moz-placeholder          {color: #b3b3b3; opacity:1;}
.search .search-input:-moz-placeholder           {color: #b3b3b3; opacity:1;}
.search .search-input:-ms-input-placeholder      {color: #b3b3b3; opacity:1;}
#search-btn i {
	font-size: 28px;
	padding-top: 2px;
	cursor: pointer;
}
#search-btn i:hover {
	opacity: .8;
}
/*
.fx-spread {
	border: 0;
	padding: 7px 15px;
	border: 1px solid #ccc;
	position: relative;
	background: transparent;
}
.fx-spread~.focus-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ededed;
	opacity: 0;
	transition: 0.5s;
	z-index: 99;
}
.fx-spread:focus~.focus-bg {
	transition: 0.5s;
	opacity: 1;
}
*/
/*------------ /searcher ------------*/
.topbar .tel,
.topbar .appointment-btn{
	display: none;
}
.topbar .worktime {
	font-weight: 600;
	text-align: center;
/*	position: absolute;
	left: calc(50% - 95px);*/
	padding: 0;
	line-height: 2;
}
.topbar .socnets {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.topbar .socnets a {
	width: 32px;
	height: 32px;
	font-size: 22px;
	color: #b5b0b0;
	text-align: center;
}
.topbar .socnets .fa {
	transition: all .3s ease;
}
.topbar .socnets a:hover .fa-facebook {color: #3b5998;}
.topbar .socnets a:hover .fa-vk {color: #4a76a8;}
.topbar .socnets a:hover .fa-twitter {color: #1da1f2;}
.topbar .socnets a:hover .fa-odnoklassniki {color: #ee8208;}
.topbar .socnets a:hover .fa-instagram {color: #262626;}
/*------------------------------
	/ TOPBAR
--------------------------------*/


/*-------------------------------
		HEADER TOP
---------------------------------*/
.header .container {
	min-height: inherit;
	width: 100%;
}
.header .header_top {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;

	text-align: center;
	position: relative;
	color: #333;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}
/*------------- LOGO --------------*/
/*
.header .logo-wrap {
	width: 35%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.header .brand-name {
	text-align: left;
}
.header .logo {
	width: 100%; 
	max-width: 100px;
	display: inline-block;
	margin-right: 14px;
}
.header [class^='brand-'] {
	text-transform: uppercase;
	line-height: 1;
	font-weight: bold;
	display: block;
}
.header .brand-blue {
	font-size: 24px;
	color: #293e75;
	margin: 0 0 4px;
}
.header .brand-grey {
	font-size: 18px;
	color: #494949;
	font-family: 'MinionPro-Bld';
} */
.logo {
	/*width: 35%;*/
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	text-decoration: none;
}
.logo__img-wrap {
	margin-right: 12px;
}
.logo__img {
/*	width: 100%; 
	max-width: 100px;
	min-width: 80px;*/
	max-width: 100px;
	display: inline-block;
}
.logo__brand {
	text-align: left;
}
[class^='logo__brand-'] {
	text-transform: uppercase;
	line-height: 1;
	font-weight: bold;
	display: block;
}
.logo__brand-en {
	font-size: 24px;
	color: #293e75;
	margin: 0 0 4px;
}
.logo__brand-ru {
	font-size: 18px;
	color: #494949;
	font-family: 'MinionPro-Bld';
}
/*------------- /LOGO --------------*/
.header .address {
	text-align: right;
}
.header .phones > a {
	display: block;
	line-height: 2rem;
	cursor: pointer;
	text-decoration: none;
}
.header .phones > a:hover {
	opacity: .8;
}
.header .tel, .topbar .tel {
	text-align: center;
	padding: 0;
	font: 600 normal 18pt/2 'Open Sans', Arial, sans-serif;
	letter-spacing: -.4px;
}
.tel {color: #293e75!important;}
footer .tel {color: #004d8c!important;}
.header .phones .callback-btn {display: inline-block;color: #444;}
.header .phones .callback-btn span {
	border-bottom: 1px dashed;
}
.header .phones > a:hover span {border:transparent;}
.appointment-btn {
	padding: 14px 30px;
	background: #c25246;
	color: #FFFFFF;
	font: bold 16px 'Open Sans';
	text-align: center;
	vertical-align: middle;
	border-radius: 3px;
	/*border: 2px solid #c25246;*/
	transition: all .2s ease-out;
	cursor: pointer;
}
.appointment-btn:hover {
	background: #d56458;
}
/*-------------------------------
		/HEADER TOP
---------------------------------*/

.container_404 .logo {
	background: url(../images/logo-b.png) center center no-repeat;
	background-size: 100px;
  width: 100px;
  height: 100px;
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.container_404 .brand-blue {
	text-transform: uppercase;
	font-size: 24px;
	color: #293e75;
	text-decoration: none;
	line-height: 1;
  font-weight: bold;
  display: block;
  margin-top: 30px;
}
.container_404 .brand-grey {
	text-transform: uppercase;
	font-size: 18px;
	color: #494949;
	font-family: 'MinionPro-Bld';
	text-decoration: none;
	line-height: 1;
  font-weight: bold;
  display: block;
}
.header .header_top .left {
	/* font-family: 'Helvetica Neue'; */
	text-align: left;
  float: left;
  white-space: nowrap;
}
.header .header_top .right {
	text-align: right;
	font-size: 18px;
  float: right;
}
.header .header_top .right span {
	font-size: 15px;
	text-align: right;
	display: block;
	padding-bottom: 7px;
}

/*---------------------------------
	HEADER-NAVIGATION
-----------------------------------*/
.header-navigation .dropdown {display: none;}
.header-navigation {
	width: 100%;
	padding-bottom: 27px;
	height: 35px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.header-navigation td {
	text-align: center;
	position: relative;
	padding: 0px;
	width: auto;
	/* border: 1px solid white; */
	white-space: nowrap;
}
.header-navigation td:first-child {
  border-left: none;
}
.header-navigation td:last-child {
  border-right: none;
}
.header-navigation td:hover, .header-navigation td.selected {
  background: #266599;
  /*background: rgb(0, 77, 140);*/
}
.header-navigation td:hover > a, .header-navigation td.selected > a {
  color: white;
  text-decoration: none!important;
}
.header-navigation .link {
	display: inline-block;
	width: 100%;
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
	font-family: 'Open Sans';
	line-height: 1;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
	padding: 15px;
}
.header-navigation .selected .link {
	display: inline-block;
}
.header-navigation .link:hover {
	text-decoration: underline;
}
.header-navigation .submenu {
	display: none;
	position: absolute;
	top: 45px;
	left: 0px;
	background: #e9e9e9;
	z-index: 100;
	padding: 4px 12px;
	margin: 0;
	text-align: left;
	font-size: 14px;
}
.header-navigation .submenu:before {
  content: " ";
  display: block;
  width: 100%;
  height: 5px;
  opacity: 0;
  position: absolute;
  top: -5px;
  left: 0;
}
.header-navigation td:hover .submenu {
	display: block;
	box-shadow: 1px 2px 5px 0px rgba(32, 33, 36, 0.45);
	border: 1px solid #dedede;
	border-top: none;
}
.header-navigation .submenu ul {
  list-style: none;
  margin: 0;
}
.header-navigation .submenu-block {
  float: left;
  width: 250px;
}
.header-navigation .submenu-widther {
  width: 500px;
}
.header-navigation td ul li {
	position: relative;
  white-space: normal;
}
.header-navigation td ul li a {
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	width: 100%;
	padding: 6px 0;
	line-height: 1.45;
	color: #020202;
}
.header-navigation td ul li a:hover {
	color: #68af30;
	text-decoration: none;
}
.header-navigation td ul li a.bold {
	font-weight: bold;
}
.header-navigation .submenu ul li.submenu-header {
  color: #2f4d89;
  text-transform: uppercase;
  font-size: 18px;
  padding-bottom: 10px;
}
.header-navigation .submenu ul li.submenu-header a {
  color: #2f4d89;
  text-transform: uppercase;
}
.header-navigation .submenu ul li.submenu-last {
  font-size: 12px;
  padding-top: 5px;
}
.header-navigation .submenu ul li.submenu-last a, .header-navigation .submenu ul li.submenu-last a:hover {
  font-size: 12px;
  text-decoration: underline;
}
/*---------------------------------
	/HEADER-NAVIGATION
-----------------------------------*/

.main-slider {
  max-width: 1300px;
  position: relative;
  padding: 0 50px;
	margin: 0 auto;
	overflow: hidden;
}
.main-slider .slides {
	position: relative;
}
.main-slider .slides .slide img {
	position: absolute;
	left: 0;
	top: 0;
}
.main-slider .slides .slide a {
	text-decoration: none;
}
.main-slider .slides .slide .text {
	position: relative;
	width: 930px;
	margin: 0 auto;
	/*height: 417px;*/
}
.main-slider .slides .slide .text span {
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-size: 48px;
	text-decoration: none;
	line-height: 60px;

	display:-moz-inline-box;
	display:inline-block;
	vertical-align:middle;
	zoom:1;
//display:inline;
}
.main-slider .slides .slide .text i {
	display:-moz-inline-box;
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0px;
	zoom:1;
//display:inline;
}
.main-slider .slides:hover .slidesjs-previous, .main-slider .slides:hover .slidesjs-next {
	display: inline-block;
}
.main-slider .slides .slidesjs-previous {
	position: absolute;
	left: 0;
	top: 0;
	width: 80px;
	/*height: 417px;*/
	background: url(../images/slider-arrows-bg.png);
	text-align: center;
	display: none;
	z-index: 10;
}
.main-slider .slides .slidesjs-previous i {
	cursor: pointer;
	width: 18px;
	height: 30px;
	position: absolute;
	top: 194px;
	left: 31px;
	background: url(../images/slider-prev.png);
}
.main-slider .slides .slidesjs-next {
	position: absolute;
	right: 0;
	top: 0;
	width: 80px;
	/*height: 417px;*/
	background: url(../images/slider-arrows-bg.png);
	text-align: center;
	display: none;
	z-index: 10;
}
.main-slider .slides .slidesjs-next i {
	cursor: pointer;
	width: 18px;
	height: 30px;
	position: absolute;
	top: 194px;
	right: 31px;
	background: url(../images/slider-next.png);
}

.main-slider .slides .slidesjs-navigation{
	height: calc(100% - .95%);
}

.main-slider .slides .slidesjs-navigation i{
	top: calc(50% - 15px);
}

.main-slider .slidesjs-pagination {
	position: absolute;
	bottom: 30px;
	z-index: 10;
	text-align: center;
	width: 100%;
	padding: 0;
	margin: 0;
	height: 12px;
}
.main-slider .slidesjs-pagination li {
	display: inline-block;
	height: 12px;
	margin-bottom: 0;
	width: 12px;
	margin: 0 9px;
}
.main-slider .slidesjs-pagination li a {
	width: 12px;
	height: 12px;
	margin: 0 9px;
	background: #fff;
	border-radius: 6px;
	opacity: 0.2;
	font-size: 0;
	display: inline-block;
	line-height: 34px;
}
.main-slider .slidesjs-pagination li a.active {
	opacity: 1;
}

.footer {
	position: relative;
	bottom: 0;
	left: 0;
	z-index: 2;
	max-width: 1300px;
	position: relative;
	margin: 0 auto;
	padding: 0 50px;
}
.footer .container {
	min-height: inherit;
}
.footer .footer-navigation {
	width: 100%;
	margin: 20px auto 0;
	background-color: #266599;
}
.footer .footer-navigation td {
  text-align: center;
  transition: all .2s ease;
}
.footer .footer-navigation td:hover {
	background-color: #306fa2;
}
.footer .footer-navigation a {
	display: inline-block;
	width: 100%;
	color: #fff;
	font: normal 600 15px/1 'Open Sans', Arial, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 0;
}
.footer .footer-navigation td:hover a {color: #fff;}
.copyright {
	margin: 20px 0;
	color: #888888;
	font-size: 13px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.copyright .license {}
.copyright .contacts {
	font-size: 1rem;
}
.copyright .contacts td {
	vertical-align: middle;
	padding: 2px;
}
.copyright .contacts td:first-child {
	text-align: center;
	font-size: 1.1em;
}
.copyright .contacts td:last-child {}

.footer a {text-decoration: underline;color: #888888;}
.footer .fa {}
.footer .tel {font-weight: 600;} 

.footer .socnets {
  text-align: right;
}
.footer .socnets a {
	width: 32px;
	height: 32px;
	margin-right: 4px;
	display: inline-block;
	background-size: contain;
}
.socnets .fb {background: url(../images/icons/fb.png) center center no-repeat;}
.socnets .vk {background: url(../images/icons/vk.png) center center no-repeat;}
.socnets .tw {background: url(../images/icons/tw.png) center center no-repeat;}
.socnets .gp {background: url(../images/icons/G+.png) center center no-repeat;}
.footer .copyright__mobile {
  display: none;
}
.footer .search-form {
	display: none;
	position: absolute;
	left: 15px;
	bottom: 0;
}
.footer .search-form input {
	width: 200px;
	height: 34px;
	border: 1px solid #cccccc;
	border-radius: 20px;
	padding: 0 35px 0 15px;
	font-style: italic;
	font-size: 15px;
	line-height: 34px;
	background: #fff;
	color: #cccccc;
}
.footer .search-form button {
	width: 17px;
	height: 18px;
	background: url(../images/search-icon.jpg) no-repeat;
	position: absolute;
	right: 15px;
	top: 8px;
	border: none;
}
.main-info {
	margin: 28px 0 20px;
	text-align: center;
}
.main-news {
	margin-top: 19px;
	margin-bottom: 16px;
	text-align: center;
}
.main-news .h1 {
	font-size: 28px;
	padding-bottom: 30px;
	color: #004d8c;
}
.main-news .h1 a {
	font-weight: inherit;
	color: #294f8d;
	text-transform: uppercase;
  text-decoration: none;
}

.main-news .h2 {
	font-weight: 600;
	padding-bottom: 30px;
	padding: 0 0 10px;
}
.main-news .main-news-items {
	width: 100%;
	/* min-width: 1018px; */
	max-width: 1200px;
	margin: 0 auto;
	table-layout: fixed;
}
.main-news .main-news-items .item {
	/* width: 33%; */
	/* margin: 0 auto; */
	text-align: center;
	/* float:  left; */
}
.main-news .main-news-items .item .date {
	color: #878787;
	font-size: 14px;
	line-height: 1;
	margin: 15px 0 0;
}
.main-news .main-news-items .item a {
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
	text-decoration: underline;
}
.main-news .main-news-items .item .preview {
	color: #777;
	font-size: 13px;
	margin: 20px;
	margin-top: 44px;
	line-height: 14px;
}
.main-news .all-items {
	font-size: 18px;
	display: inline-block;
	margin: 4px 0 20px;
	text-decoration: underline;
	font-weight: 600;
}
.main-news .all-items:hover {
	text-decoration: none;
}
.main-news.doctors .owl-nav {
	width: 100%;
	position: absolute;
	top: 34%;
	top: 26%;
}
.main-news.doctors .owl-nav [class^="owl-"] {
	position: absolute;

	/*background-image: url("back.png");
	background-size: cover;
	width: 100px;
	height: 100px;*/
}
.main-news.doctors .owl-nav .owl-prev {left: 0;}
.main-news.doctors .owl-nav .owl-next {right: 0;}
.main-news.doctors .owl-nav button span {
	font: 300 normal 4.4em/.5 'Open Sans';
	width: 50px;
	height: 50px;
	display: block;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
	opacity: .8;
	color: darkgrey;

	font: 300 normal 4.4em/106px 'Open Sans';
	height: 120px;
	border-radius: 0;
	opacity: .7;
}


.main-news.reviews {
	width: 100%;
	background: #e9e9e9;
	position: relative;
	margin: 0;
	/* min-width: 1018px; */
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 33px;
	table-layout: fixed;
}
/*.main-news.reviews:before, .main-news.reviews:after {
	content: "";
	position: absolute;
	background: #e9e9e9;
	top: 0;
	bottom: 0;
	width: 30%;
 height: 100%;
}
.main-news.reviews:before {
	right: 99%;
}
.main-news.reviews:after {
	left: 99%;
}*/
.main-news.reviews .h1 {
	font-size: 26px;
	color: #004d8c;
}
.main-news.reviews .main-news-items .date {
	line-height: 18px;
}
.main-news.reviews .main-news-items .date a, .main-news.reviews .main-news-items .preview a {
	color: #000000;
	text-decoration: none;
	display: inline;
	line-height: 1;
}
.main-news.reviews .main-news-items .date a:hover, .main-news.reviews .main-news-items .preview a:hover {
	text-decoration: underline;
}
.main-news.reviews .main-news-items .preview {
	font-style: italic;
	line-height: 22px;
}
.main-subscribe {
	text-align: center;
}
.main-subscribe {
	padding: 5px 0;
	color: #fff;
	background: #2e5189;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	line-height: 70px;
	width: 100%;
}

.gray-block {
	background: #e9e9e9;
	position: relative;
	padding: 30px;
	max-width: 1200px;
	margin: 25px auto;
	table-layout: fixed;
	font-size: 13px;
	/* color: black; */
}
/*
.gray-block:before, .gray-block:after {
	content: "";
	position: absolute;
	background: #e9e9e9;
	top: 0;
	bottom: 0;
	width: 9999px; 
	width: 30%;
 height: 100%;
}
.gray-block:before {
	right: 99%;
}
.gray-block:after {
	left: 99%;
}
*/
.gray-block .title {
	text-transform: uppercase;
	font-size: 30px;
	color: #004d8c;
	text-align: center;
	margin-bottom: 20px;
}

.user-data-politics {
	margin-top:25px;
    font-size: 13px;
    font-weight: 100;
}

.user-data-politics a {
    color: #aaaaaa;
}

.user-data-politics a:hover {
	text-decoration:none;
}

.agreement a {
	color:#fff;
	text-decoration:underline;
}

.agreement a:hover {
	text-decoration:none;
}

.main-subscribe:before, .main-subscribe:after {
	content: "";
	position: absolute;
	background: #2e5189;
	bottom: 0;
	/* width: 9999px; */
	width: 30%;
	height: 100%;
	top: 0;
}
.main-subscribe:before {
	right: 99%;
}
.main-subscribe:after {
	left: 99%;
}
.main-subscribe input {
	border: 2px solid #fff;
	border-radius: 10px;
	height: 42px;
	line-height: 36px;
	width: 350px;
	padding: 15px 20px;
	margin-left: 62px;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}
.main-subscribe .subscribe-button {
	/* width: 150px; */
	height: 42px;
	color: black;
	background: #8dbf50;
	display: inline-block;
	text-align: center;
	line-height: 36px;
	margin-left: 40px;
	cursor: pointer;
	border-radius: 10px;
	font-size: 16px;
	padding: 2px 40px;
}
.specialists-list {
	margin-top: 11px;
}
.specialists-list .title {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 20px;
	color: #989898;
}
.specialists-list .items {
	margin-bottom: 20px;
}
.specialists-list .item {
	margin-bottom: 30px;
	position: relative;
	padding-left: 90px;
	min-height: 90px;
	width: 49%;
	display: inline-block;
	vertical-align: top;
	padding-right: 20px;
}
.specialists-list .item img {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0 30px 30px 0;
}
.specialists-list .item a {
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
}
.specialists-list .item p {
	margin-top: 3px;
	/*font-style: italic;*/
	font-size: 15px;
	line-height: 1.4;
}
.pagination {
	padding: 39px 0 20px;
	border-top: 1px solid #eee;
	list-style: none;
	margin: 0;
	text-align: center;
}
.pagination li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 1px;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	text-align: center;
}
.pagination li.active {
	background: #59a71a;
	color: #fff;
}
.pagination li.active a {
	color: #fff;
	text-decoration: none;
	cursor: default;
}
.pagination .prev {
	float: left;
}
.pagination .next {
	float: right;
}
.breadcrumbs {
	margin: 10px 0 0px;
}
.breadcrumbs ul {
	margin: 0;
	padding: 0;
}
.breadcrumbs ul li {
	display: inline-block;
	line-height: 20px
}
.breadcrumbs ul li a {
	display: block;
	padding-right: 15px;
	color: #aaa;
	font-size: 13px;
	position: relative;
	text-decoration: none;
}
.breadcrumbs ul li a:after {
	content: "/";
	position: absolute;
	right: 5px;
	top: 1px;
	font-size: 14px;
}
.breadcrumbs ul li > span{
	display: block;
	padding-right: 15px;
	color: #aaa;
	font-size: 13px;
	position: relative;
	text-decoration: none;
}
.specialist-page {
	min-height: 320px;
}
.specialist-page .photo {
	float: left;
	min-width: 270px;
	max-width: 300px;
	margin: 6px 30px 20px 0;
/*	min-width: 320px;
	min-height: 320px;
	padding-right: 50px;
	padding-bottom: 20px;*/
}
.specialist-page .preview-text {
	color: #333;
	font: 300 normal 24px/2rem 'Open Sans', Arial, sans-serif;
	margin-bottom: 20px;
}
.req-button {
	display: inline-block;
	background: #59a71a;
	color: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 23px;
	border-radius: 6px;
	text-transform: uppercase;
	margin: 35px 0;
	cursor: pointer;
	transition: background .2s ease;
}
.req-button:hover {
	background: #66b724;
}
.back-to-list {
	font-size: 16px;
	margin: 20px 0;
	display: inline-block;
	text-decoration: none !important;
}

.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
	display: none;
	background: url(../images/popup-overlay.png);
}
.overlay.active {
	display: block;
}

/*--------------------------
	POPUP
----------------------------*/
.popup-wrapper {
	position: fixed;
/*	top: -30px;
	left: 50%;
	width: auto;
	height: auto;
	margin-left: -310px;
	margin-top: 100px;*/
	top: calc(50% - 220px);
	left: calc(50% - 310px);
	display: none;
	z-index: 1100;
}
.popup-wrapper.active {
	display: block;
	background: none;
	overflow: hidden;
	border-radius: 10px;
}
.popup-wrapper.active::after {
	content: none;
}
.popup-wrapper.active .popup {
	width: 640px;
}
.popup {
	position: relative;
	margin: 0 auto;
	width: 620px;
	background: #f4f4f4;
}
.popup .close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	width: 22px;
	height: 22px;
	background: url(../images/popup-close.png) no-repeat;
}
.popup-title {
	height: 60px;
	background: #fff;
	color: #333;
	font-size: 30px;
	line-height: 60px;
	text-align: center;
	font-weight: 600;
}
.popup-content {
	padding: 30px;
	text-align: center;
}
.popup-content form [type="text"], .popup-content form select {
	background: #fff;
	width: 100%;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0 17px;
	color: #333;
	line-height: 40px;
	font-size: 16px;
	margin-bottom: 20px;
}
.popup-content form select.empty {
	color: #a3a3a3;
}
.popup-content form select {
	padding: 0 14px;
}
.popup-content form select option.default {
	color:white;
	font-size:0px;
	display:none;
}
.popup-content form textarea {
	background: #fff;
	width: 100%;
	height: 90px;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0 17px;
	color: #333;
	line-height: 40px;
	font-size: 16px;
	margin-bottom: 20px;
	resize: none;
	font-family: 'Open Sans', sans-serif;
}
.popup-content form .wrap {
	position: relative;
}
.popup-content form .wrap .calendar-icon {
	position: absolute;
	right: 17px;
	top: 9px;
}
.popup-content form .error {
	border-color: #F44242;
}
.popup-content form button {
/* 
	display: inline-block;
	background: #59a71a;
	color: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 23px;
	border-radius: 6px;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
*/
	display: inline-block;
	background: #59a71a;
	color: #fff;
	padding: 14px 0;
	border-radius: 4px;
	text-transform: uppercase;
	border: none;
	font-size: 1rem;
	letter-spacing: .6px;
	width: 100%;
	max-width: 200px;
	margin: 14px 0;
}
.popup-content p {
	padding: 0;
}
.popup-content a {
	font-style: italic;
}
.popup-content .info-text{
	margin: 0;
}
.result-text {
/*	
	float: right;
	line-height: 50px;
*/
}
.result-text > * {
	display: inline-block;
	padding: 10px 0 4px;
}
.result-text .err {
	color: #F44242;
}
.result-text .suc {
	color: #59a71a;
	font-size: 1.4rem;
	padding: 0;
}
/*--------------------------
	/POPUP
----------------------------*/

.bx-calendar-button-text {
	height: 24px !important;
}


/*---------------------------
	REVIEWS PAGE
-----------------------------*/
.reviews-page {
	margin-top: 9px;
}
.reviews-page h1 {
	padding: 0 0 30px;
}
.reviews-page .review-section {
	display: inline-block;
	border: 1px solid #266599;
	border-radius: 5px;
	margin: 0 6px 10px 0;
}
.reviews-page .review-section .title {
	font-size: 16px;
	font-family: Arial;
	line-height: 1;
	color: #004d8c;
	display: inline-block;
	padding: 12px 14px;
}
.reviews-page .review-section .title:hover {background:#266599; color:#fff;}
.reviews-page .review-section .items {margin-top:20px; display:none;}
.reviews-page .review-section.active {background-color:#266599;}
.reviews-page .review-section.active .title {color:#fff;}
.reviews-page .item {
	padding-left: 50px;
	background: url(../images/q-green.jpg) 2px 7px no-repeat;
	margin-bottom: 25px;
}
.reviews-page .review {
	margin-top: 4px;
	font-weight: 300;
	font-size: 17px;
	color: #333;
	line-height: 27px;
}
.reviews-page .review .text {
	/*max-height: 60px;*/
	overflow: hidden;
	-webkit-transition: max-height 1s;
	-moz-transition: max-height 1s;
	-ms-transition: max-height 1s;
	-o-transition: max-height 1s;
	transition: max-height 1s;

	font-family: Arial, Helvetica;
	font-size: 11pt;
}
.reviews-page .text p,
.reviews-page .text a {
	font-size: 11pt;
	line-height: 17pt;
	text-decoration: none;
	color: #333;
	display: inline-block;
	padding-bottom: 6px;
}

.reviews-page .review.active .text {
	max-height: 800px;
}
.reviews-page .review .more {
	cursor: pointer;
	color: #004d8c;
}
.reviews-page .review .more:hover, .reviews-page .review .hide:hover {
	text-decoration: underline;
}
.reviews-page .review .hide {
	cursor: pointer;
	color: #004d8c;
	display: none;
}
.reviews-page .review.active .hide {
	display: block;
}
.reviews-page .review.active .more {
	display: none;
}
.reviews-page .name {
	display: inline-block;
	font-style: italic;
	font-weight: 400;
	font-size: 17px;
	line-height: 1;
	color: #004d8c;
}
/*---------------------------
	/REVIEWS PAGE
-----------------------------*/


.news-list {
	margin-top: 11px;
}
.news-list .item {
	margin-bottom: 60px;
	position: relative;
	padding-left: 140px;
	min-height: 160px;
}
.news-list .item img {
	/*position: absolute;*/
	left: 0;
	top: 0;
	margin: 0 30px 30px 0;
}
.news-list .item .img {
	position: absolute;
	left: 0;
	top: 0;
}
.news-list .item .img .video-bg {
	width: 239px;
	height: 160px;
	background: url(../images/video-news.png) center center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.news-list .item .date {
	display: block;
	font-style: italic;
	font-weight: 300;
	font-size: 17px;
	color: #004d8c;
	line-height: 1;
	margin-bottom: 15px;
	color: #aaa;
}
.news-list .item a {
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
}
.news-list .item .preview-text {
	margin-top: 18px;
	font-size: 17px;
	font-weight: 300;
	color: #333;
	line-height: 27px;
}
.direction-list {
	margin-top: 11px;
}
.direction-list .item {
	margin-bottom: 20px;
	position: relative;
	width: 49%;
	display: inline-block;
	vertical-align: top;
}
.direction-list .item a {
	font-size: 20px;
	line-height: 50px;
	position: relative;
	font-size: 20px;
	line-height: 50px;
	height: 50px;
	display: inline-block;
	padding-left: 70px;
	text-decoration: none;
}
.direction-list .item a img {
	max-width: 50px;
	max-height: 50px;
	margin-right: 20px;
	display: inline;
	position: absolute;
	left: 0;
	margin: 0 30px 30px 0;
}
.direction-list .item .preview-text {
	font-size: 17px;
	font-weight: 300;
	color: #333;
	line-height: 27px;
}
.direction-page .video-block {
	margin: 15px 0;
}
.container img {
	margin: 5px 30px;
}

/*.container div div img {margin: 0;max-width: 100%;height: initial;}*/
.direction-page .top-pic {
	border-radius: 6px;
	margin: 20px 0;
	display: block;
	max-width: 100%;
	height: initial;
}
.direction-page .date {
	display: block;
	font-style: italic;
	font-weight: 300;
	font-size: 17px;
	color: #aaa;
	line-height: 1;
	margin: 0 0 23px;
}
.direction-page .preview-text {
	font-size: 15px;
	color: #333;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 23px;
}
.content-img {
	border-radius: 6px;
	margin: 30px 0;
}
h2 {
	color: #333;
	font-weight: bold;
	font-size: 22px;
	padding-bottom: 20px;
	letter-spacing: -1px;
}
h3 {
	color: #333;
	font-weight: 300;
	font-size: 24px;
	/* font-style: italic; */
	padding-bottom: 20px;
}
h4 {
	color: #333;
	font-weight: 300;
	font-size: 20px;
	font-style: italic;
	padding: 0;
}
a.big-link {
	display: inline-block;
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	margin-bottom: 30px;
}
.contacts-map {
	margin: 30px 0;
	border-radius: 6px;
	overflow: hidden;
}
.strong {
	font-weight: 600;
}
.caps {
	text-transform: uppercase;
}
.middle {
	text-align: center;
}
.programms-list {
	/*margin-top: 60px;*/
}
.programms-list .item {
	margin-bottom: 40px;
	position: relative;
	min-height: 90px;
}
.programms-list.sales .item {
	min-height: auto;
	margin-bottom: 20px;
}
.programms-list .item a {
	font-family: Arial;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}
.programms-list .item p {
	margin-top: 13px;
	/*font-style: italic;*/
	font-size: 18px;
	line-height: 1.4;
	padding: 0;
}
.programm-page .photo {
	float: right;
	min-width: 320px;
	min-height: 320px;
	padding-left: 50px;
	padding-bottom: 50px;
}
.programm-page .preview-text {
	font-size: 24px;
	color: #333;
	font-style: italic;
	font-weight: 300;
}
.programm-page .req-button {
	display: inline-block;
	background: #59a71a;
	color: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 23px;
	border-radius: 6px;
	text-transform: uppercase;
	margin: 35px 0;
	cursor: pointer;
}
.programm-page .programms-types {
	margin-top: 20px;
}
.programm-page .programms-types .programm-item {
	margin-bottom: 50px;
}
.programm-page .programms-types .programm-item h3 {
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
}
.programm-page .programms-types table, .programm-page .programms-types table td, .programm-page .programms-types table th {
	border: 1px solid #666;
}
.programm-page .programms-types table th {
	font-weight: 600;
}
.programm-page .programms-types table td, .programm-page .programms-types table th {
	padding: 3px 10px;
	vertical-align: middle;
}
.programm-page .programms-types table th.bronze {
	background: #CD7F32;
	color: #fff;
}
.programm-page .programms-types table th.silver {
	background: #C0C0C0;
	color: #fff;
}
/*29d058*/
.programm-page .programms-types table th.gold {
	background: #FFD700;
	color: #fff;
}
.programm-page .programms-types table td {
	text-align: center;
}
.programm-page .programms-types table td.name {
	text-align: left;
}
.programm-page .programms-types table td i {
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url(../images/check-green.png) no-repeat;
}
.photo-page {

}
.photo-page .photo-item {
	margin-bottom: 20px;
}
.photo-page:not(.inner) .photo-item {
	width: 30%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.photo-page .photo-item a {
	text-decoration: none;
}
.photo-page .photo-item a.photo_title {font-size: 19px;}

.photo-page.sub .photo-item a {font-size: 15px; display: block; min-height: 40px;}

.photo-page .photo-item img {
	margin: 0 20px 20px 0;
}
.photo-page .photo-item .title {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 20px;
}
.faq-list {

}
.faq-list .item {
	margin-bottom: 48px;
}
.faq-list .date {
	margin-top: 3px;
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.faq-list .name {
	font-style: italic;
	font-weight: 300;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	color: #004d8c;
}
.faq-list .question {
	margin-top: 24px;
	/*font-size: 17px;
	font-weight: 300;
	color: #333; */
	line-height: 33px;
	cursor: pointer;
	font-weight: normal;
}
.faq-list .question p {

	padding: 0;
}
.faq-list .q_link {
	margin-top: 6px;
	font-size: 17px;
	cursor: pointer;
	color: #004d8c;
}
.faq-list .question:hover, .faq-list .q_link:hover {
	text-decoration: underline;
}
.faq-list .answer {
	display: none;
	margin-top: 20px;
}
.faq-list .item.active .answer {
	display: none;
}
.faq-list .answer .specialist {
	position: relative;
	padding-left: 90px;
	min-height: 85px;
	width: 49%;
	display: inline-block;
	vertical-align: top;
}
.faq-list .answer .specialist a {
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
}
.faq-list .answer .specialist img {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0 30px 30px 0;
}
.faq-list .answer .specialist p {
	margin-top: 3px;
	font-size: 15px;
	line-height: 1.4;
}
.faq-list .text {
	font-size: 17px;
	color: #333;
	line-height: 27px;
}



/*--------------------------------
	SIDEBAR MENU
----------------------------------*/

.left-menu {
	width: 260px;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0;
	margin-top: 0;
	padding-right: 10px;
	z-index: 90;
}
.left-menu ul {list-style-type: none; padding: 0; margin: 0;}
.left-menu li {
	/*margin-bottom: 14px;*/
}
.left-menu li a, .left-menu li span {
	line-height: 14px;
	font-size: 14px;
	display: block;
	text-decoration: none;
}
.left-menu li strong a, .left-menu li strong span {
	font-weight: 700;
}
.left-menu li a:hover {
	color: #68af30;
}

.left-menu .rootmenu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	background-color: #266599;
}
.left-menu .rootmenu > li {
	order: 1;
	border-bottom: 2px solid #fff;
	cursor: pointer;
}
.left-menu .rootmenu > li::after {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	right: 18px;
	width: 26px;
	height: 26px;
	background: url(../images/up-w.png) no-repeat center 46%/50%;
	transform: rotate(180deg);
	transition: all .4s ease;
}
.left-menu .rootmenu > li.open::after {
	transform: rotate(360deg);
}
.left-menu .rootmenu-link {
	display: inline;
	padding-left: 20px;
	font: normal 16px/3rem 'Open Sans', sans-serif;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: .3px;
}
.left-menu .rootmenu-link:hover {
	color: #fff;
	text-decoration: underline;
}
.left-menu .submenu {
	display: none;
	background: #e9e9e9;
	padding: 4px 0;
}
.left-menu .submenu li {
	background-color: #e9e9e9;
}
.left-menu a.submenu-link {
	color: #020202;
	padding: 6px 20px;
	line-height: 20px;
	-webkit-transition: all ease .2s;
	-moz-transition: all ease .2s;
	-o-transition: all ease .2s;
	transition: all .3s ease;
}
.left-menu .submenu li:hover a.submenu-link {
	padding-left: 24px;
}
.left-menu a.submenu-link.selected {
	color: #266599;
	font-weight: 600;
	padding-left: 20px;
}
.left-menu .submenu li:hover a.submenu-link.selected {
	padding-left: 20px;
}
/*--------------------------------
	/ SIDEBAR MENU
----------------------------------*/


body.narrow .content .container {
	padding-left: 280px;
	transition: min-height .5s ease;
}
.news-page .date {
	display: inline-block;
	color: #aaa;
	margin-top: 24px;
}
.news-page h1 {
	padding-top: 0;
	padding-bottom: 0;
	font-size: 28px;
	line-height: 1;
	color: #22649b;
	margin-bottom: 40px;
	margin-top: 10px;
}
.news-page .tar {
	text-align: right;
}
.news-page .back-to-list {
	height: 34px;
	background: #ddd url(../images/back-arrow.png) 20px center no-repeat;
	line-height: 34px;
	padding: 0 20px 0 40px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	margin: 15px 0;
}
.detail-navi {
	margin: 20px 0;
	height: 34px;
}
.detail-navi .previous-page, .detail-navi .next-page {
	height: 34px;
	background: #ddd url(../images/back-arrow.png) 20px center no-repeat;
	line-height: 34px;
	padding: 0 20px 0 40px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	float: left;
	text-decoration: none;
}
.detail-navi .previous-page.right {
	float: right;
}
.detail-navi .next-page {
	padding: 0 40px 0 20px;
	background: #ddd url(../images/next-arrow.png) 104px center no-repeat;
	float: right;
}

.call-me-again {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 100;
}
.call-me-again.active {
	display: block;
}
.call-me-again .step1 .button {
	display: inline-block;
	font-size: 16px;
	font-family: 'Helvetica Neue';
	padding: 0 32px;
	height: 32px;
	line-height: 32px;
	-moz-border-radius: 32px;
	-webkit-border-radius: 32px;
	border-radius: 32px;
	border: 0 none;
	text-align: center;
	color: #ffffff;
	background: #22649b;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;

	-webkit-transition: all 1s ease-out 0s;
	-moz-transition: all 1s ease-out 0s;
	-o-transition: all 1s ease-out 0s;
	transition: all 1s ease-out 0s;

	z-index: 2;
	position: relative;
}
.call-me-again .step1 {
	width: 550px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -275px;
	margin-top: -35px;
	text-align: center;
}
.call-me-again .step1 .button:hover {
	background-color: #5491C7;
}
.call-me-again .step1 .descr {
	font-family: 'Open Sans', sans-serif;
	color: #8d8d8d;
	height: 17px;
	vertical-align: top;
	font-size: 24px;
}
.call-me-again .step1 .phone-box {
	display: none;
	z-index: 1;
	margin-top: 20px;
}
.call-me-again .step1 .phone-box span {
	font-size: 22px;
}
.call-me-again .step1 .phone-box input {
	width: 155px;
	font-size: 22px;
	border: none;
	border-bottom: 2px solid #959595;
	background: none;
	margin-left: -2px;
	color: #666;
	margin-top: -4px;
}
.call-me-again .step1 .phone-box input:focus {
	border-bottom: 2px solid #807CFF;
}
.call-me-again .step1 .phone-box input.error {
	border-bottom: 2px solid #FF7F7F;
}
.call-me-again .step1.active .phone-box {
	display: inline-block;
	width: 190px;
}
.call-me-again .step1.hide {
	display: none;
}
.call-me-again .step2 {
	display: none;
	margin-top: 39px;
	font-family: 'Open Sans', sans-serif;
	color: #1DB319;
}
.call-me-again .step2.active {
	display: block;
	width: 550px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -275px;
	margin-top: -35px;
	text-align: center;
	font-size: 24px;
}
.call-me-again .close {
	color: #333333;
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 101;
	-webkit-box-shadow: none;
	box-shadow: none;

	width: 80px;
	height: 80px;
	line-height: 80px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	font-style: normal;
	font-size: 60px;
	font-family: Arial, Baskerville, monospace;
}
.call-me-again .close:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.publishing-list {
	margin-top: 11px;
}
.publishing-list .item {
	margin-bottom: 20px;
	position: relative;
	/*padding-left: 90px;*/
	min-height: 20px;
}
.publishing-list .item img {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0 30px 30px 0;
}
.publishing-list .item .img {
	position: absolute;
	left: 0;
	top: 0;
}
.publishing-list .item .img .video-bg {
	width: 239px;
	height: 160px;
	background: url(../images/video-news.png) center center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.publishing-list .item .date {
	display: block;
	font-style: italic;
	font-weight: 300;
	font-size: 17px;
	color: #004d8c;
	line-height: 1;
	margin-bottom: 15px;
	color: #aaa;
}
.publishing-list .item a {
	line-height: 1;
	font-family: Arial;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
}
.publishing-list .item a:hover {
	text-decoration: underline;
}
.publishing-list .item .preview-text {
	margin-top: 18px;
	font-size: 17px;
	font-weight: 300;
	color: #333;
	line-height: 27px;
}
.publishing-page .date {
	display: inline-block;
	color: #aaa;
	margin-top: 24px;
}
.publishing-page h1 {
	padding-top: 0;
	padding-bottom: 0;
	font-size: 28px;
	line-height: 1;
	color: #22649b;
	margin-bottom: 40px;
	margin-top: 10px;
}
.publishing-page .tar {
	text-align: right;
	float: right;
}
.publishing-page .back-to-list {
	height: 34px;
	background: #ddd url(../images/back-arrow.png) 20px center no-repeat;
	line-height: 34px;
	padding: 0 20px 0 40px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	margin: 15px 0;
}
img.left {
	margin: 0 30px 30px 0;
}
img.right {
	margin: 0 0 30px 30px;
}
.img-wrapper {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #999;
	font-size: 0;
}
.img-wrapper.left {
	float: left;
	margin-right: 30px;
}
.img-wrapper.right {
	float: right;
	margin-left: 30px;
}
.img-wrapper span {
	position: absolute;
	bottom: 0;
	left: 0;
	text-decoration: none;
	font-size: 12px;
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
}
.analizy-block li {
	display: block;
	position: relative;
	padding-left: 20px;
	background: none;
}
.analizy-block li:after {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 5px;
	top: 9px;
	background: #0054a5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.analizy-block  ul  li span, .analizy-block ul  li label {
	font-size: 11pt;
	font-weight: 700;
	color: #0054a5;
	cursor: pointer;
}
.analizy-block  ul  li li span {
	font-size: 10pt;
}
.analizy-block > ul > li ul {
	display: none;
}
.analizy-block .list-elems li {
	display: table;
	font-weight: 200;
}
.analizy-block .list-elems li:after {
	display: none;
}
.analizy-block .list-elems li label {
	display: table-cell;
	padding-right: 20px;
	font-weight: 400;
	cursor: default;
}
.analizy-block .list-elems li span {
	display: table-cell;
	font-weight: 400;
	cursor: default;
}


.articles .sort {font-size: 13px; color: #363636; margin: 20px 0 40px 0;}
.articles .sort .part {
	float: left;
	margin: 0 40px 0 0;
}
.articles .sort select {width: 250px; /* for FF */  -moz-appearance: none;  text-indent: 0.01px;   text-overflow: '';   /* for IE */  -ms-appearance: none;   appearance: none!important; -webkit-appearance: none; border: none; font-family: Open Sans; font-size: 13px; color: #266599; padding: 7px 0 8px; cursor: pointer; background: url(/local/templates/.default/images/str.gif) 235px 15px no-repeat; margin: 0 10px;}
.articles .sort select::-ms-expand {
	display: none;
}
.articles .sort .select_div {background: #f0f0f0; border-radius: 20px; box-shadow: 1px -1px 1px #c8c5c5; width: 270px; float: left;}
.articles .sort .part span {
	display: block;
	margin: 0 0 12px;
	font-size: 14px;
}


.articles.subs .title {font-size: 30px; color: #004d8c; text-align: center; margin: 15px 0;}
.articles .block {font-size: 13px; color: #545454; margin: 0 0 40px 0;}
.articles.subs .block {float: left; width: 210px; margin: 0 7px 15px;}
.articles .block .pic {padding: 10px; border-radius: 10px; border: 2px solid #3d80ba; width: 210px; float: left; margin: 0 30px 0 0;}
.articles.subs .block .pic {float: none;}
.articles .block .pic .into {width: 186px; height: 140px; overflow: hidden; position: relative;}
.articles .block .pic .into img {width: 186px; min-height: 140px; margin: 0; filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%);}
.articles .block .pic .into span {position: absolute; top: 0; left: 0; width: 186px; height: 140px; background: #88a6bf; display: block; opacity: 0.3; transition: display 0.5s ease; -webkit;transition: opacity 0.5s ease; -o-transition: opacity 0.5s ease; -moz-transition: opacity 0.5s ease; -ms-transition: opacity 0.5s ease;}
.articles .block:hover .pic .into span {opacity: 0;}
.articles .block:hover .pic .into img {filter: none; -webkit-filter: none; -moz-filter: none; -ms-filter: none; -o-filter: none;}
.articles .block p.title a {font-size: 18px; color: #363636; font-weight: bold;}
.articles.subs .block p.title a {font-size: 13px; font-weight: normal;}
.articles .block p.title {padding: 20px 0 0 0;}
.articles.subs .block p.title {text-align: center; padding-top: 15px;}
.articles .block p {font-size: 12px; color: #2c2c2c;}
.articles .block:hover p.title a {color: #266599; text-decoration: none;}
.articles .block:hover .pic {border-color: #83b75c;}
.articles.subs .all_link {clear: both; text-align: center; font-size: 14px;}

.cleaner {clear: both;}




.bolezni_block {border-radius: 20px; width: 100%; /*height: 230px;*/ height: auto; background: url(/upload/bolezni_block_bg.jpg) no-repeat; background-size: cover; margin: 30px 0; position: relative; overflow:hidden;padding: 20px;}
.bolezni_block p.title {padding: 15px 0 0 25px; font-size: 19px; font-weight: bold; color: #fff;}
.bolezni_block #tabs {list-style-type: none; padding: 10px 0 0 25px; margin: 0; width: 29%;}
.bolezni_block #tabs li {margin-bottom: 4px;}
.bolezni_block #tabs li a {font-size: 13px; font-weight: bold; color: #d2e7f9;}
.bolezni_block #tabs li#current a {color: #c9f0ab; text-decoration: none;}
.bolezni_block #tabs li a:hover {color: #c9f0ab; text-decoration: none;}

.bolezni_block #ClList {position: absolute; top: 10px; /*left: 195px;*/ left: 30%; font-size: 12px; color: #545454; /*width: 465px;*/ width: 68%; /*height: 250px;*/ height: 100% ;overflow: hidden;}
.bolezni_block #ClList .title {font-size: 24px; color: #c9f0ab; padding: 0 0 21px 15px;}
.bolezni_block #ClList .textbg {background: #dfebf8; padding: 15px 20px; border-radius: 10px; display: block; /*height: 145px;*/ height: auto;}


.phone_banner {width: 681px; height: 90px; background: url(/upload/phone_banner_bg.jpg) no-repeat; margin: 30px auto 30px; text-align: center; font-size: 17px; color: #d2e6f6; font-weight: bold; padding: 15px 0 0 0; letter-spacing: -1px;}
.phone_banner span {display: block; margin: 0px 0 0 0; font-size: 25px; color: #d6f6bb;}
.phone_banner br {display: none;}



.container .contents {margin: 0 0 20px 0;}
.container .contents p {padding-bottom: 3px;}


.green_prices {position: relative; display: table; float: right; margin: 50px -95px 30px 20px; width: 270px; padding-bottom: 35px;}
.green_prices .long_bg {display: table; width: 100%; height: 100%; background: #82b559; display: table-cell; position: absolute; top: -6px; left: 0px; border: 6px solid #eeeeee; border-radius: 20px; z-index: 0;}
.green_prices .intable {margin: 0 0 0 25px; width: 350px; position: relative; z-index: 1;}
.green_prices table {position: relative; z-index:1; width: 320px; font-size: 14px; background: url(/upload/green_prices_border.gif) bottom left repeat-x;}
.green_prices table td {width: 50%;  text-align: center; padding: 8px 0; margin: 0 0 1px 0; background: url(/upload/green_prices_border.gif) top left repeat-x; font-size: 15px; color: #c0fb90; font-weight: bold; vertical-align: middle;}
.green_prices table td a {font-size: 14px; color: #fff;}
.green_prices h2 {position: relative; z-index:1; padding: 20px 0 20px 25px;}
.green_prices .all_prices {position: relative; z-index: 1; font-size: 13px; color: #363636; display: table; margin: 15px 0 0 25px;}



.left_blue_block {margin: 30px 0; background: #266599; border-radius: 20px; border: 6px solid #eeeeee; padding: 20px; margin-left: -26px;}
.left_blue_block p.title {font-size: 22px; color: #bfd8ed; font-weight: bold;}
.left_blue_block p a {color: #fff;}
.left_blue_block p a.activeP {color: #bfd8ed; text-decoration: none;}

.deseasesblock {margin: 0 0 40px 0;}
.deseasesblock .double {display: table; width: 100%; padding-top: 120px;}
.deseasesblock .block {display: table-cell; height: 100%; width: 49%; position: relative; border: 2px solid #3e81bb; border-radius: 20px; margin: 0 20px;}
.deseasesblock .block .title {width: 100%; position: absolute; top: -88px; background: #266599; border-radius: 20px; font-size: 14px; color: #fff; font-weight: bold; height: 80px; line-height: 75px; text-indent: 85px;}
.deseasesblock .block .title img {position: absolute; top: 10px; left: 10px; width: 61px; margin: 0;}
.deseasesblock .block .list {padding: 20px; height: 100%;}
.deseasesblock .block .list ul {padding: 0 0 0 65px; margin: 0; list-style-type: none; font-size: 12px;}
.deseasesblock .block .list ul li {padding-bottom: 5px;}
.deseasesblock .block .list ul a {color: #333333;}
.deseasesblock .margin {width: 2%; height: 100%; display: table-cell;}
.deseasesblock .margin:nth-child(5) {display: none;}


.want_to_cure {}
.want_to_cure .block {border-radius: 16px; border: 2px solid #e2e2e2; padding: 20px 0;}
.want_to_cure .title {padding: 0 0 25px 0; margin: 0; font-size: 27px; color: #363636; font-weight: bold;}
.want_to_cure .block div {float: left; width: 300px; font-size: 13px; color: #3377b2; padding: 0 0 0 80px;}
.want_to_cure .block .cleaner {float: none!important;}
.want_to_cure .block div a {font-size: 13px; color: #3377b2; position: relative;}

.red { color: red; }

.container div div.img-wrapper img {margin: 0 0 30px;}

.header_bottom {
	background: #e9e9e9;
}

.left span {
	display: block;
}

body > header > div.header_top > div.right > div {
	line-height: 25px;
	margin-top: -2px;
}

.innerText{
	line-height: 2.2;
}
.top_reviews{
	float: right;
/*	margin-top: -164px !important;
	width: 940px;*/
}
/*our advantages*/
.our_advantages {
	clear: both;
	margin-bottom: 50px;
}
.our_advantages .h1 {
	color: #004d8c;
	text-transform: uppercase;
}

.our_advantages_all {
	/* padding-left: 5%; */
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: baseline;
	align-items: baseline;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.advantage_block {
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 20px 60px;
	flex-basis: 30%;
	text-align: center;
}
.advantage_block:hover {
	background: #e9e9e9;
}
.advantage_block img {
	height: 100px;
	margin-bottom: 10px;
}
.advantage_block span {
	display: block;
	color: #010101;
  font-size: 16px;
}

.tags_cloud {
	background: #e9e9e9;
	border-radius: 7px;
	padding: 10px 10px 13px;
	margin:30px 0 0;
	width:100%;
	height:auto;
	float:left;
}
.tags_cloud li {
	display: inline-block;
	margin: 2px 2px;
	font-size: 13px;
}

.mobile-menu, .mobile-submenu {
  display: none;
}

/***/

.cookie-notification {
  position: fixed;
  background-color: rgba(0, 0, 0, .8);
  bottom: 0;
  width: 100%;
  color: white;
  padding: 15px;
}

.cookie-notification_hidden_yes {
  display: none;
}

.cookie-notification__header {
  margin-bottom: 10px;
  font-size: 23px;
}

.cookie-notification__body {
  margin-bottom: 10px;
}

/* 
.services-list h3 {
  color: #304f8f;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  margin: 0;
  padding: 20px 0;
  clear: both;
}
.services-list .item {
  display: table;
  position: relative;
  height: 64px;
  line-height: 16px;
  width: 24%;
  float: left;
  padding-left: 80px;
  padding-right: 15px;
  margin-bottom: 20px;
}
.services-list .item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  margin: 0;
}
.services-list .item a {
  text-decoration: none;
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
}
.services-list .item a:hover {
  text-decoration: underline;
  color: #3f5483;
}
.services-list .item.item-section-318 {
  display: block;
  position: relative;
  height: 200px;
  line-height: 25px;
  width: 33%;
  padding: 0px;
}
.services-list .item.item-section-318 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: gray;
  border-radius: 10px;
}
.services-list .item.item-section-318 a {
  text-decoration: none;
  display: table;
  font-size: 20px;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  width: 300px;
  height: 200px;
  position: relative;
}
.services-list .item.item-section-318 a:hover {
  text-decoration: none;
  color: white;
}
.services-list .item.item-section-318:nth-child(2) a, .services-list .item.item-section-318:nth-child(3n+2) a {
  margin: 0 auto;
}
.services-list .item.item-section-318:nth-child(3) a, .services-list .item.item-section-318:nth-child(3n+3) a {
  margin: 0 0 0 auto;
}
.services-list .item.item-section-318 span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  padding: 15px;
}
*/

input.otpravit {
  background-color: #22649b !important;
  color: white;
  text-align: center !important;
}
form.zapis input {
  border: none;
  background-color: lightgray;
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  width: 32.9%;
  border-radius:5px;
}


.doctors-block .doctors-header {
  margin-top: 60px;
  text-align: center;
  font-size: 22px;
  font-size: 30px;
  color: #32518a;
  margin-bottom: 20px;
}
.doctors-block .doctor {
  display: inline-block;
  width: 33%;
  padding-right: 15px;
  vertical-align: top;
  margin-bottom: 15px;
  margin-top: 15px;
}

.doctors-block .doctor-img {
    float: left;
    height: 150px;
    width: 40%;
    overflow: hidden;
    position: relative;
}

.doctors-block .doctor img {
  /* float: left; */
  /* width: 150px; */
  /* margin: 0 15px 0 0; */
  /* height: 200px; */
  /* width: 40%; */
  /* overflow: hidden; */
  /* position: relative; */
  position: absolute;
  top: -10%;
  left: -35%;
  width: 200px;
}

.doctor-description {
    margin-left: 2%;
    display: block;
    float: left;
    width: 58%;
    text-align: left;
}

.doctors-block .doctor .doctor-name, .doctors-block .doctor .doctor-name a {
  text-transform: uppercase;
  font-weight: bold;
  color: #32518a;
  /* padding-bottom: 15px; */
  /* font-size: 18px; */
  font-size: 100%;
  text-decoration: none;
}
.doctors-block .doctor .doctor-position {
  color: #32518a;
  /* padding-bottom: 15px; */
  font-size: 14px;
  color: #004d8c;
  font-size: 13px;
  margin-top: 10px;
  line-height: 14px;
}
.doctors-block .doctor .doctor-desc{
  /* font-size: 14px; */
  font-size: 13px;
  margin-top: 8px;
  line-height: 14px;
}
.doctors-bottom {
  clear: both;
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
}



/* Раскоментировать, когда вместо слайдера будет карусель на главной
.slider{
		margin: 0 auto;
}
.slider .slick-arrow{
	width: 30px;
  height: 80px;
  border: 0;
  font-size: 0;
  position: absolute;
  top: 26%;
  z-index: 1;
}
.slider .slick-prev{
	background: url("/local/img/arr_left.png") no-repeat 0 0 transparent;
  left: 0;
}
.slider .slick-next{
  background: url("/local/img/arr_right.png") no-repeat 0 0 transparent;
  right: 0;
}
*/
.programm {
  text-align: center;
  padding: 0 15px;
}
.programm img {
  display: inline!important;
}
.programm-name, .programm-name a {
  color: #004d8c;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.cures-block li {
  float: left;
  width: 48%;
  padding: 0 3%;
}
.question-phone {
	margin: 60px auto;
	text-align: center;
}
.question-phone a {
	text-align: center;
	color: #fff;
	background-color: #59a71a;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 6px;
	transition: all .2s ease;
}
.question-phone a:hover {
	color: #fff;
	background-color: #66b724;
}

/* Стили для выпадающего списка 22.02.18 start */

.main-accordion   {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
}

.accordion-header {
    background-color: #CECED0;
    color: #444;
    padding: 0 10px 0 18px;
    text-align: left;
    border-radius: 10px;
    margin: 5px 0px;
    font-weight: bold;
}

.accordion-header table, .accordion-header td {
    border: none;
}

.accordion-header td.gold {
    color: #fff;
    height: 100%;
    background: url(./images/gold.png) no-repeat;
    background-size: cover;
}

.accordion-header th, .accordion-header td {
    padding: 5px;
    text-align: center;
 }

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #22649b;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: 5px 0px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/*.active, .accordion:hover {
    background-color: #9CAACA;
}*/

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 10px 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: "\025BC";  /* Unicode character for "arrow down" */
    font-size: 13px;
    color: #fff;
    float: right;
    margin-left: 5px;
}

/* .active:after {
   content: "\25B2"; Unicode character for "arrow up"
} */

.panel table, .panel th, .panel td {
    border: 2px solid #CECED0;
    border-collapse: collapse;
}

.panel th {
    background-color: #CECED0;
}

 .panel th, .panel td {
    border-right: 2px solid #9CAACA;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
 }

.panel td {
    width:12%;

}

.panel table {
    border-left: 0;
    border-right: 0;
}

.panel th:first-child, .panel td:first-child {
    border-left: 0;
    text-align: left;
}

.panel th:last-child, .panel td:last-child {
    border-right: 0;
}

.panel td div.yes {
    display: inline-block;
    width: 16px;
    height: 14px;
    background: url(./images/icon_yes.png) no-repeat 0 100%;
    background-size: contain;
}

/* Стили для выпадающего списка 22.02.18 end */

/* Стили для таблиц 05.03.18 start */

.allergy-diagnosis-table {
	text-align: center;
}
.allergy-diagnosis-table th img {
	margin: 0;
}
.allergy-diagnosis-table, .allergy-diagnosis-table td {
    border-bottom: 2px solid #CECED0;
    border-collapse: collapse;
}
.allergy-diagnosis-table th {
	padding: 15px;
    border-bottom: 2px solid #CECED0;
    font-weight: 400;
}
.allergy-diagnosis-table td {
	border-right: 2px solid #CECED0;
    padding: 15px;
}
.allergy-diagnosis-table td:last-child {
    border-right: 0;
}
.allergy-diagnosis-table-column__header {
	text-transform: uppercase;
}
.table-row__header {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
    color: #32518a;
}
.table-column__disabled {
	opacity: 0.6;
}

.urology-table {
	border-collapse: collapse;
}

.urology-table-column__header {
	display: table-header-group;
	vertical-align: middle;
	color: #fff;
	text-align: center;
}

.urology-table th {
	background-color: #22649b;
	padding: 15px;
	font-weight: 400;
}
.urology-table th:first-child {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.urology-table th:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.urology-table td {
	border-right: 2px solid #9CAACA;
	border-bottom: 2px solid #CECED0;
    padding: 25px;
}
.urology-table td:last-child {
    border-right: 0;
}

/* Стили для таблиц 05.03.18 end */

.slidesjs-stop,
.slidesjs-play {
	display: none !important;
}

.main-slider .slides .slidesjs-previous, .main-slider .slides .slidesjs-next {
    display: inline-block;
}
.socnets .ok {
	background: url(../images/icons/ok.png) center center no-repeat;
}

.socnets .insta {
	background: url(../images/icons/in.png) center center no-repeat;
}

.doctors-block:before {
    content: "";
    display: table;
    clear: both;
}


/*---------------------------------
		DOCTORS MAIN
-----------------------------------*/
.main-news.doctors .main-news-items {
	/*display: inline-block;*/
	width: 100%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.main-news.doctors .spec-item {
	width: auto;
	text-align: center;
	padding: 20px 24px 0;
	margin: 0 auto;
}
.main-news.doctors .spec-img-link {
	display: block;
}
.main-news.doctors .spec-img {
	border-radius: 5px;
	box-shadow: 0 5px 15px -7px #777;
	transition: all .3s ease;
}
.main-news.doctors .spec-item:hover .spec-img {
	box-shadow: 0 5px 25px -7px #777;
	transform: scale(1.016);
}
.main-news.doctors .spec-description {

}
.main-news.doctors .spec-title {
	font: 700 normal 18px/1.2 'Open Sans', Arial, sans-serif;
	color: #004d8c;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	margin: 16px 0 6px;
}
.main-news.doctors .spec-item:hover .spec-title {
	opacity: .9;
}
.main-news.doctors .spec-preview {
	font: italic 11pt/1.3 "Open Sans", Arial, sans-serif;
	color: #595959;
}
.main-news.doctors .detail-text {
	font-size: 13px;
	line-height: 14px;
}
/*------- /DOCTORS MAIN ---------
=============================*/


/*------------------------
		REVIEWS
--------------------------*/
.reviews__block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 20px;
}
.reviews__item {
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	padding: 0 20px;
	position: relative;
}
.reviews__content {
	text-align: left;
}
.reviews__item::after {
	content: "„";
	opacity: 0.15;
	font-family: Georgia, serif;
	font-size: 140px;
	line-height: 10px;
	font-weight: bold;
	position: absolute;
	top: 60px;
	right: 20px;
	color: #2e5189;
	z-index: 1;
}
.reviews__content > * {
	padding: 0;
}
.reviews__content a {
	text-decoration: none;
	display: inline-block;
}
.reviews__text,
.reviews__text * {
/*	font-family: "Open Sans",Helvetica,Arial,sans-serif;
	font-size: 15px;
	font-style: italic;
	line-height: 1.5em;*/
	font: normal 11pt/1.5 "Open Sans",Arial,sans-serif;
	color: #333;
	padding-bottom: 10px;
}
.reviews__text,
.reviews__text > *:last-child {
	padding-bottom: 0;
}
.reviews__name {
	font-weight: bold;
} 
.reviews__name::before {
	content: '';
	display: block;
	width: 40px;
	height: 4px;
	background-color: #2e5189;
	margin-top: 20px;
	margin-bottom: 10px;
}
.reviews__date {} 

/*------- /REVIEWS  ---------
=============================*/


/*------------------------
		DOCTORS INNER
--------------------------*/
.doctors {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;

	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	width: 100%;
	text-align: center;
	margin-bottom: 40px;
}
.doctors .doctors__header {
	flex-basis: 100%;
	font-size: 26px;
	color: #004d8c;
	padding: 20px 0;
}
.doctors .doctors__item {
/*	width: 28%;
	padding: 0 20px;
	box-sizing: content-box;*/
	/*width: 240px;*/
	/*font-family: Roboto, 'Open Sans', Arial, sans-serif;*/
	width: 33.333%;
	max-width: 300px;
	padding: 0 24px;
	text-align: center;
	/*margin-bottom: 40px;*/
	margin: 20px 0;
}
.doctors .doctors__img {
	overflow: hidden;
	border-radius: 4px;
}
.doctors .doctors__img img {
	margin: 0;
	width: 100%;
	display: block;
	transition: all .5s ease;
}
.doctors .doctors__item:hover img {
	transform: scale(1.024);
}
.doctors .doctors__description {}
.doctors .doctors__name {
	color: #004d8c;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	margin: 12px 0 8px;
	font: normal 700 18px/22px "Open Sans", Arial, sans-serif;
}
.doctors .doctors__position {
	font: italic 11pt/1.3 "Open Sans", Arial, sans-serif;
	padding: 0;
}
.doctors .doctors__desc {}
.doctors .doctors__bottom {
	flex-basis: 100%;
}

/*---- /DOCTORS INNER  ------
=============================*/




/*----------------------------
	SERVICES LIST
------------------------------*/
.services-list {
	display: flex;
	flex-wrap: wrap;
}
.services-list h3 {
	flex-basis: 100%;
  color: #304f8f;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  margin: 0;
  padding: 20px 0;
  clear: both;
}
.services-list .item {
	flex-basis: 25%;
	line-height: 16px;
	-webkit-transition: box-shadow .1s linear;
	transition: box-shadow .1s ease;
}
.services-list .item:hover {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.15);
	box-shadow: 0 0 10px rgba(0,0,0,.15);
}
.services-list .item img {
	display: block;
	width: 100%;
	max-width: 120px;
	margin: 0 auto 10px;
	transition: opacity .2s ease .1s;
}
.services-list .item:hover img {
	opacity: .85;
}
.services-list .item a {
	display: block;
	padding: 20px;
	color: #43507a;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
}

/*---- /SERVICES LIST  ------
=============================*/






.page-content {
	margin-bottom: 20px;
	clear: both;
}


/*----------------------------
	ABOUT
------------------------------*/
.main-about {
	color: #333;
}
.main-about .h2, .main-about .h3, .main-about .h4 {
	display: block;
	padding: 0;
	margin: 14px auto;	
}
.main-about .h2 {
	font: 500 normal 27pt/36pt 'Open Sans', Arial, sans-serif;
	letter-spacing: -.1px;
	margin-top: 0;
	/*padding: 0 0 30px;*/
}
.main .content .h3.warning {
	display: inline-block;
	padding: 12px 24px;
	font: 600 16pt/1.5 'Open Sans', Arial, sans-serif;
	letter-spacing: -.2px;
	color: #ff6c6c;
	border: 2px solid #ff6c6c;
	margin: 18px 0 6px;
}
/*.main .content .h3 {
	display: inline-block;
	padding: 12px 24px;
	font: 500 18pt/1.5 'Open Sans', Arial, sans-serif;
	letter-spacing: -.2px;
	color: #fff;
	background-color: #ff6c6c;
	margin: 12px 0 6px;
}*/

/*.main .content .h3::before,
.main .content .h3::after {
	content: '';
}*/
.main .content .h4 {
	font-size: 18px;
	line-height: 1.7;
}

.programs {
	width: 100%;
	display: -webkit-flex;;
	display: flex;
	justify-content: -webkit-space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*margin-top: 30px;*/
	margin-bottom: -20px;
}
.programs__item {
	flex-basis: 33.333%;
	height: auto;
	padding: 0 20px;
	margin: 10px 0;
	/*margin-bottom: 20px;*/
}
.programs__img-wrap {
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 5px 25px -7px #777;
	transition: all .3s ease;
}
.programs__img-wrap:hover {
	box-shadow: 0 5px 15px -7px #777;
	/*transform: scale(1.1);*/
}
.programs__img-wrap img {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	transition: all .3s ease;
}
.programs__img-wrap:hover img {

}
.programs__name {
	display: inline-block;
	margin: 14px 0;
	font-size: 18px;
	/*line-height: 1.5em;*/
	text-decoration: none;
	color: #333;
}
.programs__name:hover {color: #266599;}
.programs__name:active {transform: translateY(1px);}

.programs__img-wrap,
.programs__img-wrap img,
.programs__name {

}


/*------------------------
	INLINE FORM
--------------------------*/
.form-inline {
	background: #e9e9e9;
	padding: 30px;
}
.form-appointment {}
.form-title {
	font-weight: 400;
	font-size: 28px;
	padding: 0 0 20px;
	color: #595959;
}
.form-wrp {

}
.form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: flex-end;
	-ms-align-items: flex-end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.form-elems-3 .form__el {
	width: 33.333%;
}
.form .form__el {
	padding: 0 8px;
}
.form .form__span {
	display: block;
	margin-bottom: 4px;
}
.form .form__input {
	width: 100%;
	height: 38px;
	font-size: 14px;
	padding: 7px 12px;
	box-shadow: inset 0 0 3px 0 rgba(0,0,0,.2);
	line-height: 1;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.form input, .form textarea {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  box-shadow: none;
  outline: none;
}
.form input:focus, .form textarea:focus {
	box-shadow: 0 0 6px -1px rgba(81, 180, 238, 1);
	border: 1px solid rgba(81, 180, 238, 0.9);
}
.form input::-webkit-input-placeholder {color: #828282; opacity:1;}
.form input::-moz-placeholder          {color: #828282; opacity:1;}
.form input:-moz-placeholder           {color: #828282; opacity:1;}
.form input:-ms-input-placeholder      {color: #828282; opacity:1;}
.btn {}
.form__input.btn--green {
	background-color: #59a71a;
	color: #fff;
	text-transform: uppercase;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	transition: background .2s ease;
}
.form__input.btn--green:hover {
	background-color: #66b724;
}
.form-inline .footnote {
	font-size: 12px;
	font-style: italic;
	color: #555;
	padding: 0;
	margin-top: 14px;
}
.form-inline .footnote a {}
sup.required {
	font: 400 normal 9pt/0 'Open Sans', sans-serif; 
	color: #c25246;
	padding-left: 2px;
	top: -.45em;
}
/*------------------------
	/INLINE FORM
--------------------------*/





/*--------------------------
	PRICE LIST
----------------------------*/
.price_list {
/*	position: relative;
	display: table;
	float: none;
	margin: 30px 0 0;
	width: auto;
	padding-bottom: 0;
	clear: both;
	width: 100%;
	padding: 3% 4%;

	background: #f5f5f5;
	border-radius: 0;
	border: 1px solid #e8e8e8;*/
}
.price_list .intable * {
	color: #595959;
}
.price_list h2 {
/*	position: relative;
	z-index: 1;
	font-weight: 400;
	font-size: 28px;
	padding: 0 0 24px;
	color: #595959;*/
}
/*.price_list .all_prices:hover {border-bottom: 1px dotted transparent;}*/
/*.price_list .long_bg {display: none;}*/

.price_list .intable {
	margin: 0;
	width: auto;
	position: relative;
	z-index: 1;

	background: #fff;
	border-radius: 0;
	border: 2px solid #266599;
	padding:2px 3%;
}
.price_list table {
	position: relative;
	z-index: 1;
	width: 100%;
	background: none;
}
.price_list table tr:first-child {

}
.price_list table tr:first-child th {
	font: 600 italic 1.1em/1 'Open Sans', Arial, sans-serif;
	border-bottom: 2px solid #266599;
	padding: 14px 0;
	color: #266599;
}
.price_list table td {
	width: auto;
	padding: 16px 0;
	margin: 0;
	background: none;
	font-size: 12pt;
	vertical-align: middle;
	position: relative;
}
.price_list table th:first-child, .price_list table td:first-child {text-align:left;}
.price_list table th:last-child, .price_list table td:last-child {text-align:right;font-weight:600;}
.price_list table td a {font-size: inherit;color: #fff;}

.price_list table tr {
	border-bottom: 1px solid #d4d4d4;
}
.price_list table tr:last-child {
	border-bottom: 1px solid transparent;
}
.price_list .all_prices {
	position: relative;
	z-index: 1;
	display: table;
	margin: 14px 0 0;
	font-size: 14px;
	color: #363636;
	text-decoration: none;
	border-bottom: 1px dotted #595959;
}

/*----------PRICE PAGE----------*/

.price_list.table .thead tbody {
	display: table-row-group;
}
.price_list.table tbody {
	display: none;
}
.price_list.table .active tbody {
	display: table-row-group;
}
.price_list.table caption {
	font: 600 normal 16pt/1 'Open Sans', Arial, sans-serif;
	padding: 16px 0;
	background-color: #e9e9e9;
	cursor: pointer;
	border-bottom: 2px solid #fff;
	position: relative;
}
/*.price_list.table caption::after {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	right: 18px;
	width: 26px;
	height: 26px;
	background: url(../images/up.png) no-repeat center 46%/50%;
	transform: rotate(180deg);
	transition: all .2s ease;
	opacity: .8;
}
.price_list.table .active caption::after {
	transform: rotate(360deg);
}*/
.price_list.table th,
.price_list.table td {
	vertical-align: middle;
}
.price_list.table th:first-child,
.price_list.table td:first-child {
	width: 5%;
	text-align: center;
}
.price_list.table th:nth-child(2),
.price_list.table td:nth-child(2) {
	width: 15%;
	text-align: center;
}
.price_list.table th:nth-child(3),
.price_list.table td:nth-child(3) {
	width: 66%;
	padding: 12px 10px;
}
.price_list.table th:last-child,
.price_list.table td:last-child {
	width: 14%;
	padding: 0 10px;
}
.price_list.table td.tsection {
	text-align: center;
	font-weight: 600;
	width: 100%;
	padding: 8px 0;
}
/*--------------------------
	/ PRICE LIST
----------------------------*/












.btn.btn--stroke {
	font: normal 1rem/1.3 Arial;
	color: #004d8c;
	display: inline-block;
	padding: 10px 14px;
	border: 1px solid #266599;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
}
.btn.btn--stroke:hover {
	background: #266599;
	color: #fff;
}
.main .content .h1 {
	color: #004d8c;
	font: 400 normal 28px 'Open Sans', Arial, sans-serif;
	text-transform: uppercase;
	padding: 20px 0;
	display: block;
	width: 100%;
	text-align: center;
}

.show__more {}
.ellipsis {
	color: #266599;
	font-weight: 600;
	text-decoration: underline;
	padding-left: 2px;
}

#scrollup {
	display: none;
	width: 54px;
	height: 60px;
	background: #266599 url(../images/up-w.png) no-repeat center 16px/50%;
	border-radius: 4px;
	opacity: .8;
	position: fixed;
	right: 4%;
	bottom: -10px;
	cursor: pointer;
	z-index: 9999;
	transition: all .2s ease;
}
#scrollup:hover {
	opacity: 1;
	transform: translateY(-4px);
}
a[href^=tel] {
	text-decoration: none !important;
}

.iframe-wrap {
	margin: 0 0 10px;
}

.reviews .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .reviews .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .reviews .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .reviews .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.reviews .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.reviews .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .reviews .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .reviews .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #cdd2da;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .reviews .owl-dots .owl-dot.active span, .reviews .owl-dots .owl-dot:hover span {
      background: #266599;
   }