.typo_map_wrapper {
	position: relative;
}

/**
 * Safari Bugfix
 * since foundation columns have flex:1 1 0px; safari shrinks the .row.column to 0
 * Set the Flex-Size to auto and the element contains the size
 */
.typo_map_wrapper.row.columns {
	-webkit-box-flex: 1;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.typo_map_wrapper .typo_map {
	width: 100%;
	height: 19rem;
	margin: 0;
	z-index: 10;
	border: none;
	display: block;
	position: relative;
	background: #f1f1f1;
	padding: 2rem;
	-webkit-transition: opacity 0.5s ease 0.5s;
	-moz-transition: opacity 0.5s ease 0.5s;
	-ms-transition: opacity 0.5s ease 0.5s;
	-o-transition: opacity 0.5s ease 0.5s;
	transition: opacity 0.5s ease 0.5s;
	overflow: hidden;
}
.typo_map_wrapper .typo_map div:not([role="dialog"]) {
	background: transparent;
	font-size: 0.875rem;
}

.typo_map_wrapper .typo_map .marker {
	opacity: 0;
	height: 0;
	visibility: hidden;
	pointer-events: none;
}


/* fixes potential theme css conflict */

.typo_map_wrapper .typo_map img {
	max-width: inherit !important;
}

.typo_map_wrapper .typo_map_overlay {
	position: absolute;
	left: 1rem;
	right: 1rem;
	top: 1rem;
	bottom: 1rem;
	background: #cccccc;
	text-align: center;
	color: #0a0a0a;
	z-index: 20;
	-webkit-transition: all 0.5s ease 0.25s;
	-moz-transition: all 0.5s ease 0.25s;
	-ms-transition: all 0.5s ease 0.25s;
	-o-transition: all 0.5s ease 0.25s;
	transition: all 0.5s ease 0.25s;
	padding: 0.9375rem;
}

.typo_map_wrapper .typo_map_overlay_content {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	max-width: 35rem;
	font-size: 1rem;
	padding: 0.9375rem;
}

@media screen and (min-width: 40em) {
	.typo_map_wrapper .typo_map {
		height: 31rem;
	}
}
