@import 'public-booking/main_dependencies';

bb-purchase-list {
  display: block;
  margin-bottom: 0;
  font-weight: 500;

  @mixin cell-layout {
    &:nth-of-type(1) {
      width: 75%
    }

    &:nth-of-type(2) {
      width: 15%;
    }

    &:nth-of-type(3) {
      width: 10%;
    }
  }

  .table-condensed .purchase-list {

    &__heading {
      th {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom-width: 1px;

        @include cell-layout;
      }
    }

    &__cell-faded {
      font-weight: $bb-font-weight-2;
      color: $bb-font-color-faded;
    }

    &__narrow-header {
      min-width: 55px;
    }

    &__quantity-column {
      padding-left: 10px;
    }

    &__items {
      td {
        padding-top: 15px;
        padding-bottom: 15px;

        @include cell-layout;
      }
    }

    &__total {
      td {
        text-transform: uppercase;
        font-weight: $bb-font-weight-3;

        @include cell-layout;
      }
    }



  }
}