:root {
  --door_color: blue;
  --gate_color: yellow;
  --shed_color: purple;
  --ladder_color: orange;
  --panel_color: green;
  --lightpole_color: green;
  --legend_marker_size: 15px;
  --legend_marker_half_size: 7px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


#map {
  margin: 0 auto;
  height: 100vh;
  max-width: 100vw;
}

/* #starbucks-panel {
  height: 11em;
} */

img {
  height: 150px;
  transition: height 300ms;
}

/* img:hover {
  height: 200px;
  transition: height 300ms;
} */

.leaflet-popup-content {
  width: max-content !important;
}

#close-btn {
  width:40px;
}

/* #click-popup {
  min-height: 122px;
  max-width: fit-content;
} */

#login-window {
  position: absolute !important;
  top: 0px;
  height: 100%;
  width:100%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.hide {
  display: none !important;
}

input {
  margin: 1em;
}

ul {
  list-style: none;
}

li {
  width: 65px;
  margin:4px;
  font-size: small;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#legend {
  position: absolute;
  z-index: 9000;
  right: 0;
  top: 0;
  width: 80px;
  height: 165px;
  background-color: white;;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
}

#legend-door::after {
  content: '';
  width: var(--legend_marker_size);
  height: var(--legend_marker_size);
  background-color: var(--door_color);
  border-radius: 50%;
  /* position: absolute; */
  margin-left: 7px;
}

#legend-gate::after {
  content: '';
  width: var(--legend_marker_size);
  height: var(--legend_marker_size);
  background-color: var(--gate_color);
  border-radius: 50%;
  /* position: absolute; */
  margin-left: 7px;
}

#legend-ladder::after {
  content: '';
  width: var(--legend_marker_size);
  height: var(--legend_marker_size);
  background-color: var(--ladder_color);
  border-radius: 50%;
  /* position: absolute; */
  margin-left: 7px;
}

#legend-shed::after {
  content: '';
  width: var(--legend_marker_size);
  height: var(--legend_marker_size);
  background-color: var(--shed_color);
  border-radius: 50%;
  /* position: absolute; */
  margin-left: 7px;
}

#legend-panel::after {
  content: '';
  width: var(--legend_marker_size);
  height: var(--legend_marker_size);
  background-color: var(--panel_color);
  border-radius: 50%;
  /* position: absolute; */
  margin-left: 7px;
}

#legend-pole::after {
  content: '';
  width: var(--legend_marker_half_size);
  height: var(--legend_marker_half_size);
  background-color: var(--lightpole_color);
  border-radius: 50%;
  /* position: absolute; */
  /* margin-left: 7px; */
  margin-right: 3.5px;
}

.leaflet-attribution-flag {
  display: none !important;
}