body {
    overflow-x: hidden !important;
    margin: 0;
}
#mapid {
    position: absolute;
    top: 30px;
    bottom: 0px;
    width: 100vw;
    z-index: -1 !important;
    background: #3bb2e2;
}

h1 {
    margin-top: 10px;
    margin-left: 10px;
    padding: 5px;
    color: white;
    background: black;
    border-radius: 5px;
    width: 150px;
    font: 30px/32px Arial, Helvetica, sans-serif;
}

.slidecontainer {
    width: 100%; /* Width of the outside container */
}
  
  /* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 30px; /* Specified height */
    margin: 0;
    background: #000; /* Grey background */
    outline: none; /* Remove outline */
  }
  
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 22px; /* Set a specific slider handle width */
    height: 22px; /* Slider handle height */
    background:linear-gradient(45deg,red 40%,#000 50%,red 60%); /* Green background */
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    cursor: pointer; /* Cursor on hover */
  }
  
.slider::-moz-range-thumb {
    width: 22px; /* Set a specific slider handle width */
    height: 22px; /* Slider handle height */
    background:linear-gradient(45deg,red 40%,#000 50%,red 60%); /* Green background */
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    cursor: pointer; /* Cursor on hover */
  }

.info {
	padding: 6px 8px;
	font: 14px/16px Arial, Helvetica, sans-serif;
	background: black;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    color: white;
    border-color: white;
    text-align: center;
}

.hoverinfo {
    top: 3px;
	padding: 6px 8px;
	font: 14px/16px Arial, Helvetica, sans-serif;
	background: black;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    color: white;
    border-color: white;
    text-align: center;
    width: 150px;
}

.summaryinfo {
	padding: 6px 8px;
	font: 14px/16px Arial, Helvetica, sans-serif;
	background: white;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    color: black;
    border: 4px;
    border-style: solid;
    border-color: black;
    text-align: center;
    width: 300px;
}
@media only screen and (max-width: 600px) {
    .summaryinfo {
      width: 200px;
    }
  }

.legend {
	line-height: 18px;
    color: white;
    background-color: black;
}
.legend i {
	width: 18px;
	height: 18px;
	float: left;
	margin-right: 8px;
}

#Btn {
    position: absolute;
    height: 33px;
    line-height: 10px;
    top: 95px;
    left: 27px;
    padding: 10px;
    z-index: 2;
    font-size: 15px;
    border-style: dotted;
    border-color: white;
    font-weight: normal;
    background: #000;
    color: #fff;
    transition: all 0.3s ease 0s;
}

#Btn:hover {
    border-color: red;
    color: red;
    font-weight: normal;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

#Btn:disabled {
    display: none;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
  }
  
  .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }