.vacancy__item {
	display: block;
	background: #F3F6F7;
	padding: 32px 40px;
	margin-bottom: 16px;
	border-radius: 4px;
	/*transition: background-color .3s ease;*/
}
.vacancy__header {
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.vacancy__dropdown {
	height: 0;
	overflow: hidden;
	transition: height .1s ease;
}
.vacancy__item.open {
	background: 0;
	outline: 2px solid #D0DADF;
	/*outline: 1px solid #D0DADF;*/
	/*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.20);*/
}
.vacancy__item.open .vacancy__header {
	padding-bottom: 32px;
	border-bottom: 1px solid #D0DADF;
	background: 0;
}
.vacancy__item.open .vacancy__dropdown {
	height: auto;
	display: block;
	padding-top: 32px;
}
.vacancy__item.open .vacancy__right .vacancy__header-ico {
	transform: rotate(180deg);
}
.vacancy__header-item {
	display: flex;
	flex-direction: column;
	width: 160px;
	max-width: 160px;
}
.vacancy__header-top {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #757D80;
}
.vacancy__header-bottom {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.vacancy__header .vacancy__left .vacancy__header-bottom {
	font-size: 20px;
}
.vacancy__right .vacancy__header-ico {
	display: block;
	width: 32px;
	height: 32px;
	background: url(/images/chevron-down.svg) center no-repeat;
	margin-left: auto;
	transition: all .3s ease;
}
.vacancy__left, .vacancy__right {
	width: calc(50% - 30px);
	display: flex;
	flex-direction: row;
}
.vacancy__header .vacancy__left {
	width: calc(60% - 30px)
}
.vacancy__header .vacancy__right {
	width: calc(40% - 30px)
}
.vacancy__right {
	margin-left: auto;
}
.vacancy__right .vacancy__header-item:not(:first-child) {
	margin-left: 24px;
}
.vacancy__header .vacancy__left .vacancy__header-item {
	min-width: 100%;
}
.vacancy__text {
	margin-bottom: 32px;
}
.vacancy__flex {
	display: flex;
	flex-wrap: wrap;
}
.vacancy__flex-item {
	width: 100%;
}
.vacancy__flex .vacancy__flex-item:not(:last-child){
	margin-bottom: 40px;
}
.vacancy__dropdown .vacancy__left, .vacancy__dropdown .vacancy__right {
	flex-direction: column;
}
.vacancy__flex-name {
	margin-bottom: 12px;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: #4B575C;
}
.vacancy__flex .vacancy__flex-item .vacancy__flex-content ul {
	margin-left: 0;
}
.vacancy__more {
	margin-top: 48px;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
}
.btn.btn-1.vacancy__more-btn {
	margin-top: 12px;
	text-transform: none;
	font-size: 18px;
	font-weight: 400;
	padding: 16px 32px;
}
.vacancy__right .btn.btn-1.vacancy__more-btn {
	margin-top: 0;
}
@media screen and (max-width: 640px){
	.vacancy__more {
		margin-top: 24px;
	}
	.vacancy__item {
		position: relative;
		padding: 24px;
	}
	.vacancy__header {
		flex-wrap: wrap;
	}
	.vacancy__flex {
		flex-direction: column;
	}
	.vacancy__left, .vacancy__right, .vacancy__header .vacancy__left, .vacancy__header .vacancy__right {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.vacancy__flex-item, .vacancy__flex .vacancy__flex-item:not(:last-child) {
		margin-bottom: 16px;
	}
	.vacancy__header .vacancy__right {
		margin-top: 16px;
	}
	.vacancy__header-ico {
		position: absolute;
		right: 16px;
		top: 16px;
	}
	.vacancy__item.open .vacancy__header {
		padding-bottom: 24px;
	}
	.vacancy__item.open .vacancy__dropdown {
		padding-top: 24px;
	}
}