#area-map {
	height: 550px; 
	height: 60vh;
	min-height: 550px;
	max-height: 750px;
	width: calc(100% - 40px);
  margin: 0 20px 20px 20px; 
}

.red-test{
  color:#f00;
}

[type="checkbox"]:checked + span, [type="checkbox"]:not(:checked) + span {
  position: relative;
  padding-left: 40px;
  line-height: 10px;
  cursor: pointer;
  display: inline-block;
  margin: 7px 0px 8px 0!important;
  text-transform: none;
  padding-top: 12px;
}

/* Local area form styling */
.map-toggles-container {
	margin: 0 auto 30px auto;
  position: relative;
  max-width: 900px;
  min-height: 30px;
  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: inline;
}
#map-toggles-form label {
	text-transform: capitalize;
	font-family: Helvetica, sans-serif;
  float:left;
}
.checkbox-label {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
  width:150px;
}

/* 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-content h2 {
	font-size: 20px;
  text-align: center;
  font-family: gotham-light;
  font-weight: 700;
  margin: -6px 0 5px 0;
}

.leaflet-popup-content h4 {
	font-size: 13px;
  text-align: center;
  font-family: gotham-book;
}

.leaflet-popup .leaflet-popup-content p {
  font-size: 13px;
  text-align: center;
  font-family: gotham-book;
  margin: 5px 0;
}
.leaflet-control-container {
    display: none;
}

@media only screen and (min-width: 769px) {
    .leaflet-control-container {
      display: block;
  }
}