@CHARSET "UTF-8";

.map-wrapper {
	padding-left: 0;
	padding-right: 0;
}

#map {
	width: 100%;
	height: 70vh;
	min-height: 300px;
}

.areamenu > .menu {
	-webkit-flex: 1 1 80%;
	flex: 1 1 80%;
	max-width: 80%;
	text-align: center;
	color: #000;
	transition: all 0.3s;
	border: 1px solid rgb(89, 87, 87);
	margin-top: 1.5em;
	border-radius: 4em;
	font-size: 1.2rem;
}
.areamenu > .menu.active {
	background-color: rgb(229, 233, 234);
}
.areamenu > .menu .small {
	margin-top: 0.25em;
}

@media screen and (min-width:767px) {

	.map-wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}

	.areamenu {
		border-right: 1px solid #000;
	}

	.areamenu > .menu {
		-webkit-flex: 1 1 25%;
		flex: 1 1 25%;
		max-width: 25%;
		border: none;
		border-left: 1px solid rgb(89, 87, 87);
		transition: all 0.3s;
		margin-top: 0;
		border-radius: 0;
	}
	.areamenu > .menu:after {
		content: "";
		width: 0;
		height: 2px;
		min-height: 2px;
		background-color: #4267b2;
		transition: all 0.3s;
		box-sizing: border-box;
	}
	.areamenu > .menu:hover {
		background-color: rgba(229, 233, 234, 0.5);
		text-decoration: none;
	}
	.areamenu > .menu:hover:after {
		width: 90%;
	}
	.areamenu > .menu .small {
		margin-top: 0;
		width: 100%;
	}
}
