.locationContainer {
  background-color: #f6f6f6;
  display: flex;
  width: 100%;
  border-radius: var(--boder-radius);
  border: 2px solid #ffffff00;
  align-items: center;
}

#location {
	width: 100%;
	display: flex;
}

#shuffleLocation {
	width: 100%;
	display: flex;
}
.currentLocImage {
  margin: 0px 7px 0 11px;
  cursor: pointer;
}
.currentLocImage img {
  max-height: 25px;
}

#suggestions {
	position: absolute;
	background: #fff;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	width: 300px;
}

#suggestions div {
	padding: 8px;
	cursor: pointer;
}

#suggestions div:hover {
	background-color: #eee;
}

#elevationChart {
	height: 150px !important;
	margin: 25px 0 0 0;
}
.chart-container {
	width: 100%;
	overflow-x: auto;
}

.instruction.active {
  background-color: #d0f0d0;
  font-weight: bold;
}

.toolbar-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  transition: background .2s;
}
.toolbar-btn:hover {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}