body {
  color: #404040;
  font: 400 15px/22px 'Source Sans Pro', 'Helvetica Neue', Sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 400;
  line-height: 20px;
  padding: 20px 2px;
}

a {
  color: #404040;
  text-decoration: none;
}

a:hover {
  color: #101010;
}

.sidebar {
  /* display: none; */
  position: absolute;
  width: 23.3333%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
/* 
.pad2 {
  padding: 20px;
} */

.map {
  position: absolute;
  left: 23.3333%;
  width: 76.6666%;
  top: 0;
  bottom: 0;
}

.heading {
  /* display: none; */
  background: #fff;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
}

.listings {
  height: 100%;
  overflow: auto;
  padding-bottom: 60px;
}

.listings .item {
  /* display: none; */
  border-bottom: 1px solid #eee;
  padding: 10px;
  text-decoration: none;
}

.listings .item:last-child { border-bottom: none; }

.listings .item .title {
  display: block;
  color: #499ac9;
  font-weight: 700;
}

.listings .item .title small { font-weight: 400; }

.listings .item.active .title,
.listings .item .title:hover { color: #c5def6; }

.listings .item.active {
  background-color: #f8f8f8;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-left: 0;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #00853e;
  border-radius: 0;
}

.clearfix { display: block; }

.clearfix::after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Marker tweaks */
.mapboxgl-popup-close-button {
  display: none;
}

.mapboxgl-popup-content {
  font: 400 15px/22px 'Source Sans Pro', 'Helvetica Neue', Sans-serif;
  padding: 0;
  width: 180px;
}

.mapboxgl-popup-content-wrapper {
  padding: 1%;
}

.mapboxgl-popup-content h3 {
  background: #499ac9;
  color: #fff;
  margin: 0;
  display: block;
  padding: 10px;
  border-radius: 3px 3px 0 0;
  font-weight: 700;
  margin-top: -5px;
}

.mapboxgl-popup-content h4 {
  /* background: #91c949;
  color: #fff; */
  margin: 0;
  display: block;
  padding: 10px;
  font-weight: 400;
  padding-bottom: 0;
}

.mapboxgl-popup-content div {
  /* padding: 10px;
  padding-top: 0 !important; */
}

.mapboxgl-container .leaflet-marker-icon {
  cursor: pointer;
}

.mapboxgl-popup-anchor-top > .mapboxgl-popup-content {
  margin-top: 15px;
}

.mapboxgl-popup-anchor-top > .mapboxgl-popup-tip {
  border-bottom-color: #91c949;
}

.marker {
  border: none;
  cursor: pointer;
  height: 56px;
  width: 56px;
  background-image: url(marker.png);
  background-color: rgba(0, 0, 0, 0);
}
.marker1 {
  border: none;
  cursor: pointer;
  height: 56px;
  width: 56px;
  background-image: url(marker1.png);
  background-color: rgba(0, 0, 0, 0);
}
.marker2 {
  border: none;
  cursor: pointer;
  height: 56px;
  width: 56px;
  background-image: url(marker2.png);
  background-color: rgba(0, 0, 0, 0);
}
.marker3 {
  border: none;
  cursor: pointer;
  height: 56px;
  width: 56px;
  background-image: url(marker3.png);
  background-color: rgba(0, 0, 0, 0);
}
.mapboxgl-popup {
  padding-bottom: 50px;
}
input[type=text] {
  /*width: 10px;*/
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 12px;
  font-size: 16px;
  background-color: white;
  background-image: url('search.png');
  background-size: 25px;
  background-position: 10px 10px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  margin-left: 10px;
}

/*input[type=text]:focus {
  width: 50%;
}
*/




/* =========================================== */
/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  /* background-color: #f1f1f1; */
  width: 100%;
}

input[type=text]:focus {
  outline: none;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #e0d5d5;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  margin-left: 15px;
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #f1f1f1; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}
.btn {
  position: absolute;
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
  border-radius: 20px;
  /* display: none; */
}
.btn:focus {
  outline: none;
}
.btn:hover{
  outline: none;
}
/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}
.map-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
  font-family: Arial, sans-serif;
  overflow: auto;
  border-radius: 3px;
}
#legend {
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 18px;
  height: 100px;
  margin-bottom: 40px;
  width: 150px;
}

.legend-key {
  display: inline-block;
  border-radius: 20%;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  padding-bottom: 5px;
  border: 1px solid #499ac9 !important;
}
.tipdate{
  margin: 0;
  padding-left: 120px;
  font-size: 12px;
  height: 22px;
}
.filterbtn{
  margin-left: 180px;
  margin-top: -50px;
}
.skufilter{
  width: 125px;
  box-shadow:inset 0px 1px 0px 0px #499ac9;
	background:linear-gradient(to bottom, #499ac9 5%, #499ac9 100%);
	background-color:#499ac9;
	border-radius:6px;
	border:1px solid #499ac9;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #499ac9;
}
.skufilter:hover {
	background:linear-gradient(to bottom, #499ac9 5%, #499ac9 100%);
	background-color:#499ac9;
}
.skufilter:active {
	position:relative;
	top:1px;
}
.skulist{
  display: none;
}
.skufilterlist{
  /* display: none; */
  position: absolute; 
  width: 100%;
  /* width: 23.3333%; */
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.skufilteritem{
  font-size: 15px;
  padding: 15px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.skutitle{
  padding-left: 30px;
}
.storerocket-overlay-list-item-color {
  border-radius: 9999px;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 10px;
}
.storerocket-overlay-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 32px;
  border-radius: 9999px;
  width: 32px;
  z-index: 50;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 20px;
  outline: none !important;
  border: none !important;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  animation: delayed-fade-in-scale-up .6s 1;
  color: #499ac9;
}
.filterapply {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #499ac9;
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;

}
.filterapply {
  position: absolute;
  background-color: DodgerBlue;
  border: none;
  bottom: 50px;
  right: 20px;
  background: #499ac9;
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
}
.filterapply:focus {
  outline: none;
}
.filterapply:hover{
  outline: none;
}
/* Darker background on mouse-over */
.filterapply:hover {
  background-color: RoyalBlue;
}
.filtersection{
  overflow: scroll;
  height: 716px;
  /* background: #499ac9; */
}
.filtersection{
  scrollbar-face-color: #367CD2;
  scrollbar-shadow-color: #FFFFFF;
  scrollbar-highlight-color: #FFFFFF;
  scrollbar-3dlight-color: #FFFFFF;
  scrollbar-darkshadow-color: #FFFFFF;
  scrollbar-track-color: #FFFFFF;
  scrollbar-arrow-color: #FFFFFF;
}

/* Let's get this party started */
.filtersection::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.filtersection::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); 
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* Handle */
.filtersection::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background:#499ac9; 
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);  */
}