@font-face {
  font-family: f2;
  src: url("/media/games/riddle-challenge/fonts/Ariston Comic Font.otf");
}
#game-area {
  width: 1280px;
  height: 720px;
  transform: translate(-50%, -50%) scale(1);
  left: 50%;
  top: 50%;
  position: absolute;
  background: url("/media/games/riddle-challenge/images/background.jpg");
  background-size: cover;
  user-select: none;
}
#game-area ::-webkit-scrollbar {
  width: 0px;
}
#game-area #home-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999999;
}
#game-area #home-section #home-logo {
  height: 65%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: -10px;
}
#game-area #home-section #home-logo img {
  height: 100%;
  width: auto;
  opacity: 0;
  transform: scale(0);
}
#game-area #riddle-list-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#game-area #riddle-list-section #riddle-progress {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  z-index: 10;
}
#game-area #riddle-list-section #riddle-progress #riddles-completed {
  color: white;
  font-size: 35px;
  font-family: puzzleGamesMainFont;
  text-align: center;
  text-shadow: 3px 3px purple;
  margin: 0;
  font-weight: bold;
}
#game-area #riddle-list-section #select-riddle-title {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
  width: 500px;
  opacity: 0;
}
#game-area #riddle-list-section #select-riddle-title img {
  width: 100%;
  animation: scale 1.5s infinite;
}
#game-area #riddle-list-section #riddle-container {
  background: url("/media/games/riddle-challenge/images/riddles-container.png");
  background-size: cover;
  width: 55%;
  margin-left: 22.5%;
  height: 490px;
  transform: scale(0);
  position: absolute;
  margin-top: 30px;
  opacity: 0;
}
#game-area #riddle-list-section #riddle-list {
  width: 86%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 70px;
  max-height: 94%;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 23px;
  padding: 20px 0;
}
#game-area #riddle-list-section #riddle-list .riddle {
  width: 100%;
  height: 116px;
  background: url("/media/games/riddle-challenge/images/rect.png");
  background-size: cover;
  margin: 15px 0;
  cursor: pointer;
  transition: 0.1s;
  position: relative;
}
#game-area #riddle-list-section #riddle-list .riddle:active {
  transform: scale(0.97);
  opacity: 0.9;
  filter: brightness(1.1);
}
#game-area #riddle-list-section #riddle-list .riddle .riddle-number {
  color: white;
  font-size: 50px;
  font-family: puzzleGamesMainFont;
  position: absolute;
  width: 80px;
  margin-top: 20px;
  margin-left: -8px;
  text-align: center;
}
#game-area #riddle-list-section #riddle-list .riddle .riddle-text {
  color: white;
  font-size: 25px;
  width: 86%;
  margin-left: 13%;
  height: 100%;
  padding: 10px 20px;
  font-family: puzzleGamesMainFont;
  position: relative;
  line-height: 27px;
  align-items: center;
  display: flex;
  margin-top: -3px;
  text-transform: uppercase;
  text-shadow: 3px 3px purple;
}
#game-area #riddle-list-section #riddle-list .riddle .riddle-completed {
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 0, 0.5);
  border-radius: 15px;
  display: none;
}
#game-area #riddle-list-section #riddle-list .riddle .riddle-completed img {
  position: absolute;
  height: 80%;
}
#game-area #riddle-list-section #riddle-list .completed {
  transform: scale(0.9);
}
#game-area #riddle-list-section #riddle-list .completed .riddle-completed {
  display: block;
}
#game-area #riddle-list-section #riddle-list .completed:active {
  transform: scale(0.87);
  opacity: 0.9;
  filter: brightness(1.1);
}
#game-area #correct-riddle-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#game-area #correct-riddle-section div {
  animation: scale 1.5s infinite;
  height: 100%;
}
#game-area #correct-riddle-section #correct-answer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  margin-top: -100px;
  font-family: puzzleGamesMainFont;
  color: white;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.241);
  text-transform: uppercase;
  font-size: 80px;
  color: #a53801;
  top: 100%;
  opacity: 0;
  text-wrap: nowrap;
}
#game-area #correct-riddle-section #correct-answer span {
  color: white;
  padding: 0 50px;
}
#game-area #correct-riddle-section .content {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: url("/media/games/riddle-challenge/images/correct-screen.png");
  background-size: cover;
  width: 800px;
  height: 415px;
  padding: 50px 70px;
  animation: none;
  opacity: 0;
}
#game-area #correct-riddle-section .content p {
  color: white;
  font-size: 43px;
  width: 100%;
  height: 100%;
  font-family: puzzleGamesMainFont;
  position: relative;
  line-height: 50px;
  align-items: center;
  display: flex;
  margin-top: 0px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 45px;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.093);
}
#game-area #incorrect-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 0, 0, 0.535);
  left: 0;
  top: 0;
  z-index: 99;
}
#game-area #incorrect-section div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 22;
  width: 100%;
}
#game-area #incorrect-section p {
  color: white;
  font-family: puzzleGamesMainFont;
  font-size: 100px;
  width: 100%;
  text-align: center;
  animation: scale 1.5s infinite;
  text-shadow: 4px 4px rgba(128, 0, 128, 0.695);
}
#game-area #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 20px 70px;
}
#game-area #play-section #guesses {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(0) translateY(0%);
  margin: 20px 80px;
  opacity: 0;
}
#game-area #play-section #guesses p {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-family: f2;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 2px;
  text-shadow: 3px 4px rgba(0, 0, 0, 0.189);
}
#game-area #play-section #guesses h6 {
  color: #a53801;
  text-align: center;
  text-transform: uppercase;
  font-family: f2;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 2px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.189);
  margin-top: -30px;
}
#game-area #play-section #guesses {
  left: 100%;
  transform: translateX(-100%);
  margin-left: -30px;
  margin-top: 0px;
}
#game-area #play-section #guesses h6 {
  font-size: 70px;
  margin-top: -50px;
}
#game-area #play-section #home-btn {
  width: 90px;
  cursor: pointer;
  opacity: 0;
  margin-left: -40px;
}
#game-area #play-section #home-btn img {
  width: 90px;
}
#game-area #play-section #home-btn:active {
  transform: scale(0.97);
  opacity: 0.9;
  filter: brightness(1.1);
}
#game-area #play-section #riddle-content {
  width: 800px;
  height: 360px;
  background: url("/media/games/riddle-challenge/images/riddle-rect.png");
  background-size: cover;
  margin-left: -400px;
  position: relative;
  left: 50%;
  margin-top: -10px;
  transform: scale(0);
  opacity: 0;
}
#game-area #play-section #riddle-content #riddle-nb, #game-area #play-section #riddle-content #hint-btn {
  font-size: 39px;
  color: white;
  font-family: puzzleGamesMainFont;
  text-transform: uppercase;
  width: 230px;
  margin-left: 30px;
  text-align: center;
  padding-top: 0px;
  position: relative;
  text-shadow: 4px 4px rgba(128, 0, 128, 0.695);
  z-index: 2;
}
#game-area #play-section #riddle-content #hint-btn {
  background: url("/media/games/riddle-challenge/images/hint-btn.png");
  background-size: cover;
  position: absolute;
  width: 170px;
  top: 0;
  left: 100%;
  transform: translateX(-140%);
  cursor: pointer;
}
#game-area #play-section #riddle-content #hint-btn p {
  padding-top: 13px;
}
#game-area #play-section #riddle-content #hint-btn:active {
  transform: translateX(-140%) scale(0.97);
  filter: brightness(1.1);
}
#game-area #play-section #riddle-content #riddle-nb {
  background: url("/media/games/riddle-challenge/images/riddle-btn.png");
  background-size: cover;
  position: absolute;
  width: 250px;
  height: 85px;
  top: 0;
  left: 44%;
  transform: translateX(-140%);
  cursor: pointer;
}
#game-area #play-section #riddle-content #riddle-nb p {
  padding-top: 13px;
}
#game-area #play-section #riddle-content #riddle-nb:active {
  transform: translateX(-140%) scale(0.97);
  filter: brightness(1.1);
}
#game-area #play-section #riddle-content #riddle-text {
  position: absolute;
  margin-top: 85px;
  height: 70%;
  padding: 20px 50px;
  font-size: 40px;
  color: white;
  font-family: puzzleGamesMainFont;
  text-transform: uppercase;
  line-height: 50px;
  display: flex;
  align-items: center;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.093);
  z-index: 0;
  overflow-y: auto;
}
#game-area #play-section #riddle-answer {
  width: 800px;
  height: 116px;
  background: url("/media/games/riddle-challenge/images/riddle-answer.png");
  background-size: cover;
  margin-left: -400px;
  position: relative;
  left: 50%;
  margin-top: 30px;
  opacity: 0;
}
#game-area #play-section #riddle-answer input {
  background: transparent;
  border: none;
  outline: none;
  width: 79.5%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  text-wrap: nowrap;
  font-size: 50px;
  color: white;
  font-family: puzzleGamesMainFont;
  margin-top: 7px;
  filter: brightness(1.2);
  text-transform: uppercase;
}
#game-area #play-section #riddle-answer img {
  position: absolute;
  height: 80px;
  left: 100%;
  transform: translateX(-100%) translateY(-50%);
  top: 50%;
  margin-left: -30px;
  margin-top: 7px;
  cursor: pointer;
  transition: 0.1s;
}
#game-area #play-section #riddle-answer img:active {
  transform: translateX(-100%) translateY(-50%) scale(0.97);
  opacity: 0.9;
  filter: brightness(1.1);
}
#game-area #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#game-area #end-section .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#game-area #end-section #end-logo {
  display: flex;
  justify-content: center;
  animation: logoAnim_v2 1.5s infinite;
  height: 280px;
  margin-top: -70px;
}
#game-area #end-section #end-logo img {
  height: 100%;
  opacity: 0;
}
#game-area #end-section #end-btns {
  position: relative;
  width: 100%;
  margin-top: 30px;
  opacity: 0;
}
#game-area #end-section #end-btns div {
  display: flex;
  justify-content: center;
  width: 380px;
  margin: 10px auto;
  cursor: pointer;
  animation: scale 1.5s infinite;
}
#game-area #end-section #end-btns div img {
  width: 100%;
  cursor: pointer;
}
#game-area #end-section #end-btns div img:active {
  transform: scale(0.95);
  opacity: 0.9;
  filter: brightness(1.1);
  transition: 0.2s;
}

