﻿@charset "UTF-8";
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}
:root.dark {
  --dt-html-background: rgb(33, 37, 41);
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  content: "►";
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "▼";
}

html.dark table.dataTable td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "▲";
  content: "▲"/"";
}
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "▼";
  content: "▼"/"";
}
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
}
div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(13, 110, 253);
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .item-center,
  table.dataTable.miz-datatable.miz-datatable tfoot td .item-center, table.dataTable.miz-datatable.miz-datatable thead tr td .item-center, table.dataTable.miz-datatable.miz-datatable thead tr th .item-center {
    display: flex;
    justify-content: center;
    padding-right: 26px;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .item-right,
  table.dataTable.miz-datatable.miz-datatable tfoot td .item-right, table.dataTable.miz-datatable.miz-datatable thead tr td .item-right, table.dataTable.miz-datatable.miz-datatable thead tr th .item-right {
    display: flex;
    justify-content: right;
  }
  table.dataTable.miz-datatable.miz-datatable tbody td .item-right:not(:last-child),
  table.dataTable.miz-datatable.miz-datatable tfoot td .item-right:not(:last-child), table.dataTable.miz-datatable.miz-datatable thead tr td .item-right:not(:last-child), table.dataTable.miz-datatable.miz-datatable thead tr th .item-right:not(:last-child) {
    padding-right: 26px;
  }
}

