.faq-common-sec.light-bg .faq-question,
.faq-common-sec.white-bg .faq-question {
    color: #000000;
}

.faq-common-sec.red-bg .icon img,
.faq-common-sec.blue-bg .icon img,
.faq-common-sec.green-bg .icon img {
    filter: brightness(0) invert(1);
}

.faq-common-sec.red-bg .faq-right::-webkit-scrollbar-thumb,
.faq-common-sec.blue-bg .faq-right::-webkit-scrollbar-thumb,
.faq-common-sec.green-bg .faq-right::-webkit-scrollbar-thumb {
    background: var(--white);
}

.faq-content h3 {
    margin-bottom: 41px;
}

.faq-common-sec {
    padding: 100px 0px;
}

.row.faq-row {
    padding: 0 15px;
}

.faq-content {
    flex: 1;
    min-width: 0;
    padding-right: 86px;
}

.faq-right {
    flex: 1;
    min-width: 0;
    max-height: 425px;
    overflow-y: auto;
    padding-right: 19px;
}

.faq-right::-webkit-scrollbar-track {
    border-radius: 15px;
    background-color: transparent;
}

.faq-right::-webkit-scrollbar {
    width: 8px;
}

.faq-right::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: #4E91FF;
}

.faq-question .icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding-right: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-question {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    gap: 10px;
}

.faq-item.active .faq-question {
    padding-bottom: 16px;
}

.faq-item {
    padding: 20px;
    border-bottom: 1px solid #CECECE;
    cursor: pointer;
    text-align: left;
}

.faq-answer p,
.faq-answer li,
.faq-answer a {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    vertical-align: middle;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 0;
    margin-left: 18px;
}

.faq-item .icon .open-item {
    display: none;
}

.faq-item.active .icon .close-item {
    display: none;
}

.faq-item.active .icon .open-item {
    display: block;
}


/* full width faq */

.faq-common-sec.full-width-faq .faq-content h3 {
    text-transform: capitalize;
}

.faq-common-sec.full-width-faq .faq-content,
.faq-common-sec.full-width-faq .faq-right {
    flex: 0 0 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.faq-common-sec.full-width-faq .faq-right {
    max-height: unset;
    max-width: 884px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    overflow: hidden;
}

.faq-common-sec.full-width-faq .faq-item:last-child {
    border: 0;
    padding-bottom: 0;
}

.faq-common-sec.full-width-faq .faq-answer {
    text-align: left;
    opacity: 70%;
}

.faq-common-sec.full-width-faq .faq-item.active .faq-question {
    padding-bottom: 8px;
}

.faq-common-sec.full-width-faq .faq-answer ul,
.faq-common-sec.full-width-faq .faq-answer ol {
    margin-left: 18px;
}

@media (min-width: 1200px) {
    .faq-common-sec.full-width-faq .faq-question {
        font-weight: 700;
        font-size: 18px;
        line-height: 46px;
    }
    .faq-common-sec.full-width-faq .faq-answer p,
    .faq-common-sec.full-width-faq .faq-answer li,
    .faq-common-sec.full-width-faq .faq-answer a {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
    }
    .faq-common-sec.full-width-faq .faq-item {
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .faq-common-sec {
        padding: 60px 0;
    }
    .faq-content,
    .faq-right {
        flex: 0 0 100%;
        max-width: 100% !important;
    }
    .faq-right {
        margin-top: 10px;
        padding-right: 10px;
    }
    .faq-content h3 {
        margin-bottom: 15px;
    }
    .faq-content {
        padding-right: 0;
    }
    .faq-question .icon {
        width: 10px;
    }
}

@media (max-width: 767px) {
    .faq-common-sec {
        padding: 50px 0;
    }
    .faq-item {
        padding: 12px;
        border-bottom: 1px solid #CECECE;
        cursor: pointer;
    }
    .faq-common-sec.full-width-faq .faq-item {
        padding: 12px 0;
    }
    .faq-item.active .faq-question {
        padding-bottom: 12px;
    }
    .faq-question {
        font-size: 14px;
        line-height: 19px;
    }
}