.v-image-map-container {
    position: relative;
}

.v-image-map {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.v-image-map-tooltip {
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    background-color: #fff;
    border: 1px solid rgba(32, 32, 32, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(32, 32, 32, 0.5);
    padding: 0.5rem;
    min-width: 300px;
    max-width: 96vw;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.v-image-map-tooltip:target,
.v-image-map-tooltip[aria-expanded="true"] {
    visibility: visible;
    opacity: 1;
}

.v-image-map-tooltip :last-child {
    margin-bottom: 0;
}

.v-image-map-tooltip-close {
    text-decoration: none;
    color: inherit;
    float: right;
    font-size: 1.5rem;
    line-height: 1;
}

.v-image-map-shape {
    fill: none;
    stroke: none;
    outline: 0;
    pointer-events: all;
    cursor: pointer;
}
