@layer vuetify-components {
  .v-menu > .v-overlay__content {
    display: flex;
    flex-direction: column;
  }
  .v-menu > .v-overlay__content {
    border-radius: 7px;
  }
  .v-menu > .v-overlay__content > .v-card,
  .v-menu > .v-overlay__content > .v-sheet,
  .v-menu > .v-overlay__content > .v-list {
    background: rgb(var(--v-theme-surface));
    border-radius: inherit;
    overflow: auto;
    height: 100%;
  }
  .v-menu > .v-overlay__content > .v-card,
  .v-menu > .v-overlay__content > .v-sheet,
  .v-menu > .v-overlay__content > .v-list {
    box-shadow: 0px 1px 3px 0px rgba(var(--v-shadow-color), var(--v-shadow-key-opacity, 0.3)), 0px 4px 8px 3px rgba(var(--v-shadow-color), var(--v-shadow-ambient-opacity, 0.15));
    --v-elevation-overlay: color-mix(in srgb, var(--v-elevation-overlay-color) 6%, transparent);
  }
}@layer vuetify-components {
  .v-sheet {
    display: block;
  }
  .v-sheet {
    border-color: rgba(var(--v-border-color), var(--v-border-opacity));
    border-style: solid;
    border-width: 0;
  }
  .v-sheet--border {
    border-width: thin;
    box-shadow: none;
  }
  .v-sheet {
    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-sheet--absolute {
    position: absolute;
  }
  .v-sheet--fixed {
    position: fixed;
  }
  .v-sheet--relative {
    position: relative;
  }
  .v-sheet--sticky {
    position: sticky;
  }
  .v-sheet {
    border-radius: 0;
  }
  .v-sheet {
    background: rgb(var(--v-theme-surface));
    color: color-mix(in srgb, rgb(var(--v-theme-on-surface)) calc(var(--v-high-emphasis-opacity) * 100%), transparent);
  }
  .v-sheet--rounded {
    border-radius: 7px;
  }
}