@keyframes showStage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hideStage {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.stage0 .establish_img,
.stage1 .establish_chart {
  animation: 1s showStage;
  -webkit-animation: 1s showStage;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.stage0 .establish_chart,
.stage1 .establish_img {
  animation: 1s hideStage;
  -webkit-animation: 1s hideStage;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.bar-container {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Montserrat-SemiBold";
}
