:root {
  --color1: #ffac00;
  --color2: #360E59;
  --colorborde: #ADB6D4;
  --color__background: #cbd1d3;
}

/*=== NORMALIZAR ESTILOS DEL NAVEGADOR ===*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*=== DISEÑO ===*/
/*=== UTILIDADES ===*/
.parejas .encabezado .ec-nombre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.parejas .encabezado {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.parejas .encabezado .ec-nombre,
.parejas .parejas-contenedor-elementos {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.parejas .encabezado .ec-logo,
.parejas .encabezado .ec-der {
  width: 15%;
  height: 100%;
}

.parejas .encabezado .ec-logo .ec-logo-img,
.parejas .encabezado .ec-nombre,
.parejas .encabezado .ec-nombre .ec-nombre-img {
  width: auto;
  height: 100%;
}

.parejas .encabezado .ec-nombre .ec-nombre-img,
.parejas .parejas-contenedor-elementos {
  margin-left: auto;
  margin-right: auto;
}

.parejas .encabezado {
  padding: 1.5rem;
}

/*=== ANIMACIONES ===*/
@-webkit-keyframes bounce-entrada {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  80% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce-entrada {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  80% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bounce-entrada {
  -webkit-animation: bounce-entrada .5s ease backwards;
  animation: bounce-entrada .5s ease backwards;
}

@-webkit-keyframes difuminado-entrada {
  0% {
    color: transparent;
    text-shadow: 0 0 0 transparent;
  }

  100% {
    color: #e69a00;
    text-shadow: 2px 2px 0 rgba(171, 114, 0, 0.8);
  }
}

@keyframes difuminado-entrada {
  0% {
    color: transparent;
    text-shadow: 0 0 0 transparent;
  }

  100% {
    color: #e69a00;
    text-shadow: 2px 2px 0 rgba(171, 114, 0, 0.8);
  }
}

@keyframes mostrar {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
    background-image: url(../img/inactivo.svg);
  }

  40% {
    transform: scale(.6);
    background-image: url(../img/activo.svg);
  }

  80% {
    transform: scale(1.2);
    background-image: url(../img/activo.svg);
  }

  100% {
    transform: scale(1);
    background-image: url(../img/activo.svg);
  }
}

.fade-in-der {
  -webkit-animation: fade-in-der .3s ease backwards;
  animation: fade-in-der .3s ease backwards;
}

.delay-0 {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

#game_board .row_board .card_board .face_card:before {
  content: "";
}

#game_board .row_board .card_board .face_card img {
  -webkit-animation: bounce-entrada .4s ease backwards;
  animation: bounce-entrada .4s ease backwards;
}

.content_card .face_card+.face_card img {
  border: 3px solid #00c4b5;
}

@media (max-width: 767px) {
  .content_card .face_card+.face_card img {
    border: 2px solid #00c4b5;
  }
}

#game_board .row_board:nth-child(1) .card_board:nth-child(1) .face_card img {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(1) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(2) .face_card img {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(2) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(3) .face_card img {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(3) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(4) .face_card img {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#game_board .row_board:nth-child(1) .card_board:nth-child(4) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(1) .face_card img {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(1) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(2) .face_card img {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(2) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(3) .face_card img {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(3) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(4) .face_card img {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#game_board .row_board:nth-child(2) .card_board:nth-child(4) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(1) .face_card img {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(1) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(2) .face_card img {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(2) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(3) .face_card img {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(3) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(4) .face_card img {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#game_board .row_board:nth-child(3) .card_board:nth-child(4) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(1) .face_card img {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(1) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(2) .face_card img {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(2) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(3) .face_card img {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(3) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(4) .face_card img {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

#game_board .row_board:nth-child(4) .card_board:nth-child(4) .face_card:first-child::before {
  -webkit-animation: difuminado-entrada .4s ease backwards;
  animation: difuminado-entrada .4s ease backwards;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}


#game_board .row_board .card_board .face_card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fuente__titulo);
  font-weight: bold;
  font-size: 26px;
  animation: mostrar 1s 2s ease backwards;
}

