.bp-skip-animation .bp-barcharts-progress,
.bp-skip-animation .bp-columncharts-progress {
  animation-name: none;
} 

.bp-charts-wrapper {
  width: max-content;
}

.bp-barcharts-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  font-size: 1rem;
  box-sizing: border-box;
}

.bp-barcharts-progress {
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  animation-name: barcharts-progress;
  animation-duration: 5000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.bp-columncharts-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  font-size: 1rem;
  box-sizing: border-box;
}

.bp-columncharts-progress {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  animation-name: columncharts-progress;
  animation-duration: 5000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.bp-donut-container {
  display: block;
}

.bp-donut-text {
  font-size: 1rem;
  text-anchor: middle;
  dominant-baseline: middle;
}

.bp-pie-container {
  display: block;
}

.bp-pie-text {
  font-size: 1rem;
  text-anchor: middle;
  dominant-baseline: middle;
}

@keyframes barcharts-progress {
  from {
    width: 0%;
  }
}

@keyframes columncharts-progress {
  from {
    height: 0%;
  }
}
