/* Location history & weather information */
.location-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.location-map-wrapper {
  position: relative;
  order: 1;
  flex-grow: 4;
}
.location-map {
  width: 700px;
  height: 550px;
}
.location-history-wrapper {
  order: 2;
  flex-grow: 2;
  padding-left: 1rem;
}
.location-history {
  width: 200px;
  height: 550px;
  overflow-y: scroll;
}
.location-history .location-reading {
  background: #888888;
  color: white;
  display: block;
  margin: 0.4rem 0;
  padding: 0.4rem 0;
  border-radius: 0.2rem;
  width: 170px;
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
}
.location-reading .coordinates {
  padding: 0 0.7rem;
}
.location-reading .time {
  font-size: 0.7rem;
  padding: 0.1rem 0.7rem;
  font-style: italic;
}
.location-reading .time:hover {
  background: #ea7000;
  color: black;
}
.location-history .location-reading:hover {
  background: #da6000;
}
.location-history .location-reading:first-child {
  margin-top: 0px;
}
.weather-information-wrapper {
  order: 3;
  width: 200px;
  padding-left: 1rem;
}
.weather-information {
  font-size: 0.8rem;
  width: calc(200px + 1rem);
}
.weather-information .summary {
  width: 50px;
  float: left;
}
.weather-information .summary:after {
  content: "";
  display: table;
  clear: both;
}
.weather-information .icon.weather {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 0.5rem;
}
.weather-information .temperature {
  text-align: center;
}
.weather-information .extra-info {
  padding-left: 1rem;
  width: 150px;
  float: left;
}
.weather-information .description {
  font-weight: bold;
  text-transform: lowercase;
}
.weather-information .description:first-letter {
  text-transform: capitalize;
}
.weather-information .wind .direction {
  font-weight: bold;
}
.no-historical-weather {
  display: none;
}
.select-map-view {
  position: absolute;
  top: 0;
  font-size: 12px;
  left: 700px;
  transform: translate(-100%, 0);
  white-space: nowrap;
}
.select-map-view a {
  text-decoration: none;
  padding-left: 20px;
}
.select-map-view a.disabled {
  cursor: default;
  color: inherit;
  opacity: 0.7;
}
