#content {
	background: #232323;
	padding: 50px 30px;
	height: var(--content-container-height);
	min-height: 700px;
	box-sizing: border-box;
}

#content_gmap {
	display: inline-block;
	width: 60%;
	height: 100%;
	background: #e3e3e3 url(../assets/gmap_placeholder.jpg) no-repeat;
}
#content_gmap iframe {
	width: 100%;
	height: 100%;
}

#content_location {
	display: inline-block;
	width: calc(40% - 5px);
	height: 100%;
	font-size: 16px;
	vertical-align: top;
	color: #FFF;
}
#location_container {
	display: table;
	height: 100%;
	width: 100%;
}
#location_container_column {
	display: table-cell;
	vertical-align: middle;
}

.location_row {
	text-align: center;
	font-weight: 300;
	white-space: nowrap;
}
.location_row_title {
	font-weight: 400;
	font-size: 17px;
}
.location_separator {
	width: 40%;
	min-width: 150px;
	margin: 15px auto;
	border-bottom: 1px solid #9A9A9A;
}
.location_nl {
	height: 5px;
}

.location_row_footnote {
	display: inline;
	font-size: 0.7em;
	top: auto;
	vertical-align: top;
}

#location_container_footnote {
	display: table-footer-group;
	color: #bbb;
	font-size: 12px;
}

.location_footnote_row {
	display: flex;
	padding: 0 10px;
}

.location_footnote {
	top: auto;
	font-size: 0.7em;
}

@media screen and (max-width: 1250px) {
	#content_gmap {
		width: 50%;
	}
	#content_location {
		width: calc(50% - 5px);
	}
}

@media screen and (max-width: 1000px) {
	#content_gmap {
		width: 40%;
	}
	#content_location {
		width: calc(60% - 5px);
	}
}
@media screen and (max-width: 850px) {
	#content {
		padding: 30px;
		height: initial;
		min-height: var(--content-container-height);
	}
	#content_gmap {
		display: block;
		width: 100%;
		height: 40vh;
		min-height: 250px;
	}
	#content_location {
		display: flex;
		width: 100%;
		height: initial;
		padding: 30px 0 0;
		justify-content: center;
	}
	.location_footnote_row {
		padding: 0;
	}
	.location_footnote_row:first-child {
		padding-top: 50px;
	}
}
