/* Silence may be golden, but sometimes words paint the canvas of understanding. */
.linksy-datatable {
  position: relative;
}

.linksy-datatable .linksy-loader {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: calc(50% - 18px);
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(167, 165, 165, 0.55);
}

.linksy-datatable > .linksy-datatable-table table td {
  line-height: 26px;
  font-weight: 600;
  border-bottom: 1px solid #e2e1e1;
}

.linksy-datatable table thead,
.linksy-datatable table tbody {
  position: relative;
}

.linksy-datatable table thead td {
  font-weight: 600;
  font-size: 20px;
  padding: 20px 0px 20px 20px;
  white-space: nowrap;
  background-color: #ffffff;
}
.linksy-datatable table thead td:last-child {
  padding-right: 20px;
}

.linksy-datatable table thead td:first-child {
  padding-left: 20px;
}

.linksy-datatable table tbody td:last-child {
  padding-right: 20px;
}
/* 
.linksy-datatable table thead td.sortable {
    padding-left: 15px;
} */

.linksy-datatable table thead td > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.linksy-datatable table thead td > div .sortable-container {
  padding-left: 5px;
  padding-right: 5px;
}

.linksy-datatable table thead td > div .sortable-container i {
  display: block;
  color: #cecece;
  line-height: 1px;
}

.linksy-datatable table thead td > div .sortable-container i.active {
  color: #000000;
}

.linksy-datatable table tbody td {
  font-size: 18px;
  padding: 20px 0px 20px 20px;
  vertical-align: text-top;
}

tr.table-row:hover {
  background-color: rgba(233, 231, 231, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

tr.table-row {
  animation: fadeIn 0.5s ease-in-out;
}
