#header {
    height: 50px;
    /* background-color: rgb(39, 39, 39); */
}
#mapdiv {
    /* width: 97%; */
    height: 100vh;
    background-color: rgb(233, 233, 233);
}
#side-panel {
    width: 3%;
    height: 100vh;
    background-color: #595959;
}
.main {
    margin-left: 3%; /* Same as the width of the sidebar */
    padding: 0px 10px;
}
#footer {
    height: 75px;
    background-color: rgb(255, 255, 255);
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
position: ("bottom", "right");
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #777;
}

.mapboxgl-popup {
    max-width: auto;
    color: rgb(58, 58, 58);
    font: 12px/20px 'Montserrat', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 0.5rem;
font-family: 'Montserrat', sans-serif;
/* font-weight: 900; */
line-height: 1.2;
color: white;
}

h4, .h4 {
margin-bottom: 0.5rem;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
line-height: 1.2;
color: #ED7D31; 
}

h5, .h5 {
  margin-bottom: 2%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #ED7D31; 
}

::placeholder {
    color:rgb(255, 255, 255);
    text-align: left;
}

hr{
height: 10px;
background-color: rgb(255, 255, 255);
border: none;
}

/* .prop-info {
position: absolute;
font-family: 'Montserrat';
margin-top: 5px;
margin-left: 91.8%;
padding: 5px;
width: 8%;
border: 1px solid rgb(255, 255, 255);
font-size: 12px;
color: rgb(85, 85, 85);
background-color: #fff;
border-radius: 3px;
} */


/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: rgb(34, 34, 34); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 0px; /* Place content 60px from the top */
    padding-right: 0ex;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    margin-left: 3%;
  }

  .sidenav2 {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    right:0;
    /* background-color: rgba(34, 34, 34, 0.521);  */
    background-color: rgba(34, 34, 34, 0.7); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 0px; /* Place content 60px from the top */
    padding-right: 0ex;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    margin-right: 3%;
  }
  
  /* The navigation menu links */
  /* .sidenav a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  } */
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  .icon-bar {
    width: 3%; /* Set a specific width */
    background-color: rgb(59, 59, 59); /* Dark-grey background */
  }
  
  .icon-bar a {
    display: block; /* Make the links appear below each other instead of side-by-side */
    text-align: center; /* Center-align text */
    padding: 10px; /* Add some padding */
    transition: all 0.3s ease; /* Add transition for hover effects */
    color: white; /* White text color */
    font-size: 25px; /* Increased font-size */
    background-color: rgb(34, 34, 34);
  }
  
  .icon-bar a:hover {
    background-color: #000; /* Add a hover color */
  }
  
  .active {
    background-color: #ff6600; /* Add an active/current color */
  }

  /* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 30%;
    padding: 0px;
    height: 100vh; /* Should be removed. Only for demonstration */
  }
  
.columnTwo {
    float: left;
    width: 70%;
    padding: 0px;
    height: 100vh; /* Should be removed. Only for demonstration */
 }

.columnThree {
    float: left;
    width: 3%;
    padding: 0px;
    height: 100vh; /* Should be removed. Only for demonstration */
 }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}




/* -----  https://docs.mapbox.com/mapbox-gl-js/example/offset-vanishing-point-with-padding/ */

.rounded-rect {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 50px -25px black;
  }
   
  .flex-center {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  }
   
  .flex-center.left {
  left: 0px;
  }
   
  .flex-center.right {
  right: 0px;
  }
   
  .sidebar-content {
  position: absolute;
  width: 95%;
  height: 95%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  color: gray;
  }
   
  .sidebar-toggle {
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  }
   
  .sidebar-toggle.left {
  right: -1.5em;
  }
   
  .sidebar-toggle.right {
  left: -1.5em;
  }
   
  .sidebar-toggle:hover {
  color: #0aa1cf;
  cursor: pointer;
  }
   
  .sidebar {
  transition: transform 1s;
  z-index: 1;
  width: 300px;
  height: 100%;
  }
   
  /*
  The sidebar styling has them "expanded" by default, we use CSS transforms to push them offscreen
  The toggleSidebar() function removes this class from the element in order to expand it.
  */
  .left.collapsed {
  transform: translateX(-295px);
  }
   
  .right.collapsed {
  transform: translateX(295px);
  }


  .accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
 }


 .prop-info {
  position: absolute;
  font-family: 'Montserrat';
  margin-top: 5px;
  margin-left: 80.6%;
  /* margin-left: 83.6%; */
  padding: 5px;
  width: 16%;
  border: 1px solid rgb(255, 255, 255);
  font-size: 12px;
  color: rgb(209, 20, 20);
  background-color: #fff;
  border-radius: 3px;
  }


