@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:400,700');

*   {
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    color: white;
    list-style: none;
    
}

html{
    margin: 0;
    font-family: sans-serif;
    font-size: 62,5%;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

#logoapp {
    display: block;
    width: auto;
    height: 3em;
}

body {
    background-color: #000000;
    min-height: 100vh;

    /* Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header > ul > a {
    display: flex;
    align-items: center;
    overflow: hidden;
}

p.tipologo {
    font-family: Oswald;
    font-size: 1em;
}

header > ul > a:hover {
    cursor: pointer;
}

header > ul > a > img {
    margin: 0em -.3em 0em -1.3em;
    padding: 0;
}

header > ul > a > p {
    margin: 0em 0em 0em .5em;
    padding: 0;
}

header > ul > button {
    font-size: 1.5em;
    font-family: oswald;
    padding-bottom: .6em;
}

button#botonnav {
    border-radius: 1em 0em 0em 0em;
    padding: .1em;
    cursor: pointer
}

strong.detalleceleste {
    color: #24c2fc;
}

header > ul {
    margin: 0em;
    height: 3em;
    background: linear-gradient(135deg, rgba(52,52,52,1) 0%, rgba(52,52,52,1) 25%, rgb(60, 60, 60) 100%);
    border-top: solid 1px rgba(52,52,52,1);
    border-bottom: solid 2px rgba(52,52,52,1);
    list-style: none;
    padding: 0em 1em 0em .3em;
    
    /* Flexbox */
    display: flex;
    justify-content:space-between;
    align-items: center;
}

header > ul > div {
    
    /* flexbox */
    display: flex;
}

header > ul > div > li {
    width: 2.5em;
    height: 2.5em;
    
    /* flexbox */
    display: flex;
}

header > ul > div > li > a,
header > ul > div > li > button {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
    border: 2px solid #a6e7ff;
    transition: all .1s ease;

    /* flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
}

header > ul > div > li > a:hover,
header > ul > div > li > button:hover {
    background-color: rgba(173, 233, 255, 0.35);
    border: 1.3px solid aliceblue;
}

header div ul#menudesp {
    background-color: rgba(0,0,0,0.10);
    color: white;
    padding: 0;
    padding-top: 1em;
    margin-top: 0;
 
/* Oculto */

    position: fixed;
    right: 0;
    margin-right: .5em;
    top: -70vh;
    height: vh;
    min-width: 35vw;
    transition: all .3s ease;
    z-index: 999;  
}

/* Mostrar */

header div ul#menudesp:target {
    top: 0;
    background-color: rgba(0,0,0,0.70);
}

header div ul#menudesp a {
    color: rgba(185, 255, 252, 0.75);
    display: block;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
}

header div ul#menudesp a:hover {
    color: white;
}

header div ul#menudesp ul#masinfo {
    margin-top: 1.5em;
    display: flex;
    justify-content: space-around;
    padding: 0;
}

header div ul#menudesp ul#masinfo a {
    color: rgba(255, 255, 255, 0.94);
    display: block;
    font-size: .7em;
    padding: 0;
    text-decoration: none;
}

header div ul#menudesp ul#masinfo a:hover {
    color: #a5a5a5;
}

#ocultarmenu {
    margin: .7em .8em 0em 0em;
    position: absolute;
    right: 0;
    top: 0;
}

header div ul#menudesp li {
    height: 1.5em;
    width: auto;
    margin-left: .25rem;
    margin-right: 2em;
    
    /* Flexbox */
    display: flex;
}

header div ul#menudesp li a {
    color: rgba(148, 243, 255, 0.88);
    display: block;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
}

.usuario {
    margin: auto;
    text-align: center;
    font-size: 75%;
    padding: 3em 1em 1em 1em;
    border-bottom: solid 1px rgba(255,255,255,.25);
}
.usuario img {
    background-color: rgba(163, 234, 255, 0.76);
    border-radius: 25%;
    width: 25vmin;
    height: 25vmin;
    max-width: 10em;
    max-height: 10em;
    border: 2px double white;
}

.usuario h3,
.usuario p {
    margin: 0;
}

