/* ----------------------------------------- */
/* Селекторы для внутренней страницы клиники */
/* ----------------------------------------- */

/* Заголовок страницы клиники */

.clinic-header-container {
	width: 100%;
	padding: 0 15px;
	position: fixed;
	left: 0;
	top: 50px;
	z-index: 20;
}

.clinic-header-container.admin {
	top: 96px;
}

.clinic-header {
	max-width: 1170px;
	max-height: 164px;
	background: #FFF;
	padding: 2px;
	margin: 0 auto;
	position: relative;
	-moz-box-shadow: 0 5px 20px -8px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0 5px 20px -8px rgba(0,0,0,0.7);
	box-shadow: 0 5px 20px -8px rgba(0,0,0,0.7);
}

.clinic-header > span {
	height: 100px;
	margin: 10px 0 12px;
	display: block;
	float: left;
}

.clinic-header > span > img {
	width: 100px;
	height: 100px;
	border: 4px #E4F3FB solid;
	margin: 0 18px 0 10px;
	cursor: pointer;
	box-shadow: 0 0 6px 0 #888;
	-moz-box-shadow: 0 0 6px 0 #888;
	-webkit-box-shadow: 0 0 6px 0 #888;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-header .title {
	color: #444;
	font-family: 'Segoe';
	font-size: 29px;
	line-height: 33px;
	padding: 8px 20px 2px;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-header .clinic-status {
	width: 100%;
	font-family: 'Segoe';
	padding: 0 20px;
}

.clinic-header .clinic-status > div {
	display: inline-block;
}

.clinic-header .clinic-status .rating {
	padding-top: 6px;
	cursor: pointer;
}

.clinic-header .clinic-status .rating div{
	width: 110px;
	height: 20px;
	background: url(/css/design2016/img/stars.png) no-repeat -110px center;
	margin-right: 5px;
	display: inline-block;
}

.clinic-header .clinic-status .rating span {
	color: #F60;
	font-size: 22px;
	font-weight: 300;
	position: relative;
	top: -1px;
	display: inline-block;
}

.clinic-header .clinic-status .reviews-count {
	font-family: 'Arimo';
	font-size: 16px;
	line-height: 16px;
	margin-left: 12px;
	position: relative;
	top: -3px;
}

.clinic-header .clinic-status .clinic-likes {
	height: 38px;
	font-family: 'Arimo';
	font-size: 16px;
	line-height: 39px;
	cursor: default;
	position: relative;
	top: -2px;
	left: 8px;
}

.clinic-header .clinic-status .clinic-likes div {
	width: 24px;
	height: 24px;
	background: url(/css/design2016/img/clinic_like_empty.png) no-repeat left center;
	margin: 7px 4px 0 2px;
	opacity: 0.7;
	cursor: pointer;
	float: left;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-header .clinic-status .clinic-likes div.is-like {
	background: url(/css/design2016/img/clinic_like_full.png) no-repeat left center;
}

.clinic-header .clinic-status .clinic-likes div:hover {
	opacity: 1;
}

.clinic-header .clinic-status .clinic-views {
	font-family: 'Arimo';
	font-size: 16px;
	cursor: default;
	position: relative;
	top: -2px;
	left: 12px;
	margin-right: 23px;
}

.clinic-header .clinic-status .clinic-views div {
	width: 32px;
	height: 32px;
	background: url(/css/design2016/img/clinic_views.png) no-repeat;
	position: relative;
	top: -6px;
	margin: 0 4px;
	opacity: 0.55;
	float: left;
}

.clinic-header .awards {
	display: inline-block;
	position: absolute;
	top: 8px;
	right: 8px;
	opacity: 0.8;
}

.clinic-header .awards img {
	margin: 0 4px 0 0;
	cursor: pointer;
}

.clinic-header .clinic-add2fav {
	padding: 0;
	margin: 0;
	width: 330px;
	height: 26px;
	position: relative;
}
.clinic-header .clinic-add2fav> div {
	position: absolute;
	top: 5px;
	left: 0;
}

.clinic-header .clinic-menu-mobile {
	display: none;
}

.clinic-header .clinic-menu {
	height: 38px;
	position: relative;
	background: -moz-linear-gradient(top, #6fafe5, #5f92c1);
	background: -webkit-linear-gradient(top, #6fafe5, #5f92c1);
	background: -o-linear-gradient(top, #6fafe5, #5f92c1);
	background: -ms-linear-gradient(top, #6fafe5, #5f92c1);
	background: linear-gradient(top, #6fafe5, #5f92c1);
}

.clinic-header .clinic-menu .clinic-menu-area {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.clinic-header .clinic-menu .clinic-menu-item {
	height: 100%;
	color: #FFF;
	font-size: 18px;
	padding: 7px 20px 0;
	text-align: center;
	float: left;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-header .clinic-menu .clinic-menu-item:hover {
	background: rgba(255, 255, 255, 0.2);
}

.clinic-header .clinic-menu .clinic-menu-area .clinic-menu-item-selected {
	background: #3a75a3;
}

.clinic-header .clinic-menu .clinic-menu-cursor {
	height: 100%;
	background: #3a75a3;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.1s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.1s ease-in-out 0s;
	-o-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
}

.clinic-header .clinic-menu .clinic-menu-pointer {
	width: 6px;
	height: 40px;
	background: rgba(180,180,180,0.5);
	position: absolute;
	top: -1px;
	left: -3px;
	z-index: 1;
	-webkit-transition: all 0.1s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.1s ease-in-out 0s;
	-o-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
}

.clinic-menu .clinic-audit {
	padding-top: 3px;
	margin-right: 12px;
	position: relative;
	cursor: pointer;
	float: right;
}

.clinic-menu .clinic-audit.audit-ok {
	cursor: default;
}

.clinic-menu .clinic-audit > i {
	color: #FFF;
	font-size: 23px;
}

.clinic-menu .clinic-audit > span {
	width: 17px;
	height: 17px;
	background: rgba(0,180,0,0.9);
	color: #FFF;
	font-size: 10px;
	font-family: Arial;
	padding-top: 2px;
	text-align: center;
	position: absolute;
	bottom: 2px;
	right: -2px;
	display: block;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
}

.clinic-menu .clinic-audit > span.clinic-audit-alert.error {
	background: rgba(255,0,0,0.8);
}

.clinic-menu .clinic-audit > span.clinic-audit-alert.warning {
	background: rgba(244, 191, 0, 0.95);
}

.clinic-menu .clinic-audit > div {
	width: 320px;
	background: rgba(240,240,240,0.95);
	padding: 9px 14px 14px;
	position: absolute;
	top: 40px;
	right: 0;
	display: none;
	cursor: default;
	overflow: hidden;
	z-index: 99;
	box-shadow: 0 0 5px 0 #666;
	-moz-box-shadow: 0 0 5px 0 #666;
	-webkit-box-shadow: 0 0 5px 0 #666;
}

.clinic-menu .clinic-audit > div > span {
	font-size: 16px;
}

.clinic-menu .clinic-audit > div > div {
	background: #FFF;
	font-size: 15px;
	padding: 6px 4px;
	margin-top: 8px;
	box-shadow: 0 0 5px 0 #BBB;
	-moz-box-shadow: 0 0 5px 0 #BBB;
	-webkit-box-shadow: 0 0 5px 0 #BBB;
}

.clinic-menu .clinic-audit > div > div > div {
	border-bottom: 1px #DDD solid;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.clinic-menu .clinic-audit > div > div > div:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.clinic-menu .clinic-audit .clinic-audit-title {
	font-weight: 600;
	padding-right: 4px;
	cursor: pointer;
}

.clinic-menu .clinic-audit .clinic-audit-title i {
	font-size: 18px;
	padding: 0 2px 0 3px;
	position: relative;
	top: 1px;
}

.clinic-menu .clinic-audit .clinic-audit-title .red {
	color: #F00;
}

.clinic-menu .clinic-audit .clinic-audit-title .yellow {
	color: #f4ca00;
}

.clinic-menu .clinic-audit .clinic-audit-title .green {
	color: #0B0;
}

.clinic-menu .clinic-audit .clinic-audit-text {
	color: #888;
	font-size: 14px;
	line-height: 17px;
	padding: 1px 4px 0 0;
	margin-left: 31px;
	display: none;
}

.clinic-menu .clinic-audit .clinic-audit-text a {
	line-height: 14px;
	display: inline-block;
}

.clinic-menu .clinic-audit .clinic-audit-solution {
	display: none;
}

.clinic-audit-solution-wrap {
	font-size: 16px;
	line-height: 23px;
	padding: 8px 12px 10px;
}

.clinic-audit-solution-wrap ul {
	padding-left: 25px;
	margin: 6px 0 0;
}

.clinic-audit-solution-wrap .audit-growing {
	color: #999;
	font-size: 19px;
	padding-left: 10px;
	cursor: default;
}

.clinic-audit-solution-wrap .audit-growing > span {
	color: #0B0;
	font-size: 16px;
	font-weight: 600;
}

.clinic-menu .clinic-admin-menu .icon-cog {
	width: 30px;
	height: 29px;
	color: #FFF;
	font-size: 30px;
	line-height: 30px;
	margin-left: 6px;
	text-decoration: none;
	cursor: pointer;
	display: block;
	position: relative;
	top: 5px;
	right: 8px;
	float: right;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-menu .clinic-admin-menu .icon-cog::before {
	margin: 1px 1px 0 0;
}

.clinic-menu .clinic-admin-menu .icon-cog.active {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.clinic-menu .clinic-admin-menu .admin-menu {
	width: 300px;
	background: rgba(60,60,60,0.94);
	font-size: 15px;
	line-height: 24px;
	padding: 12px 15px;
	text-shadow: none;
	cursor: default;
	position: absolute;
	top: 40px;
	right: 0;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 999;
	box-shadow: 3px 3px 25px 0 #666;
	-moz-box-shadow: 3px 3px 25px 0 #666;
	-webkit-box-shadow: 3px 3px 25px 0 #666;
}

.clinic-menu .clinic-admin-menu .admin-menu a {
	color: #DDD;
	margin-bottom: 4px;
	display: block;
}

.clinic-menu-mobile .clinic-admin-menu-mobile ul > li > div {
	color: #1d9feb;
	padding: 2px 0;
	cursor: pointer;
}
.clinic-menu-mobile .clinic-admin-menu-mobile ul {
	font-size: 14px;
}

.clinic-menu .clinic-admin-menu .admin-menu a:hover, .clinic-menu .clinic-admin-menu .admin-menu a:focus {
	color: #FFF;
	background-color: inherit;
	text-decoration: none;
}

.clinic-menu .clinic-admin-menu .admin-menu i {
	color: #AAA;
	font-size: 18px;
	padding-right: 8px;
	text-decoration: none;
	position: relative;
	top: 1px;
}

.clinic-menu .clinic-admin-menu .admin-menu div {
	color: #DDD;
	padding-top: 4px;
	cursor: pointer;
}

.clinic-menu .clinic-admin-menu .admin-menu ul {
	color: #AAA;
	/*padding-left: 50px;*/
	margin-bottom: 8px;
}

.clinic-menu .clinic-admin-menu .admin-menu ul a,
.clinic-menu-mobile .clinic-admin-menu-mobile ul a {
	margin-bottom: 0;
	padding: 2px 0;
}

.clinic-menu .admin-menu-hider {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 50;
}

/* Общие селекторы для страницы клиники (каждая вкладка - это clinic-page) */

.clinic-page {
	width: 100%;
	background: #FFF;
	padding: 15px;
	margin: 0;
	position: relative;
}

.clinic-page ~ .clinic-page {
	margin-top: 30px !important;
}

.clinic-page.collapsed {
	padding: 0;
	margin: 0;
}

.clinic-page > span {
	color: #F60;
	font-size: 26px;
	line-height: 38px;
	margin: 5px 9px;
	display: block;
}

.clinic-page > span > span {
	color: #ff9a4d;
	font-family: 'Segoe';
	font-size: 24px;
	line-height: 24px;
	padding-left: 10px;
}

.clinic-page > b.icon-fast-bw {
	display: none;
}

.clinic-page .loading {
	width: 100%;
	height: 290px;
	background: url(/css/design2016/img/loading.gif) no-repeat center center;
}

.clinic-page .loading.services {
	height: 100px;
	margin-top: 20px;
}

.clinic-page .slider-button {
	width: 48px;
	height: 48px;
	position: absolute;
	top: calc(50% - 30px);
	cursor: pointer;
	opacity: 0.3;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page .slider-button:hover {
	opacity: 0.8;
}

.clinic-page .slider-button.left {
	background: url(/css/design2016/img/slider_left.png) no-repeat;
	left: 0;
}

.clinic-page .slider-button.right {
	background: url(/css/design2016/img/slider_right.png) no-repeat;
	right: -6px;
}

.clinic-page .no-found-filter {
	width: 100%;
	height: 290px;
	color: #888;
	font-family: 'Segoe';
	font-size: 20px;
	padding-top: 125px;
	text-align: center;
}

.clinic-page .no-found-filter.services {
	width: 100%;
	height: 160px;
	color: #888;
	font-family: 'Segoe';
	font-size: 20px;
	padding-top: 75px;
	text-align: center;
}

.clinic-page div.empty-slot {
	width: 100%;
	height: 290px;
	border: 2px #DDD dashed !important;
	background: #FBFBFB !important;
	padding: 5px;
	text-align: center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.clinic-page .empty-slot a {
	color: #EEE;
	font-size: 60px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page .empty-slot a::before {
	margin-top: 105px;
}

.clinic-page .empty-slot a:hover {
	color: #DDD;
}

.clinic-page .footer-wrap {
	padding: 2px 15px 10px;
}

.clinic-page .footer-wrap a {
	margin-right: 14px;
}

/* Пустая вкладка */

.clinic-page .empty-block {
	width: 100%;
	height: 70px;
	background: url(/css/design2016/img/empty_block.png) no-repeat center center;
	color: #666;
	font-size: 18px;
	line-height: 35px;
	padding-top: 2px;
	margin: -5px 0 14px;
	text-align: center;
}

.clinic-page .empty-block div {
	color: #666;
	font-size: 15px;
	font-style: italic;
	line-height: 18px;
}

/* Вкладка Инфо */

.clinic-page#info .data-wrap {
	padding: 5px 8px;
}

.clinic-page#info .data-wrap p {
	font-size: 15px;
}

.clinic-page#info .data-wrap code {
	background-color: transparent;
	color: inherit;
}

.clinic-page#info .info {
	color: #444;
	font-size: 15px;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}

.clinic-page#info .info .block {
	color: #444;
	padding-bottom: 10px;
}

.clinic-page#info .info > .block {
	border-bottom: 1px #DDD solid;
	padding-bottom: 0;
	margin-bottom: 10px;
}

.clinic-page#info .info .block b {
	font-style: normal;
}

.clinic-page#info .info .italic {
	font-style: italic;
}

.clinic-page#info .info p {
	font-size: 15px !important;
}

.clinic-page#info .info h1,
.clinic-page#info .info h2,
.clinic-page#info .info h3,
.clinic-page#info .info h4,
.clinic-page#info .info h5,
.clinic-page#info .info h6 {
	color: #444 !important;
	font-family: 'Arimo' !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	margin: 20px 0 10px !important;
}

.clinic-page#info .info p,
.clinic-page#info .info i,
.clinic-page#info .info span {
	color: #444 !important;
	font-family: 'Arimo' !important;
	font-size: 15px !important;
	font-style: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
}

.clinic-page#info .info a {
	color: #1d9feb !important;
	font-family: 'Arimo' !important;
	font-size: 15px !important;
	font-style: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
}

.clinic-page#info .info a:hover {
	color: #23527c !important;
}

.clinic-page#info .info img {
	display: none !important;
}

