x-datatable x-datatable-col {
  display: none;
}
x-datatable.fluid > .toolbar {
  padding-left: 0.5rem;
  padding-right: 0.5em;
}
x-datatable.fluid > .wrap {
  border-radius: 0;
  box-shadow: none;
  border-right: none !important;
  border-left: none !important;
}
x-datatable > .toolbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
x-datatable > .toolbar x-input {
  max-width: 18rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
x-datatable > .toolbar x-input .input-container {
  border-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.35);
}
.is-dark-mode x-datatable > .toolbar x-input .input-container {
  border-color: var(--color-dark-tint, #414141);
}
x-datatable > .toolbar x-input .filters {
  z-index: 9999;
  position: absolute;
  margin: 2px 0 0;
  top: 54px;
  list-style: none;
  padding: 0 0.5rem 0.5rem;
  background-color: var(--color-border-lucid, #f7f7f7);
  border: 1px solid var(--color-border-tinted, #d9d8db);
  min-width: 14rem;
  max-width: 100%;
  font-family: "Poppins", "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: none;
  width: 100%;
  box-shadow: 0px 12px 10px -8px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
x-datatable > .toolbar x-input .filters.active {
  display: block;
  animation: fadeIn 0.3s;
}
x-datatable > .toolbar x-input .filters .arrow {
  position: absolute;
  top: calc(-0.6rem - 1px);
  right: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  background-color: var(--color-border-lucid, #f7f7f7);
  border: 1px solid var(--color-border-tinted, #d9d8db);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  border-top-left-radius: 0.25rem;
}
.is-dark-mode x-datatable > .toolbar x-input .filters .arrow {
  background-color: var(--color-dark-shade, #1a1a1a);
  border: 1px solid var(--color-dark-tint, #414141);
  border-right: none;
  border-bottom: none;
}
.is-dark-mode x-datatable > .toolbar x-input .filters {
  background-color: var(--color-dark-shade, #1a1a1a);
  border: 1px solid var(--color-dark-tint, #414141);
}
x-datatable > .toolbar x-input .filters:empty {
  display: none !important;
}
x-datatable > .toolbar x-input .filters x-datatable-filter {
  display: block;
}
x-datatable > .toolbar > div {
  display: block;
}
x-datatable > .toolbar > div:empty {
  display: none;
}
x-datatable > .toolbar > div x-button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
x-datatable > .toolbar > div x-button:last-of-type {
  margin-right: 0;
}
x-datatable > .wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 1rem auto;
  margin-top: 0;
  overflow-x: auto;
  background-color: var(--color-white, #FFFFFF);
  border: 1px solid rgba(var(--color-border-rgb, 200, 199, 204), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-border-rgb, 200, 199, 204), 0.2);
  border-radius: 0.5rem;
}
.is-dark-mode x-datatable > .wrap {
  color: var(--color-text-light, #FEFEFE);
  background-color: var(--color-black, #000000);
  box-shadow: 0px 3px 1rem rgba(var(--color-black-rgb, 0, 0, 0), 0.35);
  border: 1px solid var(--color-dark-tint, #414141);
}
x-datatable table {
  position: relative;
  width: 100%;
  border: none;
  border-collapse: collapse;
  overflow: hidden;
}
x-datatable table [data-align=left] {
  text-align: left;
}
x-datatable table [data-align=center] {
  text-align: center;
}
x-datatable table [data-align=right] {
  text-align: right;
}
x-datatable table thead th {
  white-space: nowrap;
  border: 0 solid transparent;
  padding: 1.25rem 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1em;
  color: inherit;
  vertical-align: middle;
  position: relative;
}
x-datatable table thead th:hover .sortable {
  opacity: 1;
}
x-datatable table thead th:not(:last-child)::after {
  content: "";
  width: 1px;
  border-right: 1px solid rgba(var(--color-border-rgb, 200, 199, 204), 0.35);
  position: absolute;
  right: 0;
  top: 1rem;
  bottom: 1rem;
}
.is-dark-mode x-datatable table thead th:not(:last-child)::after {
  border-color: var(--color-dark-tint, #414141);
}
x-datatable table thead th .sortable {
  cursor: pointer;
  transition: 0.4s;
  opacity: 0.3;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
x-datatable table thead th .sortable i {
  pointer-events: none;
  margin-right: 0.5rem;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  transform-origin: center;
  transition: 0.4s;
  font-size: 0.5rem;
}
x-datatable table thead th .sortable i.asc {
  transform: rotate(180deg);
}
x-datatable table thead th .sortable[data-sort] {
  opacity: 0.8;
}
x-datatable table thead th .sortable[data-sort=asc] i.desc {
  display: none;
}
x-datatable table thead th .sortable[data-sort=desc] i.asc {
  display: none;
}
x-datatable table thead th > span i[class^=icon-] {
  font-size: 1.25rem !important;
}
x-datatable table thead th.fluid {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
x-datatable table tbody tr {
  transition: background-color 0.4s, border 0.4s, box-shadow 0.3s;
}
x-datatable table tbody tr.group td {
  padding: 0.5rem 0.6rem;
}
x-datatable table tbody tr.group td > div {
  background-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.2);
  border-radius: 0.25rem;
  padding: 0.125rem 0.65rem;
  font-weight: bolder;
  font-size: 0.85rem;
}
x-datatable table tbody tr:hover:not(.group) {
  background-color: hsla(0, 0%, 74.5%, 0.1);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(var(--color-border-rgb, 200, 199, 204), 0.1), inset 0 -1px 0 rgba(var(--color-border-rgb, 200, 199, 204), 0.1);
}
x-datatable table tbody tr td {
  padding: 0.875rem 1.25rem;
  color: var(--color-text-tint, #656565);
  box-sizing: content-box;
  vertical-align: middle;
  white-space: nowrap;
}
.is-dark-mode x-datatable table tbody tr td {
  color: var(--color-text-light-shade, #d8d8d8);
}
x-datatable table tbody tr td .cell-template x-icon {
  font-size: 1.75rem !important;
  margin: 0 1px !important;
}
x-datatable table tbody tr td .cell-template x-button button, x-datatable table tbody tr td .cell-template x-button a {
  padding: 0.9rem 0.25rem;
  max-height: 1.75rem;
  height: 1.2rem;
  font-size: 0.875rem;
}
x-datatable table tbody tr td .cell-template x-button button x-icon, x-datatable table tbody tr td .cell-template x-button a x-icon {
  font-size: 1rem !important;
}
x-datatable table tbody tr td tt {
  font-family: inherit;
}
x-datatable table tbody tr td x-tooltip {
  display: block;
}
x-datatable table tbody tr td[data-type=date], x-datatable table tbody tr td[data-type=time] {
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
x-datatable table tbody tr td[data-type=date] p, x-datatable table tbody tr td[data-type=time] p {
  font-size: 0.6rem;
  display: block;
  text-align: inherit;
  line-height: 1em;
  font-weight: bolder;
  padding: 2px 0px;
  margin: 0px;
  text-transform: uppercase;
  opacity: 0.85;
}
x-datatable table tbody tr td[data-type=date] h5, x-datatable table tbody tr td[data-type=time] h5 {
  font-size: 1.25rem;
  display: block;
  text-align: inherit;
  line-height: 1em;
  font-weight: bolder;
  padding: 0px;
  margin: 0px;
}
x-datatable table tbody tr td[data-type=date] div {
  text-align: center;
}
x-datatable table tbody tr td[data-type=time] div {
  text-align: left;
  display: inline-block;
}
x-datatable table tbody tr td[data-type=time] p {
  padding-left: 0.2rem;
}
x-datatable table tbody tr td.fluid {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
x-datatable table .message td {
  padding: 0.6rem;
}
x-datatable table .message td x-alert {
  margin-bottom: 0px;
  padding: 1.2rem 1.5rem;
  padding-left: 3.5rem;
  animation: 0.3s fadeInUp;
}
x-datatable table .message td x-alert x-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2.5rem !important;
  top: 0.6rem;
  left: 0.6rem;
  animation: none;
}
x-datatable table .loading td {
  padding: 0.6rem;
}
x-datatable table .show-more td {
  border-top: 1px solid rgba(var(--color-border-rgb, 200, 199, 204), 0.2);
  text-align: center;
  cursor: pointer;
  background-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.05);
  font-size: 0.85rem;
  transition: 0.3s;
}
x-datatable table .show-more td:hover {
  background-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.1);
}
.is-dark-mode x-datatable table .show-more td:hover {
  background-color: rgba(50, 50, 50, 0.25);
}
x-datatable table .empty td {
  padding-top: 4rem;
  padding-bottom: 4rem;
  transition: 0.4s;
  text-align: center;
  opacity: 0.8;
  user-select: none;
  -webkit-user-select: none;
}
x-datatable table .empty td i[class^=icon-] {
  font-size: 6rem;
  display: block;
  margin: 0 auto 1rem;
}
x-datatable table .empty td p {
  font-size: 1.25rem;
}
x-datatable table .empty td .loading-indicator {
  width: 6em;
  height: 6em;
  position: relative;
  color: inherit;
  display: block;
  box-sizing: content-box;
  animation: cycle 0.8s infinite linear;
  padding: 0px 1rem;
  margin: 0 auto;
  transition: all 0.3s;
  transition-timing-function: ease-in;
}
x-datatable table .empty td .loading-indicator:after {
  content: " ";
  display: block;
  width: 12em;
  height: 12em;
  box-sizing: border-box;
  transform-origin: 0em 0em;
  transform: translateZ(0) scale(0.5);
  backface-visibility: hidden;
  border-radius: 50%;
  border: 0.3em solid currentColor;
  border-left-color: transparent;
}
x-datatable .pagination {
  font-size: 0.8rem;
  margin-top: -0.35rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  opacity: 0.5;
  color: var(--color-text, #4A4A4A);
}
.is-dark-mode x-datatable .pagination {
  color: var(--color-text-light, #FEFEFE);
}

x-datatable-filter {
  display: none;
  border-bottom: 1px dashed rgba(var(--color-default-rgb, 155, 155, 155), 0.2);
  padding: 0px;
}
x-datatable-filter x-datatable-filter-item {
  border-bottom: 1px dashed rgba(var(--color-default-rgb, 155, 155, 155), 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text, #4A4A4A);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  border-radius: 0.2rem;
  line-height: 1em;
}
.is-dark-mode x-datatable-filter x-datatable-filter-item {
  color: var(--color-text-light, #FEFEFE);
}
x-datatable-filter x-datatable-filter-item x-icon {
  width: 1em;
  height: 1em;
  line-height: 1em;
  margin-right: 0.5rem;
  animation: 0.3s fadeInLeft;
}
x-datatable-filter x-datatable-filter-item:hover {
  cursor: pointer;
  background-color: rgba(var(--color-default-rgb, 155, 155, 155), 0.2);
  border-color: transparent;
}
x-datatable-filter:last-child {
  border: none;
}
x-datatable-filter .form-between {
  display: flex;
  align-items: center;
}
x-datatable-filter .form-between b {
  white-space: nowrap;
}
x-datatable-filter .form-between .field-container {
  flex: 1;
}
x-datatable-filter .filter-header {
  display: block;
  background-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.3);
  padding: 0.45rem 0.5rem;
  padding-right: 1.5rem;
  border-radius: 0.35rem;
  position: relative;
  cursor: pointer;
  animation: 0.3s fadeIn;
}
x-datatable-filter .filter-header.is-ready {
  background-color: var(--color-primary-lucid, #e3eafd);
  color: var(--color-primary-shaded, #2e52a9);
}
.is-dark-mode x-datatable-filter .filter-header.is-ready {
  background-color: var(--color-primary-shaded, #2e52a9);
  color: var(--color-primary-lucid, #e3eafd);
}
.is-dark-mode x-datatable-filter .filter-header {
  background-color: rgba(var(--color-border-rgb, 200, 199, 204), 0.3);
}
x-datatable-filter .filter-header h5 {
  font-size: 0.75rem;
  line-height: 1.35em;
  margin: 0px;
}
x-datatable-filter .filter-header p {
  font-size: 0.75rem;
  line-height: 1.3em;
  margin: 0px;
  overflow: hidden;
  white-space: nowrap;
}
x-datatable-filter .filter-header i {
  font-size: 0.8em;
}

x-datatable-map {
  display: none;
}

@media (max-width: 576px) {
  x-datatable > .toolbar {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    width: 100%;
  }
  x-datatable > .toolbar x-input {
    max-width: 100%;
    margin-right: 0;
  }
  x-datatable > .toolbar > div [slot=actions] {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  x-datatable > .toolbar > div x-button {
    width: 100%;
  }
}