[id^="frac-map-"] {
	margin-bottom: 100px;
}

.frac-map-container {
	max-width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
}

.state:hover {
	cursor: pointer;
}

svg text {
	pointer-events: none;
}

.map-data-box {
	background: #ccc;
	border-radius: 6px;
	border: 2px solid #AFCFE4;
	box-sizing: content-box;
	z-index: 10;
	padding: 15px;
	background-color: #fff;
	box-shadow: 8px 8px 20px rgba(0,0,0,0.1);
	position: absolute;
	width: 400px;
	display: none;
}

.map-data-box a {
	display: block;
	font-weight: bold;
	text-decoration: none;
	color: #0A6CAD;
}

.map-data-box a.close-box {
	position: absolute;
	top: -1rem;
	right: -1rem;
	color: black;
	height: 2rem;
	width: 2rem;
	text-align: center;
	line-height: 2.25rem;
	vertical-align: middle;
	font-size: 2rem;
	background-color: white;
	border: 2px solid black;
	border-radius: 50%;
	text-decoration: none !important;
}

.map-data-box.open {
	display: block;
}

.map-data-box strong {
	font-weight: bold;
	margin-bottom: 5px;
	display: block;
}

.map-data-box ul {
	list-style: none;
}

.map-data-box ul li {
	display: flex;
	flex-direction: row;
	padding: 10px 0;
	border-bottom: 1px solid #000;
	font-size: 14px;
}

.map-data-box ul li span:not(.value),
.map-data-box ul li *:first-child {
	width: 60%;
}

.map-data-box ul li span.value,
.map-data-box ul li *:last-child {
	margin-left: auto;
	width: 40%;
	text-align: left;
	padding-left: 10%;
}

.map-data-box table {
	margin-bottom: 1rem;
}

.map-data-box table tr {
	border-bottom: 1px solid #000;
}

.map-data-box table tr:last-child {
	border-bottom: none;
}

.map-data-box table tr td {
	padding: 10px 0;
}

.map-data-box .content {
	padding-top: 1rem;
}

.map-data-box table tr td:empty {
	display: none;
}

.map-key {
	max-width: 70%;
	margin: 0 auto 100px auto;
	text-align: center;
}

.map-key ul {
	list-style: none;
}

.map-key ul li {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 20px 10px;
}

.map-key ul li i {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

@media only screen and (max-width: 767px) {
	[id^="frac-map-"] {
		max-width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 100px 0;
	}

	.frac-map-container {
		padding: 10px;
		max-width: 100%;
	}

	.map-data-box {
		width: 250px;
	}

	.map-data-box a.close-box {
		display: block;
	}

	.map-key {
		max-width: 100%;
		margin: 0 auto 100px auto;
		text-align: center;
	}
}