/*
  Highcharts React v4-beta limitation:
  When the chart shrinks, it does not always enlarge again due to SVG intrinsic sizing.
  This CSS animation hack triggers a reflow on size changes.
*/
@keyframes hc-reflow {
  0% { outline: 1px solid transparent; }
  100% { outline: 0px solid transparent; }
}
.highcharts-container {
  animation: hc-reflow 0.001s linear;
}
.highcharts-container, .highcharts-container svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  /* max-width: 100% !important; */
  /* max-height: 100% !important; */
  min-width: 0 !important;
  min-height: 0 !important;
  box-sizing: border-box;
}
