/*
  @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 **/
#toast-container {
  position: fixed;
  bottom: 64px;
  width: 100%;
  z-index: 101;
}
#toast-container .toast {
  width: 80%;
  max-width: 260px;
  text-align: center;
  font-weight: bold;
  padding: 12px;
  margin: 12px auto;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.32) 4px 4px 10px 2px;
  color: rgb(40, 40, 40);
}
.theme-light #toast-container .toast.success {
  color: var(--theme-theme-light-textSuccess, #000000);
}

.theme-dark #toast-container .toast.success {
  color: var(--theme-theme-dark-textSuccess, #000000);
}

.theme-light #toast-container .toast.success {
  background-color: var(--theme-theme-light-success, #4CC898);
}

.theme-dark #toast-container .toast.success {
  background-color: var(--theme-theme-dark-success, #4CC898);
}

.theme-light #toast-container .toast.error {
  color: var(--theme-theme-light-textFail, #000000);
}

.theme-dark #toast-container .toast.error {
  color: var(--theme-theme-dark-textFail, #000000);
}

.theme-light #toast-container .toast.error {
  background-color: var(--theme-theme-light-fail, #F89BAF);
}

.theme-dark #toast-container .toast.error {
  background-color: var(--theme-theme-dark-fail, #F89BAF);
}

#toast-container .toast.fnt-sml {
  font-size: 1em;
}
@media only screen and (min-width: 576px) {
  #toast-container {
    top: 0px;
    right: 0px;
    width: auto;
    bottom: initial;
  }
  #toast-container .toast {
    width: 260px;
    text-align: left;
    margin: 12px;
  }
}

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