.batch-table {
  display: flex;
  margin: 2rem 0 2rem 0;

  .batch-stats {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-right: 1rem;

    .batch-columns {
      display: flex;
      justify-content: space-around;
      div {
        text-align: center;
        border-bottom: 1px solid #E0E0E0;
        flex-grow: 1;
        margin-right: .5rem;
        &.total-amount-column {
          margin-right: 0;
        }
      }
    }

    .batch-data {
      display: flex;
      justify-content: space-around;
      margin-top: .5rem;
      div, small {
        flex-grow: 1;
        width: 33%;
        &.total-payments-data {
          text-align: right;
        }
        &.total-amount-data {
          text-align: right;
        }
      }
    }
  }


}


