.criteria-item {
  --progress: 50%;
}

.progress-wrap {
  position: relative;
}

.progress.progressbar-radius {
  height: 22px;
  background-color: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0;
}

.progress-bar.progressbar-radius {
  width: 0;
  border-radius: 999px;
  transition: width 1.2s ease;
}

.bar-blue {
  background-color: #7764FC;
}
.bar-green{
    background-color: #01A982;
}
.bar-point {
  position: absolute;
  left: var(--progress);
  top: calc(100% + 2px);
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.barpointer{
  margin-left: 0;
}
.barpointerline {
  display: block;
  width: 0;
  height: 18px;
  margin: 0 auto 8px;
  border-right: 3px dotted #01a982;
  position: relative;
}

.barpointer {
position: relative;
  display: block;
  color: #01a982;
  line-height: 1.2;
  white-space: nowrap;
}

.target-value {
  font-size: 1.1rem;
}
/* start state */
.start-left {
  left: 0;
  transform: none;
  text-align: left;
}
.start-left .barpointerline{
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .progress-wrap {
  }

  .barpointer {
    font-size: .85rem;
  }

  .barpointerline {
    height: 14px;
    margin-bottom: 6px;
  }

  .target-value {
    font-size: 1rem;
  }
}