.number-input {
    pointer-events: auto;
    background-color: var(--theme-bg);
    color: var(--theme-fg);
    min-height: 2em;
}
.number-input .label {
    display: inline-block;
    width: 1em;
    padding: 0 0.5em;
    color: var(--theme-fg-light);
}
.number-input input {
    height: 100%;
    line-height: 100%;
    width: calc(100% - 2em);
    background-color: inherit;
    color: inherit;
    -moz-appearance: textfield;
}
.number-input input::-webkit-inner-spin-button,
.number-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.position-input {
    display: flex;
    -webkit-user-select: none;
    user-select: none;
}
.position-input > * {
    width: 100%;
}
.position-input > *:not(:first-child) {
    border-left: solid 1px var(--theme-bg-light);
}
.svg-button {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    cursor: pointer;
    min-width: 2em;
    min-height: 2em;
    background-color: var(--theme-bg);
    color: var(--theme-fg);
}
.svg-button:hover {
    background-color: var(--theme-bg-hover);
}
.svg-button.active {
    background-color: var(--theme-bg-light);
}
.svg-button:active {
    background-color: var(--theme-fg-light);
    color: var(--theme-bg);
}
.svg-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1.8em;
    fill: var(--theme-fg-light);
}
.svg-button:active svg {
    fill: var(--theme-bg-light);
}
.compass svg {
    height: 1.8em;
}
.compass svg .north {
    fill: var(--theme-fg);
}
.compass svg .south {
    fill: var(--theme-fg-light);
}
.compass:active svg .north {
    fill: var(--theme-bg);
}
.compass:active svg .south {
    fill: var(--theme-bg-light);
}
.day-night-switch svg {
    fill: var(--theme-moon-day);
}
.day-night-switch svg circle {
    fill: var(--theme-stars-day);
}
.day-night-switch:active svg {
    fill: var(--theme-moon-night);
}
.day-night-switch:active svg circle {
    fill: var(--theme-stars-night);
}
.controls-switch {
    display: flex;
}
.menu-button svg g {
    transform-origin: center;
    transition: transform 0.3s;
}
.menu-button svg path {
    transition:
        transform 0.3s,
        fill 0.3s;
    transform: translate(0) rotate(0);
}
.menu-button svg path:nth-child(1) {
    transform-origin: 15px 9px;
}
.menu-button svg path:nth-child(2) {
    transform-origin: 15px 15px;
}
.menu-button svg path:nth-child(3) {
    transform-origin: 15px 21px;
}
.menu-button.close svg path:nth-child(1) {
    transform: translateY(5.75px) rotate(45deg);
}
.menu-button.close svg path:nth-child(2) {
    transform: translate(-100%) rotate(0);
}
.menu-button.close svg path:nth-child(3) {
    transform: translateY(-5.75px) rotate(-45deg);
}
.menu-button.close.back svg g {
    transform: scale(0.75);
}
.menu-button.close.back svg path:nth-child(1) {
    transform: translateY(10px) rotate(30deg);
}
.menu-button.close.back svg path:nth-child(2) {
    transform: translate(-150%) rotate(0);
}
.menu-button.close.back svg path:nth-child(3) {
    transform: translateY(-10px) rotate(-30deg);
}
.control-bar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.53));
    height: 2em;
    margin: 0.5em;
    width: calc(100% - 1em);
}
.control-bar .pos-input {
    max-width: 20em;
    width: 100%;
}
.control-bar > :not(:first-child) {
    border-left: solid 1px var(--theme-bg-light);
}
.control-bar .space {
    width: 0.5em;
    flex-shrink: 0;
}
.control-bar .space.greedy {
    flex-grow: 1;
}
.control-bar .space,
.control-bar .space + * {
    border-left: none;
}
@media (max-width: 575.98px) {
    .control-bar {
        margin: 0;
        width: 100%;
        background-color: var(--theme-bg);
    }
    .control-bar .pos-input {
        max-width: unset;
    }
    .control-bar .thin-hide {
        display: none;
    }
    .control-bar .space {
        width: 1px;
    }
}
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: auto;
    width: 100%;
    max-width: 20em;
    height: 100%;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5333333333));
    background-color: var(--theme-bg);
    color: var(--theme-fg);
}
.side-menu-enter-active,
.side-menu-leave-active {
    transition: opacity 0.3s;
}
.side-menu-enter,
.side-menu-leave-to {
    opacity: 0;
    pointer-events: none;
}
.side-menu-enter *,
.side-menu-leave-to * {
    pointer-events: none !important;
}
.side-menu > .menu-button {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.5em;
}
@media (max-width: 575.98px) {
    .side-menu > .menu-button {
        margin: 0;
    }
}
.side-menu > .menu-button.full-close {
    right: 0;
    left: unset;
}
.side-menu > .title {
    line-height: 2em;
    text-align: center;
    background-color: inherit;
    border-bottom: solid 1px var(--theme-bg-hover);
    padding: 0.5em;
}
@media (max-width: 575.98px) {
    .side-menu > .title {
        padding: 0;
    }
}
.side-menu > .content {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5em;
    height: calc(100% - 4em - 1px);
}
@media (max-width: 575.98px) {
    .side-menu > .content {
        height: calc(100% - 3em - 1px);
    }
}
.side-menu > .content hr {
    border: none;
    border-bottom: solid 2px var(--theme-bg-hover);
    margin: 0.5em 0;
}
.side-menu .simple-button {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    line-height: 2em;
    padding: 0 0.5em;
}
.side-menu .simple-button > .label {
    flex-grow: 1;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.side-menu .simple-button:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .simple-button.active {
    background-color: var(--theme-bg-light);
}
.side-menu .simple-button > .submenu-icon {
    width: 2em;
    height: 2em;
    flex-shrink: 0;
    margin-right: -0.5em;
}
.side-menu .simple-button > .submenu-icon > svg {
    fill: var(--theme-fg-light);
    transform: scale(0.75);
}
.side-menu .simple-button > .submenu-icon > svg path:nth-child(1) {
    transform-origin: 15px 9px;
    transform: translateY(10px) rotate(-30deg);
}
.side-menu .simple-button > .submenu-icon > svg path:nth-child(2) {
    transform-origin: 15px 21px;
    transform: translateY(-10px) rotate(30deg);
}
.side-menu .simple-button:active {
    background-color: var(--theme-fg-light);
    color: var(--theme-bg);
}
.side-menu .simple-button:active > .submenu-icon > svg {
    fill: var(--theme-bg-light);
}
.side-menu .group {
    position: relative;
    margin: 2em 0 1em;
    padding-top: 1em;
    border: solid 2px var(--theme-bg-hover);
}
.side-menu .group > .title {
    position: absolute;
    top: calc(-0.5em - 1px);
    right: 0.5em;
    padding: 0 0.5em;
    background-color: var(--theme-bg);
}
.side-menu .group:first-child {
    margin-top: 1em;
}
.side-menu .group > .content {
    max-height: 15em;
    overflow-y: auto;
}
.side-menu .slider {
    line-height: 2em;
    padding: 0 0.5em;
}
.side-menu .slider:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .slider > .label > .value {
    float: right;
}
.side-menu .slider > label > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    height: 1em;
    border-radius: 1em;
    overflow: hidden;
    background-color: var(--theme-bg-light);
}
.side-menu .slider > label > input::-webkit-slider-thumb {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 1em;
    height: 1em;
    border-radius: 1em;
    border: solid 0.125em var(--theme-bg-light);
    background-color: var(--theme-bg);
}
.side-menu .slider > label > input::-moz-range-thumb {
    width: 0.75em;
    height: 0.75em;
    border-radius: 0.75em;
    border: solid 0.125em var(--theme-bg-light);
    background-color: var(--theme-bg);
}
.side-menu .switch {
    height: 1em;
    width: 2em;
    border-radius: 1em;
    background-color: var(--theme-bg-light);
    transition: background-color 0.3s;
}
.side-menu .switch:after {
    content: "";
    display: block;
    width: 0.75em;
    height: 0.75em;
    border-radius: 100%;
    background-color: var(--theme-bg);
    position: relative;
    top: 0.125em;
    left: 0.125em;
    transition: left 0.3s;
}
.side-menu .switch.on {
    background-color: var(--theme-switch-button-on);
}
.side-menu .switch.on:after {
    left: 1.125em;
}
.side-menu .switch-button {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    line-height: 2em;
    padding: 0 0.5em;
}
.side-menu .switch-button > .label {
    flex-grow: 1;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.side-menu .switch-button > .switch {
    margin: 0.5em 0;
}
.side-menu .switch-button:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .marker-item {
    display: flex;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1em;
    margin: 0.5em 0;
}
.side-menu .marker-item:first-child {
    margin-top: 0;
}
.side-menu .marker-item:last-child {
    margin-bottom: 0;
}
.side-menu .marker-item.marker-hidden {
    opacity: 0.5;
    filter: grayscale(1);
}
.side-menu .marker-item .marker-button {
    display: flex;
    flex-grow: 1;
    cursor: pointer;
}
.side-menu .marker-item .marker-button:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .marker-item .marker-button > .info {
    flex-grow: 1;
    text-overflow: ellipsis;
    padding: 0.5em;
}
.side-menu .marker-item .marker-button > .info .label {
    text-overflow: ellipsis;
}
.side-menu .marker-item .marker-button > .info .stats {
    display: flex;
    font-size: 0.8em;
    color: var(--theme-fg-light);
}
.side-menu .marker-item .marker-button > .info .stats > div:not(:first-child) {
    margin-left: 0.5em;
    padding-left: 0.5em;
    border-left: solid 1px var(--theme-bg-hover);
}
.side-menu .marker-item .marker-button > .icon {
    height: 2.5em;
    margin: 0.5em;
    flex-shrink: 0;
}
.side-menu .marker-item .marker-button > .icon img {
    image-rendering: pixelated;
    height: 100%;
}
.side-menu .marker-item > .follow-player-button {
    width: 2em;
    cursor: pointer;
    background-color: var(--theme-bg);
}
.side-menu .marker-item > .follow-player-button:hover,
.side-menu .marker-item > .follow-player-button.active {
    background-color: var(--theme-bg-light);
}
.side-menu .marker-item > .follow-player-button > svg {
    position: relative;
    fill: var(--theme-fg-light);
    stroke: var(--theme-fg-light);
    top: 50%;
    transform: translateY(-50%) scale(0.75);
}
.side-menu .marker-item > .follow-player-button:active {
    background-color: var(--theme-fg-light);
    color: var(--theme-bg);
}
.side-menu .marker-item > .follow-player-button:active > svg {
    fill: var(--theme-bg-light);
    stroke: var(--theme-bg-light);
}
.side-menu .text-input {
    background-color: var(--theme-bg-hover);
    width: calc(100% - 1em);
    padding: 0.5em;
}
.side-menu .marker-set {
    display: flex;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1em;
    margin: 0.5em 0;
}
.side-menu .marker-set:first-child {
    margin-top: 0;
}
.side-menu .marker-set:last-child {
    margin-bottom: 0;
}
.side-menu .marker-set > .info {
    flex-grow: 1;
    cursor: pointer;
    padding: 0.5em;
}
.side-menu .marker-set > .info:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .marker-set > .info > .marker-set-switch {
    position: relative;
}
.side-menu .marker-set > .info > .marker-set-switch .label {
    margin: 0 2.5em 0 0;
}
.side-menu .marker-set > .info > .marker-set-switch > .switch {
    position: absolute;
    top: 0;
    right: 0;
}
.side-menu .marker-set > .info > .stats {
    display: flex;
    font-size: 0.8em;
    color: var(--theme-fg-light);
}
.side-menu .marker-set > .info > .stats > div:not(:first-child) {
    margin-left: 0.5em;
    padding-left: 0.5em;
    border-left: solid 1px var(--theme-bg-light);
}
.side-menu .marker-set > .open-menu-button {
    width: 2em;
}
.side-menu .marker-set > .open-menu-button.active {
    cursor: pointer;
}
.side-menu .marker-set > .open-menu-button.active:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .marker-set > .open-menu-button.active > svg {
    position: relative;
    fill: var(--theme-fg-light);
    top: 50%;
    transform: translateY(-50%) scale(0.75);
}
.side-menu .marker-set > .open-menu-button.active > svg path:nth-child(1) {
    transform-origin: 15px 9px;
    transform: translateY(10px) rotate(-30deg);
}
.side-menu .marker-set > .open-menu-button.active > svg path:nth-child(2) {
    transform-origin: 15px 21px;
    transform: translateY(-10px) rotate(30deg);
}
.side-menu .marker-set > .open-menu-button.active:active {
    background-color: var(--theme-fg-light);
    color: var(--theme-bg);
}
.side-menu .marker-set > .open-menu-button.active:active > svg {
    fill: var(--theme-bg-light);
}
.side-menu .marker-set > .open-menu-button:not(.active) svg {
    display: none;
}
.choice-box {
    display: flex;
    font-size: 0.8em;
    text-align: center;
    border: solid 2px var(--theme-bg-hover);
    overflow: hidden;
}
.choice-box .title,
.choice-box .choice {
    padding: 0.3em 0.5em;
}
.choice-box .title {
    background-color: var(--theme-bg-hover);
}
.choice-box .choices {
    display: flex;
    flex-grow: 1;
}
.choice-box .choices .choice {
    flex-grow: 1;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background-color: var(--theme-bg);
}
.choice-box .choices .choice:hover {
    background-color: var(--theme-bg-hover);
}
.choice-box .choices .choice.selected {
    background-color: var(--theme-bg-light);
}
.side-menu .map-button {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    height: 2em;
    line-height: 2em;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.side-menu .map-button.selected {
    background-color: var(--theme-bg-light);
}
.side-menu .map-button:hover {
    background-color: var(--theme-bg-hover);
}
.side-menu .map-button .sky {
    float: left;
    border-radius: 100%;
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.25em 0 0.5em;
}
.side-menu .map-button .id {
    font-style: italic;
    color: var(--theme-fg-light);
    margin: 0 0.5em;
}
.info-content {
    font-size: 0.8em;
}
.info-content table {
    border-collapse: collapse;
    width: 100%;
}
.info-content table tr th,
.info-content table tr td {
    padding: 0.2em 0.5em;
    border: solid 1px var(--theme-bg-light);
}
.info-content table tr th {
    font-weight: inherit;
    text-align: inherit;
}
.info-content .info-footer {
    text-align: center;
}
#ff-mobile-controls {
    font-size: 15vw;
}
#ff-mobile-controls.disabled {
    display: none;
}
@media (orientation: portrait) {
    #ff-mobile-controls {
        font-size: 15vh;
    }
}
#ff-mobile-controls .button {
    width: 1em;
    margin: 0.1em;
    opacity: 0.5;
    pointer-events: auto;
}
#ff-mobile-controls .button svg {
    fill: var(--theme-bg);
}
#ff-mobile-controls .button svg:active {
    fill: var(--theme-bg-light);
    opacity: 0.8;
}
#ff-mobile-controls .button svg.down {
    transform: scaleY(-1);
}
#ff-mobile-controls .move-fields {
    position: fixed;
    bottom: 0.2em;
    left: 0.2em;
}
#ff-mobile-controls .height-fields {
    position: fixed;
    bottom: 0.2em;
    right: 0.2em;
}
#zoom-buttons {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.53));
    width: 2em;
    margin: 0.5em;
}
@font-face {
    font-family: Quicksand;
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src:
        local("Quicksand"),
        url(./Quicksand-BuVPtn-J.ttf) format("truetype-variations");
}
:root {
    line-height: 1rem;
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 400;
    --theme-bg: #181818;
    --theme-bg-hover: #222;
    --theme-bg-light: #444;
    --theme-fg: #fff;
    --theme-fg-light: #aaa;
    --theme-switch-button-on: #00489d;
    --theme-stars-day: #fff;
    --theme-moon-day: #ff0;
    --theme-stars-night: #444;
    --theme-moon-night: #000;
}
:root .theme-light {
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 500;
    --theme-bg: #eee;
    --theme-bg-hover: #ddd;
    --theme-bg-light: #999;
    --theme-fg: #000;
    --theme-fg-light: #333;
    --theme-switch-button-on: #6593dc;
    --theme-stars-day: #444;
    --theme-moon-day: #000;
    --theme-stars-night: #fff;
    --theme-moon-night: #ff0;
}
:root .theme-contrast {
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 400;
    --theme-bg: #000;
    --theme-bg-hover: #222;
    --theme-bg-light: #666;
    --theme-fg: #fff;
    --theme-fg-light: #aaa;
    --theme-switch-button-on: #006fff;
    --theme-stars-day: #fff;
    --theme-moon-day: #ff0;
    --theme-stars-night: #444;
    --theme-moon-night: #000;
}
@media (prefers-color-scheme: light) {
    :root {
        font-family: Quicksand, sans-serif;
        font-size: 16px;
        font-weight: 500;
        --theme-bg: #eee;
        --theme-bg-hover: #ddd;
        --theme-bg-light: #999;
        --theme-fg: #000;
        --theme-fg-light: #333;
        --theme-switch-button-on: #6593dc;
        --theme-stars-day: #444;
        --theme-moon-day: #000;
        --theme-stars-night: #fff;
        --theme-moon-night: #ff0;
    }
    :root .theme-dark {
        font-family: Quicksand, sans-serif;
        font-size: 16px;
        font-weight: 400;
        --theme-bg: #181818;
        --theme-bg-hover: #222;
        --theme-bg-light: #444;
        --theme-fg: #fff;
        --theme-fg-light: #aaa;
        --theme-switch-button-on: #00489d;
        --theme-stars-day: #fff;
        --theme-moon-day: #ff0;
        --theme-stars-night: #444;
        --theme-moon-night: #000;
    }
}
body {
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
    overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
    text-align: left;
    margin: 1em 0 0.5em;
    padding: 0;
}
h1,
h2 {
    position: relative;
    font-size: 1.2em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5em;
    padding-bottom: 0.5em;
    width: calc(100% - 0.5em);
    overflow: hidden;
}
h1:after,
h2:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--theme-bg-light);
}
h1 {
    width: 100%;
    text-align: center;
    padding-left: 0;
}
p {
    margin: 0.5em;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: underline;
}
kbd {
    background-color: var(--theme-bg-light);
    border-radius: 0.2em;
    margin: 0;
    padding: 0 0.2em;
}
input {
    display: inline-block;
    box-sizing: content-box;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
}
::-webkit-scrollbar {
    width: 0.5em;
}
::-webkit-scrollbar-track {
    background: var(--theme-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--theme-bg-light);
    border-radius: 0.5em;
    border: solid var(--theme-bg) 0.1em;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-fg-light);
}
#bm-app-err {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: var(--theme-bg);
    color: var(--theme-fg);
}
#bm-app-err > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#bm-app-err > div img {
    max-width: 10em;
    min-width: 5em;
    width: 90%;
    border-radius: 50%;
    margin: 0 0 3em;
}
#bm-app-err > div .bm-app-err-hint {
    color: var(--theme-fg-light);
}
#map-container .bm-marker-html {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}
#map-container .bm-marker-html .bm-marker-poi-label {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
#map-container .bm-marker-html .bm-marker-poi-icon {
    opacity: 1;
    transition: opacity 0.3s;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5333333333));
}
#map-container .bm-marker-html.bm-marker-highlight .bm-marker-poi-label {
    opacity: 1;
}
#map-container .bm-marker-html.bm-marker-highlight .bm-marker-poi-icon {
    opacity: 0;
}
#map-container .bm-marker-html .bm-marker-poi-label,
#map-container .bm-marker-labelpopup,
#map-container .bm-marker-popup {
    transform: translate(-50%, -100%) translateY(-0.5em);
    max-width: 15em;
    color: var(--theme-fg);
    background-color: var(--theme-bg);
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5333333333));
    padding: 0.5em;
}
#map-container .bm-marker-html .bm-marker-poi-label > hr,
#map-container .bm-marker-labelpopup > hr,
#map-container .bm-marker-popup > hr {
    border: none;
    border-bottom: solid 1px var(--theme-bg-light);
    margin: 0.5em -0.5em;
}
#map-container .bm-marker-html .bm-marker-poi-label:after,
#map-container .bm-marker-labelpopup:after,
#map-container .bm-marker-popup:after {
    position: absolute;
    bottom: calc(-1em + 1px);
    left: 50%;
    transform: translate(-50%);
    content: "";
    border: solid 0.5em transparent;
    border-top-color: var(--theme-bg);
}
#map-container .bm-marker-popup {
    line-height: 1.2em;
}
#map-container .bm-marker-popup .group[data-tooltip] {
    position: relative;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    margin: -0.5em;
    padding: 0.5em;
}
#map-container .bm-marker-popup .group[data-tooltip]:hover:before {
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: calc(100% + 0.5em);
    transform: translate(-50%);
    content: attr(data-tooltip);
    background: var(--theme-bg);
    color: var(--theme-fg-light);
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5333333333));
    font-size: 0.75em;
    line-height: 1em;
    padding: 0.5em;
}
#map-container .bm-marker-popup .group[data-tooltip]:active {
    background-color: var(--theme-bg-light);
}
#map-container .bm-marker-popup .group > .label {
    position: relative;
    top: 0;
    left: 0.5em;
    margin: 0 0.5em;
    font-size: 0.8em;
    color: var(--theme-fg-light);
}
#map-container .bm-marker-popup .group > .content {
    display: flex;
    justify-content: center;
}
#map-container .bm-marker-popup .group > .content > .entry {
    margin: 0 0.5em;
}
#map-container .bm-marker-popup .group > .content > .entry > .label {
    color: var(--theme-fg-light);
}
#map-container .bm-marker-popup .files {
    font-size: 0.8em;
    color: var(--theme-fg-light);
}
#map-container .bm-marker-player {
    position: relative;
    transform: translate(-50%, -50%);
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5333333333));
}
#map-container .bm-marker-player img {
    width: 32px;
    image-rendering: pixelated;
    transition: width 0.3s;
}
#map-container .bm-marker-player .bm-player-name {
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 0.25em;
    background-color: #0008;
    color: #fff;
    transition: opacity 0.3s;
}
#map-container .bm-marker-player[distance-data="med"] img,
#map-container .bm-marker-player[distance-data="far"] img {
    width: 16px;
}
#map-container .bm-marker-player[distance-data="med"] .bm-player-name,
#map-container .bm-marker-player[distance-data="far"] .bm-player-name {
    opacity: 0;
}
#map-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
#app {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    font-size: 1rem;
}
@media (max-width: 575.98px) {
    #app {
        font-size: 1.5rem;
    }
}
#app .map-state-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--theme-fg-light);
    line-height: 1em;
    text-align: center;
}