.svgTextContFill_wif text {
  display: none;
  /*
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 3s ease-in-out forwards, filling 1s 1s ease-in-out forwards;
  */
}
.svgTextContFill_wif.show text {
  display: block;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: svgTextContFill_wif_dash_frames 3s ease-in-out forwards, svgTextContFill_wif_filling_frames 1s 1s ease-in-out forwards;
}

@keyframes svgTextContFill_wif_dash_frames {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes svgTextContFill_wif_filling_frames {
  from {
    fill: var(--col_white);
    fill-opacity: 0;
  }
  to {
    fill: var(--col_white);
    fill-opacity: 1;
  }
}
