.interactiv-box .box-inner-wrap.br-map {
  width: 100%;
  max-width: none;
  overflow: visible;
  box-shadow: none;
  color: #102a38;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.35;
}

.br-map,
.br-map * {
  box-sizing: border-box;
}

.br-map [hidden] {
  display: none !important;
}

.br-map__hint {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.br-map__hint-mobile {
  display: none;
}

.br-map__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(18px, 2.4vw, 34px);
  background: #55d8ef;
  box-shadow: 0 24px 60px rgba(0, 21, 38, 0.35);
  scrollbar-color: rgba(255, 255, 255, 0.85) rgba(1, 70, 104, 0.38);
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}

.br-map__viewport::-webkit-scrollbar {
  height: 9px;
}

.br-map__viewport::-webkit-scrollbar-track {
  background: rgba(1, 70, 104, 0.38);
}

.br-map__viewport::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
}

.br-map__stage {
  isolation: isolate;
  position: relative;
  width: 100%;
  min-width: 720px;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  cursor: default;
}

.br-map__stage--loading {
  cursor: progress;
}

.br-map__image,
.br-map__stage picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.br-map__image {
  object-fit: contain;
  user-select: none;
}

.br-map__effect {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  animation: br-map-effect-in 150ms ease-out both;
}

.br-map__pointer-surface,
.br-map__keyboard-hotspots {
  position: absolute;
  inset: 0;
}

.br-map__pointer-surface {
  z-index: 4;
}

.br-map__keyboard-hotspots {
  z-index: 5;
  pointer-events: none;
}

.br-map__keyboard-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  pointer-events: none;
}

.br-map__keyboard-hotspot:focus-visible {
  outline: 4px solid #ffffff;
  box-shadow: 0 0 0 7px #ff365f;
}

.br-map__hover-label {
  position: absolute;
  z-index: 6;
  width: max-content;
  max-width: min(280px, calc(100% - 24px));
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background: rgba(16, 42, 56, 0.92);
  box-shadow: 0 8px 20px rgba(0, 29, 48, 0.28);
  color: #ffffff;
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  pointer-events: none;
}

.br-map__hover-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: var(--br-map-label-arrow-left, 50%);
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(16, 42, 56, 0.92);
}

.br-map__hover-label--below::after {
  top: 0;
}

.br-map__status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

@keyframes br-map-effect-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .interactiv-box > .inner-wrap {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .interactiv-box .box-inner-wrap.br-map {
    width: calc(100% + (var(--paddingContainer) * 2));
    margin-right: calc(var(--paddingContainer) * -1);
    margin-left: calc(var(--paddingContainer) * -1);
  }

  .br-map__hint {
    margin: 0 15px 9px;
    font-size: 13px;
  }

  .br-map__hint-desktop {
    display: none;
  }

  .br-map__hint-mobile {
    display: inline;
  }

  .br-map__viewport {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .br-map__stage {
    width: clamp(980px, 270vw, 1200px);
    min-width: 0;
    touch-action: pan-x pan-y;
  }

  .br-map__hover-label {
    display: none;
  }

  .br-map__status {
    margin: 8px 15px 0;
    font-size: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .br-map__effect {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