@media (max-width: 600px) {
  #game-area #home-section #home-logo {
    height: 30%;
  }
  #game-area #riddle-list-section #riddle-progress {
    position: absolute;
    top: 88.5%;
    right: 30px;
    opacity: 0;
    z-index: 10;
  }
  #game-area #riddle-list-section #riddle-progress #riddles-completed {
    color: white;
    font-size: 35px;
    font-family: puzzleGamesMainFont;
    text-align: center;
    text-shadow: 3px 3px purple;
    margin: 0;
    font-weight: bold;
  }
  #game-area #riddle-list-section #select-riddle-title {
    width: 80%;
    margin-top: 50px;
  }
  #game-area #riddle-list-section #riddle-container {
    width: 90%;
    margin-left: 5%;
    height: 875px;
    background: url("/media/games/riddle-challenge/images/riddles-container-mobile.png");
    background-size: cover;
  }
  #game-area #riddle-list-section #riddle-list {
    max-height: 96.5%;
    padding: 10px 0;
  }
  #game-area #riddle-list-section #riddle-list .riddle {
    margin: 10px auto;
  }
  #game-area #play-section #riddle-content {
    margin-top: 200px;
    width: 750px;
    height: 340px;
    margin-left: -375px;
  }
  #game-area #play-section #riddle-content #riddle-nb {
    margin-left: 8%;
  }
  #game-area #play-section #riddle-answer {
    width: 750px;
    height: 108px;
    margin-left: -375px;
    position: relative;
    left: 50%;
    margin-top: 20px;
  }
  #game-area #correct-riddle-section #correct-answer {
    font-size: 90px;
    width: 70%;
    text-wrap: wrap;
    text-align: center;
    margin-top: -150px;
  }
  #game-area #correct-riddle-section .content {
    transform: translate(-50%, -50%) scale(0.95);
  }
}
@media (width: 960px) and (height: 480px) {
  #game-area {
    width: 960px;
    height: 480px;
  }
  #game-area #riddle-list-section #riddle-progress #riddles-completed {
    color: white;
    font-size: 35px;
    font-family: puzzleGamesMainFont;
    text-align: center;
    text-shadow: 3px 3px purple;
    margin: 0;
    font-weight: bold;
  }
  #game-area #riddle-list-section #select-riddle-title {
    width: 330px;
    margin-top: 10px;
  }
  #game-area #riddle-list-section #riddle-container {
    width: 48%;
    margin-left: 27%;
    height: 323px;
    margin-top: 10px;
  }
  #game-area #riddle-list-section #riddle-list {
    width: 93.4%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-height: 92.7%;
    overflow: hidden;
    overflow-y: scroll;
    margin-top: 16px;
    border-radius: 18px;
    margin-left: 9px;
  }
  #game-area #riddle-list-section #riddle-list .riddle {
    width: 100%;
    height: 78px;
    margin: 10px;
  }
  #game-area #riddle-list-section #riddle-list .riddle .riddle-number {
    font-size: 28px;
    width: 40px;
    margin-top: 17px;
    margin-left: 2px;
  }
  #game-area #riddle-list-section #riddle-list .riddle .riddle-text {
    font-size: 14px;
    width: 94%;
    margin-left: 10%;
    height: 100%;
    line-height: 24px;
    margin-top: -3px;
  }
  #game-area #riddle-list-section #riddle-list .riddle .riddle-completed {
    border-radius: 10px;
  }
  #game-area #riddle-list-section #riddle-list .riddle .riddle-completed img {
    position: absolute;
    height: 45%;
    margin-left: 2px;
    margin-top: 20px;
  }
  #game-area #correct-riddle-section #correct-answer {
    transform: translateX(-50%) translateY(-100%) scale(0.6);
    margin-top: -5px;
  }
  #game-area #correct-riddle-section .content {
    top: 40%;
    transform: translate(-50%, -50%) scale(0.7);
  }
  #game-area #incorrect-section {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 0, 0, 0.535);
    left: 0;
    top: 0;
    z-index: 99;
  }
  #game-area #incorrect-section div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 22;
    width: 100%;
  }
  #game-area #incorrect-section p {
    color: white;
    font-family: puzzleGamesMainFont;
    font-size: 100px;
    width: 100%;
    text-align: center;
    animation: scale 1.5s infinite;
    text-shadow: 4px 4px rgba(128, 0, 128, 0.695);
  }
  #game-area #play-section {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 20px 70px;
  }
  #game-area #play-section #guesses {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0) translateY(0%);
    margin: 20px 80px;
    opacity: 0;
    scale: 0.7;
  }
  #game-area #play-section #guesses p {
    font-size: 60px;
  }
  #game-area #play-section #guesses h6 {
    font-size: 70px;
    margin-top: -45px;
  }
  #game-area #play-section #guesses {
    left: 100%;
    transform: translateX(-100%);
    margin-left: -50px;
    margin-top: -8px;
  }
  #game-area #play-section #home-btn {
    width: 70px;
    cursor: pointer;
    opacity: 0;
    margin-left: -40px;
  }
  #game-area #play-section #home-btn img {
    width: 70px;
  }
  #game-area #play-section #home-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
    filter: brightness(1.1);
  }
  #game-area #play-section #riddle-content {
    margin-top: -130px;
    transform: scale(0.7) !important;
    opacity: 0;
  }
  #game-area #play-section #riddle-answer {
    margin-top: -50px;
    transform: scale(0.7);
  }
  #game-area #end-section .content {
    top: 56%;
    transform: translate(-50%, -50%) scale(0.65);
  }
}

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