html, body {
  height: 100%;
}

body {
  padding-top: 0;
  overflow: hidden;
}

#NeubauMiete {
  /* height: 520px; */
  flex: 1;
  width: 100%;
  /* border: 1px solid grey;
  margin-bottom: 1%;
  margin-top: 20px;
  margin-right: 90px; */
}

.content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;

  height: 100%;
}

.legendbutton {
  float: none;
  margin: 0;
  padding: 0px 8px;

  border: 1px solid #e3e2d5;
  background-color: transparent;
}

.source {
  padding: 0;
  padding-bottom: 10px;
  /* text-align: right; */
}

.map-subline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.map-timeline {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
}

.timeline-control {
  display: flex;
  flex-wrap: wrap;
}

.timeline-control button {

  border: 0;
  border-radius: 0;
  
  color: #00adcc;
  background-color: white;

  font-size: 25px;
  line-height: 1em;

  flex: 1;
  margin: 2px;
}

.timeline-control button:before {
  font-family: ibb_iconfont;
}

#timeline-play {
  flex: 0 0 100%;
  margin-right: 0;
}

#timeline-prev:before {
  content: "\e901"
}

#timeline-next:before {
  content: "\e902";
}

.timeline-range {
  position: relative;
  flex: 1;
  margin: 0 40px;
}

input#timeline-range-input {
  width: 100%;
  height: 22px;

  background-color: transparent;

  -webkit-appearance: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: #666;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  background: #666;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00adcc;
  margin-top: -6px;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00adcc;
  margin-top: -10px;
}

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

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #666;
}

.map-timeline button {
  /* height: 25px; */
  width: 40px;
  margin: 0;
}

.range-labels {
  position: absolute;
  width: calc(100% + 20px);

  display: flex;
  justify-content: space-between;

  margin-left: -10px;
  margin-right: -10px;

  z-index: -1;
}

.range-label {
    position: relative;
}

.range-label:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #666;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translate(-50%,-50%);
}

@media screen and (max-width:680px) {
  .map-control {
    display: block;
  }
  
  .map-timeline {
    max-width: none;
    margin-bottom: 20px;
  }

  .legendbutton {
    white-space: nowrap;
  }

  #chapter5 {
    line-height: 21px;
  }

  .map-timeline {
    flex-wrap: wrap;
    align-items: flex-start;
    flex: 0 0 80px;
  }

  .timeline-range {
    flex: 0 0 100%;
    order: 3;
    
    margin: 0;
    margin-top: 10px;
    padding: 0 20px;
  }

  .timeline-control:first-child {
    flex: 1;

    display: flex;
    justify-content: flex-start;  
  }

  .timeline-control:first-child button#timeline-play {
    flex: 0 0 auto;
    padding: 0;
    width: 40px;
  }

  .range-labels {
    width: calc(100% - 20px);
  }

  .range-label span {
    display: inline-block;
    transform: rotate(45deg);
  }
}