*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/*MOBILE FIRST*/
body{
    background-image: url(../imagenes/background_mobile.svg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1{
    text-align: center;
    margin: auto;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    color:#ffffff;
    padding: 1em;
    text-shadow: 0em .3em .3em #262626;
}
#paginaregistro{
    flex-wrap: wrap;
    margin: auto;
}
#paginaregistro>h1{
    text-align: center;
    margin: auto;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    color:#ffffff;
    padding: 1em;
    text-shadow: 0em .3em .3em #262626;
    width: 100%;
}
.sinopsislibro>p{
    background-color: #ffffff;
    border-radius: 0.3em;
    color: #1ca697;
    font-family: 'Sansita', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    padding: 1em 4em;
    max-width: 100%;
}
    /* ------ INICIO HEADER ------ */
header{
    background-color: #1ca697;
    position: sticky;
    z-index: 9999;
    top: 0;
    left: 0;
    box-shadow: 0em .2em .3em #595959;
    height: 5em;
}
header>div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: .2em .2em;
}
#logo img{
    width: 13em;
    margin: .5em;
    padding: .3em;
}

/*menu hamburguesa*/
.material-icons-round {
    font-family: 'Material Icons Round';
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    color: #ff7a1f;
    background-color: #9ad9c8;
    border-radius: .2em;
    padding: .2em;
}

nav ul{
    float: right;
    margin-right: 2em;
}
nav ul li{
    display: block;
    margin: 1.5em .5em;
}
nav ul li a{
    color: #ffffff;
    padding: .5em 1em;
    border-radius: .3em;
    text-transform: uppercase;
    font-size: 1.4em;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}
.itemsmenu{
    position: fixed;
    width: 70%;
    height: 100vh;
    background: #1ca696b9;
    top: 5.111em;
    right: -200%;
    text-align: center;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5em 0em;
}
.checkbtn{
    font-size: 1em;
    color: #ffffff;
    float: right;
    line-height: 0em;
    margin-right: .5em;
    cursor: pointer;
    display: none;
   
}

#check{
    display: none;
}
.checkbtn{
    display: block;
}
li a:hover, li a.active{
    background-color: #9ad9c8;
    color: #ffffff;
}
#check:checked ~ ul{
    right:-5em;
}

/*fin menu hamurguesa*/

    /* ------ FIN HEADER ------ */

/* PAGINA PRINCIPAL */

    /* ------ INICIO SLIDER ------ */
.title{
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0em;
    padding: 0;
    font-family: 'Sansita', sans-serif;
    color: white;
    font-size: 2.4em;
    
}
    
.container__slider{
    max-width: 1000px;
    height: 500px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
input[type=radio] {
    display: none;
}
    
.container{
    width: 100%;
    max-width: 500px;/*Modificar esto para luego ajustar las portadas de los libros que van*/
    height: 100%;/*Modificar esto para luego ajustar las portadas de los libros que van*/
    max-height: 3000px; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    transform-style:preserve-3d ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .5em;
}
.cards{
    position: relative;
    width: 100%;
    height: 100%;
}
.card{
    position: absolute;
    width: 60%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    height: 100%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44,1);
}
    
.cards img {
    width: 100%;
    height: 70%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}
    
#item-2:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-3, 
#item-3:checked ~ .cards #selector-2 {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.8;
    z-index: 0;
    
}

#item-2:checked ~ .btns #selector-1, 
#item-1:checked ~ .btns #selector-3, 
#item-3:checked ~ .btns #selector-2 {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.8;
    z-index: 0;
    
} 
    
#item-3:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-2, 
#item-2:checked ~ .cards #selector-3{
    transform: translateX(50%) scale(0.5);
    opacity: 0.8;
    z-index: 0;
} 

/* ------ SACA LOS BOTONES DEL SLIDER ------ */
#item-2:checked ~ .cards #selector-1 .botones, 
#item-1:checked ~ .cards #selector-3 .botones, 
#item-3:checked ~ .cards #selector-2 .botones{
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    z-index: 0;
} 
#item-3:checked ~ .cards #selector-1 .botones, 
#item-1:checked ~ .cards #selector-2 .botones, 
#item-2:checked ~ .cards #selector-3 .botones{
    transform: translateX(50%) scale(0.5);
    opacity: 0;
    z-index: 0;
} 
/* ------ SACA LOS BOTONES DEL SLIDER ------ */  
    
    
#item-1:checked ~ .cards #selector-1, 
#item-2:checked ~ .cards #selector-2, 
#item-3:checked ~ .cards #selector-3{
    transform: translateX(0) scale();
    z-index: 3;
}
    /* ------ FIN SLIDER ------ */

