.service-location-section {
  padding: var(--margin-medium);
  position: relative;
  background: var(--light-grey);
}
.service-location-section:after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--light-grey)), to(white));
  background: linear-gradient(to bottom, var(--light-grey) 0%, white 100%);
}
.service-location-section .service-location--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--margin-medium);
}
.service-location-section .service-location--content .service-location--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  z-index: 100;
}
.service-location-section .service-location--content .service-location--left .locations {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: location-counter;
}
.service-location-section .service-location--content .service-location--left .locations li {
  counter-increment: location-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.service-location-section .service-location--content .service-location--left .locations li::before {
  content: counter(location-counter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7E8F6A;
  color: white;
  font-weight: 600;
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service-location-section .service-location--content .service-location--left .locations li a {
  text-decoration: none;
  font-weight: 500;
  color: #111;
}
.service-location-section .service-location--content .service-location--right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.service-location-section .service-location--content .service-location--right:before {
  content: "";
  position: absolute;
  height: 200px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--light-grey)), color-stop(40%, var(--light-grey)), to(rgba(239, 239, 239, 0)));
  background: linear-gradient(to bottom, var(--light-grey) 0%, var(--light-grey) 40%, rgba(239, 239, 239, 0) 100%);
  pointer-events: none;
}
.service-location-section .service-location--content .service-location--right .map-wrapper {
  position: relative;
  width: 100%;
}
.service-location-section .service-location--content .service-location--right .map-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: visible;
}
.service-location-section .service-location--content .service-location--right .map-wrapper svg .location-pin {
  display: none;
}
.service-location-section .service-location--content .service-location--right .map-pins {
  position: absolute;
  inset: 0;
  z-index: 101;
  pointer-events: none;
}
@media (max-width: 768px) {
  .service-location-section {
    padding-left: var(--margin-small);
    padding-right: var(--margin-small);
  }
  .service-location-section .service-location--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-location-section .service-location--content .service-location--right {
    width: 100%;
  }
  .service-location-section .service-location--content .service-location--right::before {
    display: none;
  }
}

.map-pin {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #80956C;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
}
.map-pin.is-highlighted {
  -webkit-transform: translate(-50%, -50%) scale(1.25);
          transform: translate(-50%, -50%) scale(1.25);
  background: #4a5e38;
}

.service-location-section .service-location--content .service-location--left .locations li {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  cursor: pointer;
}
.service-location-section .service-location--content .service-location--left .locations li::before {
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.service-location-section .service-location--content .service-location--left .locations li.is-highlighted {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.service-location-section .service-location--content .service-location--left .locations li.is-highlighted::before {
  background: #4a5e38;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.service-location-section .service-location--content .service-location--left .locations li.is-highlighted a {
  color: #4a5e38;
  font-weight: 600;
}