/**
 * MapLibre v2 Map Styles
 *
 * Styles specific to the MapLibre GL JS locator (v2).
 * Shared layout styles (header, footer, navigation) come from main.scss.
 */
.maplibregl-map {
  font-family: "Inter", sans-serif;
}

.eh-map-container {
  position: relative;
  overflow: hidden;
}

#map {
  --heightHeader: calc(var(--header-height, 76px) + var(--custom-info-height, 0px));
  position: fixed;
  top: calc(var(--header-height, 0px) + var(--custom-info-height, 0px));
  bottom: 0;
  left: 0;
  right: 0;
  min-height: calc(100% - var(--heightHeader));
  height: calc(100% - var(--heightHeader));
  background: var(--bs-white);
}
@media (max-width: 991px) {
  #map {
    --heightHeader: calc(
      var(--header-height, 0px) + var(--watch-partner, 0px) +
        var(--custom-info-height, 0px)
    );
    top: auto;
  }
}

.site-locator {
  overscroll-behavior: contain;
  overflow: hidden;
}

.eh-app-message {
  position: fixed;
  top: var(--header-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: #8a0719;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: none;
  box-shadow: none;
}
.eh-app-message[style*="display: none"] {
  transform: translateY(-100%);
}
.eh-app-message__content {
  padding: 4px 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
}
.eh-app-message__content a {
  color: #fff;
  text-decoration: underline;
}
.eh-app-message__content--scroll {
  display: inline-block;
  animation: eh-marquee var(--scroll-duration, 10s) linear infinite;
  padding-left: 100%;
}
.eh-app-message__link {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.eh-app-message__link:hover {
  opacity: 0.85;
}

@keyframes eh-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.eh-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.15s ease;
}
.eh-marker:hover {
  transform: scale(1.1);
}
.eh-marker__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--marker-color, #fff);
  border: 2px solid var(--marker-color-outline, #333);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.eh-marker__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--marker-color-front, #333);
}
.eh-marker__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.eh-marker__icon--hole {
  width: 24px;
  height: 24px;
  background-color: var(--marker-color, #fff);
  border: 2px solid var(--marker-color-outline, #333);
}
.eh-marker__hole-number {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--marker-color-front, #333);
}
.eh-marker__label {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  color: #333;
  margin-top: 2px;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff;
}
.eh-marker--active {
  z-index: 10;
}
.eh-marker--active .eh-marker__icon {
  transform: scale(1.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.eh-marker--pulse .eh-marker__icon {
  animation: eh-pulse 1.5s infinite;
  --pulse-color: var(--marker-buzz-color, var(--main-color-bg, #c00));
}

.eh-marker--crowdcloud[data-crowdcloud-animation=rotation] .eh-marker__icon {
  position: relative;
}
.eh-marker--crowdcloud[data-crowdcloud-animation=rotation] .eh-crowdcloud-ring {
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  animation: eh-crowdcloud-spin 4s linear infinite;
  pointer-events: none;
}
.eh-marker--crowdcloud[data-crowdcloud-animation=pulsation] .eh-marker__icon {
  animation: eh-crowdcloud-pulse 1.5s ease-out infinite;
}

@keyframes eh-crowdcloud-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes eh-crowdcloud-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--marker-crowdcloud-color);
  }
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
.eh-crowdcloud-btn {
  position: absolute;
  width: 60px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  top: calc(var(--header-height, 0px) + var(--custom-info-height, 0px) + 10px);
  left: 5px;
  padding: 0;
  overflow: hidden;
  z-index: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .eh-crowdcloud-btn {
    top: calc(var(--header-height, 0px) + var(--watch-partner, 0px) + var(--custom-info-height, 0px) + 10px);
  }
}
.eh-crowdcloud-btn--active .eh-crowdcloud-btn__thumb {
  transform: translateX(28px);
}
.eh-crowdcloud-btn__thumb {
  width: 24px;
  height: 24px;
  background-color: #888;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}
.eh-crowdcloud-btn__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.eh-crowdcloud-btn__icon-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.eh-popup__live-toggle {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 1;
}
.eh-popup__live-toggle .eh-crowdcloud-btn {
  position: static;
  width: 52px;
  height: 28px;
  z-index: auto;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--crowdcloud-border-color, rgba(255, 255, 255, 0.45));
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.eh-popup__live-toggle .eh-crowdcloud-btn__thumb {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.eh-popup__live-toggle .eh-crowdcloud-btn--active .eh-crowdcloud-btn__thumb {
  transform: translateX(24px);
}
.eh-popup__live-toggle .eh-crowdcloud-btn__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.eh-popup__live-toggle .eh-crowdcloud-btn__icon-text {
  font-size: 10px;
}
.eh-popup__live-toggle .eh-crowdcloud-btn:disabled {
  cursor: default;
  opacity: 0.7;
}

@keyframes eh-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgb(255, 255, 255));
  }
  70% {
    box-shadow: 0 0 0 20px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
.maplibregl-popup {
  z-index: 100 !important;
  max-width: 320px !important;
}
@media (max-width: 576px) {
  .maplibregl-popup {
    max-width: 280px !important;
  }
}

.maplibregl-popup-content {
  padding: 0 !important;
  border-radius: 20px !important;
  min-width: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.maplibregl-popup-anchor-top-left .maplibregl-popup-content,
.maplibregl-popup-anchor-top-right .maplibregl-popup-content,
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content,
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
  border-radius: 20px !important;
}

.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  border-top-color: rgba(255, 255, 255, 0.88);
}

.maplibregl-popup-anchor-top .maplibregl-popup-tip {
  border-bottom-color: rgba(255, 255, 255, 0.88);
}

.maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-right-color: rgba(255, 255, 255, 0.88);
}

.maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-left-color: rgba(255, 255, 255, 0.88);
}

.maplibregl-popup-content a:focus,
.maplibregl-popup-content button:focus {
  outline: none;
}

.maplibregl-popup-close-button {
  width: 28px;
  height: 28px;
  background: rgba(200, 200, 200, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px !important;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  padding: 0;
  top: 6px;
  right: 6px;
  color: #555;
  z-index: 1;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.12), inset 0 0.5px 0 rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  transition: background 0.15s ease;
}
.maplibregl-popup-close-button:hover {
  color: #222;
  background: rgba(200, 200, 200, 0.55);
}
.maplibregl-popup-close-button:focus {
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.12), inset 0 0.5px 0 rgba(255, 255, 255, 0.5);
}

.maplibregl-popup-content .twitter-tweet {
  margin: 0;
  padding: 12px 14px;
  border: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.maplibregl-popup-content .twitter-tweet p {
  margin: 0 0 8px;
}
.maplibregl-popup-content .twitter-tweet a {
  color: #555;
  text-decoration: none;
}
.maplibregl-popup-content .twitter-tweet a:hover {
  text-decoration: underline;
}
.maplibregl-popup-content .twitter-tweet-rendered,
.maplibregl-popup-content iframe.twitter-tweet {
  max-width: 100% !important;
  width: 100% !important;
}

.eh-popup__image-wrap {
  position: relative;
  overflow: hidden;
}
.eh-popup__image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.eh-popup__video-wrap {
  position: relative;
  overflow: hidden;
}
.eh-popup__video {
  width: 100%;
  min-height: 180px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 12px 12px 0 0;
  display: block;
}
.eh-popup__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.eh-popup__play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}
.eh-popup__play-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.08);
}
.eh-popup__cta {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  background: var(--main-color-bg, #333);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 1;
  white-space: nowrap;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-popup__cta:hover {
  opacity: 0.92;
}
.eh-popup__body {
  padding: 8px 12px;
}
.eh-popup__title-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.eh-popup__body:first-child .eh-popup__title-row {
  padding-right: 24px;
}
.eh-popup__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #333;
  flex: 1;
  min-width: 0;
}
.eh-popup__category {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}
.eh-popup__description {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 0;
}
.eh-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}
.eh-popup__actions .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
}
.eh-popup__link-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: #999;
  background: transparent;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.eh-popup__link-btn:hover {
  color: #555;
  background: #f0f0f0;
}
.eh-popup__link-btn--copied {
  color: #2e7d32;
  background: #e8f5e9;
  transition: none;
}
.eh-popup__link-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.eh-popup__route-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding-top: 2px;
}
.eh-popup__route-distance {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}
.eh-popup__route-btn {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  text-decoration: none;
}
.eh-popup__route-btn:hover {
  color: #333;
  text-decoration: underline;
}
.eh-popup__route-modes {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.eh-popup__route-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  text-decoration: none;
}
.eh-popup__route-mode-btn svg {
  width: 15px;
  height: 15px;
}
.eh-popup__route-mode-btn:hover {
  color: #333;
  text-decoration: underline;
}

