.progress_bar_line_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.progress_bar_line_wrap .percent {
  position: relative;
  width: 100%;
  height: 100%;
}
.progress_bar_line_wrap .percent .percent_wrap .num {
  color: #17171A;
  font-feature-settings: "ss03" on;
  text-overflow: ellipsis;
  font-family: Mariupol, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 137.5%;
}
.progress_bar_line_wrap .percent .percent_wrap .percent_text {
  color: #737580;
  font-feature-settings: "ss03" on;
  text-overflow: ellipsis;
  font-family: Mariupol, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 137.5%;
}
.progress_bar_line_wrap .container_line_progress {
  width: 100%;
  height: 10px;
  border-radius: 100px;
  background: #E9EAF0;
}
.progress_bar_line_wrap .container_line_progress .line_progress {
  border-radius: 50px;
  height: 100%;
  width: 0;
  background: #0FA958;
}
.progress_bar_line_wrap .container_line_progress .line_progress.animate {
  transition: 0.8s width;
}

@media screen and (max-width: 768px) {
  .progress_bar_line_wrap {
    flex-direction: row-reverse;
    align-items: center;
    gap: 16px;
  }
  .progress_bar_line_wrap .container_line_progress {
    height: 8px;
  }
  .progress_bar_line_wrap .percent {
    width: auto;
  }
  .progress_bar_line_wrap .percent .percent_wrap .percent_text {
    display: none;
  }
  .progress_bar_line_wrap .percent .percent_wrap .num {
    font-size: 15px;
  }
}

/*# sourceMappingURL=progress-bar-line.css.map */