/* NAVEGACIÓN DESPLEGABLE */

header {
    position: relative;
}

header nav {
    position: fixed;
    right: -95vw;
    top: 3.2em;
    z-index: 50;
    opacity: 1;
    transition: all .10s ease;
}

header nav.navisible {
    opacity: 1;
    right: 3.45em;
    transition: all .10s ease;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;    
    
    /* Flexbox */
    display: flex;
    justify-content: center;
}

header nav ul li {
    filter: drop-shadow(3px 3px 7px rgba(41, 41, 41, 0.64));
    height: 2em;
    width: auto;
    
    /* Flexbox */
    display: flex;
}

header nav ul li a {
    height: 100%;
    width: 100%;
    padding: 0em .5em 0em .5em;
    background-color: #24c2fc;
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: all .2s ease;
    
    /* Flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul li a.primnav {
    border-radius: .8em 0em 0em .8em;
}

header nav ul li a.ultimonav {
    border-radius: 0em 0em .8em 0em;
}

header nav ul li a:hover {
    color: cadetblue;
    background-color: white;
}

header nav ul li a.pagactual {
    color: #355152;
    background-color: aliceblue;
}

main {
    background-color: #4a4a4a;
    shape-inside: circle;
    margin: 0em;
    
    /* Flexbox Contenido */
    flex-grow: 1;
    
    /* Flexbox */
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.3em;
}

p {
    font-family: sans-serif;
    font-size: .9em;
}

h1, h2, h3, p {
    padding: .5em .5em 0em .5em;
}

/* INDEX */

main#index {
    background-color: #243f4a;
    margin-top: 0em;
    padding-bottom: .3em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


main#index > div > div {
    display: flex;
    justify-content: flex-start;
    min-width: 100%;
    height: 9.7em;

}

main#index > div > div > figure {
    min-height: 100%;
    height: auto;
    width: auto;
    margin: .125em;
    
    position: relative;
    overflow: hidden;

}

main#index div figure {
    width: auto;
    margin: .125em;
    
    position: relative;
    overflow: hidden;
}

main#index div img {
    display: block;
    min-width: 100%;
    max-height: auto;
}

main#index > div > figure > a > figcaption {
        padding-top: 1em;
}

main#index div figcaption {
    background-color: rgba(0, 171, 234, 0.65);
    color: white;
    font-size: 1.5em;
    padding: .5em;
    padding-top: .3em;
    line-height: 1em;
    position: absolute;
    height: 70%;
    width: 100%;
    top: -25%; 
    transition: all .2s ease;
    margin-top: -.2em;
    
}

main#index div figure:hover figcaption {
    background-color: rgba(0, 60, 60, 0.79);
    color: white;
    opacity: 1;
    top: 0%;
    transition: all .2s ease;
}

main#index figcaption span {
    display: block;
    padding-bottom: .7em;
    line-height: 1.2em;
    font-size: .6em;
    color: #ddd;
}

/* SECCIÓN NOTICIAS */

.noticias {
    margin-top: .7em;
    
    display: flex;
    flex-direction: column;
}

.noticias figure {
    height: 100%;
    width: auto;
    margin: .125em;
    overflow: hidden;
}

.noticias img {
    display: block;
    min-width: 100%;
    max-height: auto;
}

.noticias figcaption {
    background-color: rgba(79, 204, 250, 0.62);
    color: white;
    font-size: 1.5em;
    padding: .5em;
    line-height: 1em;
    top: calc(100% - 1.5em);
    transition: all .2s ease;
    margin-top: -.2em
}

.noticias figure:hover figcaption {
    background-color: rgba(0, 60, 60, 0.79);
    top: 50%;
    transition: all .2s ease;
}

.noticias figure p.notifecha {
    color: #a8e8ff;
    margin: -0.5em;
    padding: .3em 0em .4em .2em;
    font-size:.45em;
    font-family: sans-serif;
    opacity: 1;
    transition: all .1s ease;
}

.noticias figure:hover p.notifecha {
        color: #a8e8ff;
}

