* {
  box-sizing: border-box;
}

html, body {
  margin: 0px;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
  margin: 0px;
  padding: 0px;
}

.menu {
  width: max-content;
  /* min-width: 300px; */
  max-width: 20%;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #fff;
  font-family: 'Varela Round', sans-serif;
  padding: 0.5em;
  border-right: 4px solid #ddd;
}

#map {
  flex: 1;
}

#clear button {
  font-size: 10px;
  margin-right: 2px;
}

.map-btn {
  border: 1px solid #eaeaea;
  padding: 0.5em 0.5em 0.5em 1em;
  margin-bottom: 0.5em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.glyph-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-btn:hover {
  border-color: #666;
}

.map-btn button {
  /* background-color: #4CAF50; Green */
  margin: 0px 2px;
  cursor: pointer;
  padding: 1px 3px;
  border: 1px solid#666;
}

.menu h5 {
  color: #333;
}

.loading.visible {
  z-index: 9999999;
  height: 100%;
  width: 100%;
  background: green;
  display: flex;
  align-items: center;
  justify-content: center;
}