:root {
  --progress-height: 16px;
  --progress-color-2: #16bc16;
}

.linear-progress-2 {
  background-color: #fff;
  padding: 15px;
  width: 30%;
  border-radius: 8px;
  margin: 10px 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.linear-progress-2 h3 {
  font-size: 18px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--progress-color-2);
}

.linear-progress-2 .progress-part {
  height: var(--progress-height);
  width: 94%;
  position: relative;
  flex: 1;
  border: 2px solid var(--progress-color-2);
}

.linear-progress-2 .progress-part > span {
  position: absolute;
  height: 70%;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  background-color: var(--progress-color-2);
  
}

.linear-progress-2 .progress-part > span > span {
  width: 46px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: inherit;
  color: #fff;
  position: absolute;
  right: -23px;
  top: -41px;
  padding: 4px 2px;
  display: block;
  border-radius: 4px;
  border-top-color: var(--progress-color-2);
}

.linear-progress-2 .progress-part > span > span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color:   var(--progress-color-2) transparent transparent transparent;
}

@media (max-width: 767px) {
  .linear-progress-2 {
    width: 48%;
  }
}
@media (max-width: 575px) {
  .linear-progress-2 {
    width: 96% !important;
  }
}