.faq-new__question-wrapper {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-new__question {
    font-size: 20px;
    line-height: 1.2;
    color: #010D1C;
    margin-bottom: 0;
    margin-top: 0;
}

.faq-new__question-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(1, 13, 28, 0.75);
}

.faq-new__answer {
    font-size: 16px;
}

.faq-new__question-icon-diagonal {
    visibility: hidden;
    transition: all 0.3s ease;
}

.faq-new__question-icon-diagonal img {
    height: 50px;
    width: 0px;
    transition: all 0.3s ease;
}

.faq-new__question-header {
    display: flex;
}

.faq-new__question-text {
    transition: transform 0.3s ease;
}

.faq-new__question-wrapper--active .faq-new__question-text, .faq-new__item--open .faq-new__question-text {
    transform : translateX(16px);
}

.faq-new__question-wrapper--active .faq-new__question-icon-diagonal, .faq-new__item--open .faq-new__question-icon-diagonal {
    visibility: visible;
}

.faq-new__question-wrapper--active .faq-new__question-icon-diagonal img, .faq-new__item--open .faq-new__question-icon-diagonal img {
    width: auto;
}

.faq-new__question-icon {
    font-weight: 600;
    color: black;
}

.faq-new__question-wrapper--active .faq-new__question-icon, .faq-new__item--open .faq-new__question-icon {
    color: #FB3640
}

.faq-new__answer {
    visibility: hidden;
    height: 0;
}

.faq-new__item {
    padding: 12px 0;}

.faq-new__item--open .faq-new__answer {
    visibility: visible;
    height: auto;
}

.faq-new__item--open .faq-new__question, .faq-new__question-wrapper--active .faq-new__question {
    color: #FB3640;
}

.faq-new__question {
    color: black;
}

.faq-new__question-icon--minus {
    display: none;
}

.faq-new__item--open .faq-new__question-icon--plus {
    display: none;
}

.faq-new__item--open .faq-new__question-icon--minus {
    display: inline;
}

.faq-new__answer {
    padding-left: 32px;
}