.v-calendar {
  background: rgb(var(--v-theme-background));
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
}

.v-calendar-weekly {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.v-calendar__container {
  border-top: thin solid #e0e0e0;
  border-left: thin solid #e0e0e0;
  border-right: thin solid #e0e0e0;
}

.v-calendar-weekly__head {
  display: grid;
  grid-template-columns: 24px repeat(7, 1fr);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.v-calendar-weekly__head.days__0 {
  grid-template-columns: 1fr;
}
.v-calendar-weekly__head.days__0.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px 1fr;
}
.v-calendar-weekly__head.days__1 {
  grid-template-columns: 1fr;
}
.v-calendar-weekly__head.days__1.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px 1fr;
}
.v-calendar-weekly__head.days__2 {
  grid-template-columns: repeat(2, 1fr);
}
.v-calendar-weekly__head.days__2.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(2, 1fr);
}
.v-calendar-weekly__head.days__3 {
  grid-template-columns: repeat(3, 1fr);
}
.v-calendar-weekly__head.days__3.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(3, 1fr);
}
.v-calendar-weekly__head.days__4 {
  grid-template-columns: repeat(4, 1fr);
}
.v-calendar-weekly__head.days__4.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(4, 1fr);
}
.v-calendar-weekly__head.days__5 {
  grid-template-columns: repeat(5, 1fr);
}
.v-calendar-weekly__head.days__5.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(5, 1fr);
}
.v-calendar-weekly__head.days__6 {
  grid-template-columns: repeat(6, 1fr);
}
.v-calendar-weekly__head.days__6.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(6, 1fr);
}
.v-calendar-weekly__head.days__7 {
  grid-template-columns: repeat(7, 1fr);
}
.v-calendar-weekly__head.days__7.v-calendar-weekly__head-weeknumbers {
  grid-template-columns: 24px repeat(7, 1fr);
}

.v-calendar-weekly__head-weekday, .v-calendar-weekly__head-weekday-with-weeknumber {
  flex: 1 0 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px 4px 0px 4px;
  font-size: 11px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: thin solid #e0e0e0;
}
.v-calendar-weekly__head-weekday:last-child, .v-calendar-weekly__head-weekday-with-weeknumber:last-child {
  border-right: none;
}
.v-calendar-weekly__head-weekday > div .v-btn, .v-calendar-weekly__head-weekday-with-weeknumber > div .v-btn {
  font-size: 1.5rem;
}

.v-calendar-weekly__head-weeknumber {
  background: rgb(var(--v-theme-surface-light));
  color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
}

.v-calendar-weekly__week {
  display: flex;
  flex: 1;
  height: unset;
  min-height: 0;
}

