.faq-livebystylelld-wrapper{
    max-width:900px;
    margin:0 auto;
}
.faq-livebystylelld-item{
    border:1px solid var(--border);
    border-radius:6px;
    background:var(--white);
    margin-bottom:15px;
    overflow:hidden;
    transition:.3s;
}
.faq-livebystylelld-question{
    width:100%;
    border:0;
    background:transparent;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 25px;
    font-family:var(--font-heading);
    font-size:18px;
    color:var(--text-dark);
    text-align:left;
    font-weight:600;
}
.faq-livebystylelld-question:focus {
    outline: none;
    box-shadow: none;
}
.faq-livebystylelld-question i{
    color:var(--primary);
    font-size:18px;
    transition:.3s;
}
.faq-livebystylelld-answer{
    display:none;
    padding:0 30px 25px;
}
.faq-livebystylelld-answer p{
    margin:0;
}
.faq-livebystylelld-item.active .faq-livebystylelld-answer{
    display:block;
}
.faq-livebystylelld-item.active .faq-livebystylelld-question i{
    transform:rotate(45deg);
}
@media(max-width:767px){
    .faq-livebystylelld-question{
        padding:18px 20px;
        font-size:18px;
        line-height:28px;
    }
    .faq-livebystylelld-answer{
        padding:0 20px 20px;
    }
}

