#bookingFab{
  position:fixed;
  right:0;
  bottom:96px;
  z-index:9990;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  writing-mode:vertical-rl;
  text-orientation:upright;
  width:21px;
  height:85px;
  padding:9px 6px;
  border:2px solid #9B8BC4;
  border-right:none;
  border-top-left-radius:6px;
  border-bottom-left-radius:6px;
  background:#F9F6F0;
  cursor:pointer;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#6B5B95;
  letter-spacing:3px;
  box-shadow:-2px 2px 10px rgba(107,91,149,.12);
  transition:transform .2s ease, background .2s ease;
  user-select:none;
  white-space:nowrap;
}
#bookingFab:hover{
  transform:translateY(-2px);
  background:#EDE7F6;
}
#bookingFab .bf-text{display:inline-block;}
@media(max-width:768px){
  #bookingFab{
    bottom:72px;
    font-size:13px;
    letter-spacing:2px;
  }
}