.path { stroke-dasharray: 5000; stroke-dashoffset: 5000; animation: dash 3s linear forwards paused; animation-iteration-count: 1;animation-delay: 1s;}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.dashed{
  stroke-dasharray: 5,12;
  
}
#arrow{animation: arrow 2s linear forwards paused; opacity:0;}
@keyframes arrow {
  to {
    opacity: 1;
  }
}

.graph__wrapper{
  width: 100%; height: auto; margin-top: -100px;
}

@media (max-width:480px){

  .graph__wrapper{
    width: 100%; height: auto; margin-top: -150px;
  }

}

@media only screen and (min-width:481px) and (max-width:768px){
  .graph__wrapper{
    width: 100%; height: auto; margin-top: -150px;
  }
}