/* Chart builder icons */
.chartBuilder:before,
.chartBuilder-win-shortcut:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f200';
}

.chartBuilder-section {
    padding:5px;
    margin:5px;
    font-size:14px;
    background:#eeeeee;
    text-align:center;
}

/*
This is stuff, which we were working on to get better chart animations.

.amcharts-graph-column-front {
  animation-name: esp-animate;
  animation-duration: 2s; 
} 
@keyframes esp-animate { 
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
*/

/*
.amcharts-graph-line {
  stroke-linejoin: round;
  stroke-linecap: round;
  -webkit-animation: am-draw 2s;
  animation: am-draw 2s forwards; 
}
@keyframes am-draw {
    0% {
	stroke-dashoffset: 400;
	stroke-dasharray: 0 50;
    }
    100% {
	stroke-dashoffset: 0;
	stroke-dasharray: 50 0;
    }
}
*/
