.location-map-container  {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #fff;
  min-height: 30rem;
}

location-map {
  display: block;
  background-image: asset-url("location-min.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: var(--location-zoom, cover);
  position: relative;
  top: 0;
  left: 0;
  min-height: 30rem;
  -webkit-filter: grayscale(.5);
  filter: grayscale(.5);
}

location-map.resizing {
  display: none;
}

.zoom-button {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  background-color: #fff;
  border: 0;
}

.zoom-button[disabled] {
  background-color: #cecece;
}

.zoom-button:hover {
  background-color:  var(--def-link-ft);
  color: #fff;
}

.zoom-button.in {
  top: 1rem;
}
.zoom-button.out {
  top: 5rem;
}

.action-wrapper {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}
