.Vue-Toastification__container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 600px;
  box-sizing: border-box;
  display: flex;
  min-height: 100%;
  color: #fff;
  flex-direction: column;
  pointer-events: none;
}
@media only screen and (min-width : 600px) {
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right, .Vue-Toastification__container.top-center {
    top: 1em;
  }
  .Vue-Toastification__container.bottom-left, .Vue-Toastification__container.bottom-right, .Vue-Toastification__container.bottom-center {
    bottom: 1em;
    flex-direction: column-reverse;
  }
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.bottom-left {
    left: 1em;
  }
  .Vue-Toastification__container.top-left .Vue-Toastification__toast, .Vue-Toastification__container.bottom-left .Vue-Toastification__toast {
    margin-right: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-left .Vue-Toastification__toast--rtl, .Vue-Toastification__container.bottom-left .Vue-Toastification__toast--rtl {
      margin-right: unset;
      margin-left: auto;
    }
  }
  .Vue-Toastification__container.top-right, .Vue-Toastification__container.bottom-right {
    right: 1em;
  }
  .Vue-Toastification__container.top-right .Vue-Toastification__toast, .Vue-Toastification__container.bottom-right .Vue-Toastification__toast {
    margin-left: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-right .Vue-Toastification__toast--rtl, .Vue-Toastification__container.bottom-right .Vue-Toastification__toast--rtl {
      margin-left: unset;
      margin-right: auto;
    }
  }
  .Vue-Toastification__container.top-center, .Vue-Toastification__container.bottom-center {
    left: 50%;
    margin-left: -300px;
  }
  .Vue-Toastification__container.top-center .Vue-Toastification__toast, .Vue-Toastification__container.bottom-center .Vue-Toastification__toast {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Vue-Toastification__container .Vue-Toastification__toast {
    width: 100%;
  }
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right, .Vue-Toastification__container.top-center {
    top: 0;
  }
  .Vue-Toastification__container.bottom-left, .Vue-Toastification__container.bottom-right, .Vue-Toastification__container.bottom-center {
    bottom: 0;
    flex-direction: column-reverse;
  }
}

.Vue-Toastification__toast {
  display: inline-flex;
  position: relative;
  max-height: 800px;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  justify-content: space-between;
  font-family: "Lato", Helvetica, "Roboto", Arial, sans-serif;
  max-width: 600px;
  min-width: 326px;
  pointer-events: auto;
  overflow: hidden;
  transform: translateZ(0);
  direction: ltr;
}
.Vue-Toastification__toast--rtl {
  direction: rtl;
}
.Vue-Toastification__toast--default {
  background-color: #1976d2;
  color: #fff;
}
.Vue-Toastification__toast--info {
  background-color: #2196f3;
  color: #fff;
}
.Vue-Toastification__toast--success {
  background-color: #4caf50;
  color: #fff;
}
.Vue-Toastification__toast--error {
  background-color: #ff5252;
  color: #fff;
}
.Vue-Toastification__toast--warning {
  background-color: #ffc107;
  color: #fff;
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__toast {
    border-radius: 0px;
    margin-bottom: 0.5rem;
  }
}
.Vue-Toastification__toast-body {
  flex: 1;
  line-height: 24px;
  font-size: 16px;
  word-break: break-word;
  white-space: pre-wrap;
}
.Vue-Toastification__toast-component-body {
  flex: 1;
}
.Vue-Toastification__toast.disable-transition {
  transition: none !important;
  animation: none !important;
}

.Vue-Toastification__close-button {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  padding-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  align-items: center;
  color: #fff;
  opacity: 0.3;
  transition: visibility 0s, opacity 0.2s linear;
}
.Vue-Toastification__close-button:hover, .Vue-Toastification__close-button:focus {
  opacity: 1;
}
.Vue-Toastification__toast:not(:hover) .Vue-Toastification__close-button.show-on-hover {
  opacity: 0;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__close-button {
  padding-left: unset;
  padding-right: 10px;
}

@keyframes scale-x-frames {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Vue-Toastification__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
  animation: scale-x-frames linear 1 forwards;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__progress-bar {
  right: 0;
  left: unset;
  transform-origin: right;
}

.Vue-Toastification__icon {
  margin: auto 18px auto 0px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s ease;
  align-items: center;
  width: 20px;
  height: 100%;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__icon {
  margin: auto 0px auto 18px;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutRight {
  40% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(1000px, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Vue-Toastification__bounce-enter-active.top-left, .Vue-Toastification__bounce-enter-active.bottom-left {
  animation-name: bounceInLeft;
}
.Vue-Toastification__bounce-enter-active.top-right, .Vue-Toastification__bounce-enter-active.bottom-right {
  animation-name: bounceInRight;
}
.Vue-Toastification__bounce-enter-active.top-center {
  animation-name: bounceInDown;
}
.Vue-Toastification__bounce-enter-active.bottom-center {
  animation-name: bounceInUp;
}

.Vue-Toastification__bounce-leave-active.top-left, .Vue-Toastification__bounce-leave-active.bottom-left {
  animation-name: bounceOutLeft;
}
.Vue-Toastification__bounce-leave-active.top-right, .Vue-Toastification__bounce-leave-active.bottom-right {
  animation-name: bounceOutRight;
}
.Vue-Toastification__bounce-leave-active.top-center {
  animation-name: bounceOutUp;
}
.Vue-Toastification__bounce-leave-active.bottom-center {
  animation-name: bounceOutDown;
}

.Vue-Toastification__bounce-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}

/* ----------------------------------------------
 * Modified version from Animista
 * Animista is Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
@keyframes fadeOutTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.Vue-Toastification__fade-enter-active.top-left, .Vue-Toastification__fade-enter-active.bottom-left {
  animation-name: fadeInLeft;
}
.Vue-Toastification__fade-enter-active.top-right, .Vue-Toastification__fade-enter-active.bottom-right {
  animation-name: fadeInRight;
}
.Vue-Toastification__fade-enter-active.top-center {
  animation-name: fadeInTop;
}
.Vue-Toastification__fade-enter-active.bottom-center {
  animation-name: fadeInBottom;
}

.Vue-Toastification__fade-leave-active.top-left, .Vue-Toastification__fade-leave-active.bottom-left {
  animation-name: fadeOutLeft;
}
.Vue-Toastification__fade-leave-active.top-right, .Vue-Toastification__fade-leave-active.bottom-right {
  animation-name: fadeOutRight;
}
.Vue-Toastification__fade-leave-active.top-center {
  animation-name: fadeOutTop;
}
.Vue-Toastification__fade-leave-active.bottom-center {
  animation-name: fadeOutBottom;
}

.Vue-Toastification__fade-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}

/* ----------------------------------------------
 * Modified version from Animista
 * Animista is Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
@keyframes slideInBlurredLeft {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredTop {
  0% {
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredRight {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredBottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideOutBlurredTop {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 0%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredBottom {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredLeft {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) scaleX(2) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredRight {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1000px) scaleX(2) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
.Vue-Toastification__slideBlurred-enter-active.top-left, .Vue-Toastification__slideBlurred-enter-active.bottom-left {
  animation-name: slideInBlurredLeft;
}
.Vue-Toastification__slideBlurred-enter-active.top-right, .Vue-Toastification__slideBlurred-enter-active.bottom-right {
  animation-name: slideInBlurredRight;
}
.Vue-Toastification__slideBlurred-enter-active.top-center {
  animation-name: slideInBlurredTop;
}
.Vue-Toastification__slideBlurred-enter-active.bottom-center {
  animation-name: slideInBlurredBottom;
}

.Vue-Toastification__slideBlurred-leave-active.top-left, .Vue-Toastification__slideBlurred-leave-active.bottom-left {
  animation-name: slideOutBlurredLeft;
}
.Vue-Toastification__slideBlurred-leave-active.top-right, .Vue-Toastification__slideBlurred-leave-active.bottom-right {
  animation-name: slideOutBlurredRight;
}
.Vue-Toastification__slideBlurred-leave-active.top-center {
  animation-name: slideOutBlurredTop;
}
.Vue-Toastification__slideBlurred-leave-active.bottom-center {
  animation-name: slideOutBlurredBottom;
}

.Vue-Toastification__slideBlurred-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
:root{--v-calendar-picker-color:#fff;--v-calendar-input-bg-color:#fff;--v-calendar-input-bg-disable-color:#f5f5f5;--v-calendar-input-text-disable-color:#b8b8b9;--v-calendar-select-bg-color:#fff;--v-calendar-border-color:#eaeaeb;--v-calendar-triangle-color:#eaeaeb;--v-calendar-shadow:0 20px 30px 0 rgba(0,0,0,0.2);--v-calendar-top-shadow:3px -14px 30px 0px rgba(0,0,0,0.2);--v-calendar-text-color:#7b8187;--v-calendar-action-color:#7b8187;--v-calendar-text-disabled-color:#b8b8b9;--v-calendar-view-button-color:#7b8187;--v-calendar-view-button-font-weight:400;--v-calendar-view-button-font-size:1rem;--v-calendar-datepicker-icon-color:#1bba67;--v-calendar-datepicker-icon-size:1.1rem;--v-calendar-active-bg-color:#1bba67;--v-calendar-active-text-color:#fff;--v-calendar-range-bg-color:#edfff9;--v-calendar-range-text-color:#7b8187;--v-calendar-range-radius:100%;--v-calendar-day-hover-bg-color:#eaeaeb;--v-calendar-day-width:25px;--v-calendar-day-height:25px;--v-calendar-day-font-size:0.9rem;--v-calendar-day-font-weight:400;--v-calendar-day-name-font-size:0.9rem;--v-calendar-day-name-font-weight:500;--v-calendar-day-name-color:#7b8187;--v-calendar-input-border:1px solid #eaeaeb;--v-calendar-input-text-color:#7b8187;--v-calendar-input-font-size:0.9rem;--v-calendar-input-font-weight:400;--v-calendar-content-radius:0px;--v-calendar-year-font-size:1.1rem;--v-calendar-year-color:#7b8187;--v-calendar-year-font-weight:400;--v-calendar-year-disabled-color:#b8b8b9;--v-calendar-year-disabled-bg-color:transparent;--v-calendar-year-padding:10px;--v-calendar-year-border:none;--v-calendar-year-border-radius:none;--v-calendar-month-font-size:1.1rem;--v-calendar-month-color:#7b8187;--v-calendar-month-font-weight:400;--v-calendar-month-disabled-color:#b8b8b9;--v-calendar-month-disabled-bg-color:transparent;--v-calendar-month-padding:8px;--v-calendar-month-border:none;--v-calendar-month-border-radius:none}.v-calendar :focus{outline:none}.v-calendar *{outline:none;font-family:inherit}.v-calendar{position:relative;width:100%;width:-webkit-max-content;width:-moz-max-content;width:max-content;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.v-calendar .content{background:var(--v-calendar-picker-color);-webkit-box-shadow:var(--v-calendar-shadow);box-shadow:var(--v-calendar-shadow);position:absolute;top:56px;z-index:99999}.v-calendar .content,.v-calendar .input-field{display:-webkit-box;display:-ms-flexbox;display:flex}.v-calendar .input-field{position:relative;min-width:140px;font-weight:var(--v-calendar-input-font-weight)}.v-calendar .input-field .clearButton{position:absolute;top:50%;right:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;color:var(--v-calendar-text-color);padding:0;cursor:pointer;border:none;background:transparent}.v-calendar .input-field .clearButton svg{fill:currentColor}.v-calendar .input-field .clearButton,.v-calendar .input-field .clearButton svg{width:var(--v-calendar-day-font-size);height:var(--v-calendar-day-font-size)}.v-calendar .input-field input:disabled~svg{fill:var(--v-calendar-text-color)}.v-calendar .input-field.long{min-width:290px}.v-calendar .input-field input{padding-left:40px;padding-right:20px;font-size:var(--v-calendar-input-font-size);min-width:inherit;height:50px;border-radius:6px;border:var(--v-calendar-input-border);background-color:var(--v-calendar-input-bg-color);color:var(--v-calendar-input-text-color);font-weight:inherit}.v-calendar .input-field input:disabled{background-color:var(--v-calendar-input-bg-disable-color);color:var(--v-calendar-input-text-disable-color);cursor:not-allowed}.v-calendar .input-field svg{top:50%;position:absolute;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.v-calendar .input-field svg.datepicker{left:10px;width:var(--v-calendar-datepicker-icon-size);height:var(--v-calendar-datepicker-icon-size);fill:var(--v-calendar-datepicker-icon-color)}.v-calendar .calendar{width:-webkit-max-content;width:-moz-max-content;width:max-content}.v-calendar .calendar.range:first-child{border-right:1px solid var(--v-calendar-border-color)}.v-calendar .calendar:first-child:before{content:"";position:absolute;bottom:100%;top:-20px}.v-calendar .calendar .selected-field{padding-top:20px;background-color:var(--v-calendar-select-bg-color)}.v-calendar .calendar .selected-field .selected-date{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}.v-calendar .calendar .selected-field .viewButton{border:0;width:100%;padding:10px;color:var(--v-calendar-view-button-color);font-size:var(--v-calendar-view-button-font-size);font-weight:var(--v-calendar-view-button-font-weight);margin-right:10px;margin-left:10px;background:transparent;cursor:pointer}.v-calendar .calendar .selected-field .nextDateButton,.v-calendar .calendar .selected-field .prevDateButton{position:relative;border:0;background:transparent}.v-calendar .calendar .selected-field .nextDateButton:after,.v-calendar .calendar .selected-field .prevDateButton:after{content:"";display:inline-block;text-align:left;cursor:pointer;border:7px solid transparent}.v-calendar .calendar .selected-field .prevDateButton:after{border-right:10px solid var(--v-calendar-action-color)}.v-calendar .calendar .selected-field .nextDateButton:after{border-left:10px solid var(--v-calendar-action-color)}.v-calendar .calendar .days{display:grid;grid-template-columns:repeat(7,minmax(-webkit-max-content,1fr));grid-template-columns:repeat(7,minmax(max-content,1fr))}.v-calendar .calendar .months,.v-calendar .calendar .years{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start;max-width:calc(var(--v-calendar-day-width)*7 + 20px);min-height:250px}.v-calendar .calendar .days-selection,.v-calendar .calendar .selected-field{padding-left:20px;padding-right:20px}.v-calendar .calendar .days-selection .days{padding-bottom:20px}.v-calendar .calendar .days .day,.v-calendar .calendar .months .month,.v-calendar .calendar .years .year{background:transparent;border:0;text-align:center;cursor:pointer}.v-calendar .calendar .months .month,.v-calendar .calendar .years .year{width:-webkit-max-content;width:-moz-max-content;width:max-content;height:-webkit-max-content;height:-moz-max-content;height:max-content}.v-calendar .calendar .months .month{font-size:var(--v-calendar-month-font-size);font-weight:var(--v-calendar-month-font-weight);color:var(--v-calendar-month-color);padding:var(--v-calendar-month-padding);border:var(--v-calendar-month-border);border-radius:var(--v-calendar-year-month-radius);background-color:var(--v-calendar-month-bg-color)}.v-calendar .calendar .months .month:disabled{pointer-events:none;color:var(--v-calendar-month-disabled-color);background-color:var(--v-calendar-month-disabled-bg-color)}.v-calendar .calendar .days .day{padding:0;margin-right:10px;font-size:var(--v-calendar-day-font-size);font-weight:var(--v-calendar-day-font-weight);color:var(--v-calendar-text-color);width:100%;text-align:left}.v-calendar .calendar .days .day,.v-calendar .calendar .days .day .number{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v-calendar .calendar .days .day .number{width:var(--v-calendar-day-width);height:var(--v-calendar-day-height);-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;font-size:inherit}.v-calendar .calendar .days .day.name{pointer-events:none;font-size:var(--v-calendar-day-name-font-size);font-weight:var(--v-calendar-day-name-font-weight);color:var(--v-calendar-day-name-color);width:auto}.v-calendar .calendar .days .day.selectedDate .number{background:var(--v-calendar-active-bg-color);color:var(--v-calendar-active-text-color)}.v-calendar .calendar .days .day.circle .number{border-radius:100%}.v-calendar .calendar .days .day.selectedRange{background:var(--v-calendar-range-bg-color);color:var(--v-calendar-range-text-color)}.v-calendar .calendar:first-child .days .day.selectedDate{border-top-left-radius:var(--v-calendar-range-radius);border-bottom-left-radius:var(--v-calendar-range-radius)}.v-calendar .calendar:last-child .days .day.selectedDate{border-top-right-radius:var(--v-calendar-range-radius);border-bottom-right-radius:var(--v-calendar-range-radius)}.v-calendar .calendar .days .day.disabledDate{pointer-events:none;color:var(--v-calendar-text-disabled-color)}.v-calendar .calendar .days .day.disabledDate.selectedRange{background:var(--v-calendar-range-bg-color)}.v-calendar .calendar .days .day:hover .number{background:var(--v-calendar-day-hover-bg-color)}.v-calendar .calendar .years .year{font-size:var(--v-calendar-year-font-size);font-weight:var(--v-calendar-year-font-weight);color:var(--v-calendar-year-color);padding:var(--v-calendar-year-padding);border:var(--v-calendar-year-border);border-radius:var(--v-calendar-year-border-radius);background-color:var(--v-calendar-year-bg-color)}.v-calendar .calendar .years .year:disabled{pointer-events:none;color:var(--v-calendar-year-disabled-color);background-color:var(--v-calendar-year-disabled-bg-color)}.v-calendar.left .content{left:0;-webkit-transform:translateY(5px);transform:translateY(5px);border-bottom-left-radius:var(--v-calendar-content-radius);border-bottom-right-radius:var(--v-calendar-content-radius);border-top-right-radius:var(--v-calendar-content-radius)}.v-calendar.left .calendar:first-child:before{border-width:5px;border-style:solid;border-color:transparent transparent var(--v-calendar-triangle-color) transparent;left:0}.v-calendar.right .content{right:0;-webkit-transform:translateY(5px);transform:translateY(5px);border-bottom-left-radius:var(--v-calendar-content-radius);border-bottom-right-radius:var(--v-calendar-content-radius);border-top-left-radius:var(--v-calendar-content-radius)}.v-calendar.right .calendar:first-child:before{right:0;border-width:5px;border-style:solid;border-color:transparent transparent var(--v-calendar-triangle-color) transparent}.v-calendar.top .content{top:100%;-webkit-transform:translateY(calc(-100% - 66px));transform:translateY(calc(-100% - 66px));-webkit-box-shadow:var(--v-calendar-top-shadow);box-shadow:var(--v-calendar-top-shadow);border-top-left-radius:var(--v-calendar-content-radius);border-top-right-radius:var(--v-calendar-content-radius);border-bottom-right-radius:var(--v-calendar-content-radius)}.v-calendar.top .content .calendar:first-child:before{border-width:5px;border-style:solid;border-color:var(--v-calendar-triangle-color) transparent transparent transparent;top:100%;left:0}.v-calendar.bottom .content{-webkit-transform:translateY(5px);transform:translateY(5px);border-bottom-left-radius:var(--v-calendar-content-radius);border-bottom-right-radius:var(--v-calendar-content-radius);border-top-right-radius:var(--v-calendar-content-radius)}.v-calendar.bottom .content .calendar:first-child:before{left:0}.v-calendar.bottom .content .calendar:first-child:before,.v-calendar.center .calendar:first-child:before{border-width:5px;border-style:solid;border-color:transparent transparent var(--v-calendar-triangle-color) transparent}.v-calendar.center .calendar:first-child:before{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.v-calendar.center .content{-webkit-transform:translateY(5px) translateX(-50%);transform:translateY(5px) translateX(-50%);left:50%;border-bottom-left-radius:var(--v-calendar-content-radius);border-bottom-right-radius:var(--v-calendar-content-radius);border-top-right-radius:var(--v-calendar-content-radius)}
.vld-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  z-index: 1
}

.vld-overlay.is-active {
  display: flex
}

.vld-overlay.is-full-page {
  z-index: 999;
  position: fixed
}

.vld-overlay .vld-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 0.5
}

.vld-overlay .vld-icon {
  position: relative
}

.vld-parent {
  position: relative
}



