.dataTables_wrapper {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  width: 100%;
  color: var(--b);
}
@media screen and (max-width: 1000px) {
  .dataTables_wrapper {
    max-width: var(--width-table-1000);
  }
}

table {
  border-radius: 10px;
  overflow: hidden;
  max-width: var(--width-table);
  background: var(--background-op) !important;
  border: 1px solid rgb(var(--rgb_border)/15%) !important;
}
table thead,
table tfoot {
  background: var(--background);
}
table thead .row_table_def,
table tfoot .row_table_def {
  text-transform: capitalize;
  width: 100%;
}
table thead th,
table tfoot th {
  padding: 1em;
  border-left: 1px solid var(--border-color) !important;
  white-space: nowrap;
}
table thead th:first-child {
  border-top-left-radius: 10px !important;
  border-left-width: 0 !important;
}
table thead th:last-child {
  border-top-right-radius: 10px !important;
}
table tfoot th:first-child {
  border-bottom-left-radius: 10px !important;
  border-left-width: 0 !important;
}
table tfoot th:last-child {
  border-bottom-right-radius: 10px !important;
}
table tbody tr {
  cursor: pointer;
}
table tbody tr td {
  padding: 1em;
  border-left: 1px solid var(--border-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
table tbody tr td:first-child {
  display: flex;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
}
table tbody tr td:first-child img {
  width: 2em;
  border-radius: 2px;
}
table tbody tr td:first-child {
  border-left: 0 !important;
}
table tbody tr:last-child td {
  border-bottom: 0 !important;
}
table tbody tr.selected * {
  box-shadow: inset 0 0 0 9999px var(--active-color) !important;
  background: var(--active-color) !important;
}
table tbody .dataTables_empty {
  color: red;
}

.pagination {
  list-style: none;
  display: flex;
}
.pagination a {
  text-decoration: none;
}

.page-item .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--active-color);
  background: var(--w);
  border: 1px solid rgb(var(--rgb_border)/15%);
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--w);
  background-color: var(--active-color);
  border-color: var(--active-color);
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background: var(--w);
  border-color: rgb(var(--rgb_border)/15%);
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.dataTables_wrapper .row {
  overflow-x: auto;
}
.dataTables_wrapper .row:first-child {
  margin: 0 0 1em auto;
}
.dataTables_wrapper .row:first-child .col-sm-12:last-child {
  display: none;
}
.dataTables_wrapper .row:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1em;
  width: 100%;
}
.dataTables_wrapper .row:last-child .col-sm-12 {
  white-space: nowrap;
}
.dataTables_wrapper .row:last-child .dataTables_info {
  padding: 0;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child .col-sm-12 {
  margin-left: auto;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child .col-sm-12:last-child {
  display: flex !important;
  width: 100%;
  order: -1;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child .col-sm-12:last-child #sp-table_filter {
  width: 100%;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child .col-sm-12:last-child #sp-table_filter label {
  width: 100%;
}
.dataTables_wrapper#sp-table_wrapper .row:first-child .col-sm-12:last-child #sp-table_filter label input {
  width: 100%;
  border-radius: 1000px;
  padding: 0.8em 1em;
  border: 1px solid var(--border-color);
  background: var(--w);
  color: var(--b);
  margin: 0;
}

.custom-select {
  width: 100%;
  background-color: #FAFBFC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px;
  margin: 0 6px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  white-space: nowrap;
  word-wrap: break-word;
}

/*# sourceMappingURL=table.css.map */
