.v-divider {
  display: block;
  flex: 1 1 100%;
  height: 0px;
  max-height: 0px;
  opacity: var(--v-border-opacity);
  transition: inherit;
  border-style: solid;
  border-width: thin 0 0 0;
}
.v-divider--vertical {
  align-self: stretch;
  border-width: 0 thin 0 0;
  display: inline-flex;
  height: inherit;
  margin-left: -1px;
  max-height: 100%;
  max-width: 0px;
  vertical-align: text-bottom;
  width: 0px;
}
.v-divider--inset:not(.v-divider--vertical) {
  max-width: calc(100% - 72px);
  -webkit-margin-start: 72px;
          margin-inline-start: 72px;
}
.v-divider--inset.v-divider--vertical {
  margin-bottom: 8px;
  margin-top: 8px;
  max-height: calc(100% - 16px);
}.v-list {
  overflow: auto;
  padding: 8px 0;
  position: relative;
  outline: none;
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  border-style: solid;
  border-width: 0;
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 0;
  background: rgba(var(--v-theme-surface));
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
}
.v-list--border {
  border-width: thin;
  box-shadow: none;
}
.v-list--disabled {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.v-list--nav {
  padding-inline: 8px;
}
.v-list--rounded {
  border-radius: 4px;
}
.v-list--subheader {
  padding-top: 0;
}

.v-list-img {
  border-radius: inherit;
  display: flex;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.v-list-subheader {
  align-items: center;
  background: inherit;
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  min-height: 40px;
  transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
}
.v-list-subheader__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-list--density-default .v-list-subheader {
  min-height: 40px;
  -webkit-padding-start: calc(16px + var(--indent-padding)) !important;
          padding-inline-start: calc(16px + var(--indent-padding)) !important;
}

.v-list--density-comfortable .v-list-subheader {
  min-height: 36px;
  -webkit-padding-start: calc(16px + var(--indent-padding)) !important;
          padding-inline-start: calc(16px + var(--indent-padding)) !important;
}

.v-list--density-compact .v-list-subheader {
  min-height: 32px;
  -webkit-padding-start: calc(16px + var(--indent-padding)) !important;
          padding-inline-start: calc(16px + var(--indent-padding)) !important;
}

.v-list-subheader--inset {
  --indent-padding: 56px;
}
.v-list--nav .v-list-subheader {
  font-size: 0.75rem;
}
.v-list-subheader--sticky {
  background: inherit;
  left: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.v-list__overlay {
  background-color: currentColor;
  border-radius: inherit;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s ease-in-out;
}.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;
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  border-style: solid;
  border-width: 0;
  border-radius: 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--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: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
}
.v-list-item--variant-elevated {
  box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-list-item--variant-flat {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.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;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@supports selector(:focus-visible) {
  .v-list-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 2px solid currentColor;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  .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--rounded {
  border-radius: 4px;
}
.v-list-item--disabled {
  pointer-events: none;
  -webkit-user-select: 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-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: 32px;
}
.v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
  width: 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: 8px;
}
.v-list-item--slim .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
  width: 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-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: 32px;
}
.v-list-item__append > .v-avatar ~ .v-list-item__spacer {
  width: 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: 8px;
}
.v-list-item--slim .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
  width: 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;
}

.v-list-item-action {
  align-self: center;
  display: flex;
  align-items: center;
  grid-area: prepend;
  flex: none;
  transition: inherit;
  transition-property: height, width;
}
.v-list-item-action--start {
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
}
.v-list-item-action--end {
  -webkit-margin-start: 12px;
          margin-inline-start: 12px;
}

.v-list-item-media {
  margin-top: 0;
  margin-bottom: 0;
}
.v-list-item-media--start {
  -webkit-margin-end: 16px;
          margin-inline-end: 16px;
}
.v-list-item-media--end {
  -webkit-margin-start: 16px;
          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-medium-emphasis-opacity);
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  word-break: break-all;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0178571429em;
  line-height: 1rem;
  text-transform: none;
}
.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--nav .v-list-item-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.0178571429em;
  line-height: 1rem;
}

.v-list-item-title {
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: normal;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: normal;
  word-wrap: break-word;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.009375em;
  line-height: 1.5rem;
  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 .v-list-item--nav:not(:only-child) {
  margin-bottom: 4px;
}

.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: opacity 0.2s ease-in-out;
}
.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: 40px;
}
.v-list--slim .v-list-group {
  --prepend-width: 16px;
}
.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(--list-indent-size));
}

.v-list-group__items .v-list-item {
  -webkit-padding-start: calc(16px + var(--indent-padding)) !important;
          padding-inline-start: calc(16px + var(--indent-padding)) !important;
}

.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
  opacity: 0;
}
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
}.v-menu > .v-overlay__content {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.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%;
  box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}.v-overlay-container {
  contain: layout;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  display: contents;
}

.v-overlay-scroll-blocked {
  -webkit-padding-end: var(--v-scrollbar-offset);
          padding-inline-end: var(--v-scrollbar-offset);
}
.v-overlay-scroll-blocked:not(html) {
  overflow-y: hidden !important;
}
html.v-overlay-scroll-blocked {
  position: fixed;
  top: var(--v-body-scroll-y);
  left: var(--v-body-scroll-x);
  width: 100%;
  height: 100%;
}

.v-overlay {
  border-radius: inherit;
  display: flex;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
}

.v-overlay__content {
  outline: none;
  position: absolute;
  pointer-events: auto;
  contain: layout;
}

.v-overlay__scrim {
  pointer-events: auto;
  background: rgb(var(--v-theme-on-surface));
  border-radius: inherit;
  bottom: 0;
  left: 0;
  opacity: 0.32;
  position: fixed;
  right: 0;
  top: 0;
}

.v-overlay--absolute {
  position: absolute;
}

.v-overlay--contained .v-overlay__scrim {
  position: absolute;
}

.v-overlay--scroll-blocked {
  -webkit-padding-end: var(--v-scrollbar-offset);
          padding-inline-end: var(--v-scrollbar-offset);
}.v-dialog {
  align-items: center;
  justify-content: center;
  margin: auto;
}
.v-dialog > .v-overlay__content {
  max-height: calc(100% - 48px);
  width: calc(100% - 48px);
  max-width: calc(100% - 48px);
  margin: 24px;
}
.v-dialog > .v-overlay__content,
.v-dialog > .v-overlay__content > form {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.v-dialog > .v-overlay__content > .v-card,
.v-dialog > .v-overlay__content > .v-sheet,
.v-dialog > .v-overlay__content > form > .v-card,
.v-dialog > .v-overlay__content > form > .v-sheet {
  --v-scrollbar-offset: 0px;
  border-radius: 4px;
  overflow-y: auto;
  box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-dialog > .v-overlay__content > .v-card,
.v-dialog > .v-overlay__content > form > .v-card {
  display: flex;
  flex-direction: column;
}
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
  padding: 14px 24px 0;
}
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
  padding-top: 10px;
}
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
  font-size: inherit;
  letter-spacing: 0.03125em;
  line-height: inherit;
  padding: 16px 24px 10px;
}

.v-dialog--fullscreen {
  --v-scrollbar-offset: 0px;
}
.v-dialog--fullscreen > .v-overlay__content {
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  top: 0;
  left: 0;
}
.v-dialog--fullscreen > .v-overlay__content > .v-card,
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
  min-height: 100%;
  min-width: 100%;
  border-radius: 0;
}

