/* -----------------------------------------*/
/* LOCATION MAP */

.location-map {
  overflow: hidden;
  width: 100%;
  height: stretch;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: stretch;
  border: 0;
}
.pa-icon-class span {
  display: flex;
  width: 100%;
  height: 100%;
}
.pa-icon-class svg {
  width: inherit;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
}

/* -----------------------------------------*/
/* DARK MODE MAP */

@media (prefers-color-scheme: dark) {
  .location-map iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(115%);
  }
}
