/* Focused booking feedback refinements for the public umbrella flow. */
.date-field input[type="date"].input-error{
  border-color:rgba(138,56,47,.52);
  box-shadow:0 0 0 4px rgba(138,56,47,.08);
}

.booking-period-error{
  display:flex;
  align-items:flex-start;
  gap:9px;
  width:100%;
  margin:12px 0 0;
  padding:11px 13px;
  border:1px solid rgba(138,56,47,.18);
  border-radius:14px;
  background:rgba(138,56,47,.065);
  color:#793229;
  font-size:13px;
  font-weight:800;
  line-height:1.42;
}

.booking-period-error::before{
  content:"";
  width:7px;
  height:7px;
  min-width:7px;
  margin-top:.55em;
  border-radius:999px;
  background:#8a382f;
}

.booking-period-error[hidden]{
  display:none !important;
}

.map-period-notice{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:-6px 0 18px;
  padding:12px 14px;
  border:1px solid rgba(133,131,106,.24);
  border-radius:16px;
  background:rgba(255,255,255,.68);
  color:#4f5240;
  font-size:13px;
  font-weight:800;
  line-height:1.5;
  box-shadow:0 14px 30px rgba(47,43,39,.08);
}

.map-period-notice::before{
  content:"1";
  width:22px;
  height:22px;
  min-width:22px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--olive);
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1;
}

.map-period-notice[hidden]{
  display:none !important;
}

@media(max-width:700px){
  .booking-period-error{
    margin-top:10px;
    padding:10px 11px;
    font-size:12px;
    line-height:1.45;
  }

  .map-period-notice{
    margin:0 0 14px;
    padding:10px 11px;
    font-size:12px;
  }
}
