.v-radio-group>.v-input__control {
    flex-direction: column
}

.v-radio-group>.v-input__control>.v-label {
    margin-inline-start: 16px
}

.v-radio-group>.v-input__control>.v-label+.v-selection-control-group {
    padding-inline-start: 6px;
    margin-top: 8px
}

.v-radio-group .v-input__details {
    padding-inline: 16px
}

.v-input {
    display: grid;
    flex: 1 1 auto;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.v-input--disabled {
    pointer-events: none
}

.v-input--density-default {
    --v-input-control-height: 56px;
    --v-input-padding-top: 16px
}

.v-input--density-comfortable {
    --v-input-control-height: 48px;
    --v-input-padding-top: 12px
}

.v-input--density-compact {
    --v-input-control-height: 40px;
    --v-input-padding-top: 8px
}

.v-input--vertical {
    grid-template-areas: "append" "control" "prepend";
    grid-template-rows: max-content auto max-content;
    grid-template-columns: min-content
}

.v-input--vertical .v-input__prepend {
    margin-block-start: 16px
}

.v-input--vertical .v-input__append {
    margin-block-end: 16px
}

.v-input--horizontal {
    grid-template-areas: "prepend control append" "a messages b";
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    grid-template-rows: auto auto
}

.v-input--horizontal .v-input__prepend {
    margin-inline-end: 16px
}

.v-input--horizontal .v-input__append {
    margin-inline-start: 16px
}

.v-input__details {
    align-items: flex-end;
    display: flex;
    font-size: .75rem;
    font-weight: 400;
    grid-area: messages;
    letter-spacing: .0333333333em;
    line-height: normal;
    min-height: 22px;
    padding-top: 6px;
    overflow: hidden;
    justify-content: space-between
}

.v-input__append>.v-icon,
.v-input__details>.v-icon,
.v-input__prepend>.v-icon {
    opacity: var(--v-medium-emphasis-opacity)
}

.v-input--disabled .v-input__append .v-messages,
.v-input--disabled .v-input__append>.v-icon,
.v-input--disabled .v-input__details .v-messages,
.v-input--disabled .v-input__details>.v-icon,
.v-input--disabled .v-input__prepend .v-messages,
.v-input--disabled .v-input__prepend>.v-icon,
.v-input--error .v-input__append .v-messages,
.v-input--error .v-input__append>.v-icon,
.v-input--error .v-input__details .v-messages,
.v-input--error .v-input__details>.v-icon,
.v-input--error .v-input__prepend .v-messages,
.v-input--error .v-input__prepend>.v-icon {
    opacity: 1
}

.v-input--disabled .v-input__append,
.v-input--disabled .v-input__details,
.v-input--disabled .v-input__prepend {
    opacity: var(--v-disabled-opacity)
}

.v-input--error:not(.v-input--disabled) .v-input__append .v-messages,
.v-input--error:not(.v-input--disabled) .v-input__append>.v-icon,
.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,
.v-input--error:not(.v-input--disabled) .v-input__details>.v-icon,
.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,
.v-input--error:not(.v-input--disabled) .v-input__prepend>.v-icon {
    color: rgb(var(--v-theme-error))
}

.v-input__append,
.v-input__prepend {
    display: flex;
    align-items: flex-start;
    padding-top: var(--v-input-padding-top)
}

.v-input--center-affix .v-input__append,
.v-input--center-affix .v-input__prepend {
    align-items: center;
    padding-top: 0
}

.v-input__prepend {
    grid-area: prepend
}

.v-input__append {
    grid-area: append
}

.v-input__control {
    display: flex;
    grid-area: control
}

.v-input--hide-spin-buttons input::-webkit-inner-spin-button,
.v-input--hide-spin-buttons input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.v-input--hide-spin-buttons input[type=number] {
    -moz-appearance: textfield
}

.v-input--plain-underlined .v-input__append,
.v-input--plain-underlined .v-input__prepend {
    align-items: flex-start
}

.v-input--density-default.v-input--plain-underlined .v-input__append,
.v-input--density-default.v-input--plain-underlined .v-input__prepend {
    padding-top: calc(var(--v-input-padding-top) + 4px)
}

.v-input--density-comfortable.v-input--plain-underlined .v-input__append,
.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend {
    padding-top: calc(var(--v-input-padding-top) + 2px)
}

.v-input--density-compact.v-input--plain-underlined .v-input__append,
.v-input--density-compact.v-input--plain-underlined .v-input__prepend {
    padding-top: calc(var(--v-input-padding-top))
}

.v-messages {
    flex: 1 1 auto;
    font-size: 12px;
    min-height: 14px;
    min-width: 1px;
    opacity: var(--v-medium-emphasis-opacity);
    position: relative
}

.v-messages__message {
    line-height: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    transition-duration: .15s
}

.v-selection-control-group {
    grid-area: control;
    display: flex;
    flex-direction: column
}

.v-selection-control-group--inline {
    flex-direction: row;
    flex-wrap: wrap
}

.v-selection-control {
    align-items: center;
    contain: layout;
    display: flex;
    flex: 1 0;
    grid-area: control;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.v-selection-control .v-label {
    white-space: normal;
    word-break: break-word;
    height: 100%
}

.v-selection-control--disabled {
    opacity: var(--v-disabled-opacity);
    pointer-events: none
}

.v-selection-control--disabled .v-label,
.v-selection-control--error .v-label {
    opacity: 1
}

.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
    color: rgb(var(--v-theme-error))
}

.v-selection-control--inline {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%
}

.v-selection-control--inline .v-label {
    width: auto
}

.v-selection-control--density-default {
    --v-selection-control-size: 40px
}

.v-selection-control--density-comfortable {
    --v-selection-control-size: 36px
}

.v-selection-control--density-compact {
    --v-selection-control-size: 28px
}

.v-selection-control__wrapper {
    display: inline-flex
}

.v-selection-control__input,
.v-selection-control__wrapper {
    width: var(--v-selection-control-size);
    height: var(--v-selection-control-size);
    align-items: center;
    position: relative;
    justify-content: center;
    flex: none
}

.v-selection-control__input {
    display: flex;
    border-radius: 50%
}

.v-selection-control__input input {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.v-selection-control__input:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: currentColor;
    opacity: 0;
    pointer-events: none
}

.v-selection-control__input:hover:before {
    opacity: calc(var(--v-hover-opacity)*var(--v-theme-overlay-multiplier))
}

.v-selection-control__input>.v-icon {
    opacity: var(--v-medium-emphasis-opacity)
}

.v-selection-control--dirty .v-selection-control__input>.v-icon,
.v-selection-control--disabled .v-selection-control__input>.v-icon,
.v-selection-control--error .v-selection-control__input>.v-icon {
    opacity: 1
}

.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input>.v-icon {
    color: rgb(var(--v-theme-error))
}

.v-selection-control--focus-visible .v-selection-control__input:before {
    opacity: calc(var(--v-focus-opacity)*var(--v-theme-overlay-multiplier))
}

.v-label {
    align-items: center;
    color: inherit;
    display: inline-flex;
    font-size: 1rem;
    letter-spacing: .009375em;
    min-width: 0;
    opacity: var(--v-medium-emphasis-opacity);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.v-label--clickable {
    cursor: pointer
}

.v-infinite-scroll--horizontal {
    display: flex;
    flex-direction: row;
    overflow-x: auto
}

.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
    height: 100%;
    width: 1px
}

.v-infinite-scroll--vertical {
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
    height: 1px;
    width: 100%
}

.v-infinite-scroll__side {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 8px
}

.v-alert {
    display: grid;
    flex: 1 1;
    grid-template-areas: "prepend content append close" ". content . .";
    grid-template-columns: max-content auto max-content max-content;
    position: relative;
    padding: 16px;
    overflow: hidden;
    --v-border-color: currentColor;
    border-radius: 4px
}

.v-alert--absolute {
    position: absolute
}

.v-alert--fixed {
    position: fixed
}

.v-alert--sticky {
    position: sticky
}

.v-alert--variant-outlined,
.v-alert--variant-plain,
.v-alert--variant-text,
.v-alert--variant-tonal {
    background: transparent;
    color: inherit
}

.v-alert--variant-plain {
    opacity: .62
}

.v-alert--variant-plain:focus,
.v-alert--variant-plain:hover {
    opacity: 1
}

.v-alert--variant-plain .v-alert__overlay {
    display: none
}

.v-alert--variant-elevated,
.v-alert--variant-flat {
    background: rgb(var(--v-theme-on-surface-variant));
    color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity))
}

