@import '../../styles/variables';

.WizardInfo {
  display: flex;
  width: 87%;
  margin-bottom: 10px;
  align-items: center;

  &__step-count {
    width: 35%;
    font-size: 12px;
  }

  &__steps {
    display: flex;
    width: 100%;
  }

  &__step {
    width: 100%;
    height: 4px;
    margin: 0 2px;
    border-radius: 1px;
    background-color: $gray95;

    &_passed {
      background-color: $brand-color;
    }

    &::after {
      content: '';
    }
  }
}
