.ova-progress-circle-wrapper.template1 {
  text-align: center;
}
.ova-progress-circle-wrapper.template1 .title {
  text-align: center;
}
.ova-progress-circle-wrapper.template2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ova-progress-circle-wrapper.template2 .line {
  margin: 0 0 20px 0;
}
.ova-progress-circle-wrapper .ova-progress-circle {
  display: inline-flex;
  position: relative;
}
.ova-progress-circle-wrapper .ova-progress-circle:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 87%;
  height: 87%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
}
.ova-progress-circle-wrapper .ova-progress-circle .percent {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--secondary-font);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: var(--heading);
  transform: translate(-50%, -50%);
}
.ova-progress-circle-wrapper .title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
.ova-progress-circle-wrapper .line {
  display: inline-block;
  margin: 20px 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}