.offcanvas-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  background: #fff;
  height: 100%;
  max-width: 480px;
}

.offcanvas-wrap.open {
  transform: translateX(0);
  visibility: visible;
	
    overflow-y: scroll;
    right: 0;
    max-height: 100vh;
	padding-bottom: 50px;
}

.admin-bar .offcanvas-wrap {
  top: 32px;
}

.hs-overlay-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

body.hs-opened {
  overflow: hidden;
}

body.hs-opened .hs-overlay-backdrop {
  visibility: visible;
  opacity: 1;
}

@media(max-width: 600px) {
  .offcanvas-wrap {
    max-width: 100%;
    left: 0;
  }

  #meeting-venue-quick-detail {
    max-height: 90vh;
    overflow-y: hidden;
  }
}

#meeting-venue-quick-detail-title {
	color: rgba(47,8,115,1);
}


.facetwp-type-number_range {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
}

.facetwp-type-number_range input {	
    display: inline-flex;
    flex: 1;
    width: 50px;
    padding: 10px;
    border: solid 1px #ccc;
}