table.dataTable.miz-datatable {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  height: fit-content;
}
table.dataTable.miz-datatable.loaded:before, table.dataTable.miz-datatable.loaded:after {
  display: none;
}
table.dataTable.miz-datatable:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--miz-black-a3);
  z-index: 24;
}
table.dataTable.miz-datatable:after {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #FFF;
  border-right: 3px solid transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 24;
  margin: auto;
  animation: tableSpiner 1s linear infinite;
}
@keyframes tableSpiner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 576px) {
  table.dataTable.miz-datatable {
    grid-column: span 3;
  }
}
table.dataTable.miz-datatable .table-nodata {
  grid-template-columns: 1fr;
}
table.dataTable.miz-datatable .table-nodata lottie-player {
  width: 240px;
  height: 240px;
}
table.dataTable.miz-datatable thead {
  position: relative;
  z-index: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.05);
  display: none;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable thead {
    display: table-header-group;
  }
  table.dataTable.miz-datatable thead:is(.table-sm) {
    display: none;
  }
}
table.dataTable.miz-datatable thead th,
table.dataTable.miz-datatable tfoot th {
  font-weight: bold;
}
table.dataTable.miz-datatable > thead > tr > th,
table.dataTable.miz-datatable > thead > tr > td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable > thead > tr > th:active,
table.dataTable.miz-datatable > thead > tr > td:active {
  outline: none;
}
table.dataTable.miz-datatable > tfoot > tr > th,
table.dataTable.miz-datatable > tfoot > tr > td {
  padding: 10px 10px 6px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable.miz-datatable tbody {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 16px;
  padding: 16px;
  background-color: #fafafa;
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 576px) {
  table.dataTable.miz-datatable tbody {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody {
    display: table-row-group;
    background-color: #ffffff;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  padding: 0;
  gap: 0;
  border-bottom: none;
}
@media (min-width: 576px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) {
    grid-template-columns: repeat(2, 1fr);
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr {
  display: grid;
  grid-template-columns: 1fr;
  border: none;
  gap: 8px;
  background-color: #ffffff;
  box-shadow: none;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr:hover {
  background-color: #ffffff;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr.odd {
  border-right: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td {
  gap: 8px;
  padding: 0;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td > * {
  padding: 0;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title] {
  grid-template-columns: 1fr;
  margin-bottom: 16px;
  align-items: center;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title] {
    display: grid;
    grid-template-columns: 108px 1fr;
    grid-column: span 2;
    margin-bottom: 0;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title]:before {
  content: attr(data-title);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title]:before {
    display: flex;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title] > span {
  display: flex;
  padding: 0;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title] > span:before {
    content: ":";
    margin-right: 4px;
  }
}
@media (min-width: 320px) and (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td[data-title] > span:before {
    display: flex;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions {
  margin-top: 0;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions {
    grid-column: span 2;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions .miz-button {
  background-color: #ffffff;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions .miz-button i {
  margin-right: 8px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions .miz-button i {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions .miz-button span {
    display: flex;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_actions.fixed-fill {
  display: flex;
  text-align: right;
  position: relative;
  overflow: hidden;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox {
  margin-top: 8px;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox {
    grid-column: span 2;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox button {
  background-color: #ffffff;
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox button i {
  margin-right: 8px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox button i {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox button span {
    display: flex;
  }
}
table.dataTable.miz-datatable tbody:is(.table-sm) tr td.datatable_checkbox.fixed-fill {
  display: flex;
  text-align: right;
  position: relative;
  overflow: hidden;
}
table.dataTable.miz-datatable tbody tr {
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid RGBA(0, 0, 0, 0.08);
  background-color: #ffffff;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  table.dataTable.miz-datatable tbody tr:hover {
    background-color: var(--miz-black-a7);
  }
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr {
    grid-template-columns: 1fr 108px;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr {
    display: table-row;
    background-color: transparent;
    border-radius: 0;
    box-shadow: inset 0 -1px 0 0 var(--miz-blue-grey-white);
  }
}
table.dataTable.miz-datatable tbody tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(255, 255, 255);
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable.miz-datatable tbody tr.selected a {
  color: rgb(9, 10, 11);
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable.miz-datatable tbody tr td {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td {
    gap: 12px;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td {
    display: table-cell;
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_titling, table.dataTable.miz-datatable tbody tr td.datatable_labeling {
  border-bottom: none;
  padding-bottom: 8px;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td.datatable_titling, table.dataTable.miz-datatable tbody tr td.datatable_labeling {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--miz-blue-grey-white);
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_full {
  grid-column: span 2/span 2;
}
table.dataTable.miz-datatable tbody tr td.datatable_full span {
  text-align: center;
}
table.dataTable.miz-datatable tbody tr td.datatable_titling {
  grid-row-start: 1;
  font-weight: 600;
}
table.dataTable.miz-datatable tbody tr td.datatable_labeling {
  grid-row-start: 2;
  width: calc(100% + 32px);
  border-bottom: 1px solid var(--miz-blue-grey-white);
  margin-bottom: 16px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 0 16px 16px;
  grid-template-columns: 1fr;
  white-space: normal;
}
table.dataTable.miz-datatable tbody tr td.datatable_labeling span {
  white-space: normal;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td.datatable_labeling {
    grid-row-start: 1;
    justify-self: flex-end;
  }
}
@media (min-width: 320px) and (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td.datatable_labeling span {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td.datatable_labeling {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_icons span img {
  width: 32px;
  margin-right: 8px;
}
table.dataTable.miz-datatable tbody tr td.datatable_icons span .miz-text-soft {
  display: none;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td.datatable_icons span .miz-text-soft {
    display: flex;
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_actions {
  margin-top: 16px;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td.datatable_actions {
    grid-column: span 2;
    margin-top: 0;
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button:not(table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button-primary):not(:disabled) {
  background-color: var(--miz-white-0);
}
table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button:not(table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button-primary):not(:disabled):hover {
  background-color: var(--miz-primary-l7);
}
table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button i {
  margin-right: 8px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button i {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td.datatable_actions .miz-button span {
    display: none;
  }
}
table.dataTable.miz-datatable tbody tr td.datatable_actions.fixed-fill {
  display: flex;
  text-align: right;
  position: relative;
  overflow: hidden;
  height: 100%;
}
table.dataTable.miz-datatable tbody tr td[data-title] {
  grid-template-columns: 1fr;
  margin-bottom: 16px;
  align-items: center;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td[data-title] {
    grid-template-columns: 108px 1fr;
    grid-column: span 2;
    margin-bottom: 0;
  }
}
table.dataTable.miz-datatable tbody tr td[data-title]:before {
  content: attr(data-title);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td[data-title]:before {
    display: none;
  }
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable tbody tr td[data-title] > span:before {
    content: ":";
    margin-right: 4px;
  }
}
@media (min-width: 320px) and (min-width: 992px) {
  table.dataTable.miz-datatable tbody tr td[data-title] > span:before {
    display: none;
  }
}
table.dataTable.miz-datatable tbody th,
table.dataTable.miz-datatable tbody td {
  padding: 0;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable tbody th,
  table.dataTable.miz-datatable tbody td {
    padding: 16px;
  }
}
table.dataTable.miz-datatable tbody th .miz-badge,
table.dataTable.miz-datatable tbody td .miz-badge {
  padding: 4px 16px;
  line-height: 20px;
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
  margin-right: auto;
  width: auto;
  display: inline-flex;
}
table.dataTable.miz-datatable.row-border > tbody > tr > th,
table.dataTable.miz-datatable.row-border > tbody > tr > td, table.dataTable.miz-datatable.display > tbody > tr > th,
table.dataTable.miz-datatable.display > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.miz-datatable.row-border > tbody > tr:first-child > th,
table.dataTable.miz-datatable.row-border > tbody > tr:first-child > td, table.dataTable.miz-datatable.display > tbody > tr:first-child > th,
table.dataTable.miz-datatable.display > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.miz-datatable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.miz-datatable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: #0262ef;
}
table.dataTable.miz-datatable.cell-border > tbody > tr > th,
table.dataTable.miz-datatable.cell-border > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.miz-datatable.cell-border > tbody > tr > th:first-child,
table.dataTable.miz-datatable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.miz-datatable.cell-border > tbody > tr:first-child > th,
table.dataTable.miz-datatable.cell-border > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.miz-datatable.stripe > tbody > tr.odd > *, table.dataTable.miz-datatable.display > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}
table.dataTable.miz-datatable.stripe > tbody > tr.odd.selected > *, table.dataTable.miz-datatable.display > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}
table.dataTable.miz-datatable.hover > tbody > tr:hover > *, table.dataTable.miz-datatable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}
table.dataTable.miz-datatable.hover > tbody > tr.selected:hover > *, table.dataTable.miz-datatable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}
table.dataTable.miz-datatable.order-column > tbody tr > .sorting_1,
table.dataTable.miz-datatable.order-column > tbody tr > .sorting_2,
table.dataTable.miz-datatable.order-column > tbody tr > .sorting_3, table.dataTable.miz-datatable.display > tbody tr > .sorting_1,
table.dataTable.miz-datatable.display > tbody tr > .sorting_2,
table.dataTable.miz-datatable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.miz-datatable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.miz-datatable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.miz-datatable.order-column > tbody tr.selected > .sorting_3, table.dataTable.miz-datatable.display > tbody tr.selected > .sorting_1,
table.dataTable.miz-datatable.display > tbody tr.selected > .sorting_2,
table.dataTable.miz-datatable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.miz-datatable.display > tbody > tr.odd > .sorting_1, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}
table.dataTable.miz-datatable.display > tbody > tr.odd > .sorting_2, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}
table.dataTable.miz-datatable.display > tbody > tr.odd > .sorting_3, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}
table.dataTable.miz-datatable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}
table.dataTable.miz-datatable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}
table.dataTable.miz-datatable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}
table.dataTable.miz-datatable.display > tbody > tr.even > .sorting_1, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.019);
}
table.dataTable.miz-datatable.display > tbody > tr.even > .sorting_2, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.011);
}
table.dataTable.miz-datatable.display > tbody > tr.even > .sorting_3, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.003);
}
table.dataTable.miz-datatable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.miz-datatable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}
table.dataTable.miz-datatable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.miz-datatable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}
table.dataTable.miz-datatable.display tbody tr:hover > .sorting_1, table.dataTable.miz-datatable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}
table.dataTable.miz-datatable.display tbody tr:hover > .sorting_2, table.dataTable.miz-datatable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}
table.dataTable.miz-datatable.display tbody tr:hover > .sorting_3, table.dataTable.miz-datatable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}
table.dataTable.miz-datatable.display tbody tr:hover.selected > .sorting_1, table.dataTable.miz-datatable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}
table.dataTable.miz-datatable.display tbody tr:hover.selected > .sorting_2, table.dataTable.miz-datatable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}
table.dataTable.miz-datatable.display tbody tr:hover.selected > .sorting_3, table.dataTable.miz-datatable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}
table.dataTable.miz-datatable.no-footer {
  box-shadow: inset 0 -1px 0 0 var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable.compact thead th,
table.dataTable.miz-datatable.compact thead td,
table.dataTable.miz-datatable.compact tfoot th,
table.dataTable.miz-datatable.compact tfoot td,
table.dataTable.miz-datatable.compact tbody th,
table.dataTable.miz-datatable.compact tbody td {
  padding: 4px;
}
@media (max-width: 991px) {
  table.dataTable.miz-datatable.miz-datatable.line-table thead td, table.dataTable.miz-datatable.miz-datatable.line-table thead th,
  table.dataTable.miz-datatable.miz-datatable.line-table tbody td,
  table.dataTable.miz-datatable.miz-datatable.line-table tbody th {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable.line-table thead td:not(:last-child), table.dataTable.miz-datatable.miz-datatable.line-table thead th:not(:last-child),
  table.dataTable.miz-datatable.miz-datatable.line-table tbody td:not(:last-child),
  table.dataTable.miz-datatable.miz-datatable.line-table tbody th:not(:last-child) {
    border-right: 1px solid var(--miz-blue-grey-white);
  }
}
table.dataTable.miz-datatable.miz-datatable.line-table tbody td {
  padding: 8px 16px !important;
}
table.dataTable.miz-datatable.miz-datatable.line-table tbody td.is-lists {
  grid-template-columns: 1fr;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable.line-table tbody td.is-lists {
    padding: 8px 16px !important;
  }
}
table.dataTable.miz-datatable.miz-datatable.line-table tbody tr:hover {
  background-color: transparent;
}
table.dataTable.miz-datatable.miz-datatable.line-table tbody tr.even {
  background-color: #fafafa;
}
table.dataTable.miz-datatable.miz-datatable.tiny-heading thead th {
  padding: 0 16px;
}
table.dataTable.miz-datatable.miz-datatable thead tr td, table.dataTable.miz-datatable.miz-datatable thead tr th {
  font-weight: 600;
  text-transform: capitalize;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead, table.dataTable.miz-datatable.miz-datatable thead tr th .thead {
  white-space: nowrap;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-date, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-date {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  padding: 16px 16px 0;
  margin: 0 -32px;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-date-item, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-title, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-title {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  font-weight: 500;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-title *, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-title * {
  white-space: nowrap;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-title span, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-title span {
  padding: 16px;
  text-align: center;
}
table.dataTable.miz-datatable.miz-datatable thead tr td .thead-title span:first-child, table.dataTable.miz-datatable.miz-datatable thead tr th .thead-title span:first-child {
  border-right: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable.miz-datatable tbody tr,
table.dataTable.miz-datatable.miz-datatable tfoot tr {
  gap: 8px;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody tr,
  table.dataTable.miz-datatable.miz-datatable tfoot tr {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody tr.table-nodata,
  table.dataTable.miz-datatable.miz-datatable tfoot tr.table-nodata {
    grid-column: span 2;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody tr.table-nodata .dataTables_empty,
table.dataTable.miz-datatable.miz-datatable tfoot tr.table-nodata .dataTables_empty {
  display: flex;
  flex-direction: column;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody tr.table-nodata .dataTables_empty,
  table.dataTable.miz-datatable.miz-datatable tfoot tr.table-nodata .dataTables_empty {
    display: table-cell;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td,
table.dataTable.miz-datatable.miz-datatable tfoot td {
  position: relative;
  overflow: hidden;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody td,
  table.dataTable.miz-datatable.miz-datatable tfoot td {
    grid-template-columns: 108px 1fr;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .title-label,
table.dataTable.miz-datatable.miz-datatable tfoot td .title-label {
  font-weight: 600;
  text-transform: capitalize;
  white-space: normal;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .title-label,
  table.dataTable.miz-datatable.miz-datatable tfoot td .title-label {
    display: none;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td span,
table.dataTable.miz-datatable.miz-datatable tfoot td span {
  white-space: break-spaces;
}
table.dataTable.miz-datatable.miz-datatable tbody td .td-complex,
table.dataTable.miz-datatable.miz-datatable tfoot td .td-complex {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  min-width: 268px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .td-complex .is-amount,
table.dataTable.miz-datatable.miz-datatable tfoot td .td-complex .is-amount {
  padding: 16px;
  width: 100%;
  position: relative;
}
table.dataTable.miz-datatable.miz-datatable tbody td .td-complex .is-amount .amount,
table.dataTable.miz-datatable.miz-datatable tfoot td .td-complex .is-amount .amount {
  padding-right: 0;
}
table.dataTable.miz-datatable.miz-datatable tbody td .td-complex .is-amount:first-child,
table.dataTable.miz-datatable.miz-datatable tfoot td .td-complex .is-amount:first-child {
  border-right: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable.miz-datatable tbody td.is-complex,
table.dataTable.miz-datatable.miz-datatable tfoot td.is-complex {
  padding: 0 !important;
}
table.dataTable.miz-datatable.miz-datatable tbody td .status,
table.dataTable.miz-datatable.miz-datatable tfoot td .status {
  display: inline-flex;
  margin-right: auto;
  padding: 4px 16px;
  background-color: var(--miz-primary-l7);
  border: 1px solid var(--miz-primary-l6);
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .status.item-center,
table.dataTable.miz-datatable.miz-datatable tfoot td .status.item-center {
  justify-content: center;
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-active, table.dataTable.miz-datatable.miz-datatable tbody td .status-success,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-active,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-success {
  background-color: var(--miz-success-light);
  border-color: var(--miz-success-medium);
  color: var(--miz-success-primary);
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-blocked, table.dataTable.miz-datatable.miz-datatable tbody td .status-cancelled,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-blocked,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-cancelled {
  background-color: var(--miz-warning-light);
  border-color: var(--miz-warning-medium);
  color: var(--miz-warning-dark);
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-deleted, table.dataTable.miz-datatable.miz-datatable tbody td .status-draft,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-deleted,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-draft {
  background-color: var(--miz-black-7);
  border-color: var(--miz-black-6);
  color: var(--miz-black-5);
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-inactive, table.dataTable.miz-datatable.miz-datatable tbody td .status-pending,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-inactive,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-pending {
  background-color: var(--miz-warning-primary);
  border-color: var(--miz-warning-medium);
  color: var(--miz-warning-dark);
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-suspend, table.dataTable.miz-datatable.miz-datatable tbody td .status-refund,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-suspend,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-refund {
  background-color: var(--miz-danger-primary);
  border-color: var(--miz-danger-medium);
  color: var(--miz-danger-light);
}
table.dataTable.miz-datatable.miz-datatable tbody td .status-partial,
table.dataTable.miz-datatable.miz-datatable tfoot td .status-partial {
  background-color: var(--miz-danger-light);
  border-color: var(--miz-danger-medium);
  color: var(--miz-danger-primary);
}
table.dataTable.miz-datatable.miz-datatable tbody td .has-icon,
table.dataTable.miz-datatable.miz-datatable tfoot td .has-icon {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}
table.dataTable.miz-datatable.miz-datatable tbody td .invisible-link,
table.dataTable.miz-datatable.miz-datatable tfoot td .invisible-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
table.dataTable.miz-datatable.miz-datatable tbody td .invisible-link:hover ~ *,
table.dataTable.miz-datatable.miz-datatable tfoot td .invisible-link:hover ~ * {
  color: var(--miz-primary);
}
table.dataTable.miz-datatable.miz-datatable tbody td .table-icon,
table.dataTable.miz-datatable.miz-datatable tfoot td .table-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  color: var(--miz-primary);
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .table-icon-container,
table.dataTable.miz-datatable.miz-datatable tfoot td .table-icon-container {
  padding: 4px;
  background-color: var(--miz-primary-l7);
  border: 1px solid var(--miz-primary-l6);
  display: inline-flex;
  position: relative;
  border-radius: 50%;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .table-icon,
  table.dataTable.miz-datatable.miz-datatable tfoot td .table-icon {
    width: 32px;
    height: 32px;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .table-img,
table.dataTable.miz-datatable.miz-datatable tfoot td .table-img {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: var(--miz-primary);
}
table.dataTable.miz-datatable.miz-datatable tbody td .table-img-container,
table.dataTable.miz-datatable.miz-datatable tfoot td .table-img-container {
  background-color: var(--miz-primary-l7);
  border: 1px solid var(--miz-primary-l6);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .table-img,
  table.dataTable.miz-datatable.miz-datatable tfoot td .table-img {
    width: 32px;
    height: 32px;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .currency,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .currency {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  margin-right: 8px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .amount,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .amount {
  font-weight: 600;
  line-height: 24px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .amount,
  table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .amount {
    padding-right: 10px;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .state,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .state {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--miz-blue-grey-white);
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .state-danger,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .state-danger {
  background-color: var(--miz-danger-primary);
  border-color: var(--miz-danger-medium);
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .state-warning,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .state-warning {
  background-color: var(--miz-warning-primary);
  border-color: var(--miz-warning-medium);
}
table.dataTable.miz-datatable.miz-datatable tbody td .is-amount .state-success,
table.dataTable.miz-datatable.miz-datatable tfoot td .is-amount .state-success {
  background-color: var(--miz-success-primary);
  border-color: var(--miz-success-medium);
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .t-lists,
  table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists {
    gap: 4px;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li {
  font-size: 14px;
  display: grid;
  gap: 12px;
  padding: 8px 0;
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li,
  table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li {
    grid-template-columns: 108px 1fr;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li,
  table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li {
    grid-template-columns: 1fr;
    font-size: 12px;
    padding: 0;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.info,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.info {
  gap: 4px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.info > span,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.info > span {
  text-align: right;
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.info > span:not(.label-title),
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.info > span:not(.label-title) {
  grid-column: 1;
  grid-row: 1;
  font-weight: 600;
  font-size: 16px;
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.info > span.label-title,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.info > span.label-title {
  grid-column: 1;
  grid-row: 2;
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--miz-blue-grey-light);
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.header,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.header {
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li.date,
  table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li.date {
    font-style: italic;
    color: var(--miz-blue-grey-light);
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li .label-title,
table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li .label-title {
  font-weight: 600;
  text-transform: capitalize;
  white-space: normal;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td .t-lists li .label-title,
  table.dataTable.miz-datatable.miz-datatable tfoot td .t-lists li .label-title {
    display: none;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions {
  grid-column: span 1;
  margin: 16px -16px 0;
  padding: 16px 16px 0 !important;
  border-top: 1px solid var(--miz-blue-grey-white);
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions {
    padding: 8px 16px !important;
    margin: 0;
    border-top: none;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-3,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-3 {
  display: flex;
}
@media (min-width: 360px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-3,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-3,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-3 {
    display: flex;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-3 .miz-button:first-child,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-3 .miz-button:first-child {
  grid-column: span 2;
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-2,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-2 {
  display: flex;
}
@media (min-width: 360px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-2,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-2,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-2 {
    display: flex;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-1,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-1 {
  display: flex;
}
@media (min-width: 360px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-1,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button.is-column-1,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button.is-column-1 {
    display: flex;
  }
}
@media (min-width: 320px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button,
  table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button {
    width: auto;
  }
}
table.dataTable.miz-datatable.miz-datatable tbody td.datatable_actions .actions-button .miz-button.is-text span,
table.dataTable.miz-datatable.miz-datatable tfoot td.datatable_actions .actions-button .miz-button.is-text span {
  display: flex;
}
table.dataTable.miz-datatable.miz-datatable tfoot {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background-color: var(--miz-primary-l7);
  box-shadow: inset 0 -1px 0 0 var(--miz-blue-grey-white);
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tfoot {
    display: table-footer-group;
  }
}
table.dataTable.miz-datatable.miz-datatable tfoot tr {
  background-color: transparent;
  border: 1px solid var(--miz-blue-grey-white);
  border-radius: 8px;
  background-color: var(--miz-primary);
}
table.dataTable.miz-datatable.miz-datatable tfoot tr td {
  border-top: none;
  padding: 16px;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
  color: var(--miz-white-0);
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tfoot tr td {
    font-size: 16px;
    font-weight: 600;
    display: table-cell;
    box-shadow: inset 0 -1px 0 0 var(--miz-blue-grey-white);
  }
}
table.dataTable.miz-datatable.miz-datatable tfoot tr td.is-label {
  display: none;
}
@media (min-width: 992px) {
  table.dataTable.miz-datatable.miz-datatable tfoot tr td.is-label {
    display: table-cell;
  }
}

table.dataTable th,
table.dataTable td {
  box-sizing: border-box;
}

.dataTables_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
}
@media (min-width: 576px) {
  .dataTables_wrapper {
    grid-template-columns: 1fr auto auto;
  }
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
.dataTables_wrapper.no-footer .dataTables_scrollHead .dataTable,
.dataTables_wrapper.no-footer .dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper .bottom {
  margin-top: auto;
}
.dataTables_length {
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 992px) {
  .dataTables_length {
    padding: 16px;
  }
}
.dataTables_length label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (min-width: 576px) {
  .dataTables_length label {
    width: auto;
  }
}
.dataTables_length .miz-select-container--default .miz-select-selection-single {
  min-width: 88px;
}
.dataTables_length select {
  border: 1px solid var(--miz-blue-grey-white);
  border-radius: var(--miz-spacing-sm);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--miz-spacing-lg);
  padding-right: 32px;
  background-color: transparent;
  line-height: 46px;
  appearance: none;
  outline: 0;
  min-width: 64px;
  background-image: url("data:image/svg+xml,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 64 64' xml:space='preserve' fill='%23720E1A'%3e%3cpath d='M32,43.9c-2,0-3.9-0.8-5.3-2.2l-18-18c-0.8-0.8-0.8-2.1,0-2.9s2.1-0.8,2.9,0l18,18c1.3,1.3,3.5,1.3,4.8,0l18-18 c0.8-0.8,2.1-0.8,2.9,0s0.8,2.1,0,2.9l-18,18C35.9,43.1,34,43.9,32,43.9z'/%3e%3c/svg%3e");
  background-position: center right 8px;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 100%;
}
.dataTables_filter {
  padding: 16px;
  border-bottom: 1px solid var(--miz-blue-grey-white);
  width: 100%;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column: span 2;
}
@media (min-width: 576px) {
  .dataTables_filter {
    grid-column: span 1;
  }
}
.dataTables_filter label {
  display: flex;
  width: 100%;
}
.dataTables_filter input {
  border: 1px solid var(--miz-blue-grey-white);
  border-radius: var(--miz-spacing-sm);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--miz-spacing-lg);
  padding-right: var(--miz-spacing-lg);
  background-color: transparent;
  line-height: 46px;
  appearance: none;
  outline: 0;
  width: 100%;
}
.dataTables_filter input::-webkit-search-cancel-button {
  display: none;
}
.dataTables_info {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  padding: 16px;
}
.dataTables_paginate {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  padding: 16px;
  justify-self: flex-end;
}
@media (min-width: 576px) {
  .dataTables_paginate {
    grid-column-start: 3;
  }
}
.dataTables_paginate:not(:last-child) {
  border-bottom: 1px solid var(--miz-blue-grey-white);
}
.dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  line-height: 48px;
  min-width: 48px;
  height: 48px;
  margin-left: 4px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid var(--miz-blue-grey-white);
  border-radius: 8px;
  background: transparent;
}
.dataTables_paginate .paginate_button i {
  font-size: 24px;
  color: var(--menumiz-primary);
}
.dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid var(--menumiz-miz);
  background-color: var(--menumiz-white);
}
.dataTables_paginate .paginate_button.disabled {
  cursor: not-allowed;
  color: white !important;
  border: 1px solid #ebebeb;
  background-color: var(--miz-blue-grey-white) !important;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
.dataTables_paginate .paginate_button.disabled i {
  color: white !important;
}
.dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid var(--menumiz-miz);
  background-color: var(--menumiz-miz);
}
.dataTables_paginate .paginate_button:hover i {
  color: white !important;
}
.dataTables_paginate .paginate_button:active {
  outline: none;
  color: #ffffff;
  background-color: var(--menumiz-primary);
  background-image: linear-gradient(to bottom, var(--menumiz-primary) 0%, var(--menumiz-primary) 100%);
}
.dataTables_paginate .ellipsis {
  padding: 0 16px;
}
.dataTables_scroll .dataTables_scrollBody > table > thead > tr > th > .dataTables_sizing,
.dataTables_scroll .dataTables_scrollBody > table > thead > tr > td .dataTables_sizing,
.dataTables_scroll .dataTables_scrollBody > table > tbody > tr > th .dataTables_sizing,
.dataTables_scroll .dataTables_scrollBody > table > tbody > tr > td .dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.datatable-sm .dataTables_wrapper {
  grid-template-columns: 1fr;
  position: relative;
}
.datatable-sm .dataTables_wrapper .dataTable {
  width: 100%;
  position: relative;
}
.datatable-sm .dataTables_wrapper .dataTable tbody {
  width: 100%;
}
.datatable-sm .dataTables_wrapper .dataTables_info {
  display: none;
}

.miz-dtable {
  visibility: hidden;
}
.miz-dtable:before {
  visibility: visible;
  display: table-caption;
  content: " ";
  width: 100%;
  height: 600px;
  background-image: linear-gradient(rgb(235, 235, 235) 1px, transparent 0), linear-gradient(90deg, rgb(235, 235, 235) 1px, transparent 0), linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 15%, rgba(255, 255, 255, 0) 30%), linear-gradient(rgb(240, 240, 242) 35px, transparent 0);
  background-repeat: repeat;
  background-size: 1px 35px, 16.66666666% 1px, 30% 100%, 2px 70px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: shine 0.5s infinite;
}
.miz-dtable.loaded {
  visibility: visible;
}
.miz-dtable.loaded:before {
  display: none;
}
.miz-dtable.is-date tbody th span,
.miz-dtable.is-date thead th span {
  margin-bottom: 0 !important;
}
.miz-dtable.is-date tbody td,
.miz-dtable.is-date thead td {
  padding-bottom: 0 !important;
}
.miz-dtable.is-date tbody td:first-child > .miz-flex > .miz-flex,
.miz-dtable.is-date thead td:first-child > .miz-flex > .miz-flex {
  margin-bottom: 16px;
}
.miz-dtable.is-date tbody tr,
.miz-dtable.is-date thead tr {
  transition: all ease-in-out 250ms;
}
@media (min-width: 992px) {
  .miz-dtable.is-date tbody tr.active,
  .miz-dtable.is-date thead tr.active {
    background-color: var(--miz-primary) !important;
    color: var(--miz-white-0) !important;
  }
  .miz-dtable.is-date tbody tr.active .user-desc,
  .miz-dtable.is-date thead tr.active .user-desc {
    height: 48px;
    margin-bottom: 16px;
  }
  .miz-dtable.is-date tbody tr.active .collapse-content,
  .miz-dtable.is-date thead tr.active .collapse-content {
    color: var(--miz-black-4) !important;
    display: flex !important;
    border-top: none !important;
  }
  .miz-dtable.is-date tbody tr.active .collapse-content.subtotal,
  .miz-dtable.is-date thead tr.active .collapse-content.subtotal {
    background-color: var(--miz-primary-l6) !important;
    color: var(--miz-black-3) !important;
    font-weight: 700 !important;
    border-bottom: 1px solid var(--miz-primary-l5) !important;
  }
  .miz-dtable.is-date tbody tr.active .collapse-content.subtotal-vs, .miz-dtable.is-date tbody tr.active .collapse-content.subtotal-inc,
  .miz-dtable.is-date thead tr.active .collapse-content.subtotal-vs,
  .miz-dtable.is-date thead tr.active .collapse-content.subtotal-inc {
    height: 52px;
  }
  .miz-dtable.is-date tbody tr.active .collapse-content.item,
  .miz-dtable.is-date thead tr.active .collapse-content.item {
    border-bottom: 1px solid var(--miz-primary-l5) !important;
  }
}
.miz-dtable.is-date tbody td .miz-button-outline,
.miz-dtable.is-date tbody th .miz-button-outline,
.miz-dtable.is-date thead td .miz-button-outline,
.miz-dtable.is-date thead th .miz-button-outline {
  background-color: var(--miz-white-0);
}
.miz-dtable.is-date tbody td .sticky,
.miz-dtable.is-date tbody th .sticky,
.miz-dtable.is-date thead td .sticky,
.miz-dtable.is-date thead th .sticky {
  display: none;
}
.miz-dtable.is-date tbody td:first-child > .miz-flex > span,
.miz-dtable.is-date tbody th:first-child > .miz-flex > span,
.miz-dtable.is-date thead td:first-child > .miz-flex > span,
.miz-dtable.is-date thead th:first-child > .miz-flex > span {
  justify-content: flex-end !important;
}
.miz-dtable.is-date tbody td > .miz-flex > span:first-child,
.miz-dtable.is-date tbody th > .miz-flex > span:first-child,
.miz-dtable.is-date thead td > .miz-flex > span:first-child,
.miz-dtable.is-date thead th > .miz-flex > span:first-child {
  margin-bottom: 16px;
}
.miz-dtable.is-date tbody td > .miz-flex > span:not(:first-child),
.miz-dtable.is-date tbody th > .miz-flex > span:not(:first-child),
.miz-dtable.is-date thead td > .miz-flex > span:not(:first-child),
.miz-dtable.is-date thead th > .miz-flex > span:not(:first-child) {
  border-top: 1px solid var(--miz-blue-grey-white);
  padding: 16px;
  margin: 0 -16px !important;
}
.miz-dtable.is-date tbody td > .miz-flex > span.collapse-content,
.miz-dtable.is-date tbody th > .miz-flex > span.collapse-content,
.miz-dtable.is-date thead td > .miz-flex > span.collapse-content,
.miz-dtable.is-date thead th > .miz-flex > span.collapse-content {
  background-color: var(--miz-primary-l7);
  display: none;
}
.miz-dtable.is-week thead tr th > .miz-flex {
  gap: 4px;
}
.miz-dtable.is-week thead tr th span {
  justify-content: center;
  margin: 0 !important;
  border: none !important;
  padding: 4px 16px !important;
}
@media (min-width: 992px) {
  .miz-dtable {
    min-width: 1024px;
  }
}
.miz-dtable tfoot,
.miz-dtable tbody {
  border-top: none !important;
  border-bottom: none !important;
}
@media (max-width: 991px) {
  .miz-dtable tfoot {
    display: none !important;
  }
}
.miz-dtable tfoot th:first-child span {
  justify-content: flex-end;
}
.miz-dtable tfoot th span.is-prefix {
  justify-content: space-between;
}
.miz-dtable tfoot th span.is-prefix:not(:last-child) {
  margin-bottom: 8px !important;
}
.miz-dtable tfoot th span.is-prefix span:first-child {
  margin-left: 0;
  justify-content: flex-start;
}
.miz-dtable tfoot th span.is-prefix i {
  color: var(--miz-blue-grey-light);
}
@media (min-width: 992px) {
  .miz-dtable thead th:not(:last-child),
  .miz-dtable tbody td:not(:last-child),
  .miz-dtable tfoot th:not(:last-child) {
    border-right: 1px solid var(--miz-blue-grey-white);
  }
  .miz-dtable thead th:not(:last-child).sun, .miz-dtable thead th:not(:last-child).sat, .miz-dtable thead th:not(:last-child).public-holiday,
  .miz-dtable tbody td:not(:last-child).sun,
  .miz-dtable tbody td:not(:last-child).sat,
  .miz-dtable tbody td:not(:last-child).public-holiday,
  .miz-dtable tfoot th:not(:last-child).sun,
  .miz-dtable tfoot th:not(:last-child).sat,
  .miz-dtable tfoot th:not(:last-child).public-holiday {
    border-bottom: 1px solid var(--miz-primary-l5);
  }
}
.miz-dtable thead th,
.miz-dtable tbody td,
.miz-dtable tfoot th {
  border-top: none !important;
}
@media (min-width: 992px) {
  .miz-dtable thead th,
  .miz-dtable tbody td,
  .miz-dtable tfoot th {
    box-shadow: inset 0 -1px 0 0 var(--miz-blue-grey-white);
    padding: 16px !important;
  }
}
.miz-dtable thead th span:not(.miz-badge),
.miz-dtable tbody td span:not(.miz-badge),
.miz-dtable tfoot th span:not(.miz-badge) {
  text-align: center;
  font-weight: 400;
  width: auto;
  margin: auto 0 auto auto;
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
}
.miz-dtable thead th span:not(.miz-badge):not(.miz-text-soft),
.miz-dtable tbody td span:not(.miz-badge):not(.miz-text-soft),
.miz-dtable tfoot th span:not(.miz-badge):not(.miz-text-soft) {
  font-weight: 500;
}
.miz-dtable thead th span:not(.miz-badge).is-prefix,
.miz-dtable tbody td span:not(.miz-badge).is-prefix,
.miz-dtable tfoot th span:not(.miz-badge).is-prefix {
  justify-content: space-between;
  margin-left: 0;
  width: 100%;
}
.miz-dtable thead th span:not(.miz-badge).is-prefix:not(:last-child),
.miz-dtable tbody td span:not(.miz-badge).is-prefix:not(:last-child),
.miz-dtable tfoot th span:not(.miz-badge).is-prefix:not(:last-child) {
  margin-bottom: 8px;
}
.miz-dtable thead th span:not(.miz-badge).is-prefix span:first-child,
.miz-dtable tbody td span:not(.miz-badge).is-prefix span:first-child,
.miz-dtable tfoot th span:not(.miz-badge).is-prefix span:first-child {
  margin-left: 0;
  justify-content: flex-start;
}
.miz-dtable thead th span:not(.miz-badge).is-prefix i,
.miz-dtable tbody td span:not(.miz-badge).is-prefix i,
.miz-dtable tfoot th span:not(.miz-badge).is-prefix i {
  color: var(--miz-blue-grey-light);
}
@media (max-width: 991px) {
  .miz-dtable thead th span:not(.miz-badge),
  .miz-dtable tbody td span:not(.miz-badge),
  .miz-dtable tfoot th span:not(.miz-badge) {
    background-color: transparent !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }
}
.miz-dtable thead th span:not(.miz-badge).data.currency, .miz-dtable thead th span:not(.miz-badge).collapse-content.currency,
.miz-dtable tbody td span:not(.miz-badge).data.currency,
.miz-dtable tbody td span:not(.miz-badge).collapse-content.currency,
.miz-dtable tfoot th span:not(.miz-badge).data.currency,
.miz-dtable tfoot th span:not(.miz-badge).collapse-content.currency {
  margin-left: 0;
  justify-content: space-between;
}
.miz-dtable thead th span:not(.miz-badge).data.currency span, .miz-dtable thead th span:not(.miz-badge).collapse-content.currency span,
.miz-dtable tbody td span:not(.miz-badge).data.currency span,
.miz-dtable tbody td span:not(.miz-badge).collapse-content.currency span,
.miz-dtable tfoot th span:not(.miz-badge).data.currency span,
.miz-dtable tfoot th span:not(.miz-badge).collapse-content.currency span {
  margin-left: 0;
}
@media (min-width: 992px) {
  .miz-dtable thead th.sun, .miz-dtable thead th.sat, .miz-dtable thead th.public-holiday,
  .miz-dtable tbody td.sun,
  .miz-dtable tbody td.sat,
  .miz-dtable tbody td.public-holiday,
  .miz-dtable tfoot th.sun,
  .miz-dtable tfoot th.sat,
  .miz-dtable tfoot th.public-holiday {
    background-color: var(--miz-primary-l7);
  }
}
@media (min-width: 992px) {
  .miz-dtable thead th {
    padding: 12px 26px 12px 16px !important;
  }
}
.miz-dtable thead th span {
  padding: 0;
  margin: 0 0 0 auto !important;
}
@media (min-width: 992px) {
  .miz-dtable tfoot th {
    padding: 12px 16px 12px 16px !important;
  }
}
.miz-dtable tfoot th span {
  padding: 0;
  margin: 0 0 0 auto !important;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .miz-dtable tbody tr.active,
  .miz-dtable thead tr.active {
    background-color: var(--miz-primary) !important;
    color: var(--miz-white-0) !important;
  }
  .miz-dtable tbody tr.active td,
  .miz-dtable thead tr.active td {
    padding-bottom: 0 !important;
  }
  .miz-dtable tbody tr.active td.datatable_labeling,
  .miz-dtable thead tr.active td.datatable_labeling {
    border-bottom: none;
    margin-left: -16px;
    margin-bottom: -16px;
  }
  .miz-dtable tbody tr.active .user-desc, .miz-dtable tbody tr.active .data,
  .miz-dtable thead tr.active .user-desc,
  .miz-dtable thead tr.active .data {
    height: 48px;
    margin-bottom: 16px;
  }
  .miz-dtable tbody tr.active .collapse-content,
  .miz-dtable thead tr.active .collapse-content {
    color: var(--miz-black-4) !important;
    display: flex !important;
    border-top: none !important;
  }
  .miz-dtable tbody tr.active .collapse-content.subtotal,
  .miz-dtable thead tr.active .collapse-content.subtotal {
    background-color: var(--miz-primary-l6) !important;
    color: var(--miz-black-3) !important;
    font-weight: 700 !important;
    border-bottom: 1px solid var(--miz-primary-l5) !important;
  }
  .miz-dtable tbody tr.active .collapse-content.subtotal-vs, .miz-dtable tbody tr.active .collapse-content.subtotal-inc,
  .miz-dtable thead tr.active .collapse-content.subtotal-vs,
  .miz-dtable thead tr.active .collapse-content.subtotal-inc {
    height: 52px;
  }
  .miz-dtable tbody tr.active .collapse-content.item,
  .miz-dtable thead tr.active .collapse-content.item {
    border-bottom: 1px solid var(--miz-primary-l5) !important;
    height: 52px;
    min-height: 52px;
    display: flex;
    justify-content: flex-end;
  }
  .miz-dtable tbody tr.active .collapse-content.item.not-number,
  .miz-dtable thead tr.active .collapse-content.item.not-number {
    justify-content: flex-start;
  }
  .miz-dtable tbody tr.active .collapse-content.is-double,
  .miz-dtable thead tr.active .collapse-content.is-double {
    flex-direction: column;
    height: 88px !important;
    justify-content: center !important;
  }
}
.miz-dtable tbody td .miz-button-outline,
.miz-dtable tbody th .miz-button-outline,
.miz-dtable thead td .miz-button-outline,
.miz-dtable thead th .miz-button-outline {
  background-color: var(--miz-white-0);
}
.miz-dtable tbody td .sticky,
.miz-dtable tbody th .sticky,
.miz-dtable thead td .sticky,
.miz-dtable thead th .sticky {
  display: none;
}
.miz-dtable tbody td:first-child > .miz-flex > span,
.miz-dtable tbody th:first-child > .miz-flex > span,
.miz-dtable thead td:first-child > .miz-flex > span,
.miz-dtable thead th:first-child > .miz-flex > span {
  justify-content: flex-end !important;
}
.miz-dtable tbody td .is-currency,
.miz-dtable tbody th .is-currency,
.miz-dtable thead td .is-currency,
.miz-dtable thead th .is-currency {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.miz-dtable tbody td .is-currency span,
.miz-dtable tbody th .is-currency span,
.miz-dtable thead td .is-currency span,
.miz-dtable thead th .is-currency span {
  margin: 0;
}
.miz-dtable tbody td > .miz-flex:not(.is-currency) > span:first-child,
.miz-dtable tbody th > .miz-flex:not(.is-currency) > span:first-child,
.miz-dtable thead td > .miz-flex:not(.is-currency) > span:first-child,
.miz-dtable thead th > .miz-flex:not(.is-currency) > span:first-child {
  /*margin-bottom: 16px;*/
}
.miz-dtable tbody td > .miz-flex:not(.is-currency) > span:not(:first-child),
.miz-dtable tbody th > .miz-flex:not(.is-currency) > span:not(:first-child),
.miz-dtable thead td > .miz-flex:not(.is-currency) > span:not(:first-child),
.miz-dtable thead th > .miz-flex:not(.is-currency) > span:not(:first-child) {
  border-top: 1px solid var(--miz-blue-grey-white);
  padding: 16px;
  margin: 0 -16px !important;
}
.miz-dtable tbody td > .miz-flex:not(.is-currency) > span.collapse-content,
.miz-dtable tbody th > .miz-flex:not(.is-currency) > span.collapse-content,
.miz-dtable thead td > .miz-flex:not(.is-currency) > span.collapse-content,
.miz-dtable thead th > .miz-flex:not(.is-currency) > span.collapse-content {
  background-color: var(--miz-primary-l7);
  display: none;
  height: 52px;
  min-height: 52px;
  width: auto;
}
.miz-dtable tbody tr {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
}
@media (min-width: 992px) {
  .miz-dtable tbody tr {
    display: table-row !important;
  }
}
.miz-dtable tbody tr td {
  display: grid !important;
  grid-template-columns: 128px 1fr !important;
}
@media (min-width: 992px) {
  .miz-dtable tbody tr td {
    display: table-cell !important;
  }
}
.miz-dtable tbody tr td .miz-badge {
  width: fit-content;
}
@media (min-width: 992px) {
  .miz-dtable tbody tr td .data-title {
    display: none;
  }
}
.miz-dtable tbody tr td.datatable_actions {
  grid-template-columns: 1fr !important;
}
.miz-dtable tbody tr.active td:first-child .collapse-content.is-double {
  align-items: flex-end !important;
}
@media (min-width: 992px) {
  .miz-dtable tbody tr:hover td.sun, .miz-dtable tbody tr:hover td.sat, .miz-dtable tbody tr:hover td.public-holiday {
    background-color: var(--miz-primary-l6);
  }
}
.miz-dtable thead th > .miz-flex {
  gap: 8px;
}
.miz-dtable .datatable_titling img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.miz-dtable .datatable_titling span {
  justify-content: flex-start !important;
  margin: 0 !important;
}
.miz-dtable-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 992px) {
  .miz-dtable-header {
    flex-direction: row;
  }
}
.miz-dtable-header-actions {
  display: none;
}
@media (min-width: 992px) {
  .miz-dtable-header-actions {
    display: flex;
    gap: 16px;
  }
}
.miz-dtable-header:not(.hrm-table-actionbar).miz-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .miz-dtable-header:not(.hrm-table-actionbar).miz-form-wrapper {
    flex-direction: row;
  }
}
.miz-dtable-header .hrm-table-actionbar.miz-form-wrapper:not(.is-advance):not(.is-basic) {
  padding: 0;
}
.miz-dtable-wrapper {
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: var(--miz-white-0);
  width: 100%;
  border-radius: 8px;
  border-width: 1px;
  border-color: var(--miz-blue-grey-white);
  border-style: solid;
  display: flex;
  flex-direction: column;
}
.miz-dtable-wrapper.has-controller {
  border-radius: 0 0 8px 8px;
}
@media (min-width: 992px) {
  .miz-dtable-wrapper.has-controller {
    border-radius: 0;
  }
}
.miz-dtable-actionbar {
  display: grid;
  width: 100%;
  gap: 16px;
  padding: 16px;
  position: relative;
}
.miz-dtable-actionbar .miz-form-controller {
  height: 48px;
  line-height: 48px;
}
.miz-dtable-actionbar .miz-form-controller-group {
  gap: 0;
}
.miz-dtable-actionbar .miz-select-container--default .miz-select-selection-single .miz-select-selection-rendered {
  height: 46px;
  line-height: 46px;
}
.miz-dtable-actionbar .miz-select-container--default .miz-select-selection-single .miz-select-selection-arrow {
  height: 46px;
  width: 46px;
}
.miz-dtable-actionbar .miz-select-container--default .miz-select-selection-single .miz-select-selection-clear {
  display: flex;
  align-items: center;
  height: 46px;
}
.miz-dtable-actionbar .miz-select-container--default .miz-select-selection-single .miz-select-selection-clear i {
  background-color: var(--miz-primary);
  color: var(--miz-white-0);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "time time time" "year year year" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) {
    grid-template-areas: "filter search search" "time time year" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) {
    grid-template-columns: 40px 1fr 320px 108px auto;
    grid-template-areas: "filter search time year button" "filtered filtered filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) {
    grid-template-columns: 400px 1fr 320px 108px auto;
    grid-template-areas: "filter search time year button" "filtered filtered filtered filtered filtered";
  }
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) .miz-dropdown-filter-button {
    display: none;
  }
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 164px 1fr;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar:not(.is-date, .is-simple, .is-search, .is-filter-search, .is-advance, .is-basic) .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-date {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "time time time" "date date date" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-date {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "time time date" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-date {
    grid-template-columns: 40px 1fr 320px 320px;
    grid-template-areas: "filter search time date" "button button button button" "filtered filtered filtered filtered";
  }
}
@media (min-width: 1600px) {
  .miz-dtable-actionbar.is-date {
    grid-template-columns: 40px 1fr 320px 320px auto;
    grid-template-areas: "filter search time date button" "filtered filtered filtered filtered filtered";
  }
}
@media (min-width: 1600px) {
  .miz-dtable-actionbar.is-date .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-month {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "time time time" "month month month" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-month {
    grid-template-areas: "filter search search" "time time month" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-month {
    grid-template-columns: 40px 1fr 320px 108px auto;
    grid-template-areas: "filter search time month button" "filtered filtered filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-dtable-actionbar.is-month {
    grid-template-columns: 400px 1fr 320px 164px auto;
    grid-template-areas: "filter search time month button" "filtered filtered filtered filtered filtered";
  }
  .miz-dtable-actionbar.is-month .miz-dropdown-filter-button {
    display: none;
  }
  .miz-dtable-actionbar.is-month .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-dtable-actionbar.is-month .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 164px 1fr;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-dtable-actionbar.is-month .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-month .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-simple {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "date date date" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-simple {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "date date date" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-simple {
    grid-template-columns: 40px 1fr 320px;
    grid-template-areas: "filter search date" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-dtable-actionbar.is-simple {
    grid-template-columns: 400px 1fr 320px auto;
    grid-template-areas: "filter search date button" "filtered filtered filtered filtered";
  }
  .miz-dtable-actionbar.is-simple .miz-dropdown-filter-button {
    display: none;
  }
  .miz-dtable-actionbar.is-simple .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-dtable-actionbar.is-simple .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 164px 1fr;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-dtable-actionbar.is-simple .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-simple .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-basic {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-basic {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-basic {
    grid-template-columns: 40px 1fr 320px;
    grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-dtable-actionbar.is-basic {
    grid-template-columns: 400px 1fr 320px auto;
    grid-template-areas: "filter search search button" "filtered filtered filtered filtered";
  }
  .miz-dtable-actionbar.is-basic .miz-dropdown-filter-button {
    display: none;
  }
  .miz-dtable-actionbar.is-basic .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-dtable-actionbar.is-basic .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 164px 1fr;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-dtable-actionbar.is-basic .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-basic .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-advance, .miz-dtable-actionbar.is-basic {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "search-bar search-bar" "search-button search-button";
  grid-column-gap: 0;
  grid-row-gap: 0;
  padding: 16px;
}
.miz-dtable-actionbar.is-advance *, .miz-dtable-actionbar.is-basic * {
  transition: 250ms;
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-advance, .miz-dtable-actionbar.is-basic {
    grid-template-areas: "search-bar search-button";
    grid-column-gap: 16px;
    grid-row-gap: 0;
  }
}
.miz-dtable-actionbar.is-advance.more-search, .miz-dtable-actionbar.is-basic.more-search {
  grid-template-areas: "search-bar search-bar" "search-actions search-actions" "search-button search-button";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-advance.more-search, .miz-dtable-actionbar.is-basic.more-search {
    grid-template-areas: "search-bar search-bar" "search-actions search-actions" "search-button search-button";
  }
}
.miz-dtable-actionbar.is-advance.more-search .advance-search,
.miz-dtable-actionbar.is-advance.more-search .basic-search, .miz-dtable-actionbar.is-basic.more-search .advance-search,
.miz-dtable-actionbar.is-basic.more-search .basic-search {
  gap: 0;
}
.miz-dtable-actionbar.is-advance.more-search .advance-search-actions,
.miz-dtable-actionbar.is-advance.more-search .basic-search-actions, .miz-dtable-actionbar.is-basic.more-search .advance-search-actions,
.miz-dtable-actionbar.is-basic.more-search .basic-search-actions {
  display: grid;
  padding: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
  border-bottom: 1px solid var(--miz-blue-grey-white);
  margin: 16px -16px 0;
}
.miz-dtable-actionbar.is-advance.more-search .advance-search-button,
.miz-dtable-actionbar.is-advance.more-search .basic-search-button, .miz-dtable-actionbar.is-basic.more-search .advance-search-button,
.miz-dtable-actionbar.is-basic.more-search .basic-search-button {
  padding-top: 16px;
  justify-content: flex-end;
}
.miz-dtable-actionbar.is-advance.more-search .advance-search-button .miz-button,
.miz-dtable-actionbar.is-advance.more-search .basic-search-button .miz-button, .miz-dtable-actionbar.is-basic.more-search .advance-search-button .miz-button,
.miz-dtable-actionbar.is-basic.more-search .basic-search-button .miz-button {
  height: 40px;
  line-height: 40px;
}
.miz-dtable-actionbar.is-advance.more-search .advance-search .is-search,
.miz-dtable-actionbar.is-advance.more-search .basic-search .is-search, .miz-dtable-actionbar.is-basic.more-search .advance-search .is-search,
.miz-dtable-actionbar.is-basic.more-search .basic-search .is-search {
  /*.miz-button
  {
      background-color: var(--miz-primary);
      color: var(--miz-white-0);

      &:hover
      {
          background-color: var(--miz-dark) !important;
      }
  }*/
}
.miz-dtable-actionbar.is-advance .filtered-item, .miz-dtable-actionbar.is-basic .filtered-item {
  margin-top: 16px;
}
.miz-dtable-actionbar .advance-search,
.miz-dtable-actionbar .basic-search {
  grid-area: search-bar;
  display: flex;
  flex-direction: row;
}
.miz-dtable-actionbar .advance-search .is-search,
.miz-dtable-actionbar .basic-search .is-search {
  width: 100%;
}
.miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner,
.miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner:before,
.miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner:before {
  font-family: "Material Design Icons";
  content: "\f0349";
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-form-controller,
.miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-form-controller {
  padding: 0 40px 0 40px;
}
@media (min-width: 768px) {
  .miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-form-controller,
  .miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-form-controller {
    padding: 0 208px 0 40px;
  }
}
.miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-button,
.miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  line-height: 32px;
  border-radius: 8px;
  gap: 8px;
  background-color: var(--miz-blue-grey-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-button,
  .miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-button {
    width: 184px;
  }
}
.miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-button span,
.miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-button span {
  display: none;
}
@media (min-width: 768px) {
  .miz-dtable-actionbar .advance-search .is-search .miz-form-controller-inner .miz-button span,
  .miz-dtable-actionbar .basic-search .is-search .miz-form-controller-inner .miz-button span {
    display: flex;
  }
}
.miz-dtable-actionbar .advance-search-actions,
.miz-dtable-actionbar .basic-search-actions {
  grid-area: search-actions;
  display: none;
  margin-top: 16px;
  gap: 16px;
}
.miz-dtable-actionbar .advance-search-button,
.miz-dtable-actionbar .basic-search-button {
  grid-area: search-button;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .miz-dtable-actionbar .advance-search-button,
  .miz-dtable-actionbar .basic-search-button {
    margin-top: 0;
    display: flex;
    flex-direction: row;
  }
}
.miz-dtable-actionbar .advance-search .is-button,
.miz-dtable-actionbar .basic-search .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar .advance-search .is-button,
  .miz-dtable-actionbar .basic-search .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar.is-filter-search {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-dtable-actionbar.is-filter-search {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-filter-search {
    grid-template-columns: 40px 1fr 320px;
    grid-template-areas: "filter search search" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-dtable-actionbar.is-filter-search {
    grid-template-columns: 640px 1fr 320px auto;
    grid-template-areas: "filter search search button" "filtered filtered filtered filtered";
  }
  .miz-dtable-actionbar.is-filter-search .miz-dropdown-filter-button {
    display: none;
  }
  .miz-dtable-actionbar.is-filter-search .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-dtable-actionbar.is-filter-search .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 184px 1fr 148px;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-dtable-actionbar.is-filter-search .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-dtable-actionbar.is-filter-search .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-dtable-actionbar .miz-form-controller-inner,
.miz-dtable-actionbar .miz-form-controller {
  width: 100%;
}
.miz-dtable-actionbar .is-filter {
  grid-area: filter;
}
.miz-dtable-actionbar .is-search {
  grid-area: search;
}
.miz-dtable-actionbar .is-search > .miz-button {
  padding: 0;
  width: 40px;
}
.miz-dtable-actionbar .is-time {
  grid-area: time;
}
.miz-dtable-actionbar .is-month {
  grid-area: month;
}
.miz-dtable-actionbar .is-date {
  grid-area: date;
}
.miz-dtable-actionbar .filtered-item {
  grid-area: filtered;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
.miz-dtable-actionbar .filtered-item button {
  padding: 8px 16px;
  background-color: var(--miz-primary);
  color: var(--miz-white-0);
  border-radius: 40px;
  font-size: 12px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.miz-dtable-actionbar .filtered-item button.clear {
  border: 1px solid var(--miz-blue-grey-white);
  background-color: var(--miz-white-0);
  color: var(--miz-primary);
}
.miz-dtable-actionbar .filtered-item button.clear:hover {
  background-color: var(--miz-blue-grey-white);
}
.miz-dtable-actionbar .filtered-item button:hover {
  background-color: var(--miz-dark);
}
.miz-dtable-actionbar .filtered-item button i {
  color: var(--miz-white-0);
}
.miz-dtable-actionbar .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
.miz-actionbar {
  display: grid;
  width: 100%;
  gap: 16px;
  padding: 16px;
  position: relative;
}
.miz-actionbar:not(.is-date, .is-simple), .miz-actionbar:not(.is-simple) {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "time time time" "year year year" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-actionbar:not(.is-date, .is-simple), .miz-actionbar:not(.is-simple) {
    grid-template-areas: "filter search search" "time time year" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-actionbar:not(.is-date, .is-simple), .miz-actionbar:not(.is-simple) {
    grid-template-columns: 40px 1fr 320px 108px auto;
    grid-template-areas: "filter search time year button" "filtered filtered filtered filtered filtered";
  }
}
@media (min-width: 1400px) {
  .miz-actionbar:not(.is-date, .is-simple), .miz-actionbar:not(.is-simple) {
    grid-template-columns: 400px 1fr 320px 108px auto;
    grid-template-areas: "filter search time year button" "filtered filtered filtered filtered filtered";
  }
  .miz-actionbar:not(.is-date, .is-simple) .miz-dropdown-filter-button, .miz-actionbar:not(.is-simple) .miz-dropdown-filter-button {
    display: none;
  }
  .miz-actionbar:not(.is-date, .is-simple) .miz-dropdown-filter .badge-notification, .miz-actionbar:not(.is-simple) .miz-dropdown-filter .badge-notification {
    display: none;
  }
  .miz-actionbar:not(.is-date, .is-simple) .miz-dropdown-filter-wrapper, .miz-actionbar:not(.is-simple) .miz-dropdown-filter-wrapper {
    display: grid;
    grid-template-columns: 164px 1fr;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.miz-actionbar:not(.is-date, .is-simple) .is-button, .miz-actionbar:not(.is-simple) .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
@media (min-width: 1200px) {
  .miz-actionbar:not(.is-date, .is-simple) .is-button, .miz-actionbar:not(.is-simple) .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-actionbar.is-date {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "time time time" "date date date" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-actionbar.is-date {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "time time date" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-actionbar.is-date {
    grid-template-columns: 40px 1fr 320px 320px;
    grid-template-areas: "filter search time date" "button button button button" "filtered filtered filtered filtered";
  }
}
@media (min-width: 1600px) {
  .miz-actionbar.is-date {
    grid-template-columns: 40px 1fr 320px 320px auto;
    grid-template-areas: "filter search time date button" "filtered filtered filtered filtered filtered";
  }
}
@media (min-width: 1600px) {
  .miz-actionbar.is-date .is-button {
    justify-content: flex-start;
    padding-top: 0;
    border-top: none;
  }
}
.miz-actionbar.is-simple {
  grid-template-columns: 40px auto auto;
  grid-template-areas: "filter search search" "date date date" "button button button" "filtered filtered filtered";
}
@media (min-width: 768px) {
  .miz-actionbar.is-simple {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-areas: "filter search search" "date date date" "button button button" "filtered filtered filtered";
  }
}
@media (min-width: 1200px) {
  .miz-actionbar.is-simple {
    grid-template-columns: 40px 1fr 320px;
    grid-template-areas: "filter search date" "button button button button" "filtered filtered filtered filtered";
  }
}
@media (min-width: 1600px) {
  .miz-actionbar.is-simple {
    grid-template-columns: 40px 1fr 320px auto;
    grid-template-areas: "filter search date button" "filtered filtered filtered filtered filtered";
  }
}
.miz-actionbar .miz-form-controller-inner,
.miz-actionbar .miz-form-controller {
  width: 100%;
}
.miz-actionbar .is-filter {
  grid-area: filter;
}
.miz-actionbar .is-search {
  grid-area: search;
}
.miz-actionbar .is-time {
  grid-area: time;
}
.miz-actionbar .is-year {
  grid-area: year;
}
.miz-actionbar .is-date {
  grid-area: date;
}
.miz-actionbar .filtered-item {
  grid-area: filtered;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
.miz-actionbar .filtered-item button {
  padding: 8px 16px;
  background-color: var(--miz-primary);
  color: var(--miz-white-0);
  border-radius: 40px;
  font-size: 12px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.miz-actionbar .filtered-item button.clear {
  border: 1px solid var(--miz-blue-grey-white);
  background-color: var(--miz-white-0);
  color: var(--miz-primary);
}
.miz-actionbar .filtered-item button.clear:hover {
  background-color: var(--miz-blue-grey-white);
}
.miz-actionbar .filtered-item button:hover {
  background-color: var(--miz-dark);
}
.miz-actionbar .filtered-item button i {
  color: var(--miz-white-0);
}
.miz-actionbar .is-button {
  grid-area: button;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--miz-blue-grey-white);
}
.miz-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}
.miz-wrapper .dataTables_wrapper {
  position: relative;
  height: 100%;
  display: block;
}
.miz-wrapper .dataTables_wrapper thead {
  position: relative;
}
.miz-wrapper .dataTables_scrollHeadInner,
.miz-wrapper .dataTables_scrollHeadInner .timesheet-table {
  width: 100% !important;
}
.miz-wrapper .dataTables_scrollBody thead {
  display: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/datatable/_common.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/datatable/_ordering.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/datatable/_processing.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/datatable/_typography.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/datatables.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/modules/_variables.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/functions/_spacing.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/functions/_border.scss%22,%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/functions/_flex.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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%22%7D */