@charset "UTF-8";

*, html, body {
  margin: 0px;
}

body {
  overflow: hidden;
}

button#next {
  position: absolute;
  z-index: 1000;
  bottom: 200px;
  right: 3em;
  font-size: 1.5em;
  background-color: #fff;
  display: none;
}

div.sceneAreaWrapper {
  position: absolute;
  background-color: rgba(0, 102, 71, 0.6);
  background: linear-gradient(to top, rgba(0, 53, 37, 0.87), rgba(0, 102, 71, 0.7));
  width: 100vw;
  height: 120px;
  overflow: hidden;
  bottom: 0px;
  left: 0;
}

div.sceneArea {
  height: 137px;
  width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
}

div.sceneArea div.sceneAreaInner {
  height: 120px;
  padding: 20px 0 0 0;
  overflow: hidden;
}

div.sceneArea ul.sceneList {}

div.sceneArea ul.sceneList li {
  float: left;
  text-align: center;
  list-style: none;
  margin: 0 10px;
  cursor: pointer;
}

div.sceneArea ul.sceneList li p {
  font-size: 0.7rem;
  color: #fff;
  padding-top: 5px;
  text-shadow: 0 1px 3px rgba(17, 17, 17, 0.3);
  font-weight: normal;
}

div.sceneArea ul.sceneList li img {
  width: 130px;
  vertical-align: middle;
  border: 2px solid #82BC00;
  border-radius: 3px;
}

div.sceneArea ul.sceneList li.on img {
  border: 3px solid #ffffff;
}

.arrowLeft,
.arrowRight {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 43px;
  cursor: pointer;
  border-radius: 9999px;
  background: #0e0e0e;
  padding: 10px;
}

.arrowLeft img,
.arrowRight img {
  width: 100%;
}

.arrowLeft {
  left: 10px;
}

.arrowRight {
  right: 10px;
}

@media screen and (max-width: 480px) {

  .arrowLeft,
  .arrowRight {
    display: none;
  }
}