.botones{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.botones a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-size: 20px;
    font-style: normal;
    background-color:#ff7a1f;
    display: block;
    text-align: center;
    align-items: center;
    width: 15em;
    padding: .3em;
    border-radius: 1em;
    margin: .1em;
}

.botones a:hover {
    background-color: white;
    color: #ff7a1f;
}

    /* ------ GENEROS ------ */
.generos h2{
    font-family: 'Sansita', sans-serif;
    font-size: 1.5em;
    text-shadow: 0em .3em .3em #262626;
    margin: 1em 0em;
}
.linea{
    background-color: #ffffff;
    height: 3px;
    width: 100%;
    margin-top: 10px;
}
.generos img{
    width: 50vmin;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: .5em;
    margin-bottom: .5em;
    box-shadow: .3em .3em .3em #595959;
    display: block;
}
.generos>article{
    margin-top: .5em;
    margin-bottom: 1em;
}
.generos{
    text-align: center;
    margin: 0em .5em;
    color: #ffffff;
}
.generos article a{
    text-decoration: none;
    color: #ffffff;
}
.generos article a>h3{
    background-color: #1ca697;
    padding: .5em;
    border-radius: 1em;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
}
    /* ------ FIN GENEROS ------ */

/* FIN DE PAGINA PRINCIPAL */

/*---- SCROLL Y BARRA ----*/

#ir_arriba_boton{
    position: fixed;
    z-index: 1000;
    right: 2em;
    bottom: 2em;
    width: 4em;
    height: 4em;
    text-align: center;
    transition: all .5s;
    transform: scale(1.1);

}
#ir_arriba_boton:hover{
    transform: scale(2.2);
    cursor: pointer;
}
#arrow{
    background-color: #ffffff;
    border-radius: 100%;
    border-style: outset;
    border-color: #ff7a1f;
}

.indicador_contenedor{
    width: 100%;
    position: fixed;
    height: 7px;
    z-index: 1010;
}

.indicador_scroll{
    height: 100%;
    width: 0;
    background-color: #ff7a1f;
}

.ocultar{
    opacity: 0;
    visibility: hidden;
}

.mostrar{
    opacity: 1;
    visibility: visible;
}

/*---- FIN SCROLL Y BARRA ----*/
/*----PERFIL----*/
.perfil img{
    border-radius: 100%;
    padding: 1em;
    background-color: #ff7a1f;
    width: 50vmin;
    height: 50vmin;
    display: block;
    margin: 1em auto;
}
.perfil h2{
    text-align: center;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    color: #595959;
    font-size: 2em;
}
.resenados img{
    height: auto;
    width: 30vmin; 
}
.resenados h2{
    font-family: 'Sansita', sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    color: #595959;
    margin: 1em auto;
    text-align: center;
}
.info h4{
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 600;
}
.info p{
    color: #595959;
    font-family: 'Poppins', sans-serif;
    font-size: .8em;
}
.resenados{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.resenados article{
    background-color: #1ca696b0;
    border-radius: 2em;
    margin: 1em auto;
    max-width: 70vh;
    max-height: 100vh ;
    height: 80vh;
    width: 35vh;
}
.resenados article>div{
    padding: 1em;
}
/*----FIN PERFIL----*/
/* ---- ALERTA ----*/
.cta{
 display: inline-block;
 padding: 7px 0;
 width: 100px;
 border: 1px solid #ffffff;
 border-radius: 50px;
 text-align: center;
 text-decoration: none;
 color: #1ca697;
 background-color: #ffffff;
 font-family: 'sansita', sans-serif;
}
.modal-container{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #262626b0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal{
    width: 80%;
    height: 50%;
    background: #ffffff;
    border-radius: 1em;
    box-shadow: .3em .3em .3em #262626;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    position: relative;
    transition: transform 1s;
    transform: translateY(-200%);
}
.modal-textos h2{
    font-family: 'Sansita', sans-serif;
    font-weight: bold;
}
.modal-textos p{
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
}
.close{
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background-color: red;
    color: #ffffff;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
}
.modal-close{
    transform: translateY(-20%);
}
.resena .modal > img{
    height: 40%;
    width: auto;
    border-radius: 100%;
}
/* ---- FIN ALERTA ----*/

/* RESEÑAS */
.resena{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}
.resena div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.resena img{
    height: 20em;
    width: auto;
    margin: auto;
    margin-top: 2em;
    box-shadow: .3em .3em .3em #595959;
}
#form {
    width: 250px;
    margin: 0 auto;
    height: 50px;
}
  
