html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-weight: lighter;
  overflow-x: hidden;
  font-family: "Athiti";
  background-color: #1b0d0a;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: #fec900;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 100%;
}

#cont {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #1b0d0a;
  overflow-y: hidden;
  box-sizing: border-box;
  margin-top: 120px;
}

#cont #search {
  position: absolute;
  left: 50%;
  width: auto;
  transform: translate(-50%, 0%);
}

#cont .booking {
  position: absolute;
  width: 80%;
  height: auto;
  left: 10%;
  background-color: #dac599;
  color: #1b0d0a;
  text-align: center;
  vertical-align: middle;
}

/*#cont .booking h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}*/

#l1 {
  height: 250px;
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  left: 2%;
}

#l2 {
  height: 250px;
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  right: 2%;
}

 table { 
    border: 1px solid white;
    border-collapse: collapse; 
    width: 50%; 
    background-color: #1b0d0a;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    overflow-y: hidden;
    text-align: center;
} 

table td, 
th { 
    border: 1px solid white; 
    text-align: left; 
    padding: 8px; 
    color: #dac599;
    background-color: #1b0d0a;
    text-align: center;
    font-family: "Athiti";
} 


@media only screen and (max-width: 786px) { 
  #l1, #l2 {
    display: none;
  }

  #cont {
    margin-top: 60px;
  }

  #cont #search {
    text-align: center;
    position: relative;
    width: auto;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 14px;
    color: #dac599;
  }

  #cont .booking h3 {
    font-size: 16px;
    position: relative;
  }

  #cont .booking h4 {
    font-size: 16px;
  }

}


@media only screen and (min-width: 760px) {
  #l1, #l2 {
    display: block;
  }
}