.v-dialog--scrollable > .v-overlay__content,
.v-dialog--scrollable > .v-overlay__content > form {
  display: flex;
}
.v-dialog--scrollable > .v-overlay__content > .v-card,
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  max-height: 100%;
  max-width: 100%;
}
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow-y: auto;
}[data-v-134280ee]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-134280ee] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-134280ee] {
  background-color: #703596;
}
.theme-secondary-color[data-v-134280ee] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-134280ee] {
  background-color: #b55179;
}
.theme-info-color[data-v-134280ee] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-134280ee] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-134280ee] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-134280ee] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-134280ee] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-134280ee] {
  background-color: #f8581e;
}
.theme-error-color[data-v-134280ee] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-134280ee] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-134280ee] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-134280ee] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-134280ee] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-134280ee] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-134280ee] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-134280ee] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-134280ee] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-134280ee] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-134280ee] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-134280ee] {
  background-color: #1d2424;
}
.horizontal-center[data-v-134280ee] {
  justify-content: center;
}
.is-bold[data-v-134280ee] {
  font-weight: bold;
}
.full-width[data-v-134280ee] {
  width: 100%;
}
.text--details[data-v-134280ee] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-134280ee]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-134280ee] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-134280ee] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-134280ee] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-134280ee] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-134280ee], .v-card.card-skp-style > .v-card-actions[data-v-134280ee] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-134280ee], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-134280ee] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-134280ee]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-134280ee]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-134280ee]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-134280ee]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-134280ee]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-134280ee]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-134280ee], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-134280ee] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-134280ee]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-134280ee]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-134280ee]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-134280ee]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-134280ee], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-134280ee] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-134280ee] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-134280ee] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-134280ee] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-134280ee] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-134280ee] {
  text-decoration: none;
}
.sk-primary-link a[data-v-134280ee] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-134280ee] {
  width: 1rem !important;
}
.ProseMirror[data-v-134280ee]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-134280ee] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-134280ee], table tbody tr td .v-input--density-compact[data-v-134280ee],
table thead tr th .v-input--density-default[data-v-134280ee],
table thead tr th .v-input--density-compact[data-v-134280ee] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-134280ee], table .v-selection-control--density-compact[data-v-134280ee] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-134280ee] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-134280ee],
.v-tab.sk-active[data-v-134280ee] {
  color: #241934 !important;
}
.v-tab[data-v-134280ee],
.v-tab.sk-inactive[data-v-134280ee] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-134280ee] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-134280ee] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-134280ee] {
  table-layout: fixed;
}
.reduce-list-height[data-v-134280ee] {
  line-height: 0.7 !important;
}
.reduce-item-height[data-v-134280ee] {
  min-height: 16px !important;
}[data-v-3ec578af]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-3ec578af] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-3ec578af] {
  background-color: #703596;
}
.theme-secondary-color[data-v-3ec578af] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-3ec578af] {
  background-color: #b55179;
}
.theme-info-color[data-v-3ec578af] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-3ec578af] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-3ec578af] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-3ec578af] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-3ec578af] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-3ec578af] {
  background-color: #f8581e;
}
.theme-error-color[data-v-3ec578af] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-3ec578af] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-3ec578af] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-3ec578af] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-3ec578af] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-3ec578af] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-3ec578af] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-3ec578af] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-3ec578af] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-3ec578af] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-3ec578af] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-3ec578af] {
  background-color: #1d2424;
}
.horizontal-center[data-v-3ec578af] {
  justify-content: center;
}
.is-bold[data-v-3ec578af] {
  font-weight: bold;
}
.full-width[data-v-3ec578af] {
  width: 100%;
}
.text--details[data-v-3ec578af] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-3ec578af]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-3ec578af] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-3ec578af] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-3ec578af] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-3ec578af] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-3ec578af], .v-card.card-skp-style > .v-card-actions[data-v-3ec578af] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3ec578af], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3ec578af] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3ec578af]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3ec578af]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3ec578af]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3ec578af]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3ec578af]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3ec578af]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3ec578af], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3ec578af] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3ec578af]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3ec578af]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3ec578af]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3ec578af]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-3ec578af], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-3ec578af] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-3ec578af] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-3ec578af] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-3ec578af] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-3ec578af] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-3ec578af] {
  text-decoration: none;
}
.sk-primary-link a[data-v-3ec578af] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-3ec578af] {
  width: 1rem !important;
}
.ProseMirror[data-v-3ec578af]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-3ec578af] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-3ec578af], table tbody tr td .v-input--density-compact[data-v-3ec578af],
table thead tr th .v-input--density-default[data-v-3ec578af],
table thead tr th .v-input--density-compact[data-v-3ec578af] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-3ec578af], table .v-selection-control--density-compact[data-v-3ec578af] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-3ec578af] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-3ec578af],
.v-tab.sk-active[data-v-3ec578af] {
  color: #241934 !important;
}
.v-tab[data-v-3ec578af],
.v-tab.sk-inactive[data-v-3ec578af] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-3ec578af] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-3ec578af] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-3ec578af] {
  table-layout: fixed;
}
.draggable-item[data-v-3ec578af] {
  padding: 0;
  margin: 0;
  border-radius: 0.5rem;
  background: white;
}
.draggable-item .drag-handle[data-v-3ec578af] {
  opacity: 0;
  width: 1rem;
  height: 1rem;
  top: 0.3rem;
  cursor: grab;
}
.draggable-item .drag-row:hover .drag-handle[data-v-3ec578af] {
  opacity: 1;
}
.draggable-item .content[data-v-3ec578af] {
  flex: 1 1 auto;
  width: 100%;
}
.draggable-item .content.read-only[data-v-3ec578af] {
  margin-top: 20px;
}
.draggable-item .content[data-v-3ec578af]  tr th:nth-child(1) {
  width: 20px;
}
.draggable-item .content[data-v-3ec578af]  td {
  border: 2px solid #ced4da;
  box-sizing: border-box;
  min-width: 1em;
  padding: 3px 5px;
  position: relative;
  vertical-align: top;
}
.draggable-item .content[data-v-3ec578af]  .table-control,
.draggable-item .content[data-v-3ec578af]  .row-control,
.draggable-item .content[data-v-3ec578af]  .col-control {
  background-color: transparent !important;
  border: none !important;
  justify-content: center !important;
}
.draggable-item .content[data-v-3ec578af]  .table-control button,
.draggable-item .content[data-v-3ec578af]  .row-control button,
.draggable-item .content[data-v-3ec578af]  .col-control button {
  opacity: 0.3;
}
.draggable-item .content[data-v-3ec578af]  .table-control:hover button,
.draggable-item .content[data-v-3ec578af]  .row-control:hover button,
.draggable-item .content[data-v-3ec578af]  .col-control:hover button {
  opacity: 1;
}
.draggable-item .content[data-v-3ec578af]  .row-control {
  text-align: center !important;
}
.draggable-item .drag-row.read-only[data-v-3ec578af] {
  display: none;
}[data-v-84bf7ed7]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-84bf7ed7] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-84bf7ed7] {
  background-color: #703596;
}
.theme-secondary-color[data-v-84bf7ed7] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-84bf7ed7] {
  background-color: #b55179;
}
.theme-info-color[data-v-84bf7ed7] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-84bf7ed7] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-84bf7ed7] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-84bf7ed7] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-84bf7ed7] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-84bf7ed7] {
  background-color: #f8581e;
}
.theme-error-color[data-v-84bf7ed7] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-84bf7ed7] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-84bf7ed7] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-84bf7ed7] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-84bf7ed7] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-84bf7ed7] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-84bf7ed7] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-84bf7ed7] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-84bf7ed7] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-84bf7ed7] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-84bf7ed7] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-84bf7ed7] {
  background-color: #1d2424;
}
.horizontal-center[data-v-84bf7ed7] {
  justify-content: center;
}
.is-bold[data-v-84bf7ed7] {
  font-weight: bold;
}
.full-width[data-v-84bf7ed7] {
  width: 100%;
}
.text--details[data-v-84bf7ed7] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-84bf7ed7]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-84bf7ed7] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-84bf7ed7] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-84bf7ed7] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-84bf7ed7] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-84bf7ed7], .v-card.card-skp-style > .v-card-actions[data-v-84bf7ed7] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-84bf7ed7], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-84bf7ed7] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-84bf7ed7]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-84bf7ed7]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-84bf7ed7]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-84bf7ed7]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-84bf7ed7]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-84bf7ed7]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-84bf7ed7], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-84bf7ed7] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-84bf7ed7]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-84bf7ed7]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-84bf7ed7]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-84bf7ed7]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-84bf7ed7], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-84bf7ed7] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-84bf7ed7] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-84bf7ed7] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-84bf7ed7] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-84bf7ed7] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-84bf7ed7] {
  text-decoration: none;
}
.sk-primary-link a[data-v-84bf7ed7] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-84bf7ed7] {
  width: 1rem !important;
}
.ProseMirror[data-v-84bf7ed7]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-84bf7ed7] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-84bf7ed7], table tbody tr td .v-input--density-compact[data-v-84bf7ed7],
table thead tr th .v-input--density-default[data-v-84bf7ed7],
table thead tr th .v-input--density-compact[data-v-84bf7ed7] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-84bf7ed7], table .v-selection-control--density-compact[data-v-84bf7ed7] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-84bf7ed7] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-84bf7ed7],
.v-tab.sk-active[data-v-84bf7ed7] {
  color: #241934 !important;
}
.v-tab[data-v-84bf7ed7],
.v-tab.sk-inactive[data-v-84bf7ed7] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-84bf7ed7] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-84bf7ed7] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-84bf7ed7] {
  table-layout: fixed;
}
.vue-component.read-only[data-v-84bf7ed7] {
  display: none;
}.v-color-picker {
  align-self: flex-start;
  contain: content;
}
.v-color-picker.v-sheet {
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 4px;
}

.v-color-picker__controls {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.v-color-picker--flat {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}.v-color-picker-canvas {
  display: flex;
  position: relative;
  overflow: hidden;
  contain: content;
  touch-action: none;
}
.v-color-picker-canvas__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
}
.v-color-picker-canvas__dot--disabled {
  box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
}
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
  will-change: transform;
}.v-color-picker-edit {
  display: flex;
  margin-top: 24px;
}

.v-color-picker-edit__input {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.v-color-picker-edit__input:not(:last-child) {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}
.v-color-picker-edit__input input {
  border-radius: 4px;
  margin-bottom: 8px;
  min-width: 0;
  outline: none;
  text-align: center;
  width: 100%;
  height: 32px;
  background: rgba(var(--v-theme-surface-variant), 0.2);
  color: rgba(var(--v-theme-on-surface));
}
.v-color-picker-edit__input span {
  font-size: 0.75rem;
}.v-color-picker-preview__alpha .v-slider-track__background {
  background-color: transparent !important;
}
.v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
  background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
}

