.bookingDate h4, .reservationIn br, .buttonCancel {
  display: none;
}

.reservationIn input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -9px;
  background: #FFF;
  border: 1px solid #ccc;
}
.reservationIn input[type="checkbox"]:checked + span::before {
  border: 1px solid #111;
  background: #111;
}

.reservationIn input[type="checkbox"]:checked + span::after {
  left: 4px;
  width: 13px;
  height: 8px;
  margin-top: -5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.reservationIn input[type="checkbox"] + span {
    margin: 10px 0 10px;
    padding: 0 0 0 24px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

/* select box */
.cmbPerson0, .cmbPerson1 {
  background: url(../img/btn_select.png) no-repeat 95% 50%,#fff;
  margin-right: 5px;
}

/* search button */
.reservationWrap .reservationIn .buttonSubmit {
    background: url(../img/icon_right_white.png) no-repeat 80% 50%,#bca046;
    background-size: 7px auto;
    border-radius: 0;
    font-size: 1em;
    font-weight: normal;
    border: none;
    padding: 0;
    padding-right: 14px;
    text-align: center;
    width: 80px;
    height: 30px;
    margin: 10px 0 10px;
    -webkit-appearance: button;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    line-height: 1.42857143;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    user-select: none;
}