#toast {
  position:fixed;
  z-index:100;
  bottom:28px;
  left:50%;
  transform:translate(-50%,10px);
  opacity:0;
  pointer-events:none;
  background:#422c2ef5;
  color:var(--paper);
  padding:11px 20px;
  font-size:12px;
  max-width:calc(100% - 40px);
  width:max-content;
  border-radius:3px;
  transition:opacity .2s,transform .2s
}
#toast.visible {
  opacity:1;
  transform:translate(-50%,0)
}
.map-surface {
  position:relative;
  min-height:310px;
  background:#e6e2d8
}
.map-loading {
  height:310px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  padding:20px;
  color:var(--muted)
}
.map-loading>span {
  font-size:38px;
  color:var(--wine)
}
.map-loading p {
  font-size:12px
}
.map-loading>a {
  font-size:12px;
  color:var(--wine);
  text-decoration:underline;
  text-underline-offset:5px
}
.map-loading .text-link {
  font-size:10px;
  padding:4px 0
}
@media(max-width:760px) {
  .map-surface {
    min-height:270px
  }
  .map-loading {
    height:270px
  }
}
