/* Styles for the table sort */
.tablesort {
  position: relative;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
}
/* Add background image for Sortable sort  */
.tablesort--sort {
  background-image: url('../assets/up-down-arrow-icon.png');
}

/* Add background image for  Ascending sort  */
.tablesort--asc {
  background-image: url('../assets/up-arrow-icon.png');
}

/* Add background image for  Descending sort  */
.tablesort--desc {
  background-image: url('../assets/down-arrow-icon.png');
}
