#area-map {
	min-height: 500px;
    width: 100%;
}

/* Local area form styling */
.map-toggles-container {
	margin: 30px 0;
	display:none /* temporary */
}
.map-toggles-container p {
	margin: 10px 0;
	font-weight: 600;
	font-size: 1.3em;
	font-family: Helvetica, sans-serif;
}
#map-toggles-form {
	display: grid;
	/*grid-template-columns: 1fr 1fr;*/
}

#map-toggles-form label {
	text-transform: capitalize;
	font-family: Helvetica, sans-serif;
  line-height: 27px;
  margin: 7px 5px;
}
.checkbox-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid rgb(28, 32, 51);
  border-radius: 3px;
  box-shadow: 1px 1px 3px #777;
}

/* On mouse-over, add a grey background color */
.checkbox-label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked ~ .checkmark {
  background-color: rgb(28, 32, 51);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Leaflet styling overrides */
.leaflet-control-attribution, .leaflet-control-attribution a {
	color: #444;
}

.leaflet-popup .leaflet-popup-tip {
	background: rgb(28, 32, 51);
}

.leaflet-popup .leaflet-popup-content-wrapper {
	background: rgb(28, 32, 51);
	color: #fff;
	padding: 5px;
	border-radius: 3px;
	font-size: 15px;
}

.leaflet-popup.development .leaflet-popup-content-wrapper {
  padding: 11px;
}

.leaflet-popup.development .leaflet-popup-content {
  width: 260px !important;
}

.leaflet-popup .leaflet-popup-content {
  font-size: 0.9em;
}

.leaflet-popup .leaflet-popup-content strong {
  display: block;
  font-size: 1.1em;
  line-height: 1.4;
}

.leaflet-popup .leaflet-popup-content p {
  margin: 5px 0;
  font-size: 1.1em;
  line-height: 1.4;
}

.leaflet-popup-content h2 {
	margin: 1px 0;
	font-size: 1.6em;
	font-weight: 700;
	font-family: Georgia, serif;
}

.leaflet-popup-content h4 {
	margin: 1px 0;
	font-size: 1.1em;
	font-weight: 600;
}

@media only screen and (min-width: 768px) {
	#area-map {
		min-height: 460px;
    	width: 100%;
	}
	#map-toggles-form {
		display: grid;
		grid-template-columns: 150px 150px 150px;
	}
}