.discount_step_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.discount_step_container {
  display: flex;
  width: 600px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.discount_step_bar {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #d7d7d7;
  display: flex;
  align-items: center;
  z-index: 0;
}

.discount_step_position {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #FFFFFF;
  z-index: 3;
}

.discount_step_percent {
  height: 50px;
  width: 50px;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--color-primary);
  background-color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
}

.discount_step_percent--small {
  position: absolute;
  bottom: 0;
  left: 100%;
  color: #FFFFFF;
  margin-left: 5px;
  font-weight: bold;
  font-size: 1rem;
}

.discount_step_progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 2;
}

.discount_step_bottom {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 0.9375rem;
}
.discount_step_bottom.discount_step_bottom--center {
  justify-content: center;
}

.discount_step_left {
  flex-grow: 1;
  flex-direction: row;
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.1;
}

.discount_step_right {
  flex-grow: 1;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding-left: 0.9375rem;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .discount_step_container {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .discount_step_right {
    font-size: 0.875rem;
  }
  .discount_step_left {
    font-size: 1.0625rem;
  }
  .discount_step_percent--small {
    font-size: 0.875rem;
    bottom: -40%;
    color: #22262C;
  }
  .discount_step_bottom {
    padding-top: 1.25rem;
  }
}
/*# sourceMappingURL=discount_step.css.map */