.table {
  --x-table-color: #4F5771;
  --x-table-bg: transparent;
  --x-table-border-color: #D3D8E0;
  --x-table-accent-bg: transparent;
  --x-table-striped-color: #4F5771;
  --x-table-striped-bg: rgba(237, 239, 242, 0.4);
  --x-table-active-color: #4F5771;
  --x-table-active-bg: rgba(237, 239, 242, 0.8);
  --x-table-hover-color: #4F5771;
  --x-table-hover-bg: rgba(237, 239, 242, 0.8);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--x-table-color);
  vertical-align: middle;
  border-color: var(--x-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 1rem 1.5rem;
  background-color: var(--x-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--x-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid #D3D8E0;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.375rem 1.5rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --x-table-accent-bg: var(--x-table-striped-bg);
  color: var(--x-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --x-table-accent-bg: var(--x-table-striped-bg);
  color: var(--x-table-striped-color);
}

.table-active {
  --x-table-accent-bg: var(--x-table-active-bg);
  color: var(--x-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --x-table-accent-bg: var(--x-table-hover-bg);
  color: var(--x-table-hover-color);
}

.table-primary {
  --x-table-color: #000000;
  --x-table-bg: #d7dae3;
  --x-table-border-color: #c2c4cc;
  --x-table-striped-bg: #818388;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #2b2c2d;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #2b2c2d;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-secondary {
  --x-table-color: #000000;
  --x-table-bg: #f1f2f4;
  --x-table-border-color: #d9dadc;
  --x-table-striped-bg: #919192;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #303031;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #303031;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-success {
  --x-table-color: #000000;
  --x-table-bg: #d1e3d9;
  --x-table-border-color: #bcccc3;
  --x-table-striped-bg: #7d8882;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #2a2d2b;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #2a2d2b;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-info {
  --x-table-color: #000000;
  --x-table-bg: #d1dee3;
  --x-table-border-color: #bcc8cc;
  --x-table-striped-bg: #7d8588;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #2a2c2d;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #2a2c2d;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-warning {
  --x-table-color: #000000;
  --x-table-bg: #f5ddd8;
  --x-table-border-color: #ddc7c2;
  --x-table-striped-bg: #938582;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #312c2b;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #312c2b;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-danger {
  --x-table-color: #000000;
  --x-table-bg: #efd5d6;
  --x-table-border-color: #d7c0c1;
  --x-table-striped-bg: #8f8080;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #302b2b;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #302b2b;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-light {
  --x-table-color: #000000;
  --x-table-bg: #FFFFFF;
  --x-table-border-color: #e6e6e6;
  --x-table-striped-bg: #999999;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #333333;
  --x-table-active-color: #FFFFFF;
  --x-table-hover-bg: #333333;
  --x-table-hover-color: #FFFFFF;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-dark {
  --x-table-color: #FFFFFF;
  --x-table-bg: #1D294E;
  --x-table-border-color: #343e60;
  --x-table-striped-bg: #777f95;
  --x-table-striped-color: #FFFFFF;
  --x-table-active-bg: #d2d4dc;
  --x-table-active-color: #000000;
  --x-table-hover-bg: #d2d4dc;
  --x-table-hover-color: #000000;
  color: var(--x-table-color);
  border-color: var(--x-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.table {
  margin-bottom: 0;
}
.table thead th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.675rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom-width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.table tbody th {
  font-size: 0.8125rem;
}
.table td {
  font-size: 0.8125rem;
  white-space: nowrap;
}
.table td .progress {
  height: 3px;
  width: 120px;
  margin: 0;
}
.table.table-dark th,
.table .table-dark th {
  background-color: #263255;
  color: #6c748c;
}
.table.table-dark th a,
.table .table-dark th a {
  color: #6c748c;
}
.table.table-light th,
.table .table-light th {
  background-color: #EDEFF2;
  color: #4F5771;
}
.table.table-light th a,
.table .table-light th a {
  color: #4F5771;
}

.table-spaced {
  border-collapse: separate;
  border-spacing: 0 1rem;
}
.table-spaced thead th {
  border: 0;
}
.table-spaced thead tr th,
.table-spaced thead tr td,
.table-spaced tbody tr th,
.table-spaced tbody tr td {
  position: relative;
  background-color: transparent;
  border-top: 1px solid #D3D8E0 !important;
  border-bottom: 1px solid #D3D8E0 !important;
}
.table-spaced thead tr th:first-child,
.table-spaced thead tr td:first-child,
.table-spaced tbody tr th:first-child,
.table-spaced tbody tr td:first-child {
  border-left: 1px solid #D3D8E0 !important;
  border-radius: 0.375rem 0 0 0.375rem;
}
.table-spaced thead tr th:first-child:after,
.table-spaced thead tr td:first-child:after,
.table-spaced tbody tr th:first-child:after,
.table-spaced tbody tr td:first-child:after {
  border-left: 1px solid #D3D8E0;
  border-radius: 0.375rem 0 0 0.375rem;
}
.table-spaced thead tr th:last-child,
.table-spaced thead tr td:last-child,
.table-spaced tbody tr th:last-child,
.table-spaced tbody tr td:last-child {
  border-right: 1px solid #D3D8E0 !important;
  border-radius: 0 0.375rem 0.375rem 0;
}
.table-spaced tbody tr {
  border-radius: 0.375rem;
}

.table-flush th, .table-flush td {
  border-left: 0;
  border-right: 0;
}
.table-flush thead > tr th {
  border-top: 0;
}
.table-flush thead > tr th:first-child {
  padding-left: 0;
}
.table-flush thead > tr th:last-child {
  padding-right: 0;
}
.table-flush tbody > tr:last-child th, .table-flush tbody > tr:last-child td {
  border-bottom: 0;
}
.table-flush tbody > tr th:first-child,
.table-flush tbody > tr td:first-child {
  padding-left: 0;
}
.table-flush tbody > tr th:last-child,
.table-flush tbody > tr td:last-child {
  padding-right: 0;
}