
html body {
	background: #E6E6E6;
}

/*   --- MAIN MAP LAYOUT ---   */
.entry-title {
	text-transform: uppercase;
	font-weight: 300;
}

#mapInstructions {
	margin: 15px;
}

#mapInstructions p {
	text-align: center;
}

.map-flex-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;

}

.map-container {
	flex: 0 0 37%;
	padding: 0 30px 0 60px;
}

.query-result-container {
	flex: 1;
	display: flex;
	align-items: center;
	flex-direction: column;

}

/*   --- INPUT FIELDS ---   */
.query-input {
	display: flex;
	padding: 0 30px;
}

.select2-container.filter-input {
	min-width: 350px;
	margin: 0 7px 0 0;
}

.select2-container-multi .select2-choices .select2-search-field input {
	font-weight: 300;
	text-transform: capitalize;
	color: #9B9B9B;
	padding: 2px 0px 0px 14px;
}

.select2-container-multi .select2-choices {
	border-radius: 1px;
	border: 1px solid transparent;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.33);
	background-image: none;
}

.select2-container-multi .select2-search-choice-close {
	left: 5px;
	top: 10px;
}

.select2-container-multi .select2-choices .select2-search-choice {
	line-height: 1.7em;
	border: none;
	background-color: #f0f0f0;
	background-image: none;
}

.button-clear {
	position: relative;
	border: none;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.33);
	border-radius: 1px;
	background: white;
	height: 46px;
	width: 60px;
	color: #999;
	letter-spacing: .45px;
	font-weight: 400;
}

/*  --- QUERY RESULTS DISPLAY ---  */
#queryResults {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
	padding: 0 30px 0 0;
}

.map-result-box {
	padding: 15px;
	margin: 10px;
	width: 260px;
	background-color: #FFFFFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.33);
}

.query-title {
	color: #4A4A4A;
	font-weight: 400;
}

.query-content p {
	line-height: 20px;
	margin-top: 3px;

}

.query-fields {
	color: #999;
	font-weight: 200;
}

.query-fields p {
	color: #999 !important;
	font-weight: 200 !important;
	margin: 0;
}

.query-fields a {
	color: #999 !important;
	font-weight: 200 !important;
}

/*  --- MAP ---  */
#map {
	min-width: 350px;
}

#regionSelected {
	font-weight: 500;
}

polygon[id]:hover, polygon.clicked-border {
	stroke-width: 1.2px;
	cursor: pointer;
}

#Water, text {
	pointer-events: none;
}


@media screen and (max-width: 930px) {
	.select2-container.filter-input {
		min-width: 200px;
	}

	.map-container {
		flex: 0 0 37%;
		padding: 0 15px 0 30px;
	}
}

@media screen and (max-width: 767px) {
	.map-container {
		flex: 0 0 100%;
		padding: 0 30px;
	}
	#map {
		min-width: initial;
		max-width: 350px;
		margin: 0 auto;
	}

	.query-result-container {
		margin: 15px;
	}
	#queryResults {
		padding: 0;
	}


}
@media screen and (max-width: 600px) {
	.query-input {
		padding: 0;
	}
	.map-result-box {
		flex: 1 1 auto;
		margin: 10px 0;
	}
}