.idg-ete-highlight-container {
  display: inline-block;
  position: relative;
}

.idg-ete-highlighted-text {
  position: relative;
  z-index: 2;
}

.idg-ete-highlight-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.idg-ete-highlight-path {
  fill: none;
  stroke: #ffe600;
  stroke-width: 10;
}

.idg-ete-animated {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: idg-ete-draw 2s linear forwards;
}

@keyframes idg-ete-draw {
  to {
      stroke-dashoffset: 0;
  }
}
