.imp-map {
  overflow: visible;
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: table;
  position: relative;
}

/* padding-top trick keeps ratio */
.imp-map__img {
  width: 100%;
  height: 100%;
  display: block;
}

.imp-map-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imp-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease-out;
	opacity: 0;
}

.imp-pin:hover,
.imp-pin.imp-pin--active {
	opacity: 1;
	width: 430px !important;
	max-height: 220px; // need
}

.imp-pin img {
  transition: opacity 0.3s ease;
  width: 100%;
  height: auto;
  max-height: 270px;
  max-width: none;
  border: none;
  box-shadow: none;
  pointer-events: none; /* don't block hover from parent */
  transition: all 0.2s ease-out;
}

.imp-pin:hover img {

  //width:400px !important;
  //max-height: 220px;
  pointer-events: auto;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .imp-pin:hover,
  .imp-pin.imp-pin--active {
	   width: 50vw !important;
  }
}
