.structure__container {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
}
.left__structure {
	width: 604px;
	background: #FCFCFC;
	margin-right: 15px;
}
.left__structure .item {
	border: 1px solid #CECECE;
	padding: 12px 20px 9px;
}
.left__structure .item:not(:last-child) {
	border-bottom: none;
}
.left__structure .item:first-child {
	border-radius: 6px 6px 0px 0px;
}
.left__structure .item:last-child {
	border-radius: 0px 0px 6px 6px;
}
.left__structure .item > .title {
	font-weight: bold;
	font-size: 16px;
	line-height: 130%;
	color: #000000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.left__structure .item > .title:hover {
	color: #EB3333;
}
.structure_item .top {
	display: flex;
	margin-top: 20px;
	margin-bottom: 24px;
}
.structure_item .top img {
	max-width: 180px;
	margin-right: 32px;
}
.structure_item .top .name {
	font-weight: bold;
	font-size: 22px;
	line-height: 130%;
	color: #000000;
	margin-bottom: 10px;
}
.structure_item .top .name span {
	font-size: 18px;
	display: block;
}
.structure_item .top_text {
	padding-top: 5px;
}
.structure_item .top_text .text {
	font-size: 15px;
	line-height: 139%;
}
.structure_contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 32px;
}
.structure_contacts > .title, .structure_description > .title {
	font-weight: bold;
	font-size: 18px;
	line-height: 130%;
	color: #000000;
	position: relative;
	margin-bottom: 32px;
	width: 100%;
}
.structure_contacts > .title:after, .structure_description > .title:after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: #EB3333;
	position: absolute;
	bottom: -8px;
	left: 0;
}
.structure_description .text {
	font-size: 15px;
	line-height: 148%
}
.structure_contacts .phones {
	max-width: 160px;
}
.structure_contacts .phones a {
	font-weight: bold;
	font-size: 16px;
	line-height: 118%;
	color: #000000;
	margin-bottom: 13px;
	transition: all 0.2s;
	display: inline-block;
}
.structure_contacts .phones a:hover {
	color: #EB3333;
}
.structure_contacts .other_contacts {
	max-width: 300px;
	display: flex;
	flex-direction: column;
}
.structure_contacts .other_contacts > * {
	font-size: 14px;
	line-height: 130%;
	position: relative;
}
.structure_contacts .other_contacts > a {
	color: #000000;
	text-decoration: none;
}
.structure_contacts .other_contacts > a span {
	border-bottom: 1px solid #000000;
	padding-bottom: 3px;
	transition: all 0.2s;
}
.structure_contacts .other_contacts .adress {
	margin-bottom: 9px;
}
.structure_contacts .other_contacts .email {
	margin-bottom: 17px;
}
.structure_contacts .other_contacts > a:hover span {
	border-color: #fff;
}
.structure_contacts .adress .icon {
	color: #eb3333;
    position: absolute;
    top: -3px;
    left: -29px;
    display: block;
    width: 14px;
    height: 18px;
}
.structure_contacts .email .icon {
	color: #eb3333;
    position: absolute;
    top: 4px;
    left: -30px;
    display: block;
    width: 16px;
    height: 13px;
}
.structure_contacts .site .icon {
	color: #eb3333;
    position: absolute;
    top: 1px;
    left: -30px;
    display: block;
    width: 18px;
    height: 18px;
}
.left__structure .item > .title span {
	min-width: 32px;
	display: block;
	width: 32px;
	height: 32px;
	border: 1px solid #E0E0E0;
	border-radius: 50%;
	position: relative;
	transition: all 0.2s;
}
.left__structure .item > .title span:before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	background: #F2F2F2;
	border-radius: 50%;
	left: 2px;
	top: 2px;
	position: absolute;
	transition: all 0.2s;
}
.left__structure .item > .title span svg {
	position: absolute;
	top: 12px;
    left: 8px;
	transition: all 0.3s;
}
.left__structure .item .structure_item {
	display: none;
}
.left__structure .item.active > .title {
	color: #EB3333;
}
.left__structure .item.active > .title span {
	border: 1px solid #EB3333;
}
.left__structure .item.active > .title span:before {
	background: #EB3333;
}
.left__structure .item > .title span svg path {
	transition: all 0.2s;
}
.left__structure .item.active > .title span svg path{
	stroke: #fff;
}
.left__structure .item.active > .title span svg {
	transform: rotate(180deg);
	top: 10px;
}
.structure_description {
	margin-bottom: 20px;
}
@media screen and (max-width: 997px) {
	.structure__container {
		flex-wrap: wrap;
	}
	.left__structure {
		width: 100%;
		margin-right: 0;
	}
	.structure__container #map {
		/* display: none; */
		width: 100%;
		margin-top: 20px;
	}
}
@media screen and (max-width: 550px) {
	.structure_contacts .other_contacts {
		max-width: 100%;
		width: 100%;
		padding-left: 30px;
	}
	.structure_item .top {
		flex-wrap: wrap;
	}
	.structure_item .top img {
		margin: 0 auto;
	}
}