.contact-list .section-contact {
	position: relative;
	display: none;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
}
.contact-list .section-contact.active {
	display: flex;
}
.contact-item {
	width: 432px;
	margin-bottom: 50px;
}
.contact-item-director {
	margin-top: -35px;
}
.contact-item-title {
	font-size: 27px;
	line-height: 35px;
	color: #373737;
	margin-bottom: 20px;
	overflow: hidden;
}
.contact-item-desc {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 35px;
}
.contact-item-phone {
	display: flex;
	margin-bottom: 10px;
	height: 22px;
	margin-bottom: 40px;
	overflow: hidden;
}
.contact-item-phone .key {
	display: block;
	background-color: #96bf01;
	color: #fff;
	font-size: 14px;
	height: 22px;
	line-height: 22px;
	border-radius: 10px;
	padding: 0 8px;
	margin-right: 5px;
}
.contact-item-phone .value {
	display: block;
	line-height: 22px;
	height: 22px;
	overflow: hidden;
	font-weight: 500;
}
.tabs-content-list {
	height: 300px;
	overflow: hidden;
}
.tabs-content {
	display: none;
}
.tabs-content.active {
	display: block;
}
.content-map {
	height: 300px;
}
.tabs-content .content-inside,
.tabs-content .content-outside {
	height: 300px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
.tabs-item-list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tabs-item {
	display: flex;
	box-sizing: border-box;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 10px;
	font-size: 14px;
	color: #fff;
	background-color: #03bad4;
	cursor: pointer;
	position: relative;
	width: 34%;
}
.tabs-item.active,
.tabs-item:hover {
	background-color: #0a8497;
}
.tabs-item.active:before {
	content: '';
	width: 36px;
	height: 15px;
	position: absolute;
	top: -15px;
	left: 50%;
	margin-left: -18px;
	background-attachment: inherit;
	background-image: url(img/tab-arr.png);
	background-position: 50%;
	background-repeat: no-repeat;
}
.tabs-content-time {
	display: flex;
}
.tabs-content-time {
	display: flex;
	background-color: #f0efed;
	padding: 25px;
	padding-bottom: 10px;
}
.time-weekday {
	width: 134px;
	margin-right: 25px;
	height: 69px;
	overflow: hidden;
}
.time-weekday .weekday-title {
	font-size: 12px;
	color: #fff;
	background-color: #96bf01;
	padding: 5px 0;
	text-align: center;
	margin: 0 0 10px;
}
.time-weekday span {
	display: inline-block;
	font-size: 14px;
	color: #96bf01;
}
.time-weekend {
	width: 134px;
	height: 69px;
	overflow: hidden;
}
.time-weekend .weekend-title {
	font-size: 12px;
	color: #fff;
	background-color: #ef3030;
	padding: 5px 0;
	text-align: center;
	margin: 0 0 10px;
}
.time-weekend span {
	display: inline-block;
	font-size: 14px;
	color: #ef3030;
}
.list-selector {
	position: relative;
	border: 3px solid #bcbdbd;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	margin-bottom: 40px;
}
.list-selector .list-item-link {
	position: relative;
	display: inline-block;
	vertical-align: top;
	z-index: 20;
	padding: 0 50px;
	border-radius: 50px;
	color: #a2a2a2;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s linear;
}
.list-selector .list-item-link.active {
	color: #fff;
	transition: all .2s linear;
}
.list-selector-toogle {
	display: block;
	position: absolute;
	transform: translateX(0);
	height: 50px;
	width: 217px;
	border-radius: 50px;
	background-color: #96bf01;
	transition: all .2s linear;
}

@media only screen and (max-width: 960px) {
	.list-selector .list-item-link {
		padding: 0 15px;
		font-size: 14px;
	}
	.list-selector-toogle {
		width: 121px;
	}
	.contact-list .section-contact {
		justify-content: center;
	}
}
@media only screen and (max-width: 540px) {
	.list-selector {
		display: flex;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		height: auto;
		border-radius: 30px;
	}
	.list-selector .list-item-link {
		width: 100%;
		text-align: center;
		border-radius: 0;
	}
	.list-selector .list-item-link:nth-child(2) {
		border-radius: 27px 27px 0 0;
	}
	.list-selector .list-item-link:last-child {
		border-radius: 0 0 27px 27px;
	}
	.list-selector-toogle {
		display: none;
	}
	.list-selector .list-item-link.active {
		background-color: #96bf01;
	}
	.contact-item {
		width: 100%;
	}
	.contact-item-title {
		font-size: 22px;
		line-height: 1.2;
	}
	.tabs-item {
		padding: 15px 5px;
		font-size: 12px;
	}
	.tabs-content-time {
		justify-content: space-between;
		padding: 10px;
	}
	.time-weekday,
	.time-weekend {
		width: 45%;
		margin: 0;
	}
}