#panorama {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.pin-container {
    -webkit-user-select: none;
    user-select: none;
}

.pin-image {
    width: 100%;
    height: 100%;

    -webkit-user-select: none;
    user-select: none;
}

.tooltip {
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 110%;
    width: 120px;
    z-index: 1;
    padding: 5px 10px;
    border: none;
    margin: 0 0 0 -70px;
    border-radius: 6px;
    background-color: rgba(100, 100, 100, 0.8);
    color: white;
    text-align: center;
    font-size: 12px;
    font-family: sans-serif;
}

.tooltip-container:hover > .tooltip {
    visibility: visible;
}