.v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
  background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
}

.v-color-picker-preview__alpha .v-slider-track__background::after {
  content: "";
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
  border-radius: inherit;
}

.v-color-picker-preview__sliders {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.v-color-picker-preview__dot {
  position: relative;
  height: 30px;
  width: 30px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
  border-radius: 50%;
  overflow: hidden;
  -webkit-margin-end: 24px;
          margin-inline-end: 24px;
}
.v-color-picker-preview__dot > div {
  width: 100%;
  height: 100%;
}

.v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
  background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
}

.v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
  background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
}

.v-color-picker-preview__track {
  position: relative;
  width: 100%;
  margin: 0 !important;
}
.v-color-picker-preview__track .v-slider-track__fill {
  display: none;
}

.v-color-picker-preview {
  align-items: center;
  display: flex;
  margin-bottom: 0;
}

.v-color-picker-preview__eye-dropper {
  position: relative;
  margin-right: 12px;
}.v-slider .v-slider__container input {
  cursor: default;
  padding: 0;
  width: 100%;
  display: none;
}
.v-slider > .v-input__append,
.v-slider > .v-input__prepend {
  padding: 0;
}

.v-slider__container {
  position: relative;
  min-height: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.v-input--disabled .v-slider__container {
  opacity: var(--v-disabled-opacity);
}
.v-input--error:not(.v-input--disabled) .v-slider__container {
  color: rgb(var(--v-theme-error));
}

.v-slider.v-input--horizontal {
  align-items: center;
  margin-inline: 8px 8px;
}
.v-slider.v-input--horizontal > .v-input__control {
  min-height: 32px;
  display: flex;
  align-items: center;
}

.v-slider.v-input--vertical {
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 12px;
}
.v-slider.v-input--vertical > .v-input__control {
  min-height: 300px;
}

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

.v-slider--has-labels > .v-input__control {
  margin-bottom: 4px;
}

.v-slider__label {
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
}.v-slider-thumb {
  touch-action: none;
  color: rgb(var(--v-theme-surface-variant));
}
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
  color: inherit;
}

.v-slider-thumb__label {
  background: rgba(var(--v-theme-surface-variant), 0.7);
  color: rgb(var(--v-theme-on-surface-variant));
}
.v-slider-thumb__label::before {
  color: rgba(var(--v-theme-surface-variant), 0.7);
}

.v-slider-thumb {
  outline: none;
  position: absolute;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.v-slider-thumb__surface {
  cursor: pointer;
  width: var(--v-slider-thumb-size);
  height: var(--v-slider-thumb-size);
  border-radius: 50%;
  -webkit-user-select: none;
          user-select: none;
  background-color: currentColor;
}
.v-slider-thumb__surface::before {
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
  color: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.v-slider-thumb__surface::after {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.v-slider-thumb__label-container {
  position: absolute;
  transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.v-slider-thumb__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  min-width: 35px;
  height: 25px;
  border-radius: 4px;
  padding: 6px;
  position: absolute;
  -webkit-user-select: none;
          user-select: none;
  transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
}
.v-slider-thumb__label::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}

.v-slider-thumb__ripple {
  position: absolute;
  left: calc(var(--v-slider-thumb-size) / -2);
  top: calc(var(--v-slider-thumb-size) / -2);
  width: calc(var(--v-slider-thumb-size) * 2);
  height: calc(var(--v-slider-thumb-size) * 2);
  background: inherit;
}

.v-slider.v-input--horizontal .v-slider-thumb {
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
}
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
  left: calc(var(--v-slider-thumb-size) / 2);
  top: 0;
}
.v-slider.v-input--horizontal .v-slider-thumb__label {
  bottom: calc(var(--v-slider-thumb-size) / 2);
}
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
  transform: translateX(-50%);
}

.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
  transform: translateX(50%);
}

.v-slider.v-input--horizontal .v-slider-thumb__label::before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid currentColor;
  bottom: -6px;
}

.v-slider.v-input--vertical .v-slider-thumb {
  top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
}
.v-slider.v-input--vertical .v-slider-thumb__label-container {
  top: calc(var(--v-slider-thumb-size) / 2);
  right: 0;
}
.v-slider.v-input--vertical .v-slider-thumb__label {
  top: -12.5px;
  left: calc(var(--v-slider-thumb-size) / 2);
}
.v-slider.v-input--vertical .v-slider-thumb__label::before {
  border-right: 6px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  left: -6px;
}

.v-slider-thumb--focused .v-slider-thumb__surface::before {
  transform: scale(2);
  opacity: var(--v-focus-opacity);
}

.v-slider-thumb--pressed {
  transition: none;
}
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
  opacity: var(--v-pressed-opacity);
}

@media (hover: hover) {
  .v-slider-thumb:hover .v-slider-thumb__surface::before {
    transform: scale(2);
  }
  .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
    opacity: var(--v-hover-opacity);
  }
}.v-slider-track__background {
  background-color: rgb(var(--v-theme-surface-variant));
}

.v-slider-track__fill {
  background-color: rgb(var(--v-theme-surface-variant));
}

.v-slider-track__tick {
  background-color: rgb(var(--v-theme-surface-variant));
}
.v-slider-track__tick--filled {
  background-color: rgb(var(--v-theme-surface-light));
}

.v-slider-track {
  border-radius: 6px;
}

.v-slider-track__background, .v-slider-track__fill {
  position: absolute;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  border-radius: inherit;
}
.v-slider--pressed .v-slider-track__background, .v-slider--pressed .v-slider-track__fill {
  transition: none;
}
.v-input--error:not(.v-input--disabled) .v-slider-track__background, .v-input--error:not(.v-input--disabled) .v-slider-track__fill {
  background-color: currentColor;
}

.v-slider-track__ticks {
  height: 100%;
  width: 100%;
  position: relative;
}

.v-slider-track__tick {
  position: absolute;
  opacity: 0;
  transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  width: var(--v-slider-tick-size);
  height: var(--v-slider-tick-size);
  transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / -2));
}
.v-locale--is-ltr.v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label {
  transform: none;
}

.v-locale--is-rtl.v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label {
  transform: translateX(100%);
}

.v-locale--is-ltr.v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label {
  transform: translateX(-100%);
}

.v-locale--is-rtl.v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label {
  transform: none;
}

.v-slider-track__tick-label {
  position: absolute;
  -webkit-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.v-slider.v-input--horizontal .v-slider-track {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(var(--v-slider-track-size) + 2px);
  touch-action: pan-y;
}
.v-slider.v-input--horizontal .v-slider-track__background {
  height: var(--v-slider-track-size);
}
.v-slider.v-input--horizontal .v-slider-track__fill {
  height: inherit;
}
.v-slider.v-input--horizontal .v-slider-track__tick {
  margin-top: calc(calc(var(--v-slider-track-size) + 2px) / 2);
}
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick {
  transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / -2));
}

.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
  margin-top: calc(var(--v-slider-track-size) / 2 + 8px);
}
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
  transform: translateX(-50%);
}

.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
  transform: translateX(50%);
}

.v-slider.v-input--horizontal .v-slider-track__tick--first {
  -webkit-margin-start: calc(var(--v-slider-tick-size) + 1px);
          margin-inline-start: calc(var(--v-slider-tick-size) + 1px);
}
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
  transform: translateX(0%);
}

.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
  transform: translateX(0%);
}

.v-slider.v-input--horizontal .v-slider-track__tick--last {
  -webkit-margin-start: calc(100% - var(--v-slider-tick-size) - 1px);
          margin-inline-start: calc(100% - var(--v-slider-tick-size) - 1px);
}
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
  transform: translateX(-100%);
}

.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
  transform: translateX(100%);
}

.v-slider.v-input--vertical .v-slider-track {
  height: 100%;
  display: flex;
  justify-content: center;
  width: calc(var(--v-slider-track-size) + 2px);
  touch-action: pan-x;
}
.v-slider.v-input--vertical .v-slider-track__background {
  width: var(--v-slider-track-size);
}
.v-slider.v-input--vertical .v-slider-track__fill {
  width: inherit;
}
.v-slider.v-input--vertical .v-slider-track__ticks {
  height: 100%;
}
.v-slider.v-input--vertical .v-slider-track__tick {
  -webkit-margin-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
          margin-inline-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
  transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / 2));
}
.v-locale--is-rtl.v-slider.v-input--vertical .v-slider-track__tick, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
  transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
}

.v-slider.v-input--vertical .v-slider-track__tick--first {
  bottom: calc(0% + var(--v-slider-tick-size) + 1px);
}
.v-slider.v-input--vertical .v-slider-track__tick--last {
  bottom: calc(100% - var(--v-slider-tick-size) - 1px);
}
.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label {
  -webkit-margin-start: calc(var(--v-slider-track-size) / 2 + 12px);
          margin-inline-start: calc(var(--v-slider-track-size) / 2 + 12px);
  transform: translateY(-50%);
}

.v-slider-track__ticks--always-show .v-slider-track__tick, .v-slider--focused .v-slider-track__tick {
  opacity: 1;
}

