* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, sans-serif;
  font-size: 0.75em;
  background-color: #eee;
}

.wrapper {
  display: grid;
  grid-template-columns: auto 250px 250px 250px 250px auto;
  grid-gap: 16px;
  padding-top: 16px;
}
@media only screen and (max-width: 1200px) {
  .wrapper {
    grid-template-columns: auto 175px 175px 175px 175px auto;
  }
}

nav {
  grid-column: 2/6;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

#nav_title a {
  color: #000;
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
}
#nav_title a span {
  color: #5DD7F7;
}

#nav_text {
  align-self: end;
  padding-left: 16px;
}

main {
  grid-column: 2/6;
  grid-row: 4/5;
  position: relative;
}

#gameContainer {
  outline: none;
  background: transparent !important;
}

#sceneInfoContainer {
  position: absolute;
  top: 0;
  right: 16px;
  display: none;
}

.scene-info-container-panel {
  width: 200px;
  height: 32px;
  background-color: #5DD7F7;
  border-radius: 2px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 16px;
  padding-left: 16px;
  padding-top: 16px;
}
.scene-info-container-panel button {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: bold;
}
.scene-info-container-panel button:hover {
  cursor: pointer;
}
.scene-info-container-panel__disabled {
  background-color: #212121;
}

#section_options {
  grid-column: 2/6;
  grid-row: 3/4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}

#playerSpeedOption {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
}
#playerSpeedOption span {
  align-self: start;
}

#playerSensibilityOption {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
}
#playerSensibilityOption span {
  align-self: start;
}

#selectSceneBtn {
  grid-column: 4/-1;
  transition: all 0.3s;
  outline: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #212121;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  border: none;
  height: 100%;
  width: 100%;
}
#selectSceneBtn:hover {
  background-color: #5DD7F7;
  box-shadow: none;
  cursor: pointer;
}

#section_scene {
  grid-column: 2/6;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: 30% auto;
  padding: 16px 64px 16px 64px;
}

#scene_name {
  margin-right: 4px;
}

#scene_description {
  line-height: 16px;
}

#section_poi {
  grid-column: 2/6;
  grid-row: 5/6;
  display: grid;
  grid-template-columns: 1fr 160px;
  grid-gap: 16px;
  transition: opacity 0.5s ease-in-out;
}

#poi_text_container {
  padding: 16px 64px;
}

#poi_name {
  margin-bottom: 16px;
  font-size: 16px;
}

#poi_description {
  font-size: 12px;
}

#poi_image {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  max-height: 160px;
}
#poi_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.panel {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
}

.animation__fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.2s;
}

.animation__fade-out {
  opacity: 1;
  animation-name: fadeOutOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.1s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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