.clinic-page#info .info .expander {
	width: 100%;
	height: 80px;
	border-bottom: 30px #FFF solid;
	line-height: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: none;
	background: -moz-linear-gradient(top, rgba(255,255,255,0), #FFF);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0), #FFF);
	background: -o-linear-gradient(top, rgba(255,255,255,0), #FFF);
	background: -ms-linear-gradient(top, rgba(255,255,255,0), #FFF);
	background: linear-gradient(top, rgba(255,255,255,0), #FFF);
}

.clinic-page#info .info .expander i {
	color: #AAA !important;
	position: absolute;
	bottom: -29px;
}

.clinic-page#info .info .expander span {
	color: #1d9feb !important;
	position: absolute;
	bottom: -30px;
	left: 25px;
}

.clinic-page#info .info .expander span:hover {
	color: #23527c !important;
}

.clinic-page#info .info .reducer {
	width: 100%;
	padding-top: 20px;
	display: none;
}

.clinic-page#info .info .reducer i {
	color: #AAA !important;
}

.clinic-page#info .info .reducer span {
	color: #1d9feb !important;
	position: relative;
	left: 4px;
}

.clinic-page#info .info .reducer span:hover {
	color: #23527c !important;
}

.clinic-page#info .properties {
	width: 509px;
	border-left: 1px #DDD solid;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom: 16px;
	position: relative;
	float: right;
	z-index: 10;
}

.clinic-page#info .map {
	width: 100%;
	height: 240px;
	border: 1px #BBB solid;
	margin-bottom: 15px;
}

.clinic-page#info .address {
	width: 100%;
	padding: 0 5px;
	margin-bottom: 12px;
}

.clinic-page#info .address div {
	margin-bottom: 2px;
}

.clinic-page#info .address div .clinic-station {
	margin-right: 5px;
	white-space: nowrap;
	display: inline-block;
}

.clinic-page#info .address div .hidden-phone a:first-of-type,
.clinic-page#info .address div .hidden-email a:first-of-type,
.clinic-page#info .address div .hidden-site a:first-of-type {
	line-height: 14px;
	display: inline-block;
}

.clinic-page#info .address div #phones,
.clinic-page#info .address div #partner_phone,
.clinic-page#info .address div .hidden-email a:not(:first-of-type),
.clinic-page#info .address div .hidden-site a:last-of-type {
	display: none;
}

.clinic-page#info .operations {
	width: 100%;
	border-top: 1px #DDD solid;
	padding: 11px 5px 0;
	margin-bottom: 12px;
}

.clinic-page#info .operations div:nth-child(1),
.clinic-page#info .operations div:nth-child(2) {
	margin-bottom: 5px;
}

.clinic-page#info .operations div span {
	margin-right: 5px;
}

.clinic-page#info .operations .no-sign-in {
	font-style: italic;
	text-align: center;
}

.clinic-page#info .bservices {
	width: 100%;
	border-top: 1px #DDD solid;
	padding: 11px 5px 0;
	margin-bottom: 12px;
}

.clinic-page#info .bservices > span {
	padding-bottom: 4px;
	display: block;
}

.clinic-page#info .bservices > div {
	position: relative;
}

.clinic-page#info .bservices > div > span:nth-of-type(1) {
	background: #FFF;
	line-height: 24px;
	padding-right: 4px;
	position: relative;
	z-index: 2;
	float: left;
}

.clinic-page#info .bservices > div > span:nth-of-type(1).pulsing > a {
	animation-name: bservice-pulsing;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: normal;
}

