/* ERRORES */
.errores{
    border-color: red;
    border-width: 3px;
    background-color: #ffc757;
    display:none;
}
.errores li{
    color:red;
    margin-left: 20px;
}

.error_div{
    display: flex;
    align-items: center;
    color: red;
}

/* SECCIONES */
section>article{
    margin: 15px;
}
section>article>div:first-child{
    font-size: 1.6em;
    font-weight: 400;
    margin: 20px 10px;
}
.fila{
    margin: 40px 10px;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.fila>div.columna{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}
.fila>div.columna>strong{
    font-weight: 700;
    margin-bottom: 10px;
}
.fila>a{
    min-width: 200px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    padding: 15px;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    background: #337ab7;
    border: 1px solid #337ab7;
    position: relative;
}
.fila>a:hover{
    background: #fff;
    color: #337ab7;
}

.fila:last-child{
    justify-content: center;
}

/**************************/
.titular{
    margin-top: 0px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: bolder;

}

li{
    color: grey;
    list-style: disc;
    line-height: 1.5;
}
strong{
    font-weight: bolder;
}

section:first-of-type {
    width: fit-content;
    position: relative;
    text-align: right;
}


div>article{
    background: var(--color-fondo-section);
    border: 1px solid #adabab;
    border-radius: 6px;
    width: var(--width-section);
    max-width: var(--max-width-section);

    margin: 2em auto 20px auto;
    padding: 10px;
    position: relative;
}
div>article:before{
    content: attr(title);
    top: -1.2em;
    position: absolute;
    text-transform: uppercase;
    font-weight: bold;
}

.explicacion{
    color: grey;
    margin: 10px;
}
div>article>label{
    margin: 5px;
}
div>article>div{
    margin: 5px;
}
div>article>div>div{
    display: flex;
}
div>article>div>div>input{
    margin: 5px 5px 5px 15px;
}
div>article>div>div>textarea{
    margin: 5px 5px 5px 15px;
}

div>article>div>div>select{
    margin: 5px 5px 5px 15px;
}

.ocuparAncho{
    flex-grow: 1;
}

/******** FORMULARIO ********/

.formulario{
    border-color: #adabab;
    border-width: 3px;
    background-color: var(--color-fondo-section);
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}
.formularioInterno{
    display: inline-grid;
    grid-template-columns: 1fr auto;
    margin: 0px auto;
    align-items: center;
}
.formularioInterno>label{
    margin: 10px;
}

#filaSolicitar{
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    justify-content: center;
}


.aEnviar{
    width: fit-content;
}