
/* Mobile Sticky CTA Bar */
.vh-sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  display:flex;
  gap:10px;
  padding:10px 12px;
  background:#ffffff;
  border-top:1px solid rgba(0,0,0,.08);
  z-index:9999;
}
.vh-sticky-cta .vh-cta-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  padding:12px 10px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  font-weight:700;
}
.vh-sticky-cta i{ font-size:18px; }
@media (min-width: 992px){
  .vh-sticky-cta{ display:none; }
}
/* prevent content hidden behind sticky bar */
@media (max-width: 991px){
  body{ padding-bottom: 80px; }
}
