.order {
  .book .head {
    width: auto;
    float: none;
  }

  .vertical-space td {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  td:first-child {
    padding-left: 0 !important;
  }
}

.step-bar {
  counter-reset: step-counter 0;
  list-style-type: none;
  padding: 10px;
  margin-top: 25px;
  text-align: center;

  li {
    display: inline;
    margin-right: 50px;
    color: var(--color-step);

    &::before {
      counter-increment: step-counter +1;
      content: counter(step-counter) ". ";
    }
  }

  .current-step {
    font-weight: bold;
    color: var(--color-step-current);
  }
}