@keyframes bservice-pulsing {
	0%   { color: #1d9feb; }
	25%   { color: #1d9feb; }
	50%   { color: #1d9feb; }
	75%   { color: #ff0000; }
	100%   { color: #1d9feb; }
}

.clinic-page#info .bservices > div > span:nth-of-type(2) {
	color: #F60;
	font-size: 12px;
	text-align: right;
	display: block;
	position: relative;
	top: 5px;
	z-index: 1;
}

.clinic-page#info .bservices > div > span:nth-of-type(2) > span {
	background: #FFF;
	padding-left: 5px;
}

.clinic-page#info .bservices > div > span:nth-of-type(2) > span > a {
	color: #F60;
}

.clinic-page#info .bservices > div > u {
	width: 100%;
	border-bottom: 1px rgba(255, 102, 0, 0.5) dashed;
	position: absolute;
	bottom: 5px;
	left: 0;
}

.clinic-page#info .bservices i {
	color: #9bbbca;
	font-size: 17px;
	padding-right: 4px;
	position: relative;
	top: 1px;
}

.clinic-page#info .bservices i::before {
	margin-left: 2px;
}

.clinic-page#info .add-coworker-container,
.clinic-page#info .add-admin-container {
	display: none;
}

.add-personal-wrap {
	padding: 4px 5px;
}

.add-personal-wrap > div {
	width: 100%;
	margin-bottom: 10px;
}

.add-personal-wrap > div > span {
	font-size: 16px;
	margin-bottom: 4px;
	display: block;
}

.add-personal-wrap >  div > input,
.add-personal-wrap >  div > textarea {
	width: 100%;
	resize: none;
}

.add-personal-wrap > button {
	margin: 0 auto;
	display: block;
}

.clinic-page#info .socials {
	width: 100%;
	border-top: 1px #DDD solid;
	padding: 16px 5px 2px;
}

.clinic-page#info .socials > span {
	padding-right: 9px;
	position: relative;
	top: 2px;
}

.clinic-page#info .additional-wrap {
	width: 100%;
	border-top: 1px #DDD solid;
}

.clinic-page#info .additional-wrap span {
	font-weight: 600;
}

.clinic-page#info .photos {
	padding-top: 16px;
}

.clinic-page#info .photos > div {
	padding-bottom: 10px;
}

.clinic-page#info .photos img {
	width: 208px;
	height: 130px;
	border: 4px #FFF solid;
	margin: 15px 12px 0 0;
	box-shadow: 1px 1px 10px 0 #888;
	-moz-box-shadow: 1px 1px 10px 0 #888;
	-webkit-box-shadow: 1px 1px 10px 0 #888;
}

.clinic-page#info .articles {
	padding-top: 16px;
}

.clinic-page#info .articles > div {
	padding: 16px 40px 5px;
	position: relative;
	display: none;
}

.clinic-page#info .slider-button {
	top: 72px;
}

.clinic-page#info .slider-button.left {
	left: -9px;
}

.clinic-page#info .slider-button.right {
	right: -15px;
}

.clinic-page#info #clinic-articles li > div {
	width: 100%;
	height: 170px;
	background: #F7F7F7;
	padding: 10px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.clinic-page#info #clinic-articles li > div > a > img {
	width: 200px;
	height: 150px;
	display: block;
	float: left;
	box-shadow: 2px 2px 15px 0 #CCC;
	-moz-box-shadow: 2px 2px 15px 0 #CCC;
	-webkit-box-shadow: 2px 2px 15px 0 #CCC;
}

.clinic-page#info #clinic-articles li > div > div {
	margin-left: 218px;
}

.clinic-page#info #clinic-articles li > div > div .clinic-article-title {
	font-size: 16px;
	font-weight: 600;
	padding-top: 4px;
}

.clinic-page#info #clinic-articles li > div > div .clinic-article-author {
	color: #999;
	font-style: italic;
	padding-top: 2px;
}

.clinic-page#info #clinic-articles li > div > div .clinic-article-announce {
	line-height: 20px;
	padding-top: 8px;
}

.clinic-page#info .personal {
	padding-top: 16px;
}

.clinic-page#info .personal > div {
	margin-bottom: 10px;
}

.clinic-page#info .personal > div:last-of-type {
	margin-bottom: 0;
}

.clinic-page#info .links {
	padding: 16px 0 5px;
}

.clinic-page#info .links > b {
	display: block;
}

.clinic-page#info .links > div {
	margin: 6px 0 0 14px;
}

div.clinic_link_indent {
	text-indent: 15px;
}

div.clinic_link_is_selected {
	font-weight: 700;
}

/* Вкладка Запись на прием */

.clinic-page#order .data-wrap {
	padding: 10px 8px 12px;
}

/* - для ЕМИАС */

.clinic-page#order .data-intro {
	font-size: 16px;
	padding: 20px 8px 0;
}

/* - для упрощенной записи */

.clinic-page#order #simple-order {
	background: #F5FCFF;
	border: 1px #68b3e7 solid;
	font-size: 16px;
	padding: 10px;
	margin-bottom: 18px;
	position: relative;
}

.clinic-page#order #simple-order > div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 0 !important;
}

.clinic-page#order #simple-order > div:last-of-type {
	margin-bottom: 10px;
}

.clinic-page#order #simple-order > div > div {
	display: inline-block;
	flex-grow: 1;
}

.clinic-page#order #simple-order > div > div > span {
	padding-bottom: 3px;
	display: block;
}

.clinic-page#order #simple-order > div > div > span > span {
	color: #F00;
	font-size: 20px;
	position: relative;
	top: -1px;
	left: 2px;
}

.clinic-page#order #simple-order > div > div > input {
	width: 100%;
}

.clinic-page#order .order-name {
	width: 20%;
}

.clinic-page#order #simple-order .order-name {
	width: 18% !important;
	min-width: 160px;
}

.clinic-page#order #simple-order .order-bonus,
.clinic-page#order #simple-order .order-relatives,
.clinic-page#order #simple-order .order-name,
.clinic-page#order #simple-order .order-phone,
.clinic-page#order #simple-order .order-email {
	margin: 10px 10px 0 !important;
}

.clinic-page#order .icon-users::before {
	font-size: 15px;
}

.clinic-page#order .order-name:first-of-type {
	padding-left: 0;
}

.clinic-page#order .order-phone {
	width: 18%;
}

.clinic-page#order #simple-order .order-phone {
	width: 14% !important;
	min-width: 160px;
}

.clinic-page#order #simple-order .order-email {
	width: 18% !important;
	min-width: 180px;
}

.clinic-page#order .order-spec,
.clinic-page#order .order-doctor {
	width: 37%;
	padding-right: 16px;
}

.clinic-page#order #simple-order .order-spec,
.clinic-page#order #simple-order .order-doctor,
.clinic-page#order #simple-order .order-time {
	width: auto !important;
	min-width: 200px;
	padding-right: 0 !important;
	margin: 10px !important;
}

.clinic-page#order .order-time input {
	display: block;
}

.clinic-page#order .order-services {
	width: calc(100% - 24px);
	margin: 10px;
}

.order-services .order_med_services_tbl {
	width: 100%;
}

.order-services .order_med_services_tbl td:nth-of-type(1) {
	width: 96%;
	padding-right: 15px;
}

.order-services .order_med_services_tbl td:nth-of-type(2) {
	width: 4%;
	text-align: right;
}

.order-services .order_med_services_tbl td:nth-of-type(2) button {
	min-width: 48px;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

#order_med_services_clear {
	display: none;
}

.order-services .order_med_services_tbl #order_med_services_text {
	border: 1px solid #888;
	color: #444;
	background-color: #FFF;
	font-size: 16px;
	padding: 6px 12px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	min-height: 38px;
	cursor: pointer;
}

.dlg_order_med_services_add_service {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.dlg_order_med_services_add_service > * {
	flex-grow: 1;
}

.clinic-page#order .order-aim {
	width: 100%;
}

.clinic-page#order #simple-order .order-aim {
	width: auto !important;
	min-width: 200px;
	padding-right: 0 !important;
	margin: 10px !important;
}

#order_med_services_text > span {
	color: #BBB;
}

#order_med_services_text > div {
	text-indent: 30px;
	position: relative;
}

#order_med_services_text > div:not(:nth-of-type(1)) {
	margin-top: 2px;
}

#order_med_services_text > div > .remove {
	display: block;
	width: 24px;
	height: 24px;
	background: url(/images/delete_image.png) no-repeat;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.85;
	position: absolute;
	top: -1px;
	left: -1px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}

#order_med_services_find { width: calc(80% - 8px); margin-right: 10px; }
#order_med_services_find_btn { width: calc(20% - 2px); min-width: 52px; }

#order_med_services_results {
	width: 100%;
	height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
	margin-top: 14px;
}

#order_med_services_results div {
	cursor: pointer;
	padding: 3px;
	background-color: #c6d8ed;
	border-bottom: 1px solid #c0c0c0;
}

#order_med_services_results div:hover {
	background-color: #9BBADD;
}

.clinic-page#order .order-remark {
	width: 100%;
}

.clinic-page#order #simple-order .order-remark {
	width: auto !important;
	min-width: 200px;
	padding-right: 0 !important;
	margin: 6px 10px 4px !important;
}

.clinic-page#order .order-remark textarea {
	width: 100%;
	resize: vertical;
}

.clinic-page#order .order-bonus {
	width: 100%;
	display: block !important;
	position: relative;
	top: -7px;
}

.clinic-page#order .order-bonus input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin: 0 8px 0 2px;
	position: relative;
	top: 4px;
}

.clinic-page#order .order-bonus label {
	font-weight: normal;
}

.clinic-page#order .order-captcha {
	margin-bottom: 5px;
	position: relative;
	top: -4px;
	float: right;
}

