/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
/* TYPOGRAPHY */
/* Google Fonts */
.locator-map {
  width: 100%;
  height: 420px;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 62.0625rem) {
  .locator-map {
    height: calc(100vh - 220px);
    min-height: 480px;
  }
}
body.scrolled .locator-map {
  scroll-margin-top: 7.5rem;
}

.locator-marker {
  width: 26px;
  height: 26px;
  background-color: #A44F17;
  -webkit-mask-image: url("../../images/icons/map-pin-marker.svg");
          mask-image: url("../../images/icons/map-pin-marker.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.locator-map .leaflet-bottom.leaflet-left .leaflet-control-zoom {
  margin: 0 0 4.125rem 1.25rem;
}
.locator-map .leaflet-control-zoom {
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.locator-map .leaflet-control-zoom-in,
.locator-map .leaflet-control-zoom-out {
  width: 48px !important;
  height: 48px !important;
  line-height: 3rem !important;
  font-size: 0;
  background-color: #fff;
  border: 1px solid #DFD5CA;
  position: relative;
}
.locator-map .leaflet-control-zoom-in::before,
.locator-map .leaflet-control-zoom-out::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: #1A1C1E;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.locator-map .leaflet-control-zoom-in,
.locator-map .leaflet-control-zoom-out,
.locator-map .leaflet-control-zoom-in:first-child,
.locator-map .leaflet-control-zoom-out:last-child {
  border-radius: 0.75rem !important;
  border-bottom: 1px solid #DFD5CA;
}
.locator-map .leaflet-control-zoom-in::before {
  -webkit-mask-image: url("../../images/icons/plus.svg");
          mask-image: url("../../images/icons/plus.svg");
}
.locator-map .leaflet-control-zoom-out::before {
  -webkit-mask-image: url("../../images/icons/minus.svg");
          mask-image: url("../../images/icons/minus.svg");
}
