.ova-progress-circle-wrapper {
  text-align: center;
}
.ova-progress-circle-wrapper.template2 {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ova-progress-circle-wrapper.template2 .ova-progress-circle .percent {
  font-size: 24px;
}
.ova-progress-circle-wrapper.template2 .title {
  margin-top: 0;
  text-align: left;
  font-weight: 600;
}
.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-size: 30px;
  color: var(--heading);
  line-height: 1;
  transform: translate(-50%, -50%);
}
.ova-progress-circle-wrapper .ova-progress-circle .percent strong {
  font-weight: 400;
}
.ova-progress-circle-wrapper .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-top: 15px;
}

.rtl .ova-progress-circle-wrapper.template2 .title {
  text-align: right;
}