#block-bookingform {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4; }
  #block-bookingform.active {
    display: flex; }
  #block-bookingform .slot-table {
    display: table; }
    #block-bookingform .slot-table .slot-row {
      display: table-row; }
      #block-bookingform .slot-table .slot-row > * {
        display: table-cell; }
  #block-bookingform .booking-form-form {
    display: none; }
    #block-bookingform .booking-form-form.active {
      display: block; }
  #block-bookingform .booking-form-close-wrapper {
    position: absolute;
    top: 1em;
    right: 1em; }
    #block-bookingform .booking-form-close-wrapper a.booking-form-close:after {
      content: '\f057';
      width: 1em;
      height: 1em;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: FontAwesome;
      font-size: 2em;
      color: white; }
