div.map3d-nav {
    position: absolute;
    right: 1em;
    top: 5.5em;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.map3d-nav > div:not(:last-child) {
    margin-bottom: 0.5em;
}

div.map3d-nav-pan,
div.map3d-nav-rotate {
    pointer-events: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 4em;
    height: 4em;
    border-radius: 2em;
    color: var(--map-button-text-color);
    background-color: var(--map-button-bg-color);
    box-shadow: 0px 5px 10px rgba(136, 136, 136, 0.5);
}

div.map3d-nav-pan > span,
div.map3d-nav-rotate > span {
    flex: 0 0 1.25em;
}

div.map3d-nav-pan > span.icon-home {
    font-size: 120%;
}

div.map3d-nav-zoom {
    pointer-events: initial;
    width: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--map-button-text-color);
    background-color: var(--map-button-bg-color);
    box-shadow: 0px 5px 10px rgba(136, 136, 136, 0.5);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s;
    flex-direction: column;
}

div.map3d-nav-zoom > div {
    height: 2em;
    width: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.map3d-nav-zoom > div:first-child {
    border-bottom: 1px solid var(--map-button-text-color);
}



div.map3d-firstperson-button {
    pointer-events: initial;
    width: 2em;
    height: 2em;
    right: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--map-button-text-color);
    background-color: var(--map-button-bg-color);
    box-shadow: 0px 5px 10px rgba(136, 136, 136, 0.5);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s;
}

div.map3d-firstperson-button-active {
    background-color: var(--map-button-text-color);
    color: var(--map-button-bg-color);
}