#container {
  max-width: 1500px;
  height: 500px;
  margin: 1em auto;
}
.highcharts-exporting-group ,.highcharts-credits,.highcharts-title{
  display: none;
}
.highcharts-background{

}
.highcharts-label{
    font-weight: normal;
    font-size: 10px;
}
.animated-line {
  stroke-width: 0.3;
  stroke-dasharray: 8;
  stroke-dashoffset: 10;
  animation: dash 5s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 20;
  }
}
