* {
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif; }

.sr-only {
  opacity: 0;
  font-size: 1.3rem; }

.sr-only-focusable:focus {
  display: block;
  opacity: 1; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: fixed;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  opacity: 1;
  z-index: 60; }

.d-flex {
  display: flex; }

a {
  border: none; }

a:focus, a:hover {
  border: none;
  text-decoration: none; }

img {
  max-width: 100%; }

.text-yellow {
  color: #FFF570; }

.answers::-webkit-scrollbar, .answer_caption::-webkit-scrollbar {
  width: 12px;
  background-color: #3B9CD4; }

.answers::-webkit-scrollbar-thumb, .answer_caption::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #FFC551; }

.answers::-webkit-scrollbar-track, .answers::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent; }

.btn {
  display: inline-block;
  transform: translateY(0px);
  transition: .5s all; }
  .btn img {
    filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.16));
    transition: .5s all; }
    @media (max-width: 767px) {
      .btn img {
        max-width: 150px; } }
  .btn:hover {
    transform: translateY(5px);
    transition: .5s all; }
    .btn:hover img {
      filter: none;
      transition: .5s all; }

.block_home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/index-bg.png") no-repeat;
  display: flex;
  align-items: flex-end;
  background-position: center bottom;
  background-size: 100% 100%;
  padding: 0 5% 3%;
  z-index: 10; }
  @media screen and (max-width: 1024px) {
    .block_home {
      background-size: auto 100%;
      background-position: 41% bottom;
      justify-content: space-between; } }
  .block_home .bear {
    max-width: 25%;
    width: 100%; }
    @media screen and (max-width: 1024px) {
      .block_home .bear {
        max-width: 30%; } }
    @media screen and (max-width: 768px) {
      .block_home .bear {
        margin-bottom: 14vh;
        max-width: 42%; } }
    @media screen and (max-width: 320px) {
      .block_home .bear {
        margin-bottom: 6vh; } }
  .block_home .cat {
    max-width: 20%;
    width: 100%; }
    @media screen and (max-width: 1024px) {
      .block_home .cat {
        max-width: 25%; } }
    @media screen and (max-width: 768px) {
      .block_home .cat {
        margin-bottom: 14vh;
        max-width: 35%; } }
    @media screen and (max-width: 320px) {
      .block_home .cat {
        margin-bottom: 6vh; } }

.index_tit {
  animation: titleIn 1s .5s 1;
  opacity: 0;
  animation-fill-mode: forwards; }
  @media screen and (max-width: 1199px) and (min-width: 767px) {
    .index_tit {
      max-width: 50%;
      display: flex;
      align-self: center;
      flex-wrap: wrap; } }
  @media screen and (max-width: 1024px) {
    .index_tit {
      position: absolute;
      left: 0;
      right: 0;
      top: 20%;
      margin: auto; } }

