.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;
	border: none;
	display: block;
	position: relative;
	-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;
	opacity: 0;
	overflow: hidden;
}

.typo_map_wrapper .typo_map.initialized {
	opacity: 1;
}

/* fixes potential theme css conflict */

.typo_map_wrapper .typo_map img {
	max-width: inherit !important;
}

.typo_map_wrapper .typo_map_overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #cccccc;
	text-align: center;
	color: #0a0a0a;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-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.initialized + .typo_map_overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.typo_map_wrapper .typo_map.active + .typo_map_overlay,
.typo_map_wrapper .typo_map.initialized.active + .typo_map_overlay {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.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;
	}
}