.v-slider-track__background--opacity {
  opacity: 0.38;
}.v-color-picker-swatches {
  overflow-y: auto;
}
.v-color-picker-swatches > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px;
}

.v-color-picker-swatches__swatch {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.v-color-picker-swatches__color {
  position: relative;
  height: 18px;
  max-height: 18px;
  width: 45px;
  margin: 2px 4px;
  border-radius: 2px;
  -webkit-user-select: none;
          user-select: none;
  overflow: hidden;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
  cursor: pointer;
}
.v-color-picker-swatches__color > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}.v-sheet {
  display: block;
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  border-style: solid;
  border-width: 0;
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 0;
  background: rgb(var(--v-theme-surface));
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
}
.v-sheet--border {
  border-width: thin;
  box-shadow: none;
}
.v-sheet--absolute {
  position: absolute;
}
.v-sheet--fixed {
  position: fixed;
}
.v-sheet--relative {
  position: relative;
}
.v-sheet--sticky {
  position: -webkit-sticky;
  position: sticky;
}
.v-sheet--rounded {
  border-radius: 4px;
}.v-app-bar {
  display: flex;
}
.v-app-bar.v-toolbar {
  background: rgb(var(--v-theme-surface));
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
}
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-app-bar:not(.v-toolbar--absolute) {
  -webkit-padding-end: var(--v-scrollbar-offset);
          padding-inline-end: var(--v-scrollbar-offset);
}.v-toolbar {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
  width: 100%;
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  border-style: solid;
  border-width: 0;
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 0;
  background: rgb(var(--v-theme-surface-light));
  color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
}
.v-toolbar--border {
  border-width: thin;
  box-shadow: none;
}
.v-toolbar--absolute {
  position: absolute;
}
.v-toolbar--collapse {
  max-width: 112px;
  overflow: hidden;
  border-end-end-radius: 24px;
}
.v-toolbar--collapse .v-toolbar-title {
  display: none;
}
.v-toolbar--flat {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-toolbar--floating {
  display: inline-flex;
}
.v-toolbar--rounded {
  border-radius: 4px;
}

.v-toolbar__content,
.v-toolbar__extension {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  transition: inherit;
  width: 100%;
}

.v-toolbar__content > .v-btn:first-child {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}
.v-toolbar__content > .v-btn:last-child {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.v-toolbar__content > .v-toolbar-title {
  -webkit-margin-start: 16px;
          margin-inline-start: 16px;
}
.v-toolbar--density-prominent .v-toolbar__content {
  align-items: flex-start;
}

.v-toolbar__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: var(--v-toolbar-image-opacity, 1);
  transition-property: opacity;
}

.v-toolbar__prepend,
.v-toolbar__append {
  align-items: center;
  align-self: stretch;
  display: flex;
}

.v-toolbar__prepend {
  margin-inline: 10px auto;
}

.v-toolbar__append {
  margin-inline: auto 10px;
}

.v-toolbar-title {
  flex: 1 1;
  font-size: 1.25rem;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75rem;
  text-transform: none;
}
.v-toolbar--density-prominent .v-toolbar-title {
  align-self: flex-end;
  padding-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.25rem;
  text-transform: none;
}

.v-toolbar-title__placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-toolbar-items {
  display: flex;
  height: inherit;
  align-self: stretch;
}
.v-toolbar-items > .v-btn {
  border-radius: 0;
}[data-v-3e548373]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-3e548373] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-3e548373] {
  background-color: #703596;
}
.theme-secondary-color[data-v-3e548373] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-3e548373] {
  background-color: #b55179;
}
.theme-info-color[data-v-3e548373] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-3e548373] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-3e548373] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-3e548373] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-3e548373] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-3e548373] {
  background-color: #f8581e;
}
.theme-error-color[data-v-3e548373] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-3e548373] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-3e548373] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-3e548373] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-3e548373] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-3e548373] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-3e548373] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-3e548373] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-3e548373] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-3e548373] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-3e548373] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-3e548373] {
  background-color: #1d2424;
}
.horizontal-center[data-v-3e548373] {
  justify-content: center;
}
.is-bold[data-v-3e548373] {
  font-weight: bold;
}
.full-width[data-v-3e548373] {
  width: 100%;
}
.text--details[data-v-3e548373] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-3e548373]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-3e548373] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-3e548373] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-3e548373] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-3e548373] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-3e548373], .v-card.card-skp-style > .v-card-actions[data-v-3e548373] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3e548373], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3e548373] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3e548373]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3e548373]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3e548373]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3e548373]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-3e548373]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-3e548373]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3e548373], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3e548373] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3e548373]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3e548373]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-3e548373]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-3e548373]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-3e548373], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-3e548373] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-3e548373] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-3e548373] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-3e548373] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-3e548373] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-3e548373] {
  text-decoration: none;
}
.sk-primary-link a[data-v-3e548373] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-3e548373] {
  width: 1rem !important;
}
.ProseMirror[data-v-3e548373]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-3e548373] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-3e548373], table tbody tr td .v-input--density-compact[data-v-3e548373],
table thead tr th .v-input--density-default[data-v-3e548373],
table thead tr th .v-input--density-compact[data-v-3e548373] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-3e548373], table .v-selection-control--density-compact[data-v-3e548373] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-3e548373] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-3e548373],
.v-tab.sk-active[data-v-3e548373] {
  color: #241934 !important;
}
.v-tab[data-v-3e548373],
.v-tab.sk-inactive[data-v-3e548373] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-3e548373] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-3e548373] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-3e548373] {
  table-layout: fixed;
}
.image-result[data-v-3e548373] {
  cursor: pointer;
}[data-v-77433b8f]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-77433b8f] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-77433b8f] {
  background-color: #703596;
}
.theme-secondary-color[data-v-77433b8f] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-77433b8f] {
  background-color: #b55179;
}
.theme-info-color[data-v-77433b8f] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-77433b8f] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-77433b8f] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-77433b8f] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-77433b8f] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-77433b8f] {
  background-color: #f8581e;
}
.theme-error-color[data-v-77433b8f] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-77433b8f] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-77433b8f] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-77433b8f] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-77433b8f] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-77433b8f] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-77433b8f] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-77433b8f] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-77433b8f] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-77433b8f] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-77433b8f] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-77433b8f] {
  background-color: #1d2424;
}
.horizontal-center[data-v-77433b8f] {
  justify-content: center;
}
.is-bold[data-v-77433b8f] {
  font-weight: bold;
}
.full-width[data-v-77433b8f] {
  width: 100%;
}
.text--details[data-v-77433b8f] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-77433b8f]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-77433b8f] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-77433b8f] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-77433b8f] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-77433b8f] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-77433b8f], .v-card.card-skp-style > .v-card-actions[data-v-77433b8f] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-77433b8f], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-77433b8f] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-77433b8f]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-77433b8f]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-77433b8f]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-77433b8f]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-77433b8f]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-77433b8f]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-77433b8f], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-77433b8f] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-77433b8f]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-77433b8f]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-77433b8f]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-77433b8f]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-77433b8f], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-77433b8f] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-77433b8f] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-77433b8f] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-77433b8f] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-77433b8f] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-77433b8f] {
  text-decoration: none;
}
.sk-primary-link a[data-v-77433b8f] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-77433b8f] {
  width: 1rem !important;
}
.ProseMirror[data-v-77433b8f]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-77433b8f] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-77433b8f], table tbody tr td .v-input--density-compact[data-v-77433b8f],
table thead tr th .v-input--density-default[data-v-77433b8f],
table thead tr th .v-input--density-compact[data-v-77433b8f] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-77433b8f], table .v-selection-control--density-compact[data-v-77433b8f] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-77433b8f] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-77433b8f],
.v-tab.sk-active[data-v-77433b8f] {
  color: #241934 !important;
}
.v-tab[data-v-77433b8f],
.v-tab.sk-inactive[data-v-77433b8f] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-77433b8f] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-77433b8f] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-77433b8f] {
  table-layout: fixed;
}
.wysiwyg-main-menu[data-v-77433b8f] {
  z-index: 0 !important;
}
.wysiwyg-main-menu[data-v-77433b8f]  ol {
  padding-left: 1rem !important;
}[data-v-bff66c50]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-bff66c50] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-bff66c50] {
  background-color: #703596;
}
.theme-secondary-color[data-v-bff66c50] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-bff66c50] {
  background-color: #b55179;
}
.theme-info-color[data-v-bff66c50] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-bff66c50] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-bff66c50] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-bff66c50] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-bff66c50] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-bff66c50] {
  background-color: #f8581e;
}
.theme-error-color[data-v-bff66c50] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-bff66c50] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-bff66c50] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-bff66c50] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-bff66c50] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-bff66c50] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-bff66c50] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-bff66c50] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-bff66c50] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-bff66c50] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-bff66c50] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-bff66c50] {
  background-color: #1d2424;
}
.horizontal-center[data-v-bff66c50] {
  justify-content: center;
}
.is-bold[data-v-bff66c50] {
  font-weight: bold;
}
.full-width[data-v-bff66c50] {
  width: 100%;
}
.text--details[data-v-bff66c50] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-bff66c50]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-bff66c50] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-bff66c50] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-bff66c50] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-bff66c50] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-bff66c50], .v-card.card-skp-style > .v-card-actions[data-v-bff66c50] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-bff66c50], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-bff66c50] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-bff66c50]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-bff66c50]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-bff66c50]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-bff66c50]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-bff66c50]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-bff66c50]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-bff66c50], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-bff66c50] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-bff66c50]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-bff66c50]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-bff66c50]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-bff66c50]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-bff66c50], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-bff66c50] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-bff66c50] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-bff66c50] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-bff66c50] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-bff66c50] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-bff66c50] {
  text-decoration: none;
}
.sk-primary-link a[data-v-bff66c50] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-bff66c50] {
  width: 1rem !important;
}
.ProseMirror[data-v-bff66c50]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-bff66c50] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-bff66c50], table tbody tr td .v-input--density-compact[data-v-bff66c50],
table thead tr th .v-input--density-default[data-v-bff66c50],
table thead tr th .v-input--density-compact[data-v-bff66c50] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-bff66c50], table .v-selection-control--density-compact[data-v-bff66c50] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-bff66c50] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-bff66c50],
.v-tab.sk-active[data-v-bff66c50] {
  color: #241934 !important;
}
.v-tab[data-v-bff66c50],
.v-tab.sk-inactive[data-v-bff66c50] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-bff66c50] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-bff66c50] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-bff66c50] {
  table-layout: fixed;
}
.wysiwyg-lite-menu[data-v-bff66c50] {
  z-index: 0 !important;
}[data-v-85aa4ab8]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-85aa4ab8] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-85aa4ab8] {
  background-color: #703596;
}
.theme-secondary-color[data-v-85aa4ab8] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-85aa4ab8] {
  background-color: #b55179;
}
.theme-info-color[data-v-85aa4ab8] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-85aa4ab8] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-85aa4ab8] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-85aa4ab8] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-85aa4ab8] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-85aa4ab8] {
  background-color: #f8581e;
}
.theme-error-color[data-v-85aa4ab8] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-85aa4ab8] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-85aa4ab8] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-85aa4ab8] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-85aa4ab8] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-85aa4ab8] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-85aa4ab8] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-85aa4ab8] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-85aa4ab8] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-85aa4ab8] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-85aa4ab8] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-85aa4ab8] {
  background-color: #1d2424;
}
.horizontal-center[data-v-85aa4ab8] {
  justify-content: center;
}
.is-bold[data-v-85aa4ab8] {
  font-weight: bold;
}
.full-width[data-v-85aa4ab8] {
  width: 100%;
}
.text--details[data-v-85aa4ab8] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-85aa4ab8]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-85aa4ab8] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-85aa4ab8] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-85aa4ab8] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-85aa4ab8] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-85aa4ab8], .v-card.card-skp-style > .v-card-actions[data-v-85aa4ab8] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-85aa4ab8], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-85aa4ab8] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-85aa4ab8]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-85aa4ab8]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-85aa4ab8]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-85aa4ab8]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-85aa4ab8]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-85aa4ab8]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-85aa4ab8], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-85aa4ab8] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-85aa4ab8]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-85aa4ab8]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-85aa4ab8]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-85aa4ab8]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-85aa4ab8], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-85aa4ab8] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-85aa4ab8] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-85aa4ab8] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-85aa4ab8] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-85aa4ab8] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-85aa4ab8] {
  text-decoration: none;
}
.sk-primary-link a[data-v-85aa4ab8] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-85aa4ab8] {
  width: 1rem !important;
}
.ProseMirror[data-v-85aa4ab8]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-85aa4ab8] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-85aa4ab8], table tbody tr td .v-input--density-compact[data-v-85aa4ab8],
table thead tr th .v-input--density-default[data-v-85aa4ab8],
table thead tr th .v-input--density-compact[data-v-85aa4ab8] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-85aa4ab8], table .v-selection-control--density-compact[data-v-85aa4ab8] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-85aa4ab8] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-85aa4ab8],
.v-tab.sk-active[data-v-85aa4ab8] {
  color: #241934 !important;
}
.v-tab[data-v-85aa4ab8],
.v-tab.sk-inactive[data-v-85aa4ab8] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-85aa4ab8] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-85aa4ab8] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-85aa4ab8] {
  table-layout: fixed;
}
.bubble-menu[data-v-85aa4ab8] {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}[data-v-6ae602b3]:root {
  --primary-color: #703596;
  --primary-lighten-bg: rgba(112, 53, 151, 0.2862745098);
  --secondary-color: #b55179;
  --accent-color: #f8581e;
  --grey-darken-1: #241934;
  --grey-neutral: #655977;
  --primary-color-rgb: 112, 53, 150;
  --primary-lighten-bg-rgb: 112, 53, 151;
  --secondary-color-rgb: 181, 81, 121;
  --accent-color-rgb: 248, 88, 30;
  --teal-cyan-500: #16bdca;
  --purple-500: #7c3aed;
  --peach-orange-500: #fdba8c;
  --color-gray-300: #d1d5db;
}
.theme-primary-color[data-v-6ae602b3] {
  color: #703596 !important;
}
.theme-primary-bg[data-v-6ae602b3] {
  background-color: #703596;
}
.theme-secondary-color[data-v-6ae602b3] {
  color: #b55179 !important;
}
.theme-secondary-bg[data-v-6ae602b3] {
  background-color: #b55179;
}
.theme-info-color[data-v-6ae602b3] {
  color: #0f65d0 !important;
}
.theme-info-bg[data-v-6ae602b3] {
  background-color: #0f65d0;
}
.theme-success-color[data-v-6ae602b3] {
  color: #24ad58 !important;
}
.theme-success-bg[data-v-6ae602b3] {
  background-color: #24ad58;
}
.theme-warning-color[data-v-6ae602b3] {
  color: #f8581e !important;
}
.theme-warning-bg[data-v-6ae602b3] {
  background-color: #f8581e;
}
.theme-error-color[data-v-6ae602b3] {
  color: #af3a34 !important;
}
.theme-error-bg[data-v-6ae602b3] {
  background-color: #af3a34;
}
.theme-amber-color[data-v-6ae602b3] {
  color: #c3a135 !important;
}
.theme-amber-bg[data-v-6ae602b3] {
  background-color: #c3a135;
}
.theme-grey-neutral-color[data-v-6ae602b3] {
  color: #655977 !important;
}
.theme-grey-neutral-bg[data-v-6ae602b3] {
  background-color: #655977;
}
.theme-grey-lighten-1-color[data-v-6ae602b3] {
  color: #d9d4e1 !important;
}
.theme-grey-lighten-1-bg[data-v-6ae602b3] {
  background-color: #d9d4e1;
}
.theme-grey-darken-1-color[data-v-6ae602b3] {
  color: #241934 !important;
}
.theme-grey-darken-1-bg[data-v-6ae602b3] {
  background-color: #241934;
}
.theme-text-dark-color[data-v-6ae602b3] {
  color: #1d2424 !important;
}
.theme-text-dark-bg[data-v-6ae602b3] {
  background-color: #1d2424;
}
.horizontal-center[data-v-6ae602b3] {
  justify-content: center;
}
.is-bold[data-v-6ae602b3] {
  font-weight: bold;
}
.full-width[data-v-6ae602b3] {
  width: 100%;
}
.text--details[data-v-6ae602b3] {
  color: rgb(99, 98, 98);
  font-size: 12px;
}
.text-titlecase[data-v-6ae602b3]:first-letter {
  text-transform: uppercase;
}
.v-card.card-skp-style[data-v-6ae602b3] {
  border-top: 5px solid var(--primary-color);
}
.v-card.card-skp-style .v-card-text[data-v-6ae602b3] {
  color: #655977;
}
.v-card.card-skp-style.card-skp-error[data-v-6ae602b3] {
  border-top: 5px solid #f8581e;
}
.v-card.card-skp-style .v-btn[data-v-6ae602b3] {
  box-shadow: none !important;
}
.v-card.card-skp-style > .v-card__actions[data-v-6ae602b3], .v-card.card-skp-style > .v-card-actions[data-v-6ae602b3] {
  background: #d9d4e1;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-6ae602b3], .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-6ae602b3] {
  color: var(--primary-color);
  background-color: transparent;
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-6ae602b3]:not(:disabled), .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-6ae602b3]:not(:disabled) {
  border: 2px solid rgb(140.1379310345, 66.315270936, 187.684729064);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-6ae602b3]:hover, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-6ae602b3]:hover {
  color: rgb(140.1379310345, 66.315270936, 187.684729064);
  border-color: rgb(163.1034482759, 103.5221674877, 201.4778325123);
}
.v-card.card-skp-style > .v-card__actions .secondary-action[data-v-6ae602b3]:hover:before, .v-card.card-skp-style > .v-card-actions .secondary-action[data-v-6ae602b3]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-6ae602b3], .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-6ae602b3] {
  color: #a7a3a3;
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-6ae602b3]:hover, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-6ae602b3]:hover {
  color: rgb(191.9333333333, 189.0666666667, 189.0666666667);
}
.v-card.card-skp-style > .v-card__actions .tertiary-action[data-v-6ae602b3]:hover:before, .v-card.card-skp-style > .v-card-actions .tertiary-action[data-v-6ae602b3]:hover:before {
  background: transparent;
}
.v-card.card-skp-style > .v-card__actions .disable-primary[data-v-6ae602b3], .v-card.card-skp-style > .v-card-actions .disable-primary[data-v-6ae602b3] {
  background-color: rgb(174.5344827586, 122.3645320197, 208.1354679803) !important;
}
.v-card.card-skp-style .v-expansion-panels[data-v-6ae602b3] {
  box-shadow: none;
}
.invalid-field .v-input__slot[data-v-6ae602b3] {
  border: 2px solid #af3a34;
}
.invalid-field .v-field[data-v-6ae602b3] {
  border: 2px solid #af3a34;
}
.skp-tabs[data-v-6ae602b3] {
  background: #d9d4e1 !important;
  color: #241934;
}
a[data-v-6ae602b3] {
  text-decoration: none;
}
.sk-primary-link a[data-v-6ae602b3] {
  text-decoration: none;
  color: var(--primary-color);
}
.sk-v-list-item-spacer .v-list-item__prepend .v-list-item__spacer[data-v-6ae602b3] {
  width: 1rem !important;
}
.ProseMirror[data-v-6ae602b3]:focus-visible {
  outline: none !important;
}
.sk-v-data-table.v-table > .v-table__wrapper > table > tbody > tr > td[data-v-6ae602b3] {
  padding: 0 8px !important;
}
table tbody tr td .v-input--density-default[data-v-6ae602b3], table tbody tr td .v-input--density-compact[data-v-6ae602b3],
table thead tr th .v-input--density-default[data-v-6ae602b3],
table thead tr th .v-input--density-compact[data-v-6ae602b3] {
  --v-input-control-height: 40px !important;
}
table .v-selection-control--density-default[data-v-6ae602b3], table .v-selection-control--density-compact[data-v-6ae602b3] {
  --v-selection-control-size: 28px !important;
}
.v-field.v-field--variant-underlined .v-field__input[data-v-6ae602b3] {
  padding: 0 !important;
  top: 8px !important;
}
.v-tab.v-tab--selected[data-v-6ae602b3],
.v-tab.sk-active[data-v-6ae602b3] {
  color: #241934 !important;
}
.v-tab[data-v-6ae602b3],
.v-tab.sk-inactive[data-v-6ae602b3] {
  color: grey !important;
}
.sk-stepper-window .v-stepper-window[data-v-6ae602b3] {
  margin: 0 1.5rem !important;
}
.onerev-ellipsis[data-v-6ae602b3] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.onerev-revtable-ellipsis .q-table[data-v-6ae602b3] {
  table-layout: fixed;
}
[data-v-6ae602b3] blockquote {
  padding-left: 1rem;
  border-left: 2px solid #f0eafb;
}
[data-v-6ae602b3] ol,[data-v-6ae602b3] ul {
  padding-left: 1rem !important;
}
.content[data-v-6ae602b3] {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border: 1px solid #dbdbdb;
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: 0.625em;
  resize: vertical;
  background-color: white;
  border-radius: 4px;
}
.wysiwyg-editor-content[data-v-6ae602b3]  .prose {
  padding: 10px 10px 0 10px;
  min-height: 1500px;
}
.wysiwyg-editor-content[data-v-6ae602b3]  .prose p.is-editor-empty:first-child:before {
  content: attr(data-placeholder);
  float: left;
  color: #adb5bd;
  pointer-events: none;
  height: 0;
}
.upload-badge[data-v-848cf5e3] {
  cursor: pointer;
}
.upload-badge .badge__badge[data-v-848cf5e3] {
  right: 5px;
  bottom: 5px;
  top: auto;
}
.round-avatar[data-v-848cf5e3] {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-v-848cf5e3] .v-toolbar__content {
  height: 48px !important;
  background-color: #fff;
}
.v-main[data-v-848cf5e3] {
  padding-top: 48px !important;
}
.v-autocomplete .v-field .v-text-field__prefix,
.v-autocomplete .v-field .v-text-field__suffix,
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
  cursor: text;
}
.v-autocomplete .v-field .v-field__input > input {
  flex: 1 1;
}
.v-autocomplete .v-field input {
  min-width: 64px;
}
.v-autocomplete .v-field:not(.v-field--focused) input {
  min-width: 0;
}
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}
.v-autocomplete .v-autocomplete__selection-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-autocomplete__content {
  overflow: hidden;
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 4px;
}
.v-autocomplete__mask {
  background: rgb(var(--v-theme-surface-light));
}
.v-autocomplete__selection {
  display: inline-flex;
  align-items: center;
  height: 1.5rem;
  letter-spacing: inherit;
  line-height: inherit;
  max-width: calc(100% - 2px - 2px);
}
.v-autocomplete__selection:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
  top: 0px;
}
.v-autocomplete--selecting-index .v-autocomplete__selection {
  opacity: var(--v-medium-emphasis-opacity);
}
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
  opacity: 1;
}
.v-autocomplete--selecting-index .v-field__input > input {
  caret-color: transparent;
}
.v-autocomplete--single.v-text-field .v-field--focused input {
  flex: 1 1;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding-inline: inherit;
}
.v-autocomplete--single .v-field--active input {
  transition: none;
}
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
  opacity: 0;
}
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
  opacity: 0;
}
.v-autocomplete__menu-icon {
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
  opacity: var(--v-high-emphasis-opacity);
  transform: rotate(180deg);
}.v-chip {
  align-items: center;
  cursor: default;
  display: inline-flex;
  font-weight: 400;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  border-style: solid;
  border-width: 0;
  border-radius: 9999px;
}
.v-chip.v-chip--size-x-small {
  --v-chip-size: 0.625rem;
  --v-chip-height: 20px;
  font-size: 0.625rem;
  padding: 0 8px;
}
.v-chip.v-chip--size-x-small .v-avatar {
  --v-avatar-height: 14px;
}
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
  --v-avatar-height: 20px;
}

