:root {
  --progress-color-h: #08c9b2;
}

.horizontal-progresses {
  position: relative;
  width: 1000px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 0 10px #0000001f;
}

.horizontal-progresses .progress-line {
  height: 35px;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.horizontal-progresses .graph-progress-holder {
  display: flex;
  align-items: center;
}

.horizontal-progresses .graph-progress-holder h3 {
  font-size: 16px;
  width: 100px;
  text-align: center;
  color: var(--progress-color-h);
}

.horizontal-progresses .graph-progress-holder h5 {
  position: relative;
  width: 60px;
  font-size: 18px;
  margin: 10px 10px 10px 5px;
  background-color: var(--progress-color-h);
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
}

.horizontal-progresses .progress-line span {
  position: absolute;
  height: 100%;
  bottom: 0;
  border-radius: 0px 8px 8px 0;
  opacity: 0.8;
  background-color: var(--progress-color-h);
}


@media (max-width: 575px) {
  .horizontal-progresses.graph-progress-holder h3 {
    font-size: 13px;
  }
  .horizontal-progresses .graph-progress-holder h5 {
    font-size: 13px;
  }
}