table thead th {
  position: relative;
  cursor: pointer;
  text-align: center;
}

table thead .sorting::after,
table thead .sort-up::after,
table thead .sort-down::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  background-repeat: no-repeat;
  width: 12px;
  height: 18px;
  transform: translateY(-50%);
}

table thead .sorting::after {
  background-image: url(../../assets/images/sort-default.svg);
}

table thead .sort-up::after {
  background-image: url(../../assets/images/sort-up.png);
}

table thead .sort-down::after {
  background-image: url(../../assets/images/sort-down.png);
}
