/* for desktop */
html, body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
  
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

#left-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 67%;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: auto;
}

#intro-content h5, #intro-content p , #intro-content ul {
  margin: 10px;
}

#logo20 {
  height: 125px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.blue-button1 {
  background-color: #0072b8;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-weight: normal;
  height: 37px;
  padding: 10px 24px;
  display: inline-block;
  width: 30%;
  margin-left: 35%;
  margin-right: 35%;
  margin-top: 15px;
  /* cursor: default; */
  border-radius: 1px;
}

.blue-button2 {
  background-color: #0072b8;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-weight: normal;
  height: 37px;
  padding: 10px 24px;
  display: inline-block;
  margin: 7px 7px;
  /* cursor: default; */
  border-radius: 1px;
}

.blue-button1:hover, .blue-button2:hover {
  background-color: #f04e98;
  text-decoration: none;
}

#legend {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 25%;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: auto;
}

#legend-table {
  width: 100%;
  height: 100%;
  border-style: hidden;
  text-align: center;
}

span {
  display: inline-block;
  margin-bottom: 4px;
}

.street {
  background-color: #0076A8;
}

.trail {
  background-color: #228b22;
}

.existing {
  width: 80px;
  height: 3px;
}

.twenty {
  width: 6px;
  height: 4px;
  background-color: #e87722;
}

.twenty-complete {
  width: 40px;
  height: 4px;
  background-color: #e87722;
}

.twenty-five {
  width: 6px;
  height: 3px;
  opacity: 0.75;
}


.forty {
  width: 12px;
  height: 3px;
  opacity: 0.75;
}

.forty-space {
  width: 4px
}

.mapboxgl-popup {
  max-width: 400px;
  font-size: 1rem;
  text-align: center;
}

#fly {
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 55px;
  margin-right: 11px;
  width: 33px;
  height: 33px;
  padding: 5px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  text-align: center;
  background-color: white;
}

#fly:hover {
  background-color: #ebebeb;
}

#home {
  width: 80%;
  height: 80%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

td a {
  /* height and width are required; sets the size of the cell */
  height: 18px;
  width: 18px;
  /* to switch between background images on hover, you have to 
  use the backgroud property, not the background-image property */
  background: url('../img/off.png') no-repeat;
  background-size: contain;
  display: block;
  margin: 0;
  padding: 0;
}
  
td a:last-child {
  border: none;
}
  
td a.active {
  background: url('../img/on.png') no-repeat;
  background-size: contain;
  text-align: center;
  vertical-align: middle;
  
}


