/* Redemption Way – kis térképkártya a térkép keretén belül */

body.rw-map-popup-open {
  overflow: auto !important;
}

#rwMapOverlay {
  display: none !important;
}

#mapWrap #mapCard {
  position: absolute !important;
  z-index: 8 !important;

  right: auto !important;
  bottom: auto !important;

  width: min(
    330px,
    calc(100% - 24px)
  ) !important;

  max-height: calc(
    100% - 24px
  ) !important;

  margin: 0 !important;

  overflow-x: hidden !important;
  overflow-y: auto !important;

  overscroll-behavior: contain;
}

#mapWrap #mapCard img {
  width: 100% !important;
  height: 125px !important;

  object-fit: cover !important;
}

@media (max-width: 760px) {
  #mapWrap #mapCard {
    position: absolute !important;

    width: min(
      330px,
      calc(100% - 24px)
    ) !important;

    max-height: calc(
      100% - 24px
    ) !important;
  }
}