#form p {
    text-align: center;
    
}
  
#form label {
    font-size: 20px;
}
  
input[type="radio"] {
    display: none;
}

label {
    color: grey;
}
  
.clasificacion {
    direction: rtl;
    unicode-bidi: bidi-override;
    text-align: center;
    margin: 0;
    font-size: xx-large;
}

label:hover,
label:hover ~ label {
    color: orange;
}
  
input[type="radio"]:checked ~ label {
    color: orange;
}

.comentario{
    background-color: #1ca697;
    margin: 1em auto;
    border-radius: 1em;
    padding: 1em;
}
.resena>div{
    margin: 1em 0em;
}
.comentarios{
    font-family: 'Poppins', sans-serif;
    resize: none;
}
.comentario h2{ 
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;

}
/* FIN DE RESEÑAS*/

/* TALLERES */

.talleres{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin: 0em 1em;
}
.proponer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.proponer h2{
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-size: 1.4em;
    color: #595959;

}
.proponer a{
    background-color: #ff7a1f;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    margin: 1em;
    padding: .2em 1em;
    border-radius: .5em;
}
.proponer a:hover{
    background-color: #1ca697;
}
.taller{
    background-color: #1ca696b0;
    margin: 1em 0em;
    border-radius: 2em;
}
.taller figure img{
    width: 80%;
}
.taller figure{
    width: 90%;
    display: block;
    margin: 1em auto;  
}
.taller h2{
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-size: 1.4em;
    text-shadow: 0em .2em .2em #262626;
    color: #ffffff;
}
.taller ul{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: .8em;
    color: #262626;
    margin: 1em 0em;
    list-style: none;
}
.taller a{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    background-color: #ff7a1f;
    border-radius: .5em;
    margin: 1em 0em;
    padding: .3em 2em;
    box-shadow: 0em .2em .2em #595959;
}
.taller a:hover{
    background-color: #1ca697;
}

/* FIN DE TALLERES */

/* TALLER */

.taller1 img{
    width: 90vmin;
}
.taller1>div{
    width: 90vmin;
    margin: 2em 0em;
}
.taller1{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin: 0em 1em;
}
.taller1 div>p{
    font-family: 'Poppins', sans-serif;
    font-size: .8em;
    color: #262626;
    font-weight: 400;
    font-style: normal;
    background-color: #ffffff90;
    border-radius: 1em;
    padding: 1em;
    margin: 1em;
}
.taller1 div ul li{
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #262626;
    font-weight: 600;
    font-style: italic;
}
.taller1>div>ul{
    margin: 1em 2em;
    background-color: #1ca697b0;
    padding: 1em 2em;
    border-radius: 1em;
}
.taller1 div a{
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-size: 1.2em;
    width: auto;
    background-color: #ff7a1f;
    border-radius: .3em;
    margin: .5em;
    padding-top: .1em;
    padding-bottom: .3em;
    padding-right: 1em;
    padding-left: 1em;
    text-decoration: none;
    color: #ffffff;
}
.taller1 div a:hover{
    background-color: #1ca697;
}

/* FIN TALLER */

