/* Map Style Section */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
#map { 
	width:100%; 
	position:absolute; 
	top:0; 
	bottom:0; 
	background: #005F9E;
}

.map-content {
	height: 600px;
  position: relative;
  background-color: #005f9d; 
}

.marker { 
	width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}

/* Style for cluster */
.marker-cluster {
  padding-top: 10px;
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
}

body  .leaflet-container .leaflet-control-attribution { display: none; }

.leaflet-control-container .leaflet-top.leaflet-left { 
  top: auto;
  bottom: 10px;
  left: 20px;
}

.leaflet-control-container .leaflet-top { z-index: 1; } 

body .leaflet-touch .leaflet-bar, 
body .leaflet-touch .leaflet-control-layers,
body .leaflet-bar { 
  border: 0;
  background: transparent;
}

body .leaflet-bar .leaflet-control-zoom-out,
body .leaflet-bar .leaflet-control-zoom-in {
  padding: 20px;
  background-color: #fff;
  opacity: 1;
}

/*Remove hover in Ipad and mobile device*/
@media only screen and (min-width : 1024px) {
  body .leaflet-bar .leaflet-control-zoom-out:hover,
  body .leaflet-bar .leaflet-control-zoom-in:hover { background-color: #1a6fa6; }
}

body .leaflet-bar .leaflet-control-zoom-in { 
  margin-bottom: 10px;
  background-position: 7px 7px; 
}

body .leaflet-bar .leaflet-control-zoom-out { background-position: 7px -20px; }

/*POP-up Styling*/

body .leaflet-popup-content-wrapper, 
body .map-legends, .map-tooltip { border-radius: 0; }

body .marker-title { display: none; }

body .leaflet-container h4 {
	margin-bottom: 16px;
	color: #005F9E;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

body .leaflet-container span { 
	display: block; 
	font-family: 'Open Sans', sans-serif;
}
body .leaflet-popup-content-wrapper { 
	min-width: 250px; 
	padding: 10px 15px 15px;
	position: relative;
}

body .marker-description div > span:nth-last-of-type(1){
	width: 12px;
	height: 12px;
	position: absolute;
  top: 15px;
  right: 15px;
	background: url('../images/close.png');
	background-size: cover;
	cursor: pointer;
	font-size: 0;
}