@charset "UTF-8";
/*COLOR*/
.desplegable-contain {
  display: flex;
  align-items: center;
  position: relative; }
  .desplegable-contain img.desplegar {
    position: relative;
    cursor: pointer;
    transition-duration: 100ms; }
    .desplegable-contain img.desplegar:hover {
      transform: scale(1.1);
      margin-right: 15px; }
    .desplegable-contain img.desplegar:active {
      transform: scale(1); }
  .desplegable-contain .desplegable {
    min-height: 75px;
    display: grid;
    align-content: center; }
    .desplegable-contain .desplegable > * {
      display: none; }
  .desplegable-contain .default-round-borders {
    background-color: #cecece;
    border-radius: 1rem;
    min-height: 75px;
    margin-left: -40px;
    padding: 5px 15px 5px 60px; }
  .desplegable-contain .flag-banner {
    left: -30px;
    position: relative;
    min-height: 150px; }
    .desplegable-contain .flag-banner:before {
      content: "";
      border-top: 75px solid transparent;
      border-bottom: 75px solid transparent;
      height: 500px;
      position: absolute;
      right: -50px;
      width: 0; }
    .desplegable-contain .flag-banner.yellow-flag {
      background-color: #ecba03; }
      .desplegable-contain .flag-banner.yellow-flag:before {
        border-left: 50px solid #ecba03; }
    .desplegable-contain .flag-banner.blue-flag {
      background-color: #26c9ff; }
      .desplegable-contain .flag-banner.blue-flag:before {
        border-left: 50px solid #26c9ff; }
    .desplegable-contain .flag-banner.pink-flag {
      background-color: #f49; }
      .desplegable-contain .flag-banner.pink-flag:before {
        border-left: 50px solid #f49; }

.desplegable-contain-1 {
  display: flex;
  align-items: center;
  position: relative; }
  .desplegable-contain-1 img.desplegar {
    position: relative;
    cursor: pointer;
    transition-duration: 100ms;
    z-index: 1; }
    .desplegable-contain-1 img.desplegar:hover {
      transform: scale(1.1);
      margin-right: 15px; }
    .desplegable-contain-1 img.desplegar:active {
      transform: scale(1); }
  .desplegable-contain-1 .desplegable {
    min-height: 75px;
    display: grid;
    align-content: center; }
    .desplegable-contain-1 .desplegable > * {
      display: none; }
  .desplegable-contain-1 .default-round-borders {
    border-radius: 1rem;
    min-height: 75px;
    padding: 5px 15px 5px 40px; }
  .desplegable-contain-1 .flag-banner {
    left: -30px;
    position: relative;
    min-height: 150px; }
    .desplegable-contain-1 .flag-banner:before {
      content: "";
      border-top: 75px solid transparent;
      border-bottom: 75px solid transparent;
      height: 0;
      position: absolute;
      right: -50px;
      width: 0; }
    .desplegable-contain-1 .flag-banner.yellow-flag {
      background-color: #ecba03; }
      .desplegable-contain-1 .flag-banner.yellow-flag:before {
        border-left: 50px solid #ecba03; }
    .desplegable-contain-1 .flag-banner.blue-flag {
      background-color: #26c9ff; }
      .desplegable-contain-1 .flag-banner.blue-flag:before {
        border-left: 50px solid #26c9ff; }
    .desplegable-contain-1 .flag-banner.pink-flag {
      background-color: #f49; }
      .desplegable-contain-1 .flag-banner.pink-flag:before {
        border-left: 50px solid #f49; }

.terminoDrop {
  height: 40px;
  border-radius: 3px;
  padding: 0rem !important;
  background-color: #d8d8d8; }

.conceptoT1 {
  cursor: pointer;
  margin-bottom: 20px; }

.terminoFloat {
  float: left;
  margin-left: 2em; }

.opcion-radio-1 label {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Show the indicator (dot/circle) when checked */ }
  .opcion-radio-1 label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .opcion-radio-1 label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    /* Create the indicator (the dot/circle - hidden when not checked) */
    /* Style the indicator (dot/circle) */ }
    .opcion-radio-1 label .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .opcion-radio-1 label .checkmark:after {
      top: 6px;
      left: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white; }
  .opcion-radio-1 label:hover input ~ .checkmark {
    background-color: #ccc;
    transition: all 0.3s; }
  .opcion-radio-1 label input:checked ~ .checkmark {
    background-color: #46b5e8;
    transition: all 0.3s; }
  .opcion-radio-1 label input:checked ~ .checkmark:after {
    display: block;
    transition: all 0.3s; }

/*Ventanas modales*/
.modal-style-3.modal-container {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }
  .modal-style-3.modal-container .modal-close {
    color: #777;
    background-color: #fff;
    height: 45px;
    line-height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    float: right;
    font-size: 70px;
    font-weight: 200;
    margin-right: -40px;
    margin-top: -40px;
    display: inherit;
    transition: 0.6s; }
    .modal-style-3.modal-container .modal-close:hover {
      color: #333;
      border: 2px solid #999;
      text-decoration: none;
      cursor: pointer; }
  .modal-style-3.modal-container .modal-info {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    overflow: initial;
    min-height: 100px;
    border: 2px solid #ddd;
    border-radius: 2rem;
    width: 80%;
    /* Could be more or less, depending on screen size */
    min-height: 0;
    max-height: 300%; }

.select-1 {
  background-color: #eee;
  cursor: pointer; }
  .select-1:focus {
    outline: none; }

.error-1 {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.correcto-1 {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.pressedKey {
  color: #f00;
  font-weight: 600;
  transition-duration: .3s; }

.container-cb-1 {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Estilo cuando pasa el ratón por encima */
  /* Estilos cuando está chekeado */
  /* Mostrar el indicador cuando está chekeado */ }
  .container-cb-1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .container-cb-1 .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    /* Crea el indicador (el chulo - oculto si no esta chekeado) */
    /* Estilo del indicador (el chulo) */ }
    .container-cb-1 .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .container-cb-1 .checkmark:after {
      top: 3px;
      left: 7px;
      width: 7px;
      height: 12px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .container-cb-1:hover input ~ .checkmark {
    background-color: #ccc;
    transition: all 0.3s; }
  .container-cb-1 input:checked ~ .checkmark {
    background-color: #46b5e8;
    transition: all 0.3s; }
  .container-cb-1 input:checked ~ .checkmark:after {
    display: block;
    transition: all 0.3s; }

.cb-behavior.style-1 {
  position: relative;
  padding: 3px 3px 3px 25px;
  border-radius: 10px;
  background-color: transparent;
  outline: none;
  /* Crea el indicador (el chulo - oculto si no esta chekeado) */
  /* Estilo del indicador (el chulo) */ }
  .cb-behavior.style-1:after {
    content: "";
    position: absolute;
    display: none; }
  .cb-behavior.style-1:after {
    top: 6px;
    left: 10px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .cb-behavior.style-1:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    border-radius: 5px;
    transition: all 0.3s; }
  .cb-behavior.style-1.active:after {
    display: block;
    transition: all 0.3s; }
  .cb-behavior.style-1.active:before {
    background-color: #46b5e8;
    transition: all 0.3s; }
.cb-behavior.style-2 {
  position: relative;
  padding: 3px 3px 3px 25px;
  border-radius: 10px;
  background-color: transparent;
  outline: none;
  /* Crea el indicador (el chulo - oculto si no esta chekeado) */
  /* Estilo del indicador (el chulo) */ }
  .cb-behavior.style-2:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 8px;
    width: 0px;
    height: 0px;
    border-width: 4px 0px 0px 4px; }
  .cb-behavior.style-2:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    height: 20px;
    width: 20px;
    border: 1px solid #999;
    border-radius: 5px;
    transition: all 0.3s; }
  .cb-behavior.style-2.active:after {
    display: block;
    top: -15px;
    left: 8px;
    width: 17px;
    height: 32px;
    border: solid #e0004d;
    border-width: 4px 0px 0px 4px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    transition: width 500ms, height 500ms, top 500ms, left 0ms;
    transition-delay: 0ms, 200ms, 200ms, 0ms; }

.span-correcto {
  font-size: 20px;
  color: green; }

.span-incorrecto {
  font-size: 20px;
  color: red; }

.desactivaPregunta {
  pointer-events: none;
  opacity: 0.7; }

.boton {
  border: 3px solid #46b5e8;
  /*anchura, estilo y color borde*/
  background-color: transparent;
  /*color botón*/
  color: #46b5e8;
  /*color texto*/
  text-decoration: none;
  /*decoración texto*/
  font-family: 'Montserrat';
  /*tipografía texto*/
  border-radius: 0.5rem;
  /*bordes redondos*/
  outline: none;
  /*Sin bordes al dar click*/
  transition-duration: 0.3s; }
  .boton.active {
    background-color: #46b5e8;
    color: #fff;
    transition-duration: 0.3s; }

.boton:hover {
  background-color: #46b5e8;
  color: #fff;
  transition-duration: 0.3s; }

.flip-card-style-4 {
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */ }
  .flip-card-style-4 .flip-card {
    display: inline-block;
    background-color: transparent;
    width: 192px;
    height: 253.5px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    transition: transform 0.4s;
    margin: 0 auto;
    cursor: pointer; }
    .flip-card-style-4 .flip-card.ganada {
      opacity: 0.7;
      pointer-events: none; }
  .flip-card-style-4 .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s;
    transform-style: preserve-3d; }
  .flip-card-style-4 .flip-card.active .flip-card-inner.active {
    transform: rotateY(180deg); }
  .flip-card-style-4 .flip-card-front, .flip-card-style-4 .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; }
  .flip-card-style-4 .flip-card-back {
    transform: rotateY(180deg); }

/*FCF*/
/*Cartas flipantes*/
.flip-card-style-1 {
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */ }
  .flip-card-style-1 .flip-card {
    background-color: transparent;
    width: 317px;
    height: 246px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    transition: transform 0.4s;
    margin: 0 auto;
    cursor: pointer; }
  .flip-card-style-1 .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s;
    transform-style: preserve-3d; }
  .flip-card-style-1 .flip-card.active .flip-card-inner.active {
    transform: rotateY(180deg); }
  .flip-card-style-1 .flip-card-front, .flip-card-style-1 .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; }
  .flip-card-style-1 .flip-card-back {
    transform: rotateY(180deg); }
    .flip-card-style-1 .flip-card-back > div {
      width: 100%;
      height: 100%;
      border-radius: 15px;
      padding: 15px;
      display: flex;
      align-items: center; }

/**/
/*Cartas flipantes*/
.flip-card-style-2 {
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */ }
  .flip-card-style-2 .flip-card {
    background-color: transparent;
    width: 152px;
    height: 128px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    transition: transform 0.4s, opacity 0.4s;
    margin: 0 auto;
    cursor: pointer; }
    .flip-card-style-2 .flip-card:hover {
      transform: scale(1.5); }
  .flip-card-style-2 .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s;
    transform-style: preserve-3d; }
  .flip-card-style-2 .flip-card.active .flip-card-inner.active {
    transform: rotateY(180deg); }
  .flip-card-style-2 .flip-card-front, .flip-card-style-2 .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; }
  .flip-card-style-2 .flip-card-back {
    transform: rotateY(180deg); }

/**/
.div-purple {
  background-color: #01DF74;
  border-radius: 2rem;
  padding: 15px; }
  .div-purple .purple-index {
    height: 50px;
    width: 50px;
    background-color: #04B45F;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -25px;
    left: -15px; }
  .div-purple h1 {
    color: #fff; }

.btn-expandir {
  cursor: pointer; }

/*Cartas flipantes*/
.flip-card-style-5 {
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */ }
  .flip-card-style-5 .flip-card {
    background-color: transparent;
    width: 417px;
    height: 346px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    transition: transform 0.4s;
    margin: 0 auto;
    cursor: pointer; }
  .flip-card-style-5 .flip-card-inner {
    position: relative;
    width: 100%;
    text-align: center;
    transition: transform 0.7s;
    transform-style: preserve-3d; }
  .flip-card-style-5 .flip-card.active .flip-card-inner.active {
    transform: rotateY(180deg); }
  .flip-card-style-5 .flip-card-front, .flip-card-style-5 .flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden; }
  .flip-card-style-5 .flip-card-back {
    transform: rotateY(180deg); }
    .flip-card-style-5 .flip-card-back > div {
      width: 100%;
      height: 100%;
      border-radius: 15px;
      padding: 15px;
      display: flex;
      align-items: center; }

/**/
.bubble-style-1 .speech-bubble {
  position: absolute;
  background: #29303b;
  min-height: 100px;
  max-width: 300px;
  padding: 15px;
  margin-left: 50px;
  border-radius: 0.5rem; }
  .bubble-style-1 .speech-bubble .auto {
    overflow: auto;
    max-height: 400px;
    margin-right: 5px; }
.bubble-style-1 .speech-bubble:after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-right-color: #29303b;
  border-left: 0;
  border-top: 0;
  margin-top: -15px;
  margin-left: -30px; }
.bubble-style-1 .cerrarX {
  cursor: pointer;
  position: absolute;
  color: #fff;
  right: 10px;
  top: 5px; }

.flip-simulated {
  /*width: 317px;*/
  min-height: 220px;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center; }
  .flip-simulated p {
    width: 100%; }
  .flip-simulated.short {
    min-height: 110px; }

/*Actividad circulos*/
.a-circulo {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: inline-block;
  position: relative; }
  .a-circulo.arrastrable {
    z-index: 1; }
  .a-circulo p {
    font-size: 5em; }

.a-simbolo {
  height: 100px;
  width: 50px;
  display: inline-block;
  position: relative; }
  .a-simbolo p {
    font-size: 5em; }

.center-vertical-horizontal {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/**/
.actividad-drag-5 .cajonDrag {
  display: inline-block;
  text-align: center;
  border: 2px solid #46b5e8;
  background: #f1f1f1;
  color: #46b5e8;
  outline: none; }
.actividad-drag-5 .correctaDrag {
  border: 2px solid #46b5e8;
  background: #beb; }
.actividad-drag-5 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#herramientas-1 div {
    position: absolute;
    height: 18%;
    width: 29%; }
    .content-size#herramientas-1 div:nth-of-type(1) {
      top: 44%;
      left: 0; }
    .content-size#herramientas-1 div:nth-of-type(2) {
      top: 44%;
      right: 0; }
    .content-size#herramientas-1 div:nth-of-type(3) {
      top: 72%;
      left: 0; }
    .content-size#herramientas-1 div:nth-of-type(4) {
      top: 72%;
      right: 0; }
  .content-size#caballo-1 div {
    position: absolute;
    height: 18%;
    width: 15%;
    border-radius: 50%; }
    .content-size#caballo-1 div:nth-of-type(1) {
      top: 6.1%;
      left: 82.1%; }
    .content-size#caballo-1 div:nth-of-type(2) {
      top: 23.5%;
      left: 25.1%; }
    .content-size#caballo-1 div:nth-of-type(3) {
      top: 56.4%;
      left: 58.3%; }
    .content-size#caballo-1 div:nth-of-type(4) {
      top: 79.8%;
      left: 22.3%; }
  .content-size#clip-board-1 > div {
    position: absolute;
    padding: 20px 10px 10px 10px;
    top: 19%;
    left: 7%;
    height: 76%;
    width: 85.5%; }
    .content-size#clip-board-1 > div .clip-text-container {
      height: 20%; }
      .content-size#clip-board-1 > div .clip-text-container .clip-text {
        display: none;
        margin-left: 30px; }
  .content-size#clip-board-2 > div {
    position: absolute;
    padding: 20px 10px 10px 10px;
    top: 19%;
    left: 7%;
    height: 76%;
    width: 85.5%; }
    .content-size#clip-board-2 > div .clip-text-container {
      height: 25%; }
      .content-size#clip-board-2 > div .clip-text-container .clip-text {
        display: none;
        margin-left: 30px; }

