.global-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.stacked-bars {
  width: 60px;
  margin-left: 50px;
}

.item-stacked-bar-chart {
  width: 100%;
}

.stacked-labels {
  width: calc(100% - 170px);
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.item-stacked-labels {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.label-percent {
  font-weight: 900;
  font-size: 19px;
}

.label-bullet {
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-bullet img {
  height: 80%;
  width: 60%;
}

.item-stacked-bar-chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-stacked-bar-chart:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.item-stacked-bar-chart img {
  width: 50%;
}

.label-text {
  display: flex;
  align-items: center;
}