.v-chip.v-chip--size-x-small .v-avatar--start {
  -webkit-margin-start: -5.6px;
          margin-inline-start: -5.6px;
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--start {
  -webkit-margin-start: -8px;
          margin-inline-start: -8px;
}

.v-chip.v-chip--size-x-small .v-avatar--end {
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  -webkit-margin-end: -5.6px;
          margin-inline-end: -5.6px;
}
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end {
  -webkit-margin-end: -8px;
          margin-inline-end: -8px;
}

.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end + .v-chip__close {
  -webkit-margin-start: 12px;
          margin-inline-start: 12px;
}

.v-chip.v-chip--size-x-small .v-icon--start,
.v-chip.v-chip--size-x-small .v-chip__filter {
  -webkit-margin-start: -4px;
          margin-inline-start: -4px;
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}
.v-chip.v-chip--size-x-small .v-icon--end,
.v-chip.v-chip--size-x-small .v-chip__close {
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  -webkit-margin-end: -4px;
          margin-inline-end: -4px;
}
.v-chip.v-chip--size-x-small .v-icon--end + .v-chip__close,
.v-chip.v-chip--size-x-small .v-avatar--end + .v-chip__close,
.v-chip.v-chip--size-x-small .v-chip__append + .v-chip__close {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.v-chip.v-chip--size-small {
  --v-chip-size: 0.75rem;
  --v-chip-height: 26px;
  font-size: 0.75rem;
  padding: 0 10px;
}
.v-chip.v-chip--size-small .v-avatar {
  --v-avatar-height: 20px;
}
.v-chip--pill.v-chip.v-chip--size-small .v-avatar {
  --v-avatar-height: 26px;
}

.v-chip.v-chip--size-small .v-avatar--start {
  -webkit-margin-start: -7px;
          margin-inline-start: -7px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.v-chip--pill.v-chip.v-chip--size-small .v-avatar--start {
  -webkit-margin-start: -10px;
          margin-inline-start: -10px;
}

.v-chip.v-chip--size-small .v-avatar--end {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  -webkit-margin-end: -7px;
          margin-inline-end: -7px;
}
.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end {
  -webkit-margin-end: -10px;
          margin-inline-end: -10px;
}

.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end + .v-chip__close {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.v-chip.v-chip--size-small .v-icon--start,
.v-chip.v-chip--size-small .v-chip__filter {
  -webkit-margin-start: -5px;
          margin-inline-start: -5px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.v-chip.v-chip--size-small .v-icon--end,
.v-chip.v-chip--size-small .v-chip__close {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  -webkit-margin-end: -5px;
          margin-inline-end: -5px;
}
.v-chip.v-chip--size-small .v-icon--end + .v-chip__close,
.v-chip.v-chip--size-small .v-avatar--end + .v-chip__close,
.v-chip.v-chip--size-small .v-chip__append + .v-chip__close {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.v-chip.v-chip--size-default {
  --v-chip-size: 0.875rem;
  --v-chip-height: 32px;
  font-size: 0.875rem;
  padding: 0 12px;
}
.v-chip.v-chip--size-default .v-avatar {
  --v-avatar-height: 26px;
}
.v-chip--pill.v-chip.v-chip--size-default .v-avatar {
  --v-avatar-height: 32px;
}

.v-chip.v-chip--size-default .v-avatar--start {
  -webkit-margin-start: -8.4px;
          margin-inline-start: -8.4px;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}
.v-chip--pill.v-chip.v-chip--size-default .v-avatar--start {
  -webkit-margin-start: -12px;
          margin-inline-start: -12px;
}

.v-chip.v-chip--size-default .v-avatar--end {
  -webkit-margin-start: 6px;
          margin-inline-start: 6px;
  -webkit-margin-end: -8.4px;
          margin-inline-end: -8.4px;
}
.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end {
  -webkit-margin-end: -12px;
          margin-inline-end: -12px;
}

.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end + .v-chip__close {
  -webkit-margin-start: 18px;
          margin-inline-start: 18px;
}

.v-chip.v-chip--size-default .v-icon--start,
.v-chip.v-chip--size-default .v-chip__filter {
  -webkit-margin-start: -6px;
          margin-inline-start: -6px;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}
.v-chip.v-chip--size-default .v-icon--end,
.v-chip.v-chip--size-default .v-chip__close {
  -webkit-margin-start: 6px;
          margin-inline-start: 6px;
  -webkit-margin-end: -6px;
          margin-inline-end: -6px;
}
.v-chip.v-chip--size-default .v-icon--end + .v-chip__close,
.v-chip.v-chip--size-default .v-avatar--end + .v-chip__close,
.v-chip.v-chip--size-default .v-chip__append + .v-chip__close {
  -webkit-margin-start: 12px;
          margin-inline-start: 12px;
}

.v-chip.v-chip--size-large {
  --v-chip-size: 1rem;
  --v-chip-height: 38px;
  font-size: 1rem;
  padding: 0 14px;
}
.v-chip.v-chip--size-large .v-avatar {
  --v-avatar-height: 32px;
}
.v-chip--pill.v-chip.v-chip--size-large .v-avatar {
  --v-avatar-height: 38px;
}

.v-chip.v-chip--size-large .v-avatar--start {
  -webkit-margin-start: -9.8px;
          margin-inline-start: -9.8px;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}
.v-chip--pill.v-chip.v-chip--size-large .v-avatar--start {
  -webkit-margin-start: -14px;
          margin-inline-start: -14px;
}

.v-chip.v-chip--size-large .v-avatar--end {
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
  -webkit-margin-end: -9.8px;
          margin-inline-end: -9.8px;
}
.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end {
  -webkit-margin-end: -14px;
          margin-inline-end: -14px;
}

.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end + .v-chip__close {
  -webkit-margin-start: 21px;
          margin-inline-start: 21px;
}

.v-chip.v-chip--size-large .v-icon--start,
.v-chip.v-chip--size-large .v-chip__filter {
  -webkit-margin-start: -7px;
          margin-inline-start: -7px;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}
.v-chip.v-chip--size-large .v-icon--end,
.v-chip.v-chip--size-large .v-chip__close {
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
  -webkit-margin-end: -7px;
          margin-inline-end: -7px;
}
.v-chip.v-chip--size-large .v-icon--end + .v-chip__close,
.v-chip.v-chip--size-large .v-avatar--end + .v-chip__close,
.v-chip.v-chip--size-large .v-chip__append + .v-chip__close {
  -webkit-margin-start: 14px;
          margin-inline-start: 14px;
}

.v-chip.v-chip--size-x-large {
  --v-chip-size: 1.125rem;
  --v-chip-height: 44px;
  font-size: 1.125rem;
  padding: 0 17px;
}
.v-chip.v-chip--size-x-large .v-avatar {
  --v-avatar-height: 38px;
}
.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar {
  --v-avatar-height: 44px;
}

.v-chip.v-chip--size-x-large .v-avatar--start {
  -webkit-margin-start: -11.9px;
          margin-inline-start: -11.9px;
  -webkit-margin-end: 8.5px;
          margin-inline-end: 8.5px;
}
.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--start {
  -webkit-margin-start: -17px;
          margin-inline-start: -17px;
}

.v-chip.v-chip--size-x-large .v-avatar--end {
  -webkit-margin-start: 8.5px;
          margin-inline-start: 8.5px;
  -webkit-margin-end: -11.9px;
          margin-inline-end: -11.9px;
}
.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end {
  -webkit-margin-end: -17px;
          margin-inline-end: -17px;
}

.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end + .v-chip__close {
  -webkit-margin-start: 25.5px;
          margin-inline-start: 25.5px;
}

.v-chip.v-chip--size-x-large .v-icon--start,
.v-chip.v-chip--size-x-large .v-chip__filter {
  -webkit-margin-start: -8.5px;
          margin-inline-start: -8.5px;
  -webkit-margin-end: 8.5px;
          margin-inline-end: 8.5px;
}
.v-chip.v-chip--size-x-large .v-icon--end,
.v-chip.v-chip--size-x-large .v-chip__close {
  -webkit-margin-start: 8.5px;
          margin-inline-start: 8.5px;
  -webkit-margin-end: -8.5px;
          margin-inline-end: -8.5px;
}
.v-chip.v-chip--size-x-large .v-icon--end + .v-chip__close,
.v-chip.v-chip--size-x-large .v-avatar--end + .v-chip__close,
.v-chip.v-chip--size-x-large .v-chip__append + .v-chip__close {
  -webkit-margin-start: 17px;
          margin-inline-start: 17px;
}

.v-chip.v-chip--density-default {
  height: calc(var(--v-chip-height) + 0px);
}

.v-chip.v-chip--density-comfortable {
  height: calc(var(--v-chip-height) + -8px);
}

.v-chip.v-chip--density-compact {
  height: calc(var(--v-chip-height) + -12px);
}

.v-chip:hover > .v-chip__overlay {
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
}
.v-chip:focus-visible > .v-chip__overlay {
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
}
@supports not selector(:focus-visible) {
  .v-chip:focus > .v-chip__overlay {
    opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
  }
}
.v-chip--active > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true] > .v-chip__overlay {
  opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
}
.v-chip--active:hover > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:hover > .v-chip__overlay {
  opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
}
.v-chip--active:focus-visible > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-chip__overlay {
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
}
@supports not selector(:focus-visible) {
  .v-chip--active:focus > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus > .v-chip__overlay {
    opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
  }
}
.v-chip--variant-plain, .v-chip--variant-outlined, .v-chip--variant-text, .v-chip--variant-tonal {
  background: transparent;
  color: inherit;
}
.v-chip--variant-plain {
  opacity: 0.26;
}
.v-chip--variant-plain:focus, .v-chip--variant-plain:hover {
  opacity: 1;
}
.v-chip--variant-plain .v-chip__overlay {
  display: none;
}
.v-chip--variant-elevated, .v-chip--variant-flat {
  background: rgb(var(--v-theme-surface-variant));
  color: rgb(var(--v-theme-on-surface-variant));
}
.v-chip--variant-elevated {
  box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-chip--variant-flat {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-chip--variant-outlined {
  border: thin solid currentColor;
}
.v-chip--variant-text .v-chip__overlay {
  background: currentColor;
}
.v-chip--variant-tonal .v-chip__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-chip--border {
  border-width: thin;
}
.v-chip--link {
  cursor: pointer;
}
.v-chip--filter {
  -webkit-user-select: none;
          user-select: none;
}
.v-chip--label {
  border-radius: 4px;
}

.v-chip__content {
  align-items: center;
  display: inline-flex;
}
.v-autocomplete__selection .v-chip__content, .v-combobox__selection .v-chip__content, .v-select__selection .v-chip__content {
  overflow: hidden;
}

.v-chip__filter,
.v-chip__prepend,
.v-chip__append,
.v-chip__close {
  align-items: center;
  display: inline-flex;
}

.v-chip__close {
  cursor: pointer;
  flex: 0 1 auto;
  font-size: 18px;
  max-height: 18px;
  max-width: 18px;
  -webkit-user-select: none;
          user-select: none;
}
.v-chip__close .v-icon {
  font-size: inherit;
}

.v-chip__filter {
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-chip__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.v-chip--disabled {
  opacity: 0.3;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.v-chip--label {
  border-radius: 4px;
}.v-chip-group {
  display: flex;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 4px 0;
}
.v-chip-group .v-chip {
  margin: 4px 8px 4px 0;
}
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
  opacity: var(--v-activated-opacity);
}

.v-chip-group--column .v-slide-group__content {
  white-space: normal;
  flex-wrap: wrap;
  max-width: 100%;
}.v-slide-group {
  display: flex;
  overflow: hidden;
}

.v-slide-group__next,
.v-slide-group__prev {
  align-items: center;
  display: flex;
  flex: 0 1 52px;
  justify-content: center;
  min-width: 52px;
  cursor: pointer;
}
.v-slide-group__next--disabled,
.v-slide-group__prev--disabled {
  pointer-events: none;
  opacity: var(--v-disabled-opacity);
}

.v-slide-group__content {
  display: flex;
  flex: 1 0 auto;
  position: relative;
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.v-slide-group__content > * {
  white-space: initial;
}

.v-slide-group__container {
  contain: content;
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
}

.v-slide-group--vertical,
.v-slide-group--vertical .v-slide-group__container,
.v-slide-group--vertical .v-slide-group__content {
  flex-direction: column;
}.v-select .v-field .v-text-field__prefix,
.v-select .v-field .v-text-field__suffix,
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
  cursor: pointer;
}
.v-select .v-field .v-field__input > input {
  align-self: flex-start;
  opacity: 1;
  flex: 0 0;
  position: absolute;
  width: 100%;
  transition: none;
  pointer-events: none;
  caret-color: transparent;
}
.v-select .v-field--dirty .v-select__selection {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}
.v-select .v-select__selection-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-select__content {
  overflow: hidden;
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 4px;
}
.v-select__selection {
  display: inline-flex;
  align-items: center;
  letter-spacing: inherit;
  line-height: inherit;
  max-width: 100%;
}
.v-select .v-select__selection:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.v-select--selected .v-field .v-field__input > input {
  opacity: 0;
}
.v-select__menu-icon {
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-select--active-menu .v-select__menu-icon {
  opacity: var(--v-high-emphasis-opacity);
  transform: rotate(180deg);
}.v-virtual-scroll {
  display: block;
  flex: 1 1 auto;
  max-width: 100%;
  overflow: auto;
  position: relative;
}
.v-virtual-scroll__container {
  display: block;
}.v-badge {
  display: inline-block;
  line-height: 1;
}

.v-badge__badge {
  align-items: center;
  display: inline-flex;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.25rem;
  justify-content: center;
  min-width: 20px;
  padding: 4px 6px;
  pointer-events: auto;
  position: absolute;
  text-align: center;
  text-indent: 0;
  transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  background: rgb(var(--v-theme-surface-variant));
  color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
}
.v-badge--bordered .v-badge__badge::after {
  border-radius: inherit;
  border-style: solid;
  border-width: 2px;
  bottom: 0;
  color: rgb(var(--v-theme-background));
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(1.05);
}
.v-badge--dot .v-badge__badge {
  border-radius: 4.5px;
  height: 9px;
  min-width: 0;
  padding: 0;
  width: 9px;
}
.v-badge--dot .v-badge__badge::after {
  border-width: 1.5px;
}
.v-badge--inline .v-badge__badge {
  position: relative;
  vertical-align: middle;
}
.v-badge__badge .v-icon {
  color: inherit;
  font-size: 0.75rem;
  margin: 0 -2px;
}
.v-badge__badge img,
.v-badge__badge .v-img {
  height: 100%;
  width: 100%;
}

.v-badge__wrapper {
  display: flex;
  position: relative;
}
.v-badge--inline .v-badge__wrapper {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin: 0 4px;
}.v-switch .v-label {
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
}
.v-switch .v-switch__thumb {
  background-color: rgb(var(--v-theme-surface-bright));
  color: rgb(var(--v-theme-on-surface-bright));
}

.v-switch__loader {
  display: flex;
}
.v-switch__loader .v-progress-circular {
  color: rgb(var(--v-theme-surface));
}

.v-switch__track,
.v-switch__thumb {
  transition: none;
}
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
  background-color: rgb(var(--v-theme-error));
  color: rgb(var(--v-theme-on-error));
}

.v-switch__track-true {
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
  opacity: 0;
}

.v-switch__track-false {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.v-selection-control--dirty .v-switch__track-false {
  opacity: 0;
}

.v-switch__track {
  display: inline-flex;
  align-items: center;
  font-size: 0.5rem;
  padding: 0 5px;
  background-color: rgb(var(--v-theme-surface-variant));
  border-radius: 9999px;
  height: 14px;
  opacity: 0.6;
  min-width: 36px;
  cursor: pointer;
  transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
}
.v-switch--inset .v-switch__track {
  border-radius: 9999px;
  font-size: 0.75rem;
  height: 32px;
  min-width: 52px;
}

.v-switch__thumb {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 0.75rem;
  height: 20px;
  justify-content: center;
  width: 20px;
  pointer-events: none;
  transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-switch--inset .v-switch__thumb {
  height: 24px;
  width: 24px;
  transform: scale(0.6666666667);
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}
.v-switch--inset .v-switch__thumb--filled {
  transform: none;
}
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
  transform: none;
  transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
}

.v-switch .v-selection-control {
  min-height: var(--v-input-control-height);
}
.v-switch .v-selection-control__input {
  border-radius: 50%;
  transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-10px);
  position: absolute;
}
.v-switch .v-selection-control__input .v-icon {
  position: absolute;
}
.v-switch .v-selection-control--dirty .v-selection-control__input {
  transform: translateX(10px);
}
.v-switch.v-switch--indeterminate .v-selection-control__input {
  transform: scale(0.8);
}
.v-switch.v-switch--indeterminate .v-switch__thumb {
  transform: scale(0.75);
  box-shadow: none;
}
.v-switch.v-switch--inset .v-selection-control__wrapper {
  width: auto;
}
.twoFA[data-v-087c86b0] {
  margin-top: 20px;
}
.store-links[data-v-087c86b0] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-links > a[data-v-087c86b0] {
  flex: 1;
  text-align: center;
}
.store-links > a > img[data-v-087c86b0] {
  max-height: 40px;
}
.v-stepper.v-sheet {
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  border-radius: 4px;
  overflow: hidden;
}
.v-stepper.v-sheet.v-stepper--flat {
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
}

.v-stepper-header {
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  align-items: center;
  display: flex;
  position: relative;
  overflow-x: auto;
  justify-content: space-between;
  z-index: 1;
}
.v-stepper-header .v-divider {
  margin: 0 -16px;
}
.v-stepper-header .v-divider:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.v-stepper-header .v-divider:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.v-stepper--alt-labels .v-stepper-header {
  height: auto;
}
.v-stepper--alt-labels .v-stepper-header .v-divider {
  align-self: flex-start;
  margin: 35px -67px 0;
}

.v-stepper-window {
  margin: 1.5rem;
}

.v-stepper-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.v-stepper .v-stepper-actions {
  padding: 0 1.5rem 1rem;
}
.v-stepper-window-item .v-stepper-actions {
  padding: 1.5rem 0 0;
}.v-stepper-item {
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  flex: none;
  opacity: var(--v-medium-emphasis-opacity);
  padding: 1.5rem;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.v-stepper-item--selected {
  opacity: 1;
}
.v-stepper-item--error {
  color: rgb(var(--v-theme-error));
}
.v-stepper-item--disabled {
  opacity: var(--v-medium-emphasis-opacity);
  pointer-events: none;
}
.v-stepper--alt-labels .v-stepper-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-basis: 175px;
}

.v-stepper-item__avatar.v-avatar {
  background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
  color: rgb(var(--v-theme-on-surface-variant));
  font-size: 0.75rem;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}
.v-stepper-item__avatar.v-avatar .v-icon {
  font-size: 0.875rem;
}
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
  background: rgb(var(--v-theme-surface-variant));
}
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
  background: rgb(var(--v-theme-error));
}
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
  margin-bottom: 16px;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.v-stepper-item__title {
  line-height: 1;
}
.v-stepper--mobile .v-stepper-item__title {
  display: none;
}

.v-stepper-item__subtitle {
  font-size: 0.75rem;
  text-align: left;
  line-height: 1;
  opacity: var(--v-medium-emphasis-opacity);
}
.v-stepper--alt-labels .v-stepper-item__subtitle {
  text-align: center;
}
.v-stepper--mobile .v-stepper-item__subtitle {
  display: none;
}.v-window {
  overflow: hidden;
}
.v-window__container {
  display: flex;
  flex-direction: column;
  height: inherit;
  position: relative;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.v-window__controls {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.v-window__controls * {
  pointer-events: auto;
}
.v-window--show-arrows-on-hover {
  overflow: hidden;
}
.v-window--show-arrows-on-hover .v-window__left {
  transform: translateX(-200%);
}
.v-window--show-arrows-on-hover .v-window__right {
  transform: translateX(200%);
}
.v-window--show-arrows-on-hover:hover .v-window__left,
.v-window--show-arrows-on-hover:hover .v-window__right {
  transform: translateX(0);
}
.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
  position: absolute !important;
  top: 0;
  width: 100%;
}
.v-window-x-transition-enter-from {
  transform: translateX(100%);
}
.v-window-x-transition-leave-to {
  transform: translateX(-100%);
}
.v-window-x-reverse-transition-enter-from {
  transform: translateX(-100%);
}
.v-window-x-reverse-transition-leave-to {
  transform: translateX(100%);
}
.v-window-y-transition-enter-from {
  transform: translateY(100%);
}
.v-window-y-transition-leave-to {
  transform: translateY(-100%);
}
.v-window-y-reverse-transition-enter-from {
  transform: translateY(-100%);
}
.v-window-y-reverse-transition-leave-to {
  transform: translateY(100%);
}