.map-zoom-open {
  overflow: hidden;
}

.map-zoom {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  flex-direction: column;
  background: rgba(8, 13, 15, 0.96);
  color: #fff;
}

.map-zoom.is-open {
  display: flex;
}

.map-zoom__toolbar {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px 68px 8px 12px;
  background: rgba(0, 0, 0, 0.35);
}

.map-zoom__button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}

.map-zoom__button:hover,
.map-zoom__button:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.map-zoom__button--reset {
  min-width: 88px;
  font-size: 15px;
}

.map-zoom__button--close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 25px;
}

.map-zoom__stage {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.map-zoom__stage.is-dragging {
  cursor: grabbing;
}

.map-zoom__image {
  display: block;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 90px);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.map-zoom__hint {
  position: absolute;
  right: 12px;
  bottom: 10px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  pointer-events: none;
}