@charset "UTF-8";
#locations-map {
  position: relative;
}
#locations-map img {
  width: 100%;
  position: relative;
  z-index: 1;
}
#locations-map svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
#locations-map svg circle.animate {
  position: absolute;
  /* Removes the circle from the normal flow */
  opacity: 0.3;
  z-index: 1;
  transform-box: fill-box;
  /* Ensures transformation considers the circle’s box */
  transform-origin: center;
  animation: transform-map-buttons 2s infinite;
  transform: scale(1.1);
}
@keyframes transform-map-buttons {
  0% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.4);
  }
  100% {
    opacity: 0.3;
    transform: scale(1.1);
  }
}
#locations-map svg path {
  position: absolute;
  /* Removes the path from the normal flow */
  z-index: 2;
}

.map {
  position: relative;
}
.map .pin-popup {
  position: absolute;
  width: 240px;
  padding: 20px;
  border-radius: 15px;
  z-index: 3;
  display: none;
}
@media (max-width: 1440px) {
  .map .pin-popup {
    display: none !important;
  }
}
.map .pin-popup::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 10px);
  left: 0;
  top: 0;
  background-color: #fffae9;
  z-index: -1;
  border-radius: 15px;
}
.map .pin-popup::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -30px;
  /* Increased margin to center the wider arrow */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  /* Increased width of the arrow */
  border-color: #fffae9 transparent transparent transparent;
}
.map .pin-popup#boston {
  top: 28px;
  right: -46px;
}
.map .pin-popup#lawrence {
  top: 15px;
  right: -38px;
}
.map .pin-popup#worcester {
  top: 8px;
  right: -29px;
}
.map .pin-popup#connecticut {
  top: 39px;
  right: -18px;
}
.map .pin-popup p, .map .pin-popup p.m-0 {
  margin-bottom: 16px !important;
}
/*# sourceMappingURL=locations-map.css.map */