.boxed {
  border: 0px solid rgb(255, 255, 255);
  border-radius: 10px;
  background:rgba(32, 32, 32, 0.4);
  height: 25px;
  font-size: 13.5px;
  color: #fff;
  line-height: 25px;
  margin: 20px; 
  text-align:center; 
  font-family: 'Montserrat';
}

.boxed a:hover {
  color: #fafaf9;
}

.boxed:hover {
  background-color: #2c2c2c;
}




/* -------------- */


/* .boxed {
  border: 0px solid rgb(255, 255, 255);
  border-radius: 10px;
  background:rgba(32, 32, 32, 0.4);
  height: 25px;
  font-size: 13.5px;
  color: #fff;
  line-height: 25px;
  margin: 20px; 
  text-align:center; 
  font-family: 'Montserrat';
}

.boxed:hover {
  background-color: #2c2c2c;
}

.boxedTwo {
  border: 0px solid rgb(255, 255, 255);
  border-radius: 10px;
  background:rgba(32, 32, 32, 0.4);
  height: 25px;
  font-size: 13.5px;
  color: #fff;
  line-height: 25px;
  margin: 20px; 
  text-align:center; 
  font-family: 'Montserrat';
}

.boxedTwo:hover {
  background-color: #2c2c2c;
} */

/* .boxed a {
  border: 0px solid rgb(255, 255, 255);
  border-radius: 10px;
  background:rgba(32, 32, 32, 0.4);
  height: 25px;
  font-size: 13.5px;
  color: #fff;
  line-height: 25px;
  margin: 20px; 
  text-align:center; 
  font-family: 'Montserrat';
}

.boxed a:last-child {
  border: none;
}



.boxed a:hover {
  background-color: #f8f8f8;
  color: #f30000;
}

.boxed a.active {
  background-color: #3887be;
  color: #ffffff;
}

.boxed a.active:hover {
  background: #3074a4;
} */



.range-labels {
  /* margin: 18px -41px 0; */
  margin: 20px;
  padding: 0;
  list-style: none;
}
  
.range-labels li {
    position: relative;
    float: left;
    width: 8.25%;
    text-align: left;
    color: #b2b2b2;
    font-size: 12px;
    cursor: pointer;
  }
  
  .active {
    color: #ED7D31;
    background-color: rgb(34, 34, 34);
  }
  
  .selected::before {
    background: #37adbf;
  }
  
  .active.selected::before {
    display: none;
  }


  /* The side navigation menu */
.bottomnav {
  height: 0%; /* 100% Full-height */
  width: 67%; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 200; /* Stay on top */
  bottom: 0%;
  left: 27%;
  background-color: rgb(34, 34, 34); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 0px; /* Place content 60px from the top */
  padding-right: 0ex;
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  margin-left: 3%;
}


.map-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.63);
  margin-right: 3.4%;
  font-family: Arial, sans-serif;
  overflow: auto;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px
}

#features {
  top: 0;
  height: 100px;
  margin-top: 20px;
  width: 250px;
}

#legend {
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 18px;
  height: 150px;
  top: 78px;
  width: 16%;
}

.legend-key {
  display: inline-block;
  border-radius: 20%;
  width: 20px;
  height: 10px;
  margin-right: 10px;
}


#lotChart {
  min-height: 80px;
  width: 80%;
  margin-top: 0%
}