/* PROPONER TALLER */
.propuestataller{
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.propuestas li{
    background-color: #1ca697;
    margin: .5em .5em;
    border-radius: 1em;
    padding: 1em;
}
.propuestataller>h2{
    color: #595959;
    text-align: center;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
}
.propuestas h4{
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 600;
}
.propuesta1{
    color: #262626;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

.propuestas{
    margin: 1em 1em;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FIN PROPONER TALLER*/

/* UBICACIONES */

.infolibro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.fotolibro img {
    display: block;
    text-align: center;
   width: 15em;
   margin: 1em;
   border-radius: .3em;
   box-shadow: .3em .3em .3em #595959;
   
}

.detalleslibro{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-style: normal;
    font-size: 18px;
    background-color: #1ca697;
    display: block;
    width: 100%;
    text-align: start;
    align-items: center;
    padding: 1em;
    border-radius: .3em;
    margin: .5em;
    box-shadow: .3em .3em .3em #595959;
}
 
.infolibro ul{
    list-style: none;
}

.infolibro ul li a{
   
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #1ca697;
    display: block;
    text-align: center;
    align-items: center;
    padding: .3em;
    border-radius: .3em;
    margin: .5em;
    box-shadow: .3em .3em .3em #595959;
}

.infolibro ul li a:hover{
   
    background-color: #ff7a1f;
}

.infolibro h2{
    color: #ffffff;
    margin: auto;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    padding: 1em;
    text-shadow: 0em 0.3em 0.3em #262626;
    text-align: center;
}
.ubicacioness ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1em;
}
.ubicacioness ul li img{
    height: 4em;
    width: auto;
}
.ubicacioness ul li>h3{
    background-color: #ffffff;
    border-radius: 0.3em;
    color: #1ca697;
    padding: 1em;
    font-family: 'Sansita', sans-serif;
    font-style: normal;
    font-size: 18px;
    max-width: 100%;
}

/* FIN UBICACIONES*/
/* LIBROS */
.librosgeneros li a{
    text-decoration: none;
    color: #ffffff;
    background-color: #ff7a1f;
    border-radius: .5em;
    padding: .5em;
    display: block;
    margin: 1em;
    text-align: center;
    font-family: 'Sansita', sans-serif;
}
.listadolibros>h3{
    width: 100%;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background-color: #1ca697;
    border-radius: .5em;
    padding: .3em;
    margin: 1em;
}
.listadolibros{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
    max-width: 100%;
    max-width: 100%;
}

.librosindividuales {
    display: block;
    background-color: #ffffffb9;
    padding: 1em;
    border-radius: .3em;
    margin: 1em;
    text-align: center;
}

.librosindividuales img {

    width: 50%;
    
    border-radius: .3em;
    padding:0;
}

.informacionlibro{
    
    display: block;
    padding: 0em 0;
}

.btns {
   display: block;
   text-align: center;
   margin: 1em 0 0 0;
   list-style-type: none;
 
}
.btns a{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #9ad9c8;
    display: block;
    text-align: center;
    padding: .3em;
    border-radius: .3em;
    margin: .5em 0 0 0;
    cursor: pointer;
    
}

 .btns  a:hover{
     transform: 0.5s;
   
    background-color: #ff7a1f;
}

.librosindividuales h2 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 20px;
    padding: .5em;
}

.librosindividuales h3 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 15px;
  
}

.librosindividuales h4 {
    color: #1ca697;
    font-family: 'Sansita', sans-serif;
    font-size: 13px;
}

/* FIN LIBROS */

/* AGENDA */

.agenda>h2{
    text-align: center;
    margin: auto;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    color:#ffffff;
    padding: 1em;
    text-shadow: 0em .3em .3em #262626;
    width: 100%;
}

.dias {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#ffffffb0;
    margin: 1em ;
    border-radius: .3em;
    padding: 1em;
   
}
.calendario img{
    max-width: 100%;
    width: 10em;
    
}


.dias ul{
    color: #ff7a1f;
    font-size: 15px;
    font-family: 'sansita', sans-serif;
    margin: 1em;
    justify-content: center;
    list-style: none;
}
.bold{
    font-weight: 900;
    line-height: 1.8em;
}


.dias a {
  background-color: #1ca697;
  text-decoration: none;
  font-size: 13px;
  font-family: 'sansita', sans-serif;
  padding: .5em 2em; 
  color: #ffffff;
  border-radius: .3em;
  margin-top: 3em;
  
}

/* FIN AGENDA */

/* INICIAR SESION */
.letras{
    display: none;
}

.registro{
    display: block;
    text-align: center;
}

