:root {
  --bs-body-bg: #2e2e30;
}
html,
body {
  background-color: #1e1e1e !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #ffffff !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-width {
  margin-top: 60px;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 20%;
  margin: 0 auto;
  text-align: center;
  font-size: 123%;
  line-height: 3rem;
  margin-bottom: 3rem;
}

#timeline {
  position: relative;
  max-width: 1000px;
  height: 50px;
  margin: 2em auto;
}

.hour-mark {
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
}

.hour-label {
  position: absolute;
  top: 25px;
  font-size: 12px;
  transform: translateX(-50%);
}

#red-line {
  position: absolute;
  width: 1px;
  height: 50px;
  background-color: red;
  transform-origin: top;
  transition: transform 1s linear;
}

#current-minute {
  position: absolute;
  bottom: -10px;
  line-height: 9px;
  font-size: 12px;
  color: red;
  opacity: 0.8;
}
#current-hour {
  position: absolute;
  bottom: -10px;
  line-height: 9px;
  font-size: 12px;
  color: red;
  opacity: 0.8;
  margin-left: -18px;
}

#current-hour::after {
  content: ':';
}

#current-time {
  margin-top: 3rem;
  font-size: 36px;
  text-align: center;
}

.date-current-time {
  max-width: 40em;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