.clinic-page#order .simple-accept {
	max-width: calc(100% - 220px);
	font-size: 15px;
	font-weight: normal;
	line-height: 19px;
	padding-bottom: 9px;
	padding-left: 28px;
	position: relative;
	display: inline-block;
	/*float: left;*/
}

.clinic-page#order .simple-accept.replacement {
	max-width: calc(100% - 420px);
}

.clinic-page#order .simple-accept input[type=checkbox] {
	width: 18px;
	height: 18px;
	position: absolute;
	top: -3px;
	left: 2px;
}

.clinic-page#order input[type=submit] {
	margin-left: 15px;
	float: right;
}

.btn_replacement_call_simple {
	margin-left: 15px;
}

/* Для сетки расписания - общее */

.clinic-page#order #clinic-schedule-filter {
	width: 600px;
}

/* Для сетки расписания - прогресс-бар */

.clinic-page#order .schedule-progress {
	border-top: 1px #E5E5E5 solid;
	border-bottom: 1px #E5E5E5 solid;
	padding: 20px 0;
	margin: 10px 0 20px;
}

.clinic-page#order .schedule-progress > span {
	width: calc((100% - 105px) / 3);
	position: relative;
	float: left;
	display: block;
}

.clinic-page#order .schedule-progress > span::before {
	width: calc(100% - 60px);
	height: 2px;
	content: '';
	background: #DDD;
	position: absolute;
	top: 18px;
	left: 50px;
	display: block;
}

.clinic-page#order .schedule-progress > span:last-of-type {
	width: auto;
	float: right;
}

.clinic-page#order .schedule-progress > span > span {
	position: relative;
	z-index: 1;
	float: left;
	display: block;
}

.clinic-page#order .schedule-progress > span > span:nth-child(1) {
	width: 38px;
	height: 38px;
	background: #FFF;
	border: 2px #BBB solid;
	font-size: 20px;
	padding: 3px 0 0 11px;
	margin-right: 10px;
	-webkit-border-radius: 38px;
	-moz-border-radius: 38px;
	border-radius: 38px;
}

.clinic-page#order .schedule-progress > span > span:nth-child(2) {
	max-width: 240px;
	height: 38px;
	background: #FFF;
	font-size: 16px;
	line-height: 19px;
	padding-right: 10px;
}

.clinic-page#order .schedule-progress > span:last-of-type > span:nth-child(2) {
	padding-right: 0;
}

.clinic-page#order .schedule-progress > span:nth-child(3) > span:nth-child(2),
.clinic-page#order .schedule-progress > span:nth-child(4) > span:nth-child(2) {
	padding-top: 10px;
}

.clinic-page#order .schedule-progress > span.done > span:nth-child(1) {
	background: #0ab0ff;
	border-color: #0ab0ff;
	color: #FFF;
	cursor: pointer;
}

.clinic-page#order .schedule-progress > span.active > span:nth-child(1) {
	border-color: #0ab0ff;
	box-shadow: 0 0 10px 2px #0ab0ff;
	-moz-box-shadow: 0 0 10px 2px #0ab0ff;
	-webkit-box-shadow: 0 0 10px 2px #0ab0ff;
}

.clinic-page#order .schedule-progress #step-3 > span,
.clinic-page#order .schedule-progress #step-4 > span {
	cursor: default;
}

/* Для сетки расписания - группы */

.clinic-page#order .schedule-groups {
	margin-top: 25px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.clinic-page#order .schedule-group {
	width: calc(50% - 20px);
	margin: 0 10px 20px;
	/*float: left;*/
	/*display: inline-block;*/
	/*vertical-align: top;*/
}

.clinic-page#order .schedule-group:nth-child(even) {
	/*float: right;*/
}

.clinic-page#order .schedule-group > div > span {
	/*width: 50px;*/
	/*height: 50px;*/
	/*background: #FFF;*/
	/*border: 1px #1d9feb solid;*/
	/*padding: 5px;*/
	/*display: block;*/
	/*-webkit-border-radius: 40px;*/
	/*-moz-border-radius: 40px;*/
	/*border-radius: 40px;*/
}

.clinic-page#order .schedule-group #branch_name {
	background: #BBB;
}

.clinic-page#order .schedule-group #branch_name:hover {
	background: #E8E8E8;
}

.branch {
	width: 100%;
}

#branch_name {
	padding-right: 5px !important;
}

#branch_name > i.icon-plus,
#branch_name > i.icon-minus {
	position: absolute;
	top: 11px;
	left: 6px;
	font-size: 20px;
}

#branch_name > span > span {
	padding-left: 5px;
	float: right;
}

#branch_name > span > span > span {
	border-bottom: 1px dashed;
	font-size: 14px;
	font-weight: normal;
}

#branch_name .wrapping-group.wrap > span:first-of-type,
#branch_name .wrapping-group.unwrap > span:last-of-type {
	display: block;
}

#branch_name .wrapping-group.wrap > span:last-of-type,
#branch_name .wrapping-group.unwrap > span:first-of-type {
	display: none;
}

#branch_name .icon-up-dir {
	position: relative;
	top: -1px;
}

.clinic-page#order .schedule-group > div,
.branch > div {
	background: #F5F5F5;
	border: 1px #BBB solid;
	border-bottom: none;
	line-height: 18px;
	min-height: 42px;
	padding: 10px 15px 10px 30px;
	margin: 0;
	position: relative;
	/*top: -15px;*/
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#order .schedule-group > div:hover,
.branch > .group-name:hover, .branch > div:hover {
	background: #E8E8E8;
}

.clinic-page#order .schedule-group > div:last-of-type,
.branch > div:last-of-type{
	border-bottom: 1px #BBB solid;
}

.clinic-page#order .schedule-group > div:nth-of-type(1),
/*.clinic-page#order .schedule-group > div:nth-of-type(2),*/
.branch > .group-name, .branch > div:nth-of-type(2){
	font-weight: 600;
	padding: 11px 15px 11px 40px;
}

/*.clinic-page#order .schedule-group > div:nth-of-type(2),
.branch > div:nth-of-type(2) {
	cursor: default;
}*/

/*.clinic-page#order .schedule-group > div:nth-of-type(2):hover {
	background: #F5F5F5;
}*/

.clinic-page#order .schedule-group > div > img,
.branch > div > img {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 8px;
	left: 8px;
}

/* Для сетки расписания - заголовок */

.clinic-page#order .schedule-title {
	margin-top: 25px;
	margin-bottom: 20px;
}

.clinic-page#order .schedule-title .schedule-name {
	font-size: 18px;
	font-weight: 600;
	line-height: 21px;
	padding-top: 8px;
	/*float: left;*/
}

.clinic-page#order .schedule-title .schedule-calendar {
	margin: 0 12px 0 14px;
	float: right;
}

.clinic-page#order .schedule-title .schedule-calendar > input {
	width: 205px;
}

.clinic-page#order .schedule-title .schedule-prev,
.clinic-page#order .schedule-title .schedule-next {
	color: #1d9feb;
	font-size: 16px;
	line-height: 16px;
	margin-top: 11px;
	cursor: pointer;
	float: right;
}

.clinic-page#order .schedule-title .schedule-prev {
	margin-left: 10px;
}

.clinic-page#order .schedule-title .schedule-prev i,
.clinic-page#order .schedule-title .schedule-next i {
	display: none;
}

.clinic-page#order .schedule-title .disabled {
	color: #888;
	cursor: default;
}

/* Для сетки расписания - легенда  */

.clinic-page#order .schedule-legend {
	margin-bottom: 20px;
}

.clinic-page#order .schedule-legend > span {
	margin-right: 16px;
}

.clinic-page#order .schedule-legend > span > span {
	width: 40px;
	height: 20px;
	margin-right: 4px;
	position: relative;
	top: 5px;
	display: inline-block;
}

.clinic-page#order .schedule-legend .legend-free > span {
	background: #e4f6ff;
	border: 1px #14a9fe solid;
}

.clinic-page#order .schedule-legend .legend-not-approved > span {
	background: #fff9c4;
	border: 1px #dcae01 solid;
}

.clinic-page#order .schedule-legend .legend-approved > span {
	background: #ffe4d8;
	border: 1px #ff714d solid;
}

.clinic-page#order .schedule-legend .legend-disabled > span {
	background: #F8F8F8;
	border: 1px #BBB solid;
}

/* Для сетки расписания - общий список ресурсов  */

.clinic-page#order .schedule-total {
	width: 100%;
	margin-bottom: 2px;
}

.clinic-page#order .schedule-total th {
	width: 11%;
	border-bottom: 1px #DDD solid;
	color: #666;
	font-size: 16px;
	font-weight: normal;
	line-height: 21px;
	text-align: center;
	padding: 12px 0 8px;
	background: -moz-linear-gradient(top, #FFF, #DDD);
	background: -webkit-linear-gradient(top, #FFF, #DDD);
	background: -o-linear-gradient(top, #FFF, #DDD);
	background: -ms-linear-gradient(top, #FFF, #DDD);
	background: linear-gradient(top, #FFF, #DDD);
}

.clinic-page#order .schedule-total th:first-of-type {
	width: 23%;
	text-align: left;
	padding-left: 10px;
}

.clinic-page#order .schedule-total th.today {
	font-weight: 600;
}

.clinic-page#order .schedule-total th.choose {
	color: #0A96DE;
	font-weight: 600;
}

.clinic-page#order .schedule-total td {
	height: 64px;
	background: #FFF;
	color: #444;
	font-size: 15px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 4px;
	min-width: 110px;
}

.clinic-page#order .schedule-total td:first-of-type {
	padding-left: 74px;
	padding-right: 8px;
	text-align: left;
	vertical-align: middle;
	position: relative;
	min-width: 220px;
}