.registro img {
    width: 50%;
    margin-top: 80px;
    display: none;
}

.FormularioIngreso {
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 2em;
    padding: 20px 30px;
    border-top: 3px solid #ff7a1f;
}

.FormularioIngreso h2{
    margin: 0;
    text-align: center;
    height: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'sansita', sans-serif;
    text-shadow: .2em .2em .2em #262626;
}
.ImagenPerfil figure img{
    background-color: #9ad9c8;
    border-radius: 100%;
    display: block;
    margin: auto;
    margin-top: 1em;
}
 
.CamposFormulario {
    width: 100%;
    border: 1px solid #ffffff;
    margin-bottom: 15px;
    padding: 11px 10px;
    font-size: 14px;
    font-size: bold;
}

.CampoIngresar {
    width: 100%;
    height: 40px;
    background-color: #ff7a1f;
    border:none;
    color:white;
    font-size: 14px;
    font-size: bold;
    font-family: 'sansita', sans-serif;
    box-shadow: 1px 2px 3px #595959;
    cursor: pointer;
    
}

.registro p {
    height: 40px;
    text-align: center;
    padding: 30px;
    color: white;
}
.registro p a {
    color: #595959;
}

/* FIN INICIAR SESION */

/* ------ FOOTER ------ */
footer{
    background-color: #1ca697;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    margin-top: auto;
}
.acumarlogo{
    width: 4em;
    padding: .5em;
}
/* ------ FIN FOOTER ------ */

/*FIN MOBILE FIRST*/


/*  ---------------------------------------- */

/*  ---------------------------------------- */

/*  ---------------------------------------- */


/*TABLET 720PX*/
@media screen and (min-width: 600px){
    body{
         background-image: url(../imagenes/background_tablet.svg);
    } 

/*----PERFIL----*/
.perfil img{
    border-radius: 100%;
    padding: 1em;
    background-color: #ff7a1f;
    width: 50vmin;
    height: 50vmin;
    display: block;
    margin: 1em auto;
}
.perfil h2{
    text-align: center;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    color: #595959;
    font-size: 2em;
}
.resenados img{
    height: 40vmin;
    width: auto; 
}
.resenados h2{
    font-family: 'Sansita', sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    color: #595959;
    margin: 1em auto;
    text-align: center;
    width: 100%;
}
.info h4{
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 600;
}
.info p{
    color: #595959;
    font-family: 'Poppins', sans-serif;
    font-size: .8em;
}
.resenados{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.resenados article{
    background-color: #1ca696b0;
    border-radius: 2em;
    margin: 1em auto;
    max-width: 70vh;
    max-height: 100vh ;
    height: 80vh;
    width: 35vh;
}
.resenados article>div{
    padding: 1em;
}
/*----FIN PERFIL----*/

/* iniciar sesion */
.registro{
    width: 60%;
    margin: auto;
}
/* fin iniciar sesion */
/*  ALERTA  */
.modal{
    width: 40%;
    height: 50%;
}
/*  FIN ALERTA  */
/*slider*/
.title{
    text-align: center;
    margin-top: 1em;
    font-family: 'Sansita', sans-serif;
    color: white;
    font-size: 40px;

}

.container__slider{
    max-width: 1000px;
    height: 500px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
input[type=radio] {
    display: none;
}

.container{
width: 100%;
max-width: 500px;/*Modificar esto para luego ajustar las portadas de los libros que van*/
height: 100%;/*Modificar esto para luego ajustar las portadas de los libros que van*/
max-height: 3000px; /*Modificar esto para luego ajustar las portadas de los libros que van*/
transform-style:preserve-3d ;
display: flex;
justify-content: center;
align-items: center;
margin-top: 6em;
}
.cards{
    position: relative;
    width: 100%;
    height: 100%;
}
.card{
    position: absolute;
    width: 60%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    height: 100%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44,1);

}

.cards img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

#item-2:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-3, 
#item-3:checked ~ .cards #selector-2{
    transform: translateX(-70%) scale(0.7);
    opacity: 0.8;
    z-index: 0;
} 

#item-3:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-2, 
#item-2:checked ~ .cards #selector-3{
    transform: translateX(70%) scale(0.7);
    opacity: 0.8;
    z-index: 0;
} 


