/* Custom Styles */
.svg_active{
 display: none;
}
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2s linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 900;
  }
  to {
    stroke-dashoffset: 0;
  }
}