.clip-board-1 > div {
  position: absolute;
  padding: 20px 10px 10px 10px;
  top: 19%;
  left: 7%;
  height: 76%;
  width: 85.5%; }
  .clip-board-1 > div .clip-text-container {
    height: 20%; }
    .clip-board-1 > div .clip-text-container .clip-text {
      display: none;
      margin-left: 30px; }

.clip-board-2 > div {
  position: absolute;
  padding: 20px 10px 10px 10px;
  top: 19%;
  left: 7%;
  height: 76%;
  width: 85.5%; }
  .clip-board-2 > div .clip-text-container {
    height: 20%; }
    .clip-board-2 > div .clip-text-container .clip-text {
      display: none;
      margin-left: 30px; }

.btn-color-mandala {
  height: 30px;
  width: 50px;
  cursor: pointer; }

.pointer {
  cursor: pointer; }

.mandala-container {
  position: relative;
  height: 200px;
  width: 200px;
  border: 2px solid #000;
  border-radius: 50%; }
  .mandala-container .petalo-1 {
    height: 100px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
    mix-blend-mode: multiply;
    border: 1px solid #000;
    position: absolute; }
    .mandala-container .petalo-1:nth-child(1) {
      left: 75px; }
    .mandala-container .petalo-1:nth-child(2) {
      transform: rotate(90deg);
      left: 122px;
      top: 50px; }
    .mandala-container .petalo-1:nth-child(3) {
      left: 75px;
      top: 97px; }
    .mandala-container .petalo-1:nth-child(4) {
      transform: rotate(90deg);
      top: 50px;
      left: 25px; }
  .mandala-container .petalo-2 {
    height: 100px;
    width: 25px;
    border-radius: 50%;
    cursor: pointer;
    mix-blend-mode: multiply;
    border: 1px solid #000;
    position: absolute; }
    .mandala-container .petalo-2:nth-child(5) {
      transform: rotate(45deg);
      left: 120px;
      top: 15px; }
    .mandala-container .petalo-2:nth-child(6) {
      transform: rotate(135deg);
      left: 122px;
      top: 82px; }
    .mandala-container .petalo-2:nth-child(7) {
      transform: rotate(45deg);
      left: 53px;
      top: 84px; }
    .mandala-container .petalo-2:nth-child(8) {
      transform: rotate(135deg);
      top: 15px;
      left: 50px; }

