/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
	height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

* {
	background-color: transparent;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
}

.modal_content {
	margin: auto;
	display: block;
	width: 90%;
	max-width: 800px;
}

.modal_text {
	display: none;
	margin: auto;
	width: 50%;
	text-align: center;
	font-family: sans-serif;
	font-size: 18px;
	color: #FFFFFF;
}

.modal_close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #F1F1F1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.modal_close:hover,
.modal_close:focus {
	color: #BBB;
	text-decoration: none;
	cursor: pointer;
}

.info {
	position: fixed;
	bottom: 50px;
	left: 20px;
}

.info_icon {
	width: 50px;
	height: 50px;
}

.info_icon:hover,
.info_icon:focus {
	cursor: pointer;
}

.info_image {
	display: none;
}

.hidden_image {
	display: none;
}