.qmt-faq {
    direction: rtl;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    margin: 25px 0;
    border-top: 1px solid #ddd;
}

.qmt-faq * {
    box-sizing: border-box;
}

.qmt-faq-item {
    border-bottom: 1px solid #ddd;
}

.qmt-faq-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.qmt-faq-question {
    width: 100%;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none;
    padding: 24px 38px 24px 10px;
    text-align: right;
    color: #222 !important;
    font: inherit;
    cursor: pointer;
    position: relative;
    display: block;
    appearance: none;
    -webkit-appearance: none;
}

.qmt-faq-question::before {
    content: "◂";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    line-height: 1;
    color: #111;
    transition: transform .25s ease;
}

.qmt-faq-item.active .qmt-faq-question::before {
    content: "▾";
}

.qmt-faq-answer {
    display: none;
    padding: 0 38px 28px 10px;
    color: #666;
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
}

.qmt-faq-item.active .qmt-faq-answer {
    display: block;
}

.qmt-faq-answer p {
    margin: 0 0 12px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.qmt-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .qmt-faq-title {
        font-size: 17px;
    }

    .qmt-faq-question {
        padding: 18px 30px 18px 0;
    }

    .qmt-faq-answer {
        padding: 0 30px 20px 0;
        font-size: 15px;
    }
}