.flip-card-style-3 {
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */ }
  .flip-card-style-3 .flip-card {
    display: inline-block;
    background-color: transparent;
    width: 150px;
    height: 200px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    transition: transform 0.4s, opacity 0.4s;
    cursor: pointer; }
    .flip-card-style-3 .flip-card.ganada {
      opacity: 0.7;
      pointer-events: none; }
  .flip-card-style-3 .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s;
    transform-style: preserve-3d; }
  .flip-card-style-3 .flip-card.active .flip-card-inner.active {
    transform: rotateY(180deg); }
  .flip-card-style-3 .flip-card-front, .flip-card-style-3 .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; }
  .flip-card-style-3 .flip-card-front {
    background-image: radial-gradient(#212121 20%, transparent 20%), radial-gradient(#FAFAFA 20%, transparent 20%);
    background-color: #E53935;
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
    border: 2px solid #a51915;
    border-radius: 15px; }
  .flip-card-style-3 .flip-card-back {
    border: 2px solid #a51915;
    border-radius: 15px;
    transform: rotateY(180deg); }
    .flip-card-style-3 .flip-card-back.gradiant-1 {
      background: #000caa;
      background: linear-gradient(90deg, #000caa 0%, #1fff00 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-2 {
      background: #aa003a;
      background: linear-gradient(90deg, #aa003a 0%, #f5ff00 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-3 {
      background: #22c1c3;
      background: linear-gradient(0deg, #22c1c3 0%, #fdbb2d 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-4 {
      background: #2225c3;
      background: linear-gradient(45deg, #2225c3 0%, #f5ff00 22%, #01bf00 47%, #efff00 74%, red 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-5 {
      background: #0005ff;
      background: linear-gradient(45deg, #0005ff 0%, #f5ff00 12%, #0005ff 22%, #f5ff00 47%, #0005ff 74%, #f5ff00 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-6 {
      background: #0005ff;
      background: linear-gradient(135deg, #0005ff 0%, #ff00fe 12%, #0005ff 22%, #ff00fe 47%, #0005ff 74%, #ff00fe 100%); }
    .flip-card-style-3 .flip-card-back.gradiant-7 {
      background: #aa003a;
      background: linear-gradient(0deg, #aa003a 0%, #00f5ff 100%); }

.inds-scroll-borders {
  border: 2px solid #46b5e8;
  border-radius: 15px;
  background: #f1f1f1;
  overflow: hidden; }
  .inds-scroll-borders p {
    padding: 0 15px;
    font-weight: 600; }
    .inds-scroll-borders p:nth-of-type(odd) {
      color: #fff;
      background: #444; }

/*GLOBOS EXPLOTABLES*/
.globo-container {
  position: relative;
  display: inline-block; }
  .globo-container > div {
    position: absolute;
    top: 50%;
    padding: 5px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 15px; }
  .globo-container .explode-fx {
    position: absolute;
    left: 10%;
    top: 3%;
    display: none;
    transform: scale(0);
    /*&.active {
    	transform: scale(3);
    	transition-duration: 200ms;
    }*/ }
    .globo-container .explode-fx.active {
      animation-name: explode;
      animation-duration: 250ms; }
  .globo-container img.unexplodable {
    filter: sepia(1); }
    .globo-container img.unexplodable.unexploding {
      animation-name: unexploding;
      animation-duration: 100ms;
      animation-iteration-count: 4; }

@keyframes explode {
  from {
    transform: scale(0); }
  to {
    transform: scale(3); } }
@keyframes unexploding {
  0% {
    transform: translate(-5px, 0px); }
  50% {
    transform: translate(5px, 0px); }
  100% {
    transform: translate(-5px, 0px); } }
/*FGE*/
/**/
.string-check input {
  width: 60px; }

/**/
.content-size {
  display: inline-block;
  position: relative; }
  .content-size#inds-filetes-1 > div {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 63%;
    left: 66.7%; }
  .content-size#inds-filetes-2 > div {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 35%;
    left: 64%; }
  .content-size#inds-filetes-3 > div {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 13%;
    left: 23%; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#inds-parrafos-1 > div {
    position: absolute;
    height: 20px;
    width: 20px; }
    .content-size#inds-parrafos-1 > div:nth-of-type(1) {
      top: 10%;
      left: 26%; }
    .content-size#inds-parrafos-1 > div:nth-of-type(2) {
      top: 10%;
      left: 74%; }
    .content-size#inds-parrafos-1 > div:nth-of-type(3) {
      top: 38%;
      left: 15%; }
    .content-size#inds-parrafos-1 > div:nth-of-type(4) {
      top: 34%;
      left: 36%; }
    .content-size#inds-parrafos-1 > div:nth-of-type(5) {
      top: 50%;
      left: 63%; }
    .content-size#inds-parrafos-1 > div:nth-of-type(6) {
      top: 29%;
      left: 85%; }

.borders-2 {
  border-radius: 2rem;
  padding: 15px; }

.borders-6 {
  border: 5px solid #46b5e8;
  border-radius: 2rem;
  padding: 5px;
  height: 100%;
  background-color: #777; }
  .borders-6 p {
    color: white; }

.borders-7 {
  border: 5px solid #46b5e8;
  border-radius: 2rem;
  padding: 5px;
  height: 100%;
  background-color: #f1f1f1; }

/*Flex button*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap; }

.desplegar-multi {
  padding: 20px 10px;
  border: 2px solid #82d8ff;
  border-radius: 100px;
  background-color: #46b5e8;
  width: 100%;
  align-self: center;
  cursor: pointer; }

.info-multi {
  display: none; }

/**/
.actividad-drag-6 .cajonDrag {
  display: inline-block;
  text-align: center;
  border: 2px solid #46b5e8;
  background: #ddd;
  padding: 5px;
  outline: none; }
.actividad-drag-6 .correctaDrag {
  border: 2px solid #46b5e8;
  background: #beb; }
.actividad-drag-6 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb; }

.borders-5 {
  border: 2px solid black;
  border-radius: 2rem;
  padding: 15px;
  height: 100%;
  background-color: white; }

/*Flex button*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap; }

.desplegar-multi {
  padding: 20px 10px;
  border: 2px solid #82d8ff;
  border-radius: 100px;
  background-color: #46b5e8;
  width: 100%;
  align-self: center;
  cursor: pointer; }

.info-multi {
  display: none; }

.actividad-drag-12 .cajonDrag {
  width: 100px;
  height: 71px;
  padding: 5px 0;
  background-color: #fff;
  border: 2px solid #46b5e8;
  border-radius: 5px;
  display: inline-flex; }
  .actividad-drag-12 .cajonDrag p {
    font-size: 1.2em;
    text-align: center; }
.actividad-drag-12 .correctaDrag {
  background: #beb; }
.actividad-drag-12 .incorrectaDrag {
  background: #ebb; }

.ipad-frame {
  position: relative;
  background-color: black;
  padding: 7vh 5vh 12vh 5vh;
  width: 90%;
  height: 80vh;
  margin: auto;
  border-radius: 5%;
  border: 2px solid #777; }
  .ipad-frame .ipad-cam {
    position: absolute;
    background-color: #fff;
    top: 2vh;
    height: 2vh;
    width: 2vh;
    border-radius: 50%; }
  .ipad-frame .ipad-screen {
    height: 100%;
    background-color: #fff; }
  .ipad-frame .ipad-button {
    position: absolute;
    cursor: pointer;
    bottom: 3vh;
    width: 6vh;
    height: 6vh;
    box-shadow: -8px -8px 4px -4px #fff inset;
    border: 1px solid #fff;
    border-radius: 50%;
    user-select: none; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#illustrator-1 div {
    position: absolute;
    height: 5%;
    width: 15%; }
    .content-size#illustrator-1 div:nth-of-type(1) {
      top: 0;
      left: 10%; }
    .content-size#illustrator-1 div:nth-of-type(2) {
      top: 0;
      left: 62%; }
    .content-size#illustrator-1 div:nth-of-type(3) {
      top: 3%;
      left: 83%; }
    .content-size#illustrator-1 div:nth-of-type(4) {
      bottom: 1%;
      left: -2%; }
    .content-size#illustrator-1 div:nth-of-type(5) {
      bottom: 2%;
      left: 15%; }
    .content-size#illustrator-1 div:nth-of-type(6) {
      bottom: 2%;
      left: 39%; }
    .content-size#illustrator-1 div:nth-of-type(7) {
      bottom: 2%;
      left: 63%; }

/*SLIDER*/
.slider-style-1 .prev, .slider-style-1 .next {
  opacity: 0.8;
  color: #fff;
  background-color: #46b5e8;
  cursor: pointer;
  /*display: block;*/
  font-weight: bold;
  font-size: 56px;
  /*width: 38px;*/
  transition: 0.4s ease;
  /*border-radius: 50%;*/
  user-select: none; }
.slider-style-1 .prev:hover, .slider-style-1 .next:hover {
  opacity: 1 !important;
  color: #fff; }
.slider-style-1 .arrows {
  background-color: #46b5e8; }
.slider-style-1 .arrows a {
  opacity: 0.3;
  pointer-events: none; }
.slider-style-1 .arrows a.active {
  opacity: 0.7;
  pointer-events: all; }
.slider-style-1 .my-slides {
  display: inline-block;
  width: 100%;
  min-height: 60%;
  /*overflow: auto;*/
  white-space: normal;
  /*Para sliders horizontalez*/
  vertical-align: top; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#illustrator-2 div {
    position: absolute;
    height: 15%;
    width: 25%; }
    .content-size#illustrator-2 div:nth-of-type(1) {
      top: 45%; }
    .content-size#illustrator-2 div:nth-of-type(2) {
      top: 0;
      left: 62%; }
    .content-size#illustrator-2 div:nth-of-type(3) {
      top: 3%;
      left: 83%; }
    .content-size#illustrator-2 div:nth-of-type(4) {
      bottom: 1%;
      left: -2%; }

.absolute-center-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1; }

/**/
.img-cb, .img-rb {
  cursor: pointer; }
  .img-cb.inactive, .img-rb.inactive {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%); }
    .img-cb.inactive:hover, .img-rb.inactive:hover {
      -webkit-filter: grayscale(70%);
      /* Safari 6.0 - 9.0 */
      filter: grayscale(70%); }