@media (max-width: 767px) {
  #game_board .row_board .card_board .face_card::after {
    font-size: 20px;
  }
}

#game_board .row_board:nth-child(1) .card_board:nth-child(1) .face_card:first-child::after {
  content: "1";
}

#game_board .row_board:nth-child(1) .card_board:nth-child(2) .face_card:first-child::after {
  content: "2";
}

#game_board .row_board:nth-child(1) .card_board:nth-child(3) .face_card:first-child::after {
  content: "3";
}

#game_board .row_board:nth-child(1) .card_board:nth-child(4) .face_card:first-child::after {
  content: "4";
}

#game_board .row_board:nth-child(2) .card_board:nth-child(1) .face_card:first-child::after {
  content: "5";
}

#game_board .row_board:nth-child(2) .card_board:nth-child(2) .face_card:first-child::after {
  content: "6";
}

#game_board .row_board:nth-child(2) .card_board:nth-child(3) .face_card:first-child::after {
  content: "7";
}

#game_board .row_board:nth-child(2) .card_board:nth-child(4) .face_card:first-child::after {
  content: "8";
}

#game_board .row_board:nth-child(3) .card_board:nth-child(1) .face_card:first-child::after {
  content: "9";
}

#game_board .row_board:nth-child(3) .card_board:nth-child(2) .face_card:first-child::after {
  content: "10";
}

#game_board .row_board:nth-child(3) .card_board:nth-child(3) .face_card:first-child::after {
  content: "11";
}

#game_board .row_board:nth-child(3) .card_board:nth-child(4) .face_card:first-child::after {
  content: "12";
}

#game_board .row_board:nth-child(4) .card_board:nth-child(1) .face_card:first-child::after {
  content: "13";
}

#game_board .row_board:nth-child(4) .card_board:nth-child(2) .face_card:first-child::after {
  content: "14";
}

#game_board .row_board:nth-child(4) .card_board:nth-child(3) .face_card:first-child::after {
  content: "15";
}

#game_board .row_board:nth-child(4) .card_board:nth-child(4) .face_card:first-child::after {
  content: "16";
}

#game_board .row_board .card_board .face_card {
  position: relative;
}

#game_board .row_board .card_board .face_card::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  font-family: var(--fuente);
  font-weight: bold;
  font-size: 65px;
  color: #007c6c;
  text-shadow: 2px 2px 0 #49ffe8;
}

/*=== PAREJAS ===*/
.parejas {
  padding: 3% 1% 20px;
}

.parejas .parejas-contenedor {
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*margin-bottom: 40px;*/
  position: relative;
}

.parejas .parejas-contenedor .inicio {
  position: absolute;
  bottom: 4%;
  left: calc(5% + 25px);
}

.parejas .parejas-contenedor .inicio .inicio-btn:hover {
  top: 0;
  -webkit-box-shadow: 0 4px 0 #188787;
  box-shadow: 0 4px 0 #188787;
}

.parejas .parejas-contenedor .inicio .inicio-btn:active {
  top: 4px;
  -webkit-box-shadow: 0 0 0 #188787;
  box-shadow: 0 0 0 #188787;
}

