/**
 * The default transition, used when the element is visible
 * since the beginning of the animation
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The enter transition, used when the element is not visible on the screen
 * since the beginning of the animation and become visible
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The leave transition, used when the element is visible on the screen
 * since the beginning of the animation and is removed
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The stand transition, used when the element is going to accelerate,
 * like movements from bottom to top
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The out transition, used when the element is going to deaccelerate,
 * like movements from top to bottom
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The elevation transition duration
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The layout system breakpoints
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * The available gutter sizes
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * Breakpoint
 */
/**
 * Base
 */
/**
 * Layout Item
 */
/**
 * Hide Element
 */
.md-list .md-autocomplete-items .md-highlight-text-match {
  color: var(--md-primary);
}
.md-list .md-autocomplete-loading {
  font-size: 24px;
  color: var(--md-primary, color);
  background-color: var(--md-outline);
  opacity: 0.38;
}

.md-autocomplete.md-autocomplete-box {
  background-color: var(--md-surface);
}
.md-autocomplete.md-autocomplete-box.md-focused label {
  color: var(--md-text-on-surface-medium);
}
.md-toolbar .md-autocomplete.md-autocomplete-box {
  background-color: rgba(255, 255, 255, 0.12);
}
.md-toolbar .md-autocomplete.md-autocomplete-box.md-focused {
  background-color: var(--md-elevation-6);
}
.md-toolbar .md-autocomplete.md-autocomplete-box.md-focused label,
.md-toolbar .md-autocomplete.md-autocomplete-box.md-focused input {
  color: var(--md-on-surface);
}

.md-autocomplete-box-content::after {
  background-color: var(--md-surface);
  border-bottom-color: var(--md-outline);
}

.md-autocomplete .md-menu {
  width: 100%;
  display: flex;
}

.md-autocomplete-loading {
  max-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.md-field.md-inline.md-autocomplete-box {
  background-color: var(--md-elevation-2);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding-top: 2px;
  border-radius: 2px;
  align-items: center;
}
.md-field.md-inline.md-autocomplete-box.md-focused {
  z-index: 100;
}
.md-field.md-inline.md-autocomplete-box::before, .md-field.md-inline.md-autocomplete-box::after {
  display: none;
}
.md-toolbar .md-field.md-inline.md-autocomplete-box {
  min-height: 40px;
  height: 40px;
  margin: 0;
  box-shadow: none;
}
.md-field.md-inline.md-autocomplete-box .md-menu {
  align-items: center;
}
.md-field.md-inline.md-autocomplete-box .md-input {
  padding-left: 16px;
}
.md-field.md-inline.md-autocomplete-box.md-focused label,
.md-field.md-inline.md-autocomplete-box label,
.md-field.md-inline.md-autocomplete-box .md-input-action {
  top: 50%;
  transform: translateY(-50%);
}
.md-field.md-inline.md-autocomplete-box .md-input-action {
  right: 8px;
}
.md-field.md-inline.md-autocomplete-box.md-focused label,
.md-field.md-inline.md-autocomplete-box label {
  margin-top: 2px;
  left: 16px;
}

.md-autocomplete-box-content::after {
  height: 6px;
  position: absolute;
  top: -6px;
  right: 0;
  left: 0;
  z-index: 120;
  border-bottom: 1px solid;
  content: "";
}