.cmw-machine-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;

    .cmw-machine-faq_row {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-bottom: 1px solid #000;


        .cmw-machine-faq_row-header {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            font-family: var(--e-global-typography-6685133-font-family), sans-serif;
            font-weight: var(--e-global-typography-6685133-font-weight);
            text-transform: var(--e-global-typography-6685133-text-transform);
            line-height: var(--e-global-typography-6685133-line-height);
            font-size: var(--e-global-typography-6685133-font-size);
            padding: 25px 0;
            line-height: 1;
            cursor: pointer;

            @media(max-width: 1024px) {
                padding: 10px 0;
            }

            &:after {
                content: "";
                display: block;
                width: 40px;
                height: 40px;
                background: url('/wp-content/themes/CMWTECH-Theme/assets/media/icons/plus.svg');
                object-fit: contain;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;

                @media(max-width: 1024px) {
                    width: 30px;
                    height: 30px;
                }
            }
        }

        &:has(.cmw-machine-faq_row-body.active) {
            .cmw-machine-faq_row-header {
                &:after {
                    background: url('/wp-content/themes/CMWTECH-Theme/assets/media/icons/minus.svg');
                    object-fit: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                }
            }
        }

        .cmw-machine-faq_row-body {
            overflow: hidden;
            max-height: 0;
            transition: .3s ease-in-out;


            .cmw-machine-faq_row-body_content {
                padding-bottom: 20px;

                @media(max-width: 1024px) {
                    padding-bottom: 10px;
                }
            }
        }
    }
}