/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 26 2026 | 14:33:19 */
   /* --- КОНТЕЙНЕР --- */
    .custom-faq-wrapper {
        font-family: inherit;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* --- БЛОК ВОПРОСА --- */
    .faq-item {
        background-color: var(--e-global-color-secondary);
        border-radius: 30px;
        overflow: hidden;
        transition: background-color 0.3s ease;
    }

    /* --- ЗАГОЛОВОК --- */
    .faq-header {
        padding: 15px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        gap: 20px;
        -webkit-tap-highlight-color: transparent;
    }

    .faq-question {
        color: var(--e-global-color-primary);
        font-size: 16px!important;
        font-weight: 700;
        margin: 0;
        line-height: 1.3;
    }

    /* --- ИКОНКА (+ / −) --- */
    .faq-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;

        background-color: #ffffff;
        color: var(--e-global-color-primary);
    }

    .faq-icon i {
        font-size: 18px!important;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    /* --- ОТВЕТ --- */
    .faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
        padding: 0 40px;
    }

    .faq-answer {
        color: var(--e-global-color-text);
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        padding-bottom: 30px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* --- АКТИВНОЕ СОСТОЯНИЕ --- */
    .faq-item.active .faq-icon {
        background-color: var(--e-global-color-primary);
        color: #ffffff;
        transform: rotate(180deg);
    }

    /* Меняем плюс на минус */
    .faq-item.active .faq-icon i::before {
        content: "\f068"; /* fa-minus */
    }

    .faq-item.active .faq-answer {
        opacity: 0.8;
        transform: translateY(0);
    }

    /* --- МОБИЛЬНАЯ ВЕРСИЯ --- */
    @media (max-width: 767px) {
        .faq-header {
            padding: 20px 24px;
        }

        .faq-body {
            padding: 0 24px;
        }

        .faq-question {
            font-size: 16px;
        }

        .faq-icon {
            width: 36px;
            height: 36px;
        }

        .faq-icon i {
            font-size: 16px;
        }
    }