.steps-bar {
  @include wrapper_row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0 24px;
  border-bottom: 1px solid #d6d6d7;
  height: 100%;

  .steps-bar__step--content {
    height: 100%;
    width: calc(100% - 250px);
    overflow: auto;
  }

}

.step-icon {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 12px 0;

  background: #E2F2FE;
  color: $line-color-2;

  @include wrapper_row;
  align-content: center;
  align-items: center;
  justify-content: center;

  @include font-12;
  font-weight: bold;
  text-transform: uppercase;
}

.step-icon-wait {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 12px 0;

  background: #FFFFFF;
  color: $grey-3;
  border: 1px solid #D6D6D7;

  &.left {
    div {
      font-size: 15px;
      transform: rotate(180deg);
      margin-left: -2px;
      margin-top: 2px;
    }
  }

  &.right {
    div {
      font-size: 15px;
      margin-top: -3px;
      margin-left: 1px;
    }
  }

  @include wrapper_row;
  align-content: center;
  align-items: center;
  justify-content: center;

  @include font-12;
  font-weight: bold;
  text-transform: uppercase;
}

.step-item {
  cursor: pointer;
  min-width: 224px;
  @include text-ellipsis;
  @include wrapper_row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.stepper__step--action {
  width: 250px;
  display: flex;
  justify-content: flex-end;
}

.bottom-line-active {
  width: 100%;
  height: 2px;
  background: #3E94EA;
}

.p-stepper-steps {
  width: 100%;
}