/* core classes for PaginatedTable.js table elements */
strong {
  font-weight: 400;
}

.table-header strong i {
  margin-right: .5rem;
  color: #849aae;
}

.table-outer {
  padding: 0;
  max-width: 100%;
  border-radius: 4px;
  background-color: transparent;
}

.table-header {
  padding: 2rem 1.5rem;
  background-color: var(--color-graph-bg);
  border-radius: 4px 4px 0 0;
}

.table-header strong,
.hiring-header strong {
  margin-right: .5rem;
  font-size: 20px;
  color: var(--color-quiver-white);
}

.table-header > p {
  padding-top: .25rem;
  font-size: 13px;
  color: var(--color-accent);
}

.table-outer .table-inner {
  position: relative;
  max-height: 460px;
}

table.paginated-table {
  table-layout: fixed;
  min-width: 100%;
  border-spacing: 0;
  margin-bottom: 1rem;
}

table.paginated-table tr.sticky-table-headers > th {
  border: 1px solid #2c3746;
  border-right: 0;
  background-color: #242e3b;
  font-weight: 400;
}

.paginated-table thead th > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.paginated-table th .sort-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: .75rem;
  cursor: pointer;
}

.paginated-table .sort-outer i {
  font-size: 14px;
  color: rgb(125,125,125);
  line-height: .25 !important;
  transition: .2s;
}

.paginated-table th i.sort-active {
  color: var(--color-quiver-green);
  transition: .2s;
}

.paginated-table tbody tr:nth-child(even) {
  background-color: rgba(0,0,0,.05);
}

.paginated-table tbody tr:hover {
  box-shadow:inset 0 0 0 100px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: .1s;
}

.paginated-table td {
  border-bottom: 1px solid #2c3746;
  padding: 0;
  height: 60px;
}

.paginated-table td a {
  display: flex;
  align-items: center;
  padding: 0.25rem .25rem 0.25rem 1rem;
  height: 100%;
  color: var(--color-quiver-white);
  font-size: 14px;
}

.paginated-table td img {
  margin-right: .75rem;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 2px;
}

/* loader/spinner */
.table-loader-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-loader-outer p {
  padding-bottom: 1rem;
}

.table-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 5px solid #657c92;
  border-right: 5px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.table-placeholder {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  padding: .5rem;
  background-color: var(--color-header-bg);
  opacity: .75;
}

.table-placeholder {
  height: 100%;
}

.table-placeholder .table-placeholder-item {
  flex-grow: 1;
  margin: .5rem;
  background-color: var(--color-graph-bg);
}

.hide-loader-table {
  display: none !important;
}

.loader-row td {
  position: relative;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
