/* ==========================================================================
  layout
========================================================================== */
/* wrapper */
.l-wrapper {
  height: 100%;
}

.l-contents {
  height: 100%;
}

.hamburger,
.booknowRoom {
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booknowRoom {
  position: fixed;
  right: 0;
  top: 13%;
  z-index: 999;
}

@media (max-width: 767px) {
  .booknowRoom {
    top: 11%;
  }
}

.booknow {
  display: block;
  margin-bottom: 30px;
  background-color: #000;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  padding: 5px 10px;
}

.booknow:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 767px) {
  .booknow {
    right: 0;
    top: 65px;
    font-size: 16px;
  }
}

.btn {
  display: block;
  width: 100%;
  font-size: 18px;
  text-align: center;
  background-color: #000;
  padding: 20px 10px;
  color: #fff;
  opacity: 1;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}
