<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }

  #image-wrapper {
    margin: auto;
    width: 500px;
    position: relative;
    background-size: contain;
  }


  #image-wrapper &gt; img {
    max-width: 100%;
    display: none;
  }

  #map-canvas,
  .canvas-container {
    position: absolute;
    left: 0;
    top: 0;
  }

  figure {
      position: relative;
      width: 100%;
      vertical-align: middle;
      margin: 0;
  }
  @media (max-width: 768px) {
    figure {
        overflow: hidden;
    }
}

  figure svg {
      display: inline-block;
      position: absolute;
      top: 0; left: 0;
  }

  rect:hover,
  circle:hover,
  ellipse:hover {
    opacity: 0.2;
    cursor: pointer;
  }
  .linkRemoveButton {
      display:none;
  }
</pre></body></html>