@include block ('parameter-table') {

  margin-top: s(0.5);

  @extend %table;


  tbody tr:nth-child(odd) {
    td {
      background-color: $color-table-cell;
    }
  }

  th,
  td {
    white-space: nowrap;

    &:last-child {
      white-space: normal;
      width: 100%;

      code,
      i {
        white-space: normal;
      }
    }

    &:nth-child(3),
    &:nth-child(4) {
      text-align: center;
    }

    @include media ('<tablet-small') {
      &:nth-child(5) {
        display: none;
      }

      &:first-child {
        width: 100%;
      }
    }

    @include media ('<mobile-large') {
      &:nth-child(4) {
        display: none;
      }
    }
  }
}
