body {
  padding-top: 0;
}

.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 {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}

.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: #e3e2d5;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  background: #e3e2d5;
  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: #ccc;
}

.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: #e3e2d5;
  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;
  }

  .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);
  }
}