.progress {
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
  color: #07130c;
}
.progress > label {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  letter-spacing: 0;
  width: 100%;
  text-align: center;
  display: block;
}
.progress .bar-wrap {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.progress .bar-wrap .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.progress .bar-wrap .top .stage {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  text-transform: unset;
  color: #4d544f;
}
.progress .bar-wrap .top .price {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #07130c;
}
.progress .bar-wrap .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: #4d544f;
  text-transform: uppercase;
  margin-top: 4px;
}
.progress .bar-wrap .bottom > label {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.progress .bar-wrap .bottom b {
  font-weight: 500;
  color: #07130c;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
.progress .bar-wrap progress[value] {
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #07130c;
  height: 16px;
  box-sizing: border-box;
}
.progress .bar-wrap progress[value]::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 8px;
  height: 15px;
  box-sizing: border-box;
  box-shadow: inset 0 0.5px 1px var(--background-zero);
}
.progress .bar-wrap progress[value]::-webkit-progress-value {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 15px;
  -webkit-transition: width 1.5s;
  transition: width 1.5s;
}
.progress .bar-wrap progress[value]::-moz-progress-bar {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 15px;
  -moz-transition: width 1.5s;
  transition: width 1.5s;
}
.progress .bar-wrap progress[value]::-ms-fill {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 15px;
  -ms-transition: width 1.5s;
  transition: width 1.5s;
}
.nex-pill {
  color: #07130c;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  justify-content: flex-end;
  width: 62px;
  padding: 8px 12px 8px 8px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  gap: 8px;
  position: relative;
}
.discount-pill,
.nex-pill {
  align-items: center;
  line-height: 140%;
  letter-spacing: -0.045em;
}
.discount-pill {
  color: #000;
  background-color: #49ff86;
  padding: 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  text-transform: uppercase;
}
