.tableholder {
  clear: both;
  display: block;
  margin: 15px 0;
  font-family: var(--default-font);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.tableholder table.table {
}
.tableholder table.table thead,
.tableholder table.table thead tr {
  border-radius: 3px 3px 0 0;
}
.tableholder table.table thead tr td:first-child,
.tableholder table.table thead tr th:first-child {
  border-radius: 3px 0px 0 0;
  font-family: var(--default-font);
}
.tableholder table.table thead tr td:last-child,
.tableholder table.table thead tr th:last-child {
  border-radius: 0px 3px 0 0;
}
.tableholder table.table tr {
  background: white;
  border-bottom: solid 1px var(--border-color);
}
.tableholder table.table thead tr {
  background: white;
  color: var(--primary-color);
}
.tableholder table.table tbody tr:hover {
  background: rgba(0, 0, 0, 0.04);
}
.tableholder table.table tbody tr:hover td {
  color: var(--primary-color);
}
.tableholder table.table thead tr a {
  color: var(--primary-color);
}
.tableholder table.table thead tr th,
.tableholder table.table thead tr td {
  height: 56px;
  font-weight: 600;
  text-align: left;
  padding: 0 16px 0 16px;
  font-size: 14px;
}
.tableholder table.table tbody tr th,
.tableholder table.table tbody tr td {
  height: 52px;
  font-size: 14px;
  font-family: var(--default-font);
  color: var(--primary-color);
  padding: 5px 16px 0 16px;
  word-break: break-word;
}
.tableholder table.table tbody tr:last-child {
  border-bottom: none;
}
.tableholder table.table tbody tr td:last-child {
  border-radius: 0px 0px 3px 0;
}
.tableholder table.table tbody tr td:first-child {
  border-radius: 0px 0px 0px 3px;
}
.tableholder table.table tbody tr td:last-child.no-radius {
  border-radius: 0px 0px 0px 0;
}
.tableholder table.table tbody tr td:first-child.no-radius {
  border-radius: 0px 0px 0px 0px;
}

.tableholder table.table td.numCol {
  text-align: right;
}
.tableholder .tableFooter {
  background: white;
  border-top: solid 1px var(--border-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 11px 16px;
  border-radius: 0 0 3px 3px;
  align-items: center;
}
.tableholder .tableFooter .pagination {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0px;
  padding: 0px;
  font-family: var(--default-font);
  font-size: 14px;
}
.tableholder .tableFooter .pagination a {
  font-family: var(--default-font);
  font-size: 14px;
  color: var(--primary-color);
  padding: 0px;
  margin: 0px;
  font-weight: 600;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tableholder .tableFooter .pagination .prev,
.tableholder .tableFooter .pagination .next,
.tableholder .tableFooter .pagination .last,
.tableholder .tableFooter .pagination .first {
  padding: 5px;
  margin: 0px;
  border: none;
  background: none;
  display: flex;
}
.tableholder .tableFooter .pagination .prev svg,
.tableholder .tableFooter .pagination .next svg,
.tableholder .tableFooter .pagination .last svg,
.tableholder .tableFooter .pagination .first svg {
  width: 20px;
  height: 20px;
}
.tableholder .tableFooter .pagination button img,
.tableholder .tableFooter .pagination a img {
  width: 20px;
  height: 20px;
}
.tableholder .tableFooter .pagination button[disabled],
.tableholder .tableFooter .pagination a.disabled {
  opacity: 0.4;
}
.tableholder .tableFooter .pagination .active-link {
  color: var(--secondary);
}
.tableholder .tableFooter .pagination .active-link a {
  color: var(--secondary);
}
.tableholder .tableFooter .leftFooter a {
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  margin: 0px;
  padding: 0px;
}

.tableholder .tableFooter .leftFooter a.btn-icon {
  display: flex;
  align-items: center;
}
.tableholder .tableFooter .leftFooter a.btn:hover {
  color: var(--primary-color);
  opacity: 0.8;
}
.tableholder .tableFooter .leftFooter a.btn-icon span {
  margin-left: 5px;
}

/* Blended Bundle Table */

table#blendedBundleTable tbody tr td:first-child img {
  max-width: 50px;
  max-height: 50px;
}
table#blendedBundleTable thead th:nth-child(5) {
  text-align: center;
}
table#blendedBundleTable tbody tr td.created {
  white-space: nowrap;
}
table#blendedBundleTable tbody tr td.course .courses {
  display: flex;
  justify-content: center;
  align-items: center;
}
table#blendedBundleTable tbody tr td.course .courses span:first-child {
  display: block;
  min-width: 40px;
  height: 30px;
  background: var(--success);
  text-align: center;
  line-height: 30px;
  border: solid 1px white;
}
table#blendedBundleTable tbody tr td.course .courses span:last-child {
  display: block;
  min-width: 40px;
  height: 30px;
  background: var(--info);
  line-height: 30px;
  text-align: center;
  border-top: solid 1px white;
  border-right: solid 1px white;
  border-bottom: solid 1px white;
}
table#blendedBundleTable tbody tr td .status {
  position: relative;
  padding-left: 18px;
  display: block;
  white-space: nowrap;
}
table#blendedBundleTable tbody tr td .status:before {
  content: "";
  display: block;
  border-radius: 10px;

  width: 10px;
  height: 10px;
  position: absolute;
  top: 6px;
  left: 3px;
}
table#blendedBundleTable tbody tr td .activeStatus:before {
  background: var(--success);
}
table#blendedBundleTable tbody tr td .inactiveStatus:before {
  background: var(--info);
}
table#blendedBundleTable tbody tr td .rejectedStatus:before {
  background: var(--danger);
}
table#blendedBundleTable tbody tr td .inprogressStatus:before {
  background: var(--secondary);
}

table#blendedBundleTable tbody td.config:hover ul.popnav {
  display: block;
}
table#blendedBundleTable tbody td.config {
  position: relative;
}
table#blendedBundleTable tbody td.config svg.check {
  fill: green;
}
table#blendedBundleTable tbody td.desc a,
table#blendedBundleTable tbody td.name div {
  display: block;
  max-height: 45px;
  overflow: hidden;
}
table#blendedBundleTable tbody td.name div {
  min-width: 180px;
}

.tableholder table.table th .thblock {
  display: flex;
  justify-content: left;
  align-items: center;
}
.tableholder table.table th .thblock.centeralign {
  justify-content: center;
}

.tableholder table.table th .thblock.rightalign {
  justify-content: right;
}
.tableholder table.table th .thblock .sortinglink {
  margin-left: 5px;
  cursor: pointer;
  opacity: 0.5;
}
.tableholder table.table th .thblock .sortinglink.up {
  transform: rotate(180deg);
}