#item-1:checked ~ .cards #selector-1, 
#item-2:checked ~ .cards #selector-2, 
#item-3:checked ~ .cards #selector-3{
    transform: translateX(0) scale(1.2);
    z-index: 3;
} 
/*fin slider*/

/*generos*/
.generos h2{
    width: 100%;
    padding: .5em;
    font-size: 40px;
    font-family: 'Sansita', sans-serif;
}
.generos{
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    margin-top: 3em;
}
.generos article{
    width: 15em;
    margin-top: 3em;
}
.generos img{
    width: auto;
    height: 40vmin;
    margin-left: auto;
    margin-right: auto;
    margin-top: .5em;
    margin-bottom: .5em;
    box-shadow: .3em .3em .3em #595959;
    display: block;
}
/*fin generos*/

/*libros*/

.listadolibros{
    display: flex;
    flex-direction: row;

}

.librosindividuales {
width: 40%;
}

.librosindividuales img {
    width: 50%;
    border-radius: .3em;
    padding:0;

}

.informacionlibro{
    
    display: block;
    padding: 0em 0;
}

.btns {
   display: block;
   text-align: center;
   margin: 1em 0 0 0;
 
}
.btns a{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #9ad9c8;
    display: block;
    text-align: center;
    padding: .3em;
    border-radius: .3em;
    margin: .5em 0 0 0;
    cursor: pointer;
    
 }

 .btns  a:hover{
     transform: 0.5s;
   
    background-color: #ff7a1f;
}

.librosindividuales h2 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 20px;
    padding: .5em;
   
    
   
}

.librosindividuales h3 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 15px;
   
}

.librosindividuales h4 {
    color: #1ca697;
    font-family: 'Sansita', sans-serif;
    font-size: 13px;
}

/*fin libros*/

/*agenda*/

.agenda{
    position: relative;
}
.dias {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color:#ffffffb0;
    margin: 1em ;
    border-radius: .3em;
    padding: 1em;
   
}
.calendario img{
    max-width: 100%;
    min-width: 100%;
    width: 80em;
    position: relative;
}

.fecha{
    top: 4em;
    left: 1.5em;
    color: #ff7a1f;
    font-size: 30px;
    font-family: 'sansita', sans-serif;
    position: absolute;

}
.dias ul{
    color: #ff7a1f;
    font-size: 15px;
    font-family: 'sansita', sans-serif;
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 0em;
    justify-content: center;
    
}
.dias ul { flex-grow:2 ;}


.dias a {
  background-color: #1ca697;
  text-decoration: none;
  font-size: 13px;
  font-family: 'sansita', sans-serif;
  padding: .5em 2em; 
  color: #ffffff;
  border-radius: .3em;
  
}

/*fin agenda*/

