@layer vuetify-components {
  .v-list-item {
    align-items: center;
    display: grid;
    flex: none;
    grid-template-areas: "prepend content append";
    grid-template-columns: max-content 1fr auto;
    outline: none;
    max-width: 100%;
    padding: 4px 16px;
    position: relative;
    text-decoration: none;
  }
  .v-list-item {
    border-color: rgba(var(--v-border-color), var(--v-border-opacity));
    border-style: solid;
    border-width: 0;
  }
  .v-list-item--border {
    border-width: thin;
    box-shadow: none;
  }
  .v-list-item:hover > .v-list-item__overlay {
    opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
  }
  .v-list-item:focus-visible > .v-list-item__overlay {
    opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
  }
  @supports not selector(:focus-visible) {
    .v-list-item:focus > .v-list-item__overlay {
      opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
    }
  }
  .v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
    opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
  }
  .v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
    opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
  }
  .v-list-item--active:focus-visible > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-list-item__overlay {
    opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
  }
  @supports not selector(:focus-visible) {
    .v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
      opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
    }
  }
  .v-list-item {
    border-radius: 0;
  }
  .v-list-item--variant-plain, .v-list-item--variant-outlined, .v-list-item--variant-text, .v-list-item--variant-tonal {
    background: transparent;
    color: inherit;
  }
  .v-list-item--variant-plain {
    opacity: 0.62;
  }
  .v-list-item--variant-plain:focus, .v-list-item--variant-plain:hover {
    opacity: 1;
  }
  .v-list-item--variant-plain .v-list-item__overlay {
    display: none;
  }
  .v-list-item--variant-elevated, .v-list-item--variant-flat {
    background: rgba(var(--v-theme-surface));
    color: color-mix(in srgb, rgb(var(--v-theme-on-surface)) calc(var(--v-high-emphasis-opacity) * 100%), transparent);
  }
  .v-list-item--variant-elevated {
    box-shadow: 0px 1px 2px 0px rgba(var(--v-shadow-color), var(--v-shadow-key-opacity, 0.3)), 0px 1px 3px 1px rgba(var(--v-shadow-color), var(--v-shadow-ambient-opacity, 0.15));
    --v-elevation-overlay: color-mix(in srgb, var(--v-elevation-overlay-color) 2%, transparent);
  }
  .v-list-item--variant-flat {
    box-shadow: 0px 0px 0px 0px rgba(var(--v-shadow-color), var(--v-shadow-key-opacity, 0.3)), 0px 0px 0px 0px rgba(var(--v-shadow-color), var(--v-shadow-ambient-opacity, 0.15));
    --v-elevation-overlay: color-mix(in srgb, var(--v-elevation-overlay-color) 0%, transparent);
  }
  .v-list-item--variant-outlined {
    border: thin solid currentColor;
  }
  .v-list-item--variant-text .v-list-item__overlay {
    background: currentColor;
  }
  .v-list-item--variant-tonal .v-list-item__underlay {
    background: currentColor;
    opacity: var(--v-activated-opacity);
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
  }
  .v-list-item .v-list-item__underlay {
    position: absolute;
  }
  .v-list-item--focus-visible .v-list-item__overlay {
    opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
  }
  @supports selector(:focus-visible) {
    .v-list-item::after {
      pointer-events: none;
      border: 2px solid currentColor;
      border-radius: 4px;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .v-list-item::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .v-list-item:focus-visible::after, .v-list-item--focus-visible::after {
      opacity: calc(0.15 * var(--v-theme-overlay-multiplier));
    }
  }
  .v-list-item__prepend > .v-badge .v-icon,
  .v-list-item__prepend > .v-icon, .v-list-item__append > .v-badge .v-icon,
  .v-list-item__append > .v-icon {
    opacity: var(--v-medium-emphasis-opacity);
  }
  .v-list-item--active .v-list-item__prepend > .v-badge .v-icon,
  .v-list-item--active .v-list-item__prepend > .v-icon,
  .v-list-item--active .v-list-item__append > .v-badge .v-icon,
  .v-list-item--active .v-list-item__append > .v-icon {
    opacity: 1;
  }
  .v-list-item--active:not(.v-list-item--link) .v-list-item__overlay {
    opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
  }
  .v-list-item--rounded {
    border-radius: 4px;
  }
  .v-list-item--disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
  }
  .v-list-item--link {
    cursor: pointer;
  }
  .v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item .v-avatar, .v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item .v-avatar {
    --v-avatar-height: 24px;
  }
  .v-list-item__prepend {
    align-items: center;
    align-self: center;
    display: flex;
    grid-area: prepend;
  }
  .v-list-item__prepend * ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap);
  }
  .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
  .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
  .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 32px);
  }
  .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer,
  .v-list-item__prepend > .v-badge:is(:has(.v-avatar)) ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 16px);
  }
  .v-list-item--slim .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 20px);
  }
  .v-list-item--slim .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__prepend > .v-badge:is(:has(.v-avatar)) ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 4px);
  }
  .v-list-item--slim .v-list-item__prepend > .v-list-item-action ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 4px);
  }
  .v-list-item--three-line .v-list-item__prepend {
    align-self: start;
  }
  .v-list-item__append {
    align-self: center;
    display: flex;
    align-items: center;
    grid-area: append;
  }
  .v-list-item__append .v-list-item__spacer {
    order: -1;
    transition: 150ms width cubic-bezier(0.4, 0, 0.2, 1);
  }
  .v-list-item__append * ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap);
  }
  .v-list-item__append > .v-badge ~ .v-list-item__spacer,
  .v-list-item__append > .v-icon ~ .v-list-item__spacer,
  .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 32px);
  }
  .v-list-item__append > .v-avatar ~ .v-list-item__spacer,
  .v-list-item__append > .v-badge:is(:has(.v-avatar)) ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 16px);
  }
  .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 16px);
  }
  .v-list-item--slim .v-list-item__append > .v-badge ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__append > .v-icon ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
    width: var(--v-list-slim-spacer-width, 20px);
  }
  .v-list-item--slim .v-list-item__append > .v-avatar ~ .v-list-item__spacer,
  .v-list-item--slim .v-list-item__append > .v-badge:is(:has(.v-avatar)) ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 4px);
  }
  .v-list-item--slim .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
    width: var(--v-list-prepend-gap, 4px);
  }
  .v-list-item--three-line .v-list-item__append {
    align-self: start;
  }
  .v-list-item__content {
    align-self: center;
    grid-area: content;
    overflow: hidden;
    min-width: 40px;
  }
  .v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item__content, .v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item__content {
    min-width: 0;
  }
  .v-list-item-action {
    align-self: center;
    display: flex;
    align-items: center;
    flex: none;
    transition: inherit;
    transition-property: height, width;
  }
  .v-list-item-action--start {
    margin-inline-end: 8px;
    margin-inline-start: -8px;
  }
  .v-list-item-action--end {
    margin-inline-start: 8px;
    margin-inline-end: -8px;
  }
  .v-list-item-media {
    margin-top: 0;
    margin-bottom: 0;
  }
  .v-list-item-media--start {
    margin-inline-end: 16px;
  }
  .v-list-item-media--end {
    margin-inline-start: 16px;
  }
  .v-list-item--two-line .v-list-item-media {
    margin-top: -4px;
    margin-bottom: -4px;
  }
  .v-list-item--three-line .v-list-item-media {
    margin-top: 0;
    margin-bottom: 0;
  }
  .v-list-item-subtitle {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    opacity: var(--v-list-item-subtitle-opacity, var(--v-medium-emphasis-opacity));
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    word-break: initial;
  }
  .v-list-item--one-line .v-list-item-subtitle {
    -webkit-line-clamp: 1;
  }
  .v-list-item--two-line .v-list-item-subtitle {
    -webkit-line-clamp: 2;
  }
  .v-list-item--three-line .v-list-item-subtitle {
    -webkit-line-clamp: 3;
  }
  .v-list-item-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.0178571429em;
    line-height: 1rem;
    text-transform: none;
  }
  .v-list-item--nav .v-list-item-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.0178571429em;
    line-height: 1rem;
  }
  .v-list-item-title {
    hyphens: auto;
    overflow-wrap: normal;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: normal;
    word-wrap: break-word;
  }
  .v-list-item-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.03125em;
    line-height: 1.5;
    text-transform: none;
  }
  .v-list-item--nav .v-list-item-title {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1rem;
  }
  .v-list-item--density-default {
    min-height: 40px;
  }
  .v-list-item--density-default.v-list-item--one-line {
    min-height: 48px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .v-list-item--density-default.v-list-item--two-line {
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .v-list-item--density-default.v-list-item--three-line {
    min-height: 88px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,
  .v-list-item--density-default.v-list-item--three-line .v-list-item__append {
    padding-top: 8px;
  }
  .v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
    padding-inline: 16px;
  }
  .v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line {
    padding-inline: 16px;
  }
  .v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line {
    padding-inline: 16px;
  }
  .v-list-item--density-comfortable {
    min-height: 36px;
  }
  .v-list-item--density-comfortable.v-list-item--one-line {
    min-height: 44px;
  }
  .v-list-item--density-comfortable.v-list-item--two-line {
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .v-list-item--density-comfortable.v-list-item--three-line {
    min-height: 84px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,
  .v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append {
    padding-top: 6px;
  }
  .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line {
    padding-inline: 16px;
  }
  .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line {
    padding-inline: 16px;
  }
  .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line {
    padding-inline: 16px;
  }
  .v-list-item--density-compact {
    min-height: 32px;
  }
  .v-list-item--density-compact.v-list-item--one-line {
    min-height: 40px;
  }
  .v-list-item--density-compact.v-list-item--two-line {
    min-height: 56px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .v-list-item--density-compact.v-list-item--three-line {
    min-height: 80px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,
  .v-list-item--density-compact.v-list-item--three-line .v-list-item__append {
    padding-top: 4px;
  }
  .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line {
    padding-inline: 16px;
  }
  .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line {
    padding-inline: 16px;
  }
  .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line {
    padding-inline: 16px;
  }
  .v-list-item--nav {
    padding-inline: 8px;
  }
  .v-list-item__underlay {
    position: absolute;
  }
  .v-list-item__overlay {
    background-color: currentColor;
    border-radius: inherit;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.2s ease-in-out;
    transition-property: opacity, color;
  }
  .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
    --v-theme-overlay-multiplier: 0;
  }
  .v-list {
    --indent-padding: 0px;
  }
  .v-list--nav {
    --indent-padding: -8px;
  }
  .v-list-group {
    --list-indent-size: 16px;
    --parent-padding: var(--indent-padding);
    --prepend-width: var(--v-list-group-prepend, 40px);
  }
  .v-list--slim .v-list-group {
    --prepend-width: var(--v-list-group-prepend, 28px);
  }
  .v-list-group--fluid {
    --list-indent-size: 0px;
  }
  .v-list-group--prepend {
    --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
  }
  .v-list-group--fluid.v-list-group--prepend {
    --parent-padding: var(--indent-padding);
  }
  .v-list-group__items {
    --indent-padding: calc(var(--parent-padding) + var(--v-list-indent, var(--list-indent-size)));
    min-width: min-content;
  }
  .v-navigation-drawer--rail .v-list-group__items {
    min-width: 0;
  }
}
@layer vuetify-overrides {
  .v-list-group__items .v-list-item {
    padding-inline-start: calc(16px + var(--indent-padding));
  }
}
@layer vuetify-components {
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
    opacity: 0;
  }
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
    opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
  }
}
@layer vuetify-final.trumps {
  @media (forced-colors: active) {
    .v-list-item--link:not(.v-list-item--active) {
      color: buttontext;
    }
    .v-list-item--link[href]:not(.v-list-item--active) {
      color: unset;
    }
    .v-list-item--active:not(.v-list-item--disabled) [class*=v-list-item-],
    .v-list-item--active:not(.v-list-item--disabled) [class*=v-list-item-] > *,
    .v-list-item--active:not(.v-list-item--disabled) .v-icon {
      color: highlight;
    }
    .v-list-item--active:not(.v-list-item--variant-text, .v-list-item--variant-plain):not(.v-list-item--disabled) {
      background: highlight;
    }
    .v-list-item--active:not(.v-list-item--variant-text, .v-list-item--variant-plain):not(.v-list-item--disabled) [class*=v-list-item-],
    .v-list-item--active:not(.v-list-item--variant-text, .v-list-item--variant-plain):not(.v-list-item--disabled) [class*=v-list-item-] > *,
    .v-list-item--active:not(.v-list-item--variant-text, .v-list-item--variant-plain):not(.v-list-item--disabled) .v-icon {
      opacity: 1;
      color: highlighttext;
      forced-color-adjust: preserve-parent-color;
    }
    .v-list-item--focus-visible::after {
      opacity: 1;
    }
    @supports selector(:focus-visible) {
      .v-list-item::after {
        color: buttontext;
      }
      .v-list-item:focus-visible::after {
        opacity: 1;
      }
    }
  }
}