table{
  border: 1px solid $grey;

  margin-bottom: 50px;
}
thead{
  border-bottom: 1px solid $grey;
  padding: 10px 30px;
  th{
    text-align: left;
    padding: 10px 20px;
    @extend %h4;
    display: table-cell;
    @include rem-size(16);

    max-width: 40%;
    border-right: 1px solid $grey;

    &:last-child{
      border-right: 0px solid transparent;
    }
  }
}

tbody{
  tr{

  }
  .odd{
    background: lighten($lightgrey, 30);
  }
  td{
    @extend %p;
    padding: 10px 20px;

    border-bottom: 1px solid $grey;

    border-right: 1px solid $grey;

    &:last-child{
      border-right: 0px solid transparent;
    }
  }

}