.v-alert--variant-elevated {
    box-shadow: 0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)), 0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)), 0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))
}

.v-alert--variant-flat {
    box-shadow: 0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)), 0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)), 0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))
}

.v-alert--variant-outlined {
    border: thin solid currentColor
}

.v-alert--variant-text .v-alert__overlay {
    background: currentColor
}

.v-alert--variant-tonal .v-alert__underlay {
    background: currentColor;
    opacity: var(--v-activated-opacity);
    border-radius: inherit;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none
}

.v-alert--prominent {
    grid-template-areas: "prepend content append close" "prepend content . ."
}

.v-alert.v-alert--border {
    --v-border-opacity: 0.38
}

.v-alert.v-alert--border.v-alert--border-start {
    padding-inline-start: 24px
}

.v-alert.v-alert--border.v-alert--border-end {
    padding-inline-end: 24px
}

.v-alert--variant-plain {
    transition: opacity .2s cubic-bezier(.4, 0, .2, 1)
}

.v-alert--density-default {
    padding-bottom: 16px;
    padding-top: 16px
}

.v-alert--density-default.v-alert--border-top {
    padding-top: 24px
}

.v-alert--density-default.v-alert--border-bottom {
    padding-bottom: 24px
}

.v-alert--density-comfortable {
    padding-bottom: 12px;
    padding-top: 12px
}

