#lista-faq {
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}
#lista-faq .item .pregunta {
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    border-bottom: 2px solid var(--color-so-blanco);
}
#lista-faq .item .pregunta::after {
    content: "\e803";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    font-family: "ubanet-cerro";
    font-size: 1.5rem;
}
#lista-faq .item.abierta .pregunta::after {
    content: "\e800";
}
#lista-faq .item .pregunta h3 {
    margin: 1rem 0;
    padding-right: 1rem;
    font-size: var(--p-size);
    /* color: var(--color-so-gris); */
}
#lista-faq .item .respuesta {
    padding-left: 60px;
    padding-bottom: 20px;
    display: none;
    box-sizing: border-box;
}
#lista-faq .item.abierta .respuesta {
    display: block;
}





/* PANTALLAS */
@media only screen and (max-width: 768px) {
    #lista-faq .item .respuesta {
        padding-left: 5px;
    }
}

@media only screen and (min-width: 768px) {
    #lista-faq .item .respuesta {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 1000px) {
    #lista-faq .item .respuesta {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 1200px) {
    
}

@media only screen and (min-width: 1400px) {
    
}

@media only screen and (min-width: 1610px) {
    
}