:root {
  --dsp-white: #ffffff;
  --dsp-black: #000000;
  --dsp-accent: #6aaac2;
  --dsp-border: rgba(0, 0, 0, 0.08);
  --dsp-radius: 3px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}

.dsp-map-app {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  background: #ffffff;
}

.dsp-map {
  width: 100%;
  height: 100%;
}

.dsp-map-status,
.dsp-map-noscript {
  position: absolute;
  left: 50%;
  top: 20px;
  z-index: 5;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border-radius: var(--dsp-radius);
  background: #ffffff;
  border: 1px solid var(--dsp-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  color: #666666;
  font-size: 13px;
  font-weight: 800;
}

.dsp-map-status.is-hidden {
  display: none;
}

.dsp-balloon-photos {
  display: grid;
  grid-template-columns: repeat(3, 86px);
  gap: 8px;
  margin-bottom: 12px;
}

.dsp-balloon-photo {
  width: 86px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
}

.dsp-balloon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dsp-balloon-description {
  max-width: 320px;
  color: #333333;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.dsp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.dsp-lightbox img {
  display: block;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 80px);
  border-radius: 3px;
  background: #ffffff;
}

.dsp-lightbox-close {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 560px) {
  .dsp-map-app {
    min-height: 460px;
  }

  .dsp-balloon-photos {
    grid-template-columns: repeat(3, 74px);
  }

  .dsp-balloon-photo {
    width: 74px;
    height: 62px;
  }

  .dsp-balloon-description {
    max-width: 260px;
  }
}