.clinic-page#order div.t_wrapper {
	overflow-x: auto;
	margin-bottom: 20px;
}
.clinic-page#order div.t_wrapper::-webkit-scrollbar { /* Width/Height */
	width: 12px;
	height: 12px;
}
.clinic-page#order div.t_wrapper::-webkit-scrollbar-track { /* Track */
	background: #f1f1f1;
}
.clinic-page#order div.t_wrapper::-webkit-scrollbar-thumb { /* Handle */
	background: #888;
}
.clinic-page#order div.t_wrapper::-webkit-scrollbar-thumb:hover { /* Handle on hover */
	background: #555;
}

.clinic-page#order .schedule-total td:first-of-type > img {
	width: 60px;
	height: 60px;
	margin-right: 10px;
	position: absolute;
	left: 0;
	bottom: 12px;
	display: block;
	cursor: pointer;
	-webkit-border-radius: 64px;
	-moz-border-radius: 64px;
	border-radius: 64px;
	box-shadow: 2px 2px 15px 0 #CCC;
	-moz-box-shadow: 2px 2px 15px 0 #CCC;
	-webkit-box-shadow: 2px 2px 15px 0 #CCC;
}

.clinic-page#order .schedule-total td:first-of-type .name {
	color: #555;
	font-size: 15px;
	font-weight: bold;
	line-height: 17px;
	margin-top: 3px;
	display: block;
	cursor: pointer;
}

.clinic-page#order .schedule-total td:first-of-type .info {
	color: #888;
	font-size: 14px;
	line-height: 17px;
	margin-top: 4px;
	display: block;
}

.clinic-page#order .schedule-total tr:first-of-type td {
	padding-top: 20px;
}

.clinic-page#order .schedule-total td > div {
	width: 100%;
	height: 64px;
	display: table;
}

.clinic-page#order .schedule-total td > div > div {
	background: #e4f6ff;
	border: 1px #14a9fe solid;
	color: #444;
	line-height: 22px;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#order .schedule-total td > div > div > span {
	color: #888;
	font-size: 14px;
	display: block;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#order .schedule-total td > div > div:hover {
	background: #14a9fe;
	color: #FFF;
}

.clinic-page#order .schedule-total td > div > div:hover > span {
	color: #FFF;
}

.clinic-page#order .schedule-total td > div > div.disabled {
	background: #F8F8F8;
	border: 1px #CCC solid;
	color: #BBB;
	cursor: default;
}

.clinic-page#order .schedule-total td > div > div.disabled > span {
	color: #BBB;
}

/* -- для ячеек -- */

.clinic-page#order .schedule-total tbody tr:nth-child(even) td {
	height: 0;
	padding: 0 10px;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div {
	height: auto;
	padding: 0 0 5px;
	display: none;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > span:nth-child(1) {
	height: 1px;
	border-top: 1px #999 solid;
	position: relative;
	top: 7px;
	display: block;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > span:nth-child(2) {
	width: 10px;
	height: 10px;
	background: #FFF;
	border-left: 1px #909090 solid;
	border-top: 1px #909090 solid;
	position: relative;
	top: 1px;
	display: block;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > div {
	background: none;
	border: none;
	padding: 0 2px;
	text-align: left;
	display: block;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div .waiting-cells {
	width: 208px;
	height: 13px;
	background: url(/images/loadingAnimation.gif) no-repeat;
	margin: 20px auto 10px;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > div > span {
	position: relative;
	width: 78px;
	background: #e4f6ff;
	border: 1px #14a9fe solid;
	color: #666;
	font-size: 20px;
	padding: 5px 10px;
	margin: 8px 3px 0 3px;
	text-align: center;
	display: inline-block;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > div > span > div,
.clinic-page#order .schedule-personal td > div > div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: auto;
	background: rgba(255,255,255,0.8);
	color: #444444 !important;
}

.clinic-page#order .schedule-total tbody tr:nth-child(even) td > div > div > span:hover {
	background: #14a9fe;
	color: #FFF;
}

/* Для сетки расписания - информация о конкретном ресурсе */

.clinic-page#order .resource-info img {
	width: 64px;
	height: 64px;
	margin-right: 12px;
	display: block;
	float: left;
	-webkit-border-radius: 70px;
	-moz-border-radius: 70px;
	border-radius: 70px;
	box-shadow: 2px 2px 15px 0 #CCC;
	-moz-box-shadow: 2px 2px 15px 0 #CCC;
	-webkit-box-shadow: 2px 2px 15px 0 #CCC;
}

.clinic-page#order .resource-info > div {
	height: 70px;
	display: table-cell;
	vertical-align: middle;
}

.clinic-page#order .resource-info > div > span {
	display: block;
}

.clinic-page#order .resource-info > div > .name {
	font-size: 17px;
	font-weight: 600;
}

.clinic-page#order .resource-info > div > .name > a {
	font-size: 15px;
	font-weight: normal;
	margin-left: 15px;
}

.clinic-page#order .resource-info > div > .info {
	color: #666;
}

/* Для сетки расписания - конкретный ресурс */

.clinic-page#order .schedule-personal {
	width: 100%;
	margin-bottom: 22px;
	overflow: hidden;
}

.clinic-page#order .schedule-personal.collapse-busy-cells {
	margin-top: 6px;
}

.clinic-page#order .schedule-personal th {
	width: calc(95% / 7);
	border-bottom: 1px #DDD solid;
	color: #666;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	padding: 12px 0 8px;
	background: -moz-linear-gradient(top, #FFF, #DDD);
	background: -webkit-linear-gradient(top, #FFF, #DDD);
	background: -o-linear-gradient(top, #FFF, #DDD);
	background: -ms-linear-gradient(top, #FFF, #DDD);
	background: linear-gradient(top, #FFF, #DDD);
}

.clinic-page#order .schedule-personal th:first-of-type {
	width: 5%;
	text-align: left;
	padding-left: 10px;
}

.clinic-page#order .schedule-personal.collapse-busy-cells th:first-of-type {
	display: none;
}

.clinic-page#order .schedule-personal.collapse-busy-cells th {
	width: calc(100% / 7);
	border: 1px #FFF solid;
	border-top-color: #DDD;
}

.clinic-page#order .schedule-personal.collapse-busy-cells th:nth-of-type(2) {
	border-left-color: #DDD;
}

.clinic-page#order .schedule-personal.collapse-busy-cells th:last-of-type {
	border-right-color: #DDD;
}

.clinic-page#order .schedule-personal th.today {
	font-weight: 600;
}

.clinic-page#order .schedule-personal th.choose {
	color: #0A96DE;
	font-weight: 600;
}

.clinic-page#order .schedule-personal thead tr:last-of-type th {
	background: none;
	border: none;
	height: 6px;
	padding: 0;
}

.clinic-page#order .schedule-personal td {
	background: transparent;
	text-align: center;
	vertical-align: top;
	padding: 13px 4px 10px;
	position: relative;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td {
	border: 1px #DDD solid;
	border-top: none;
	padding: 12px 14px 6px;
}

.clinic-page#order .schedule-personal td:first-of-type {
	padding-top: 4px;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td:first-of-type {
	display: none;
}

.clinic-page#order .schedule-personal td:first-of-type > div {
	width: auto;
	min-height: 0;
	background: none;
	border: none;
	border-right: 1px #DDD solid;
	color: #888;
	font-size: 14px;
	text-align: right;
	padding: 1px 8px 0 0;
	position: relative;
	overflow: visible;
	cursor: default;
	display: block;
}

.clinic-page#order .schedule-personal td:first-of-type > div:hover {
	background: none;
	color: #888;
}

.clinic-page#order .schedule-personal td:first-of-type > div > span {
	width: 1170px;
	height: 1px;
	border-top: 1px #DDD solid;
	position: absolute;
	top: 9px;
	left: 100%;
	display: block;
}

.clinic-page#order .schedule-personal td > div {
	width: calc(100% - 8px);
	min-height: 30px;
	background: #e4f6ff;
	border: 1px #14a9fe solid;
	color: #444;
	font-size: 18px;
	line-height: 18px;
	text-align: left;
	padding: 5px 6px;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td > div {
	width: 100%;
	text-align: center;
}

.clinic-page#order .schedule-personal td > div:hover {
	background: #14a9fe;
	color: #FFF;
}

.clinic-page#order .schedule-personal td > div.disabled {
	background: #F8F8F8;
	border: 1px #BBB solid;
	color: #BBB;
	cursor: default;
}

.clinic-page#order .schedule-personal td > div.not-approved {
	background: #fff9c4;
	border: 1px #dcae01 solid;
	color: #444;
}

.clinic-page#order .schedule-personal td > div.approved {
	background: #ffe4d8;
	border: 1px #ff714d solid;
	color: #444;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td > div {
	position: static;
	margin-bottom: 6px;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td > div.disabled,
.clinic-page#order .schedule-personal.collapse-busy-cells td > div.approved,
.clinic-page#order .schedule-personal.collapse-busy-cells td > div.not-approved {
	display: none;
}

.clinic-page#order .schedule-personal td > span {
	color: #999;
	margin: 5px 0 9px;
	display: block;
}

.clinic-page#order .schedule-personal td > div > span {
	font-size: 14px;
	padding-left: 5px;
}

.clinic-page#order .schedule-personal td > div > i {
	color: #CCC;
	position: absolute;
	top: 5px;
	right: 1px;
}

.clinic-page#order .schedule-personal td.empty-row {
	color: #888;
	font-size: 17px;
	padding: 30px 0 10px;
	display: table-cell !important;
}

.clinic-page#order .schedule-personal.collapse-busy-cells td.empty-row {
	padding: 30px 0;
}

/* Для сетки расписания - форма записи */

.clinic-page#order .schedule-info {
	width: 330px;
	margin-right: 20px;
	float: left;
}