.v-calendar-month__weeknumber {
  padding-top: 6px;
  background: rgb(var(--v-theme-surface-light));
  border-bottom: thin solid #e0e0e0;
  color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.v-calendar-month__days {
  display: grid;
  flex: 1 1;
}
.v-calendar-month__days > .v-calendar-month__day {
  min-height: 150px;
}
.v-calendar-month__days.days__0 {
  grid-template-columns: 1fr;
}
.v-calendar-month__days.days__0 > .v-calendar-month__day {
  border-right: none;
}
.v-calendar-month__days.days__1 {
  grid-template-columns: 1fr;
}
.v-calendar-month__days.days__1 > .v-calendar-month__day {
  border-right: none;
}
.v-calendar-month__days.days__2 {
  grid-template-columns: repeat(2, 1fr);
}
.v-calendar-month__days.days__2 > .v-calendar-month__day:nth-child(2n) {
  border-right: none;
}
.v-calendar-month__days.days__3 {
  grid-template-columns: repeat(3, 1fr);
}
.v-calendar-month__days.days__3 > .v-calendar-month__day:nth-child(3n) {
  border-right: none;
}
.v-calendar-month__days.days__4 {
  grid-template-columns: repeat(4, 1fr);
}
.v-calendar-month__days.days__4 > .v-calendar-month__day:nth-child(4n) {
  border-right: none;
}
.v-calendar-month__days.days__5 {
  grid-template-columns: repeat(5, 1fr);
}
.v-calendar-month__days.days__5 > .v-calendar-month__day:nth-child(5n) {
  border-right: none;
}
.v-calendar-month__days.days__6 {
  grid-template-columns: repeat(6, 1fr);
}
.v-calendar-month__days.days__6 > .v-calendar-month__day:nth-child(6n) {
  border-right: none;
}
.v-calendar-month__days.days__6.v-calendar-month__weeknumbers {
  grid-template-columns: 24px repeat(6, 1fr);
}
.v-calendar-month__days.days__7 {
  grid-template-columns: repeat(7, 1fr);
}
.v-calendar-month__days.days__7 > .v-calendar-month__day:nth-child(7n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__0 {
  grid-template-columns: 24px 1fr;
}
.v-calendar-month__days.days-with-weeknumbers__0 > .v-calendar-month__day {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__1 {
  grid-template-columns: 24px 1fr;
}
.v-calendar-month__days.days-with-weeknumbers__1 > .v-calendar-month__day {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__2 {
  grid-template-columns: 24px repeat(2, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__2 > .v-calendar-month__day:nth-child(3n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__3 {
  grid-template-columns: 24px repeat(3, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__3 > .v-calendar-month__day:nth-child(4n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__4 {
  grid-template-columns: 24px repeat(4, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__4 > .v-calendar-month__day:nth-child(5n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__5 {
  grid-template-columns: 24px repeat(5, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__5 > .v-calendar-month__day:nth-child(6n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__6 {
  grid-template-columns: 24px repeat(6, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__6 > .v-calendar-month__day:nth-child(7n) {
  border-right: none;
}
.v-calendar-month__days.days-with-weeknumbers__7 {
  grid-template-columns: 24px repeat(7, 1fr);
}
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(7n) {
  border-right: thin solid thin;
}
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
  border-right: none;
}
.v-calendar-day {
  position: relative;
  display: flex;
  flex-direction: column;
}

.v-calendar-weekly .v-calendar__container {
  display: grid;
}
.v-calendar-weekly .v-calendar__container.days__7 {
  grid-template-columns: repeat(7, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__6 {
  grid-template-columns: repeat(6, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__5 {
  grid-template-columns: repeat(5, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__4 {
  grid-template-columns: repeat(4, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__3 {
  grid-template-columns: repeat(3, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__2 {
  grid-template-columns: repeat(2, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__1 {
  grid-template-columns: repeat(1, 1fr);
}
.v-calendar-weekly .v-calendar__container.days__0 {
  grid-template-columns: repeat(1, 1fr);
}
.v-calendar-day__row-with-label {
  display: grid;
  grid-template-columns: 48px 8px 1fr;
  border-right: thin solid #e0e0e0;
}
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
  position: relative;
  border-right: thin solid #e0e0e0;
}
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
  content: "";
  border-bottom: thin solid #e0e0e0;
  position: absolute;
  width: 100%;
  margin-top: -1px;
  z-index: 3;
  pointer-events: none;
}
.v-calendar-day__row-with-label .v-calendar-day__row-label {
  font-size: 10px;
  text-align: center;
  position: relative;
  top: -8px;
}
.v-calendar-day__row-with-label .v-calendar-day__row-content {
  border-bottom: thin solid #e0e0e0;
}
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
  border-bottom: none;
}

.v-calendar-day__row-without-label {
  display: grid;
  grid-template-columns: 1fr;
  border-right: thin solid #e0e0e0;
}
.v-calendar-day__row-without-label .v-calendar-day__row-content {
  overflow: hidden;
  border-bottom: thin solid #e0e0e0;
}
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
  border-bottom: none;
}
.v-calendar-internal-event {
  overflow: hidden;
  padding: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-calendar-header {
  align-items: center;
  display: flex;
  min-height: 64px;
}

.v-calendar-header__today {
  margin-inline-end: 24px;
}

.v-calendar-header__title {
  font-size: 1.5rem;
  margin-inline-start: 24px;
}
.v-calendar-month__day {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 150px;
  border-right: thin solid #e0e0e0;
  border-bottom: thin solid #e0e0e0;
  flex: 1 1 auto;
  border-inline-end: thin solid #e0e0e0;
}

.v-calendar-weekly__day {
  flex: 1;
  width: 0;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding: 0px 0px 0px 0px;
  min-width: 0;
  min-height: 150px;
  border-right: thin solid #e0e0e0;
  border-bottom: thin solid #e0e0e0;
  flex: 1 1 auto;
  border-inline-end: thin solid #e0e0e0;
  text-align: center;
}
.v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
  color: currentColor;
}

.v-calendar-weekly__day-label {
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  box-shadow: none;
  text-align: center;
}
.v-calendar-weekly__day-label .v-btn {
  font-size: 12px;
  text-transform: none !important;
}
.v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
  background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
  color: rgb(var(--v-theme-on-surface-variant));
}

.v-calendar-weekly__day-month {
  position: absolute;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: none;
  top: 0;
  left: 36px;
  height: 32px;
  line-height: 32px;
}

.v-calendar-weekly__day-alldayevents-container {
  min-height: 24px;
}
.v-picker.v-sheet {
  display: grid;
  grid-auto-rows: min-content;
  grid-template-areas: "title" "header" "body";
  overflow: hidden;
  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: 4px;
}
.v-picker.v-sheet.v-picker--with-actions {
  grid-template-areas: "title" "header" "body" "actions";
}

.v-picker__body {
  grid-area: body;
  overflow: hidden;
  position: relative;
}

.v-picker__header {
  grid-area: header;
}

.v-picker__actions {
  grid-area: actions;
  padding: 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.v-picker__actions .v-btn {
  min-width: 48px;
}
.v-picker__actions .v-btn:not(:last-child) {
  margin-inline-end: 8px;
}

.v-picker--landscape {
  grid-template-areas: "title" "header body" "header body";
}

.v-picker--landscape.v-picker--with-actions {
  grid-template-areas: "title" "header body" "header actions";
}

.v-picker-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  grid-area: title;
  padding-inline: 24px 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.1666666667em;
}
.v-number-input input[type=number] {
  -moz-appearance: textfield;
}
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.v-number-input .v-field {
  padding-inline-end: 0;
  padding-inline-start: 0;
}
.v-number-input--inset .v-divider {
  height: 55%;
  width: 55%;
  align-self: center;
}
.v-number-input--split .v-field__input {
  text-align: center;
}
.v-number-input--stacked .v-number-input__control {
  flex-direction: column-reverse;
}
.v-number-input--stacked .v-number-input__control .v-btn {
  flex: 1;
}
.v-number-input--hide-input .v-field {
  flex: none;
}
.v-number-input--hide-input .v-field__input {
  width: 0;
  padding-inline: 0;
}
.v-number-input__control {
  display: flex;
  height: 100%;
}
.v-number-input__control .v-btn {
  background-color: transparent;
  border-radius: 0;
}
.v-time-picker.v-picker {
  padding: 24px;
  width: 328px;
}
.v-time-picker.v-picker .v-picker-title {
  padding: 0;
  margin-bottom: 20px;
}
.v-time-picker-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 36px;
}
.v-time-picker-controls__text {
  padding-bottom: 12px;
}
.v-time-picker-controls__time {
  display: flex;
  white-space: nowrap;
  direction: ltr;
  justify-content: center;
}
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
  width: 96px;
  height: 80px;
  font-size: 56px;
}
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
  background: rgb(var(--v-theme-primary));
}
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
  width: 96px;
  height: 80px;
}
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
  width: 64px;
  height: 80px;
  font-size: 40px;
}
.v-time-picker-controls__time__separator {
  font-size: 56px;
  height: 80px;
  width: 24px;
  text-align: center;
}
.v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
  height: 80px;
  font-size: 56px;
}

.v-time-picker-controls__ampm {
  margin-left: 12px;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  text-transform: uppercase;
}
.v-time-picker-controls__ampm--readonly {
  pointer-events: none;
}
.v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
  opacity: 0.6;
}
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
  font-size: 18px;
  padding: 0 8px;
  min-width: 52px;
  height: 40px;
}
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
  border-radius: 4px 4px 0 0;
  border: 1px solid;
}
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
  border-radius: 0 0 4px 4px;
  border: 1px solid;
  border-top: none;
}
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
  background: rgb(var(--v-theme-primary));
}

.v-picker__title--landscape .v-time-picker-controls {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.v-picker__title--landscape .v-time-picker-controls__time {
  text-align: right;
}
.v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
.v-picker__title--landscape .v-time-picker-controls__time span {
  height: 55px;
  font-size: 55px;
}
.v-picker__title--landscape .v-time-picker-controls__ampm {
  margin: 16px 0 0;
  align-self: initial;
  text-align: center;
}

.v-picker--time .v-picker__title--landscape {
  padding: 0;
}
.v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
  text-align: center;
}
.v-time-picker-clock {
  background: rgb(var(--v-theme-background));
  color: rgb(var(--v-theme-on-background));
}
.v-time-picker-clock:after {
  color: rgb(var(--v-theme-primary));
}
.v-time-picker-clock .v-time-picker-clock__item--active {
  background-color: rgb(var(--v-theme-surface-variant));
  color: rgb(var(--v-theme-on-surface-variant));
}

.v-time-picker-clock {
  margin: 0 auto;
  background: rgb(var(--v-theme-surface-light));
  border-radius: 50%;
  position: relative;
  transition: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 256px;
  width: 256px;
  flex: 1 0 auto;
}
.v-time-picker-clock__container {
  display: flex;
  flex-direction: column;
  flex-basis: 290px;
  justify-content: center;
  padding: 10px;
}
.v-time-picker-clock__hand {
  background-color: currentColor;
  height: calc(50% - 4px);
  width: 2px;
  bottom: 50%;
  left: calc(50% - 1px);
  transform-origin: center bottom;
  position: absolute;
  will-change: transform;
  z-index: 1;
}
.v-time-picker-clock__hand:before {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.v-time-picker-clock__hand:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  top: 100%;
  left: 50%;
  border-radius: 100%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}
.v-time-picker-clock__hand--inner:after {
  height: 14px;
}
.v-time-picker-clock--readonly {
  pointer-events: none;
}
.v-time-picker-clock .v-time-picker-clock__item--disabled {
  opacity: var(--v-disabled-opacity);
}

.v-picker--full-width .v-time-picker-clock__container {
  max-width: 290px;
}

.v-time-picker-clock__inner {
  position: absolute;
  bottom: 27px;
  left: 27px;
  right: 27px;
  top: 27px;
}

.v-time-picker-clock__item {
  align-items: center;
  border-radius: 100%;
  cursor: default;
  display: flex;
  font-size: 16px;
  justify-content: center;
  height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translate(-50%, -50%);
}
.v-time-picker-clock__item > span {
  z-index: 1;
}
.v-time-picker-clock__item:before, .v-time-picker-clock__item:after {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 14px;
  width: 14px;
  transform: translate(-50%, -50%);
}
.v-time-picker-clock__item:after, .v-time-picker-clock__item:before {
  height: 40px;
  width: 40px;
}
.v-time-picker-clock__item--active {
  cursor: default;
  z-index: 2;
}
.v-time-picker-clock__item--disabled {
  pointer-events: none;
}

.v-picker--landscape .v-time-picker-clock__container {
  flex-direction: row;
}
.v-treeview-item.v-treeview-item--filtered {
  display: none;
}

.v-treeview {
  --indent-padding: 0px;
}

.v-treeview-group.v-list-group {
  --list-indent-size: 16px;
}
.v-list--slim .v-treeview-group.v-list-group {
  --prepend-width: 16px;
}
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
  padding-inline-start: calc(12px + var(--indent-padding)) !important;
}
