.dot {
    display: none;
}

.dim {
    background: #fff;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: rgba(0, 0, 0, 0.8);
    display: block;
    font-family: Futura, Helvetica Neue, sans-serif;
    font-size: 1em;
    font-weight: 700;
    max-width: 128px;
    overflow-wrap: break-word;
    padding: 0.5em 1em;
    position: absolute;
    width: max-content;
    height: max-content;
    transform: translate3d(-50%, -50%, 0);
    pointer-events: none;
    --min-hotspot-opacity: 0;
}

@media only screen and (max-width: 800px) {
    .dim {
        font-size: 3vw;
    }
}

.dimensionLineContainer {
    pointer-events: none;
    display: block;
}

.dimensionLine {
    stroke: #2b2b2b; /* Color of the lines */
    stroke-width: 1; /* Thickness of the lines */
    stroke-dasharray: 0; /* Use solid lines */
}

.hide {
    display: none; /* Class to hide lines */
}

/* This keeps child nodes hidden while the element loads */
:not(:defined)>* {
    display: none;
}


