HEX
Server: LiteSpeed
System: Linux onyx.7ho.st 5.14.0-611.13.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 11 04:57:59 EST 2025 x86_64
User: atiscoir (1242)
PHP: 8.1.34
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/atiscoir/public_html/wp-content/themes/servin/inc/elements/cf-styler.php
<?php
namespace Elementor;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
class Themento_wpcf7 extends Widget_Base {

    public function get_name() {
        return 'themento_wpcf7';
    }

    public function get_title() {
        return __( 'Contact Form 7', text_domain );
    }

    public function get_categories() {
        return [ text_domain ];
    }

    public function get_icon() {
        return 'eicon-form-horizontal';
    }

    public function get_keywords() {
        return [ 'form', 'contact form 7' ];
    }

    protected function get_cf7_forms() {

        $field_options = array();

        if ( class_exists( 'WPCF7_ContactForm' ) ) {
            $args               = array(
                'post_type'      => 'wpcf7_contact_form',
                'posts_per_page' => -1,
            );
            $forms              = get_posts( $args );
            $field_options['0'] = 'Select';
            if ( $forms ) {
                foreach ( $forms as $form ) {
                    $field_options[ $form->ID ] = $form->post_title;
                }
            }
        }

        if ( empty( $field_options ) ) {
            $field_options = array(
                '-1' => __( 'You have not added any Contact Form 7 yet.', text_domain ),
            );
        }
        return $field_options;
    }
    protected function get_cf7_form_id() {
        if ( class_exists( 'WPCF7_ContactForm' ) ) {
            $args  = array(
                'post_type'      => 'wpcf7_contact_form',
                'posts_per_page' => -1,
            );
            $forms = get_posts( $args );

            if ( $forms ) {
                foreach ( $forms as $form ) {
                    return $form->ID;
                }
            }
        }
        return -1;
    }

    protected function register_controls() {

        $this->register_general_content_controls();
        $this->register_input_style_controls();
        $this->register_radio_content_controls();
        $this->register_button_content_controls();
        $this->register_error_content_controls();
        $this->register_typography_style_controls();
    }