.noticias figcaption span {
    display: block;
    padding-top: .7em;
    line-height: 1.2em;
    font-size: .6em;
    color: #ddd;
}

main.intnoticia section > div {
    padding: 0em 0em 0em .5em;
}

main.intnoticia div.imgnoticia {
    background-color: rgb(31, 55, 64);
    margin-top: .5em;
    height: 300px;
    padding: inherit;
    width: auto;
    overflow: hidden;
}

main.intnoticia div.imgnoticia p {
    font-style: italic;
    font-size: .7em
}

main.intnoticia div.imgnoticia img {
    height: auto;
    width: 100vw;
    padding: 0em 0em 10em 0em;
    opacity: .85;
}

/* HERRAMIENTAS */

ul.herramientaslist {
    padding: 0;
    margin: 0;
}

.herramientaslist li {
    padding: 0;
    background-color: black;
    font-weight: bold;
    border: solid 2px;
}

.herramientaslist li.primlist {
    border-radius: 0em 2em 0em 0em; 
}

.herramientaslist li.sublist {
    background-color: #363636;
    font-size: .7em;
}

.herramientaslist li.ultlist {
    border-radius: 0em 0em 2em 0em; 
}

.herramientaslist li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em;
    font-weight: bold;
    transition: all .2s ease;
}

.herramientaslist li.primlist a {
    border-radius: 0em 2em 0em 0em;
}

.herramientaslist li.ultlist a {
    border-radius: 0em 0em 2em 0em;
}

.herramientaslist li a:hover {
    background-color: rgb(232, 251, 255);
    color: #31b8ff;
}

div.volver {
    padding: .4em;
    font-size: 1.5em;
}

main > div.recuadro {
    margin: 1em 2em 1em 1em;
    padding: 0em 1em 0em 1em;
    border: solid 4px #b6ebff;
}

div.recuadro p {
    font-family: 'Oswald';
    font-size: 2em;
    text-transform: uppercase;
}

main > div.recuadro1 {
    margin: 1em 2em 1em 1em;
    padding: 0em .1em 0em .1em;
    border: dashed 2px #66d4fd;
}

div.recuadro1 h2,
div.recuadro1 p.numitem {
    margin: 0;
}

div.recuadro1 p {
    font-family: 'Oswald';
    font-size: .8em;
}

div.herrobjetivo {
    background-color: rgba(149, 227, 255, 0.4);
    border-radius: 1em;
}

div.herrobjetivo h2 {
    margin: 0.2em;
}

div.herrobjetivo p {
    font-family: 'Oswald';
    margin: 0.2em;
    margin-bottom: 1em
}

ul.itemherramienta > li > div > p.numitem {
    font-size: 2em;
    font-family: 'Oswald';
    font-weight: bold;
    margin: 0em 1em 0em 1.2em;
    padding: 0;
}

ul.itemherramienta {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.itemherramienta li {
    margin-left: .5em;
    display: flex;
    align-items: center;
}

.itemherramienta li div {
    display: flex;
    flex-direction: column;
}

.itemherramienta li div h2 {
    margin: 0em 1em 0em 1.2em;
    padding: 0;
}

.itemherramienta h3.nombreitem {
    font-family: sans-serif;
    font-weight: normal;
    color: #b0eaff;
    font-size: 1em;
    text-align: center;
    padding: 0;
    margin: 0;
}

.itemherramienta p {
    font-size: .7em;
}

div.botoncomun {
    margin: 2em 0em 1.5em 1em;
}

.botoncomun a {
    width: 100%;
    height: 100%;
    margin: .5em;
    padding: .5em;
    color: gray;
    background-color: azure;
    border-radius: .5em;
}

div.botoncomun1 {
    margin: 0em 0em 1em 1em;
}

.botoncomun1 a {
    width: 100%;
    height: 100%;
    margin: .5em;
    padding: .5em;
    color: white;
    background-color: #24c2fc;
    border-radius: .5em;
}

/* HERRAMIENTA PERSONA */

main#nuevapersona div.volver {
    display: flex;
    justify-content: space-between
}


