.pss-product_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pss-product_block {
	width: 100%;
	border: 1px solid #d8d8d8;
    margin-bottom: 50px;
    display:flex;
}
.pss-product_block h2 {
    font-size: 22px;
    font-weight: 500;
	margin: 10px 0;
}
.pss-product_block h3 {
	font-size: 20px;
	margin: 10px 0;
}
.pss-product_block h4 {
	font-size: 19px;
	margin: 10px 0;
}
.pss-product_purchase {
	width: 100%;
	display: block;
	text-align: center;
}
.pss-product_details {
	width: 50%;
	padding: 20px;
}
.pss-product_right {
	width: 50%;
}
.pss-product_map {
	width: 100%;
	background: black;
	height: 100%;
}

@media only screen and (max-width: 768px) {
	.pss-product_block {
		flex-direction: column;
	}
	.pss-product_details {
		width: 85%;
		text-align: center;
	}
	.pss-product_map {
		width: 100%;
		height: 350px;
	}
	.pss-product_right {
		width: 100%;
	}
}