.cbAnnotationLayer {
  overflow: hidden;
  .wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    line-height: 0;
    padding: 0;
    margin: 0;
  }
  font-size: 12px;

  img {
    width: 100%;
    height: auto;
  }
  div.overlayContainer {
    height: 0;
    width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  svg.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    font-family: var(--chart-font-stack);
    font-weight: 400;
    font-size: 1.4vw;

    @media only screen and (max-width: 599px) {
      font-size: 2.5vw;
    }
    @media only screen and (min-width: 1200px) {
      font-size: 0.9vw;
    }
    @media only screen and (min-width: 1500px) {
      font-size: 0.8vw;
    }

    .bold,
    .red {
      font-weight: 900;
      font-size: 1.1em;
    }
    .red {
      fill: #fff;
    }
    path {
      stroke: rgba(0, 0, 0, 0.5);
      stroke-width: 0.75px;
    }
  }

  // locator ELEMENTS
  svg.locator:hover {
    cursor: pointer;
  }
  .locator:not(svg) {
    position: absolute;
    background-color: white;
    padding: 13px;
    display: inline-block;
  }
  .locatorLine {
    stroke: rgba(0, 0, 0, 0.4);
    stroke-width: 0.5;
  }
  .locatorLineText {
    font-size: 10px;
    fill: rgba(0, 0, 0, 0.6);
  }
  .center {
    position: relative;
    top: calc(50% - 1.5px);
    left: calc(50% - 1.5px);
    width: 3px;
    height: 3px;
    background-color: #f00;
    display: inline-block;
  }
}