.clinic-page#order .schedule-info > span {
	color: #666;
	font-size: 18px;
	font-weight: 600;
	padding-left: 4px;
}

.clinic-page#order .schedule-info > div {
	min-height: 357px;
	background: #F5FCFF;
	border: 1px #68b3e7 solid;
	padding: 22px 18px 45px;
	margin: 10px 0 18px;
	position: relative;
}

.clinic-page#order .schedule-info .schedule-info-date,
.clinic-page#order .schedule-info .schedule-info-timer {
	border-bottom: 1px #DDD solid;
	font-size: 16px;
	padding: 0 2px 12px;
	margin-bottom: 16px;
}

.clinic-page#order .schedule-info .schedule-info-date > div,
.clinic-page#order .schedule-info .schedule-info-timer > div {
	font-size: 18px;
	line-height: 18px;
	position: relative;
	float: right;
}

.clinic-page#order .schedule-info .schedule-info-timer > div {
	color: #F00 !important;
}

.clinic-page#order .schedule-info .schedule-info-data {
	border-bottom: 1px #DDD solid;
	font-size: 16px;
	padding: 0 2px 14px;
	margin-bottom: 16px;
}

.clinic-page#order .schedule-info .schedule-info-data:last-of-type {
	border-bottom: none;
	margin-bottom: 2px;
}

.clinic-page#order .schedule-info .schedule-info-data > span:first-of-type {
	color: #888;
	padding-bottom: 8px;
	display: block;
}

.clinic-page#order .schedule-info .schedule-info-data img {
	width: 70px;
	height: 70px;
	margin-right: 12px;
	display: block;
	float: left;
	-webkit-border-radius: 70px;
	-moz-border-radius: 70px;
	border-radius: 70px;
	box-shadow: 2px 2px 15px 0 #CCC;
	-moz-box-shadow: 2px 2px 15px 0 #CCC;
	-webkit-box-shadow: 2px 2px 15px 0 #CCC;
}

.clinic-page#order .schedule-info .schedule-info-data .name {
	line-height: 21px;
	display: block;
}

.clinic-page#order .schedule-info .schedule-info-data .info {
	color: #888;
	font-size: 15px;
	margin-top: 4px;
	display: block;
}

.clinic-page#order .schedule-info > div > span {
	font-size: 15px;
	padding-left: 2px;
	display: block;
}

.clinic-page#order .schedule-info > div > span span.online {
	color: green;
}

.clinic-page#order .schedule-info a {
	font-size: 16px;
	line-height: 17px;
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.clinic-page#order .schedule-order {
	width: calc(100% - 350px);
	position: relative;
	float: left;
}

.clinic-page#order .schedule-order > div.schedule-order-overlay {
	width: 100%;
	height: 100%;
	background-image: url(/css/design2016/img/loading.gif);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(255, 255, 255, 0.8);
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.clinic-page#order .schedule-order > span {
	color: #666;
	font-size: 18px;
	font-weight: 600;
	padding-left: 4px;
}

.clinic-page#order .schedule-order > div.schedule-order-form {
	min-height: 300px;
	background: #F5FCFF;
	border: 1px #68b3e7 solid;
	font-size: 16px;
	padding: 14px 6px 9px;
	margin: 10px 0 18px;
	position: relative;
}

.clinic-page#order .schedule-order > div > div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 0 !important;
	/*margin-bottom: 11px;*/
}

.clinic-page#order .schedule-order > div > div > div {
	flex-grow: 1;
	margin: 5px 10px !important;
	display: inline-block;
}

.clinic-page#order .schedule-order > div > div > div > span {
	color: #666;
	padding-bottom: 3px;
	display: block;
}

.clinic-page#order .schedule-order > div > div > div > span.caption {
	padding-left: 2px;
}

.clinic-page#order .schedule-order > div > div > div > span > span {
	color: #F00;
	font-size: 20px;
	position: relative;
	top: -1px;
	left: 2px;
}

.clinic-page#order .schedule-order > div > div > div > input,
.clinic-page#order .schedule-order > div > div > div > select {
	width: 100%;
}

.clinic-page#order .schedule-order > div > div > div > textarea {
	width: 100%;
	height: 80px;
	resize: none;
}

.clinic-page#order .schedule-order .order-name,
.clinic-page#order .schedule-order .order-phone,
.clinic-page#order .schedule-order .order-email,
.clinic-page#order .schedule-order .order-birthday,
.clinic-page#order .schedule-order .order-policy,
.clinic-page#order .schedule-order .order-address {
	width: 18% !important;
	min-width: 160px;
}

.clinic-page#order .schedule-order .order-aim {
	width: 40%;
	min-width: 180px;
}

.clinic-page#order .schedule-order .order-region {
	width: 100%;
	margin-top: -6px;
}

.clinic-page#order .schedule-order .order-comment {
	width: 100%;
}

.clinic-page#order #recaptcha-schedule {
	position: absolute;
	right: 41px;
	bottom: 105px;
	display: none;
}

.clinic-page#order .schedule-order .recaptcha-wrap-schedule {
	width: 100%;
	height: 90px;
	margin-bottom: 4px;
}

.clinic-page#order .schedule-order .order-register {
	width: 100%;
	margin-bottom: 10px;
	position: relative;
	top: 8px;
}

.clinic-page#order .schedule-order .order-register label {
	font-weight: normal;
}

.clinic-page#order .schedule-order .order-register input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin: 0 8px 0 2px;
	position: relative;
	top: 4px;
}

.clinic-page#order .schedule-order > label {
	font-weight: normal;
	line-height: 19px;
	padding-left: 29px;
	margin-bottom: 8px;
	position: relative;
	display: block;
}

.clinic-page#order .schedule-order > label:last-of-type {
	margin-bottom: 0;
}

.clinic-page#order .schedule-order > label input[type=checkbox] {
	width: 20px;
	height: 20px;
	position: absolute;
	top: -4px;
	left: 2px;
}

.clinic-page#order .schedule-order input[type=submit] {
	margin-left: 20px;
	position: relative;
	float: right;
	z-index: 1;
}

/* Для сетки расписания - сообщение об успешной записи на прием */

.clinic-page#order .schedule-success {
	width: 100%;
	min-height: 357px;
	background: #F5FFF5;
	border: 1px #5B5 solid;
	color: #555;
	text-align: center;
	padding: 30px 40px;
	margin-top: 10px;
	display: table;
}

.clinic-page#order .schedule-success > div {
	vertical-align: middle;
	display: table-cell;
}

.clinic-page#order .schedule-success > div > div {
	display: block !important;
}

.clinic-page#order .schedule-success .schedule-success-text {
	font-size: 17px;
}

.clinic-page#order .schedule-success .schedule-success-addon {
	font-size: 16px;
	margin-top: 20px;
}

.clinic-page#order .schedule-success .schedule-success-link {
	margin-top: 20px;
}

.clinic-page#order .schedule-success .schedule-success-link a {
	font-size: 17px;
}

/* Для сетки расписания - сообщение об ошибке при записи на прием */

.clinic-page#order .schedule-error {
	width: 100%;
	min-height: 357px;
	background: #FFF5F5;
	border: 1px #F55 solid;
	color: #555;
	text-align: center;
	padding: 30px 40px;
	margin-top: 10px;
	display: table;
}

.clinic-page#order .schedule-error > div {
	font-size: 17px;
	vertical-align: middle;
	display: table-cell;
}

.clinic-page#order .schedule-error > div > div {
	margin: 15px 0;
	display: block !important;
}

/* Вкладка Врачи */

.clinic-page#doctors .data-wrap,
.clinic-page#vacancies .data-wrap {
	padding: 20px 45px 27px;
	position: relative;
}

.clinic-page#order .clinic-schedule-filter,
.clinic-page#services .clinic-services-filter,
.clinic-page#doctors .clinic-doctors-filter,
.clinic-page#vacancies .clinic-vacancies-filter {
	position: absolute;
	top: 23px;
	right: 25px;
}

.clinic-page#doctors .clinic-doctors-filter > div {
	font-size: 16px;
	display: inline;
}

.clinic-page#doctors .clinic-doctors-filter > div > label {
	margin-left: 5px;
	margin-bottom: -13px;
}

.clinic-page#doctors #clinic-doctors-filter-name,
.clinic-page#vacancies #clinic-vacancies-filter-spec {
	width: 300px;
}

.clinic-page#doctors #clinic-doctors-filter-name {
	margin-left: 10px;
}

.clinic-page#doctors #clinic-doctors-filter-spec {
	width: 250px;
	margin-left: 10px;
}

.clinic-page#vacancies #clinic-vacancies-filter-amount {
	width: 200px;
	margin-left: 10px;
}

.clinic-page#doctors #clinic-doctors li > div {
	width: 198px;
	/*width: 100%;*/
	min-height: 320px;
	background: #EEE;
	padding: 5px;
	margin: 0 auto;
	text-align: center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.clinic-page#doctors #clinic-doctors li > div > a > img {
	width: 150px;
	height: 150px;
	margin: 14px auto 10px;
	cursor: pointer;
	display: block;
	-webkit-border-radius: 150px;
	-moz-border-radius: 150px;
	border-radius: 150px;
	box-shadow: 2px 2px 15px 0 #CCC;
	-moz-box-shadow: 2px 2px 15px 0 #CCC;
	-webkit-box-shadow: 2px 2px 15px 0 #CCC;
}

.clinic-page#doctors #clinic-doctors li > div > span {
	width: 188px;
	height: 60px;
	line-height: 19px;
	padding: 0 10px;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
}

.clinic-page#doctors #clinic-doctors li > div > span:last-of-type {
	height: 40px;
	line-height: 16px;
}