.eh-quickbar {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 960;
  max-width: 500px;
  width: calc(100% - 10px);
  background-color: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  line-height: 80%;
  text-align: center;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
}
@media (max-width: 600px) {
  .eh-quickbar {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    bottom: 0;
    left: 0;
    transform: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.eh-quickbar__menu {
  display: flex;
  justify-content: space-around;
  padding: 6px 8px;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.eh-quickbar__menu::-webkit-scrollbar {
  display: none;
}
.eh-quickbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--bs-white);
  border-radius: 999px;
  background: transparent;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (hover: hover) {
  .eh-quickbar__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
  }
  .eh-quickbar__item:hover .eh-quickbar__icon svg {
    fill: var(--bs-white);
  }
  .eh-quickbar__item:hover .eh-quickbar__icon img {
    filter: brightness(0) invert(1);
  }
}
.eh-quickbar__item--active {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(30, 30, 30, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.eh-quickbar__item--active .eh-quickbar__icon svg {
  fill: rgba(30, 30, 30, 0.9);
}
.eh-quickbar__item--active .eh-quickbar__icon img {
  filter: brightness(0) invert(0);
}
.eh-quickbar__icon {
  width: 26px;
  height: 26px;
}
@media (max-width: 450px) {
  .eh-quickbar__icon {
    width: 22px;
    height: 22px;
  }
}
.eh-quickbar__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--bs-white);
  pointer-events: none;
  transition: fill 0.3s ease;
}
.eh-quickbar__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.eh-quickbar__label {
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.eh-panel {
  --quickbar-height: 80px;
  position: fixed;
  bottom: calc(var(--quickbar-height) + 10px);
  left: 50%;
  z-index: 950;
  width: calc(100% - 46px);
  max-width: 464px;
  height: 60%;
  max-height: 550px;
  background: var(--bs-white);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 100%);
  transition: transform 0.15s ease-in, opacity 0.15s ease-in;
  will-change: auto;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 601px) {
  .eh-panel {
    height: 70%;
  }
}
@media (max-width: 600px) {
  .eh-panel {
    --quickbar-height: 75px;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: calc(60% + var(--quickbar-height));
    max-height: none;
    border-radius: 0;
  }
}
.eh-panel--active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .eh-panel--active {
    min-width: 100%;
  }
}
.eh-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--main-color-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.eh-panel__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-white);
}
.eh-panel__close {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.2), inset 0 0.5px 0 rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  transition: background 0.15s ease;
}
.eh-panel__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
}
.eh-panel__close:focus {
  outline: none;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.2), inset 0 0.5px 0 rgba(255, 255, 255, 0.25);
}
.eh-panel__sponsors {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--main-color-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  min-height: 56px;
}
.eh-panel__sponsors img {
  max-height: 40px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.eh-panel__sponsors a {
  display: flex;
  align-items: center;
}
.eh-panel__sponsor-left {
  display: flex;
  align-items: center;
}
.eh-panel__sponsor-spacer {
  flex: 1;
}
.eh-panel__sponsor-right {
  display: flex;
  align-items: center;
}
.eh-panel__sponsor-slide {
  display: none;
  align-items: center;
}
.eh-panel__sponsor-slide--active {
  display: flex;
}
.eh-panel__body {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
  .eh-panel__body {
    padding-bottom: var(--quickbar-height);
  }
}

.eh-info-panel__top {
  background-color: var(--bs-gray-200, #e9ecef);
  border-bottom: 1px solid var(--bs-gray-300, #dee2e6);
  position: sticky;
  top: 0;
  z-index: 9;
}
.eh-info-panel__search {
  position: relative;
  padding: 8px 8px 4px;
}
.eh-info-panel__search-input {
  width: 100%;
  padding: 7px 34px 7px 10px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  background: var(--bs-white, #fff);
}
.eh-info-panel__search-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}
.eh-info-panel__search-clear {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #999;
  padding: 0;
}
.eh-info-panel__search-clear:hover {
  color: #333;
}
.eh-info-panel__search-clear[hidden] {
  display: none;
}
.eh-info-panel__search-results {
  position: absolute;
  top: 42px;
  left: 8px;
  right: 8px;
  background: var(--bs-white, #fff);
  border: 1px solid #ced4da;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.eh-info-panel__search-results[hidden] {
  display: none;
}
.eh-info-panel__search-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  border-top: 1px solid #f1f1f1;
  gap: 8px;
  font-size: 14px;
}
.eh-info-panel__search-item:first-child {
  border-top: none;
}
.eh-info-panel__search-item:hover {
  background-color: var(--bs-gray-100, #f8f9fa);
}
.eh-info-panel__search-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-info-panel__toolbar {
  display: flex;
  align-items: center;
  padding: 6px 10px;
}
.eh-info-panel__sort {
  display: flex;
  align-items: center;
  gap: 4px;
}
.eh-info-panel__sort label {
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  color: #555;
}
.eh-info-panel__sort-select {
  padding: 2px 20px 2px 4px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 14px 10px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
.eh-info-panel__show-all {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}
.eh-info-panel__show-all-label {
  font-size: 14px;
  white-space: nowrap;
  color: #555;
}
.eh-info-panel__category {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.eh-info-panel__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.eh-info-panel__row--parent:hover {
  background-color: var(--bs-gray-100, #f8f9fa);
}
.eh-info-panel__row--parent:hover .eh-info-panel__icon {
  box-shadow: inset 0 0 8px -4px rgba(0, 0, 0, 0.15);
  border-color: #888;
}
.eh-info-panel__row--child {
  cursor: pointer;
}
.eh-info-panel__row--child:hover {
  background-color: var(--bs-gray-100, #f8f9fa);
}
.eh-info-panel__row--child:hover .eh-info-panel__icon {
  box-shadow: inset 0 0 8px -4px rgba(0, 0, 0, 0.15);
  border-color: #888;
}
.eh-info-panel__row--expanded .eh-info-panel__expand-plus {
  display: none;
}
.eh-info-panel__row--expanded .eh-info-panel__expand-minus {
  display: block;
}
.eh-info-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--bs-white, #fff);
  border: 1px solid var(--bs-gray-400, #ced4da);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  overflow: hidden;
}
.eh-info-panel__icon svg {
  width: 24px;
  height: 24px;
}
.eh-info-panel__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.eh-info-panel__icon--small {
  min-width: 30px;
  width: 30px;
  height: 30px;
}
.eh-info-panel__icon--small svg {
  width: 20px;
  height: 20px;
}
.eh-info-panel__icon--small img {
  width: 20px;
  height: 20px;
}
.eh-info-panel__hole-number {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.eh-info-panel__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-info-panel__name {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.eh-info-panel__name:hover {
  color: #555;
}
.eh-info-panel__distance {
  font-size: 12px;
  font-weight: 700;
  text-align: end;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  color: #666;
}
.eh-info-panel__expand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: 1px solid var(--bs-gray-400, #ced4da);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  transition: background-color 0.2s ease;
}
.eh-info-panel__expand:hover {
  background-color: var(--bs-gray-200, #e9ecef);
}
.eh-info-panel__expand-plus {
  display: block;
  line-height: 1;
  transform: translate(-0.5px, -0.5px);
}
.eh-info-panel__expand-minus {
  display: none;
  line-height: 1;
  transform: translateY(-0.5px);
}
.eh-info-panel__children {
  margin-left: 20px;
  border-left: 2px solid var(--bs-gray-200, #e9ecef);
}
.eh-info-panel__children[hidden] {
  display: none;
}
.eh-info-panel__switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}
.eh-info-panel__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.eh-info-panel__slider {
  background-color: rgba(180, 180, 180, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-radius: 28px;
}
.eh-info-panel__slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 0.5px 0 rgba(255, 255, 255, 0.8);
}
input:checked + .eh-info-panel__slider {
  background-color: rgba(102, 187, 106, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}
input:checked + .eh-info-panel__slider::before {
  transform: translateX(24px);
}

@media (max-width: 380px) {
  .eh-info-panel__toolbar {
    font-size: 13px;
  }
  .eh-info-panel__sort-select {
    font-size: 13px;
  }
  .eh-info-panel__show-all-label {
    font-size: 13px;
  }
  .eh-info-panel__text,
  .eh-info-panel__name {
    font-size: 13px;
  }
}
.eh-highlights-panel__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.eh-highlights-panel__row:hover {
  background-color: var(--bs-gray-100, #f8f9fa);
}
.eh-highlights-panel__row:last-child {
  border-bottom: none;
}
.eh-highlights-panel__image {
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eh-highlights-panel__image img {
  display: block;
  max-height: 50px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  border-radius: 4px;
}
.eh-highlights-panel__image svg {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0 auto;
  fill: #666;
}
.eh-highlights-panel__content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.eh-highlights-panel__text {
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.eh-highlights-panel__meta {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.eh-programme-panel__header {
  background-color: var(--bs-gray-200, #e9ecef);
  color: #555;
  text-align: center;
  padding: 6px 10px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.eh-programme-panel__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.eh-programme-panel__row:hover {
  background-color: var(--bs-gray-100, #f8f9fa);
}
.eh-programme-panel__row:last-child {
  border-bottom: none;
}
.eh-programme-panel__time {
  width: 70px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.eh-programme-panel__logo {
  width: 50px;
  flex-shrink: 0;
  text-align: center;
}
.eh-programme-panel__logo img {
  max-height: 41px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
.eh-programme-panel__title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-programme-panel__calendar {
  width: 30px;
  flex-shrink: 0;
  cursor: pointer;
}
.eh-programme-panel__calendar svg {
  width: 24px;
  height: 24px;
  fill: #888;
  transition: fill 0.2s ease;
}
.eh-programme-panel__calendar:hover svg {
  fill: #333;
}

.eh-hotspot-switcher__toggle-ctrl {
  display: none !important;
}

.eh-hotspot-switcher {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  display: flex;
  gap: 8px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 6px 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.eh-hotspot-switcher__btn {
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s;
  white-space: nowrap;
}
.eh-hotspot-switcher__btn--active, .eh-hotspot-switcher__btn:hover {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.1);
}
.eh-hotspot-switcher__toggle-ctrl {
  display: none;
}
@media (max-width: 768px) {
  .eh-hotspot-switcher__toggle-ctrl {
    display: block;
  }
}
.eh-hotspot-switcher__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
}
.eh-hotspot-switcher__toggle svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
@media (max-width: 768px) {
  .eh-hotspot-switcher {
    display: none;
  }
  .eh-hotspot-switcher--visible {
    display: flex;
  }
}

.eh-route-info {
  position: fixed;
  top: calc(var(--header-height, 0px) + var(--custom-info-height, 0px) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  width: calc(100% - 20px);
}
@media (max-width: 993px) {
  .eh-route-info {
    top: calc(var(--header-height, 0px) + var(--custom-info-height, 0px) + var(--watch-partner, 0px) + 10px);
  }
}
.eh-route-info__content {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 12px;
}
.eh-route-info__left {
  flex: 1;
  min-width: 0;
}
.eh-route-info__name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 195px;
}
.eh-route-info__distance {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
}
.eh-route-info__end {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #ced4da;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
}
.eh-route-info__end:hover {
  opacity: 0.9;
}

.eh-presenting__slide {
  display: none;
  align-items: center;
}
.eh-presenting__slide--active {
  display: flex;
}
.eh-presenting__slide img {
  max-height: 50px;
  max-width: 125px;
  -o-object-fit: contain;
     object-fit: contain;
}

.eh-signature {
  position: fixed;
  bottom: 5px;
  right: 35px;
  z-index: 900;
  pointer-events: auto;
  transform: translateZ(0);
}
.eh-signature__link {
  display: flex;
  align-items: center;
}
.eh-signature img {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  opacity: 0.65;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: opacity 0.2s ease;
}
.eh-signature:hover img {
  opacity: 0.9;
}

.maplibregl-ctrl-group {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
}
.maplibregl-ctrl-group button {
  width: 36px !important;
  height: 36px !important;
}

.maplibregl-ctrl-geolocate {
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
}

.maplibregl-user-location-dot {
  position: relative;
}

.eh-heading-cone {
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-left: -37.5px;
  background: linear-gradient(to bottom, rgba(30, 90, 210, 0.75) 8px, transparent);
  clip-path: polygon(42% 0%, 58% 0%, 82% 100%, 18% 100%);
  opacity: 0;
  will-change: transform;
  transform: rotate(0deg);
  transform-origin: center top;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.eh-heading-cone--visible {
  opacity: 1;
}

.maplibregl-user-location-dot-stale .eh-heading-cone {
  opacity: 0;
}

.eh-heading-active .maplibregl-user-location-accuracy-circle {
  background-color: rgba(160, 200, 255, 0.12) !important;
  transition: background-color 0.3s ease;
}

.maplibregl-ctrl-recenter-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.maplibregl-ctrl-recenter-btn svg {
  width: 18px;
  height: 18px;
  fill: #333;
}

.maplibregl-ctrl-reload {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.maplibregl-ctrl-reload svg {
  width: 18px;
  height: 18px;
  fill: #333;
}

.maplibregl-ctrl-pitch-toggle {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maplibregl-ctrl-pitch-toggle--active {
  color: #1976d2;
}

.maplibregl-ctrl-group .maplibregl-ctrl-compass-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
}
.maplibregl-ctrl-group .maplibregl-ctrl-compass-btn .eh-compass-arrow {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  transition: transform 0.1s ease-out;
}

.eh-dem-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 2px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  color: #555;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.eh-dem-toggle input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}

.maplibregl-ctrl-attrib {
  font-size: 11px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
}
.maplibregl-ctrl-attrib a {
  color: #333;
  text-decoration: none;
}
.maplibregl-ctrl-attrib a:hover {
  text-decoration: underline;
}

.maplibregl-ctrl-attrib.maplibregl-compact {
  background: none !important;
  padding: 0 !important;
}
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.maplibregl-ctrl-attrib.maplibregl-compact.maplibregl-compact-show {
  background: rgba(255, 255, 255, 0.92) !important;
  padding: 4px 28px 4px 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.eh-home-link {
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 10px;
}
.eh-home-link a {
  display: flex;
  align-items: center;
}
.eh-home-link svg {
  display: inline-block;
  fill: rgba(255, 255, 255, 0.5);
  width: 120px;
  height: 30px;
  transition: fill 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.eh-home-link:hover svg {
  fill: rgba(255, 255, 255, 0.8);
}
@media (max-width: 500px) {
  .eh-home-link svg {
    width: 30px;
    height: 30px;
    clip-path: inset(0 77% 0 0);
  }
}

.eh-notification {
  position: fixed;
  width: 100%;
  max-width: 460px;
  z-index: 2000;
  padding: 0 5px;
  top: calc(var(--header-height, 0px) + var(--custom-info-height, 0px) + 4px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.eh-notification:empty {
  display: none;
}
@media (max-width: 991px) {
  .eh-notification {
    top: calc(var(--header-height, 0px) + var(--watch-partner, 0px) + var(--custom-info-height, 0px) + 6px);
  }
}
.eh-notification--has-multiple::after {
  content: "show all";
  text-transform: uppercase;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
  width: 80px;
  height: 20px;
  margin: auto;
  font-size: 12px;
  background-color: #f1f1f1;
  display: flex;
  border-radius: 0 0 5px 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
}
.eh-notification--expanded {
  display: flex;
  flex-direction: column-reverse;
}
.eh-notification--expanded.eh-notification--has-multiple::after {
  content: "hide all";
}
.eh-notification--expanded .eh-notification__card {
  position: relative;
}
.eh-notification--expanded .eh-notification__card:not(:last-child) {
  margin-top: 5px;
}
.eh-notification__card {
  pointer-events: auto;
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ced4da;
  cursor: pointer;
  overflow: hidden;
  margin: auto;
}
.eh-notification__card--hidden {
  display: none;
}
.eh-notification__card--animate {
  position: relative;
  animation: eh-notification-slide-down 300ms ease-out forwards;
}
.eh-notification__card--animate .eh-notification__body {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: eh-notification-fade-in 1.2s linear forwards;
}
.eh-notification__card--animate::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -250px;
  width: 250px;
  height: 250px;
  background: rgb(255, 255, 255);
  filter: blur(35px);
  box-shadow: rgb(195, 195, 195) 0 0 10px 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: eh-notification-blur-ball 800ms linear forwards;
  z-index: 3;
}
.eh-notification__body {
  display: flex;
}
.eh-notification__logo {
  min-width: 100px;
  max-width: 100px;
  padding: 5px;
  align-items: center;
  display: flex;
}
.eh-notification__logo-img {
  max-width: 100px;
  max-height: 60px;
  margin: auto;
  display: block;
}
.eh-notification__content {
  font-size: 16px;
  margin: 10px;
  width: 100%;
  min-height: 48px;
  max-height: 90px;
  overflow: hidden;
}
.eh-notification__title {
  position: relative;
  margin-bottom: 4px;
  line-height: 110%;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-right: 22px;
  padding-bottom: 2px;
  max-height: 38px;
  font-size: 14px;
  overflow: hidden;
}
.eh-notification__text {
  position: relative;
  line-height: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 14px;
}
.eh-notification__close {
  position: absolute;
  cursor: pointer;
  display: flex;
  right: 0;
  top: 0;
  min-width: 35px;
  min-height: 35px;
  background-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  padding: 0;
}
.eh-notification__close svg {
  width: 20px;
  height: 20px;
}

@keyframes eh-notification-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes eh-notification-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes eh-notification-blur-ball {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(calc(var(--browser-with, 150vw) + 320px));
  }
}

/*# sourceMappingURL=maplibre.css.map*/