/*  EL ESTILO DE EL BANNER EL MENU Y EL FOOTER SE MANEJA EN LA HOJA DE styleGeneral.css*/
#index__selected {
    transform: scale(1.1);
    background-color: var(--main-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

/* CONTENIDO PRINCIPAL */
main {
    flex: 1;
    padding: 40px 20px;
    border-right: 2px solid var(--gray-color-atenuado);
    border-left: 2px solid var(--gray-color-atenuado);
}

h2 {
    display: inline-flex;
    padding: 10px 10px 0;
    margin-left: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
    color: var(--main-color);
}

#check__tema__uno,
#check__tema__dos,
#check__tema__tres,
#check__tema__cuatro,
#check__tema__cinco,
#check__tema__seis,
#check__tema__siete,
#check__tema__ocho,
#check__tema__nueve {
    display: none;
}

.tema {
    background-color: var(--main-color);
    max-width: 75%;
    margin: 0 auto;
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    cursor: pointer;
}

.tema:hover {
    background-color: var(--boton-hover);
}


.pregunta {
    border: 3px solid var(--main-color);
    max-width: 73%;
    margin: 8px auto;
    border-radius: 12px;
    padding: 15px;
    color: var(--main-color-dark);
}

.pregunta p {
    margin-top: 5px;
    margin-left: 30px;
    text-align: justify;
}

.pregunta ul {
    margin-top: 8px;
    margin-left: 60px;
}

.pregunta ul li {
    list-style-type: decimal;
    list-style-position: inside;
}

.envio__articulos {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.evaluacion__comite {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.articulos__aceptados {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.presentacion__trabajos {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.publicacion__revista {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.inscripcion {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.conferencias__magistrales {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.conferencias__tecnicas {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

.patrocinadores {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition-property: max-height, opacity, visibility;
    transition-duration: 1000ms, 300ms, 300ms;
    transition-timing-function: ease;
}

#check__tema__uno:checked~.envio__articulos {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__dos:checked~.evaluacion__comite {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__tres:checked~.articulos__aceptados {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__cuatro:checked~.presentacion__trabajos {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__cinco:checked~.publicacion__revista {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__seis:checked~.inscripcion {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__siete:checked~.conferencias__magistrales {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__ocho:checked~.conferencias__tecnicas {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

#check__tema__nueve:checked~.patrocinadores {
    overflow: auto;
    opacity: 1;
    max-height: 500px;
}

/* FOOTER */

/*ELEMENTOS RESPONSIVOS*/

@media screen and (max-width: 730px) {
    .contenido-principal {
        padding: 10px;
        justify-content: center;
    }

    h2 {
        margin: 0px;
        padding: 0px;
        font-size: 4vw;
    }

    .tema{
        max-width: 95%;
        margin-top: 3px;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    }
    .pregunta{
        max-width: 95%;
    }

}