html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: hidden;
}

#map {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
}

.slidecontainer {
  height: 10%;
}

/*BUTTON*/
.button {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: small;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border: 5px solid #7f3f00;
  border-radius: 4px;
}

.button.pressed {
  background-color: rgba(80, 80, 80, 0.5);
  color: rgba(40, 40, 40, 0.5);
}

/*TITLE CARD*/
.title-card {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: small;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border: 5px solid #7f3f00;
  border-radius: 4px;
}

/*ELEVATION DISPLAY*/
#elevation-display {
  position: absolute;
  top: 140px;
  left: 10px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: small;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 8px;
  border: 5px solid #7f3f00;
  border-radius: 4px;
  z-index: 1000;
}

/*SLIDER*/
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #7f3f00;
  cursor: pointer;
  margin-left: -12.5px;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #7f3f00;
  cursor: pointer;
}