@charset "UTF-8";
:root {
  --ease: cubic-bezier(0.79, 0.14, 0.15, 0.86);
  --border-4-s: 1px solid #dddddd;
  --padding-4-s: 20px;
  --padding-2-tb: 20px 0px;
  --padding-2-lrb: 0px 20px;
  --radius-4-xs: 2px;
  --radius-4-s: 5px;
  --radius-4-xl: 32px;
  --fonts-mini: 14px;
  --fonts-titulo-xl: 30px;
  --fonts-subtitulo-2p: 30px;
  --fonts-subtitulo-2m: 25px;
  --fonts-subtitulo-h2: 20px;
  --width-full: 100%;
  --width-sidebar-full: 265px;
  --width-global-inteno: 1280px;
  --margin-center-4: 0px auto;
  --textotitulo-xs: 16px;
  --textotitulo-s: 20px;
  --trasition-s: all 0.3s ease-out;
  --color-principal: #293042;
  --color-secundario: #454545;
  --color-principal-1: #503391;
  --color-secundario-1: #7555be;
  --color-uno: #3F80EA;
  --color-white: #ffffff;
  --color-backpurple: #e0e7ff;
  --falcon-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
  --fuente-base: "Poppins", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe2a8), to(#ffffff));
  background: linear-gradient(to bottom, #ffe2a8, #ffffff);
  font-family: var(--fuente-base);
  font-weight: 400;
  font-size: 14px;
}

.contenedorfull {
  position: relative;
}

.contenbottom {
  position: fixed;
  background-color: var(--color-white);
  padding: 20px;
  bottom: 0px;
  left: 0px;
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.contenedorfullgame {
  width: 90%;
  margin: 0px auto;
}

.f-negrita {
  font-family: var(--fuente-base);
  font-weight: 700;
}

.formsglobal {
  position: relative;
}
.formsglobal .formlabel {
  font-weight: 600;
  font-family: var(--fuente-base);
  font-size: 12px;
}

.hsombra {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-jinetes {
  -webkit-animation: fadeInUp 1.2s ease-out;
          animation: fadeInUp 1.2s ease-out;
}

.m-0 {
  margin: 0px !important;
}

.orientacion-overlay {
  position: fixed;
  z-index: 9999;
  background: #000;
  color: #fff;
  top: 0;
  left: 0;
  width: 100vw;
  font-family: var(--fuente-base);
  height: 100vh;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
}

.phone-rotate-icon {
  font-size: 3rem;
  -webkit-animation: girar90 2.5s ease-in-out infinite;
          animation: girar90 2.5s ease-in-out infinite;
  display: inline-block;
  color: #ffffff;
}

@-webkit-keyframes girar90 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes girar90 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.score-num {
  font-weight: 700 !important;
}

.score {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.score:hover {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.score i {
  margin-right: 6px;
  color: #f4b400;
}
.score span {
  font-family: var(--fuente-base);
  font-weight: 500;
}

.anim-gema {
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
  display: inline-block;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.Conteninstruccion {
  height: 100vh;
  z-index: 8888;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5450980392);
}
.Conteninstruccion__int {
  position: relative;
  height: 100vh;
}
.Conteninstruccion__avatar {
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: auto;
}
.Conteninstruccion__avatar img {
  width: 140px;
}
.Conteninstruccion__parrafo {
  width: 100%;
  height: 250px;
  overflow-y: auto;
}
.Conteninstruccion__texto {
  background-color: var(--color-white);
  width: 70%;
  border-radius: 10px;
  padding: 20px;
  position: absolute;
  bottom: 268px;
  right: 26px;
}
.Conteninstruccion__texto::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-white);
}
.Conteninstruccion__texto-horizontal {
  bottom: 10px !important;
}
.Conteninstruccion__texto-horizontal::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(44, 44, 44, 0.8901960784);
}
.Conteninstruccion .h5instruccion {
  font-family: var(--fuente-base);
  font-weight: 700;
  font-size: 16px;
}

.H-horizontal {
  height: 173px;
}

.T-h2 {
  font-family: var(--fuente-base);
  font-weight: 700;
  font-size: 20px;
}

.viewfull {
  height: 100vh;
  overflow: auto;
}

.Btn-altura {
  background: -webkit-gradient(linear, left top, left bottom, from(#5cd65c), to(#2eb82e));
  background: linear-gradient(to bottom, #5cd65c, #2eb82e);
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px #1e7e34;
          box-shadow: 0 5px #1e7e34;
  text-shadow: 1px 1px #1e7e34;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.Btn-altura:active {
  -webkit-box-shadow: 0 2px #1e7e34;
          box-shadow: 0 2px #1e7e34;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.Btn-altura--amarillo {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe066), to(#ffcc00));
  background: linear-gradient(to bottom, #ffe066, #ffcc00);
  color: #4d4d00;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px #ccaa00;
          box-shadow: 0 5px #ccaa00;
  text-shadow: 1px 1px #f2f2f2;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.Btn-altura--amarillo:hover {
  color: #4d4d00;
}
.Btn-altura--amarillo:active {
  -webkit-box-shadow: 0 2px #ccaa00;
          box-shadow: 0 2px #ccaa00;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  color: #4d4d00 !important;
}

.btn-social, .btn-facebook, .btn-google {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid transparent;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  cursor: pointer;
}

.btn-google {
  color: #d93025;
  border-color: #d93025;
}
.btn-google:hover {
  background-color: #d93025;
  color: #fff;
}
.btn-google:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.btn-facebook {
  color: #1877f2;
  border-color: #1877f2;
}
.btn-facebook:hover {
  background-color: #1877f2;
  color: #fff;
}
.btn-facebook:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.btn-atras {
  background: transparent;
  color: #1b4128;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  cursor: pointer;
}
.btn-atras i {
  font-size: 30px;
}
.btn-atras:hover {
  background-color: #f2f2f2;
}

.btn-scanqr {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9d423), to(#f7b733));
  background: linear-gradient(to bottom, #f9d423, #f7b733);
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px #cfa600;
          box-shadow: 0 5px #cfa600;
  text-shadow: 1px 1px #fff8dc;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-scanqr i {
  font-size: 1.2rem;
}
.btn-scanqr:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.btn-scanqr:active {
  -webkit-box-shadow: 0 2px #cfa600;
          box-shadow: 0 2px #cfa600;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
.backmenu {
  background-color: var(--color-white);
  position: fixed;
  bottom: 0px;
  height: 40px;
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.contenmenubottom {
  position: fixed;
  background-color: var(--color-white);
  padding: 10px;
  bottom: 0px;
  left: 0px;
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.menuinferior-nav {
  list-style: none;
  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;
}
.menuinferior-nav li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.menuinferior-nav li .menuinferior-link {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.menuinferior-nav li .menuinferior-link i {
  font-size: 18px;
  margin-bottom: 2px;
}
.menuinferior-nav li .menuinferior-link.activo {
  color: var(--color-principal);
}
.menuinferior-nav li .menuinferior-link.activo i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.menuinferior-nav li .menuinferior-link.activo span {
  font-weight: bold;
}
.menuinferior-nav li .menuinferior-link:hover, .menuinferior-nav li .menuinferior-link.active {
  color: var(--color-principal);
}

.cuadroavatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #28a745;
  overflow: hidden;
}
.cuadroavatar img {
  width: 100%;
}

.p-menu {
  padding: 14px;
}

.th5menu {
  font-family: var(--fuente-base);
  font-weight: 700;
}

.menuseccionjuegos {
  height: calc(100vh - 234px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menuseccionjuegos__opciones {
  list-style: none;
  margin: 0;
  padding: 0;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.menuseccionjuegos__opciones li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px #cfcfcf;
          box-shadow: 0 5px #cfcfcf;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menuseccionjuegos__opciones li label {
  font-family: var(--fuente-base);
  font-weight: 700;
  color: #4f4f4f;
}
.menuseccionjuegos__opciones li:active {
  -webkit-box-shadow: 0 2px #cfcfcf;
          box-shadow: 0 2px #cfcfcf;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.menuseccionjuegos__opciones-imagen {
  width: 60px;
  border-radius: 8px;
  margin-left: 10px;
}
.menuseccionjuegos__opciones-descripcion {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.seleccionjuego {
  position: relative;
}
.seleccionjuego span {
  font-size: 16px;
  font-weight: 700;
}

.contentpoli {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: var(--radius-4-s);
  padding: 20px;
  width: 90%;
  margin: 0px auto;
  margin-bottom: 80px;
  overflow-y: auto;
  height: calc(100vh - 208px);
}

.contenregistro {
  width: 90%;
  margin: 0px auto;
}

.contengenero {
  height: calc(100vh - 185px);
  position: relative;
}

.cajasgenero__cajagenero {
  width: 120px;
  height: 120px;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 20px;
  background-color: var(--color-white);
}
.cajasgenero__cajagenero--activo {
  border: 3px solid #28a745;
  -webkit-box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation: resaltado 0.4s ease forwards;
          animation: resaltado 0.4s ease forwards;
}
.cajasgenero__cajagenero_imagen {
  width: 100%;
}
.cajasgenero__cajagenero_imagen img {
  width: 100%;
}

@-webkit-keyframes resaltado {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
  }
}

@keyframes resaltado {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
  }
}
.contenpreguntas {
  position: relative;
  width: 100%;
}
.contenpreguntas__opcion {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.contenpreguntas__opcion .form-check {
  margin-bottom: 0px;
}
.contenpreguntas__opcion li {
  padding: 10px 14px;
  cursor: pointer;
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px #cfcfcf;
          box-shadow: 0 5px #cfcfcf;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.contenpreguntas__opcion li label {
  font-family: var(--fuente-base);
  font-weight: 700;
  color: #4f4f4f;
}
.contenpreguntas__opcion li:active {
  -webkit-box-shadow: 0 2px #cfcfcf;
          box-shadow: 0 2px #cfcfcf;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.contenavatarreg {
  margin-bottom: 5px !important;
}

.cajavatar {
  position: relative;
}
.cajavatar figcaption {
  font-family: var(--fuente-base);
  font-weight: 600;
  text-align: center;
}

.cajasavatar__cajaavatar {
  width: 120px;
  height: 120px;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 20px;
  background-color: var(--color-white);
}
.cajasavatar__cajaavatar--activo {
  border: 3px solid #28a745;
  -webkit-box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation: resaltado2 0.4s ease forwards;
          animation: resaltado2 0.4s ease forwards;
}
.cajasavatar__cajaavatar_imagen {
  width: 100%;
}
.cajasavatar__cajaavatar_imagen img {
  width: 100%;
}

@-webkit-keyframes resaltado2 {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
  }
}

@keyframes resaltado2 {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
  }
}
.contentselecionavatar {
  position: relative;
}
.contentselecionavatar__imagen {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  height: calc(100vh - 350px);
  margin-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.contentselecionavatar__imagen img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contenlistadopuntaje {
  background-color: var(--color-white);
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
}
.contenlistadopuntaje__interno {
  height: calc(100vh - 300px);
}
.contenlistadopuntaje__paginacion nav ul li a {
  font-size: 12px !important;
  color: var(--color-principal);
}

.contenrankintab {
  border: 1px solid #ccc;
  border-radius: 10px;
}
.contenrankintab .nav-tabs {
  border: none;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 0.5rem;
  font-size: 12px;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.contenrankintab .nav-link {
  color: #4a4a4a;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  background-color: transparent;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--fuente-base);
}
.contenrankintab .nav-link:hover {
  background-color: #f9f9f9;
  color: var(--color-principal);
}
.contenrankintab .nav-link.active {
  background-color: var(--color-white);
  color: var(--color-principal);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.listadoparticipantes {
  list-style: none;
}
.listadoparticipantes .participante {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  font-family: var(--fuente-base);
}
.listadoparticipantes .participante .posicion {
  width: 24px;
  font-weight: 700;
  font-size: 16px;
  color: #555;
}
.listadoparticipantes .participante .avatar-jugador {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listadoparticipantes .participante .nombre-jugador {
  font-weight: 600;
  color: #333;
}
.listadoparticipantes .participante .puntaje {
  font-weight: 700;
  color: var(--color-principal);
}
.listadoparticipantes .participante:nth-child(1) .posicion {
  color: #ffc107;
}
.listadoparticipantes .participante:nth-child(2) .posicion {
  color: #adb5bd;
}
.listadoparticipantes .participante:nth-child(3) .posicion {
  color: #cd7f32;
}

.top1-card {
  background: #ffffff;
  border: 2px solid #fdd835;
  border-radius: 16px;
  -webkit-animation: brillar 2s infinite ease-in-out;
          animation: brillar 2s infinite ease-in-out;
}
.top1-card .top1-avatar img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fdd835;
}
.top1-card .top1-nombre {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 18px;
}
.top1-card .top1-puntaje {
  font-weight: 600;
  color: #4e342e;
}
.top1-card .top1-medalla {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff8e1), to(#fff3cd));
  background: linear-gradient(to bottom, #fff8e1, #fff3cd);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  color: #212529;
}

@-webkit-keyframes brillar {
  0% {
    -webkit-box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
}

@keyframes brillar {
  0% {
    -webkit-box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
            box-shadow: 0 0 12px rgba(255, 193, 7, 0.4), 0 6px 12px rgba(253, 216, 53, 0.3);
  }
}
.contenlistadoindividual {
  height: calc(100vh - 323px);
  overflow-y: auto;
}

.perfilconten {
  padding-bottom: 80px !important;
}

.perfil-avatar {
  position: relative;
}
.perfil-avatar__img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #c1feea;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.perfil-avatar__edit-btn {
  position: absolute;
  bottom: 5px;
  right: calc(50% - 60px);
  background: #fdd835;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #333;
}
.perfil-avatar__edit-btn i {
  font-size: 18px;
}

.card-flip-wrapper {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  height: 100%;
  position: relative;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.card-flip-wrapper.expandido {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  width: 90vw;
  height: 90vh;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  overflow-y: auto;
}
.card-flip-wrapper.expandido .card-flip {
  height: 100%;
  -webkit-transform: none;
          transform: none;
}
.card-flip-wrapper.expandido .card-back {
  -webkit-transform: none;
          transform: none;
  z-index: 2;
}

.card-flip {
  width: 100%;
  height: 200px;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.card-flip.is-flipped {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.card-bloqueada .card-back {
  border: none;
  background-color: #fffefc;
}
.card-bloqueada .card-back p,
.card-bloqueada .card-back h5 {
  opacity: 0.6;
}

.card-bloqueada .card-front {
  border: 3px solid #c9a515 !important;
  background-color: #fffefc;
}
.card-bloqueada .card-front p,
.card-bloqueada .card-front h5 {
  opacity: 0.6;
}
.card-bloqueada .card-front i {
  font-size: 30px;
}

.card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 5px;
  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;
  padding: 15px;
  border: 3px solid #ccc;
}
.card-front-int {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 3px solid #c9a515;
  border-radius: 5px;
  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;
}

.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}

.card-front {
  background: radial-gradient(circle at center, #824a00, #120e07);
  color: #ffffff;
  z-index: 2;
  border: 3px solid #c9a515;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.card-back {
  background: #ffffff;
  color: #333;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  z-index: 1;
}

.th5card {
  font-family: var(--fuente-base);
  font-weight: 700;
}

.card-back-content {
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card-back-content p {
  text-align: justify;
}

.btn-cerrarcard {
  position: absolute;
  top: -14px;
  right: -14px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
}
.btn-cerrarcard i {
  pointer-events: none;
}
.btn-cerrarcard:hover {
  color: #000000;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.card-flip-wrapper.expandido .card-back-content {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  pointer-events: auto;
}

.cardimagen {
  width: 100%;
  margin: 10px 0px;
}
.cardimagen img {
  width: 100%;
}

@media (max-width: 767.98px) {
  .card-flip {
    height: 180px;
  }
  .card-flip-wrapper.expandido {
    width: 90vw;
    height: 90vh;
  }
}
@media (min-width: 768px) {
  .card-flip {
    height: 220px;
  }
  .card-flip-wrapper.expandido {
    width: 500px;
    height: 500px;
  }
}
.titulolibro {
  font-family: var(--fuente-base);
  font-weight: 700;
  text-shadow: 1px 1px #23191f;
}

.pbbiblioteca {
  padding-bottom: 70px;
}

.video-scanner {
  width: 100% !important;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 16px;
}

.esconder-videoqr {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.cardbackconetxto {
  padding-bottom: 20px;
}
.cardbackconetxto p {
  text-align: justify;
}

.memory-game {
  padding: 10px;
  margin: 0;
  overflow-x: hidden;
}
.memory-game.nivel-basico .memory-card-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(16.6666666667% - 10px);
          flex: 0 1 calc(16.6666666667% - 10px);
  max-width: 80px;
}
.memory-game.nivel-medio .memory-card-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(11.1111111111% - 10px);
          flex: 0 1 calc(11.1111111111% - 10px);
  max-width: 70px;
}
.memory-game.nivel-avanzado .memory-card-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(12.5% - 10px);
          flex: 0 1 calc(12.5% - 10px);
  max-width: 70px;
}
.memory-game .memory-game-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100% !important;
}

.row-break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

.contenjuegomemoria {
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - 50px);
}

.contenmemorygame {
  height: calc(100vh - 90px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overlaymemoria {
  width: 100%;
  height: 100vh;
  background-color: rgba(44, 44, 44, 0.8901960784);
  position: absolute;
  z-index: 800;
}

.memory-game {
  font-size: 0;
}

.memory-card-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(16.6666666667% - 10px);
          flex: 0 1 calc(16.6666666667% - 10px);
  max-width: 80px;
  aspect-ratio: 0.7;
  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;
  will-change: transform;
}
.memory-card-container a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.memory-card-container a.front .back, .memory-card-container a.back .front {
  display: none;
}
.memory-card-container a.front .front, .memory-card-container a.back .back {
  display: block;
}
.memory-card-container a.back .card.back i {
  display: inline-block !important;
}

.memory-card-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
}

.card {
  border-radius: 3px;
  border-width: 2px;
  border-style: solid;
}
.card.front {
  border-color: black;
}
.card.back {
  border-color: #666;
  background: linear-gradient(145deg, rgb(140, 144, 148) 0%, rgb(35, 39, 43) 50%, rgb(73, 80, 87) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card.back i {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 70px;
}

.contentreloj {
  background-color: var(--color-white);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.contentreloj #TiempoJuego {
  font-family: var(--fuente-base);
  font-weight: 700;
}

.code {
  overflow: auto;
  padding-left: 20px;
  background-color: black;
  color: white;
}

.mejores-tiempos {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
}

.mejores-tiempos h6 {
  color: #fff;
  margin-bottom: 10px;
}

.mejores-tiempos small {
  color: #ccc;
  font-size: 0.8em;
}

.mejores-tiempos strong {
  color: #fff;
  font-size: 1.1em;
}

/* Override plugin's default styling */
#memory-game {
  padding: 20px;
  margin: 0 auto;
}

#memory-game .memory-game-inner {
  display: -ms-grid !important;
  display: grid !important;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100% !important;
}

/* Básico: 6 parejas = 12 cartas, 6 arriba 6 abajo */
#memory-game.nivel-basico .memory-game-inner {
  -ms-grid-columns: (1fr)[6] !important;
  grid-template-columns: repeat(6, 1fr) !important;
  -ms-grid-rows: (1fr)[2] !important;
  grid-template-rows: repeat(2, 1fr) !important;
  max-width: 480px;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 6;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(7) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(8) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(9) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(10) {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(11) {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
}
#memory-game.nivel-basico .memory-game-inner > *:nth-child(12) {
  -ms-grid-row: 2;
  -ms-grid-column: 6;
}

/* Medio: 9 parejas = 18 cartas, 9 arriba 9 abajo */
#memory-game.nivel-medio .memory-game-inner {
  -ms-grid-columns: (1fr)[9] !important;
  grid-template-columns: repeat(9, 1fr) !important;
  -ms-grid-rows: (1fr)[2] !important;
  grid-template-rows: repeat(2, 1fr) !important;
  max-width: 720px;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 6;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(8) {
  -ms-grid-row: 1;
  -ms-grid-column: 8;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(9) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(10) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(11) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(12) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(13) {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(14) {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(15) {
  -ms-grid-row: 2;
  -ms-grid-column: 6;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(16) {
  -ms-grid-row: 2;
  -ms-grid-column: 7;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(17) {
  -ms-grid-row: 2;
  -ms-grid-column: 8;
}
#memory-game.nivel-medio .memory-game-inner > *:nth-child(18) {
  -ms-grid-row: 2;
  -ms-grid-column: 9;
}

/* Avanzado: 12 parejas = 24 cartas, 3 filas de 8 cartas cada una */
#memory-game.nivel-avanzado .memory-game-inner {
  -ms-grid-columns: (1fr)[8] !important;
  grid-template-columns: repeat(8, 1fr) !important;
  -ms-grid-rows: (1fr)[3] !important;
  grid-template-rows: repeat(3, 1fr) !important;
  max-width: 640px;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 6;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(8) {
  -ms-grid-row: 1;
  -ms-grid-column: 8;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(9) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(10) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(11) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(12) {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(13) {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(14) {
  -ms-grid-row: 2;
  -ms-grid-column: 6;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(15) {
  -ms-grid-row: 2;
  -ms-grid-column: 7;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(16) {
  -ms-grid-row: 2;
  -ms-grid-column: 8;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(17) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(18) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(19) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(20) {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(21) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(22) {
  -ms-grid-row: 3;
  -ms-grid-column: 6;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(23) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
#memory-game.nivel-avanzado .memory-game-inner > *:nth-child(24) {
  -ms-grid-row: 3;
  -ms-grid-column: 8;
}

/* Override plugin's card container positioning */
#memory-game .memory-card-container {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  float: none !important;
}

/* Card styling */
#memory-game .memory-card-container a {
  display: block;
  width: 70px;
  height: 90px;
  position: relative;
  margin: 0 auto;
}

#memory-game .memory-card-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.badge {
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #memory-game .memory-card-container a {
    width: 60px;
    height: 75px;
  }
  #memory-game.nivel-basico .memory-game-inner {
    max-width: 420px;
  }
  #memory-game.nivel-medio .memory-game-inner {
    max-width: 630px;
  }
  #memory-game.nivel-avanzado .memory-game-inner {
    max-width: 560px;
  }
}
@media (max-width: 480px) {
  #memory-game .memory-card-container a {
    width: 50px;
    height: 65px;
  }
  #memory-game.nivel-basico .memory-game-inner {
    max-width: 360px;
  }
  #memory-game.nivel-medio .memory-game-inner {
    max-width: 540px;
  }
  #memory-game.nivel-avanzado .memory-game-inner {
    max-width: 480px;
  }
  #memory-game .memory-card-container .card.back {
    font-size: 18px;
  }
}
.contenstagecarrera {
  width: 100%;
  height: 100vh;
  background-color: #bff5ff;
  position: relative;
}
.contenstagecarrera__piso {
  width: 100%;
  background-image: url("../../assets/images/piso.png");
  height: 240px;
  position: absolute;
  bottom: 0px;
  z-index: 2;
}
.contenstagecarrera__graderia {
  width: 100%;
  background-image: url("../../assets/images/graderia.jpg");
  height: 180px;
  position: absolute;
  bottom: 154px;
  z-index: 1;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.contenstagecarrera__personaje {
  width: 130px;
  position: absolute;
  bottom: 60px;
  z-index: 4;
  left: 0px;
}
.contenstagecarrera__personaje img {
  width: 100%;
}
.contenstagecarrera__personajecontra {
  width: 90px;
  position: absolute;
  bottom: 140px;
  right: 0px;
  z-index: 3;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.contenstagecarrera__personajecontra img {
  width: 100%;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.contenstagecarrera__btnavanza {
  bottom: 30px;
  position: absolute;
  z-index: 4;
  right: 10px;
}

.contenedormatch {
  width: 95%;
  margin: 0px auto;
  height: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
.contenedormatch__int {
  padding: 0px 0px 40px 0px;
  background-color: #fff;
}

.contenedorpreguntas {
  position: relative;
  margin-top: 40px;
}

.contenedorespuesta {
  padding: 10px 0px 20px 0px;
}

.text-rojo {
  color: #ac2929;
  font-family: var(--fuente-base);
  font-weight: 700;
}

.leaflet-tooltip.custom-tooltip {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  padding: 4px 8px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}