/* Next & previous buttons */
.room .prev, .room .next {
  cursor: pointer !important;
  position: absolute !important;
  top: 50% !important;
  width: auto !important;
  padding: 16px !important;
  margin-top: -22px !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 18px !important;
  transition: 0.6s ease !important;
  border-radius: 0 3px 3px 0 !important;
}

/* Position the "next button" to the right */
.room .next {
  right: 0 !important;
  border-radius: 3px 0 0 3px !important;
}

/* On hover, add a black background color with a little bit see-through */
.room .prev:hover, .room .next:hover {
  background-color: rgba(0,0,0,0.8) !important;
}

/* Caption text */
