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

#leaflet-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:#AAA
}

.stop-marker {
  background-color: #FFFFFF;
  border: 2px solid #00527D;
  color: #00527D;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
}
.stop-marker.start {
  background-color: #F6CF65;
}

@keyframes bus-bobbing {
  0%{ transform: rotate(0) translateY(0); }
  100%{ transform: rotate(2.0deg) translateY(1px); }
}

.bus-marker {
  position: relative;
}
.bus-marker:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("santa.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: bus-bobbing 0.2s infinite ease-in-out forwards alternate;
}
.link {
  color: #00527D;
  text-decoration: underline;
  cursor: pointer;
}
