/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 11; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 1200px;
	height: 550px;
	overflow: auto; /* Enable scroll if needed */
}

/* The Close Button */
.modal .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.modal .close:hover,
.modal .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

div.profile {
	display: flex;
	flex-direction: row;
}

div.profile div.photo {
	width: 200px;
	height: 300px;
	margin: 1em;
}

div.profile div.text div.name {
	font-weight: bold;
	font-size: 24px;
	margin: 1em;
}

div.profile div.text div.infos {
	display: grid;
	grid-template-columns: 200px 1fr;
}

div.profile div.text div.infos div.label {
	text-align: right;
	font-weight: bold;
}

div.profile div.text div.infos div {
	margin: 4px;
}

div.map {
	display: block;
	border: solid 1px black;
	width: 100%;
	height: 200px;
}