    protected function register_general_content_controls() {
        $this->start_controls_section(
            'section_general_field',
            [
                'label' => __( 'General', text_domain ),
            ]
        );
        $this->add_control(
            'select_form',
            [
                'label'   => __( 'Select Form', text_domain ),
                'type'    => Controls_Manager::SELECT,
                'options' => $this->get_cf7_forms(),
                'default' => '0',
            ]
        );
        $this->add_control(
            'cf7_style',
            [
                'label'        => __( 'Field Style', text_domain ),
                'type'         => Controls_Manager::SELECT,
                'default'      => 'box',
                'options'      => [
                    'box'       => __( 'Box', text_domain ),
                    'underline' => __( 'Underline', text_domain ),
                ],
                'prefix_class' => 'tmt-cf7-style-',
            ]
        );
        $this->add_control(
            'input_size',
            [
                'label'        => __( 'Field Size', text_domain ),
                'type'         => Controls_Manager::SELECT,
                'default'      => 'sm',
                'options'      => [
                    'xs' => __( 'Extra Small', text_domain ),
                    'sm' => __( 'Small', text_domain ),
                    'md' => __( 'Medium', text_domain ),
                    'lg' => __( 'Large', text_domain ),
                    'xl' => __( 'Extra Large', text_domain ),
                ],
                'prefix_class' => 'tmt-cf7-input-size-',
            ]
        );
        $this->add_responsive_control(
            'cf7_input_padding',
            [
                'label'      => __( 'Field Padding', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type="submit"]), {{WRAPPER}} .tmt-cf7-style select, {{WRAPPER}} .tmt-cf7-style textarea' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style select[multiple="multiple"]'  => 'padding: 0px;',
                    '{{WRAPPER}} .tmt-cf7-style select[multiple="multiple"] option'  => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type="checkbox"] + span:before,{{WRAPPER}} .tmt-cf7-style input[type="radio"] + span:before' => 'height: {{TOP}}{{UNIT}}; width: {{TOP}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-style-underline input[type="checkbox"] + span:before,{{WRAPPER}} .tmt-cf7-style-underline input[type="radio"] + span:before' => 'height: {{TOP}}{{UNIT}}; width: {{TOP}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline input[type="checkbox"]:checked + span:before' => 'font-size: calc({{BOTTOM}}{{UNIT}} / 1.2);',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-thumb' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-thumb' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-thumb' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-runnable-track' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-track' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-lower' => 'font-size: {{BOTTOM}}{{UNIT}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-upper' => 'font-size: {{BOTTOM}}{{UNIT}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_input_bgcolor',
            [
                'label'     => __( 'Field Background Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#fafafa',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]), {{WRAPPER}} .tmt-cf7-style select, {{WRAPPER}} .tmt-cf7-style textarea, {{WRAPPER}} .tmt-cf7-style .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}} .tmt-cf7-style .wpcf7-radio input[type="radio"]:not(:checked) + span:before' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-runnable-track,{{WRAPPER}} .tmt-cf7-style input[type=range]:focus::-webkit-slider-runnable-track' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-track,{{WRAPPER}} input[type=range]:focus::-moz-range-track' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-lower,{{WRAPPER}} .tmt-cf7-style input[type=range]:focus::-ms-fill-lower' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-upper,{{WRAPPER}} .tmt-cf7-style input[type=range]:focus::-ms-fill-upper' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-style-box .wpcf7-radio input[type="radio"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-radio input[type="radio"]:checked + span:before' => 'box-shadow:inset 0px 0px 0px 4px {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_label_color',
            [
                'label'     => __( 'Label Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 form.wpcf7-form:not(input)' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_input_color',
            [
                'label'     => __( 'Input Text / Placeholder Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 input:not([type=submit]),{{WRAPPER}} .tmt-cf7-style .wpcf7 input::placeholder, {{WRAPPER}} .tmt-cf7-style .wpcf7 select, {{WRAPPER}} .tmt-cf7-style .wpcf7 textarea, {{WRAPPER}} .tmt-cf7-style .wpcf7 textarea::placeholder,{{WRAPPER}} .tmt-cf7-style .tmt-cf7-select-custom:after' => 'color: {{VALUE}};',
                    '{{WRAPPER}}.elementor-widget-tmt-cf7-styler .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.elementor-widget-tmt-cf7-styler .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => 'color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-style-box .wpcf7-radio input[type="radio"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-radio input[type="radio"]:checked + span:before' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'input_border_style',
            [
                'label'       => __( 'Border Style', text_domain ),
                'type'        => Controls_Manager::SELECT,
                'default'     => 'solid',
                'label_block' => false,
                'options'     => [
                    'none'   => __( 'None', text_domain ),
                    'solid'  => __( 'Solid', text_domain ),
                    'double' => __( 'Double', text_domain ),
                    'dotted' => __( 'Dotted', text_domain ),
                    'dashed' => __( 'Dashed', text_domain ),
                ],
                'condition'   => [
                    'cf7_style' => 'box',
                ],
                'selectors'   => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]), {{WRAPPER}} .tmt-cf7-style select,{{WRAPPER}} .tmt-cf7-style textarea,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-radio input[type="radio"] + span:before' => 'border-style: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'input_border_size',
            [
                'label'      => __( 'Border Width', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px' ],
                'default'    => [
                    'top'    => '1',
                    'bottom' => '1',
                    'left'   => '1',
                    'right'  => '1',
                    'unit'   => 'px',
                ],
                'condition'  => [
                    'cf7_style'           => 'box',
                    'input_border_style!' => 'none',
                ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]), {{WRAPPER}} .tmt-cf7-style select,{{WRAPPER}} .tmt-cf7-style textarea,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-radio input[type="radio"] + span:before' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
            ]
        );
        $this->add_control(
            'input_border_color',
            [
                'label'     => __( 'Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'condition' => [
                    'cf7_style'           => 'box',
                    'input_border_style!' => 'none',
                ],
                'default'   => '#eaeaea',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]), {{WRAPPER}} .tmt-cf7-style select,{{WRAPPER}} .tmt-cf7-style textarea,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-style-box .wpcf7-radio input[type="radio"] + span:before' => 'border-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-runnable-track' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-track' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-lower' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-upper' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_border_bottom',
            [
                'label'      => __( 'Border Size', text_domain ),
                'type'       => Controls_Manager::SLIDER,
                'size_units' => [ 'px', 'em', 'rem' ],
                'range'      => [
                    'px' => [
                        'min' => 1,
                        'max' => 20,
                    ],
                ],
                'default'    => [
                    'size' => '2',
                    'unit' => 'px',
                ],
                'condition'  => [
                    'cf7_style' => 'underline',
                ],
                'selectors'  => [
                    '{{WRAPPER}}.tmt-cf7-style-underline input:not([type=submit]),{{WRAPPER}}.tmt-cf7-style-underline select,{{WRAPPER}}.tmt-cf7-style-underline textarea' => 'border-width: 0 0 {{SIZE}}{{UNIT}} 0; border-style: solid;',
                    '{{WRAPPER}}.tmt-cf7-style-underline .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-style-underline .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-acceptance input[type="checkbox"] + span:before,{{WRAPPER}} .wpcf7-radio input[type="radio"] + span:before' => 'border-width: {{SIZE}}{{UNIT}}; border-style: solid; box-sizing: content-box;',
                ],
            ]
        );
        $this->add_control(
            'cf7_border_color',
            [
                'label'     => __( 'Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'condition' => [
                    'cf7_style' => 'underline',
                ],
                'default'   => '#c4c4c4',
                'selectors' => [
                    '{{WRAPPER}}.tmt-cf7-style-underline input:not([type=submit]),{{WRAPPER}}.tmt-cf7-style-underline select,{{WRAPPER}}.tmt-cf7-style-underline textarea, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-checkbox input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-style-underline .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}} .wpcf7-radio input[type="radio"] + span:before' => 'border-color: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style-underline input[type=range]::-webkit-slider-runnable-track' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-track' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-lower' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-fill-upper' => 'border: 0.2px solid {{VALUE}}; box-shadow: 1px 1px 1px {{VALUE}}, 0px 0px 1px {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_ipborder_active',
            [
                'label'     => __( 'Border Active Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 form input:not([type=submit]):focus, {{WRAPPER}} .tmt-cf7-style select:focus, {{WRAPPER}} .tmt-cf7-style .wpcf7 textarea:focus, {{WRAPPER}} .tmt-cf7-style .wpcf7-checkbox input[type="checkbox"]:checked + span:before,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}} .tmt-cf7-style .wpcf7-radio input[type="radio"]:checked + span:before' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_input_radius',
            [
                'label'      => __( 'Border Radius', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type="submit"]), {{WRAPPER}} .tmt-cf7-style select, {{WRAPPER}} .tmt-cf7-style textarea, {{WRAPPER}} .wpcf7-checkbox input[type="checkbox"] + span:before, {{WRAPPER}} .wpcf7-acceptance input[type="checkbox"] + span:before' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
                'default'    => [
                    'top'    => '0',
                    'bottom' => '0',
                    'left'   => '0',
                    'right'  => '0',
                    'unit'   => 'px',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_text_align',
            [
                'label'     => __( 'Field Alignment', text_domain ),
                'type'      => Controls_Manager::CHOOSE,
                'options'   => [
                    'right'   => [
                        'title' => __( 'Right', text_domain ),
                        'icon'  => 'eicon-text-align-right',
                    ],
                    'center' => [
                        'title' => __( 'Center', text_domain ),
                        'icon'  => 'eicon-text-align-center',
                    ],
                    'left'  => [
                        'title' => __( 'Left', text_domain ),
                        'icon'  => 'eicon-text-align-left',
                    ],
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7, {{WRAPPER}} .tmt-cf7-style input:not([type=submit]),{{WRAPPER}} .tmt-cf7-style textarea' => 'text-align: {{VALUE}};',
                    ' {{WRAPPER}} .tmt-cf7-style select' => 'text-align-last:{{VALUE}};',
                ],
            ]
        );
        $this->end_controls_section();
    }
    protected function register_radio_content_controls() {
        $this->start_controls_section(
            'cf7_radio_check_style',
            [
                'label' => __( 'Radio & Checkbox', text_domain ),
            ]
        );
        $this->add_control(
            'cf7_radio_check_adv',
            [
                'label'        => __( 'Override Current Style', text_domain ),
                'type'         => Controls_Manager::SWITCHER,
                'label_on'     => __( 'Yes', text_domain ),
                'label_off'    => __( 'No', text_domain ),
                'return_value' => 'yes',
                'default'      => '',
                'separator'    => 'before',
                'prefix_class' => 'tmt-cf7-check-',
            ]
        );
        $this->add_control(
            'cf7_radio_check_size',
            [
                'label'      => _x( 'Size', text_domain ),
                'type'       => Controls_Manager::SLIDER,
                'size_units' => [ 'px', 'em', 'rem' ],
                'condition'  => [
                    'cf7_radio_check_adv!' => '',
                ],
                'default'    => [
                    'unit' => 'px',
                    'size' => 20,
                ],
                'range'      => [
                    'px' => [
                        'min' => 15,
                        'max' => 50,
                    ],
                ],
                'selectors'  => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"] + span:before' => 'width: {{SIZE}}{{UNIT}}; height:{{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"]:checked + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"]:checked + span:before'  => 'font-size: calc( {{SIZE}}{{UNIT}} / 1.2 );',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-webkit-slider-thumb' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-moz-range-thumb' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-ms-thumb' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-webkit-slider-runnable-track' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-moz-range-track' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-ms-fill-lower' => 'font-size: {{SIZE}}{{UNIT}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-ms-fill-upper' => 'font-size: {{SIZE}}{{UNIT}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_radio_check_bgcolor',
            [
                'label'     => __( 'Background Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#fafafa',
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"]:not(:checked) + span:before' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-webkit-slider-runnable-track,{{WRAPPER}}.tmt-cf7-check-yes input[type=range]:focus::-webkit-slider-runnable-track' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-moz-range-track,{{WRAPPER}} input[type=range]:focus::-moz-range-track' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-ms-fill-lower,{{WRAPPER}}.tmt-cf7-check-yes input[type=range]:focus::-ms-fill-lower' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-ms-fill-upper,{{WRAPPER}}.tmt-cf7-check-yes input[type=range]:focus::-ms-fill-upper' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"]:checked + span:before' => 'box-shadow:inset 0px 0px 0px 4px {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_selected_color',
            [
                'label'     => __( 'Selected Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"]:checked + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => 'color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"]:checked + span:before' => 'background-color: {{VALUE}};',
                    '{{WRAPPER}}.tmt-cf7-check-yes input[type=range]::-webkit-slider-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-moz-range-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                    '{{WRAPPER}} .tmt-cf7-style input[type=range]::-ms-thumb' => 'border: 1px solid {{VALUE}}; background: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_radio_label_color',
            [
                'label'     => __( 'Label Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="checkbox"] + span, .tmt-cf7-style input[type="radio"] + span' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_check_border_color',
            [
                'label'     => __( 'Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#eaeaea',
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"] + span:before' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_check_border_width',
            [
                'label'      => __( 'Border Width', text_domain ),
                'type'       => Controls_Manager::SLIDER,
                'size_units' => [ 'px' ],
                'range'      => [
                    'px' => [
                        'min' => 1,
                        'max' => 20,
                    ],
                ],
                'default'    => [
                    'size' => '1',
                    'unit' => 'px',
                ],
                'condition'  => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors'  => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"] + span:before,{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"]:checked + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-radio input[type="radio"] + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => 'border-width: {{SIZE}}{{UNIT}}; border-style: solid;',
                ],
            ]
        );
        $this->add_control(
            'cf7_check_border_radius',
            [
                'label'      => __( 'Checkbox Rounded Corners', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', '%' ],
                'condition'  => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selectors'  => [
                    '{{WRAPPER}}.tmt-cf7-check-yes .wpcf7-checkbox input[type="checkbox"] + span:before, {{WRAPPER}}.tmt-cf7-check-yes .wpcf7-acceptance input[type="checkbox"] + span:before' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
                'default'    => [
                    'top'    => '0',
                    'bottom' => '0',
                    'left'   => '0',
                    'right'  => '0',
                    'unit'   => 'px',
                ],
            ]
        );
        $this->end_controls_section();
    }
    protected function register_button_content_controls() {
        $this->start_controls_section(
            'cf7_submit_button',
            [
                'label' => __( 'Submit Button', text_domain ),
            ]
        );
        $this->add_responsive_control(
            'cf7_button_align',
            [
                'label'        => __( 'Button Alignment', text_domain ),
                'type'         => Controls_Manager::CHOOSE,
                'options'      => [
                    'right'    => [
                        'title' => __( 'Left', text_domain ),
                        'icon'  => 'eicon-text-align-right',
                    ],
                    'center'  => [
                        'title' => __( 'Center', text_domain ),
                        'icon'  => 'eicon-text-align-center',
                    ],
                    'left'   => [
                        'title' => __( 'Left', text_domain ),
                        'icon'  => 'eicon-text-align-left',
                    ],
                ],
                'default'      => 'left',
                'selectors'  => [
                    '{{WRAPPER}} .tmt-wpcf7-submit' => 'text-align: {{VALUE}}',
                ],
                'toggle'       => false,
            ]
        );
        $this->add_control(
            'cf7_button_width',
            [
                'label' => __( 'Width', text_domain ),
                'type' => Controls_Manager::SLIDER,
                'range' => [
                    'min' => 0,
                    'max' => 100,
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-wpcf7-submit input' => 'width: {{SIZE}}%;',
                ],
            ]
        );
        $this->add_control(
            'btn_size',
            [
                'label'        => __( 'Size', text_domain ),
                'type'         => Controls_Manager::SELECT,
                'default'      => 'sm',
                'options'      => [
                    'xs' => __( 'Extra Small', text_domain ),
                    'sm' => __( 'Small', text_domain ),
                    'md' => __( 'Medium', text_domain ),
                    'lg' => __( 'Large', text_domain ),
                    'xl' => __( 'Extra Large', text_domain ),
                ],
                'prefix_class' => 'tmt-cf7-btn-size-',
            ]
        );
        $this->add_responsive_control(
            'cf7_button_padding',
            [
                'label'      => __( 'Padding', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="submit"]' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
                'separator'  => 'after',
            ]
        );
        $this->start_controls_tabs( 'tabs_button_style' );
        $this->start_controls_tab('tab_button_normal', ['label' => __( 'Normal', text_domain ),]);
        $this->add_control(
            'button_text_color',
            [
                'label'     => __( 'Text Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="submit"]' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Background::get_type(),
            [
                'name'           => 'btn_background_color',
                'label'          => __( 'Background Color', text_domain ),
                'types'          => [ 'classic', 'gradient' ],
                'selector'       => '{{WRAPPER}} .tmt-cf7-style input[type="submit"]',
            ]
        );
        $this->add_group_control(
            Group_Control_Border::get_type(),
            [
                'name'        => 'btn_border',
                'label'       => __( 'Border', text_domain ),
                'placeholder' => '1px',
                'default'     => '1px',
                'selector'    => '{{WRAPPER}} .tmt-cf7-style input[type="submit"]',
            ]
        );
        $this->add_responsive_control(
            'btn_border_radius',
            [
                'label'      => __( 'Border Radius', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="submit"]' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Box_Shadow::get_type(),
            [
                'name'     => 'button_box_shadow',
                'selector' => '{{WRAPPER}} .tmt-cf7-style input[type="submit"]',
            ]
        );
        $this->end_controls_tab();
        $this->start_controls_tab('tab_button_hover', ['label' => __( 'Hover', text_domain ),]);
        $this->add_control(
            'btn_hover_color',
            [
                'label'     => __( 'Text Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="submit"]:hover' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'button_hover_border_color',
            [
                'label'     => __( 'Border Hover Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style input[type="submit"]:hover' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Background::get_type(),
            [
                'name'     => 'button_background_hover_color',
                'label'    => __( 'Background Color', text_domain ),
                'types'    => [ 'classic', 'gradient' ],
                'selector' => '{{WRAPPER}} .tmt-cf7-style input[type="submit"]:hover',
            ]
        );
        $this->end_controls_tab();
        $this->end_controls_tabs();
        $this->end_controls_section();
    }
    protected function register_error_content_controls() {
        $this->start_controls_section(
            'cf7_error_field',
            [
                'label' => __( 'Success / Error Message', text_domain ),
            ]
        );
        $this->add_control(
            'cf7_field_message',
            [
                'label'     => __( 'Field Validation', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
            ]
        );
        $this->add_control(
            'cf7_highlight_style',
            [
                'label'        => __( 'Message Position', text_domain ),
                'type'         => Controls_Manager::SELECT,
                'default'      => 'default',
                'options'      => [
                    'default'      => __( 'Default', text_domain ),
                    'bottom_right' => __( 'Bottom Right Side of Field', text_domain ),
                ],
                'prefix_class' => 'tmt-cf7-highlight-style-',
            ]
        );
        $this->add_control(
            'cf7_message_color',
            [
                'label'     => __( 'Message Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#ff0000',
                'condition' => [
                    'cf7_highlight_style' => 'default',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style span.wpcf7-not-valid-tip' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_message_highlight_color',
            [
                'label'     => __( 'Message Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#ffffff',
                'condition' => [
                    'cf7_highlight_style' => 'bottom_right',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style span.wpcf7-not-valid-tip' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_message_bgcolor',
            [
                'label'     => __( 'Message Background Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => 'rgba(255, 0, 0, 0.6)',
                'condition' => [
                    'cf7_highlight_style' => 'bottom_right',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style span.wpcf7-not-valid-tip' => 'background-color: {{VALUE}}; padding: 0.1em 0.8em;',
                ],
            ]
        );
        $this->add_control(
            'cf7_highlight_border',
            [
                'label'        => __( 'Highlight Borders', text_domain ),
                'type'         => Controls_Manager::SWITCHER,
                'label_on'     => __( 'Yes', text_domain ),
                'label_off'    => __( 'No', text_domain ),
                'return_value' => 'yes',
                'default'      => '',
                'prefix_class' => 'tmt-cf7-highlight-',
            ]
        );
        $this->add_control(
            'cf7_highlight_border_color',
            [
                'label'     => __( 'Highlight Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#ff0000',
                'condition' => [
                    'cf7_highlight_border' => 'yes',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7-form-control.wpcf7-not-valid, {{WRAPPER}} .tmt-cf7-style .wpcf7-form-control.wpcf7-not-valid .wpcf7-list-item-label:before' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'     => 'cf7_message_typo',
                'selector' => '{{WRAPPER}} .tmt-cf7-style span.wpcf7-not-valid-tip',
            ]
        );
        $this->add_control(
            'cf7_validation_message',
            [
                'label'     => __( 'Form Success / Error Validation', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
            ]
        );
        $this->add_control(
            'cf7_success_message_color',
            [
                'label'     => __( 'Success Message Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7-mail-sent-ok' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_success_message_bgcolor',
            [
                'label'     => __( 'Success Message Background Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7-mail-sent-ok' => 'background-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_success_border_color',
            [
                'label'     => __( 'Success Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#008000',
                'condition' => [
                    'cf7_valid_border_size!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7-mail-sent-ok' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_error_message_color',
            [
                'label'     => __( 'Error Message Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_error_message_bgcolor',
            [
                'label'     => __( 'Error Message Background Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '',
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'background-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_control(
            'cf7_error_border_color',
            [
                'label'     => __( 'Error Border Color', text_domain ),
                'type'      => Controls_Manager::COLOR,
                'default'   => '#ff0000',
                'condition' => [
                    'cf7_valid_border_size!' => '',
                ],
                'selectors' => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'border-color: {{VALUE}};',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_valid_border_size',
            [
                'label'      => __( 'Border Size', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'default'    => [
                    'top'    => '2',
                    'bottom' => '2',
                    'left'   => '2',
                    'right'  => '2',
                    'unit'   => 'px',
                ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; border-style: solid;',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_valid_message_radius',
            [
                'label'      => __( 'Rounded Corners', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng, {{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_valid_message_padding',
            [
                'label'      => __( 'Message Padding', text_domain ),
                'type'       => Controls_Manager::DIMENSIONS,
                'size_units' => [ 'px', 'em', '%' ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng, {{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'     => 'cf7_validation_typo',
                'selector' => '{{WRAPPER}} .tmt-cf7-style .wpcf7 .wpcf7-validation-errors, {{WRAPPER}} .tmt-cf7-style div.wpcf7-mail-sent-ng,{{WRAPPER}} .tmt-cf7-style .wpcf7-mail-sent-ok,{{WRAPPER}} .tmt-cf7-style .wpcf7-acceptance-missing',
            ]
        );
        $this->end_controls_section();
    }
    protected function register_input_style_controls() {
        $this->start_controls_section(
            'cf7_input_spacing',
            [
                'label' => __( 'Spacing', text_domain ),
                'tab'   => Controls_Manager::TAB_STYLE,
            ]
        );
        $this->add_responsive_control(
            'cf7_input_margin_top',
            [
                'label'      => __( 'Between Label & Input', text_domain ),
                'type'       => Controls_Manager::SLIDER,
                'size_units' => [ 'px', 'em', 'rem' ],
                'range'      => [
                    'px' => [
                        'min' => 1,
                        'max' => 60,
                    ],
                ],
                'default'    => [
                    'unit' => 'px',
                    'size' => 5,
                ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]):not([type=checkbox]):not([type=radio]), {{WRAPPER}} .tmt-cf7-style select, {{WRAPPER}} .tmt-cf7-style textarea, {{WRAPPER}} .tmt-cf7-style span.wpcf7-list-item' => 'margin-top: {{SIZE}}{{UNIT}};',
                ],
            ]
        );
        $this->add_responsive_control(
            'cf7_input_margin_bottom',
            [
                'label'      => __( 'Between Fields', text_domain ),
                'type'       => Controls_Manager::SLIDER,
                'size_units' => [ 'px', 'em', 'rem' ],
                'range'      => [
                    'px' => [
                        'min' => 1,
                        'max' => 60,
                    ],
                ],
                'default'    => [
                    'unit' => 'px',
                    'size' => 10,
                ],
                'selectors'  => [
                    '{{WRAPPER}} .tmt-cf7-style input:not([type=submit]):not([type=checkbox]):not([type=radio]), {{WRAPPER}} .tmt-cf7-style select, {{WRAPPER}} .tmt-cf7-style textarea, {{WRAPPER}} .tmt-cf7-style span.wpcf7-list-item' => 'margin-bottom: {{SIZE}}{{UNIT}};',
                ],
            ]
        );
        $this->end_controls_section();
    }
    protected function register_typography_style_controls() {
        $this->start_controls_section(
            'cf7_typo',
            [
                'label' => __( 'Typography', text_domain ),
                'tab'   => Controls_Manager::TAB_STYLE,
            ]
        );
        $this->add_control(
            'cf7_label_typo',
            [
                'label'     => __( 'Form Label', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'     => 'form_label_typography',
                'selector' => '{{WRAPPER}} .tmt-cf7-style .wpcf7 form.wpcf7-form label',
            ]
        );
        $this->add_control(
            'cf7_input_typo',
            [
                'label'     => __( 'Input Text / Placeholder', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'     => 'input_typography',
                'selector' => '{{WRAPPER}} .tmt-cf7-style .wpcf7 input:not([type=submit]), {{WRAPPER}} .tmt-cf7-style .wpcf7 input::placeholder, {{WRAPPER}} .wpcf7 select,{{WRAPPER}} .tmt-cf7-style .wpcf7 textarea, {{WRAPPER}} .tmt-cf7-style .wpcf7 textarea::placeholder, {{WRAPPER}} .tmt-cf7-style input[type=range]::-webkit-slider-thumb,{{WRAPPER}} .tmt-cf7-style .tmt-cf7-select-custom',
            ]
        );
        $this->add_control(
            'btn_typography_label',
            [
                'label'     => __( 'Button', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'     => 'btn_typography',
                'label'    => __( 'Typography', text_domain ),
                'selector' => '{{WRAPPER}} .tmt-cf7-style input[type=submit]',
            ]
        );
        $this->add_control(
            'cf7_radio_check_typo',
            [
                'label'     => __( 'Radio Button & Checkbox', text_domain ),
                'type'      => Controls_Manager::HEADING,
                'separator' => 'before',
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
            ]
        );
        $this->add_group_control(
            Group_Control_Typography::get_type(),
            [
                'name'      => 'radio_check_typography',
                'condition' => [
                    'cf7_radio_check_adv!' => '',
                ],
                'selector'  => '{{WRAPPER}} .tmt-cf7-style input[type="checkbox"] + span, .tmt-cf7-style input[type="radio"] + span',
            ]
        );
        $this->end_controls_section();
    }
    protected function render_editor_script() {
        if (Plugin::instance()->editor->is_edit_mode() === false ) {
            return;
        }
        $pre_url = wpcf7_get_request_uri();

        if ( strpos( $pre_url, 'admin-ajax.php' ) === false ) {
            return;
        }

        ?><script type="text/javascript">
            jQuery( document ).ready( function( $ ) {

                $( '.tmt-cf7-container' ).each( function() {

                    var $node_id 	= '<?php echo $this->get_id(); ?>';
                    var	scope 		= $( '[data-id="' + $node_id + '"]' );
                    var selector 	= $(this);

                    if ( selector.closest( scope ).length < 1 ) {
                        return;
                    }

                    if ( selector.find( 'div.wpcf7 > form' ).length < 1 ) {
                        return;
                    }

                    selector.find( 'div.wpcf7 > form' ).each( function() {
                        var $form = $( this );
                        wpcf7.initForm( $form );
                    } );
                });
            });
        </script>
        <?php
    }
    protected function render() {

        if ( ! class_exists( 'WPCF7_ContactForm' ) ) {
            return;
        }

        if (Plugin::$instance->editor->is_edit_mode() ) {
            ?>
            <script type="text/javascript">
                jQuery(document).ready(function ($) {
                    $('.wpcf7-submit').parent().addClass('tmt-wpcf7-submit');
                });
            </script>
            <?php
        }

        $settings      = $this->get_settings();
        $node_id       = $this->get_id();
        $field_options = array();
        $classname     = '';

        $args = array(
            'post_type'      => 'wpcf7_contact_form',
            'posts_per_page' => -1,
        );

        $forms              = get_posts( $args );
        $field_options['0'] = __( 'select', text_domain );
        if ( $forms ) {
            foreach ( $forms as $form ) {
                $field_options[ $form->ID ] = $form->post_title;
            }
        }

        $this->add_inline_editing_attributes( 'themento_cf7_title' );
        $forms = $this->get_cf7_forms();

        $html = '';

        if ( ! empty( $forms ) && ! isset( $forms[-1] ) ) {
            if ( 0 == $settings['select_form'] ) {
                $html = __( 'Please select a Contact Form 7.', text_domain );
            } else {
                ?>
                <div class="tmt-cf7-container">
                    <div class="tmt-cf7 tmt-cf7-style elementor-clickable">
                        <?php
                        if ( $settings['select_form'] ) {
                            echo do_shortcode( '[contact-form-7 id=' . $settings['select_form'] . ']' );
                        }
                        ?>
                    </div>
                </div>
                <?php
            }
        } else {
            $html = __( 'You have not added any Contact Form 7 yet.', text_domain );
        }
        echo $html;

        $this->render_editor_script();
    }


}
Plugin::instance()->widgets_manager->register( new Themento_wpcf7 );