.table {
  thead{
    th {
      border-top: none;
      color: $primary;
      border-bottom-color: $primary;
    }
  }
}

.table-hover {
  tbody {
    tr {
      &:hover {
        background-color: rgba(51, 51, 51, .04);
      }
    }
  }
}