.detail_flex {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.detail_left {
	flex-basis: 70%;
	margin-right: 1em;
}
.detail_right {
	flex-basis: 30%;
	display: flex;
	flex-direction: column;
}
.detail_logo {
	margin: -2em 0 1em 0;
}
.detail_logo_img {
	border: solid 1px #ccc;
	border-radius: 6px;
	width: 100%;
	height: auto;
}
.detail_right_data {
	display: flex;
	flex-direction: row;
	border: solid 1px #d2d2d2;
	padding: .5em;
	margin-bottom: .5em;
	justify-content: space-around;
	align-items: center;
	box-shadow: 0px 2px 2px rgb(0 0 0 / 25%);
}
.right_data_img {
	flex-basis: 10%;
}
.right_data_value {
	flex-basis: 80%;
	font-size: 1.4rem;	
}

.detail_to_map {
	color: #D44B3F;
	font-size: 1.2rem;
	padding: 1px 24px 0 0;
	float: right;
	background: url('img/arrow.png') right no-repeat;
	background-size: 20px auto;
}
.detail_back_link {
	color: #D44B3F;
	font-weight: bold;
}
.detail_add_name {
	text-align: center;
	color: #141414;
	font-size: 1.6rem;
	margin-top: 1em;
	font-family: 'Igra Sans';
	font-weight: 400; 
	line-height: 1.5em;
	font-size: 2.4rem;
}

@media only screen and (max-width: 767px) {
  .detail_flex {
	flex-direction: column-reverse;
	}
	.detail_logo {
	margin: 0 0 1em 0;
}
}