body {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.info {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	flex-direction: column;
	justify-content: space-between;
	max-width: 250px;
	padding: 15px;
}

.title {
	opacity: 0.7;
	margin: 0;
	margin-bottom: 8px;
	padding: 0;
	color: #fff;
	font-size: 18px;
	font-family: Open Sans, sans-serif;
	text-transform: uppercase;
}

.description {
	opacity: 0.7;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 14px;
	font-family: Open Sans, sans-serif;
}

.parameters {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #fff;
	font-size: 14px;
	font-family: Open Sans, sans-serif;
}

.parameters__item {
	display: flex;
	opacity: 0.7;
	justify-content: space-between;
	margin-bottom: 10px;
}

.parameters__item--progress {
	opacity: 1;
}

.parameters__progress-container {
	position: relative;
	width: 100%;
	height: 10px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	overflow: hidden;
}

.parameters__progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: yellow;
}

#map {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
