body.map-page {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

body.map-page .top-nav {
  z-index: 1000;
}

body.map-page .mobile-menu {
  z-index: 1200;
}

body.map-page .menu-backdrop {
  z-index: 1100;
}

.flat-map-page {
  position: relative;
  min-height: 100vh;
  padding: 0;
}

.map-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

#mlpMap {
  width: 100%;
  height: 100vh;
  background: #050505;
}

.leaflet-container {
  background: #050505;
  color: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

.mlp-dot {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid color-mix(in srgb, var(--point-color) 72%, white);
  border-radius: 50%;
  background: var(--point-color);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--point-color) 16%, transparent),
    0 0 18px color-mix(in srgb, var(--point-color) 54%, transparent);
}

.leaflet-tooltip.mlp-tooltip {
  padding: 7px 9px;
  border: 1px solid rgba(245, 245, 242, 0.16);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.leaflet-tooltip-left.mlp-tooltip::before,
.leaflet-tooltip-right.mlp-tooltip::before,
.leaflet-tooltip-top.mlp-tooltip::before,
.leaflet-tooltip-bottom.mlp-tooltip::before {
  display: none;
}

.total-points {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1000;
  min-width: 164px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 245, 242, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
}

.total-points span,
.total-points strong {
  display: block;
}

.total-points span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.total-points strong {
  margin-top: 7px;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

@media (max-width: 760px) {
  .total-points {
    left: 10px;
    bottom: 10px;
    min-width: 148px;
  }
}