.clinic-page#doctors #clinic-doctors li > div > span span {
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#doctors #clinic-doctors li > div > span span:hover {
	color: #000;
}

.clinic-page#doctors .clinic-doctors-list {
	margin-bottom: 10px;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor {
	width: 50%;
	margin-top: 18px;
	float: left;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > a {
	display: block;
	float: left;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > a > img {
	width: 50px;
	height: 50px;
	cursor: pointer;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-shadow: 1px 1px 10px 0 #999;
	-moz-box-shadow: 1px 1px 10px 0 #999;
	-webkit-box-shadow: 1px 1px 10px 0 #999;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > span {
	padding-right: 25px;
	margin: 2px 0 0 65px;
	display: block;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > span > div {
	margin-bottom: 1px;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > span a {
	font-size: 16px;
}

.clinic-page#doctors .clinic-doctors-list > .clinic-doctor > span > span {
	color: #999;
	cursor: pointer;
}

/* Вкладка Услуги */

.clinic-page#services #clinic-services-filter-name {
	width: 300px;
	margin-left: 10px;
}

.clinic-page#services #clinic-services-filter-price {
	width: 200px;
	margin-left: 10px;
}

.clinic-page#services .data-intro {
	padding: 20px 10px 0;
}

.clinic-page#services .data-wrap {
	padding: 25px 8px 27px;
	/*padding: 10px 8px 27px; #22900 */
	overflow: hidden;
}

.clinic-page#services .data-wrap .services-scroll-area {
	max-height: 540px;
	border: 1px #E0E0E0 solid;
}

.clinic-page#services .data-wrap .mCSB_outside + .mCSB_scrollTools {
	right: -4px;
}

.clinic-page#services .data-wrap .mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

.clinic-page#services .data-wrap .show-more {
	padding-top: 10px;
	display: inline-block;
}

.clinic-page#services .folder.opened > div:first-of-type {
	background: -moz-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -o-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -ms-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
}

.clinic-page#services .folder > div:first-of-type {
	border-bottom: 1px #1d9feb solid;
	color: #1d9feb;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
	padding: 22px 10px 11px;
	cursor: pointer;
	background: -moz-linear-gradient(top, #FFF, #FFF);
	background: -webkit-linear-gradient(top, #FFF, #FFF);
	background: -o-linear-gradient(top, #FFF, #FFF);
	background: -ms-linear-gradient(top, #FFF, #FFF);
	background: linear-gradient(top, #FFF, #FFF);
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#services .folder > div:first-of-type i {
	font-size: 20px;
	padding-right: 10px;
	position: relative;
	top: 1px;
}

.clinic-page#services .folder > div:first-of-type:hover {
	background: -moz-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -o-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: -ms-linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
	background: linear-gradient(top, rgba(255,255,255,0), #e2f4fe);
}

.clinic-page#services .folder > div:last-of-type {
	padding: 0 0 10px 34px;
	display: none;
}

.clinic-page#services table {
	width: 100%;
	/*margin-top: 15px; #22900 */
}

.clinic-page#services .folder table {
	margin-top: 15px;
}

.clinic-page#services table tr {
	height: 36px;
}

.clinic-page#services table tr:hover {
	background: #EEE;
}

.clinic-page#services table th {
	background: #e9f8ff;
	border-top: 4px #e9f8ff solid;
	border-bottom: 4px #0A96DE solid;
	line-height: 19px;
	text-align: center;
	vertical-align: middle;
}

.clinic-page#services table td {
	border-top: 1px #FFF solid;
	border-bottom: 1px #DDD solid;
	color: #666;
	line-height: 20px;
	padding: 1px 10px 0;
	text-align: left;
	vertical-align: middle;
}

.clinic-page#services table td:nth-child(1) {
	text-align: center;
}

.clinic-page#services table td:nth-child(3),
.clinic-page#services table td:nth-child(4) {
	padding-left: 20px;
	text-align: right;
	white-space: nowrap;
}

.clinic-page#services table td:nth-child(odd) {
	background: #F8F8F8;
}

.clinic-page#services table tr:hover td:nth-child(odd) {
	background: #EEE;
}

.clinic-page#services table td .icon-cart-plus {
	color: rgba(29, 159, 235, 0.65);
	font-size: 22px;
	cursor: pointer;
	position: relative;
	top: 2px;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#services table td .icon-cart-plus::before {
	margin-right: 0;
}

.clinic-page#services table td .icon-cart-plus:hover {
	color: rgba(29, 159, 235, 1);
}

.clinic-page#services table td .icon-cart-plus.bubble::before {
	animation: bubble 0.7s ease-in-out;
}

@keyframes bubble {
	50% {
		-moz-transform: scale(2,2);
		-ms-transform: scale(2,2);
		-webkit-transform: scale(2,2);
		-o-transform: scale(2,2);
		transform: scale(2,2);
	}
	100% {
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		-o-transform: scale(1,1);
		transform: scale(1,1);
	}
}

.clinic-page#services .service-name {
	display: block;
}
.clinic-page#services .service-desc {
	display: block;
	font-size: 70%;
	color: #999;
	text-decoration: none !important;
	line-height: 1.4;
	padding: 1px 0 2px;
}
.clinic-page#services .service-folder-desc {
	display: block;
	font-size: 70%;
	color: #999;
	text-decoration: none !important;
	margin-left: 38px;
	line-height: 1.4;
	padding: 2px 0 0;
}

/* Вкладка Акции */

.clinic-page#actions .data-wrap {
	padding: 15px 8px 0;
	position: relative;
}

.clinic-page#actions .data-wrap > div {
	background: #F7F7F7;
	border: 1px #DDD solid;
	padding: 20px;
	margin-bottom: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#actions .data-wrap > div:hover {
	background: #F0F0F0;
}

.clinic-page#actions .data-wrap > div img {
	width: 200px;
	height: 150px;
	display: block;
	float: left;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 1px 1px 8px 0 #888;
	-moz-box-shadow: 1px 1px 8px 0 #888;
	-webkit-box-shadow: 1px 1px 8px 0 #888;
}

.clinic-page#actions .data-wrap > div > div {
	margin-left: 222px;
}

.clinic-page#actions .data-wrap > div .title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.clinic-page#actions .data-wrap > div .descr {
	margin-bottom: 5px;
}

.clinic-page#actions .data-wrap > div .prices {
	color: #666;
	font-size: 17px;
	padding-top: 8px;
}

.clinic-page#actions .data-wrap > div .param {
	color: #666;
	padding-top: 8px;
}

.clinic-page#actions .data-wrap > div > div > div > span:first-of-type {
	color: #888;
	font-size: 15px;
	font-style: italic;
	padding-right: 6px;
}

.clinic-page#actions .data-wrap > div .prices span.price {
	color: #090;
	font-size: 20px;
	font-weight: 600;
	line-height: 20px;
	padding-right: 5px;
}

.clinic-page#actions .data-wrap > div .prices span.old-price {
	color: #666;
	font-size: 16px;
	padding-left: 10px;
	text-decoration: line-through;
}

/* Вкладка Консультации */

.clinic-page#consultations .data-intro {
	padding: 5px 10px 10px;
}

.clinic-page#consultations .data-wrap {
	padding: 20px 45px;
	margin-bottom: 15px;
	position: relative;
}

.clinic-page#consultations .consultations-slider {
	display: none;
}

.clinic-page#consultations .clinic-page-question {
	width: calc(80% - 40px);
	background: #E5E5E5;
	border: 2px #E5E5E5 solid;
	padding: 12px 18px;
	margin: 0 0 15px 40px;
	position: relative;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.clinic-page#consultations .clinic-page-question:after {
	width: 0;
	height: 0;
	content: '';
	border: 32px solid transparent;
	border-right-color: #E5E5E5;
	border-left: 0;
	border-bottom: 0;
	margin-top: -20.5px;
	margin-left: -32px;
	position: absolute;
	left: 0;
	bottom: 15%;
}

.clinic-page#consultations .clinic-page-question > a {
	font-size: 15px;
	font-weight: 600;
}

.clinic-page#consultations .clinic-page-question > div {
	color: #666;
	font-size: 14px;
	line-height: 19px;
	margin-top: 4px;
}

.clinic-page#consultations .clinic-page-answer {
	width: calc(80% - 100px);
	min-height: 61px;
	background: #cae7ff;
	border: 2px #cae7ff solid;
	color: #555;
	font-size: 14px;
	line-height: 19px;
	padding: 10px 18px 12px;
	margin: 0 100px 0 20%;
	position: relative;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.clinic-page#consultations .clinic-page-answer:after {
	width: 0;
	height: 0;
	content: '';
	border: 32px solid transparent;
	border-left-color: #cae7ff;
	border-right: 0;
	border-top: 0;
	margin-top: -20.5px;
	margin-right: -32px;
	position: absolute;
	right: 0;
	top: 40px;
}

.clinic-page#consultations .clinic-page-consultant {
	font-size: 12px;
	font-style: italic;
	line-height: 13px;
	text-align: right;
	margin: 8px 0 0;
}

.clinic-page#consultations .clinic-page-avatar {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	display: block;
	float: right;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-shadow: 1px 1px 8px 0 #AAA;
	-moz-box-shadow: 1px 1px 8px 0 #AAA;
	-webkit-box-shadow: 1px 1px 8px 0 #AAA;
}

/* Вкладка Вакансии */

.clinic-page#vacancies #clinic-vacancies li > div {
	width: 100%;
	height: 290px;
	background: #EEE;
	padding: 5px;
	text-align: center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.clinic-page#vacancies #clinic-vacancies li > div > span {
	width: 330px;
	height: 50px;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
	padding: 5px 10px 0;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
}

.clinic-page#vacancies #clinic-vacancies li > div > span:last-of-type {
	height: 45px;
	font-size: 15px;
	font-weight: 300;
	line-height: 16px;
	padding: 0 10px 4px;
}