.contenedorJuego {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .contenedorJuego {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}

/* Reiniciar */

.reiniciar {
  margin-top: 40px;
  margin-bottom: 25px;
}

.parejas .parejas-contenedor .recargar .recargar-btn {
  display: flex;
  justify-content: center;
  width: 55px;
  height: 55px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  line-height: 1.2;
  background-color: var(--color1);
  border: 3px solid var(--colorborde);
  padding: 15px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 0 var(--colorborde);
  position: fixed;
  bottom: 55px;
  right: 10px;
  transition: all 200ms;
}

.parejas .parejas-contenedor .recargar .recargar-btn:hover {
  bottom: 51px;
  -webkit-box-shadow: 0 4px 0 var(--colorborde);
  box-shadow: 0 4px 0 var(--colorborde);
}

.parejas .parejas-contenedor .recargar .recargar-btn:active {
  bottom: 51px;
  -webkit-box-shadow: 0 0 0 var(--colorborde);
  box-shadow: 0 0 0 var(--colorborde);
}

.parejas .parejas-contenedor .recargar .recargar-btn img {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.parejas .encabezado {
  height: 20vh;
  max-height: 291.6px;
  width: auto;
}

.parejas .encabezado .ec-logo {
  padding-left: 0;
}

.parejas .encabezado .ec-logo .ec-logo-img {
  max-height: 45px;
}

.parejas .encabezado .ec-nombre .ec-nombre-img {
  max-height: 140PX;
}

.parejas .parejas-contenedor-elementos {
  width: 90%;
  padding-bottom: 81%;
  position: relative;
}

@media (max-width: 767px) {
  .parejas .parejas-contenedor-elementos {
    width: 90%;
    padding-bottom: 81%;
    order: 2;
  }
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

/*=== MODAL ===*/

@media (max-width: 992px) {
  .modal {
    padding-top: 60px;
  }
}

.modalParejas .edModal__contenedor {
  min-height: 90%;
  max-width: 1200px;
  width: 96%;
  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-left: auto;
  margin-right: auto;
}

.modal-backdrop {
  background-color: var(--color__brand2);
  background-image: url(../img/fondo.png);
}

.modal-backdrop.show {
  opacity: 1;
}

.modalParejas .modal-content {
  border-radius: var(--boton__radius);
  text-align: center;
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #39B54A 0%, #81D300 100%);
  background-blend-mode: overlay;
  box-shadow: -2px 0px 0 2px #2EC4FB, 2px 0px 0 2px #ff29ff, 0px 2px 0 2px #6600ff, 0px -2px 0 2px #b100ff;
  border-radius: 15px;
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalParejas .modal-content::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -25%;
  width: 50%;
  max-width: 200px;
  height: 200px;
  background-image: url(../img/tierra.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 767px) {
  .modalParejas .modal-content::after {
    right: -12%;
    left: auto;
    top: -12%;
    width: 50%;
    max-width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .modalParejas .modal-content::after {
    right: -10%;
    left: auto;
    top: -10%;
    width: 50%;
    max-width: 120px;
    height: 120px;
  }
}

.modal__columnas {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 30px;
  padding: 50px 30px;
}

@media (max-width: 767px) {
  .modal__columnas {
    grid-template-columns: 1fr;
  }
}

.modal__column1 {
  /* background-color: var(--color2); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}

@media (max-width: 767px) {
  .modal__column1 {
    border-radius: 7px 7px 0 0;
  }
}

.modal__column1 img {
  max-width: 100%;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-left:auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .modal__column1 img {
    width: 200px;
  }
}

.modal__cite {
  margin-top: 5px;
  font-size: 13px;
  text-align: left;
  padding-left: 5px;
  color: #360E59;
  border-left: 3px solid #d9e021;
}

@media (max-width: 767px) {
  .modal__cite {
    text-align: center;
    width: fit-content;
    margin-left:auto;
    margin-right: auto;
  }
}

.modal__column2 {
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

.borde__img {
  padding: 10px;
  border-radius: 50%;
  border: 3px dashed #fff;
}

.modal__img {
  max-width: 200px;
  border-radius: 50%;
  width: 100%;
}

.modal-content .modal__texto {
  color: #fff;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.modalFinal .modal__texto {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #fff;
}

@media (max-width: 767px) {
  .modalFinal .modal__titulo {
    padding: 15px 20px 15px 20px;
    min-height: 50px;
    font-size: 30px;
  }

  .modalFinal .modal__texto {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {

  .modal__img {
    max-width: 140px;
  }

  .modal-content .modal__texto {
    font-size: 18px;
    padding: 10px;
  }
}

.modal__nombre {
  font-size: 35px;
  font-weight: bold;
  color: var(--color2);
  margin: 0 0 10px;
  position: relative;
  /* max-width: 400px; */
  margin-left:auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .modal__nombre {
    font-size: 26px;
  }
}

/* .modal__nombre:before {
  content: "Nombre:";
  position: absolute;
  bottom: 100%;
  font-size: 14px;
  color: #ADB6D4;
  font-weight: normal;
} */

.modal__nombreCientifico {
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
  position: relative;
  font-style: italic;
}

/* .modal__nombreCientifico:before {
  content: "Nombre científico:";
  position: absolute;
  bottom: 100%;
  font-size: 14px;
  color: #ADB6D4;
  font-weight: normal;
} */

.modal__ubicacion {
  font-size: .8rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
  /* font-style: italic; */
}

/* .modal__ubicacion:before {
  content: "Ubicación:";
  position: absolute;
  bottom: 100%;
  font-size: 14px;
  color: #ADB6D4;
  font-weight: normal;
} */

.modal-content .modal_alert .message {
  opacity: .35;
}


/*=== MODAL MENSAJE ===*/
.fade {
  opacity: 0;
  transition: opacity 0.25s linear;
}

.collapsing {
  transition: height 0.45s ease;
}

.modalFinal .edModal__contenedor {
  min-height: 90%;
  max-width: 850px;
  width: 95%;
  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-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.modalFinal .modal-content {
  padding: 20px 30px;
  text-align: center;
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #39B54A 0%, #81D300 100%);
  background-blend-mode: overlay;
  box-shadow: -2px 0px 0 2px #2EC4FB, 2px 0px 0 2px #ff29ff, 0px 2px 0 2px #6600ff, 0px -2px 0 2px #b100ff;
}

.modalFinal .modal__column {
  width: 100%;
  font-size: 18px;
  padding: 10px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {

  .modalFinal .modal__column {
    width: 100%;
    padding: 0 5px 15px;
  }
}

.modal-footer {
  border: none;
  margin-left: auto;
  margin-right: auto;
}

.closeRedi {
  display: block;
  color: #fff;
  line-height: 1.2;
  background-color: #ff5457;
  border-radius: 1.2em;
  border: none;
  padding: 8px 2em;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  transform: scale(1);
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform .3s;
}

@media (hover) {
  .closeRedi:hover {
    transform: scale(1.03);
    cursor: pointer;
  }
}

.closeRedi:active {
  transform: scale(0.98)
}


/* BARRA DE PROGRESO */

.barraProgreso {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  max-width: 100%;
  height: fit-content;
  padding: 15px 5px;
  border-radius: 15px;
  border: 3px solid #ADB6D4;
  background-image: linear-gradient(to bottom, hsla(0, 0%, 80%, 0.1) 0%, hsla(0, 0%, 100%, 0.1) 100%);
}

@media (max-width: 767px) {
  .barraProgreso {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    padding: 7px 5px;
    border-radius: 10px;
  }
}

.barraProgreso__banderas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .barraProgreso__banderas {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.barraProgreso__bandera {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-right: 5px;
  background-image: url(../img/inactivo.svg);
  background-repeat: no-repeat;
}

@media (max-width: 767px) {

  .barraProgreso__bandera {
    width: 20px;
    height: 20px;
  }
}

.barraProgreso__bandera--correcta {
  opacity: 1;
  animation: zoom .5s 1s backwards;
  background-image: url(../img/activo.svg);
}

.barraProgreso__barra {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  box-shadow: inset 0px -4px 8px 2px rgba(0, 0, 0, .3);
  transition: all .6s;
  background: linear-gradient(to bottom, rgba(18, 69, 113, 1) 0%, rgba(21, 80, 131, 1) 50%, rgba(18, 69, 113, 1) 100%);
}

.barraProgreso__imgProgreso {
  width: var(--barraProgreso__tamanoImagen);
  height: auto;
  position: absolute;
  left: 0;
  top: 75%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .6s;
  transition: all .6s;
}

@media (max-width: 767px) {
  .barraProgreso__imgProgreso {
    width: 30px;
  }
}