/* VM HOME CALENDAR NATIVE V2 */
.vm-home-date-v2-trigger{
  appearance:none!important;border:0!important;background:transparent!important;
  color:inherit!important;width:100%!important;min-width:0!important;
  padding:3px 0!important;margin:0!important;cursor:pointer!important;
  display:flex!important;align-items:center!important;gap:9px!important;
  font:inherit!important;text-align:left!important;line-height:1.25!important;
  min-height:30px!important;
}
.vm-home-date-v2-trigger:focus-visible{outline:2px solid rgba(20,101,79,.45)!important;outline-offset:4px}
.vm-home-date-v2-icon{width:17px;height:17px;flex:0 0 17px;display:inline-flex;opacity:.75}
.vm-home-date-v2-icon svg{display:block;width:100%;height:100%}
.vm-home-date-v2-value{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.vm-home-date-v2-trigger:hover .vm-home-date-v2-value{text-decoration:underline;text-underline-offset:3px}

.vm-home-calendar-v2{
  position:fixed;z-index:2147483000;display:none;
  width:min(900px,calc(100vw - 28px));padding:18px 20px 16px;
  background:#fff;color:#17231e;border:1px solid rgba(24,38,31,.16);
  border-radius:20px;box-shadow:0 26px 80px rgba(11,25,19,.24);
}
.vm-home-calendar-v2.vm-open{display:block}
.vm-home-calendar-v2-head{
  display:grid;grid-template-columns:44px 1fr 44px;align-items:center;margin-bottom:5px
}
.vm-home-calendar-v2-caption{text-align:center;font-size:13px;font-weight:700;color:#48534d}
.vm-home-calendar-v2-nav{
  width:38px;height:38px;display:grid;place-items:center;border:0;border-radius:50%;
  background:#f0efe9;color:#17231e;font-size:25px;line-height:1;cursor:pointer
}
.vm-home-calendar-v2-nav:hover{background:#e5e4de}
.vm-home-calendar-v2-months{display:grid;grid-template-columns:1fr 1fr;gap:34px}
.vm-home-calendar-v2-title{text-align:center;font-size:18px;font-weight:700;margin:8px 0 14px}
.vm-home-calendar-v2-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:3px}
.vm-home-calendar-v2-weekday{text-align:center;font-size:11px;color:#858c87;font-weight:700;padding:4px 0 8px}
.vm-home-calendar-v2-day,.vm-home-calendar-v2-empty{aspect-ratio:1.25 / 1;min-height:40px}
.vm-home-calendar-v2-day{
  border:0;background:transparent;color:#17231e;border-radius:10px;cursor:pointer;
  font:inherit;font-size:14px;position:relative
}
.vm-home-calendar-v2-day:hover:not(:disabled){background:#efeee8}
.vm-home-calendar-v2-day:disabled{color:#c5c9c6;cursor:default}
.vm-home-calendar-v2-day.vm-range{background:#e8efea;border-radius:0}
.vm-home-calendar-v2-day.vm-start,.vm-home-calendar-v2-day.vm-end{
  background:#12654f;color:#fff;border-radius:50%;font-weight:700
}
.vm-home-calendar-v2-day.vm-today:not(.vm-start):not(.vm-end){box-shadow:inset 0 0 0 1px #12654f}
.vm-home-calendar-v2-hint{text-align:center;font-size:13px;color:#69736d;margin:9px 0 5px;min-height:18px}
.vm-home-calendar-v2-footer{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  border-top:1px solid #ecebe6;margin-top:12px;padding-top:12px
}
.vm-home-calendar-v2-clear,.vm-home-calendar-v2-close{
  font:inherit;font-size:13px;border-radius:999px;padding:9px 15px;cursor:pointer
}
.vm-home-calendar-v2-clear{border:0;background:transparent;color:#5f6a64;text-decoration:underline}
.vm-home-calendar-v2-close{border:0;background:#12654f;color:#fff;font-weight:700}

@media(max-width:760px){
  .vm-home-calendar-v2{
    left:10px!important;right:10px!important;top:7vh!important;width:auto!important;
    max-height:86vh;overflow:auto;padding:14px;border-radius:18px
  }
  .vm-home-calendar-v2-months{grid-template-columns:1fr;gap:0}
  .vm-home-calendar-v2-month:nth-child(2){display:none}
  .vm-home-calendar-v2-day,.vm-home-calendar-v2-empty{min-height:43px}
}