.clinic-page#vacancies #clinic-vacancies li > div > span span {
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-webkit-transition-delay: 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.clinic-page#vacancies #clinic-vacancies li > div > span span:hover {
	color: #000;
}

.clinic-page#vacancies #clinic-vacancies li > div > div {
	width: 100%;
	height: 42px;
	color: #F00;
	font-size: 20px;
	font-weight: 600;
	padding: 5px;
}

.clinic-page#vacancies #clinic-vacancies li > div > div > span:nth-child(odd) {
	color: #666;
	font-size: 16px;
	font-weight: 300;
}

.clinic-page#vacancies #clinic-vacancies li > div > div > span:nth-child(even) {
	color: #666;
	font-size: 17px;
	font-weight: 300;
}

.clinic-page#vacancies #clinic-vacancies li > div > div:last-of-type {
	height: 140px;
	color: #888;
	font-size: 15px;
	font-weight: 300;
	font-style: italic;
	padding: 2px 15px;
	text-align: left;
	overflow: hidden;
	position: relative;
}

.clinic-page#vacancies #clinic-vacancies li > div > div:last-of-type .hider {
	width: 100%;
	height: 28px;
	border-bottom: 5px #EEE solid;
	line-height: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(238,238,238,0), #EEE);
	background: -webkit-linear-gradient(top, rgba(238,238,238,0), #EEE);
	background: -o-linear-gradient(top, rgba(238,238,238,0), #EEE);
	background: -ms-linear-gradient(top, rgba(238,238,238,0), #EEE);
	background: linear-gradient(top, rgba(238,238,238,0), #EEE);
}

/* Вкладка Отзывы */

.clinic-page#reviews .data-wrap {
	padding: 6px 10px 0;
}

.reviews-filter {
	 margin-top: 0;
}

.reviews-wrap {
	padding-top: 10px;
}

.reviews-wrap .reviews-block {
	min-height: 0;
	padding: 15px 18px 35px;
}

.reviews-wrap .reviews-block > div:first-of-type {
	width: 0;
}

.reviews-wrap .reviews-block > div {
	margin-left: 0;
}

.reviews-wrap .review-clinic-logo,
.reviews-wrap .review-total {
	display: none;
}

.reviews-wrap .review-clinic-title {
	display: none;
}

.reviews-wrap .review-author {
	margin-right: 85px;
}

.reviews-wrap .review-author .icon-chart-bar {
	font-size: 16px;
	top: -1px;
}

.reviews-wrap .review-author .icon-chart-bar > span {
	font-size: 16px;
}

.reviews-wrap .review-author-avatar {
	width: 60px;
	height: 60px;
	margin-right: 15px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
}

.reviews-wrap .review-author-name {
	height: 30px;
	color: #333;
	font-size: 20px;
	line-height: 33px;
}

.reviews-wrap .review-author-date {
	height: 30px;
	font-size: 15px;
	line-height: 25px;
}

.reviews-wrap .review-photos {
	top: auto;
	bottom: 9px;
	right: 212px;
	z-index: 1;
}

.reviews-wrap .review-counter {
	width: 60px;
	height: 60px;
	top: 5px;
	right: 18px;
	left: auto;
}

.reviews-wrap .review-counter-circle {
	width: 48px;
	height: 48px;
}

.reviews-wrap .review-counter-value {
	font-size: 21px;
	top: 9px;
}

.reviews-wrap .review-counter-value > div {
	font-size: 11px;
	line-height: 12px;
	position: relative;
	top: 2px;
}

.reviews-wrap .review-body {
	clear: both;
}

.reviews-wrap .review-controls {
	width: calc(100% - 35px);
}

/*
.clinic-page#reviews button {
	position: absolute;
	top: 23px;
	right: 23px;
}

.clinic-page#reviews .add_form {
	padding-bottom: 0;
	margin: 19px 8px 15px;
	display: none;
}

.clinic-page#reviews .reviews-add {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 16px;
}

.clinic-page#reviews .reviews-add .icon-cancel {
	right: 10px;
}

.clinic-page#reviews .reviews-add .add-checkbox {
	padding: 41px 0 0 30px;
}

.clinic-page#reviews .reviews-add .add-checkbox label {
	width: 100%;
	font-weight: normal;
}

.clinic-page#reviews .reviews-add p {
	padding: 0 2px;
}

.clinic-page#reviews .reviews-add .add-captcha-blank {
	padding: 8px 0;
}

.clinic-page#reviews .reviews-add-error {
	padding: 20px;
}

.clinic-page#reviews .reviews {
	padding: 4px 8px 8px;
}

.clinic-page#reviews .reviews .comment .text {
	margin-top: 1px;
}

.clinic-page#reviews .reviews .add-answer input[type=submit] {
	width: auto;
	margin-top: 0;
	float: right;
}

.clinic-page#reviews .reviews .add-answer > a {
	margin: 8px 15px 0 0;
	float: left;
}

.clinic-page#reviews .reviews .add-answer .reviews-wide-label {
	width: calc(100% - 170px);
}
*/

/* Якоря */

.clinic-anchor {
	position: absolute;
	top: -238px;
}

/* Раздел Настройки ("Шестеренка") */

.clinic-page#settings {
	padding-top: 12px;
}

.clinic-page#settings .settings-breadcrumb {
	font-size: 15px;
	margin: -4px 9px 10px;
}

.clinic-page#settings .settings-message {
	background: #F8FFF8;
	border: 1px #8D8 solid;
	font-size: 16px;
	padding: 20px;
	margin: 10px 9px 14px;
	text-align: center;
}

.clinic-page#settings .settings-message.error {
	background-color: #FEE;
	border: 1px #F00 solid;
}

.clinic-page#settings .data-intro {
	font-size: 16px;
	padding: 0 0 14px;
}

.clinic-page#settings .data-wrap {
	padding: 5px 9px 15px;
	overflow: hidden;
	display: none;
}

.clinic-page#settings .data-wrap .admin-menu {
	font-size: 16px;
	padding-top: 4px;
	padding-left: 8px;
	margin-bottom: 0;
	list-style: none;
}

.clinic-page#settings .data-wrap .admin-menu > li {
	margin-bottom: 8px;
}

.clinic-page#settings .data-wrap .admin-menu i {
	padding-right: 8px;
}

.clinic-page#settings .data-wrap .admin-menu > li > ul {
	color: #BBB;
	padding-left: 50px;
	margin-bottom: 4px;
	list-style-type: disc;
}

.clinic-page#settings .data-wrap .admin-menu > li > ul > li {
	margin-top: 4px;
}

.clinic-page#settings .data-wrap .settings-subtitle {
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	margin: 0 0 18px;
}

.clinic-page#settings > img {
	margin: 0 auto 30px;
	display: block;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div {
	border-bottom: 1px #DDD solid;
	margin-bottom: 6px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div {
	font-size: 16px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div.settings-inline {
	margin-bottom: 8px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div > span {
	font-size: 16px;
	padding-left: 12px;
	position: relative;
	top: -14px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div.settings-text > span {
	padding-left: 0;
	top: 0;
}

.clinic-page#settings .data-wrap .clinic-settings-settings td.field_label,
.clinic-page#settings .data-wrap .clinic-settings-settings > div > div label {
	font-size: 16px;
	font-weight: normal;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div.settings-list {
	margin: 6px 0 10px 20px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-schedule label,
.clinic-page#settings .data-wrap .clinic-settings-settings > div > div.settings-list label {
	margin-bottom: 0;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-simple,
.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-schedule,
.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-count {
	margin: 0 0 10px 20px;
	display: none;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-count {
	margin-bottom: 0;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-simple > div:first-of-type,
.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-schedule > div:first-of-type {
	color: #777;
	font-size: 15px;
	font-style: italic;
	line-height: 19px;
	margin-bottom: 4px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div #settings-appointment-forbidden {
	font-size: 16px;
	margin-top: 8px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin-right: 6px;
	position: relative;
	top: 4px;
	left: 0;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div.settings-list input[type=checkbox] {
	margin-top: 1px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div textarea {
	width: 100%;
	height: 100px;
	margin-top: 4px;
	resize: none;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div > textarea {
	margin: 4px 0 10px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings > div > div input[type=text] {
	width: 46px;
	text-align: center;
	margin: 0 10px 10px;
}

.clinic-page#settings .data-wrap input[type=submit] {
	margin-top: 5px;
	float: right;
}

.clinic-page#settings .data-wrap .subsite-add-button {
	margin-top: 22px !important;
	float: right !important;
}

.clinic-page#settings .data-wrap .clinic-settings-settings table {
	border-collapse: collapse;
	margin-bottom: 6px;
}

.clinic-page#settings .data-wrap .clinic-settings-settings table th {
	padding: 2px 5px;
	border: solid 1px #444;
	text-align: center;
}

.clinic-page#settings .data-wrap .clinic-settings-settings table td {
	padding: 2px 5px;
	border: solid 1px #444;
	text-align: left;
}

/* МСЧ Северсталь 51765 */

#iframe_51765 {
	width: 100%;
	min-height: 560px;
	padding: 0;
	border: solid 1px #68b3e7;
}
#iframe_51765_idle {
	width: 100%;
	min-height: 75px;
	padding: 0;
	border: solid 1px #68b3e7;
}

.social-icons > a {
	font-size: 22px;
	position: relative;
	margin: 2px;
}

.social-icons {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	border: 1px solid #ccc;
	border-radius: 3px;
	top: 3px;
}

.social-icons:hover {
	background: #1d9feb;;
	border-color: #1d9feb;;
}

.social-icons > a:hover, .social-icons > a > i:hover {
	color: #FFF;
}