html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 100%;
}

.custom-map-control-button {
  background-color: #fff;
  background-image: url("../img/my-location.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  overflow: hidden;
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.custom-map-control-button:hover {
  background-color: rgb(235, 235, 235);
}

.custom-map-control-button-menu {
  background-color: #fff;
  background-image: url("../img/hamburger-button.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  overflow: hidden;
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.custom-map-control-button-menu:hover {
  background-color: rgb(235, 235, 235);
}

.dropdown {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 100;
}

.green {
  color: #097138;
}

.yellow {
  color: #dba925;
}

.red {
  color: #a52714;
}

.white {
  color: #fff;
}