.v-alert--density-comfortable.v-alert--border-top {
    padding-top: 20px
}

.v-alert--density-comfortable.v-alert--border-bottom {
    padding-bottom: 20px
}

.v-alert--density-compact {
    padding-bottom: 8px;
    padding-top: 8px
}

.v-alert--density-compact.v-alert--border-top {
    padding-top: 16px
}

.v-alert--density-compact.v-alert--border-bottom {
    padding-bottom: 16px
}

.v-alert__border {
    border-radius: inherit;
    bottom: 0;
    left: 0;
    opacity: var(--v-border-opacity);
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 0;
    width: 100%;
    border-color: currentColor;
    border-style: solid;
    border-width: 0
}

.v-alert__border--border {
    border-width: 8px;
    box-shadow: none
}

.v-alert--border-start .v-alert__border {
    border-inline-start-width: 8px
}

.v-alert--border-end .v-alert__border {
    border-inline-end-width: 8px
}

.v-alert--border-top .v-alert__border {
    border-top-width: 8px
}

.v-alert--border-bottom .v-alert__border {
    border-bottom-width: 8px
}

.v-alert__close {
    flex: 0 1 auto;
    grid-area: close
}

.v-alert__content {
    align-self: center;
    grid-area: content;
    overflow: hidden
}

.v-alert__append,
.v-alert__close {
    align-self: flex-start;
    margin-inline-start: 16px
}

.v-alert__append {
    align-self: flex-start;
    grid-area: append
}

.v-alert__append+.v-alert__close {
    margin-inline-start: 16px
}

.v-alert__prepend {
    align-self: flex-start;
    display: flex;
    align-items: center;
    grid-area: prepend;
    margin-inline-end: 16px
}

.v-alert--prominent .v-alert__prepend {
    align-self: center
}

.v-alert__underlay {
    grid-area: none;
    position: absolute
}

.v-alert--border-start .v-alert__underlay {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.v-alert--border-end .v-alert__underlay {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.v-alert--border-top .v-alert__underlay {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.v-alert--border-bottom .v-alert__underlay {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.v-alert-title {
    align-items: center;
    align-self: center;
    display: flex;
    font-size: 1.25rem;
    font-weight: 500;
    hyphens: auto;
    letter-spacing: .0125em;
    line-height: 1.75rem;
    overflow-wrap: normal;
    text-transform: none;
    word-break: normal;
    word-wrap: break-word
}