:root {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #19334c;
  background: #e7eef1;
  font-synthesis: none;
  --surface: rgba(250, 253, 255, 0.94);
  --text: #19334c;
  --muted: #657a89;
  --line: rgba(59, 87, 112, 0.15);
  --blue: #275d92;
  --shadow: 0 8px 32px #183c5315;
  --hover: #e9f1f7;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow: hidden;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #5b9cdc;
  outline-offset: 4px;
}
button:disabled {
  cursor: default;
}
a {
  color: var(--blue);
  text-underline-offset: 3px;
}
button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
button span[data-icon] {
  display: inline-flex;
}
h1,
h2,
h3,
p {
  margin: 0;
}
[hidden] {
  display: none !important;
}
#atlas {
  height: 100dvh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
#viewport,
#labels {
  position: absolute;
  inset: 0;
}
#viewport canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: grab;
}
#viewport canvas:active {
  cursor: grabbing;
}
#labels {
  pointer-events: none;
  overflow: hidden;
}
.header {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
  z-index: 10;
}
.header > * {
  pointer-events: auto;
}
.identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.monogram {
  background: #214d7a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -1px;
  box-shadow: 0 4px 12px #19344c1a;
}
.identity h1 {
  font-size: 23px;
  letter-spacing: -0.7px;
  line-height: 1.25;
}
.identity p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.views {
  display: flex;
  gap: 3px;
  padding: 5px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.views button {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  color: var(--muted);
}
.views button:hover {
  background: var(--hover);
}
.views button.active {
  background: #245987;
  color: #fff;
}
.about-button {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.directory-wrap {
  position: absolute;
  left: 24px;
  top: 101px;
  z-index: 16;
  width: 286px;
}
.directory-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.directory-toggle > span:first-child {
  color: var(--blue);
}
.count {
  margin-left: auto;
  border-radius: 5px;
  padding: 3px 5px;
  background: var(--hover);
  font-size: 12px;
}
.directory-toggle > span:last-child svg {
  width: 15px;
  height: 15px;
}
#directory {
  margin-top: 8px;
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 16px 60px #15334735;
  border: 1px solid var(--line);
  max-height: calc(100dvh - 247px);
  overflow: hidden;
}
.directory-heading {
  padding: 10px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid var(--line);
}
#directory-list {
  overflow: auto;
  max-height: calc(100dvh - 310px);
  padding: 4px 9px 16px;
  scrollbar-width: thin;
}
.directory-category {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 17px 8px 7px;
  font-weight: 650;
}
.directory-item {
  display: flex;
  width: 100%;
  gap: 9px;
  align-items: center;
  padding: 9px 8px;
  text-align: left;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.35;
}
.directory-item:hover,
.directory-item.active {
  background: var(--hover);
  color: var(--blue);
}
.directory-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--place-color);
}
.directory-item svg {
  width: 15px;
  height: 15px;
  margin-left: auto;
  color: var(--muted);
}
.place-card {
  position: absolute;
  left: 24px;
  bottom: 139px;
  width: 286px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 8;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--blue);
  line-height: 1.5;
}
.card-top .icon-button {
  width: 25px;
  height: 25px;
  margin-right: -8px;
  margin-top: -5px;
}
.card-top .icon-button svg {
  width: 16px;
  height: 16px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  letter-spacing: -0.65px;
  font-size: 29px;
  line-height: 1.13;
}
.subtitle {
  font-size: 13px;
  line-height: 1.5;
  color: var(--blue);
  margin-top: 9px;
}
#place-description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 12px;
}
#place-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  padding-top: 13px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
#place-meta a {
  white-space: nowrap;
}
.text-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 650;
  margin-top: 16px;
  color: var(--blue);
}
.text-button svg {
  width: 18px;
  height: 18px;
}
.map-tools {
  position: absolute;
  right: 24px;
  top: 111px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 11;
}
.compass {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}
.compass svg {
  width: 29px;
  height: 35px;
  stroke: none;
  transition: transform 0.08s linear;
}
.tool-stack {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 41px;
  border-radius: 7px;
}
.icon-button:hover {
  background: var(--hover);
}
.tool-stack > .icon-button {
  border-radius: 0;
}
.tool-stack > .icon-button + .icon-button {
  border-top: 1px solid var(--line);
}
.icon-button.selected {
  background: var(--blue);
  color: white;
}
.layers {
  position: absolute;
  right: 79px;
  top: 293px;
  width: 204px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 17px;
  border-radius: 12px;
  z-index: 13;
}
.layers h3 {
  font-size: 14px;
  margin-bottom: 14px;
}
.layers label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  margin: 13px 0;
}
.layers input {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
}
.bottom-bar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: end;
  gap: 24px;
  z-index: 10;
  pointer-events: none;
}
.bottom-bar > * {
  pointer-events: auto;
}
.tour-button {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #245987;
  color: #fff;
  border: 1px solid #ffffff24;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.tour-button:hover {
  background: #326d9d;
}
.tour-button svg {
  width: 18px;
  height: 18px;
}
.time-panel {
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 19px 12px;
}
.time-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.time-top > div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.time-top svg {
  height: 19px;
  width: 19px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
}
.time-top output {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: -0.6px;
}
.time-top #time-name {
  font-size: 12px;
  color: var(--muted);
  margin-left: 2px;
}
.day-buttons {
  display: flex;
  padding: 3px;
  background: var(--hover);
  border-radius: 7px;
}
.day-buttons button {
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--muted);
}
.day-buttons button.selected {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 5px #1c344515;
}
input[type="range"] {
  width: 100%;
  margin: 13px 0 7px;
  height: 4px;
  border-radius: 5px;
  accent-color: #3277a5;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    #344862,
    #aab7c2,
    #d6c37a,
    #8aa0ae,
    #344862
  );
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #3475a1;
  box-shadow: 0 1px 4px #1d344331;
}
input[type="range"]::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #3475a1;
}
.time-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.map-note {
  justify-self: end;
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.map-note > span {
  display: block;
}
.map-note > button {
  padding: 0;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#tour-panel {
  position: absolute;
  width: 420px;
  bottom: 153px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
  z-index: 11;
}
.tour-progress-track {
  height: 3px;
  background: var(--line);
}
#tour-progress {
  height: 3px;
  background: #3b87b8;
  width: 0;
}
.tour-info {
  padding: 9px 10px 10px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-info > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
#tour-count {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
#tour-title {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-info > div:last-child {
  display: flex;
}
.tour-info .icon-button {
  width: 33px;
  height: 38px;
}
.tour-info svg {
  width: 17px;
  height: 17px;
}
.landmark-label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #fff9;
  background: rgba(250, 253, 255, 0.9);
  border-radius: 7px;
  box-shadow: 0 2px 9px #21445413;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #344b5d;
  will-change: transform;
  cursor: pointer;
  transition: opacity 0.15s;
}
.landmark-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--place-color);
}
.landmark-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 1px;
  height: 9px;
  background: #7894a580;
}
.landmark-label.is-selected {
  background: #245987;
  color: #fff;
  border-color: #4b8ebd;
}
.landmark-label.is-selected::before {
  background: #afdeff;
}
.landmark-label:hover {
  background: #fff;
  transform-origin: center;
}
.toast {
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  padding: 12px 18px;
  max-width: 80%;
  font-size: 14px;
  background: #173a61;
  color: white;
  border-radius: 9px;
  z-index: 35;
  box-shadow: var(--shadow);
}
dialog {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 31px;
  max-width: 520px;
  width: calc(100% - 34px);
  box-shadow: 0 24px 90px #10283f55;
}
dialog::backdrop {
  background: #17304777;
  backdrop-filter: blur(4px);
}
dialog form {
  position: absolute;
  top: 11px;
  right: 11px;
}
dialog h2 {
  font-size: 33px;
  margin: 15px 25px 18px 0;
}
dialog p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 15px;
}
dialog .small {
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}
dialog .sources {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#loading {
  position: absolute;
  inset: 0;
  background: #e7eef1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 50;
  font-size: 15px;
  color: #536f81;
  transition: opacity 0.45s;
  padding: 40px;
  text-align: center;
}
.loading-line {
  width: 120px;
  height: 3px;
  background: #c6d4dd;
  border-radius: 10px;
  overflow: hidden;
}
.loading-line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: #315f8b;
  animation: load 1.3s ease-in-out infinite alternate;
}
@keyframes load {
  to {
    transform: translateX(130%);
  }
}
.no-script {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: white;
  z-index: 99;
}
body.night {
  --surface: rgba(22, 40, 60, 0.96);
  --text: #dce8f0;
  --muted: #a0b3c3;
  --line: rgba(153, 185, 211, 0.17);
  --blue: #9cc9ed;
  --hover: #29435c;
  --shadow: 0 10px 34px #02081138;
  color: var(--text);
  color-scheme: dark;
}
body.night .landmark-label {
  background: #18344de8;
  color: #d8e5ee;
  border-color: #6582a640;
}
body.night .landmark-label.is-selected {
  background: #326f9c;
  color: white;
}
body.night .views button.active {
  background: #416f98;
}
body.night .day-buttons button.selected {
  background: #416482;
  color: white;
}
body.night .monogram {
  background: #396891;
}
@media (min-width: 1450px) {
  .header .views {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1100px) {
  .header {
    gap: 14px;
  }
  .identity p {
    max-width: 220px;
  }
  .views button {
    padding: 10px 12px;
  }
  .about-button > span:last-child {
    display: none;
  }
  .bottom-bar {
    grid-template-columns: 1fr 390px;
    gap: 16px;
  }
  .map-note {
    display: none;
  }
  .time-panel {
    grid-column: 2;
  }
  .place-card {
    width: 258px;
  }
  .directory-wrap {
    width: 258px;
  }
  #tour-panel {
    width: 390px;
    left: auto;
    right: 24px;
    transform: none;
  }
}
@media (max-width: 740px) {
  .header {
    top: 16px;
    left: 16px;
    right: 16px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .identity {
    gap: 10px;
  }
  .identity h1 {
    font-size: 21px;
  }
  .identity p {
    font-size: 12px;
    max-width: none;
  }
  .monogram {
    width: 43px;
    height: 43px;
    font-size: 18px;
  }
  .about-button {
    padding: 10px;
  }
  .views {
    order: 3;
    width: 100%;
    justify-content: center;
    box-shadow: 0 3px 16px #183c530c;
  }
  .views button {
    flex: 1;
    font-size: 13px;
    padding: 9px 8px;
  }
  .directory-wrap {
    left: 16px;
    top: 136px;
    width: 234px;
  }
  .directory-toggle {
    padding: 10px;
    font-size: 13px;
  }
  .map-tools {
    right: 16px;
    top: 139px;
    gap: 8px;
  }
  .compass {
    padding: 0 0 4px;
  }
  .compass svg {
    height: 28px;
  }
  .icon-button {
    height: 36px;
    width: 36px;
  }
  .place-card {
    left: 16px;
    bottom: 172px;
    width: calc(100% - 82px);
    max-width: 355px;
    padding: 12px 15px;
    border-radius: 12px;
  }
  .place-card h2 {
    font-size: 25px;
  }
  .card-top {
    margin-bottom: 3px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .subtitle {
    font-size: 12px;
    margin-top: 5px;
  }
  #place-description {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
  }
  #place-meta {
    margin-top: 8px;
    padding-top: 9px;
  }
  .text-button {
    font-size: 13px;
    margin-top: 11px;
  }
  .bottom-bar {
    left: 16px;
    right: 16px;
    bottom: 13px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tour-button {
    grid-row: 1;
    justify-self: start;
    font-size: 12px;
    padding: 9px 13px;
  }
  .tour-button svg {
    width: 14px;
    height: 14px;
  }
  .time-panel {
    grid-column: 1;
    grid-row: 2;
    padding: 10px 14px 9px;
    border-radius: 12px;
  }
  .time-top output {
    font-size: 19px;
  }
  .time-top #time-name {
    font-size: 12px;
  }
  .time-ticks {
    font-size: 12px;
  }
  .layers {
    top: 287px;
    right: 63px;
    width: 192px;
  }
  .map-note {
    display: none;
  }
  .touring .place-card {
    bottom: 236px;
  }
  #tour-panel {
    bottom: 168px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }
  .tour-info {
    padding: 6px 8px 7px 13px;
  }
  .tour-info .icon-button {
    height: 32px;
  }
  .directory-heading {
    padding: 8px 8px 6px 13px;
  }
  #directory {
    max-height: calc(100dvh - 321px);
  }
  #directory-list {
    max-height: calc(100dvh - 374px);
  }
  .landmark-label {
    font-size: 12px;
    padding: 5px 7px;
  }
  .toast {
    top: 190px;
  }
  .time-top > div:first-child {
    gap: 6px;
  }
}
@media (max-height: 700px) and (min-width: 741px) {
  .place-card {
    bottom: 127px;
    padding: 13px 17px;
  }
  .place-card h2 {
    font-size: 25px;
  }
  #place-description {
    font-size: 13px;
    line-height: 1.5;
  }
  .subtitle {
    margin-top: 5px;
  }
  .bottom-bar {
    bottom: 14px;
  }
  #tour-panel {
    bottom: 141px;
  }
  .map-tools {
    top: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.activity-panel {
  position: absolute;
  top: 101px;
  right: 84px;
  width: 258px;
  z-index: 12;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.activity-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 7px 5px 13px;
  gap: 4px;
}
.activity-heading > button:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 9px 0;
  text-align: left;
  font-size: 14px;
  font-weight: 650;
}
.activity-heading > button:first-child > span:last-child {
  margin-left: auto;
}
.activity-heading > button:first-child > span:last-child svg {
  width: 14px;
  height: 14px;
}
.activity-heading .icon-button {
  height: 32px;
  width: 32px;
}
.activity-heading .icon-button svg {
  width: 16px;
  height: 16px;
}
#activity-controls {
  padding: 0 16px 13px;
  max-height: calc(100dvh - 280px);
  overflow: auto;
  scrollbar-width: thin;
}
.activity-caption {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  padding: 1px 0 12px;
}
.activity-row + .activity-row {
  margin-top: 13px;
}
.activity-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.activity-row label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.activity-row label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.activity-row output {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: var(--blue);
  min-width: 34px;
  text-align: right;
}
.activity-row input[type="range"] {
  background: linear-gradient(
    90deg,
    #3c83b4 var(--range-fill, 0%),
    var(--line) var(--range-fill, 0%)
  );
  margin: 13px 0 8px;
  height: 5px;
}
.activity-row input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
}
.activity-row input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
}
.activity-range {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  margin-top: 15px;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}
#activity-state {
  color: var(--blue);
}
.activity-panel.is-collapsed #activity-toggle > span:last-child {
  transform: rotate(-90deg);
}
@media (max-width: 1100px) and (min-width: 741px) {
  .activity-panel {
    right: 78px;
    width: 230px;
  }
}
@media (max-width: 740px) {
  .activity-panel {
    top: 191px;
    left: 16px;
    right: auto;
    width: 234px;
    z-index: 15;
  }
  .activity-heading {
    padding: 4px 5px 4px 11px;
  }
  .activity-heading > button:first-child {
    font-size: 14px;
    padding: 8px 0;
  }
  #activity-controls {
    max-height: calc(100dvh - 302px);
    padding: 0 13px 12px;
  }
  .activity-row + .activity-row {
    margin-top: 9px;
  }
  .activity-row input[type="range"] {
    margin-top: 12px;
  }
  .activity-caption {
    padding-bottom: 10px;
  }
  .activity-footer {
    margin-top: 12px;
  }
  .place-card {
    max-height: calc(100dvh - 431px);
    overflow: auto;
  }
  .activity-panel:not(.is-collapsed) ~ .bottom-bar {
    z-index: 10;
  }
}
@media (max-height: 700px) and (min-width: 741px) {
  .activity-panel {
    top: 101px;
  }
  #activity-controls {
    max-height: calc(100dvh - 255px);
  }
}
.dev-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dev-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
