/*

    Sellix.me
    ------------
    Version 0.2.24

*/

.faq{
    padding: 0 0 80px;
}

.faq_title{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.faq_description{
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 15px;
    width: 80%;
}

.faq_description::after{
    content: "";
    position: static;
    display: block;
    border-radius: 100px;
    margin-top: 35px;
    margin-bottom: 38px;
    height: 1.7px;
    width: 100%;
    background: linear-gradient(90deg, rgba(39,35,51,1) 0%, rgba(19,17,26,0) 75%);
}

.faq__card{
    width: 100%;
    background-color: var(--elements);
    padding: 30px 50px 13px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 6px;
}

.faq__card:hover{
    background-color: rgb(43, 41, 54);
    transition: background-color 0.3s;
}

.faq__card__text__title{
    color: var(--bs-gray-200);
    font-size: 19px;
}

.faq__card__description{
    color: var(--text-secondary);
    font-weight: normal;
    font-size: 14px;
    width: 90%;
}

.faq__card__plus{
    margin-top: -20px;
}

.faq__card__content{
    padding: 5px 0 50px;
    color: var(--text-secondary);
    font-weight: normal;
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    .faq_description{
        width: 100%;
    }
    .faq__card__text__title{
        color: var(--bs-gray-200);
        font-size: 15px;
        padding-right: 8px;
    }
}