main#nuevapersona > form {
    margin: auto;
    display: flex;
    flex-direction: column;
}

#nuevapersona > form section.persdat1 > div > div > input {
    min-width: 50%;
    
    background-color: inherit;
    border: none;
    border-bottom: solid 1px #b5b5b5;
    
}

#nuevapersona > form > div {
    margin-left: .7em;
}

#nuevapersona > form section.persdat1 > div > input,
#nuevapersona > form > div > input {
    min-width: 75%;
    background-color: inherit;
    border: none;
    border-bottom: solid 1px #b5b5b5;
    
}

#nuevapersona > form section.persdat2 input {
    min-width: 80%;
    
    background-color: inherit;
    border: none;
    border-bottom: solid 1px #b5b5b5;
    
}

#nuevapersona > form > section {
    margin-bottom: 1.3em
}

#nuevapersona > form > section.persdat1 {
    display: flex;
    align-items: center
}

#nuevapersona > form > section.persdat1 > div > img {
    height: 7em;
    filter: blur(3px);
    border: dashed 2px #ffffff;
}

#nuevapersona > form > section.persdat1 > div,
#nuevapersona > form > section > div {
    padding: .5em;
}

#nuevapersona > form > section.persdat1 > div > label > p {
    margin: 0;
    padding: 0;
    font-size: .6em;
}

form.personahecho input {
    color: rgb(179, 235, 255);
}

/* MIS HERRAMIENTAS */

ul.mherramientaslist {
    padding: 0;
    margin: 0em 0em 2em 0em;
}

.mherramientaslist li {
    padding: 0;
    background-color: black;
    font-weight: bold;
    border: solid 1px;
}

.mherramientaslist li.sublist {
    background-color: #363636;
    font-size: .9em;
}

.mherramientaslist li.ultlist {
    border-radius: 0em 0em 2em 0em; 
}

.mherramientaslist li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: .5em;
    font-weight: bold;
    transition: all .1s ease;
}

.mherramientaslist li.sublist a {
    font-weight: normal;
}

.mherramientaslist li.ultlist a {
    border-radius: 0em 0em 2em 0em;
}

.mherramientaslist li a:hover {
    background-color: white;
    color: gray;
}

/* PROPONE */

main#propone form {
    margin-left: 5%;
}

main#propone > form > div > p {
    padding: 0;
    font-size: .7em;
}

main#propone textarea {
    color: black;
    width: 23em;
    max-width: 90%;
    height: 15em;
    margin-top: 2em;
}

main#propone > form > div.tituloprop {
    margin-top: 1.5em
}

main#propone > form > div.tituloprop > input {
    background-color: inherit;
    width: 15em;
    border: none;
    border-bottom: solid 1px white
}

main#propone > input {
    width: 20em;
    height: 2em;
    margin-left: 2em;
    margin-right: auto;
}

form button.botonpublicar {
    display: block;
    margin-top: .5em;
    margin-bottom: .5em;
    margin-left: .5em;
    width: 11em;
    height: 100%;
    text-transform: uppercase;
    font-size: 1.5em;
    background-color: #24c2fc;
    border-radius: .3em;
} 

input.botonsubir{
    color: black;
    margin-left: 1e;
    margin-top:.5em;
}

#cartelemer {
    font-family: 'Oswald';
    color: skyblue;
    background-color: rgba(37, 201, 106, 0.95);
    font-size: .8em;
    font-weight: bolder;
    width: 90%;
    padding: 2em 1.5em 2em 1.5em;
    margin: auto;
    text-align: center;
    border-style: double;
    border-color: white;
}

/* VIDEO YOUTUBE */

div.videoyt {
    position: relative;
    margin: 0em;
    margin-top: 1em;
    height: 0;
    padding-bottom: 56.25%;
    border: solid 2px rgba(182, 234, 255, 0.95);
    overflow: hidden;
    border-top-right-radius: 3em;
}

div.videoyt iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}


main div.cuenta {
    margin: auto;
    text-align: center;
}

footer {
    color: white;
    padding-left: .75rem;
    font-size: .75em;
    font-style: italic;
}