@charset "UTF-8";
/*
  @mixin theme($property, $key, $inlineExtra:null, $postExtra:null)
  Assigns a property a theme value for each defined theme.
Example usage:
    .mySelector {
      padding: 6px;
      @include theme(background-color, backgroundLight);
      @include theme(border, borderDark, 1px solid);
    }
sass generated equivalent:
    .mySelector {
      padding: 6px;
      :global(.light) & {
        border: 1px solid color(woodsmoke);
        border: 1px solid var(--theme-light-borderDark, color(woodsmoke));
      }
      :global(.light) & {
        background-color: color(alabaster);
        background-color: var(--theme-light-backgroundLight, color(alabaster));
      }
      :global(.dark) & {
        border: 1px solid color(alabaster);
        border: 1px solid var(--theme-dark-borderDark, color(alabaster));
      }
      :global(.dark) & {
        background-color: color(woodsmoke);
        background-color: var(--theme-dark-backgroundLight, color(woodsmoke));
      }
    }
browser output:
    .mySelector {
      padding: 6px;
    }
    .light .mySelector {
      border: 1px solid #141519;
      border: 1px solid var(--theme-light-borderDark, #141519);
    }
    .light .mySelector {
      background-color: #FCFCFC;
      background-color: var(--theme-light-backgroundLight, #FCFCFC);
    }
    .dark .mySelector {
      border: 1px solid #FCFCFC;
      border: 1px solid var(--theme-dark-borderDark, #FCFCFC);
    }
    .dark .mySelector {
      background-color: #141519;
      background-color: var(--theme-dark-backgroundLight, #141519);
    }
*/
/*
  @mixin generateThemeMappings(themeName: string, themeMap: map)
  helper function for generating list of theme variables and adding to existing map.
  This will add a new theme to the themes array and the theme color list.
*/
/*
  @mixin generateThemeVariables
  Auto-generates the entire list of theme variables for use in var() statements.
  Really should only be called in the html selector at the app root.
*/
/** this section generates a theme map for each theme **/
/** end theme generation **/
.data-table {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}
.data-table .main-header {
  text-align: center;
  line-height: 3em;
}
.data-table .sub-headers {
  font-weight: bold;
}
.data-table .sub-headers td {
  max-width: 0;
  width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table .sub-headers .employeeID {
  width: 0;
  min-width: 24px;
}
.data-table .sub-headers .name {
  min-width: 80px;
}
.data-table .sub-headers .day {
  min-width: 40px;
}
.data-table .sub-headers .date {
  min-width: 130px;
}
.data-table .sub-headers .amount {
  width: 0;
  min-width: 60px;
  text-align: right;
}
.data-table .sub-headers .count {
  min-width: 48px;
  text-align: right;
}
.data-table .sub-headers .percentage {
  min-width: 40px;
  text-align: right;
}
.data-table .sub-headers .issuer {
  min-width: 80px;
}
.data-table .sub-headers .payment-type {
  min-width: 50px;
}
@media only screen and (min-width: 576px) {
  .data-table .sub-headers .payment-type {
    min-width: 110px;
  }
}
.data-table .sub-headers .reason {
  min-width: 30px;
  width: auto;
}
.data-table .sub-headers .company-name {
  min-width: 120px;
}
@media only screen and (min-width: 576px) {
  .data-table .sub-headers .company-name {
    min-width: 180px;
  }
}
.data-table .sub-headers .action-buttons {
  min-width: 40px;
  display: none;
}
.data-table .sub-headers .sort-asc:after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d8";
  float: right;
  padding-left: 3px;
}
.data-table .sub-headers .sort-desc:after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d7";
  float: right;
  padding-left: 3px;
}
.data-table td {
  /* 7px is the max for the total page table */
  padding: 0 7px;
  word-wrap: break-word;
}
.data-table thead tr {
  height: 2em;
}
.data-table .data-row {
  height: 3em;
}
.data-table .data-row .action-buttons, .data-table .sub-headers .action-buttons {
  width: 0;
  display: none;
}
.data-table .data-row .action-buttons .action-button-container, .data-table .sub-headers .action-buttons .action-button-container {
  width: 40px;
  display: flex;
}
.data-table .data-row .action-buttons .action-button-container button, .data-table .sub-headers .action-buttons .action-button-container button {
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
}
.theme-light .data-table .data-row .action-buttons .action-button-container button, .theme-light .data-table .sub-headers .action-buttons .action-button-container button {
  color: var(--theme-theme-light-textDark, #000000);
}

.theme-dark .data-table .data-row .action-buttons .action-button-container button, .theme-dark .data-table .sub-headers .action-buttons .action-button-container button {
  color: var(--theme-theme-dark-textDark, #EEEEEE);
}

.theme-light .data-table tbody .data-row {
  border-top: 0.01em solid var(--theme-theme-light-tableBorder, #6e6e6e);
}

.theme-dark .data-table tbody .data-row {
  border-top: 0.01em solid var(--theme-theme-dark-tableBorder, #727171);
}

.theme-light .data-table tbody .data-row:hover {
  background-color: var(--theme-theme-light-highlight, rgba(0, 0, 0, 0.05));
}

.theme-dark .data-table tbody .data-row:hover {
  background-color: var(--theme-theme-dark-highlight, rgba(255, 255, 255, 0.05));
}

.data-table tbody .data-row.no-entries {
  border-top: none;
}
.data-table .fold-row td.value {
  display: table-cell !important;
}
.data-table .fold-row.last {
  height: 2.6em;
  vertical-align: top;
}
.data-table .fold-row .value {
  display: table-cell;
}
.data-table .fold-row .header {
  font-weight: bold;
  padding-top: 6px;
  padding-left: 12px;
}
.data-table .fold-row .action-buttons .action-button-container {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
}
.data-table .action-button-row .action-button-container {
  display: flex;
  justify-content: center;
}
.data-table tbody .name, .data-table tfoot .name {
  max-width: 0; /* Prevent it from expending infinetly */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table tbody .amount, .data-table tbody .count, .data-table tbody .percentage, .data-table tfoot .amount, .data-table tfoot .count, .data-table tfoot .percentage {
  text-align: right;
}
.theme-light .data-table tbody .diff.positive, .theme-light .data-table tbody .relative-diff.positive, .theme-light .data-table tfoot .diff.positive, .theme-light .data-table tfoot .relative-diff.positive {
  color: var(--theme-theme-light-textDarkPositive, #144231);
}

.theme-dark .data-table tbody .diff.positive, .theme-dark .data-table tbody .relative-diff.positive, .theme-dark .data-table tfoot .diff.positive, .theme-dark .data-table tfoot .relative-diff.positive {
  color: var(--theme-theme-dark-textDarkPositive, #b1cc74);
}

.theme-light .data-table tbody .diff.negative, .theme-light .data-table tbody .relative-diff.negative, .theme-light .data-table tfoot .diff.negative, .theme-light .data-table tfoot .relative-diff.negative {
  color: var(--theme-theme-light-textDarkNegative, #7B0922);
}

.theme-dark .data-table tbody .diff.negative, .theme-dark .data-table tbody .relative-diff.negative, .theme-dark .data-table tfoot .diff.negative, .theme-dark .data-table tfoot .relative-diff.negative {
  color: var(--theme-theme-dark-textDarkNegative, #FDB5B5);
}

.data-table tbody .company-name, .data-table tfoot .company-name {
  max-width: 0; /* Prevent it from expending infinetly */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table tbody .issuer, .data-table tfoot .issuer {
  max-width: 0; /* Prevent it from expending infinetly */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table tbody .payment-type, .data-table tfoot .payment-type {
  max-width: 0; /* Prevent it from expending infinetly */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table tbody .reason, .data-table tfoot .reason {
  max-width: 580px; /* Prevent it from expending infinetly */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table tbody .date-row, .data-table tfoot .date-row {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  height: 3em;
  vertical-align: bottom;
}
.data-table tbody .sub-headers, .data-table tfoot .sub-headers {
  height: 3em;
}
.data-table tbody .no-entries, .data-table tfoot .no-entries {
  text-align: center;
  border: none;
}
.data-table tfoot .data-row {
  font-weight: bold;
}
.theme-light .data-table tfoot .data-row {
  border-top: 4px double var(--theme-theme-light-tableBorder, #6e6e6e);
}

.theme-dark .data-table tfoot .data-row {
  border-top: 4px double var(--theme-theme-dark-tableBorder, #727171);
}

.data-table.show-euro .sub-headers .amount {
  min-width: 84px;
}
.data-table.show-euro tbody .amount, .data-table.show-euro tfoot .amount {
  padding-left: 12px;
}
.data-table.show-euro tbody .amount:before, .data-table.show-euro tfoot .amount:before {
  content: "€";
  float: left;
  padding-right: 4px;
}
.data-table.show-euro tbody .amount.zero:before, .data-table.show-euro tfoot .amount.zero:before {
  content: "";
}
@media only screen and (min-width: 992px) {
  .data-table .data-row .action-buttons, .data-table .sub-headers .action-buttons, .data-table .total-row .action-buttons {
    display: table-cell;
  }
  .data-table .fold-row {
    display: none;
  }
}

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