@keyframes titleIn {
  0% {
    transform: scale(0);
    opacity: 0; }
  40% {
    transform: scale(1.2);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }
.start {
  margin-top: 2rem;
  text-align: center;
  max-width: 51%;
  margin: 2rem auto; }
  @media screen and (max-height: 767px) and (min-width: 768px) {
    .start {
      margin: 0 auto; } }

.sound {
  position: fixed;
  z-index: 50;
  right: 8%;
  top: 11%;
  max-width: 70px;
  display: none;
  transition: all .5s; }
  .sound img {
    transition: all .5s;
    -webkit-filter: drop-shadow(2px 5px 0px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(2px 5px 0px rgba(0, 0, 0, 0.16)); }
  .sound:hover {
    transition: all .5s;
    transform: translateY(5px); }
    .sound:hover img {
      transition: all .5s;
      -webkit-filter: none;
      filter: none; }
  .sound .off, .sound .on {
    display: none; }
  .sound .active {
    display: inline-block; }
  @media screen and (max-width: 767px) {
    .sound {
      right: 5%;
      top: 5%;
      max-width: 50px; } }

.explan {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/index-bg.png") no-repeat;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  background-position: center bottom;
  background-size: 100% 100%;
  padding: 0 5% 3%;
  z-index: 9; }
  @media screen and (max-width: 768px) {
    .explan {
      background-size: auto 100%;
      background-position: 41% bottom;
      justify-content: space-between;
      padding: 0; } }
  .explan .roles {
    width: 100%;
    align-items: flex-end; }
    @media screen and (max-width: 1024px) {
      .explan .roles {
        margin-bottom: 8vh; } }
    @media screen and (max-width: 768px) {
      .explan .roles {
        margin-bottom: 13vh; } }
  .explan .cat {
    max-width: 20%;
    margin-top: -3%;
    opacity: 0;
    position: relative;
    left: -1%;
    top: -3%; }
    @media screen and (max-width: 1024px) {
      .explan .cat {
        max-width: 32%; } }
    .explan .cat.active {
      animation: catMove 1s 1s 1;
      opacity: 0;
      animation-fill-mode: forwards; }
  .explan .bear {
    max-width: 46%;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    position: relative;
    right: -8%;
    top: -3%; }
    .explan .bear img:first-child {
      width: 60%; }
    .explan .bear img:last-child {
      width: 40%;
      margin-left: -5%; }
    @media screen and (max-width: 1024px) {
      .explan .bear {
        max-width: 68%; } }
    @media screen and (max-height: 768px) {
      .explan .bear {
        margin-top: -6%; } }
    .explan .bear.active {
      animation: bearMove 1s 1s 1;
      opacity: 0;
      animation-fill-mode: forwards; }

.talks {
  width: 100%;
  align-items: flex-end; }
  @media screen and (max-width: 768px) {
    .talks {
      margin-top: 35vh; } }
  .talks .explan_text p {
    color: #707070;
    font-size: 2rem;
    margin-bottom: 0; }
    @media screen and (max-width: 991px) {
      .talks .explan_text p {
        font-size: 1.5rem; } }
  .talks .explan_text.cat_talk {
    opacity: 0;
    margin-top: 8%;
    max-width: 33%;
    margin-left: 5%;
    padding: 2.5rem 2rem 4.5rem 1.5rem;
    background: url("../images/talk.png") no-repeat;
    background-size: 100% 100%; }
    @media screen and (max-width: 1500px) {
      .talks .explan_text.cat_talk {
        background: url("../images/talk2.png") no-repeat;
        background-size: 100% 100%; } }
    @media screen and (max-width: 1199px) {
      .talks .explan_text.cat_talk {
        max-width: 40%; } }
    @media screen and (max-height: 768px) {
      .talks .explan_text.cat_talk {
        max-width: 46%;
        margin-top: 3%;
        background: url("../images/talk-b1.png") no-repeat;
        background-size: 100% 100%; } }
    @media screen and (max-width: 767px) {
      .talks .explan_text.cat_talk {
        padding: 1rem .5rem 2rem;
        max-width: 60%;
        margin-left: 10px; }
        .talks .explan_text.cat_talk p {
          font-size: .9rem; } }
    .talks .explan_text.cat_talk.active {
      animation: catTalk 1s 4s 1;
      opacity: 0;
      animation-fill-mode: forwards; }
  .talks .explan_text.bear_talk {
    opacity: 0;
    max-width: 23%;
    margin-top: 3%;
    margin-left: 5%;
    padding: 2.5rem 2rem 4.5rem 1.5rem;
    background: url("../images/talk-b1.png") no-repeat;
    background-size: 100% 100%; }
    @media screen and (max-width: 1199px) {
      .talks .explan_text.bear_talk {
        max-width: 30%; } }
    @media screen and (max-width: 767px) {
      .talks .explan_text.bear_talk {
        padding: 1rem .5rem 2rem;
        max-width: 40%; }
        .talks .explan_text.bear_talk p {
          font-size: .9rem; } }
    .talks .explan_text.bear_talk.active {
      animation: bearTalk 1s 2s 1;
      opacity: 0;
      animation-fill-mode: forwards; }

@keyframes bearMove {
  0% {
    transform: translateX(3%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes bearTalk {
  0% {
    transform: translateX(3%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes catMove {
  0% {
    transform: translateX(-3%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes catTalk {
  0% {
    transform: translateX(-3%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
.ready {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  width: 250px;
  margin: auto;
  opacity: 0;
  max-width: 51%;
  text-align: center; }
  .ready.active {
    animation: readyMove 1s 6s 1;
    opacity: 0;
    animation-fill-mode: forwards; }
  @media screen and (max-width: 768px) {
    .ready {
      bottom: 63%; } }

@keyframes readyMove {
  0% {
    transform: translateY(-3%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
.level {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%; }
  .level .movie {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 8;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    position: relative; }
    .level .movie .cat {
      display: none;
      opacity: 0;
      max-width: 30%; }
      @media screen and (max-width: 767px) {
        .level .movie .cat {
          max-width: 42%; } }
    .level .movie .item {
      position: absolute;
      right: 10%;
      top: 30%;
      max-width: 30%; }
      @media screen and (max-width: 767px) {
        .level .movie .item {
          max-width: 30%;
          top: 27%;
          transform: rotate(-16deg); } }

#level1 {
  z-index: 8;
  background-image: url("../images/qbg-1.png"); }
  #level1 .movie {
    background-image: url("../images/level-room-1.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level1 .movie {
        background-size: auto 100%;
        background-position: right center;
        background-image: url("../images/level-room-1-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level1 .movie {
        background-image: url("../images/level-room-1-rwd.png");
        background-size: auto 110%;
        background-position: 89% 10%; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level1 .movie {
        background-size: 100% auto;
        background-position: right 75%; } }
    #level1 .movie.active {
      animation: zoomin1 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level1 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove1 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level1 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-width: 767px) {
        #level1 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove1 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(55vw) translateY(-13vh); } }
@keyframes zoomin1 {
  0% {
    transform: scale(1);
    transform-origin: right center; }
  100% {
    transform: scale(1.4);
    transform-origin: right center; } }
#level2 {
  z-index: 7;
  background-image: url("../images/qbg-2.png"); }
  #level2 .movie {
    background-image: url("../images/level-room-2.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level2 .movie {
        background-size: auto 100%;
        background-position: center center;
        background-image: url("../images/level-room-2-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level2 .movie {
        background-image: url("../images/level-room-2-rwd.png");
        background-size: auto 100%;
        background-position: 40% center; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level2 .movie {
        background-size: 100% auto;
        background-position: center 75%; } }
    #level2 .movie.active {
      animation: zoomin2 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level2 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove2 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level2 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-height: 767px) {
        #level2 .movie .cat {
          animation: cat_scenceMove2rwd 6s 1s 1;
          animation-fill-mode: forwards; } }
      @media screen and (max-width: 767px) {
        #level2 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove2 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(25vw) translateY(-5vh); } }
@keyframes cat_scenceMove2rwd {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(25vw) translateY(-10vh); } }
@keyframes zoomin2 {
  0% {
    transform: scale(1);
    transform-origin: center; }
  100% {
    transform: scale(1.3);
    transform-origin: center; } }
#level3 {
  z-index: 6;
  background-image: url("../images/qbg-3.png"); }
  #level3 .movie {
    background-image: url("../images/level-room-3.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level3 .movie {
        background-size: auto 100%;
        background-position: center center;
        background-image: url("../images/level-room-3-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level3 .movie {
        background-image: url("../images/level-room-3-rwd.png");
        background-size: auto 100%;
        background-position: center; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level3 .movie {
        background-size: 100% auto;
        background-position: center 75%; } }
    #level3 .movie.active {
      animation: zoomin3 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level3 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove3 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level3 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-width: 767px) {
        #level3 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove3 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(40vw) translateY(-15vh); } }
@keyframes zoomin3 {
  0% {
    transform: scale(1);
    transform-origin: center; }
  100% {
    transform: scale(1.3);
    transform-origin: center; } }
#level4 {
  z-index: 5;
  background-image: url("../images/qbg-4.png"); }
  #level4 .movie {
    background-image: url("../images/level-room-4.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level4 .movie {
        background-size: auto 100%;
        background-position: center center;
        background-image: url("../images/level-room-4-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level4 .movie {
        background-image: url("../images/level-room-4-rwd.png");
        background-size: auto 100%;
        background-position: 52% center; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level4 .movie {
        background-size: 100% auto;
        background-position: center 75%; } }
    #level4 .movie.active {
      animation: zoomin4 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level4 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove4 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level4 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-width: 767px) {
        #level4 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove4 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(40vw) translateY(-10vh); } }
@keyframes zoomin4 {
  0% {
    transform: scale(1);
    transform-origin: center; }
  100% {
    transform: scale(1.3);
    transform-origin: center; } }
#level5 {
  z-index: 4;
  background-image: url("../images/qbg-5.png"); }
  #level5 .movie {
    background-image: url("../images/level-room-5.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level5 .movie {
        background-size: auto 100%;
        background-position: center center;
        background-image: url("../images/level-room-5-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level5 .movie {
        background-image: url("../images/level-room-5-rwd.png");
        background-size: auto 100%;
        background-position: center; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level5 .movie {
        background-size: 100% auto;
        background-position: center 75%; } }
    #level5 .movie.active {
      animation: zoomin5 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level5 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove5 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level5 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-width: 767px) {
        #level5 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove5 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(40vw) translateY(-10vh); } }
@keyframes zoomin5 {
  0% {
    transform: scale(1);
    transform-origin: center; }
  100% {
    transform: scale(1.3);
    transform-origin: center; } }
#level6 {
  z-index: 3;
  background-image: url("../images/qbg-6.png"); }
  #level6 .movie {
    background-image: url("../images/level-room-6.png"); }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      #level6 .movie {
        background-size: auto 100%;
        background-position: center center;
        background-image: url("../images/level-room-6-rwd.png"); } }
    @media screen and (max-width: 767px) {
      #level6 .movie {
        background-image: url("../images/level-room-6-rwd.png");
        background-size: auto 100%;
        background-position: 69% center; } }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      #level6 .movie {
        background-size: 100% auto;
        background-position: center 75%; } }
    #level6 .movie.active {
      animation: zoomin6 6s 3.5s 1;
      animation-fill-mode: forwards; }
    #level6 .movie .cat {
      margin-bottom: 3vh;
      animation: cat_scenceMove6 6s 1s 1;
      animation-fill-mode: forwards; }
      @media screen and (max-height: 767px) and (min-width: 768px) {
        #level6 .movie .cat {
          max-width: 18%; } }
      @media screen and (max-width: 767px) {
        #level6 .movie .cat {
          margin-bottom: 13vh; } }

@keyframes cat_scenceMove6 {
  0% {
    opacity: 0;
    transform: translateX(-5vw); }
  5% {
    opacity: 1; }
  40% {
    opacity: 1;
    transform: translateX(5vw); }
  100% {
    opacity: 1;
    transform: translateX(50vw) translateY(-10vh); } }
@keyframes zoomin6 {
  0% {
    transform: scale(1);
    transform-origin: center; }
  100% {
    transform: scale(1.3);
    transform-origin: center; } }
.board {
  width: 70vw;
  background: url("../images/blackbord.png") no-repeat;
  background-size: 100% 100%;
  height: 75vh;
  margin: auto;
  position: relative;
  padding: 5%; }
  @media screen and (max-width: 1024px) {
    .board {
      width: 85vw;
      padding: 4%;
      height: 85vh; } }
  @media screen and (max-height: 767px) and (min-width: 768px) {
    .board {
      height: 85vh; } }
  @media screen and (max-width: 767px) {
    .board {
      width: 90vw;
      height: 75vh; } }
  .board:before {
    content: '';
    width: 50%;
    height: 14.7vh;
    background: url("../images/blockbprd-frame.png") no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    position: absolute;
    top: -14.7vh;
    left: 0;
    right: 0;
    margin: auto; }
    @media screen and (max-width: 767px) {
      .board:before {
        height: 8.5vh;
        top: -8.5vh; } }
  .board .q {
    background: #fff;
    border: 3px solid #80CBE8;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.5rem;
    max-width: 850px;
    margin: auto;
    width: 80%;
    color: #707070;
    font-weight: bold;
    margin-bottom: 1rem; }
    @media screen and (max-width: 767px) {
      .board .q {
        font-size: 1rem;
        padding: 5px 10px;
        border-radius: 10px;
        width: 90%; } }
  .board .qcat {
    position: absolute;
    left: -10%;
    bottom: -10%;
    max-width: 350px;
    width: 28%; }
    @media screen and (max-height: 767px) and (min-width: 768px) {
      .board .qcat {
        width: 23%; } }
    @media screen and (max-width: 767px) {
      .board .qcat {
        bottom: 0vh; } }
  .board .qitem {
    position: absolute;
    right: -10%;
    bottom: -8%;
    max-width: 250px;
    width: 23%; }
    @media screen and (max-width: 767px) {
      .board .qitem {
        right: 0; } }
    @media screen and (max-width: 767px) {
      .board .qitem {
        bottom: 0vh; } }
  .board .answer {
    background: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    width: 80%;
    max-width: 850px;
    color: #707070;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border: 2px solid #FFF570;
    transition: .5s all;
    display: flex;
    border-radius: 20px;
    margin: 1.5rem auto;
    position: relative; }
    @media screen and (max-width: 767px) {
      .board .answer {
        font-size: .9rem;
        border-radius: 10px;
        margin: 1rem auto; } }
    .board .answer span {
      background: #F8A538;
      color: #fff;
      display: inline-block;
      position: relative;
      padding: 10px 25px;
      border-radius: 15px 0 0 15px; }
      @media screen and (max-width: 767px) {
        .board .answer span {
          padding: 5px 10px;
          border-radius: 10px 0 0 10px; } }
    .board .answer p {
      padding: 10px 15px;
      margin-bottom: 0; }
      @media screen and (max-width: 767px) {
        .board .answer p {
          padding: 5px 10px; } }
    .board .answer:hover {
      transition: .5s all;
      transform: translateY(-5px);
      box-shadow: 0 5px 0 5px  #E9B571; }
    .board .answer.active {
      border-color: #FF6161;
      box-shadow: 0 5px 0 5px  #E89292;
      transition: .5s all; }
      .board .answer.active:before {
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        background: url("../images/correct-A.png") no-repeat;
        background-size: contain;
        position: absolute;
        right: -50px;
        top: 13px; }
        @media screen and (max-width: 767px) {
          .board .answer.active:before {
            width: 1.5rem;
            height: 1.5rem;
            right: -32px;
            top: 5px; } }
      .board .answer.active span {
        background: #F83838; }
      .board .answer.active:hover {
        transform: none; }
    .board .answer.ativeW {
      border-color: #AEACAC;
      box-shadow: 0 5px 0 5px #CCCCCC;
      transition: .5s all; }
      .board .answer.ativeW:before {
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        background: url("../images/wrong-A.png") no-repeat;
        background-size: contain;
        position: absolute;
        right: -50px;
        top: 13px; }
        @media screen and (max-width: 767px) {
          .board .answer.ativeW:before {
            width: 1.5rem;
            height: 1.5rem;
            right: -32px;
            top: 5px; } }
      .board .answer.ativeW span {
        background: #AEACAC; }
      .board .answer.ativeW:hover {
        transform: none; }
  .board .check_btn {
    position: absolute;
    bottom: -3%;
    left: 0;
    right: 0;
    margin: auto;
    width: 250px;
    margin: auto;
    display: none;
    text-align: center;
    max-width: 51%; }
    @media screen and (max-width: 767px) {
      .board .check_btn {
        bottom: 5%; } }

@media screen and (max-height: 767px) and (min-width: 768px) {
  .question {
    width: 90%;
    margin: auto; } }

.caption {
  display: none; }
  .caption .qcat.noA {
    left: -17%;
    bottom: -5%;
    max-width: 450px;
    width: 35%; }
    @media screen and (max-width: 767px) {
      .caption .qcat.noA {
        bottom: 0%; } }
  .caption .caption_block {
    display: flex;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      .caption .caption_block {
        display: block; } }
  .caption .yes, .caption .no {
    display: none; }
  .caption .sign {
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 2rem; }
    @media screen and (max-width: 767px) {
      .caption .sign {
        width: 25%;
        border-radius: 10px; } }
  .caption .reply {
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
    padding-top: 1rem;
    text-align: center;
    letter-spacing: 5px; }
    .caption .reply.yesA span {
      color: #69E259; }
    .caption .reply.noA span {
      color: #FF5454; }
    @media screen and (max-width: 767px) {
      .caption .reply {
        font-size: 1.5rem;
        padding-left: 1rem;
        padding-top: 0; } }

.answer_pic {
  width: 30%;
  padding: 0 2%; }
  @media screen and (max-width: 767px) {
    .answer_pic {
      width: 90%;
      margin: 1rem auto .5rem;
      display: flex;
      align-items: center; } }

.answer_caption {
  width: 60%;
  padding: 0 2%;
  height: 55vh;
  overflow-y: scroll;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .answer_caption {
      width: 90%;
      margin: auto;
      height: 45vh;
      font-size: 1rem; } }
  .answer_caption img {
    width: 80%; }
  .answer_caption p {
    max-width: 580px;
    margin: auto;
    font-size: 1.5rem;
    color: #fff;
    padding-top: 1rem;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .answer_caption p {
        font-size: 1rem; } }

.next_btn {
  position: absolute;
  bottom: -9%;
  left: 0;
  right: 0;
  margin: auto;
  width: 250px;
  margin: auto;
  text-align: center;
  max-width: 51%; }
  @media screen and (max-width: 767px) {
    .next_btn {
      bottom: 5%; } }

@media screen and (max-height: 768px) {
  .answers {
    max-height: 48vh;
    overflow-y: scroll; } }
@media screen and (max-width: 767px) {
  .answers {
    max-height: 50vh;
    overflow-y: scroll; } }

.awards {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/end-bg.png");
  z-index: 2; }
  .awards .btns {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    vertical-align: top; }
    .awards .btns a img {
      max-width: 200px; }
      @media screen and (max-width: 767px) {
        .awards .btns a img {
          padding: 0;
          max-width: 145px; } }
    @media screen and (max-width: 767px) {
      .awards .btns {
        bottom: 15%; } }

.certificate, .btns {
  display: none;
  position: relative; }

.certificate {
  margin: 0 5%; }
  @media screen and (max-width: 767px) {
    .certificate {
      margin-top: -16vh; } }
  .certificate img {
    display: inline-block;
    max-height: 80vh;
    margin: auto; }
  .certificate .finish_cat {
    max-width: 20%;
    position: absolute;
    left: -12%;
    bottom: -5%; }
    @media screen and (max-width: 1366px) {
      .certificate .finish_cat {
        left: -5%; } }
    @media screen and (max-width: 767px) {
      .certificate .finish_cat {
        max-width: 35%;
        bottom: -15vh; } }
  .certificate .finish_bear {
    max-width: 26%;
    position: absolute;
    right: -11%;
    bottom: -5%; }
    @media screen and (max-width: 1366px) {
      .certificate .finish_bear {
        right: -5%; } }
    @media screen and (max-width: 767px) {
      .certificate .finish_bear {
        max-width: 45%;
        bottom: -18vh; } }

.enter_name {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  text-align: center;
  width: 70%;
  margin: auto;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 10px;
  color: #71543E; }
  .enter_name span {
    vertical-align: top; }
  @media screen and (max-width: 991px) {
    .enter_name {
      font-size: 2rem; } }
  .enter_name textarea {
    border: none;
    background: transparent;
    text-align: center;
    width: 50%;
    max-width: 35.5rem;
    border-bottom: 2px solid #f3d7b6;
    overflow: hidden;
    font-size: .7em;
    padding-top: 0.5rem; }
    @media screen and (max-width: 1024px) {
      .enter_name textarea {
        font-size: .7em; } }
    @media screen and (max-width: 767px) {
      .enter_name textarea {
        max-width: 11rem;
        font-size: .9rem;
        line-height: 1.2; } }
  @media screen and (max-width: 767px) {
    .enter_name {
      font-size: 1.1rem;
      letter-spacing: 5px; } }

/*# sourceMappingURL=game.css.map */