/*RESEÑA*/
.resena{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.resena div{
    margin-top: 3em;
}
.resena img{
    margin: 0;
}
/*FIN RESEÑA*/

/*talleres*/
.talleres{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}
.taller{
    background-color: #1ca696b0;
    box-shadow: 0em .2em .2em #595959;
    margin: 1em 0em;
    border-radius: 2em;
    height: 70vh;
    width: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.taller figure img{
    width: 80%;
}
.taller figure{
    width: 90%;
    display: block;
    margin: 1em auto;
    padding: .5em; 
}
/*fin talleres*/

/*proponer taller*/
.propuestas li{
    background-color: #1ca697;
    margin: .5em .5em;
    border-radius: 1em;
    padding: 1em;
}

.propuesta1{
    width: 60vh;
    height: 15vh;
}
.propuestas{
    margin: 1em 1em;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

/*fin proponer taller*/

}
/*FIN TABLET 720PX*/


/*  ---------------------------------------- */

/*  ---------------------------------------- */

/*  ---------------------------------------- */

/*PANTALLA ORDENADOR 1280PX*/
@media screen and (min-width: 1280px){
    body{
        background-image: url(../imagenes/background_body_escritorio.svg)
    }
/*menu*/
.itemsmenu{
    position: inherit;
    width: 100%;
    height: 0;
    background: none;
    top: unset;
    left: unset;
    text-align: center;
    transition: all .5s;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
}
nav ul{
    float: unset;
    margin-right: 1em;
}
nav ul li{
    display: block;
    margin: 0em;
}
nav ul li a{
    color: #ffffff;
    background-color: #9ad9c8;
    font-size: 1em;
    padding: .3em 2em;
    border-radius: .3em;
    margin: 0em .2em;
}
li a.active, li a:hover{
    background: #ff7a1f;
    transition: .5s;
}
.checkbtn{
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
/*fin menu*/

/*slider*/
.title{
    text-align: center;
    margin-top: .1em;
    font-family: 'Sansita', sans-serif;
    color: white;
    font-size: 40px;

}

.container__slider{
    max-width: 1000px;
    height: 500px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
input[type=radio] {
    display: none;
}

.container{
width: 100%;
max-width: 500px;/*Modificar esto para luego ajustar las portadas de los libros que van*/
height: 100%;/*Modificar esto para luego ajustar las portadas de los libros que van*/
max-height: 3000px; /*Modificar esto para luego ajustar las portadas de los libros que van*/
transform-style:preserve-3d ;
display: flex;
justify-content: center;
align-items: center;
margin-top: 1em;   
}
.cards{
    position: relative;
    width: 100%;
    height: 100%;
}
.card{
    position: absolute;
    width: 60%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    height: 100%; /*Modificar esto para luego ajustar las portadas de los libros que van*/
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44,1);

}

.cards img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

#item-2:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-3, 
#item-3:checked ~ .cards #selector-2{
    transform: translateX(-120%) scale(.8);
    opacity: 0.8;
    z-index: 0;
} 

#item-3:checked ~ .cards #selector-1, 
#item-1:checked ~ .cards #selector-2, 
#item-2:checked ~ .cards #selector-3{
    transform: translateX(120%) scale(.8);
    opacity: 0.8;
    z-index: 0;
} 


#item-1:checked ~ .cards #selector-1, 
#item-2:checked ~ .cards #selector-2, 
#item-3:checked ~ .cards #selector-3{
    transform: translateX(0) scale(1);
    z-index: 3;
}
/*fin slider*/

/* TALLERES */
.talleres{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    margin-bottom: 1em;
}
.taller{
    background-color: #1ca696b0;
    box-shadow: 0em .2em .2em #595959;
    margin: 1em 1em;
    border-radius: 2em;
    height: 70vh;
    width: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.taller figure img{
    width: 80%;
}
.taller figure{
    width: 90%;
    display: block;
    margin: 1em auto;  
}
/* FIN TALLERES*/

/* TALLER */

.taller1 img{
    width: 80vmin;
}
.taller1>div{
    width: 90vmin;
}
.taller1{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 1rem;
}
.taller1 div>p{
    font-family: 'Poppins', sans-serif;
    font-size: .8em;
    color: #262626;
    font-weight: 400;
    font-style: normal;
}
.taller1 div ul li{
    font-family: 'Poppins', sans-serif;
    font-size: .8em;
    color: #262626;
    font-weight: 600;
    font-style: italic;
}
.taller1>div>ul{
    margin: 1em 3em;
}
.taller1 div a{
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-size: 1.2em;
    width: auto;
    background-color: #ff7a1f;
    border-radius: .3em;
    margin: .5em;
    padding-top: .1em;
    padding-bottom: .3em;
    padding-right: 1em;
    padding-left: 1em;
    text-decoration: none;
    color: #ffffff;

}
/* FIN TALLER */

/*proponer taller*/
.propuestas li{
    background-color: #1ca697;
    margin: .5em .5em;
    border-radius: 1em;
    padding: 1em;
}
.propuesta1{
    width: 80vh;
    height: 20vh;
}
.propuestas{
    margin: 1em 1em;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

/*fin proponer taller*/

/* LIBROS */
.librosgeneros{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    margin: .3em;
    text-align: center;
    list-style: none;
}

.librosgeneros a{
 width: 15em;

}
.listadolibroslistadolibros{
    display: flex;
    flex-direction: row;

}

.librosindividuales {

width: 30%;

}
  

.librosindividuales img {
    width: 50%;
    border-radius: .3em;
    padding:0;

}

.informacionlibro{
    
    display: block;
    padding: 0em 0;
}

.btns {
   display: inline;
   text-align: center;

   margin: 1em 0 0 0;
   max-width: 70%;
   
}
.btns a{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #9ad9c8;
    display: block;
    text-align: center;
    padding: .3em;
    border-radius: .3em;
    margin: .5em 0 0 0;
    cursor: pointer;
    
 }

 .btns  a:hover{
     transform: 0.5s;
   
    background-color: #ff7a1f;
}


 



.librosindividuales h2 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 20px;
    padding: .5em;
   
    
   
}

.librosindividuales h3 {
    color: #ff7a1f;
    font-family: 'Sansita', sans-serif;
    font-size: 15px;
   
}

.librosindividuales h4 {
    color: #1ca697;
    font-family: 'Sansita', sans-serif;
    font-size: 13px;
}
/* FIN LIBROS */

/* UBICACIONES */
.infolibro{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
    position: relative;

}
.fotolibro img {


   width: 20em;
   margin: 1em;
   border-radius: .3em;
   box-shadow: .3em .3em .3em #595959;
   
}

.detalleslibro{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-style: normal;
    font-size: 18px;
    background-color: #1ca697;
    display: block;
    max-width: 40%;
    text-align: start;
    align-items: center;
    padding: 1em;
    border-radius: .3em;
    box-shadow: .3em .3em .3em #595959;
}
 

.infolibro ul li a{
   
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sansita', sans-serif;
    font-size: 20px;
    font-style: normal;
    background-color: #1ca697;
    display: block;
    text-align: center;
    align-items: center;
    padding: .3em;
    border-radius: .3em;
    margin: 3em 3em 0em 3em;
    box-shadow: .3em .3em .3em #595959;
}

.infolibro ul li a:hover{
   
    background-color: #ff7a1f;
}

.infolibro h2{
    color: #ffffff;
    max-width: 100%;
    margin: auto;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #ffffff;
    padding: 1em;
    text-shadow: 0em 0.3em 0.3em #262626;
    
}
.sinopsislibro>p{
    background-color: #ffffff;
    border-radius: 0.3em;
    color: #1ca697;
    padding: 1em 5em;
    font-family: 'Sansita', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    max-width: 100%;
}
.sinopsislibro>h2{
    text-align: center;
    margin-left: 0;
    color: #ffffff;
}
/* FIN UBICACIONES*/

/* AGENDA */
.agenda {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.agenda h1{
   
    width: 100%;
}
.dias { 
    background-color:#ffffffb0;
    margin: 1em ;
    border-radius: .3em;
    padding: 1em;
    max-width: 40%;
   
}
.calendario img{
    max-width: 100%;
    min-width: 100%;
    width: 80em;
    position: relative;
}


.dias ul{
    color: #ff7a1f;
    font-size: 15px;
    font-family: 'sansita', sans-serif;
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 0em;
    justify-content: center;
    
}
.dias ul { flex-grow:2 ;}


.dias a {
  background-color: #1ca697;
  text-decoration: none;
  font-size: 13px;
  font-family: 'sansita', sans-serif;
  padding: .5em 2em; 
  color: #ffffff;
  border-radius: .3em;
  
}
/* FIN AGENDA */

/* INICIAR SESION */
.ImagenPerfil figure img{
    width: 10em;
    height: auto;
    margin-top: 1em;
}
.FormularioIngreso{
    margin-top: 4em;
}
.registro{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2em;
    margin: .5em 1em;
    width: 100%;
}
.registro img {
    width: 50%;
    margin-top: 80px;
    display: block;
}
.registro>div{
    margin: auto;
}
.letras{
    margin: 0em 4em;
    display: unset;
}
.letras a{
    text-decoration: none;
}
.letras a>h2 {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0em;
    margin-right: 0em;
    padding: 0em;
    font-size: 1.2em;
    background-color: #1ca697b0;
    border-radius: 3em;
    padding: 1em;
    cursor: pointer;
    text-align: center;
    font-family: 'sansita', sans-serif;
    font-weight: 900;
    font-style: normal;
    color:#ffffff;
    text-shadow: 0em .3em .3em #262626;
    }
/* FIN INICIAR SESION*/

}
/*FIN PANTALLA ORDENADOR 1280PX*/