.map-pin {
  width: 30px;
  height: 40px;
  position: absolute;
}
.map-pin-svg {
  cursor: pointer;
}
.map-pin-path {
  fill: white;
  stroke: #8c1938;
  stroke-width: 2;
}
.map-pin-text {
  text-anchor: middle;
  dominant-baseline: middle;
  font-family: Verdana, sans-serif;
  font-size: 140%;
  fill: #8c1938;
}
.map-pin-text-smaller {
  font-size: 110%;
}
.location-map {
  position: relative;
  width: 100%;
  height: 100%;
}
/* @media (min-width: 400px) {
  .location-map {
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 768px) {
  .location-map {
    width: 100%;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .location-map {
    width: 100%;
    height: 80%;
  }
}
@media (min-width: 1200px) {
  .location-map {
    width: 100%;
    height: 100%;
  }
} */

#state-locations-list {
  display: none;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  min-width: 136px;
  text-align: left;
  border: 2px solid black;
}
#state-locations-list .close-btn {
  position: absolute;
  top: -10px;    /* pull outside vertically */
  right: -10px;  /* pull outside horizontally */
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* optional subtle shadow */
}
#state-locations-list .locations-list-link {
  color: black;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
}