.ova-progress {
  background-color: #fff;
  box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.07);
  padding: 22px 50px 35px;
}
@media (max-width: 767px) {
  .ova-progress {
    padding: 20px 15px 25px;
  }
}
.ova-progress .ova-progress-title {
  margin: 0 0 13px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
.ova-progress .ova-percent-view {
  height: 4px;
  width: 100%;
  background-color: #1c231f1a;
  position: relative;
}
.ova-progress .ova-percent-view .ova-percent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  float: left;
  background-color: var(--primary);
}
.ova-progress .ova-percent-view .percentage {
  position: absolute;
  bottom: calc(100% + 13px);
  right: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--heading);
}
.ova-progress .ova-percent-view .ova-dot {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateY(-50%);
}