@font-face {
  font-family: montserratA;
  src: url(../fons/Montserrat-Italic-VariableFont_wght.ttf);
}

@font-face {
  font-family: montserratB;
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: montserratB;
}

body {
  background-image: url(../images/imgGame/bgMovilS.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

body .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aces-logo {
  width: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.116) 0px 1px 3px, rgba(0, 0, 0, 0.178) 0px 1px 3px;
          box-shadow: rgba(0, 0, 0, 0.116) 0px 1px 3px, rgba(0, 0, 0, 0.178) 0px 1px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 15px;
}

.aces-logo .logo-aces {
  padding: 5px 0;
  width: 40px;
}

.aces-logo .bookLogo {
  width: 150px;
}

.aces-logo .hideBookLogo {
  display: none;
}

.aces-logo .sound-img {
  width: 28px;
}

.container-info-game {
  margin-top: 50px;
  width: 90%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-info-game .info-game {
  background-color: #ffffff38;
  padding: 30px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.container-info-game .info-game .book-info {
  width: 160px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.container-info-game .info-game .book-info:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.container-info-game .info-game .book-info::before {
  content: "";
  position: absolute;
  top: center;
  left: center;
  display: block;
  width: 130px;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.container-info-game .info-game .book-info:hover::before {
  opacity: 1;
}

.container-info-game .info-game .book-info img {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  width: 100%;
  position: relative;
}

.container-info-game .info-game .book-info .info-book {
  background-color: #ffffff38;
  width: 100%;
  position: absolute;
  z-index: 3;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.container-info-game .info-game .book-info .info-book .info-book-btn {
  border-radius: 10px;
  background-color: #ffffffb4;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  border: none;
  width: 60%;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #000000;
}

.container-info-game .info-game .book-info .info-book .info-book-btn:hover {
  background-color: #000000;
  color: #f8f403;
}

.container-info-game .info-game .book-info:hover .info-book {
  opacity: 1;
}

.container-info-game .info-game .detail-info {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-info-game .info-game .detail-info .data {
  margin: 0 20px;
}

.container-info-game .info-game .detail-info .data h1 {
  color: #131212;
  font-size: 25px;
  font-weight: 600;
}

.container-info-game .info-game .detail-info .data h2 {
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.container-info-game .info-game .detail-info .data h3 {
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 400;
}

.container-info-game .info-game .detail-info .btn {
  margin-top: 20px;
}

.container-info-game .info-game .detail-info .btn:hover .loader-wrapper .loader {
  border-left-color: #fcd708;
  cursor: pointer;
}

.container-info-game .info-game .detail-info .btn:hover .loader-wrapper .loader .loader-inner {
  border-top: 4px dashed #fcd708;
  border-left: 4px dashed #fcd708;
  border-bottom: 4px dashed #fcd708;
  cursor: pointer;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper {
  width: 55px;
  height: 55px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper span {
  font-size: 0.6em;
  color: #f5f5f5;
  font-weight: 600;
  position: absolute;
  -webkit-animation: grow 0.8s linear infinite;
          animation: grow 0.8s linear infinite;
  z-index: 100;
  cursor: pointer;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper span:hover {
  cursor: pointer;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper img {
  position: absolute;
  width: 15px;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper .loader {
  width: 100%;
  height: 100%;
  padding: 3px;
  border: 3.5px solid #f5f4f1;
  border-left-color: #dfdfd7;
  border-radius: 50%;
  cursor: pointer;
  -webkit-animation: rotateBtnStar 10s linear infinite;
          animation: rotateBtnStar 10s linear infinite;
}

.container-info-game .info-game .detail-info .btn .loader-wrapper .loader .loader-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 3.5px dashed #dfdfd7;
  border-left: 3.5px dashed #dfdfd7;
  border-right: 3.5px dashed #f5f4f1;
  -webkit-animation: rotateBtnStar 7s linear infinite;
          animation: rotateBtnStar 7s linear infinite;
}

@-webkit-keyframes rotateBtnStar {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateBtnStar {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes grow {
  0% {
    -webkit-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(122deg) brightness(94%) contrast(104%);
            filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(122deg) brightness(94%) contrast(104%);
  }
  50% {
  }
  100% {
    -webkit-filter: sepia(30%) saturate(1877%) hue-rotate(356deg) brightness(104%);
            filter: sepia(30%) saturate(1877%) hue-rotate(356deg) brightness(104%);
  }
}

@keyframes grow {
  0% {
    -webkit-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(122deg) brightness(94%) contrast(104%);
            filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(122deg) brightness(94%) contrast(104%);
  }
  50% {
  }
  100% {
    -webkit-filter: sepia(30%) saturate(1877%) hue-rotate(356deg) brightness(104%);
            filter: sepia(30%) saturate(1877%) hue-rotate(356deg) brightness(104%);
  }
}

.container-info-game--hide {
  display: none;
}

@media (min-width: 400px) {
  body .container .container-info-game .info-game .detail-info .data {
    text-align: center;
  }
  body .container .container-info-game .info-game .detail-info .data h1 {
    font-size: 25px;
  }
  body .container .container-info-game .info-game .detail-info .data h2 {
    font-size: 20px;
  }
  body .container .container-info-game .info-game .detail-info .data h3 {
    font-size: 20px;
  }
}

@media (min-width: 550px) and (max-height: 500px) {
  .container .aces-logo {
    display: none;
  }
  .container .aces-logo img {
    margin: 0 30px;
  }
  .container .container-info-game {
    width: 90%;
  }
  .container .container-info-game .info-game {
    width: 90%;
    padding: 10px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .container .container-info-game .info-game .detail-info {
    width: 70%;
  }
  .container .container-start-game {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .container .container-start-game .game {
    margin: 0;
    border: 0;
  }
  .container .container-start-game .game-detail {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .container-end-game {
    width: 70%;
  }
  .container .container-end-game .detail-end-game {
    width: 80%;
  }
  .container .container-end-game .detail-end-game .text-end-game {
    padding: 5px 0;
  }
  .container .container-end-game .detail-end-game .text-end-game h2 {
    margin: 5px;
  }
  .container .container-end-game .detail-end-game .score-content span {
    font-size: 3em;
  }
  .container .container-end-game .detail-end-game .score-content img {
    width: 100px;
  }
  .container .container-end-game .detail-end-game .stars-result {
    width: 90%;
    margin: 10px 0;
  }
  .container .container-end-game .detail-end-game .btn .loader-wrapper {
    width: 40px;
    height: 40px;
  }
  .container .container-end-game .detail-end-game .btn .loader-wrapper img {
    width: 20px;
  }
}

@media (min-width: 767px) {
  body {
    background-image: url(../images/imgGame/bgTablet.svg);
  }
  body .container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  body .container .aces-logo {
    text-align: left;
    padding: 5px 20px;
  }
  body .container .aces-logo .logo-aces {
    padding: 5px 0;
    width: 60px;
  }
  body .container .aces-logo .bookLogo {
    width: 200px;
  }
  body .container .aces-logo .sound-img {
    width: 40px;
  }
  body .container .container-info-game {
    margin-top: 190px;
    width: 90%;
    height: 80%;
  }
  body .container .container-info-game .info-game {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body .container .container-info-game .info-game .book-info {
    width: 30%;
  }
  body .container .container-info-game .info-game .book-info img {
    width: 180px;
  }
  body .container .container-info-game .info-game .detail-info {
    width: 70%;
  }
  body .container .container-info-game .info-game .detail-info .data h1 {
    font-size: 30px;
  }
  body .container .container-info-game .info-game .detail-info .data h2 {
    font-size: 20px;
  }
  body .container .container-info-game .info-game .detail-info .data h3 {
    font-size: 20px;
  }
  body .container .container-info-game .info-game .detail-info .btn .loader-wrapper {
    width: 60px;
    height: 60px;
  }
  body .container .container-start-game {
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
  }
  body .container .container-start-game .game {
    width: 50%;
  }
  body .container .container-start-game .game .matriz {
    width: 100%;
  }
  body .container .container-start-game .game-detail {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .container-start-game .game-detail .question-detail .question-img {
    width: 150px;
    height: 150px;
  }
  body .container .container-start-game .game-detail .question-detail .question-img .number {
    width: 40px;
    height: 40px;
  }
  body .container .container-start-game .game-detail .question-detail .question-img .number span {
    font-size: 20px;
  }
  body .container .container-start-game .game-detail .question-detail .controls .image-response {
    width: 50px;
    height: 50px;
  }
  body .container .container-start-game .star-container {
    width: 80%;
    margin-top: 30px;
  }
  body .container .container-start-game .star-container img {
    width: 30px;
  }
  body .container .container-end-game {
    width: 60%;
  }
  body .container .container-end-game .detail-end-game {
    width: 80%;
  }
  body .container .container-end-game .detail-end-game .score-content {
    margin: 20px;
  }
  body .container .container-end-game .detail-end-game .score-content img {
    width: 150px;
  }
  body .container .container-end-game .detail-end-game .stars-result {
    width: 100%;
  }
  body .container .container-end-game .detail-end-game .btn {
    margin-bottom: 20px;
  }
}

@media (min-width: 1023px) {
  body {
    background-image: url(../images/imgGame/bgDesktop.svg);
  }
  body .container {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .aces-logo {
    width: 100%;
    margin: 0px;
  }
  body .container .container-info-game {
    margin: 10px;
  }
  body .container .container-info-game .info-game {
    width: 65%;
  }
  body .container .container-info-game .info-game .book-info img {
    width: 200px;
  }
  body .container .container-start-game {
    width: 80%;
    margin: 0px;
  }
  body .container .container-start-game .game {
    width: 40%;
  }
  body .container .container-start-game .game .matriz {
    width: 100%;
  }
  body .container .container-start-game .game .matriz .box {
    width: 25px;
    height: 22px;
  }
  body .container .container-start-game .game .matriz .box input {
    font-size: 16px;
    font-weight: bold;
  }
  body .container .container-start-game .game-detail {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .container-start-game .game-detail .question-detail {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  body .container .container-start-game .game-detail .question-detail .question-img {
    width: 200px;
    height: 200px;
  }
  body .container .container-start-game .game-detail .question-detail .controls .image-response {
    width: 60px;
    height: 60px;
  }
  body .container .container-start-game .game-detail .star-container {
    width: 50%;
    gap: 10px;
  }
  body .container .container-start-game .game-detail .star-container img {
    width: 35px;
  }
  body .container .container-end-game {
    width: 50%;
  }
  body .container .container-end-game .detail-end-game {
    width: 80%;
  }
  body .container .container-end-game .detail-end-game .score-content {
    margin: 20px;
  }
  body .container .container-end-game .detail-end-game .score-content img {
    width: 250px;
  }
  body .container .container-end-game .detail-end-game .stars-result {
    width: 100%;
  }
  body .container .container-end-game .detail-end-game .stars-result img {
    width: 35px;
  }
  body .container .container-end-game .detail-end-game .btn {
    margin-bottom: 20px;
  }
}

@media (min-width: 1600px) {
  body .container .container-info-game {
    width: 80%;
  }
  body .container .container-info-game .info-game .book-info img {
    width: 250px;
  }
  body .container .container-start-game {
    width: 80%;
    margin: 0px;
  }
  body .container .container-start-game .game {
    width: 40%;
  }
  body .container .container-start-game .game .matriz .box {
    width: 30px;
    height: 28px;
  }
  body .container .container-start-game .game .matriz .box input {
    font-size: 18px;
    font-weight: bold;
  }
  body .container .container-start-game .game-detail .star-container {
    width: 50%;
  }
  body .container .container-end-game {
    width: 40%;
  }
}

.container-start-game {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.container-start-game .game {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 20px 0;
  border: 1px solid #ffffffbb;
}

.container-start-game .game .matriz {
  position: relative;
  border-radius: 10px;
  padding: 5px 10px;
}

.container-start-game .game .matriz .box {
  font-family: Arial, Helvetica, sans-serif;
  width: 20px;
  height: 18px;
  text-align: center;
}

.container-start-game .game .matriz .box input {
  border: none;
  text-align: center;
  background-color: transparent;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 1px;
  color: #131313;
}

.container-start-game .game .matriz .box input:focus {
  outline: none;
  background-color: #ffc121;
}

.container-start-game .game .matriz .box .inputGame {
  border: 1px solid #faf5f6;
  background-color: #ffffff38;
}

.container-start-game .game .matriz .box .active {
  background-color: #faf5f6;
}

.container-start-game .game .matriz .box .correctLetter {
  background-color: #8ccb41;
  color: #faf5f6;
  border: 1px solid #faf5f6;
  font-weight: 400;
}

.container-start-game .game .matriz .box .incorrectLetter {
  background-color: #fc2904;
  color: #faf4f4;
  border: 1px solid #faf5f6;
  font-weight: 300;
}

.container-start-game .game .matriz .numberQuestion {
  width: 22px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  background-color: #f77104;
  cursor: pointer;
}

.container-start-game .game-detail {
  width: 100%;
}

.container-start-game .game-detail .question-detail {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-start-game .game-detail .question-detail .question-img {
  position: relative;
  background-color: #ffffff38;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #ffffffbb;
}

.container-start-game .game-detail .question-detail .question-img .number {
  position: absolute;
  background-color: #f77104;
  top: -10px;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-start-game .game-detail .question-detail .question-img .number span {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.container-start-game .game-detail .question-detail .question-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.container-start-game .game-detail .question-detail .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.container-start-game .game-detail .question-detail .controls .image-response {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #f77104;
  border-radius: 50%;
  border: 2px solid #ffffff;
  cursor: pointer;
}

.container-start-game .game-detail .question-detail .controls .image-response img {
  margin: auto;
  width: 75%;
  height: 75%;
}

.container-start-game .progress-container {
  width: 80%;
  border: 1px solid #f5f1f154;
  border-radius: 4px;
  margin: 2px 0 10px 0;
}

.container-start-game .progress-container .progress {
  border-radius: 4px;
  width: 0%;
  height: 6px;
  background-color: #f8f6f6;
}

.container-start-game--hide {
  display: none;
}

.game {
  position: relative;
}

.game .img-answer {
  width: 120px;
  height: 110px;
  position: absolute;
  bottom: -5px;
  right: -120px;
  z-index: 10;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.game .img-answer .img-sabino {
  position: absolute;
  right: -5px;
  bottom: 0px;
  width: 100%;
}

.game .img-answer .img-start {
  position: absolute;
  left: 30px;
  bottom: 15px;
  width: 20px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 5px #fa0505);
          filter: drop-shadow(0 0 5px #fa0505);
}

.game .img-answer .start-correct {
  -webkit-animation: startMove 1.5s linear infinite;
          animation: startMove 1.5s linear infinite;
  right: 0px;
}

@-webkit-keyframes startMove {
  0% {
    opacity: 0.3;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

@keyframes startMove {
  0% {
    opacity: 0.3;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

.game .img-answer-incorrect {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -5px;
  left: -95px;
  z-index: 10;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.game .img-answer-incorrect .img-dog {
  position: absolute;
  bottom: -10px;
  width: 100%;
}

.game .img-answer-incorrect .img-start-dog {
  position: absolute;
  left: 55px;
  bottom: 55px;
  width: 20px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 5px #fa0505);
          filter: drop-shadow(0 0 5px #fa0505);
}

.game .img-answer-incorrect .start-incorrect {
  -webkit-animation: startMoveIncorrect 1.5s linear infinite;
          animation: startMoveIncorrect 1.5s linear infinite;
  right: 0px;
}

@-webkit-keyframes startMoveIncorrect {
  0% {
    opacity: 0.3;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

@keyframes startMoveIncorrect {
  0% {
    opacity: 0.3;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

.game .img-answer-correct {
  bottom: -2px;
  right: 3px;
}

.game .img-answer-incorrect--see {
  bottom: -2px;
  left: 3px;
}

.star-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.star-container img {
  width: 25px;
  -webkit-animation: moveTopStart infinite linear;
          animation: moveTopStart infinite linear;
}

.star-container .rotate {
  -webkit-animation: rotate 1s 1 linear;
          animation: rotate 1s 1 linear;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(3);
            transform: rotate(0) scale(3);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(3);
            transform: rotate(160deg) scale(3);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(3);
            transform: rotate(0) scale(3);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(3);
            transform: rotate(160deg) scale(3);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.star-container .imgStarsEnd {
  width: 50px;
}

.correct {
  -webkit-filter: invert(89%) sepia(20%) saturate(3051%) hue-rotate(45deg) brightness(250%) contrast(284%) drop-shadow(2px 1px 1px rgba(67, 241, 51, 0.7));
          filter: invert(89%) sepia(20%) saturate(3051%) hue-rotate(45deg) brightness(250%) contrast(284%) drop-shadow(2px 1px 1px rgba(67, 241, 51, 0.7));
  -webkit-animation: moveTopStart 1000ms linear infinite;
          animation: moveTopStart 1000ms linear infinite;
}

.wrong {
  -webkit-filter: invert(200%) sepia(90%) saturate(1239%) hue-rotate(336deg) brightness(318%) contrast(150%) drop-shadow(2px 1px 1px rgba(179, 12, 12, 0.7));
          filter: invert(200%) sepia(90%) saturate(1239%) hue-rotate(336deg) brightness(318%) contrast(150%) drop-shadow(2px 1px 1px rgba(179, 12, 12, 0.7));
  -webkit-animation: moveTopStart 1000ms linear infinite;
          animation: moveTopStart 1000ms linear infinite;
}

@-webkit-keyframes moveTopStart {
  from {
    -webkit-filter: invert(25%) sepia(91%) saturate(2018%) hue-rotate(94deg) brightness(94%) contrast(104%);
            filter: invert(25%) sepia(91%) saturate(2018%) hue-rotate(94deg) brightness(94%) contrast(104%);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    -webkit-filter: invert(44%) sepia(40%) saturate(898%) hue-rotate(71deg) brightness(88%) contrast(90%);
            filter: invert(44%) sepia(40%) saturate(898%) hue-rotate(71deg) brightness(88%) contrast(90%);
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
}

@keyframes moveTopStart {
  from {
    -webkit-filter: invert(25%) sepia(91%) saturate(2018%) hue-rotate(94deg) brightness(94%) contrast(104%);
            filter: invert(25%) sepia(91%) saturate(2018%) hue-rotate(94deg) brightness(94%) contrast(104%);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    -webkit-filter: invert(44%) sepia(40%) saturate(898%) hue-rotate(71deg) brightness(88%) contrast(90%);
            filter: invert(44%) sepia(40%) saturate(898%) hue-rotate(71deg) brightness(88%) contrast(90%);
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
}

@keyframes moveTopStart {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: translateY(-1.5px);
            transform: translateY(-1.5px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.container-end-game {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-end-game .detail-end-game {
  width: 90%;
  border-radius: 35px;
  margin-top: 100px;
  background-color: #ffffff38;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-end-game .detail-end-game .text-end-game {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.container-end-game .detail-end-game .text-end-game h2 {
  margin: 10px;
  color: #f5f1f1;
}

.container-end-game .detail-end-game .score-content {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
}

.container-end-game .detail-end-game .score-content span {
  position: absolute;
  font-size: 4em;
  color: #f5f5f5;
  z-index: 10;
  -webkit-animation: moveTopScore 1500ms linear infinite;
          animation: moveTopScore 1500ms linear infinite;
}

.container-end-game .detail-end-game .score-content img {
  width: 150px;
  z-index: 0;
}

.container-end-game .detail-end-game .score-content .rotate-star-end {
  -webkit-animation: rotateStarEnd 1s 1 linear;
          animation: rotateStarEnd 1s 1 linear;
}

.container-end-game .detail-end-game .stars-result {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 20px;
}

.container-end-game .detail-end-game .stars-result img {
  width: 25px;
  -webkit-animation: rotateStarEnd infinite linear;
          animation: rotateStarEnd infinite linear;
}

.container-end-game .btn {
  margin-bottom: 10px;
  cursor: pointer;
}

.container-end-game .btn:hover .loader-wrapper .loader {
  border-left-color: #fcd708;
  cursor: pointer;
}

.container-end-game .btn:hover .loader-wrapper .loader .loader-inner {
  border-top: 4px dashed #fcd708;
  border-left: 4px dashed #fcd708;
  border-bottom: 4px dashed #fcd708;
}

.container-end-game .btn .loader-wrapper {
  width: 55px;
  height: 55px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.container-end-game .btn .loader-wrapper span {
  font-size: 0.6em;
  color: #fdfdfc;
  font-weight: 600;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}

.container-end-game .btn .loader-wrapper span:hover {
  cursor: pointer;
}

.container-end-game .btn .loader-wrapper img {
  position: absolute;
  width: 25px;
}

.container-end-game .btn .loader-wrapper .loader {
  width: 100%;
  height: 100%;
  padding: 2px;
  border: 3.5px solid #f7f8f5;
  border-left-color: #fdfdfc;
  border-radius: 50%;
  cursor: pointer;
  -webkit-animation: rotateBtnStar 10s linear infinite;
          animation: rotateBtnStar 10s linear infinite;
}

.container-end-game .btn .loader-wrapper .loader .loader-inner {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 3.5px dashed #fdfdfc;
  border-left: 3.5px dashed #fdfdfc;
  border-right: 3.5px dashed #f7f8f5;
  -webkit-animation: rotateBtnStar 7s linear infinite;
          animation: rotateBtnStar 7s linear infinite;
}

@-webkit-keyframes rotateStarEnd {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateStarEnd {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateBtnStar {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes growTextEnd {
  0% {
    color: #131212;
  }
  50% {
  }
  100% {
    color: #fcd708;
  }
}

@keyframes growTextEnd {
  0% {
    color: #131212;
  }
  50% {
  }
  100% {
    color: #fcd708;
  }
}

@keyframes rotateStarEnd {
  0% {
    -webkit-transform: rotate(0) scale(4);
            transform: rotate(0) scale(4);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(2);
            transform: rotate(160deg) scale(2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.container-end-game--hide {
  display: none;
}

df-messenger {
  --df-messenger-bot-message: #878fac;
  --df-messenger-button-titlebar-color: #05c0e6;
  --df-messenger-chat-background-color: #fafafa;
  --df-messenger-font-color: white;
  --df-messenger-send-icon: #878fac;
  --df-messenger-user-message: #479b3d;
}
/*# sourceMappingURL=style.css.map */