/* Villamania public two-month range picker v1 */
.vmpr-display{
  box-sizing:border-box;
  width:100%;
  cursor:pointer!important;
  background:#fff!important;
}
.vmpr-real-hidden{display:none!important}

.vmpr-panel{
  position:fixed;
  z-index:2147483000;
  width:min(720px,calc(100vw - 24px));
  box-sizing:border-box;
  background:#fff;
  color:#1f2933;
  border:1px solid #d4cfc5;
  border-radius:12px;
  box-shadow:0 18px 55px rgba(0,0,0,.24);
  padding:14px;
  font-family:Arial,sans-serif;
}
.vmpr-panel[hidden]{display:none!important}

.vmpr-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid #ece8df;
}
.vmpr-title{font-size:14px;font-weight:700}
.vmpr-nav{display:flex;gap:6px}
.vmpr-nav button{
  width:34px;
  height:34px;
  border:1px solid #d5d0c7;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  font-size:18px;
}
.vmpr-months{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding-top:12px;
}
.vmpr-month-title{
  text-align:center;
  font-weight:700;
  padding-bottom:8px;
}
.vmpr-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:3px;
}
.vmpr-dow{
  text-align:center;
  font-size:11px;
  color:#777;
  padding:4px 0;
}
.vmpr-day{
  height:36px;
  border:0;
  background:transparent;
  border-radius:7px;
  cursor:pointer;
  font-size:13px;
}
.vmpr-day:hover{background:#eef3f6}
.vmpr-day.out{color:#aaa}
.vmpr-day.disabled{
  color:#ccc;
  text-decoration:line-through;
  cursor:not-allowed;
}
.vmpr-day.range{
  background:#e4edf2;
  border-radius:0;
}
.vmpr-day.start,.vmpr-day.end{
  background:#17222c;
  color:#fff;
  border-radius:8px;
}
.vmpr-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  border-top:1px solid #ece8df;
  margin-top:12px;
  padding-top:10px;
  font-size:12px;
  color:#666;
}
.vmpr-clear{
  border:0;
  background:transparent;
  color:#24577c;
  cursor:pointer;
}
@media(max-width:700px){
  .vmpr-months{grid-template-columns:1fr}
  .vmpr-month:nth-child(2){display:none}
  .vmpr-day{height:40px}
}

/* VM PUBLIC RANGE PICKER V2 AVAILABILITY START */
.vmpr-day.v2-blocked{
  background:#f7e6e3;
  color:#99473d;
  text-decoration:none;
  cursor:not-allowed;
}
.vmpr-day.v2-request{
  box-shadow:inset 0 0 0 1px #c5a45c;
}
.vmpr-day.v2-crosses-block{
  color:#c7c7c7;
  cursor:not-allowed;
}
/* VM PUBLIC RANGE PICKER V2 AVAILABILITY END */

/* VM PUBLIC RANGE PICKER V2.1 STEP BANNER START */
.vmpr-step{
  margin-top:12px;
  padding:12px 14px;
  border:1px solid #d8d3c9;
  border-radius:9px;
  background:#f4f2ec;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
  color:#1f2933;
}
.vmpr-panel .vmpr-title{
  font-size:16px;
}
.vmpr-panel .vmpr-foot{
  font-size:13px;
}
@media(max-width:700px){
  .vmpr-step{
    font-size:16px;
    padding:11px 12px;
  }
}
/* VM PUBLIC RANGE PICKER V2.1 STEP BANNER END */
