/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@font-face {
  font-family: "Futura Std Book";
  src: url("Futura Std Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Futura Std Book;
  font-size: 13px;
  line-height: 24px;
  overscroll-behavior: none;
}

#loading {
  position: absolute;
  top: 48%;
  left: 46%;
  font-size: 2em;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media only screen and (max-width: 890px) {
  #loading {
    top: 45%;
    left: 40%;
  }
}

.logo {
  width: 220px;
  margin-top: 5px;
}
@media only screen and (max-width: 890px) {
  .logo {
    width: 190px;
  }
}
@media only screen and (max-width: 650px) {
  .logo {
    width: 170px;
  }
}

#info {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 890px) {
  #info {
    text-align: left;
    padding-left: 30px;
  }
}

#rooms {
  opacity: 0.9;
  position: absolute;
  display: inline-block;
  left: 30px;
  top: 30px;
  box-sizing: border-box;
  text-align: left;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  padding: 0;
}
@media only screen and (max-width: 890px) {
  #rooms {
    position: absolute;
    left: auto;
    right: 30px;
    top: 20px;
    display: block;
  }
}
#rooms p {
  margin: 5px;
}

#collection {
  opacity: 0.9;
  position: absolute;
  display: inline-block;
  right: 30px;
  top: 40px;
  box-sizing: border-box;
  text-align: left;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  padding: 0;
  color: white;
  font-size: 1em;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 650px) {
  #collection {
    position: absolute;
    right: 12px;
    top: 20px;
    display: block;
  }
}

select {
  background: #0091e6;
  border-color: #0071b3;
  color: white;
  cursor: pointer;
  padding: 10px 5px 5px;
  width: 120px;
  font-size: 1.1em;
  font-weight: 500;
}
@media only screen and (max-width: 650px) {
  select {
    font-size: 1.1em;
    width: 105px;
  }
}
select option {
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 500;
}
select:hover {
  background: #1aaaff;
}

.web-only {
  display: none;
}
@media only screen and (max-width: 650px) {
  .web-only {
    display: block;
  }
}

@media only screen and (max-width: 650px) {
  .line-space-above-web-only {
    margin-top: 7px;
  }
}

a, button, input, select {
  pointer-events: auto;
}

.wrapper {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 20px;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .wrapper {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
}

.wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
  display: none;
}
@media screen and (max-width: 900px) {
  .wrapper i {
    display: inline-block;
  }
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
  background: #f2f2f2;
}

.wrapper i:first-child {
  left: 0;
}

.wrapper i:last-child {
  right: 0;
}

.wrapper .carousel {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.carousel.dragging a {
  pointer-events: none;
}

.carousel img {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .carousel img {
    width: 180px;
  }
}
@media screen and (max-width: 650px) {
  .carousel img {
    width: 150px;
  }
}

.carousel a {
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  margin-right: 8px;
}
.carousel a img {
  border: 2px solid rgb(0, 0, 0);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.5);
}
.carousel a span {
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  display: block;
  color: white;
}

.carousel a:hover img {
  border-color: #00a1ff;
}
.carousel a:hover span {
  color: #00a1ff;
}

a.active {
  color: #00a1ff;
}
a.active img {
  border-color: #00a1ff;
}
a.active span {
  color: #00a1ff;
}

.carousel a:first-child {
  margin-left: 0px;
}

.hidden {
  display: none;
}

/*# sourceMappingURL=style.css.map */
