/*
  @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 **/
.auto-complete-option-container {
  display: none;
  position: fixed;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.theme-light .auto-complete-option-container {
  background-color: var(--theme-theme-light-backgroundLight, #F9F4F5);
}

.theme-dark .auto-complete-option-container {
  background-color: var(--theme-theme-dark-backgroundLight, #0d1f2d);
}

.theme-light .auto-complete-option-container {
  color: var(--theme-theme-light-textDark, #000000);
}

.theme-dark .auto-complete-option-container {
  color: var(--theme-theme-dark-textDark, #EEEEEE);
}

.theme-light .auto-complete-option-container {
  box-shadow: 2px 2px 5px 0px var(--theme-theme-light-shadow, rgba(0, 0, 0, 0.3));
}

.theme-dark .auto-complete-option-container {
  box-shadow: 2px 2px 5px 0px var(--theme-theme-dark-shadow, rgba(0, 0, 0, 0.3));
}

.auto-complete-option-container::-webkit-scrollbar {
  display: none;
}
.auto-complete-option-container li {
  padding: 3px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.theme-light .auto-complete-option-container li:hover, .theme-light .auto-complete-option-container li.focus {
  background-color: var(--theme-theme-light-primary, #124e78);
}

.theme-dark .auto-complete-option-container li:hover, .theme-dark .auto-complete-option-container li.focus {
  background-color: var(--theme-theme-dark-primary, #1985a1);
}

.theme-light .auto-complete-option-container li:hover, .theme-light .auto-complete-option-container li.focus {
  color: var(--theme-theme-light-textLight, #FFFFFF);
}

.theme-dark .auto-complete-option-container li:hover, .theme-dark .auto-complete-option-container li.focus {
  color: var(--theme-theme-dark-textLight, #FFFFFF);
}

.auto-complete-option-container.open {
  display: block;
}

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