.ContentPrinTree {
    margin-top: 80px;
}

.ContentPrinTree button {
    color: #2D4C9B;
}

.acordeon.c1.ac1 {
    background-color: white;
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    align-content: center;
    color: #2D4C9B;
}

.acordeon.c1.ac1 {
    border-top: 1px solid #2D4C9B;
}

.ContentPrinTree:nth-of-type(1) .acordeon.c1.ac1 {
    border-top: 1px solid transparent;
}

.acordeon.c1.ac1:focus {
    background-color: rgba(45, 76, 155, 0.1);
}

.acordeon.c1.ac1:hover {
    background-color: rgb(216, 216, 216);
}

#panel {
    background-color: white;
}


/* Modo oscuro */

.oscuro .acordeon.c1.ac1 {
    background-color: transparent;
    border: 1px solid #141414;
    color: white;
}

.oscuro .acordeon.c1.ac1 {
    border-top: 1px solid #1f1d1d;
}

.ContentPrinTree:nth-of-type(1) .acordeon.c1.ac1 {
    border-top: 1px solid transparent;
}

.oscuro .acordeon.c1.ac1:hover {
    background-color: #1f1d1d;
}

.oscuro .acordeon.c1.ac1:focus {
    background-color: rgb(26, 26, 26);
}

.oscuro #panel {
    background-color: #141414;
}

#pregunta{
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 20px 50px 1fr 1fr;
    justify-items: center;
    border-radius: 0px;
    width: 400px;

}
#pregunta label{
    font-size: 1.5rem;
    margin: 0px 0px 0px 0px;
}

#pregunta input{
    margin:  10px 0px 10px 0px;
    padding: 15px;
    width: 350px;
    font-size: 1rem;
}
#pregunta input[type="submit"]{
    width: 150px;
    cursor: pointer;
}
#sombra{
    display: none;
}
#sombra.activar{
    display: flex;
    position: fixed;
    top:  0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(86, 86, 86, 0.5);
    z-index: 200;
    overflow: auto;
}
#exit{
    margin: 0px;
    justify-self: end;
    width: 10px;
    height: 10px;
    border:  none;
    cursor: pointer;
}
#flv{
    margin-top: 30px ;
    width: auto;
    padding: 10px;
    transition: 0.2s ease;
}
.fa-times{
    color: rgb(45, 76, 155);
    font-size: 1.5rem;
}

#flv:hover,
#flv:active{
    background-color: #2D4C9B;
    color: white;
}

#pregunta label{
    color: rgb(45, 76, 155);
}
#pregunta input{
    border: 2px solid rgb(45, 76, 155);
}
#pregunta input::placeholder{
    color: rgb(45, 76, 155);
}
#pregunta input[type="submit"]{
    background-color: rgb(45, 76, 155);
    color: white;
    transition: 0.5s ease;
}
#pregunta input[type="submit"]:hover,
#pregunta input[type="submit"]:active{
    background-color: rgb(45, 76, 185);
}



/*Modo oscuro del formulario*/
.oscuro #flv{
    border-color: #ACB0AC;
    color: #ACB0AC;
}
.oscuro #flv:hover,
.oscuro #flv:active{
    background-color: #ACB0AC;
    color: #141414;
}
.oscuro #pregunta{
    background-color: #202438;

}

.oscuro #pregunta label{
    color: white;
}
.oscuro .fa-times{
    color: #ACB0AC;
}

.oscuro #pregunta input{
    background-color: #b2b2b2;
    border: none;
    color: #202438;
}
.oscuro #pregunta input[type="submit"]{
    border: 2px solid #b2b2b2;
    color: #b2b2b2;
    background-color: transparent;
    transition: 0.2s ease;
}
.oscuro #pregunta input[type="submit"]:hover,
.oscuro #pregunta input[type="submit"]:active{
    background-color: #b2b2b2;
    color:  #202438;
}
.oscuro #pregunta input::placeholder { 
    color: #202438;
}

@media only screen and (min-width: 755px) and (max-width: 950px){

    #flv{
        margin: 30px 5rem;
    }
}

@media only screen and (min-width: 550px) and (max-width: 754px) {
    #sombra.activar{
        overflow: scroll;
    }

    #flv{
        display: flex;
        justify-content: center;
    }

    #pregunta{
        width: 80%;
        padding-bottom: 15px;
        overflow: scroll;
        margin-top: 60px;
    }

    #sombra{
        justify-content: center;
        align-items: center;
    }
    #exit{
        margin: 20px 20px 0px 0px;
    }
    #pregunta{
        grid-template-rows: 50px 60px 80px 80px 80px;
    }
    #pregunta input{
        height: 40px;
        padding: 10px;
    }
    #pregunta input[type="submit"]{
        height: 60px;
    }
}
@media only screen and (max-width: 549px){  
    #sombra.activar{
        overflow: scroll;
    }
    #flv{
        display: flex;
        justify-content: center;
    }
    #sombra{
        justify-content: center;
        align-items: center;
    }
    #exit{
        margin: 20px 20px 0px 0px;
    } 
    #pregunta{
        height: 400px;
        width: 300px;
        grid-template-rows: 50px 40px 65px 65px 70px;
        overflow: scroll;
    }
     #pregunta label{
        font-size: 1.2rem;
     }
    #pregunta input{
        width: 80%;
        height: 30px;
        padding: 10px;
    }
    #pregunta input[type="submit"]{
        height: 50px;
        font-size: 1.2rem;
    }
} 