/**/
/*SLIDER*/
.slider-type-1 .prev, .slider-type-1 .next {
  opacity: 0.8;
  color: #fff;
  cursor: pointer;
  /*display: block;*/
  font-weight: bold;
  font-size: 56px;
  /*width: 38px;*/
  transition: 0.4s ease;
  /*border-radius: 50%;*/
  user-select: none; }
.slider-type-1 .prev:hover, .slider-type-1 .next:hover {
  opacity: 1 !important;
  color: #fff; }
.slider-type-1 .arrows {
  background-color: #46b5e8; }
.slider-type-1 .arrows a {
  opacity: 0.3;
  pointer-events: none; }
.slider-type-1 .arrows a.active {
  opacity: 0.7;
  pointer-events: all; }
.slider-type-1 .my-slides {
  display: inline-block;
  width: 100%;
  min-height: 10%;
  /*overflow: auto;*/
  white-space: normal;
  /*Para sliders horizontalez*/ }

/**/
.actividad-drag-1 .cajonDrop {
  min-height: 200px;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 15px;
  background-color: #ddd; }
  .actividad-drag-1 .cajonDrop-header {
    padding: 15px;
    min-height: 30px;
    background-color: #ddd;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; }
.actividad-drag-1 .correctaDrop {
  background-color: #4e44;
  transition-duration: 300ms; }
.actividad-drag-1 .incorrectaDrop {
  background-color: #e444;
  transition-duration: 300ms; }
.actividad-drag-1 .drag-error-1 {
  background-color: #e444;
  transition-duration: 300ms; }
.actividad-drag-1 .drag-correcto-1 {
  background-color: #4e44;
  transition-duration: 300ms; }

.actividad-drag-8 .cajonDrag {
  display: inline-block;
  border: 2px solid #c9c9c9;
  background: #f1f1f1;
  color: #46b5e8;
  outline: none;
  border-radius: 10px;
  padding: 15px; }
.actividad-drag-8 .correctaDrag {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-8 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }
.actividad-drag-8 .cajonDrop {
  border: 2px solid #c9c9c9;
  background: #f1f1f1;
  color: #46b5e8;
  outline: none;
  border-radius: 10px; }
.actividad-drag-8 .correctaDrop {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-8 .incorrectaDrop {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#resolucion-1 > div {
    position: absolute;
    height: 11%;
    width: 30%; }
    .content-size#resolucion-1 > div:nth-of-type(1) {
      top: 5%;
      left: 56%; }
    .content-size#resolucion-1 > div:nth-of-type(2) {
      top: 32%;
      left: 86%; }
    .content-size#resolucion-1 > div:nth-of-type(3) {
      top: 71%;
      left: 100%; }

.absolute-center-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1; }

.answer-correct, .answer-incorrect {
  display: none;
  z-index: 2; }

.content-size {
  display: inline-block;
  position: relative; }

.barra-progreso-vert {
  position: absolute;
  top: 29.2%;
  left: 40%;
  width: 12.5%;
  height: 55.6%;
  background-color: #fff7;
  transform: rotate(180deg); }

.barra-progresado-vert {
  background-color: #000;
  height: 0;
  transition-duration: 500ms; }

.board-questions {
  min-height: 450px;
  position: relative;
  border-radius: 15px;
  padding: 15px; }
  .board-questions .question {
    animation-duration: 400ms; }
  .board-questions .round-button {
    display: block;
    max-width: 90%;
    min-width: 40%;
    border-radius: 15px;
    box-shadow: 5px 5px #0007;
    padding: 15px;
    outline: none;
    color: #fff; }
    .board-questions .round-button p {
      color: #fff;
      font-size: 2em; }
    .board-questions .round-button.active, .board-questions .round-button:active {
      box-shadow: 5px 5px #0007 inset; }

/**/
.estadistica-indicador-horiz.style-1 {
  height: 50px;
  border-top: 1px solid black;
  position: relative; }
  .estadistica-indicador-horiz.style-1.end {
    border-bottom: 1px solid black; }
  .estadistica-indicador-horiz.style-1 p {
    position: absolute;
    bottom: 100%; }

.barra-vert-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute; }
  .barra-vert-container .indicador-barra-vert.style-1 {
    width: 30px;
    height: 0;
    background-color: cornflowerblue;
    position: absolute;
    bottom: 0;
    transition-duration: 350ms; }
    .barra-vert-container .indicador-barra-vert.style-1 p {
      position: absolute;
      top: 100%; }

.libreta-fondo {
  background-image: url("../img/m2l3/recursos-ajustes-41.png");
  padding: 4% 4% 3.5% 3%;
  background-size: 100% 100%;
  width: 820px;
  max-width: 100%; }

.background-fixed-2 {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%; }

.imagen-area-arrastrable .content-size {
  display: inline-block; }
  .imagen-area-arrastrable .content-size div {
    position: absolute;
    height: 36%;
    width: 257px; }
    .imagen-area-arrastrable .content-size div:nth-of-type(1) {
      top: 14%;
      margin-left: 56px; }
    .imagen-area-arrastrable .content-size div:nth-of-type(2) {
      top: 14%;
      margin-left: 322px; }
    .imagen-area-arrastrable .content-size div:nth-of-type(3) {
      top: 62%;
      margin-left: 198px; }

.background-fixed-30 {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%; }

.imagen-area-arrastrable-30 .content-size {
  display: inline-block; }
  .imagen-area-arrastrable-30 .content-size div {
    position: absolute;
    height: 26%;
    width: 83px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(1) {
      top: -1%;
      margin-left: 112px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(2) {
      top: 44%;
      margin-left: -1px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(3) {
      top: 52%;
      margin-left: 221px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(4) {
      top: 19%;
      margin-left: 404px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(5) {
      top: 49%;
      margin-left: 801px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(6) {
      top: 0%;
      margin-left: 601px; }
    .imagen-area-arrastrable-30 .content-size div:nth-of-type(7) {
      top: 74%;
      margin-left: 495px; }

.actividad-drag-4 .cajonDrag {
  display: inline-block;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  color: #46b5e8;
  outline: none;
  border-radius: 10px; }
.actividad-drag-4 .correctaDrag {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-4 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }

.background-fixed-10 {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%; }

.imagen-area-arrastrable .content-size-10 {
  display: inline-block; }
  .imagen-area-arrastrable .content-size-10 div {
    position: absolute;
    height: 16%;
    width: 165px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(1) {
      top: 67%;
      margin-left: 440px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(2) {
      top: 86%;
      margin-left: 216px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(3) {
      top: 67%;
      margin-left: -2px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(4) {
      top: 67%;
      margin-left: 440px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(5) {
      top: 86%;
      margin-left: 216px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(6) {
      top: 67%;
      margin-left: -2px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(7) {
      top: 67%;
      margin-left: 440px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(8) {
      top: 86%;
      margin-left: 216px; }
    .imagen-area-arrastrable .content-size-10 div:nth-of-type(9) {
      top: 67%;
      margin-left: -2px; }

.actividad-drag-10 .cajonDrag {
  display: inline-block;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  color: #46b5e8;
  outline: none;
  border-radius: 10px; }
.actividad-drag-10 .correctaDrag {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-10 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }

.speech-bubble {
  position: absolute;
  background: #29303b;
  min-height: 100px;
  max-width: 300px;
  padding: 15px;
  margin-left: 50px;
  border-radius: 0.5rem; }

.speech-bubble:after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-right-color: #29303b;
  border-left: 0;
  border-top: 0;
  margin-top: -15px;
  margin-left: -30px; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#herramientas-2 div {
    position: absolute;
    height: 10%;
    width: 29%; }
    .content-size#herramientas-2 div:nth-of-type(1) {
      top: 2%;
      left: 1%; }
    .content-size#herramientas-2 div:nth-of-type(2) {
      top: 16%;
      right: 1%; }
    .content-size#herramientas-2 div:nth-of-type(3) {
      top: 32%;
      left: 1%; }
    .content-size#herramientas-2 div:nth-of-type(4) {
      top: 44%;
      right: 1%; }
    .content-size#herramientas-2 div:nth-of-type(5) {
      top: 59%;
      left: 1%; }
    .content-size#herramientas-2 div:nth-of-type(6) {
      top: 74%;
      right: 1%; }
    .content-size#herramientas-2 div:nth-of-type(7) {
      top: 89%;
      left: 1%; }

/*Camara interactiva*/
.camBtn {
  cursor: pointer; }

.flash {
  transition: 200ms;
  height: 5%;
  width: 5%; }
  .flash.flashing {
    background-color: white;
    box-shadow: 0px 0px 50px 50px white; }

.polaroid-pic {
  animation-delay: 500ms;
  max-width: 60%; }

.print-pic {
  max-width: 40%;
  margin-bottom: 5px;
  box-shadow: 5px 5px #0008;
  animation-delay: 500ms; }
  .print-pic.blurred {
    filter: blur(3px) hue-rotate(-15deg); }

/**/
.actividad-drag-2 .cajonDrag {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  border: 2px solid #c9c9c9;
  background: #f1f1f1;
  color: #46b5e8;
  outline: none;
  border-radius: 100%; }
.actividad-drag-2 .cajonDrop {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  border: 1px solid #c9c9c9;
  background: #f1f1f1;
  color: #303437;
  outline: none;
  border-radius: 100%; }
.actividad-drag-2 .correctaDrag {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-2 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }
.actividad-drag-2 .drag-span {
  position: absolute;
  line-height: 40px;
  font-size: 20px;
  margin-left: 20px;
  color: blue; }

.table-2 {
  border: 1px solid #46b5e8;
  margin: auto;
  font-family: 'Montserrat'; }
  .table-2 tbody tr td {
    border: 1px solid #46b5e8;
    vertical-align: middle;
    padding: 5px; }
  .table-2 thead tr th {
    border: 1px solid #46b5e8;
    padding: 5px; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#printer-2 > div {
    position: absolute; }
    .content-size#printer-2 > div.polaroid-container {
      width: 100%;
      top: 70.5%;
      overflow: hidden; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#camara-1 > div {
    position: absolute; }
    .content-size#camara-1 > div.polaroid-container {
      width: 100%;
      top: 65%;
      overflow: hidden; }

.print-pic {
  width: 40%;
  margin-bottom: 5px;
  box-shadow: 5px 5px #0008;
  animation-delay: 500ms; }
  .print-pic.blurred {
    filter: blur(3px) hue-rotate(-15deg); }

.cuadroInfo-2 {
  display: flex;
  align-items: center; }

.actividad-drag-7 .cajonDrop {
  width: 85%;
  padding: 30px;
  background-color: #ef970a;
  border-radius: 15px; }
  .actividad-drag-7 .cajonDrop p {
    font-size: 2em;
    color: #fff;
    text-align: center; }
.actividad-drag-7 .cajonDrag {
  width: 90%;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #ef970a;
  border-radius: 15px;
  display: inline-block; }
  .actividad-drag-7 .cajonDrag p {
    font-size: 1.2em;
    text-align: center; }
.actividad-drag-7 .correctaDrag {
  background: #beb; }
.actividad-drag-7 .incorrectaDrag {
  background: #ebb; }

.flip-box {
  cursor: pointer;
  background-color: transparent;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */ }

.flip-box-inner {
  position: relative;
  width: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d; }

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg); }

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; }

.flip-box-back {
  transform: rotateY(180deg); }

.cerrarX {
  cursor: pointer;
  position: absolute;
  color: #fff;
  right: 10px;
  top: 5px; }

.content-size {
  display: inline-block;
  position: relative; }
  .content-size#camera-2 > div {
    position: absolute; }
    .content-size#camera-2 > div.flash {
      top: 15%;
      left: 11%; }
    .content-size#camera-2 > div.polaroid-container {
      width: 100%;
      top: 91%; }

/**/
.flash {
  transition: 200ms;
  height: 5%;
  width: 5%; }
  .flash.flashing {
    background-color: white;
    box-shadow: 0px 0px 50px 50px white; }

/*Actividad ordenar palabras*/
.word-arranger-container {
  position: relative;
  height: 250px;
  width: 700px;
  margin: 0 auto;
  background-color: #fffa7b;
  border: 2px solid #ea9f22; }
  .word-arranger-container .letters-container-1 .letter-1 {
    top: 13%;
    left: 7%; }
  .word-arranger-container .letters-container-1 .letter-2 {
    top: 13%;
    left: 10%; }
  .word-arranger-container .letters-container-1 .letter-3 {
    top: 13%;
    left: 13%; }
  .word-arranger-container .letters-container-1 .letter-4 {
    top: 13%;
    left: 16%; }
  .word-arranger-container .letters-container-1 .letter-5 {
    top: 13%;
    left: 19%; }
  .word-arranger-container .letters-container-1 .letter-6 {
    top: 13%;
    left: 22%; }
  .word-arranger-container .letters-container-1 .letter-7 {
    top: 30%;
    left: 9%; }
  .word-arranger-container .letters-container-1 .letter-8 {
    top: 30%;
    left: 12%; }
  .word-arranger-container .letters-container-1 .letter-9 {
    top: 30%;
    left: 15%; }
  .word-arranger-container .letters-container-1 .letter-10 {
    top: 30%;
    left: 18%; }
  .word-arranger-container .letters-container-1 .letter-11 {
    top: 30%;
    left: 21%; }
  .word-arranger-container .letters-container-2 .letter-1 {
    top: 13%;
    left: 32%; }
  .word-arranger-container .letters-container-2 .letter-2 {
    top: 13%;
    left: 35%; }
  .word-arranger-container .letters-container-2 .letter-3 {
    top: 13%;
    left: 38%; }
  .word-arranger-container .letters-container-2 .letter-4 {
    top: 13%;
    left: 41%; }
  .word-arranger-container .letters-container-2 .letter-5 {
    top: 13%;
    left: 44%; }
  .word-arranger-container .letters-container-2 .letter-6 {
    top: 13%;
    left: 47%; }
  .word-arranger-container .letters-container-2 .letter-7 {
    top: 30%;
    left: 34%; }
  .word-arranger-container .letters-container-2 .letter-8 {
    top: 30%;
    left: 37%; }
  .word-arranger-container .letters-container-2 .letter-9 {
    top: 30%;
    left: 40%; }
  .word-arranger-container .letters-container-2 .letter-10 {
    top: 30%;
    left: 43%; }
  .word-arranger-container .letters-container-2 .letter-11 {
    top: 30%;
    left: 46%; }
  .word-arranger-container .letters-container-3 .letter-1 {
    top: 60%;
    left: 7%; }
  .word-arranger-container .letters-container-3 .letter-2 {
    top: 60%;
    left: 10%; }
  .word-arranger-container .letters-container-3 .letter-3 {
    top: 60%;
    left: 13%; }
  .word-arranger-container .letters-container-3 .letter-4 {
    top: 60%;
    left: 16%; }
  .word-arranger-container .letters-container-3 .letter-5 {
    top: 60%;
    left: 19%; }
  .word-arranger-container .letters-container-3 .letter-6 {
    top: 60%;
    left: 22%; }
  .word-arranger-container .letters-container-3 .letter-7 {
    top: 76%;
    left: 9%; }
  .word-arranger-container .letters-container-3 .letter-8 {
    top: 76%;
    left: 12%; }
  .word-arranger-container .letters-container-3 .letter-9 {
    top: 76%;
    left: 15%; }
  .word-arranger-container .letters-container-3 .letter-10 {
    top: 76%;
    left: 18%; }
  .word-arranger-container .letters-container-3 .letter-11 {
    top: 76%;
    left: 21%; }
  .word-arranger-container .letters-container-4 .letter-1 {
    top: 60%;
    left: 32%; }
  .word-arranger-container .letters-container-4 .letter-2 {
    top: 60%;
    left: 35%; }
  .word-arranger-container .letters-container-4 .letter-3 {
    top: 60%;
    left: 38%; }
  .word-arranger-container .letters-container-4 .letter-4 {
    top: 60%;
    left: 41%; }
  .word-arranger-container .letters-container-4 .letter-5 {
    top: 60%;
    left: 44%; }
  .word-arranger-container .letters-container-4 .letter-6 {
    top: 60%;
    left: 47%; }
  .word-arranger-container .letters-container-4 .letter-7 {
    top: 76%;
    left: 34%; }
  .word-arranger-container .letters-container-4 .letter-8 {
    top: 76%;
    left: 37%; }
  .word-arranger-container .letters-container-4 .letter-9 {
    top: 76%;
    left: 40%; }
  .word-arranger-container .letters-container-4 .letter-10 {
    top: 76%;
    left: 43%; }
  .word-arranger-container .letters-container-4 .letter-11 {
    top: 76%;
    left: 46%; }
  .word-arranger-container .letters {
    position: absolute;
    transition-duration: 1s;
    pointer-events: none;
    width: 20px;
    z-index: 2; }
    .word-arranger-container .letters.letter-6.arranged {
      top: 45%;
      left: 60%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-10.arranged {
      top: 45%;
      left: 62%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-9.arranged {
      top: 45%;
      left: 64%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-4.arranged {
      top: 45%;
      left: 66%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-5.arranged {
      top: 45%;
      left: 68%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-3.arranged {
      top: 45%;
      left: 70%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-2.arranged {
      top: 45%;
      left: 72%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-7.arranged {
      top: 45%;
      left: 74%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-1.arranged {
      top: 45%;
      left: 76%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-8.arranged {
      top: 45%;
      left: 78%;
      pointer-events: all; }
    .word-arranger-container .letters.letter-11.arranged {
      top: 45%;
      left: 80%;
      pointer-events: all; }
  .word-arranger-container .cb-arrange {
    position: absolute;
    height: 100px;
    width: 160px;
    background-color: #cacaca;
    border-radius: 20px;
    box-shadow: -5px -5px 0px 0px #0007 inset;
    cursor: pointer;
    transition: background-color 200ms, box-shadow 100ms;
    z-index: 1; }
    .word-arranger-container .cb-arrange.cb-pos-1 {
      top: 7%;
      left: 5%; }
    .word-arranger-container .cb-arrange.cb-pos-2 {
      top: 7%;
      left: 30%; }
    .word-arranger-container .cb-arrange.cb-pos-3 {
      top: 54%;
      left: 5%; }
    .word-arranger-container .cb-arrange.cb-pos-4 {
      top: 54%;
      left: 30%; }
    .word-arranger-container .cb-arrange:hover {
      background-color: #6fb1d0; }
    .word-arranger-container .cb-arrange.active {
      background-color: #46b5e8;
      box-shadow: 5px 5px 0px 0px #0007 inset; }

/**/
.content-size {
  display: inline-block;
  position: relative; }
  .content-size#photoshop-1 > div {
    position: absolute;
    height: 8%;
    width: 12%; }
    .content-size#photoshop-1 > div:nth-of-type(1) {
      top: 55%;
      left: 3%; }
    .content-size#photoshop-1 > div:nth-of-type(2) {
      top: 20%;
      left: 10%; }
    .content-size#photoshop-1 > div:nth-of-type(3) {
      top: 2%;
      left: 3%; }
    .content-size#photoshop-1 > div:nth-of-type(4) {
      top: 39%;
      left: 59%; }

.actividad-drag-9 .cajonDrag {
  display: inline-block;
  width: 125px;
  border: 2px solid #46b5e8;
  background: #FFF;
  outline: none;
  border-radius: 10px;
  padding: 7px; }
  .actividad-drag-9 .cajonDrag p {
    color: #46b5e8;
    font-weight: 600;
    text-align: center; }
.actividad-drag-9 .correctaDrag {
  border: 2px solid darkgreen;
  background: #beb;
  color: #46b5e8; }
.actividad-drag-9 .incorrectaDrag {
  border: 2px solid darkred;
  background: #ebb;
  color: #46b5e8; }

.string-check input {
  width: 60px; }

/**/
.bp-style-1 h3, .bp-style-1 h2 {
  color: #f5f5f5; }
.bp-style-1 .bp-contain-preguntas {
  background-image: url("../img/m4l5/fondo-f-v.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px;
  border-radius: 30px;
  color: #f5f5f5;
  height: 300px; }
.bp-style-1 .bp-answer {
  display: inline-block;
  height: 60%;
  width: 49.5%;
  padding: 30px;
  background-color: #0003;
  box-shadow: 0 0 20px 5px #46b5e8; }
  .bp-style-1 .bp-answer:hover {
    cursor: pointer;
    background-color: #0000004a;
    box-shadow: 0 0 20px 10px #46b5e8; }
  .bp-style-1 .bp-answer:active {
    box-shadow: 0 0 20px 10px #46b5e8 inset; }

.bp-correcta {
  display: none; }

.bp-error {
  display: none; }

/**/
.boton-2 {
  border: 3px solid #e0004d;
  /*anchura, estilo y color borde*/
  background-color: transparent;
  /*color botón*/
  color: #e0004d;
  /*color texto*/
  text-decoration: none;
  /*decoración texto*/
  font-family: 'Montserrat';
  /*tipografía texto*/
  border-radius: 0.5rem;
  /*bordes redondos*/
  outline: none;
  /*Sin bordes al dar click*/
  transition-duration: 0.3s; }
  .boton-2:hover {
    background-color: #e0004d;
    color: #fff;
    transition-duration: 0.3s; }

.silueta-guia {
  visibility: hidden;
  pointer-events: none;
  max-width: 12vw;
  position: absolute;
  opacity: 0.7;
  z-index: 1; }

.silueta-fondo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; }
  .silueta-fondo img {
    visibility: hidden; }

/*Camara interactiva*/
.camBtn {
  cursor: pointer; }

.flash {
  transition: 200ms;
  height: 5%;
  width: 5%; }
  .flash.flashing {
    background-color: white;
    box-shadow: 0px 0px 50px 50px white; }

.polaroid-pic {
  animation-delay: 500ms;
  max-width: 60%; }

.print-pic {
  max-width: 40%;
  margin-bottom: 5px;
  box-shadow: 5px 5px #0008;
  animation-delay: 500ms; }
  .print-pic.blurred {
    filter: blur(3px) hue-rotate(-15deg); }

/**/
.content-size {
  display: inline-block;
  position: relative; }
  .content-size#camera-1 > div {
    position: absolute; }
    .content-size#camera-1 > div.flash {
      top: 16%;
      left: 71%; }
    .content-size#camera-1 > div.polaroid-container {
      width: 100%;
      top: 76%; }

.image-changer {
  position: relative;
  cursor: pointer; }
  .image-changer.round-button {
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 5px 5px #0007;
    padding: 15px; }
    .image-changer.round-button p {
      color: #fff;
      font-size: 2em; }
    .image-changer.round-button.active, .image-changer.round-button:active {
      box-shadow: 5px 5px #0007 inset; }
  .image-changer.flag-button {
    width: 100px;
    padding: 15px;
    transition-duration: 200ms; }
    .image-changer.flag-button p {
      color: #fff;
      font-size: 3em; }
    .image-changer.flag-button:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      border-top: 25px solid transparent;
      border-bottom: 25px solid transparent;
      height: 0;
      width: 0;
      border-right: 35px solid #eeeff0;
      /*mix-blend-mode: darken;*/ }
    .image-changer.flag-button:hover {
      width: 110px; }
    .image-changer.flag-button.active {
      z-index: 2;
      width: 110px; }

.cuadroInfo-2 {
  display: flex;
  align-items: center; }

@media only screen and (max-width: 1200px) {
  .cuadroInfo-2 {
    padding: 15px; } }
@media only screen and (max-width: 992px) {
  .cuadroInfo-2 {
    display: block;
    padding: 15px; } }
.shadow-trans {
  z-index: 1;
  box-shadow: 5px 5px #0005; }

.barra-progreso-2 {
  width: 50%;
  background-color: #ddd;
  border-style: solid;
  border-width: 10px 20px 10px 20px;
  border-color: #46b5e8;
  border-radius: 4rem; }

.barra-progresado-2 {
  width: 0%;
  height: 30px;
  background-color: #ff0;
  box-shadow: 0 0 20px 10px #ff0;
  transition: width 1s; }

.tCabecera-1 {
  background-color: #46b5e8;
  color: #fff; }

.table-actividad {
  border: 1px solid #46b5e8;
  margin: auto;
  font-family: 'Montserrat'; }
  .table-actividad tbody tr td:nth-child(odd) {
    border: 1px solid #46b5e8;
    border-width: 1px 0px 1px 1px;
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px; }
  .table-actividad tbody tr td:nth-child(even) {
    border: 1px solid #46b5e8;
    border-width: 1px 1px 1px 0px;
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px; }
  .table-actividad tbody tr:hover {
    background-color: #eee; }
  .table-actividad thead tr th {
    border: 1px solid #46b5e8;
    padding-left: 5px;
    padding-right: 5px; }

input.no-arrows[type="number"]::-webkit-outer-spin-button, input.no-arrows[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.container-radio-2 {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Estilo cuando pasa el ratón por encima */
  /* Estilos cuando está chekeado */
  /* Mostrar el indicador cuando está chekeado */ }
  .container-radio-2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .container-radio-2 .checkmark2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    /* Crea el indicador (el chulo - oculto si no esta chekeado) */
    /* Estilo del indicador (el chulo) */ }
    .container-radio-2 .checkmark2:after {
      content: "";
      position: absolute;
      display: none; }
    .container-radio-2 .checkmark2:after {
      top: 3px;
      left: 7px;
      width: 7px;
      height: 12px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .container-radio-2:hover input ~ .checkmark2 {
    background-color: #ccc;
    transition: all 0.3s; }
  .container-radio-2 input:checked ~ .checkmark2 {
    background-color: #46b5e8;
    transition: all 0.3s; }
  .container-radio-2 input:checked ~ .checkmark2:after {
    display: block;
    transition: all 0.3s; }

.selecter {
  max-width: 140px;
  margin-right: 15px; }

/*ACTIVIDAD ESTILOS PARA AREAS DEL MAPA*/
.image-map-container {
  position: relative;
  display: inline-block; }

.image-map-container img {
  display: block; }

.terminoDrop {
  height: 40px;
  border-radius: 3px;
  padding: 0rem !important;
  background-color: #d8d8d8; }

.conceptoT1 {
  cursor: pointer;
  margin-bottom: 20px; }

.terminoFloat {
  float: left;
  margin-left: 2em; }

.mm {
  border: 3px solid #46b5e8;
  /*anchura, estilo y color borde*/
  background-color: transparent;
  /*color botón*/
  text-decoration: none;
  /*decoración texto*/
  font-family: 'Montserrat';
  /*tipografía texto*/
  border-radius: 0.5rem;
  /*bordes redondos*/
  outline: none;
  /*Sin bordes al dar click*/
  transition-duration: 0.3s;
  width: 236px;
  height: 270px; }

.map-selector:after {
  content: '';
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: inherit;
  pointer-events: none; }

/*FEPADM*/
/*ACTIVIDAD RELACIONAMIENTO*/
.bola-1 {
  position: absolute;
  top: 10px;
  right: -15px;
  height: 25px;
  width: 25px;
  background-color: #b1b1b1;
  border-radius: 50%;
  cursor: pointer; }
  .bola-1:hover {
    background-color: #717171; }
  .bola-1.active {
    background-color: #0f21a1; }

.bola-2 {
  position: absolute;
  top: 10px;
  left: -15px;
  height: 25px;
  width: 25px;
  background-color: #b1b1b1;
  border-radius: 50%;
  cursor: pointer; }
  .bola-2:hover {
    background-color: #717171; }
  .bola-2.active {
    background-color: green; }

.bola-f {
  position: absolute;
  top: 10px;
  right: -15px;
  height: 25px;
  width: 25px;
  background-color: green;
  border-radius: 50%;
  cursor: pointer; }

.img-error, .img-correct {
  display: none; }

.div-radius {
  position: absolute;
  padding: 15px;
  border-radius: 2rem; }

/**/
.content-size {
  display: inline-block;
  position: relative; }
  .content-size.fuentes-1 div {
    position: absolute;
    height: 30%;
    width: 80%; }
    .content-size.fuentes-1 div:nth-of-type(1) {
      bottom: 10%;
      left: 10%; }

.absolute-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1; }

.slider-container.ipad-like {
  position: relative;
  background-color: black;
  padding: 7vh 5vh 12vh 5vh;
  width: 50vw;
  height: auto;
  margin: auto;
  border-radius: 5%; }
  .slider-container.ipad-like .slider-style-ipad {
    background-color: #fff;
    height: 40vh;
    overflow: hidden; }
  .slider-container.ipad-like .prev, .slider-container.ipad-like .next {
    opacity: 0.8;
    cursor: pointer;
    display: inline-block;
    width: 6vh;
    height: 6vh;
    box-shadow: -8px -8px #fff inset;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: opacity 0.4s ease, box-shadow 10ms linear;
    user-select: none; }
    .slider-container.ipad-like .prev:hover, .slider-container.ipad-like .next:hover {
      opacity: 1 !important;
      color: #e0004d; }
    .slider-container.ipad-like .prev:active, .slider-container.ipad-like .next:active {
      box-shadow: 8px 8px #fff inset; }
  .slider-container.ipad-like .arrows {
    width: auto;
    bottom: 3vh; }
  .slider-container.ipad-like .arrows a {
    opacity: 0.5;
    pointer-events: none; }
  .slider-container.ipad-like .arrows a.active {
    opacity: 0.8;
    pointer-events: all; }
  .slider-container.ipad-like .my-slides {
    display: none;
    padding: 15px;
    height: 100%;
    overflow: auto; }
.slider-container .ipad-top-circle {
  position: absolute;
  top: 2vh;
  height: 2vh;
  width: 2vh;
  background-color: #fff;
  border-radius: 50%; }

.arrastrable {
  cursor: grab; }

.arrastrable:active {
  cursor: grabbing; }

.audioBtn {
  cursor: pointer; }

.a-enlace {
  display: inline-block;
  border: 3px solid #46b5e8;
  /*anchura, estilo y color borde*/
  background-color: #46b5e8;
  /*color botón*/
  border-radius: 1rem;
  /*bordes redondos*/
  outline: none;
  /*Sin bordes al dar click*/
  transition-duration: 0.3s;
  padding: 5px;
  font-size: 1.3em; }
  .a-enlace a {
    transition-duration: 0.3s;
    color: #fff;
    /*color texto*/
    text-decoration: none;
    /*decoración texto*/
    font-family: 'Montserrat';
    /*tipografía texto*/ }

.a-enlace:hover {
  background-color: #fff; }
  .a-enlace:hover a {
    color: #46b5e8;
    transition-duration: 0.3s; }

.infoIcono {
  background-color: #eee;
  border-radius: 1rem;
  padding: 15px;
  padding-left: 15px;
  padding-right: 15px; }

.cuadroInfo {
  display: flex;
  align-items: center; }

@media only screen and (max-width: 1200px) {
  .cuadroInfo {
    padding: 15px; } }
@media only screen and (max-width: 992px) {
  .cuadroInfo {
    display: block;
    padding: 15px; } }
.cuadroInfo-borders-1 {
  border: 1px solid #ccc;
  border-radius: 2rem;
  padding-top: 15px;
  padding-bottom: 15px; }

.flag-down {
  display: inline-block;
  height: 55px;
  position: relative;
  width: 100px; }
  .flag-down.cyan {
    background-color: #89f; }
    .flag-down.cyan:before {
      border-top: 35px solid #89f; }
  .flag-down:before {
    content: "";
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    height: 0;
    left: 0;
    position: absolute;
    top: 55px;
    width: 0; }

.back-img-fit-content {
  background-image: url("../img/m1l1/recursos-tema-5-24.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  position: relative;
  padding: 0; }

.fondo {
  background-image: url("../img/m1l1/recursos-15.png"); }

.fondo1 {
  background-image: url("../img/m2l3/recursos-03.png"); }

.cajon-suelta-1 {
  min-height: 250px;
  background-color: #E4E4E4;
  border-radius: 2rem;
  padding: 15px; }

.cajon-suelta-2 {
  border: 2px solid #46b5e8;
  border-radius: 2rem;
  padding: 15px; }

@media only screen and (max-width: 991px) {
  .cajon-suelta-1 {
    min-height: 150px; } }
.drag-error-1 {
  background-color: #e444;
  transition-duration: 300ms; }

.drag-correcto-1 {
  background-color: #4e44;
  transition-duration: 300ms; }

.arrastrable {
  cursor: grab; }

.arrastrable:active {
  cursor: grabbing; }

.error-1 {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.correcto-1 {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.pressedKey {
  color: #f00;
  font-weight: 600;
  transition-duration: .3s; }

/**/
.folder-container {
  background-color: #e7c747;
  height: 250px;
  width: 80%;
  min-width: 400px;
  border-radius: 5px 5px 3px 3px;
  position: relative; }
  .folder-container .polaroid-container {
    overflow: hidden;
    width: 100%;
    position: static;
    bottom: 100%;
    transition-duration: 250ms; }
  .folder-container .polaroid-pic {
    height: 250px;
    background-color: #9a9afa;
    min-width: 618px;
    padding: 15px;
    box-shadow: 10px 5px 2px #0007;
    margin-bottom: 6px; }

.folder-tab {
  cursor: pointer;
  position: absolute;
  bottom: 100%;
  height: 20%;
  width: 10%;
  border-radius: 5px 5px 0 0;
  z-index: 1; }
  .folder-tab > p {
    text-align: right;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px; }

/**/
.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 .texto-titulo-1 {
  font-weight: 400; }

.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 .linea-1 {
  border-top: 0.2rem solid #46b5e8;
  margin-left: 0rem; }

.m4l2 .contenido-2 .seccion-2 .cajon-boton-1 {
  cursor: pointer;
  opacity: 0.5; }

.m4l2 .contenido-2 .seccion-2 .cajon-boton-1 .texto-contenido-1 span .fondo-1 {
  color: #46b5e8; }

.m4l2 .contenido-2 .seccion-2 .cajon-boton-1:hover {
  opacity: 1; }

.m4l2 .contenido-2 .seccion-2 .desactiva {
  opacity: 0.2;
  pointer-events: none; }

.m4l2 .contenido-2 .seccion-2 .cajon-contenido-multimedia-1 .seccion-libro-1 .cajon-texto-1 {
  border: 0.1rem solid #46b5e8; }

.m4l2 .contenido-2 .seccion-2 .border-1 .seccion-libro-1 .cajon-texto-1 {
  border-top: 0rem solid #edac00;
  border-left: 0rem solid #edac00;
  border-right: 0rem solid #edac00;
  border-bottom: 0.1rem solid #edac00; }

.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 {
  margin-bottom: 2rem !important; }

.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 .linea-1 {
  width: 60%; }

.m4l2 .contenido-2 .seccion-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -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; }

.m4l2 .contenido-2 .seccion-2 #btnAnterior-1 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.m4l2 .contenido-2 .seccion-2 #btnSiguiente-1 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.m4l2 .contenido-2 .seccion-2 .cajon-contenido-multimedia-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.m4l2 .contenido-2 .seccion-2 .cajon-contenido-multimedia-1 .seccion-libro-1 .cajon-texto-1 .sub-seccion-1 {
  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; }

.m4l2 .contenido-2 .seccion-2 .cajon-contenido-multimedia-1 .seccion-libro-1 .cajon-texto-1 .sub-seccion-1 .cajon-imagen-1 {
  margin-bottom: 2rem; }

.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 {
  margin-bottom: 0rem !important; }

.m4l2 .contenido-2 .seccion-1 .cajon-texto-1 .linea-1 {
  width: 50%; }

.m4l2 .contenido-2 .seccion-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.m4l2 .contenido-2 .seccion-2 #btnAnterior-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.m4l2 .contenido-2 .seccion-2 #btnSiguiente-1 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

/*# sourceMappingURL=trabajo.css.map */
