/*
  @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 **/
#page-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
}
#page-pin .pin-device-filter {
  padding: 12px;
}
#page-pin .pin-device-filter #pin-device-select {
  width: 220px;
}
.theme-light #page-pin .pin-device-filter #pin-device-select option {
  background-color: var(--theme-theme-light-backgroundLight, #F9F4F5);
}

.theme-dark #page-pin .pin-device-filter #pin-device-select option {
  background-color: var(--theme-theme-dark-backgroundLight, #0d1f2d);
}

#page-pin .data-table {
  /* Always show the fold rows when folded out even on wider screens */
}
#page-pin .data-table .fold-row {
  display: table-row;
}
#page-pin .data-table .fold-row.hidden {
  display: none;
}
#page-pin .data-table .fold-row.last {
  height: 1em;
}
#page-pin .day-period {
  max-width: 480px;
}
#page-pin .day-period.filtered .total-registered {
  display: none;
}
#page-pin .long-period {
  max-width: 400px;
}
@media only screen and (min-width: 992px) {
  #page-pin .data-table .fold-row.last {
    height: 2.6em;
  }
  #page-pin .data-table .fold-row.action-row {
    display: none;
  }
}
#page-pin .edit-modal {
  --width: 380px;
}
#page-pin .edit-modal #pinId {
  max-width: 160px;
}
#page-pin .transactions .transactions-modal {
  --width: 95%;
}
.theme-light #page-pin .transactions .transactions-modal .body .data-row.invalid-payment, .theme-light #page-pin .transactions .transactions-modal .body .sub-headers.invalid-payment, .theme-light #page-pin .transactions .transactions-modal .body .total-row.invalid-payment {
  color: var(--theme-theme-light-textDarkNegative, #7B0922);
}

.theme-dark #page-pin .transactions .transactions-modal .body .data-row.invalid-payment, .theme-dark #page-pin .transactions .transactions-modal .body .sub-headers.invalid-payment, .theme-dark #page-pin .transactions .transactions-modal .body .total-row.invalid-payment {
  color: var(--theme-theme-dark-textDarkNegative, #FDB5B5);
}

#page-pin .transactions .transactions-modal .body .transactions-loading {
  width: 100%;
  height: 100%;
  text-align: center;
}
#page-pin .transactions .transactions-modal .body .transactions-loading.hidden {
  display: none;
}
#page-pin .transactions .transactions-modal .body .transactions-loading .sk-flow {
  margin: auto;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  #page-pin .transactions .transactions-modal {
    --width: 530px;
  }
}

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