.vg-list-map {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 0 0 16px;
  overflow: hidden;
  background: #d7e0e8;
  border-radius: 0;
}
 
.vg-list-map.is-open {
  height: 420px;
}

.vg-list-map.is-open.has-card {
  overflow: visible;
}

.vg-list-map__card {
  position: absolute;
  z-index: 6;
  min-width: 176px;
  max-width: 240px;
  padding: 12px 32px 12px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  transform: translate(-50%, calc(-100% - 14px));
  pointer-events: auto;
}

.vg-list-map__card.is-below {
  transform: translate(-50%, 14px);
}

.vg-list-map__card-close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 22px;
  line-height: 26px;
  cursor: pointer;
}

.vg-list-map__card-name {
  display: block;
  color: #111;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.vg-list-map__card-name:hover {
  text-decoration: underline;
}

span.vg-list-map__card-name {
  cursor: default;
}

.vg-list-map__card-addr {
  margin-top: 4px;
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}
 
.vg-list-map__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  touch-action: manipulation;
}
 
.vg-list-map__preview {
  position: absolute;
  inset: 0;
  z-index: 2;
}
 
.vg-list-map.is-open .vg-list-map__preview,
.vg-list-map__preview[hidden] {
  display: none !important;
}
 
.vg-list-map__static { display: none; }
 
.vg-list-map.is-static-fallback .vg-list-map__preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(90, 120, 150, 0.1) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(90, 120, 150, 0.1) 32px),
    #c5d3de;
}
 
.vg-list-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}
 
.vg-list-map__btn {
  height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  color: #111;
  font-family: "GothamPro-Bold", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 44px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
 
.vg-list-map__btn:hover,
.vg-list-map__btn:focus {
  background: #fff;
  color: #111;
  outline: none;
}
 
.vg-list-map__btn:disabled {
  opacity: 0.85;
  cursor: wait;
}
 
.vg-list-map__cluster-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f9ce54;
  border: 2px solid #111;
  color: #111;
  font: 700 13px/36px Arial, sans-serif;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
 
.vg-list-map__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f9ce54;
  border: 2px solid #111;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
 
.vg-list-map .map-balloon a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
 
.vg-list-map .map-balloon a:hover {
  text-decoration: underline;
}
 
@media (max-width: 820px) {
  .vg-list-map {
    height: 200px;
  }
 
  .vg-list-map.is-open {
    height: 320px;
  }

  .vg-list-map__card {
    min-width: 160px;
    max-width: 200px;
  }
}
 