diff --git a/wp/wp-content/plugins/classic-editor/classic-editor.php b/wp/wp-content/plugins/classic-editor/classic-editor.php index 2dcde7e8..ffb63050 100644 --- a/wp/wp-content/plugins/classic-editor/classic-editor.php +++ b/wp/wp-content/plugins/classic-editor/classic-editor.php @@ -5,7 +5,7 @@ * Plugin Name: Classic Editor * Plugin URI: https://wordpress.org/plugins/classic-editor/ * Description: Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen. - * Version: 1.6.4 + * Version: 1.6.5 * Author: WordPress Contributors * Author URI: https://github.com/WordPress/classic-editor/ * License: GPLv2 or later @@ -65,6 +65,9 @@ class Classic_Editor { // Always remove the "Try Gutenberg" dashboard widget. See https://core.trac.wordpress.org/ticket/44635. remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' ); + + // Fix for Safari 18 negative horizontal margin on floats. + add_action( 'admin_print_styles', array( __CLASS__, 'safari_18_temp_fix' ) ); if ( ! $block_editor && ! $gutenberg ) { return; @@ -974,6 +977,28 @@ class Classic_Editor { delete_option( 'classic-editor-replace' ); delete_option( 'classic-editor-allow-users' ); } + + /** + * Temporary fix for Safari 18 negative horizontal margin on floats. + * See: https://core.trac.wordpress.org/ticket/62082 and + * https://bugs.webkit.org/show_bug.cgi?id=280063. + * TODO: Remove when Safari is fixed. + */ + public static function safari_18_temp_fix() { + global $current_screen; + + if ( isset( $current_screen->base ) && 'post' === $current_screen->base ) { + $clear = is_rtl() ? 'right' : 'left'; + + ?> + + #no-fields{display:none!important}select{font-family:verdana,sans-serif;font-size:inherit;padding:2px 0}.ui-datepicker{display:none}table.xwidefat{width:99%!important}div.wrap{position:relative}.hr-divider{background-color:#fff;border-bottom:1px solid #fff;border-top:1px solid #e6e6e6;clear:both;height:1px;margin:24px 0;overflow:hidden}.gform_settings_form .hr-divider{grid-column:span 2}.gf_admin_notice{background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-size:14px;line-height:19px;margin:25px 20px 0 2px;margin-bottom:24px;padding:11px 15px;text-align:left}a .gform-icon{text-decoration:none}.gform-kitchen-sink ul,.gform-kitchen-sink__ul{margin-bottom:6px;padding-left:1rem}.gform-kitchen-sink li,.gform-kitchen-sink__li{line-height:1.2rem;list-style:disc outside;margin-bottom:0}.gform-kitchen-sink li+li,.gform-kitchen-sink__li+.gform-kitchen-sink__li{margin-top:6px}.gform-admin .gform-c-warning-text{color:#a16938}.gform-admin .gform-c-error-text{color:#dd301d}.gform-admin .gform-c-red{color:#dd301d}.gform-admin .gform-c-hunter{color:#276a52}.gform-admin .gform-c-orange{color:#f15a2b}.gform-admin .gform-c-blue-ribbon{color:#175cff}.gform-admin .gform-p-16{padding:1rem}.gform-admin .gform-visually-hidden{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.gform-hide-if-ie{display:inherit}.gform-show-if-ie{display:none}.gform-hide-if-not-ie{display:none}.gform-show-if-not-ie{display:inherit}.gform-fade-if-not-ie{opacity:.4}.gform-fade-if-not-ie,.gform-fade-if-not-ie *{pointer-events:none}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.gform-hide-if-ie{display:none}.gform-show-if-ie{display:inherit}.gform-hide-if-not-ie{display:inherit}.gform-show-if-not-ie{display:none}.gform-fade-if-ie{opacity:.4}.gform-fade-if-not-ie{cursor:inherit;opacity:inherit;pointer-events:inherit}}.all-merge-tags{position:absolute;right:0;top:-1.9rem}.all-merge-tags button{transition:color ease-in-out .5s}.gform-tinymce-mergetag-button .all-merge-tags{display:inline-block;padding-top:.45rem;position:static}.wp-media-buttons .all-merge-tags{position:relative;top:.375rem}.field_setting .all-merge-tags{top:-.15rem}.field_setting .all-merge-tags .gform-button--unstyled{font-weight:400}@-moz-document url-prefix(){.gform-settings-input__container--with-merge-tag .all-merge-tags.textarea a.open-list{margin-top:1px}}#gf_merge_tag_list{background:#fff;border:1px solid #d9dae6;border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.125);max-height:14rem;overflow:auto;position:absolute;right:0;width:14.625rem!important;z-index:999}#gf_merge_tag_list li{margin:0}#gf_merge_tag_list li a{cursor:pointer}#gf_merge_tag_list li a:hover{background:#f6f9fc}#gf_merge_tag_list li:last-child a{border-bottom:none}#gf_merge_tag_list .group-header,#gf_merge_tag_list li a{border-bottom:1px solid #ecedf8;color:#242748;display:block;font-size:.875rem;line-height:1.1875rem;padding:.75rem 1.1875rem 1.0625rem}#gf_merge_tag_list .group-header{font-weight:700}.right ul#gf_merge_tag_list{right:0}.mt-form_confirmation_message,.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px}#wp-form_confirmation_message-wrap,#wp-gform_notification_message-wrap{margin-right:12px}#form_settings{margin-top:0}table#gf_personal_data_field_settings td{margin:0;padding:0;vertical-align:top}#gf_personal_data_field_settings .gf_personal_data_field_label_title{font-weight:700;padding:0 10px 10px 0;text-align:left}#gf_personal_data_field_settings .gf_personal_data_cb_title{font-weight:700;padding:0;text-align:center;width:50px}#gf_personal_data_field_settings .gf_personal_data_cb_cell{text-align:center;width:50px}.gform-admin .ui-autocomplete .ui-state-active{background-color:#f6f9fc;border-right:2px solid #3e7da6}.gform-admin .ui-menu-item{padding:0}.gform-admin .ui-menu-item div{padding:.25rem .625rem}.gform-admin .gform-dropdown--merge-tags{display:inline-block}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control{background:0 0;border:none;box-shadow:none;display:inline-block;height:auto;line-height:1;padding:0}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control i.gform-dropdown__chevron{display:none}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control .gform-icon--merge-tag{border:1px solid transparent;border-radius:3px;color:#9092b2;font-size:1.5rem;position:relative}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control:focus .gform-icon--merge-tag{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control:hover .gform-icon--merge-tag{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control .gform-dropdown__control-text{align-items:center;color:#242748;display:flex;font-size:.8125rem;overflow:visible}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container{border-radius:.1875rem;border-top:.0625rem solid #d5d7e9;top:1.5rem;width:16rem}@media (min-width:960px){.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container{width:18.75rem}}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container::before{display:none}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__group-text{display:inline-block;padding-bottom:.6875rem}.right .gform-dropdown__container{right:0}.gform-admin .gform-dropdown__search .gform-dropdown__search-input:not(#gform-form-switcher-search){-webkit-appearance:none;background:#fff;border:1px solid #c3c5db;border-radius:3px;box-shadow:0 0 0 transparent;box-sizing:border-box;color:#242748;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.8125rem;line-height:2;outline:0;padding:.25rem .75rem;transition:box-shadow .15s ease,background-color .15s ease}html[dir=rtl] .all-merge-tags{left:0;right:auto}html[dir=rtl] #gf_merge_tag_list{left:0;right:auto}html[dir=rtl] .gform-admin .gform-dropdown--merge-tags .gform-dropdown__control{padding:0}html[dir=rtl] .right .gform-dropdown__container{left:0;right:auto}.gforms_edit_form .button,.gforms_edit_form button.primary{border-radius:3px;font-size:.8125rem;font-weight:500;line-height:1.125rem;text-decoration:none;text-shadow:none;transition:box-shadow .1s linear;white-space:nowrap}.gforms_edit_form .button:focus,.gforms_edit_form button.primary:focus{outline:0}.gforms_edit_form .button{background-color:#fff;border:1px solid #3e7da6;color:#3e7da6;display:inline-block;height:2.3125rem;padding:.5625rem 1.125rem}.gforms_edit_form .button:hover{background-color:#fff;box-shadow:0 2px 7px rgba(28,31,63,.053);color:#3985b7}.gforms_edit_form .button:focus{background-color:#fff;border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed;color:#3985b7}.gforms_edit_form .button:active{background:#f6f9fc;border:1px solid #3e7da6;color:#3985b7}.gforms_edit_form button.primary{background-color:#3e7da6;border:0;color:#fff;cursor:pointer;height:2.3125rem;padding:.5625rem 1.125rem}.gforms_edit_form button.primary:hover{background:#3985b7;color:#fff}.gforms_edit_form button.primary:focus{background-color:#3e7da6;border:0;box-shadow:0 0 0 2px #bed8ed;color:#fff}.gforms_edit_form button.primary:active{background:#3985b7;border-color:#bed8ed;color:#fff}.gforms_edit_form .gfield_list_icons button{font-size:0}.gforms_edit_form #field_submit{display:flex}.gforms_edit_form #field_submit input{align-self:flex-end}.gforms_edit_form #field_submit .gform-button--primary{background:#3e7da6;border-color:#3e7da6;color:#fff}.gforms_edit_form #field_submit .gform_image_button{background-color:transparent;border:none;border-radius:0;box-shadow:none;height:auto;padding:0;width:auto}.gforms_edit_form #field_submit .gform-button--width-full{justify-content:center;width:100%}#gf_toolbar_buttons_container .update-form{margin:0 .75rem 0 .1875rem}#gf_toolbar_buttons_container .update-form .gform-button__icon{font-size:1.5rem;line-height:0;top:unset;width:24px}#gf_toolbar_buttons_container .update-form.save-in-progress:disabled{background-color:#3e7da6;color:#fff}#gf_toolbar_buttons_container .preview-form{margin:0 .75rem}#gf_toolbar_buttons_container .gform-button--icon-editor{padding:0 8px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes moveOutLeft{0%{margin-left:0}50%{margin-left:-12px}100%{margin-left:-24px}}@keyframes moveInRight{0%{margin-right:12px}100%{margin-right:0}}@keyframes fadeOut{0%{opacity:1}50%{opacity:.5}100%{opacity:0}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInFromHalf{0%{opacity:.75}100%{opacity:1}}html[dir=rtl] #gf_toolbar_buttons_container .update-form{margin:0 .1875rem 0 .75rem}html[dir=rtl] #gf_toolbar_buttons_container .update-form.gform-button--icon-leading .gform-button__icon{margin-left:.5rem;margin-right:unset}html[dir=rtl] #gf_toolbar_buttons_container .preview-form{margin:0 .75rem 0 .1875rem}html[dir=rtl] #gf_toolbar_buttons_container .gform-button--icon-editor{margin:0 .1875rem 0 .75rem}button.panel-block-tabs__toggle{background:0 0;border:1px solid transparent;border-radius:0;border-top-color:#ecedf8;box-shadow:none;box-sizing:border-box;color:#242748;cursor:pointer;display:block;font-size:.8125rem;font-weight:500;line-height:2.8125rem;min-height:3.375rem;overflow:unset;padding:0 0 0 14px;position:relative;text-align:left;transition:.1s background ease-in-out,box-shadow .1s linear;vertical-align:middle;width:100%}a.button-primary.gfbutton,button.button-primary.gfbutton,input.button-primary.gfbutton{border-radius:4px;font-size:12px!important;font-weight:400;letter-spacing:.3pt;margin:10px 0 20px 0}.gform-admin .gform-choice{align-items:center;display:flex;flex-flow:row nowrap;padding:0;position:relative;width:100%}.gform-admin .gform-choice .gform-choice__handle{align-items:center;background:0 0;color:#9092b2;display:flex;font-size:20px;justify-content:center;margin-right:.625rem;width:.588rem}.gform-admin .gform-choice .gform-choice__handle:hover{color:#242748}.gform-admin .gform-choice .gform-choice__selected{-webkit-appearance:none;border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-admin .gform-choice .gform-choice__selected:checked+.gform-choice__selected-label{background:#22a753;border-color:#e1f6ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected-label{align-items:center;background:#9092b2;border:.25rem solid #ecedf8;border-radius:100%;box-sizing:border-box;cursor:pointer;display:inline-flex;flex-basis:26px;font-size:1rem;height:26px;justify-content:center;margin:0;min-width:26px;padding:0;position:relative;transition:border-color .3s ease,background-color .3s ease;width:26px}.gform-admin .gform-choice .gform-choice__selected-label::after{border:2px solid transparent;border-radius:100%;content:"";height:18px;left:-2px;position:absolute;top:-2px;transition:border-color .3s ease;width:18px}.gform-admin .gform-choice .gform-choice__selected-label::before{content:none}.gform-admin .gform-choice .gform-choice__selected-icon{color:#fff;transition:color .3s ease}.gform-admin .gform-choice .gform-choice__input--label{width:calc(100% - 110px)}.gform-admin .gform-choice .gform-choice__input--price,.gform-admin .gform-choice .gform-choice__input--value{display:none}.gform-admin .gform-choice .gform-choice__button--add{margin-left:.3125rem}.gform-admin .gf_browser_chrome .gform-choice__button--add::after,.gform-admin .gf_browser_chrome .gform-choice__button--delete::after{margin-left:-.03125rem}.gform-admin .choice_with_value .gform-choice__input--label{width:calc(50% - 57px)}.gform-admin .choice_with_value .gform-choice__input--value{display:inline-block;width:calc(50% - 58px)}.gform-admin .choice_with_value .gform-choice__button--add{margin-left:.625rem}.gform-admin .choice_with_price .gform-choice__input--label{width:calc(50% - 57px)}.gform-admin .choice_with_price .gform-choice__input--price{display:inline-block;width:calc(50% - 58px)}.gform-admin .choice_with_price .gform-choice__button--add{margin-left:.625rem}html[dir=rtl] .gform-admin .gform-choice__handle{margin-left:.625rem;margin-right:0}html[dir=rtl] .gform-admin .gform-choice .gform-choice__button--add{margin-left:0;margin-right:.3125rem}html[dir=rtl] .gform-admin .gform-choice .gform-choice__selected-label::before{margin-left:0}#field_conditional_logic_container{color:#242748;display:block;font-size:.8125rem;padding-top:10px}#field_conditional_logic_container #field_action_type{width:70px}#field_conditional_logic_container #field_logic_type{width:50px}.conditional_logic_flyout{background:#fff;bottom:0;box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03);box-sizing:border-box;display:flex;flex-direction:column;height:calc(100vh - 5.75rem);left:10px;opacity:0;padding-top:1.25rem;position:absolute;top:0;width:calc(100vw - 270px);z-index:-10}@media (min-width:783px){.conditional_logic_flyout{width:calc(100vw - 306px)}}@media (min-width:960px){.conditional_logic_flyout{width:calc(100vw - 530px)}}@media (min-width:1280px){.conditional_logic_flyout{width:650px}}@media (min-width:960px){.folded.sticky-menu .conditional_logic_flyout{width:calc(100vw - 406px)}}@media (min-width:1280px){.folded.sticky-menu .conditional_logic_flyout{width:auto}}.conditional_logic_flyout__head{padding:0 1.5625rem 1.25rem;position:relative}.conditional_logic_flyout__head::after{background:#ecedf8;bottom:0;content:"";height:.0625rem;left:0;position:absolute;width:100%}.conditional_logic_flyout__title{font-size:.8125rem;font-weight:500;line-height:18px;margin-bottom:12px}.conditional_logic_flyout__desc{font-size:.8125rem;padding-right:1.125rem}.conditional_logic_flyout__action{margin-bottom:22px}.conditional_logic_flyout__action select{margin:0 .5rem}.conditional_logic_flyout__action select:first-child{margin-left:0}.conditional_logic_flyout__body{font-size:.8125rem;overflow-y:auto;padding:1.25rem 1.5625rem}.conditional_logic_flyout__body.panel-block-tabs__body--settings .simplebar-wrapper{height:100%}.conditional_logic_flyout__body.panel-block-tabs__body--settings input[type=text],.conditional_logic_flyout__body.panel-block-tabs__body--settings select{width:auto}.conditional_logic_flyout__body.panel-block-tabs__body--settings .conditional_logic_flyout__rule select:first-child,.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:30%}@media (min-width:1390px){.conditional_logic_flyout__body.panel-block-tabs__body--settings .conditional_logic_flyout__rule select:first-child,.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{width:40%}}.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{margin-right:0}.conditional_logic_flyout__rule{display:flex;flex-direction:row}.conditional_logic_flyout__rule select{margin-right:.75rem}.conditional_logic_flyout__rule input[type=text].gfield_rule_input{width:30%}@media (min-width:1280px){.conditional_logic_flyout__rule input[type=text].gfield_rule_input{flex:1;width:auto}}.conditional_logic_flyout__rule-controls{white-space:nowrap;width:3.75rem}.conditional_logic_flyout__toggle{margin-bottom:22px}.conditional_logic_flyout__toggle_label{font-weight:500}.conditional_logic_flyout__toggle_input{margin-top:5px}.conditional_logic_flyout__toggle_input .gform-field__toggle-switch{background-position:50% 60%;transition:left .25s ease}.conditional_logic_flyout__rule+.conditional_logic_flyout__rule{margin-top:10px}.conditional_logic_flyout .add_field_choice,.conditional_logic_flyout .delete_field_choice{top:.5625rem}.gf_browser_chrome .conditional_logic_flyout .add_field_choice::after,.gf_browser_chrome .conditional_logic_flyout .delete_field_choice::after{margin-left:0}.conditional_logic_flyout .add_field_choice{margin-left:.625rem}.conditional_logic_flyout .delete_field_choice{margin-left:.1875rem;opacity:0;pointer-events:none}.conditional_logic_flyout .delete_field_choice.active{opacity:1;pointer-events:auto}html[dir=rtl] .conditional_logic_flyout .add_field_choice{margin:0 .625rem 0 0}html[dir=rtl] .conditional_logic_flyout .delete_field_choice{margin:0 .375rem 0 0}.conditional-flyout__main-fields{display:none}.conditional-flyout__main-fields.active{display:block}.conditional_logic_flyout_container{overflow:visible}.conditional_logic_flyout_container.anim-in-ready .conditional_logic_flyout{transform:translateX(-98%) translateX(-10px)}.conditional_logic_flyout_container.anim-in-ready.anim-in-active .conditional_logic_flyout{opacity:1;transform:translateX(-100%) translateX(-10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}.conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout{opacity:1;transform:translateX(-100%) translateX(-10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}.conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout .conditional_logic_flyout__body{overflow:hidden}.conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout{opacity:0;transform:translateX(-98%) translateX(-10px)}.conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout .conditional_logic_flyout__body{overflow:hidden}html[dir=rtl] .conditional_logic_flyout{left:auto;right:10px}.conditional_logic_wrapper .conditional_logic_accordion{align-items:center;border:1px solid transparent;border-bottom-color:#ecedf8;border-top-color:#ecedf8;display:flex;flex-direction:row;flex-wrap:wrap;min-height:3.375rem;padding:1.25rem 0;position:relative}.conditional_logic_wrapper .conditional_logic_accordion.active{padding:0}.conditional_logic_wrapper .conditional_logic_accordion.active:hover{background:#f6f9fc}.conditional_logic_wrapper .conditional_logic_accordion.active[focus-within]{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active[focus-within]{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active:focus-within{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active .conditional_logic_accordion__status_indicator{display:inline}.conditional_logic_wrapper .conditional_logic_accordion.active .conditional_logic_accordion__status_indicator .gform-status-indicator-status{bottom:-.0625rem;position:relative}.conditional_logic_wrapper .conditional_logic_accordion__label{font-weight:500;padding:0 0 0 1rem}.conditional_logic_wrapper .conditional_logic_accordion__status_indicator{display:none;margin-left:.625rem}.conditional_logic_wrapper .conditional_logic_accordion__toggle{display:none;margin-left:auto}.conditional_logic_wrapper .conditional_logic_accordion__toggle.active{display:flex;flex:1;min-height:3.375rem}.conditional_logic_wrapper .conditional_logic_accordion__toggle button{align-items:center;background:0 0;border:none;cursor:pointer;display:flex;height:100%;justify-content:flex-end;left:0;outline:0;padding:0 1.125rem 0 0;position:absolute;top:0;width:100%;z-index:1}.conditional_logic_wrapper .conditional_logic_accordion__toggle button:focus .conditional_logic_accordion__toggle_button_icon::before,.conditional_logic_wrapper .conditional_logic_accordion__toggle button:hover .conditional_logic_accordion__toggle_button_icon::before{background-image:url(../../../images/cog-hover.svg)}.conditional_logic_wrapper .conditional_logic_accordion__toggle_button_icon{color:#5b5e80;display:inline-block;font-size:16px;height:16px}.conditional_logic_wrapper .conditional_logic_accordion__toggle_button_icon::before{background-image:url(../../../images/cog.svg);background-position:center;background-repeat:no-repeat;background-size:contain;content:"";display:inline-block;height:16px;width:16px}.conditional_logic_wrapper .conditional_logic_accordion__desc{display:none;padding:1rem 1.625rem .5rem 1rem}.conditional_logic_wrapper .conditional_logic_accordion__desc.active{display:block}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__label{padding:0 1rem 0 0}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__status_indicator{display:none;margin-left:0;margin-right:10px}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__toggle button{padding:0 0 0 1.125rem}button.conditional_logic_flyout__close{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:100%;box-shadow:0 2px 2px rgba(58,58,87,.0596411);color:#3e7da6;cursor:pointer;display:flex;font-family:dashicons;font-size:1.25rem;height:1.625rem;justify-content:center;outline:0;position:absolute;right:25px;top:15px;transition:border-color .2s ease-in-out,box-shadow .2s ease-in-out;width:1.625rem;z-index:5}button.conditional_logic_flyout__close i::before{content:"\f335";font-style:normal}.gf_browser_safari button.conditional_logic_flyout__close i::before{bottom:-1px;position:relative}button.conditional_logic_flyout__close:focus,button.conditional_logic_flyout__close:hover{border-color:#3e7da6}button.conditional_logic_flyout__close:focus_icon,button.conditional_logic_flyout__close:hover_icon{transform:translateY(1px)}html[dir=rtl] .conditional_logic_flyout_container{overflow:visible}html[dir=rtl] .conditional_logic_flyout_container.anim-in-ready .conditional_logic_flyout{transform:translateX(98%) translateX(10px)}html[dir=rtl] .conditional_logic_flyout_container.anim-in-ready.anim-in-active .conditional_logic_flyout{opacity:1;transform:translateX(100%) translateX(10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}html[dir=rtl] .conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout{opacity:1;transform:translateX(100%) translateX(10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}html[dir=rtl] .conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout{opacity:0;transform:translateX(98%) translateX(10px)}html[dir=rtl] .conditional_logic_flyout_container button.conditional_logic_flyout__close{left:1.562rem;right:auto}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__head{text-align:right}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__desc{padding-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__body{text-align:right}html[dir=rtl] .conditional_logic_flyout_container #field_action_type{margin-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__rule select{margin-left:.75rem;margin-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout .add_field_choice{margin-right:.625rem}.gravity-theme.ui-datepicker,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker){background:#fff;border:.0625rem solid #d5d7e9;border-radius:.1875rem;box-shadow:0 .125rem .75rem rgba(28,31,63,.09);color:#242748;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.75rem;font-weight:500;margin-top:.3125rem;padding:1.125rem 1.5rem}.gravity-theme.ui-datepicker .ui-datepicker-header,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header{display:flex;flex-direction:row;justify-content:center;margin-bottom:.3125rem;position:relative;width:100%}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev{align-items:center;color:#9092b2;cursor:pointer;display:flex;font-family:gform-icons-admin!important;font-size:1.5rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:1.875rem;justify-content:center;position:absolute;speak:never;top:-.125rem;transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev:hover{color:#3e7da6}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev{left:-.3125rem}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev::before{content:"\e90c"}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next{right:-.3125rem;transform:rotate(180deg)}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next::before{content:"\e90c"}.gravity-theme.ui-datepicker .ui-datepicker-header select,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select{-webkit-appearance:none;background:0 0;border:0;border-radius:0;box-shadow:none;color:#5b5e80;font-size:.8125rem;font-weight:500;min-height:0;padding:0 1.25rem 0 .5rem}.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-month,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select.ui-datepicker-month{background-image:url(../../../images/chevron-down.svg);background-position:100% .3125rem;background-repeat:no-repeat;background-size:1.125rem 1.125rem;margin-right:.3125rem;padding:0 1.25rem 0 0;-moz-text-align-last:right;text-align-last:right}.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-year,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select.ui-datepicker-year{background-image:url(../../../images/select-date.svg);background-position:100% .375rem;background-repeat:no-repeat;background-size:.875rem .875rem;padding:0 1rem 0 0}.gravity-theme.ui-datepicker .ui-datepicker-calendar th span,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar th span{align-items:center;color:#5b5e80;display:flex;font-size:.75rem;font-weight:500;height:1.875rem;justify-content:center;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar td{font-size:.75rem;height:1.875rem;padding:0;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default{align-items:center;border:.0625rem solid transparent;border-radius:100%;box-shadow:none;color:#242748;display:flex;height:1.875rem;justify-content:center;text-decoration:none;transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:hover{border-color:#d5d7e9;outline:0}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:active,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:active{background:#ecedf8;border-color:#d5d7e9}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default{background:#3e7da6;border-color:#3e7da6;color:#fff}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover{border-color:#3e7da6}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default{color:#9092b2}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default:hover{border-color:transparent}.gform-compact-view-overflow-menu{align-self:center;display:none;margin-left:auto;order:1}.gform-compact-view .gform-compact-view-overflow-menu{display:block}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content select:not([multiple]){background:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%239092B2%22%2F%3E%3C%2Fsvg%3E) no-repeat right .6rem top 55%;background-color:#fff;background-size:1rem 1rem;font-size:.8125rem;line-height:1.6875rem;max-height:2.25rem;min-height:2.25rem;padding:0 2rem 0 .8125rem;width:100%}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content select:not([multiple]){font-size:.875rem;line-height:1.25rem;max-height:none;min-height:0;min-height:initial;padding:.6875rem 2rem .6875rem 1rem}.gform-settings-panel__content .select2-container .select2-selection__rendered{width:auto}.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:200px;width:auto}@media (min-width:960px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:150px}}@media (min-width:1280px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:400px}}@media (min-width:1390px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:460px}}.gform-settings-panel__content .select2-container .select2-selection[aria-expanded=true] .select2-selection__rendered{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiAzLjQxNEwxLjcwNyA3LjcwN0ExIDEgMCAwMS4yOTMgNi4yOTNMNiAuNTg2bDUuNzA3IDUuNzA3YTEgMSAwIDAxLTEuNDE0IDEuNDE0TDYgMy40MTR6IiBmaWxsPSIjQzNDNURCIi8+PC9zdmc+);background-position:100%;background-size:1.5rem}.gform-settings-panel__content .select2-selection{outline:0}.gform-settings-panel__content .select2-container .select2-selection__rendered:hover,.gform-settings-panel__content select:hover{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered:focus,.gform-settings-panel__content select:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered:focus-within,.gform-settings-panel__content select:focus-within{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-search--inline{display:inline-block;margin-bottom:.3125rem}.gform-settings-panel__content .select2-container .select2-search--inline input,.gform-settings-panel__content .select2-container .select2-search--inline input:focus{border:none;box-shadow:none;line-height:1.75rem;padding:0 .5rem;width:auto!important}.gform-settings-panel__content .select2-selection__choice{background-color:#3e7da6;border-radius:2.5rem;color:#fff;display:inline-block;font-size:.875rem;font-weight:600;margin:0 .625rem .3125rem 0;padding:.3125rem .75rem}.gform-settings-panel__content .select2-selection__choice:hover{background-color:#3985b7}.gform-settings-panel__content .select2-selection__choice:hover .select2-selection__choice__remove{color:#3985b7}.gform-settings-panel__content .select2-container .select2-selection__choice__remove{background-color:#ecedf8;border-radius:1rem;color:#3e7da6;float:right;line-height:.85rem;margin-left:.5rem;padding:0 .2rem .1875rem;position:relative;top:.125rem}.gform-settings-field__select--enhanced{display:block;position:relative}.gform-settings-field__select--enhanced .select2-container ul.select2-selection__rendered{padding:.375rem 1rem .0625rem}.gform-settings-field__select--enhanced .select2-container .select2-selection__rendered{box-sizing:border-box;cursor:pointer;display:block;-webkit-user-select:none;-moz-user-select:none;user-select:none}.gform-settings-field__select--enhanced .select2-container--open{z-index:10}.gform-settings-field__select--enhanced .select2-container--above+.select2-container,.gform-settings-field__select--enhanced .select2-container--below+.select2-container{top:100%!important;width:100%!important}.gform-settings-field__select--enhanced .select2-container--above.select2-container--open .select2-selection__rendered,.gform-settings-field__select--enhanced .select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-left-radius:0;border-bottom-right-radius:0}.gform-settings-field__select-enhanced-container .select2-search--hide{display:none}.gform-settings-field__select-enhanced-container .select2-results__options{background:#fff;border:1px solid #9092b2;border-radius:0 0 3px 3px;border-top:none;display:block;margin-bottom:0;max-height:10rem;overflow-y:scroll;padding:0}.gform-settings-field__select-enhanced-container .select2-results__options.select2-results__options--nested{max-height:none;overflow-y:visible}.gform-settings-field__select-enhanced-container .select2-results__options .select2-results__group{display:block;margin-bottom:15px}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option{padding-left:.8125rem;position:relative}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option::before{border:1px solid #3e7da6;border-radius:3px;content:"";display:inline-block;height:1.375rem;margin-right:.75rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.375rem}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option[data-selected=true]{background-color:#fff;border-right:0}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option[data-selected=true]::before{background-color:#3e7da6;background-image:url(../../../images/check.svg);background-position:center;background-repeat:no-repeat}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option--highlighted{background-color:#f6f9fc;border-left:2px solid #3e7da6;border-right:0;padding-left:.6875rem}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option--highlighted::before{background-color:#fff;background-image:url(../../../images/grey-check.svg);background-position:center;background-repeat:no-repeat;border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-settings-field__select-enhanced-container .select2-results__option{border-bottom:1px solid #ecedf8;border-left:2px solid transparent;cursor:pointer;font-size:.875rem;line-height:1.25rem;margin:0;outline:0;padding:.75rem .25rem .75rem .75rem}.gform-settings-field__select-enhanced-container .select2-results__option:hover,.gform-settings-field__select-enhanced-container .select2-results__option[data-selected=true]{background:#f6f9fc;border-left:2px solid #3e7da6}html[dir=rtl] .gf_browser_chrome .gform-settings-field__select--enhanced .select2-container--below+.select2-container{margin-left:-100%}html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option{border-left:0;border-right:2px solid transparent}html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option:hover,html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option[data-selected=true]{border-left:0;border-right:2px solid #3e7da6}@-moz-document url-prefix(){.gform-settings-field__select--enhanced .select2-container--below+.select2-container{margin-top:0}}.gf_editor_error{align-items:center;background-color:#fff;border-left:4px solid #dd301d;box-sizing:border-box;color:#242748;display:flex;font-size:.8125rem;justify-content:space-between;margin:0 0 .3125rem;min-height:3.75rem;opacity:0;padding:.375rem .75rem;position:fixed;width:calc(100% - 20.125rem)}.folded .gf_editor_error{width:calc(100% - 25.375rem)}.gf_editor_error .error_dismiss svg{fill:currentColor;outline:0}.gf_editor_error .error_dismiss:hover{color:#1e1e1e}.gf_editor_error .error_dismiss{background-color:transparent;border:none;color:#6c7781;cursor:pointer;outline:0}.field_setting.error input,.field_setting.error select,.field_setting.error textarea{border:1px solid #dd301d;color:#dd301d}.field_setting.error input:focus,.field_setting.error select:focus,.field_setting.error textarea:focus{padding:0 .75rem}.gforms_edit_form #form_editor_fields_container .wp-core-ui select.disabled,.gforms_edit_form #form_editor_fields_container .wp-core-ui select:disabled,.gforms_edit_form #form_editor_fields_container input.disabled,.gforms_edit_form #form_editor_fields_container input:disabled,.gforms_edit_form #form_editor_fields_container input[type=checkbox].disabled,.gforms_edit_form #form_editor_fields_container input[type=checkbox]:disabled,.gforms_edit_form #form_editor_fields_container input[type=radio].disabled,.gforms_edit_form #form_editor_fields_container input[type=radio]:disabled,.gforms_edit_form #form_editor_fields_container select.disabled,.gforms_edit_form #form_editor_fields_container select:disabled,.gforms_edit_form #form_editor_fields_container textarea.disabled,.gforms_edit_form #form_editor_fields_container textarea:disabled{background-color:#fff;border-color:#9092b2;opacity:1}.gforms_edit_form #form_editor_fields_container .gform_hidden input{border-color:#d5d7e9}.editor-sidebar .panel-block-tabs__body--settings input:disabled,.editor-sidebar .panel-block-tabs__body--settings select:disabled,.editor-sidebar .panel-block-tabs__body--settings textarea:disabled{background-color:#ecedf8;border:1px solid #ecedf8;color:#9092b2;opacity:1;pointer-events:none}.gform-flyout--choices-ui input[type=date],.gform-flyout--choices-ui input[type=datetime-local],.gform-flyout--choices-ui input[type=datetime],.gform-flyout--choices-ui input[type=email],.gform-flyout--choices-ui input[type=month],.gform-flyout--choices-ui input[type=number],.gform-flyout--choices-ui input[type=password],.gform-flyout--choices-ui input[type=search],.gform-flyout--choices-ui input[type=tel],.gform-flyout--choices-ui input[type=text],.gform-flyout--choices-ui input[type=time],.gform-flyout--choices-ui input[type=url],.gform-flyout--choices-ui input[type=week],.panel-block-tabs__body--settings input[type=date],.panel-block-tabs__body--settings input[type=datetime-local],.panel-block-tabs__body--settings input[type=datetime],.panel-block-tabs__body--settings input[type=email],.panel-block-tabs__body--settings input[type=month],.panel-block-tabs__body--settings input[type=number],.panel-block-tabs__body--settings input[type=password],.panel-block-tabs__body--settings input[type=search],.panel-block-tabs__body--settings input[type=tel],.panel-block-tabs__body--settings input[type=text],.panel-block-tabs__body--settings input[type=time],.panel-block-tabs__body--settings input[type=url],.panel-block-tabs__body--settings input[type=week]{padding:0 .75rem}.gform-flyout--choices-ui input,.gform-flyout--choices-ui textarea,.panel-block-tabs__body--settings input,.panel-block-tabs__body--settings textarea{background:#fff;border:1px solid #9092b2;border-radius:3px;box-sizing:border-box;color:#242748;transition:box-shadow .15s ease}.gform-flyout--choices-ui input:focus,.gform-flyout--choices-ui textarea:focus,.panel-block-tabs__body--settings input:focus,.panel-block-tabs__body--settings textarea:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed}.gform-flyout--choices-ui textarea,.panel-block-tabs__body--settings textarea{height:5.3125rem;padding:.5rem .75rem;width:100%}.gform-flyout--choices-ui input[type=text],.panel-block-tabs__body--settings input[type=text]{max-height:2.25rem;min-height:2.25rem;width:100%}.gform-flyout--choices-ui input[type=text]::-moz-placeholder,.panel-block-tabs__body--settings input[type=text]::-moz-placeholder{color:#9092b2}.gform-flyout--choices-ui input[type=text]::placeholder,.panel-block-tabs__body--settings input[type=text]::placeholder{color:#9092b2}.gform-flyout--choices-ui input[type=text] select.small,.gform-flyout--choices-ui input[type=text].small,.panel-block-tabs__body--settings input[type=text] select.small,.panel-block-tabs__body--settings input[type=text].small{width:25%}.gform-flyout--choices-ui input[type=text] select.medium,.gform-flyout--choices-ui input[type=text].medium,.panel-block-tabs__body--settings input[type=text] select.medium,.panel-block-tabs__body--settings input[type=text].medium{width:50%}.gform-flyout--choices-ui input[type=text] select.large,.gform-flyout--choices-ui input[type=text] textarea.textarea,.gform-flyout--choices-ui input[type=text].large,.panel-block-tabs__body--settings input[type=text] select.large,.panel-block-tabs__body--settings input[type=text] textarea.textarea,.panel-block-tabs__body--settings input[type=text].large{width:100%}.gform-flyout--choices-ui .left_label input[type=text].small,.gform-flyout--choices-ui .left_label select.small,.gform-flyout--choices-ui .right_label input[type=text].small,.gform-flyout--choices-ui .right_label select.small,.panel-block-tabs__body--settings .left_label input[type=text].small,.panel-block-tabs__body--settings .left_label select.small,.panel-block-tabs__body--settings .right_label input[type=text].small,.panel-block-tabs__body--settings .right_label select.small{width:15%}.gform-flyout--choices-ui .left_label input[type=text].medium,.gform-flyout--choices-ui .left_label select.medium,.gform-flyout--choices-ui .right_label input[type=text].medium,.gform-flyout--choices-ui .right_label select.medium,.panel-block-tabs__body--settings .left_label input[type=text].medium,.panel-block-tabs__body--settings .left_label select.medium,.panel-block-tabs__body--settings .right_label input[type=text].medium,.panel-block-tabs__body--settings .right_label select.medium{width:35%}.gform-flyout--choices-ui .left_label input[type=text].large,.gform-flyout--choices-ui .left_label select.large,.gform-flyout--choices-ui .right_label input[type=text].large,.gform-flyout--choices-ui .right_label select.large,.gform-flyout--choices-ui textarea.textarea,.panel-block-tabs__body--settings .left_label input[type=text].large,.panel-block-tabs__body--settings .left_label select.large,.panel-block-tabs__body--settings .right_label input[type=text].large,.panel-block-tabs__body--settings .right_label select.large,.panel-block-tabs__body--settings textarea.textarea{width:67%}.gform-flyout--choices-ui select,.panel-block-tabs__body--settings select{background:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%239092B2%22%2F%3E%3C%2Fsvg%3E) no-repeat right .6rem top 55%;background-color:#fff;background-size:16px 16px;border:1px solid #9092b2;border-radius:3px;box-shadow:none;box-sizing:border-box;color:#242748;font-size:.8125rem;line-height:1.6875rem;max-height:2.25rem;min-height:2.25rem;padding:0 2rem 0 .8125rem;width:100%}.gf_browser_gecko .gform-flyout--choices-ui select,.gf_browser_gecko .panel-block-tabs__body--settings select{line-height:2rem}.gform-flyout--choices-ui select:hover,.panel-block-tabs__body--settings select:hover{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-flyout--choices-ui select:focus,.panel-block-tabs__body--settings select:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-flyout--choices-ui input[type=checkbox],.gform-flyout--choices-ui input[type=radio],.panel-block-tabs__body--settings input[type=checkbox],.panel-block-tabs__body--settings input[type=radio]{border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-flyout--choices-ui .field-choice-label,.panel-block-tabs__body--settings .field-choice-label{height:1rem;margin:0 .325rem;position:relative;width:1rem}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio)+label,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio)+label{margin-right:.3rem;outline:0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):focus+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):disabled+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):disabled+label::before{opacity:.6}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::before{background-color:#fff;border:1px solid #9092b2;border-radius:50%;content:"";display:inline-block;height:1.25rem;margin-right:.3rem;top:1.5625rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.25rem}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label:hover::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label:hover::before{background-image:url(../../../images/grey-bullet.svg);background-position:center;background-repeat:no-repeat;border-color:#3985b7;box-shadow:0 0 0 2px #bed8ed;display:inline-block}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::-moz-selection,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::-moz-selection{background:0 0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::selection,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::selection{background:0 0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked:focus+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked:focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked+label::before{background-color:#fff;background-image:url(../../../images/bullet.svg);background-position:center;background-repeat:no-repeat;border-color:#9092b2}.gform-flyout--choices-ui .field-choice-label::before,.panel-block-tabs__body--settings .field-choice-label::before{background:url(../../../images/icon-check-inactive.svg) center center no-repeat;border:0 none;bottom:auto;box-shadow:none;content:"";cursor:pointer;display:inline-block;height:1rem;position:absolute;top:auto;vertical-align:auto;width:1rem}.gform-flyout--choices-ui .field-choice-type:checked+.field-choice-label::before,.panel-block-tabs__body--settings .field-choice-type:checked+.field-choice-label::before{background:url(../../../images/icon-check-active.svg) center center no-repeat}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input)+label,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input)+label{outline:0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):disabled+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):disabled+label::before{opacity:.6}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type):focus+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type):focus+label::before{border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::before{background-color:#fff;border:1px solid #9092b2;border-radius:3px;content:"";display:inline-block;height:1.375rem;margin-inline-end:.375rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.375rem}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label:hover::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label:hover::before{background-image:url(../../../images/grey-check.svg);background-position:center;background-repeat:no-repeat;border-color:#3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::-moz-selection,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::-moz-selection{background:0 0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::selection,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::selection{background:0 0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):checked:not(.field-choice-type--checkbox)+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):checked:not(.field-choice-type--checkbox)+label::before{background-color:#3e7da6;background-image:url(../../../images/check.svg);background-position:center;background-repeat:no-repeat;border-color:#3e7da6}.gform-flyout--choices-ui #field_choices .field-choice-text,.gform-flyout--choices-ui .choice_with_value .field-choice-text,.panel-block-tabs__body--settings #field_choices .field-choice-text,.panel-block-tabs__body--settings .choice_with_value .field-choice-text{flex:1;min-width:1px}.gform-flyout--choices-ui .field-choice-text,.panel-block-tabs__body--settings .field-choice-text{width:80%}.gform-flyout--choices-ui .choice_with_value .field-choice-text+.field-choice-value,.panel-block-tabs__body--settings .choice_with_value .field-choice-text+.field-choice-value{flex:1;min-width:1px}.gform-flyout--choices-ui input:disabled,.gform-flyout--choices-ui select:disabled,.gform-flyout--choices-ui textarea:disabled,.panel-block-tabs__body--settings input:disabled,.panel-block-tabs__body--settings select:disabled,.panel-block-tabs__body--settings textarea:disabled{background-color:#ecedf8;border:1px solid #ecedf8;color:#9092b2;pointer-events:none}html[dir=rtl] .panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type)+label::before{margin-left:.3rem;margin-right:0;margin-right:initial}.gform-settings-panel__content .gform-settings-input__container--with-merge-tag .wp-editor-wrap,.gform-settings-panel__content .gform-settings-input__container--with-merge-tag input[type=text].merge-tag-support,.merge-tag-support{max-width:100%;width:100%}.gfield input[type=checkbox],.gfield input[type=radio]{height:1rem;width:1rem}.search-button .search-button__input{background:#fff;border:1px solid #c3c5db;border-radius:3px;box-sizing:border-box;color:#242748;font-size:.8125rem;margin:1px;padding:.625rem 1.0625rem;padding-right:2.1875rem;width:100%}input.search-button__input::-moz-placeholder{color:#5b5e80}input.search-button__input::placeholder{color:#5b5e80}.search-button .search-button__input:focus{border:1px solid #3985b7;box-shadow:0 2px 1px rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748!important;margin:1px;transition:box-shadow .15s ease}.field-choice-row .field-choice-text[type=text]{border-radius:3px;margin:auto .3125rem}html[dir=rtl] .search-button .search-button__input{padding-left:2.1875rem;padding-right:1.0625rem}.gform-settings-field--multiple-inputs .gform-settings-description,.gform-settings-field--multiple-inputs label{flex-basis:100%}.gform-settings-field--multiple-inputs .gform-settings-input__container{display:inline-flex;flex-direction:column}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append{flex-direction:row;flex-wrap:nowrap}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid{flex-wrap:wrap}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid input{flex:1}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid .gform-settings-validation__error{flex-basis:100%}li .section_label,li.field_setting>label{color:#242748;display:block;font-size:.8125rem;font-weight:400;line-height:1.21875rem;margin-bottom:.7rem}.field_setting--with-merge-tag .section_label,li.field_setting--with-merge-tag>label{margin-right:2rem}html[dir=rtl] .field_setting--with-merge-tag .section_label,html[dir=rtl] li.field_setting--with-merge-tag>label{margin-left:2rem;margin-right:0}.panel-block-tabs__body--settings input[type=checkbox]:checked+label{color:#242748}.panel-block-tabs__body--settings li.field_setting label+div,.panel-block-tabs__body--settings li.field_setting select+div{margin-top:.9375rem}.panel-block-tabs__body--settings li.post_custom_field_setting label+div{margin-top:0}.panel-block-tabs__body--settings div#gform_input_mask input,.panel-block-tabs__body--settings div#gform_input_mask select{margin-top:.5rem}.gforms_edit_form .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#autocomplete_attribute_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#field_input_name_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#next_button_text_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#page_names_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#previous_button_text_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li.post_image_setting label.inline{margin-bottom:.5rem!important}div.push-alert-blue,div.push-alert-gold,div.push-alert-green,div.push-alert-red{display:block!important;font-size:1.1rem;line-height:1.5;margin:30px 0 10px;min-width:800px;padding:10px 6px;text-align:center;visibility:visible!important}div.push-alert-gold{background-color:#fffbcc;border-bottom:1px solid #e6db55;border-top:1px solid #e6db55}div.push-alert-green{background-color:#ecfcde;border-bottom:1px solid #a7c886;border-top:1px solid #a7c886}div.push-alert-blue{background-color:#e2edff;border-bottom:1px solid #d2e0eb;border-top:1px solid #d2e0eb}div.push-alert-red{background-color:#ffe1e1;border-bottom:1px solid #eaaead;border-top:1px solid #eaaead}.gform-admin .gform-spinner{background-image:url(../../../images/spinner.svg);background-position:50% 50%;background-repeat:no-repeat;background-size:contain;display:none;height:1rem;width:1rem}.gform-admin .gform-spinner--active{display:inline-block}.gform-admin .gform-table{border:.0625rem solid #ecedf8;border-collapse:collapse;box-sizing:border-box;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.8125rem;max-width:100%;text-align:left;width:100%}.gform-admin .gform-table *{box-sizing:border-box}.gform-admin .gform-table tr{border-bottom:.0625rem solid #ecedf8}.gform-admin .gform-table th{font-weight:500;padding:.8125rem 1.125rem}.gform-admin .gform-table td{padding:1.25rem 1.125rem}.gform-admin .gform-table p{font-size:.8125rem;margin:0}@media (max-width:960px){.gform-admin .gform-table--responsive thead{border:0;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}}@media (max-width:960px){.gform-admin .gform-table--responsive tbody,.gform-admin .gform-table--responsive td,.gform-admin .gform-table--responsive th,.gform-admin .gform-table--responsive tr{display:block;padding:0;white-space:normal}}@media (max-width:960px){.gform-admin .gform-table--responsive tr{border-bottom:0}}@media (max-width:960px){.gform-admin .gform-table--responsive td,.gform-admin .gform-table--responsive th{border-bottom:1px solid #ecedf8;overflow:hidden;padding:1.25rem 1.125rem;position:relative;vertical-align:top;white-space:normal;width:100%}}@media (max-width:960px){.gform-admin .gform-table--responsive td p{padding-left:1.125rem}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]::before{content:attr(data-header);display:block;float:left;font-weight:500;width:50%}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]>*{clear:right;display:block;float:right;width:50%}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]::after{border-right:1px solid #ecedf8;content:"";display:block;left:0;padding-bottom:200%;position:absolute;top:0;width:50%}}.gform-admin .gform-table--fixed{table-layout:fixed}.gform-admin .gform-table--no-outer-border{border:0}.gform-admin .gform-table--no-outer-border tbody tr:last-child{border-bottom:0}.gform-admin .gform-table--no-outer-border tbody tr:last-child td:last-child{border-bottom:0}html[dir=rtl] .gform-admin .gform-table{text-align:right}.gform-field__toggle,.gform-settings-field__toggle{transition-duration:.2s;transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.gform-field__toggle .gform-settings-description,.gform-settings-field__toggle .gform-settings-description{margin-bottom:.625rem}.gform-field__toggle input[type=checkbox]:focus+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:focus+.gform-field__toggle-container{border-color:#3e7da6}.gform-field__toggle input[type=checkbox]:disabled,.gform-settings-field__toggle input[type=checkbox]:disabled{display:none}.gform-field__toggle input[type=checkbox]:disabled+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:disabled+.gform-field__toggle-container{cursor:not-allowed;opacity:.4;pointer-events:none}.gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container{background:#3e7da6}.gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch,.gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0yLjY2NjcgNC4zOTA1TDYuODYxOS4xOTUzYS42NjY3LjY2NjcgMCAwMS45NDI4Ljk0MjhsLTUuMTM4IDUuMTM4TC4xOTUzIDMuODA0N2EuNjY2Ny42NjY3IDAgMDEuOTQyOC0uOTQyOGwxLjUyODYgMS41Mjg2eiIgZmlsbD0iIzNFN0RBNiIvPjwvc3ZnPg==);background-size:.5rem;left:1.5rem}.gform-field__toggle input[type=checkbox]:checked:focus+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:checked:focus+.gform-field__toggle-container{border:2px solid #bed8ed}.gform-field__toggle input[type=checkbox]:not(:disabled),.gform-settings-field__toggle input[type=checkbox]:not(:disabled){opacity:0!important;position:absolute;z-index:3}.gform-field__toggle .gform-field__toggle-switch,.gform-settings-field__toggle .gform-field__toggle-switch{background:#fff center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjQ3NDkgMi41MjUxYS41ODMzLjU4MzMgMCAwMDAgLjgyNUw0LjEyNDggNWwtMS42NSAxLjY1YS41ODMzLjU4MzMgMCAxMC44MjUuODI0OWwxLjY1LTEuNjUgMS42NDk5IDEuNjVhLjU4MzMuNTgzMyAwIDEwLjgyNS0uODI1TDUuNzc0NiA1bDEuNjUtMS42NWEuNTgzMy41ODMzIDAgMTAtLjgyNS0uODI0OWwtMS42NSAxLjY1LTEuNjQ5OS0xLjY1YS41ODMzLjU4MzMgMCAwMC0uODI1IDB6IiBmaWxsPSIjOTA5MkIyIi8+PC9zdmc+);background-size:.625rem;border-radius:50%;box-shadow:0 1px 4px rgba(24,24,72,.123698);display:block;height:1.125rem;left:0;position:relative;transition:all .25s ease;transition-duration:.2s;transition-property:background,left;transition-timing-function:cubic-bezier(0.4,0,0.2,1);width:1.125rem}html[dir=rtl] .gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch,html[dir=rtl] .gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch{left:-1.5rem}.gform-field__toggle-container{background:#9092b2;border:2px solid transparent;border-radius:15px;box-shadow:inset 0 1px 2px rgba(90,97,105,.15);cursor:pointer;display:inline-block;height:1.125rem;margin-right:.5rem;padding:.1275rem;position:relative;transition:all .25s ease;transition-duration:.2s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.1,1);width:2.625rem}.gforms_edit_form .gform-field__toggle-container{bottom:-.1rem;margin-bottom:0;margin-right:.1rem}.gform-form-toolbar{align-items:center;background:#fff;box-sizing:border-box;color:#1c1f3f;display:flex;font-size:.8125rem;-webkit-font-smoothing:antialiased;justify-content:start;margin:0;max-height:4rem;min-height:4rem;padding:0 .5rem 0 0;width:100%;z-index:99}.gform-form-toolbar>li{margin-bottom:0;padding-top:.5625rem}.gform-form-toolbar a:focus{box-shadow:none;outline:0}.gform-form-toolbar--fixed{position:fixed;z-index:3}.gform-form-toolbar__container{align-items:center;display:flex;flex-wrap:wrap;margin-left:auto;margin-right:auto;padding:0 1.5rem;width:69.5rem}.gform-form-toolbar__divider{background:#ecedf8;display:inline-block;height:100%;margin:0 .8125rem;width:1px}.gform-form-toolbar__menu{border-left:1px solid #ecedf8;border-right:1px solid #ecedf8;display:flex;height:4rem;padding:0 .65rem}.gform-form-toolbar__menu li>a:hover{border-bottom-color:#3e7da6}.gform-form-toolbar__menu>li{display:inline-block;margin:0;position:relative}.gform-form-toolbar__menu>li::after{bottom:0;content:"";height:.25rem;left:0;margin-bottom:-.25rem;position:absolute;width:100%}.gform-form-toolbar__menu>li>a{align-items:center;color:#5b5e80;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:500;height:4rem;padding:0 .8125rem 0 .8125rem;position:relative;text-decoration:none;transition:all .2s ease}.gform-form-toolbar__menu>li>a::after{background:0 0;bottom:0;content:"";height:.1875rem;left:.375rem;position:absolute;transition:all .2s ease;width:calc(100% - .75rem)}.gform-form-toolbar__menu>li>a.gf_toolbar_active,.gform-form-toolbar__menu>li>a.submenu-open,.gform-form-toolbar__menu>li>a:focus,.gform-form-toolbar__menu>li>a:hover{color:#242748}.gform-form-toolbar__menu>li>a.gf_toolbar_active::after,.gform-form-toolbar__menu>li>a.submenu-open::after,.gform-form-toolbar__menu>li>a:focus::after,.gform-form-toolbar__menu>li>a:hover::after{background:#3e7da6}.gform-form-toolbar__menu>li>a.gf-topmenu-dynamic svg{fill:currentColor}.gform-form-toolbar__menu>li>a.gf-topmenu-dynamic{border-bottom:none;line-height:1px;padding-top:13px}.gform-form-toolbar__menu .gform-form-toolbar__submenu{margin:.1875rem 0 0 .3125rem;min-width:14.688rem;opacity:0;position:absolute;transition:.2s all;visibility:hidden;z-index:100}.gform-form-toolbar__menu .gform-form-toolbar__submenu.open{opacity:1;visibility:visible}.gform-form-toolbar__menu .gform-form-toolbar__submenu>div{background:#fff;border:.0625rem solid #d5d7e9;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);box-sizing:border-box;max-height:calc(100vh - 10rem);overflow-y:auto}.gform-form-toolbar__menu .gform-form-toolbar__submenu li{display:block;margin:0}.gform-form-toolbar__icon{align-content:center;display:inline-flex;font-size:1.375rem;justify-content:center;margin-right:.5rem;text-align:center;width:1.25rem}.gform-form-toolbar__icon svg{max-width:1.25rem}.gf_toolbar_buttons_container{align-items:center;display:flex;flex:auto;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;justify-content:flex-end;padding-inline-start:0.65rem;text-align:right}.form_switcher_arrow{margin-left:.5rem}.gform-form-toolbar__logo{display:none}.gform-form-toolbar__logo a{align-items:center;background:#242748;display:flex;height:3.813rem;justify-content:center;transition:all ease-in-out 190ms;width:3.813rem}.gform-form-toolbar__logo a:hover{background:#0f3d6c}.gform-form-toolbar__logo a:hover svg path.g{fill:#0f3d6c}.gform-form-toolbar__form-title{margin-right:0;padding:0 .9375rem 0 .1875rem;width:13.75rem}@media (min-width:900px){.gform-form-toolbar__form-title.gform-dropdown--medium-title{width:18.75rem}}@media (min-width:990px){.gform-form-toolbar__form-title.gform-dropdown--long-title{width:25rem}}.gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor{padding:0 .9375rem}@media (min-width:900px){.gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor.gform-dropdown--long-title{width:25rem}}html[dir=rtl] .gform-form-toolbar__form-title{padding:0 0 0 .9375rem}html[dir=rtl] .gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor{padding:0 .9375rem}.gform-form-toolbar__form-id{font-size:.8125rem;margin-left:auto}.row-actions .gform-form-toolbar__submenu{display:none;position:absolute;z-index:5}.row-actions .gform-form-toolbar__submenu>div{background:#fff;border:.0625rem solid #d5d7e9;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);box-sizing:border-box;max-height:calc(100vh - 35rem);min-height:6.25rem;min-width:14.688rem;overflow-y:auto}.row-actions .gform-form-toolbar__submenu li{margin:0}.gform-form-toolbar__submenu a,.row-actions .gform-form-toolbar__submenu a{align-items:center;background:0 0;border:0;border-left:.1875rem solid transparent;box-shadow:none;color:#242748;cursor:pointer;display:flex;outline:0;overflow:hidden;padding:.6875rem 1rem .6875rem .875rem;text-align:left;text-decoration:none;text-overflow:ellipsis;transition:all .15s ease}.gform-form-toolbar__submenu a:focus,.gform-form-toolbar__submenu a:hover,.row-actions .gform-form-toolbar__submenu a:focus,.row-actions .gform-form-toolbar__submenu a:hover{background:#f6f9fc;border-left-color:#3e7da6}html[dir=rtl] .gform-form-toolbar__submenu a,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a{border-left:0;border-right:.1875rem solid transparent;text-align:right}html[dir=rtl] .gform-form-toolbar__submenu a:focus,html[dir=rtl] .gform-form-toolbar__submenu a:hover,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a:focus,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a:hover{border-right-color:#3e7da6}.gf_tooltip{align-items:center;background:#ecedf8;border:none;border-radius:50%;box-sizing:border-box;color:#242748;display:inline-flex;font-size:.5rem;height:1rem;justify-content:center;margin-left:.25rem;position:relative;text-decoration:none;vertical-align:middle;width:1rem}.gf_tooltip::before{border:.0625rem solid transparent;border-radius:100%;content:" ";display:block;height:.875rem;left:0;position:absolute;top:0;transition:border-color .2s ease-in-out,box-shadow .2s ease-in-out;transition-delay:0.1s;width:.875rem}.gf_tooltip:focus{outline:0}.gf_tooltip:active,.gf_tooltip:hover{box-shadow:0 2px 2px rgba(58,58,87,.0796)}.gf_tooltip:active::before,.gf_tooltip:hover::before{border-color:#3e7da6;box-shadow:0 0 0 1px #bed8ed}.ui-tooltip.ui-widget-content{background:rgba(28,31,63,.9);border-radius:5px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);color:#fff;font:400 0.8125rem "Open Sans",sans-serif;line-height:1.538461538em;max-width:13.125rem;mix-blend-mode:normal;padding:.625rem 1rem;position:absolute;text-align:center;z-index:1000}.ui-tooltip.ui-widget-content a{color:#fff}.ui-tooltip.ui-widget-content h6,.ui-tooltip.ui-widget-content strong{display:block;font:inherit;font-weight:600;margin:0}.ui-tooltip.ui-widget-content.arrow-bottom::after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid rgba(28,31,63,.9);bottom:-6px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);content:"";margin-left:-3px;position:absolute}.ui-tooltip.ui-widget-content.arrow-left::after{border-bottom:6px solid transparent;border-right:6px solid rgba(28,31,63,.9);border-top:6px solid transparent;box-shadow:0 4px 10px rgba(18,25,97,.0779552);content:"";left:-6px;margin-top:-6px;position:absolute;top:50%}html[dir=rtl] .gf_tooltip{margin-left:0;margin-right:.25rem}div.delete-alert{margin-bottom:30px;padding:20px 0 20px 20px}div.gf_delete_notice{margin-bottom:10px}div.gforms_green_alert,div.gforms_help_alert,div.gforms_red_alert{background-color:#fff;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;line-height:1.6;margin:12px 24px -6px;padding:11px 15px;position:relative;text-align:left}div.gforms_help_alert{border-left:4px solid #ffba00}html[dir=rtl] div.gforms_help_alert{border-left:none!important;border-right:4px solid #ffba00}div.gforms_help_alert i.fa{color:#d4662c}div.gforms_red_alert{border-left:4px solid #dd3d36}html[dir=rtl] div.gforms_red_alert{border-left:none!important;border-right:4px solid #dd3d36}div.gforms_red_alert i.fa{color:#dd3d36}div.gforms_green_alert{border-left:4px solid #7ad03a}html[dir=rtl] div.gforms_green_alert{border-left:none!important;border-right:4px solid #7ad03a}div.gforms_green_alert i.fa{color:#7ad03a}div.delete-alert input.button{background:#9e0b0f;border:1px solid #9e0b0f;box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);color:#fff;text-shadow:none!important}div.delete-alert input.button:active,div.delete-alert input.button:hover{background:#dd3d36;border:1px solid #dd3d36;box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);color:#fff;text-shadow:none!important}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}* html .ui-helper-clearfix{height:1%}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-tabs{padding:.2em;zoom:1}.ui-tabs[style]{border:1px solid #c2d7ef!important;margin:6px 0 0!important;swidth:438px!important}.ui-tabs .ui-tabs-nav{list-style:none;position:relative;padding:.2em .2em 0 0}.ui-tabs .ui-tabs-nav li{position:relative;float:left;border-bottom-width:0!important;margin:0 .2em -1px 0;padding:0;text-align:center}.ui-tabs .ui-tabs-nav li a{display:block;text-decoration:none;padding:.5em 1em;text-align:center;font-size:12px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{padding-bottom:1px;border-bottom-width:0}.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a,.ui-tabs .ui-tabs-nav li.ui-tabs-selected a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{padding:1em 1.4em;display:block;border-width:0;background:0 0}.ui-tabs .ui-tabs-hide{display:none!important}@font-face{font-family:gravityfont;src:url('../../../fonts/gravityfont.eot')}@font-face{font-family:gravityfont;src:url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff');font-weight:400;font-style:normal}[class*=" gficon-"],[class^=gficon-]{font-family:gravityfont;speak:none;font-style:normal;font-weight:400;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gficon-gravityforms-locked-icon:before{content:"\e627"}.gficon-gravityforms-logo-icon:before{content:"\e60c"}.gficon-gravitycharge-logo-icon:before{content:"\e600"}.gficon-gravityforms-rocket-icon:before{content:"\e614"}.gficon-gravityforms-form-icon:before{content:"\e60b"}.gficon-gravityforms-css-alt-con:before{content:"\e60e"}.gficon-gravityforms-markup-icon:before{content:"\e60d"}.gficon-gravityforms-key-icon:before{content:"\e610"}.gficon-gravityforms-upload-icon:before{content:"\e612"}.gficon-gravityforms-download-icon:before{content:"\e611"}.gficon-gravityforms-filter-icon:before{content:"\e61d"}.gficon-gravityforms-settings-icon:before{content:"\e615"}.gficon-gravityforms-eye-icon:before{content:"\e61c"}.gficon-gravityforms-star-icon:before{content:"\e61e"}.gficon-gravityforms-cross-icon:before{content:"\e61f"}.gficon-gravityforms-tick-icon:before{content:"\e620"}.gficon-gravityforms-credit-icon:before{content:"\e621"}.gficon-gravityforms-file-icon:before{content:"\e622"}.gficon-gravityforms-search-icon:before{content:"\e623"}.gficon-gravityforms-bullet-icon:before{content:"\e624"}.gficon-gravityforms-bug-icon:before{content:"\e619"}.gficon-gravityforms-docs-icon:before{content:"\e61a"}.gficon-gravityforms-vcard-icon:before{content:"\e61b"}.gficon-gravityforms-info-icon:before{content:"\e616"}.gficon-gravityforms-favorite-icon:before{content:"\e617"}.gficon-gravityforms-chat-icon:before{content:"\e618"}.gficon-gravityforms-zero-icon:before{content:"\e601"}.gficon-gravityforms-nine-icon:before{content:"\e602"}.gficon-gravityforms-eight-icon:before{content:"\e603"}.gficon-gravityforms-seven-icon:before{content:"\e604"}.gficon-gravityforms-six-icon:before{content:"\e605"}.gficon-gravityforms-five-icon:before{content:"\e606"}.gficon-gravityforms-four-icon:before{content:"\e607"}.gficon-gravityforms-three-con:before{content:"\e608"}.gficon-gravityforms-two-icon:before{content:"\e609"}.gficon-gravityforms-one-icon:before{content:"\e60a"}.gficon-gravityforms-css-icon:before{content:"\e60f"}.gficon-gravityforms-dollar-icon:before{content:"\e613"}.gficon-gravityforms-slideoff-icon:before{content:"\e625"}.gficon-gravityforms-slideon-icon:before{content:"\e626"}.gficon-settings-cog:before{content:"\e634"}.gficon-gravityforms-spinner-icon:before{content:"\e628"}.gficon-tick:before{content:"\e629"}.gficon-cross:before{content:"\e62a"}.gficon-search:before{content:"\e62b"}.gficon-pencil:before{content:"\e62c"}.gficon-exclamation:before{content:"\e635"}.gficon-forbid:before{content:"\e636"}.gficon-star:before{content:"\e639"}.gficon-star-hollow:before{content:"\e63a"}.gficon-trash:before{content:"\e62d"}.gficon-arrow-up:before{content:"\e62e"}.gficon-arrow-down:before{content:"\e62f"}.gficon-arrow-left:before{content:"\e630"}.gficon-arrow-right:before{content:"\e631"}.gficon-add:before{content:"\e632"}.gficon-subtract:before{content:"\e633"}.gficon-close:before{content:"\e63b"}.gficon-support:before{content:"\e63c"}.gficon-send:before{content:"\e63d"}.gficon-star1:before{content:"\e639";color:#ff9800;font-size:1.2em;margin-top:.188em}.gficon-star0:before{content:"\e63a";color:#ccc;font-size:1.2em;margin-top:.188em}.gfield_creditcard_warning_message .gficon-forbid{color:#9c0f17!important;margin-right:1em}.gficon-2x{font-size:2em}.gficon-3x{font-size:3em}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.gficon-spin{display:inline-block;animation:rotation 2s linear infinite;-webkit-animation:rotation 2s linear infinite;-moz-animation:rotation 2s linear infinite;text-shadow:0 0 2px rgba(255,255,255,.2);margin-left:2px}.gficon-gravityforms-spinner-icon.gficon-spin{color:#d54e21;font-size:1.5em}html[dir=rtl] .gform_wrapper *,html[dir=rtl] .gform_wrapper .gform_body,html[dir=rtl] .gform_wrapper .gform_footer,html[dir=rtl] .gform_wrapper button,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper form,html[dir=rtl] .gform_wrapper h3.gform_title,html[dir=rtl] .gform_wrapper input[type=button],html[dir=rtl] .gform_wrapper input[type=email],html[dir=rtl] .gform_wrapper input[type=password],html[dir=rtl] .gform_wrapper input[type=submit],html[dir=rtl] .gform_wrapper input[type=tel],html[dir=rtl] .gform_wrapper input[type=text],html[dir=rtl] .gform_wrapper input[type=url],html[dir=rtl] .gform_wrapper select,html[dir=rtl] .gform_wrapper span.gform_description,html[dir=rtl] .gform_wrapper textarea,html[dir=rtl] .gform_wrapper ul li,html[dir=rtl] .gform_wrapper ul li.gfield,html[dir=rtl] .gform_wrapper ul li.gfield input,html[dir=rtl] .gform_wrapper ul li.gfield select,html[dir=rtl] .gform_wrapper ul li.gfield textarea,html[dir=rtl] .gform_wrapper ul li.gfield.gfield_html{text-align:right;direction:rtl}html[dir=rtl] .gform_wrapper ul,html[dir=rtl] .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}html[dir=rtl] .gform_wrapper table.gfield_list td,html[dir=rtl] .gform_wrapper table.gfield_list th{padding-left:16px;padding-right:0}.gform_legacy_markup_wrapper table.gfield_list tbody td.gfield_list_icons,.gform_legacy_markup_wrapper table.gfield_list thead tr td:last-child{padding:0 4px 0 0!important}html[dir=rtl] .gform_wrapper.gf_browser_gecko .left_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .right_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl!important}html[dir=rtl] .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}html[dir=rtl] .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer,body .gform_wrapper.gf_rtl_wrapper .gform_heading,body .gform_wrapper.gf_rtl_wrapper button,body .gform_wrapper.gf_rtl_wrapper div.validation_error,body .gform_wrapper.gf_rtl_wrapper h3.gform_title,body .gform_wrapper.gf_rtl_wrapper input[type=button],body .gform_wrapper.gf_rtl_wrapper input[type=email],body .gform_wrapper.gf_rtl_wrapper input[type=password],body .gform_wrapper.gf_rtl_wrapper input[type=submit],body .gform_wrapper.gf_rtl_wrapper input[type=tel],body .gform_wrapper.gf_rtl_wrapper input[type=text],body .gform_wrapper.gf_rtl_wrapper input[type=url],body .gform_wrapper.gf_rtl_wrapper select,body .gform_wrapper.gf_rtl_wrapper span.gform_description,body .gform_wrapper.gf_rtl_wrapper textarea,body .gform_wrapper.gf_rtl_wrapper ul li,body .gform_wrapper.gf_rtl_wrapper ul li.gfield,body .gform_wrapper.gf_rtl_wrapper ul li.gfield input,body .gform_wrapper.gf_rtl_wrapper ul li.gfield select,body .gform_wrapper.gf_rtl_wrapper ul li.gfield textarea,body .gform_wrapper.gf_rtl_wrapper ul li.gfield.gfield_html,body.rtl .gform_wrapper *,body.rtl .gform_wrapper .gform_body,body.rtl .gform_wrapper .gform_footer,body.rtl .gform_wrapper button,body.rtl .gform_wrapper div.validation_error,body.rtl .gform_wrapper form,body.rtl .gform_wrapper h3.gform_title,body.rtl .gform_wrapper input[type=button],body.rtl .gform_wrapper input[type=email],body.rtl .gform_wrapper input[type=password],body.rtl .gform_wrapper input[type=submit],body.rtl .gform_wrapper input[type=tel],body.rtl .gform_wrapper input[type=text],body.rtl .gform_wrapper input[type=url],body.rtl .gform_wrapper select,body.rtl .gform_wrapper span.gform_description,body.rtl .gform_wrapper textarea,body.rtl .gform_wrapper ul li,body.rtl .gform_wrapper ul li.gfield,body.rtl .gform_wrapper ul li.gfield input,body.rtl .gform_wrapper ul li.gfield select,body.rtl .gform_wrapper ul li.gfield textarea,body.rtl .gform_wrapper ul li.gfield.gfield_html{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper ul,body .gform_wrapper.gf_rtl_wrapper ul li,body.rtl .gform_wrapper ul,body.rtl .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input,body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input[type=checkbox],body .gform_wrapper.gf_rtl_wrapper .gfield_radio li input[type=radio],body.rtl .gform_wrapper .gfield_checkbox li input,body.rtl .gform_wrapper .gfield_checkbox li input[type=checkbox],body.rtl .gform_wrapper .gfield_radio li input[type=radio]{float:right!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0 24px 0 0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html blockquote,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html p,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html span,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table td,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table th{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list td,body .gform_wrapper.gf_rtl_wrapper table.gfield_list th,body.rtl .gform_wrapper table.gfield_list td,body.rtl .gform_wrapper table.gfield_list th{padding:0!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list thead th{text-align:right!important}body .gform_wrapper.gf_rtl_wrapper table input,body.rtl .gform_wrapper table input{float:right!important}body .gform_wrapper.gf_rtl_wrapper .recaptchatable #recaptcha_response_field,body.rtl .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi ul.chosen-choices li.search-choice,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container ul.chosen-choices li.search-field,body.rtl .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .instruction,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .instruction{margin-right:31%;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) div.ginput_complex,body.rtl .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:32%;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description{padding:0}body.rtl .left_label .gfield_html_formatted,body.rtl .right_label .gfield_html_formatted{margin-left:0;margin-right:30%}body .gform_wrapper.gf_rtl_wrapper .gform_footer.left_label,body .gform_wrapper.gf_rtl_wrapper .gform_footer.right_label,body.rtl .gform_wrapper .gform_footer.left_label,body.rtl .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}body .gform_wrapper.gf_rtl_wrapper .ginput_right select,body.rtl .gform_wrapper .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_right select{margin-right:2px}body .gform_wrapper.gf_rtl_wrapper .ginput_container_address .ginput_right select,body.rtl .gform_wrapper .ginput_container_address .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_container_address .ginput_right select{margin-right:0}body .gform_wrapper.gf_rtl_wrapper img.ui-datepicker-trigger,body.rtl .gform_wrapper img.ui-datepicker-trigger,html[dir=rtl] .gform_wrapper img.ui-datepicker-trigger{margin:4px 2px 0 0}body .gform_wrapper.gf_rtl_wrapper .gf_progressbar_percentage span,body.rtl .gform_wrapper .gf_progressbar_percentage span,html[dir=rtl] .gform_wrapper .gf_progressbar_percentage span{display:block;width:auto;float:left!important}body .gform_wrapper.gf_rtl_wrapper .gf_step span.gf_step_number,body.rtl .gform_wrapper .gf_step span.gf_step_number,html[dir=rtl] .gform_wrapper .gf_step span.gf_step_number{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .gf_step,body.rtl .gform_wrapper .gf_step,html[dir=rtl] .gform_wrapper .gf_step{margin:0 0 10px 10px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container .chosen-results li.active-result,body.rtl .gform_wrapper .chosen-container .chosen-results li.active-result,html[dir=rtl] .gform_wrapper .chosen-container .chosen-results li.active-result{padding-right:24px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,body.rtl .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,html[dir=rtl] .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close{right:5px!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span{display:block;margin-right:19px!important}html[dir=rtl] div#preview_hdr span.actionlinks{float:left!important;text-align:left!important}html[dir=rtl] div#preview_hdr div:first-child{background-position:right center!important;padding-left:10px!important;padding-right:10px!important}html[dir=rtl] .gform_wrapper .gf_invisible,html[dir=rtl] .gform_wrapper .gfield_visibility_hidden{left:auto;right:-9999px}html[dir=rtl] .gform_wrapper .gf_progressbar_percentage{border-radius:4px 20px 20px 4px}html[dir=rtl] body.wp-admin *{direction:rtl!important}html[dir=rtl] body.wp-admin li.gf_form_switcher{display:block;position:relative;right:0}html[dir=rtl] body.wp-admin ul#gf_form_toolbar_links{padding:0 6px 0 0!important}html[dir=rtl] body.wp-admin .top_label .gfield_label{margin:8px 6px 4px 0}html[dir=rtl] body.wp-admin .gfield_checkbox li input,html[dir=rtl] body.wp-admin .gfield_checkbox li input[type=checkbox],html[dir=rtl] body.wp-admin .gfield_radio li input[type=radio]{float:right!important;margin-left:2px!important;margin-right:1px!important}html[dir=rtl] body.wp-admin .ginput_complex .ginput_left,html[dir=rtl] body.wp-admin .ginput_complex .ginput_right{float:right!important}html[dir=rtl] body.wp-admin .gfield_time_hour,html[dir=rtl] body.wp-admin .gfield_time_minute{float:right}html[dir=rtl] body.wp-admin .gfield_date_day,html[dir=rtl] body.wp-admin .gfield_date_month,html[dir=rtl] body.wp-admin .gfield_date_year{float:right!important}html[dir=rtl] body.wp-admin img#gfield_input_datepicker_icon{left:-4px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions{background-position:0 -1995px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions span{margin-left:300px}html[dir=rtl] body.wp-admin ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:340px;top:40px;background-position:0 -1880px}html[dir=rtl] body.wp-admin .gform_new_form_modal_container .setting-row label{float:right!important}html[dir=rtl] body.wp-admin .gform_new_form_modal_container div.submit-row input#save_new_form.button{float:right!important}html[dir=rtl] body.wp-admin #TB_ajaxWindowTitle{float:right!important}html[dir=rtl] body.wp-admin #TB_closeAjaxWindow{float:left!important}html[dir=rtl] body.wp-admin .gform_tabs li.active a{position:relative;right:-1px;padding:6px 10px 6px 10px!important}html[dir=rtl] body.wp-admin a.tooltip,html[dir=rtl] body.wp-admin a.tooltip_bottomleft,html[dir=rtl] body.wp-admin a.tooltip_left{overflow:hidden}html[dir=rtl] body.wp-admin h2.gf_admin_page_title span.gf_admin_page_subtitle span.gf_admin_page_formid{margin:0 0 0 8px!important}html[dir=rtl] body.wp-admin p.submit input.gf_settings_savebutton{float:right}html[dir=rtl] body.wp-admin p[style]{text-align:right!important}html[dir=rtl] body.wp-admin div.delete-alert{padding:0 20px 20px 20px}html[dir=rtl] .gform_wrapper span.ginput_left,html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield.gfield_error{padding-right:16px!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container .ginput_left{padding-left:.9804%;padding-right:.9804%}html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-right:0!important;padding-right:0;margin-left:-4px}html[dir=rtl] div.ginput_container_name span{padding-right:0;padding-left:16px;margin-right:0;margin-left:-4px}html[dir=rtl] div#preview_hdr span.toggle_helpers{float:left}html[dir=rtl] div#preview_hdr span.toggle_helpers input,html[dir=rtl] div#preview_hdr span.toggle_helpers label{display:-moz-inline-stack;display:inline-block}html[dir=rtl] div#preview_note{border-right:4px solid #ffba00;border-left:none!important}html[dir=rtl] .gform_wrapper span.gfield_required{margin-left:0;margin-right:4px}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{padding:0 24px 14px 0}html[dir=rtl] .gform_wrapper .gfield_time_hour i{float:left}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{background-position:100% top}html[dir=rtl] div.form_saved_message,html[dir=rtl] div.form_saved_message *{text-align:center!important}html[dir=rtl] .gform_wrapper .gfield_checkbox li label,html[dir=rtl] .gform_wrapper .gfield_radio li label{margin:0 4px 0 0}html[dir=rtl] .gform_wrapper:not(.gf_browser_gecko):not(.gf_browser_ie) select{background-position:3.5% center}html[dir=rtl] .gform_wrapper .gform_fileupload_multifile .gform_drop_area,html[dir=rtl] .gform_wrapper span.gform_drop_instructions{text-align:center}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper div.validation_error{text-align:center}.rtl #gform_fields.left_label fieldset.gfield,.rtl #gform_fields.right_label fieldset.gfield{margin:0;padding:0}.rtl #gform_fields.right_label legend.gfield_label{right:0;text-align:left}.rtl #gform_fields:not(.top_label) .ginput_container.ginput_single_email{margin-right:0}.rtl #gform_fields.left_label fieldset .gfield_description,.rtl #gform_fields.left_label fieldset .ginput_container:not(.ginput_container_time){width:auto}.rtl #gform_fields.right_label fieldset .gfield_description,.rtl #gform_fields.right_label fieldset .ginput_container:not(.ginput_container_time){width:70%;margin-right:30%}.rtl #gform_fields.left_label fieldset .gfield_description,.rtl #gform_fields.left_label fieldset .ginput_container:not(.ginput_container_time){margin-right:32.5%}.rtl #gform_fields.left_label legend.gfield_label,.rtl #gform_fields.right_label legend.gfield_label{width:30%;padding-left:0;padding-right:1em}.rtl #gform_fields.left_label legend.gfield_label{width:30%;right:0}html[dir=rtl] .gform_wrapper span.ginput_price{float:right}@media only screen and (max-width:761px),(min-device-width:768px) and (max-device-width:1024px){html[dir=rtl] .gform_wrapper table.gfield_list{border:0}html[dir=rtl] .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before{margin:8px 1px 3px 0}html[dir=rtl] .gform_wrapper table.gfield_list td{clear:both}html[dir=rtl] .gform_wrapper table.gfield_list td:last-child(2){padding-bottom:4px!important}html[dir=rtl] .gform_wrapper table.gfield_list td.gfield_list_icons{vertical-align:middle;padding:0 4px 4px 0!important}}@media only screen and (min-width:641px){html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description,html[dir=rtl] .gform_wrapper ul:not(.top_label) .ginput_container:not(.ginput_container_time){width:70%;margin-left:0}html[dir=rtl] .gform_wrapper .ul:not(.top_label) .instruction,html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{margin-right:30%;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:30%;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{padding:10px 0 10px 0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%}html[dir=rtl] .gform_wrapper .gform_footer.left_label,html[dir=rtl] .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0}html[dir=rtl] .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] .gform_wrapper .gform_page_footer a.gform_save_link{margin-right:16px}html[dir=rtl] .gform_wrapper table input{float:right!important}html[dir=rtl] .gform_wrapper .left_label li.gfield .gfield_password_strength,html[dir=rtl] .gform_wrapper .right_label li.gfield .gfield_password_strength{margin-left:0;margin-right:29%;width:70%;text-align:center!important}.gform_wrapper .ginput_complex .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_left{margin:0 0 0 -4px}.gform_wrapper .ginput_complex.ginput_container_address .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left{margin-left:0}html[dir=rtl] .gform_wrapper ul li.gf_right_half{margin-left:0}html[dir=rtl] .gform_wrapper .gform_footer input.button,html[dir=rtl] .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .gform_wrapper .gform_page_footer input.button,html[dir=rtl] .gform_wrapper .gform_page_footer input[type=submit]{margin:0 0 0 16px}}@media only screen and (max-width:641px){html[dir=rtl] body .gform_wrapper .gform_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] body .gform_wrapper .gform_page_footer,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_next_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_previous_button,html[dir=rtl] body .gform_wrapper .gform_page_footer a.gform_save_link{text-align:center!important}html[dir=rtl] div.ginput_container_name span{padding-left:0}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:0!important}html[dir=rtl] .gform_footer,html[dir=rtl] .gform_page_footer{padding-left:16px}html[dir=rtl] .gform_wrapper{padding-right:16px}}body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .left_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .right_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .top_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .left_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .right_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl}body.forms_page_gf_help{background-color:#f6f9fc}body.forms_page_gf_help #wpcontent{overflow:hidden;padding-left:0}html[dir=rtl] body.forms_page_gf_help #wpcontent{padding-right:0}body.forms_page_gf_help div#wpfooter{display:none}.forms_page_gf_help #hexagons-bg-orange{height:392px;left:-159px;position:absolute;top:-108px;transform:rotate(-101.53deg);width:376px;z-index:-1}.forms_page_gf_help #hexagons-bg-dark-blue{height:286px;position:absolute;right:-164px;top:129px;transform:rotate(-157.53deg);width:308px;z-index:-1}.forms_page_gf_help #hexagons-bg-light-blue{bottom:0;left:-234px;position:absolute;transform:rotate(0);width:351px;z-index:-1}.gf_help_content,.gf_help_content p{color:#242748;font-size:1.125rem;line-height:2rem}.gf_help_content a{color:#3e7da6;text-decoration:none}.forms_page_gf_help .search_box{margin:0 auto;max-width:100%;position:relative;width:543px}.forms_page_gf_help .search_box input[type=text]:focus{border:1px solid #7e8993;box-shadow:none}div.search_box::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi40NjgyIDExLjE2NTVDMTMuMzYzMSA5Ljk5NiAxMy44OTQ4IDguNTMzOCAxMy44OTQ4IDYuOTQ3NEMxMy44OTQ4IDMuMTEwNDYgMTAuNzg0MyAwIDYuOTQ3NCAwQzMuMTEwNDYgMCAwIDMuMTEwNDYgMCA2Ljk0NzRDMCAxMC43ODQzIDMuMTEwNDYgMTMuODk0OCA2Ljk0NzQgMTMuODk0OEM4LjUzMzggMTMuODk0OCA5Ljk5NiAxMy4zNjMxIDExLjE2NTUgMTIuNDY4MkwxMi44MDkzIDE0LjExMTlMMTIuNzg0NCAxNC4xMzY4QzEyLjE5ODYgMTQuNzIyNiAxMi4xOTg2IDE1LjY3MjMgMTIuNzg0NCAxNi4yNTgxTDE1LjAwNTIgMTguNDc4OUMxNS41OTEgMTkuMDY0NyAxNi41NDA3IDE5LjA2NDcgMTcuMTI2NSAxOC40Nzg5TDE4LjQ3ODkgMTcuMTI2NUMxOS4wNjQ3IDE2LjU0MDcgMTkuMDY0NyAxNS41OTEgMTguNDc4OSAxNS4wMDUyTDE2LjI1ODEgMTIuNzg0NEMxNS42NzIzIDEyLjE5ODYgMTQuNzIyNiAxMi4xOTg2IDE0LjEzNjggMTIuNzg0NEwxNC4xMTE5IDEyLjgwOTNMMTIuNDY4MiAxMS4xNjU1Wk02Ljk0NzQgMTIuMTU4QzkuODI1MTEgMTIuMTU4IDEyLjE1OCA5LjgyNTExIDEyLjE1OCA2Ljk0NzRDMTIuMTU4IDQuMDY5NjkgOS44MjUxMSAxLjczNjg1IDYuOTQ3NCAxLjczNjg1QzQuMDY5NjkgMS43MzY4NSAxLjczNjg1IDQuMDY5NjkgMS43MzY4NSA2Ljk0NzRDMS43MzY4NSA5LjgyNTExIDQuMDY5NjkgMTIuMTU4IDYuOTQ3NCAxMi4xNThaTTEzLjg5NDggMTUuMTk3NEwxNS4xOTc0IDEzLjg5NDhMMTcuMzY4NSAxNi4wNjU5TDE2LjA2NTkgMTcuMzY4NUwxMy44OTQ4IDE1LjE5NzRaIiBmaWxsPSIjOUI5REI4Ii8+Cjwvc3ZnPgo=);background-repeat:no-repeat;content:"";display:inline-block;height:1.25rem;left:20px;position:absolute;top:15px;width:1.25rem}div.search_box[focus-within]::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjEuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOSAxOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTkgMTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojM0U3REE2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEyLjUsMTEuMmMwLjktMS4yLDEuNC0yLjYsMS40LTQuMmMwLTMuOC0zLjEtNi45LTYuOS02LjlDMy4xLDAsMCwzLjEsMCw2LjljMCwzLjgsMy4xLDYuOSw2LjksNi45CgljMS42LDAsMy0wLjUsNC4yLTEuNGwxLjYsMS42bDAsMGMtMC42LDAuNi0wLjYsMS41LDAsMi4xbDIuMiwyLjJjMC42LDAuNiwxLjUsMC42LDIuMSwwbDEuNC0xLjRjMC42LTAuNiwwLjYtMS41LDAtMi4xbC0yLjItMi4yCgljLTAuNi0wLjYtMS41LTAuNi0yLjEsMGwwLDBMMTIuNSwxMS4yeiBNNi45LDEyLjJjMi45LDAsNS4yLTIuMyw1LjItNS4yUzkuOCwxLjcsNi45LDEuN1MxLjcsNC4xLDEuNyw2LjlTNC4xLDEyLjIsNi45LDEyLjJ6CgkgTTEzLjksMTUuMmwxLjMtMS4zbDIuMiwyLjJsLTEuMywxLjNMMTMuOSwxNS4yeiIvPgo8L3N2Zz4K);background-repeat:no-repeat;content:"";display:inline-block;height:1.1875rem;left:20px;position:absolute;top:15px;transition:all .2s ease;width:1.1875rem}div.search_box:focus-within::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjEuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOSAxOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTkgMTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojM0U3REE2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEyLjUsMTEuMmMwLjktMS4yLDEuNC0yLjYsMS40LTQuMmMwLTMuOC0zLjEtNi45LTYuOS02LjlDMy4xLDAsMCwzLjEsMCw2LjljMCwzLjgsMy4xLDYuOSw2LjksNi45CgljMS42LDAsMy0wLjUsNC4yLTEuNGwxLjYsMS42bDAsMGMtMC42LDAuNi0wLjYsMS41LDAsMi4xbDIuMiwyLjJjMC42LDAuNiwxLjUsMC42LDIuMSwwbDEuNC0xLjRjMC42LTAuNiwwLjYtMS41LDAtMi4xbC0yLjItMi4yCgljLTAuNi0wLjYtMS41LTAuNi0yLjEsMGwwLDBMMTIuNSwxMS4yeiBNNi45LDEyLjJjMi45LDAsNS4yLTIuMyw1LjItNS4yUzkuOCwxLjcsNi45LDEuN1MxLjcsNC4xLDEuNyw2LjlTNC4xLDEyLjIsNi45LDEyLjJ6CgkgTTEzLjksMTUuMmwxLjMtMS4zbDIuMiwyLjJsLTEuMywxLjNMMTMuOSwxNS4yeiIvPgo8L3N2Zz4K);background-repeat:no-repeat;content:"";display:inline-block;height:1.1875rem;left:20px;position:absolute;top:15px;transition:all .2s ease;width:1.1875rem}div.gforms_helpbox:hover{box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03);transition:all .2s ease}div#gforms_helpboxes a{color:#242748;display:inline-block;margin:-2px 0 0 35px;text-decoration:none}div#gforms_helpboxes a:hover{text-decoration:underline}div.helpbox_header{border-radius:.375rem .375rem 0 0;height:178px;position:relative;text-align:center}div.gforms_helpbox .helpbox_header::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);background-position-y:center;background-repeat:no-repeat;content:"";display:inline-block;height:100%;width:111px}div.developer_documentation .helpbox_header{background-color:rgba(255,110,32,.33)}div.user_documentation .helpbox_header{background-color:rgba(0,159,222,.33)}div.designer_documentation .helpbox_header{background-color:rgba(36,39,72,.33)}div.gforms_helpbox .helpbox_header::after{background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}div.user_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzMiAzNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+QXR0ZW5kaW5nIChpY29uKSAxIDI8L3RpdGxlPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxtYXNrIGlkPSJwYXRoLTEtaW5zaWRlLTEiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTYuMDY3IDEwLjc3N0MxNi41MDMgNy41MDcgMTguOTkzIDUgMjIgNWMzLjAwNyAwIDUuNDk3IDIuNTA3IDUuOTMzIDUuNzc3QTEuNiAxLjYgMCAwIDEgMjggMTMuNTg2di45MTRjMCAuODg5LjM4NiAxLjY4NyAxIDIuMjM2di43NjRzLTEuODI3LjUyMi00LjE2MS44MTJjLS4wMjUuMDktLjAzOS4xODEtLjAzOS4yNzMgMCAuOCAxLjM0IDEuMjMzIDEuMzQgMS4yMzNsLS4xNjMtLjAxNWMxLjcwOC43NjggMy40MjMgMS43MjQgNC40MSAyLjI5Ni41MzUuMzExLjg4Mi44NjIuOTQ4IDEuNDc4TDMyIDI5LjhzLTIgLjctMTAgLjctMTAtLjctMTAtLjdsLjY3LTYuMjYzYTEuOTIgMS45MiAwIDAgMSAuODk1LTEuNDRjLjk5OS0uNjE0IDIuODA0LTEuNjY5IDQuNjMtMi40NmwtLjIxOC4wMTJTMTkuMiAxOS40IDE5LjIgMTguNmExLjA0IDEuMDQgMCAwIDAtLjA0My0uMjg5QzE2LjgyNSAxOC4wMjEgMTUgMTcuNSAxNSAxNy41di0uNzY0Yy42MTQtLjU1IDEtMS4zNDggMS0yLjIzNnYtLjkxNGExLjYgMS42IDAgMCAxIC4wNjctMi44MDl6Ii8+PC9tYXNrPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTYuMDY3IDEwLjc3N0MxNi41MDMgNy41MDcgMTguOTkzIDUgMjIgNWMzLjAwNyAwIDUuNDk3IDIuNTA3IDUuOTMzIDUuNzc3QTEuNiAxLjYgMCAwIDEgMjggMTMuNTg2di45MTRjMCAuODg5LjM4NiAxLjY4NyAxIDIuMjM2di43NjRzLTEuODI3LjUyMi00LjE2MS44MTJjLS4wMjUuMDktLjAzOS4xODEtLjAzOS4yNzMgMCAuOCAxLjM0IDEuMjMzIDEuMzQgMS4yMzNsLS4xNjMtLjAxNWMxLjcwOC43NjggMy40MjMgMS43MjQgNC40MSAyLjI5Ni41MzUuMzExLjg4Mi44NjIuOTQ4IDEuNDc4TDMyIDI5LjhzLTIgLjctMTAgLjctMTAtLjctMTAtLjdsLjY3LTYuMjYzYTEuOTIgMS45MiAwIDAgMSAuODk1LTEuNDRjLjk5OS0uNjE0IDIuODA0LTEuNjY5IDQuNjMtMi40NmwtLjIxOC4wMTJTMTkuMiAxOS40IDE5LjIgMTguNmExLjA0IDEuMDQgMCAwIDAtLjA0My0uMjg5QzE2LjgyNSAxOC4wMjEgMTUgMTcuNSAxNSAxNy41di0uNzY0Yy42MTQtLjU1IDEtMS4zNDggMS0yLjIzNnYtLjkxNGExLjYgMS42IDAgMCAxIC4wNjctMi44MDl6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE2LjA2NyAxMC43NzdsLjkxNyAxLjc3OC45MjgtLjQ4LjEzOC0xLjAzNC0xLjk4My0uMjY0em0xMS44NjYgMGwtMS45ODMuMjY0LjEzOCAxLjAzNS45MjguNDc5LjkxNy0xLjc3OHpNMjggMTMuNTg2bC0xLjAwMi0xLjczMS0uOTk4LjU3N3YxLjE1NGgyem0xIDMuMTVoMnYtLjg5NGwtLjY2Ni0uNTk2TDI5IDE2LjczNnptMCAuNzY0bC41NSAxLjkyMyAxLjQ1LS40MTRWMTcuNWgtMnptLTQuMTYxLjgxMmwtLjI0Ny0xLjk4NS0xLjMyNy4xNjUtLjM1NSAxLjI5IDEuOTI5LjUzem0xLjMgMS41MDZsLS4xOSAxLjk5MS44MDYtMy44OTMtLjYxNiAxLjkwMnptLS4xNjItLjAxNWwuMTktMS45OTEtMS4wMSAzLjgxNS44Mi0xLjgyNHptNC40MSAyLjI5NmwxLjAwMy0xLjczLTEuMDA0IDEuNzN6bS45NDggMS40NzhsLTEuOTg5LjIxMyAxLjk5LS4yMTN6TTMyIDI5LjhsLjY2IDEuODg4IDEuNDk3LS41MjQtLjE2OC0xLjU3N0wzMiAyOS44em0tMjAgMGwtMS45ODktLjIxMy0uMTY4IDEuNTc3IDEuNDk2LjUyNEwxMiAyOS44em0uNjctNi4yNjNsMS45ODguMjEyLTEuOTg5LS4yMTJ6bS44OTUtMS40NGwtMS4wNDgtMS43MDMgMS4wNDggMS43MDN6bTQuNjMtMi40NmwuNzk0IDEuODM1LS45MDctMy44MzIuMTEyIDEuOTk3em0tLjIxOC4wMTJsLS40LTEuOTYuNTEzIDMuOTU3LS4xMTMtMS45OTd6bTEuMTgtMS4zMzhsMS45Mi0uNTU2LS4zNjYtMS4yNjYtMS4zMDgtLjE2My0uMjQ2IDEuOTg1ek0xNSAxNy41aC0ydjEuNTA5bDEuNDUuNDE0TDE1IDE3LjV6bTAtLjc2NGwtMS4zMzQtMS40OS0uNjY2LjU5NnYuODk0aDJ6bTEtMy4xNWgydi0xLjE1NGwtLjk5OC0uNTc3TDE2IDEzLjU4NXpNMjIgM2MtNC4yMDggMC03LjM3NiAzLjQ2LTcuOTE1IDcuNTEzbDMuOTY1LjUyOEMxOC4zOCA4LjU1NSAyMC4xOTQgNyAyMiA3VjN6bTcuOTE1IDcuNTEzQzI5LjM3NSA2LjQ2IDI2LjIwOCAzIDIyIDN2NGMxLjgwNiAwIDMuNjIgMS41NTUgMy45NSA0LjA0MWwzLjk2NS0uNTI4ek0zMC44IDEyLjJBMy42IDMuNiAwIDAgMCAyOC44NSA5bC0xLjgzNCAzLjU1NWEuNC40IDAgMCAxLS4yMTYtLjM1NWg0em0tMS43OTkgMy4xMTdBMy42IDMuNiAwIDAgMCAzMC44IDEyLjJoLTRhLjQuNCAwIDAgMSAuMTk4LS4zNDVsMi4wMDMgMy40NjJ6TTMwIDE0LjV2LS45MTRoLTR2LjkxNGg0em0uMzM0Ljc0NkEuOTkyLjk5MiAwIDAgMSAzMCAxNC41aC00YzAgMS40ODEuNjQ2IDIuODE0IDEuNjY2IDMuNzI2bDIuNjY4LTIuOTh6TTMxIDE3LjV2LS43NjRoLTR2Ljc2NGg0em0tNS45MTUgMi43OTdhMzMuODIgMzMuODIgMCAwIDAgNC4zNTctLjg0NGwuMDc1LS4wMi4wMjEtLjAwNy4wMDctLjAwMmguMDA0TDI5IDE3LjVsLS41NS0xLjkyM2guMDAybC0uMDEuMDAzLS4wNS4wMTMtLjIxMi4wNTZhMjkuODg0IDI5Ljg4NCAwIDAgMS0zLjU4Ny42NzhsLjQ5MiAzLjk3em0xLjcxNS0xLjcxMmMwIC4xMTItLjAxNy4yLS4wMzMuMjU3bC0zLjg1Ny0xLjA2Yy0uMDY1LjIzNi0uMTEuNTA3LS4xMS44MDNoNHptLS42NiAxLjIzM2wuNjE2LTEuOTAyaC4wMDNsLjAwMy4wMDIuMDA2LjAwMi4wMDYuMDAyLS4wMDQtLjAwMmExLjM0NyAxLjM0NyAwIDAgMS0uMjQ0LS4xMTdjLS4wNjQtLjA0LS4wMzQtLjAzNC4wMy4wNDQuMDczLjA5LjI0NC4zNDUuMjQ0LjczOGgtNGMwIDEuNTQ3IDEuMjMgMi4zNzYgMS42MTMgMi42MTRhNS4zNzUgNS4zNzUgMCAwIDAgMS4wNjEuNTA2bC4wMjkuMDFjLjAwNCAwIC4wMDguMDAyLjAxMS4wMDNsLjAwNS4wMDJoLjAwM3MuMDAxLjAwMS42MTctMS45MDJ6bS0uMzUzIDEuOTc2bC4xNjIuMDE1LjM4LTMuOTgyLS4xNjItLjAxNS0uMzggMy45ODJ6bTUuNjAzLTEuNDI1Yy0xLjAwOS0uNTg1LTIuNzkyLTEuNTgtNC41OTItMi4zOWwtMS42NDEgMy42NDhjMS42MTUuNzI3IDMuMjYyIDEuNjQzIDQuMjI2IDIuMjAybDIuMDA3LTMuNDZ6bTEuOTM0IDIuOTk2YTMuOTM5IDMuOTM5IDAgMCAwLTEuOTM0LTIuOTk2bC0yLjAwNyAzLjQ2YS4wOTMuMDkzIDAgMCAxLS4wMzEtLjAyOWMtLjAwNi0uMDA4LS4wMDYtLjAxMi0uMDA2LS4wMWwzLjk3OC0uNDI1em0uNjY1IDYuMjIzbC0uNjY1LTYuMjIzLTMuOTc3LjQyNS42NjQgNi4yMjMgMy45NzgtLjQyNnpNMjIgMzIuNWM0LjA1NCAwIDYuNjM1LS4xNzcgOC4yMzItLjM2NC44LS4wOTMgMS4zNi0uMTkgMS43NDItLjI3YTcuOTQ4IDcuOTQ4IDAgMCAwIC41OTItLjE0NyAyLjYyMyAyLjYyMyAwIDAgMCAuMDc1LS4wMjRsLjAxLS4wMDRhLjA5Mi4wOTIgMCAwIDAgLjAwNy0uMDAyYy4wMDIgMCAuMDAzLS4wMDEtLjY1OC0xLjg4OS0uNjYtMS44ODgtLjY2LTEuODg4LS42NTgtMS44ODloLjAwMmEuMjEuMjEgMCAwIDAgLjAxMi0uMDA1LjY2Ni42NjYgMCAwIDEgLjAzLS4wMWMuMDA1IDAgLjAwMiAwLS4wMTMuMDA0LS4wMjkuMDA4LS4xLjAyNy0uMjIyLjA1Mi0uMjQzLjA1MS0uNjgyLjEzLTEuMzgzLjIxMS0xLjQwMy4xNjQtMy44MjIuMzM3LTcuNzY4LjMzN3Y0em0tMTAtMi43Yy0uNjYgMS44ODgtLjY2IDEuODg4LS42NTggMS44ODloLjAwMmwuMDA1LjAwMi4wMS4wMDRhLjk3NS45NzUgMCAwIDAgLjA3NS4wMjRjLjA0LjAxMi4wODYuMDI2LjE0Mi4wNC4xMTIuMDMxLjI2LjA2OC40NS4xMDguMzgyLjA4Ljk0My4xNzYgMS43NDIuMjcgMS41OTcuMTg2IDQuMTc4LjM2MyA4LjIzMi4zNjN2LTRjLTMuOTQ2IDAtNi4zNjUtLjE3My03Ljc2OC0uMzM3LS43LS4wODEtMS4xNC0uMTYtMS4zODMtLjIxYTQuMDMzIDQuMDMzIDAgMCAxLS4yMjItLjA1M2wtLjAxMi0uMDAzYS44MDkuODA5IDAgMCAxIC4wNDMuMDE1Yy4wMDIgMCAuMDAzIDAtLjY1OCAxLjg4OHptLTEuMzItNi40NzZsLS42NjkgNi4yNjMgMy45NzguNDI1LjY2OS02LjI2My0zLjk3Ny0uNDI1em0xLjgzNy0yLjkzYTMuOTE5IDMuOTE5IDAgMCAwLTEuODM2IDIuOTNsMy45NzcuNDI1YzAtLjAwMiAwIC4wMDQtLjAwNy4wMTRhLjEyMi4xMjIgMCAwIDEtLjAzOS4wMzhsLTIuMDk1LTMuNDA3em00Ljg4Mi0yLjU5MmMtMS45NTQuODQ3LTMuODU0IDEuOTYtNC44ODIgMi41OTJsMi4wOTUgMy40MDdjLjk3LS41OTYgMi42ODEtMS41OTQgNC4zNzctMi4zMjlsLTEuNTktMy42N3ptLjY5IDMuODQ0bC4yMTgtLjAxMi0uMjI1LTMuOTk0LS4yMTcuMDEzLjIyNSAzLjk5M3pNMTcuMiAxOC42YzAtLjM1Ni4xNS0uNjMzLjI4LS43ODguMTA4LS4xMjcuMTkzLS4xNjUuMTctLjE1NGEuNTM3LjUzNyAwIDAgMS0uMTA3LjA0bC4wMDctLjAwMi4wMTEtLjAwMy4wMDgtLjAwMS4wMDQtLjAwMWguMDAzYzAtLjAwMS4wMDEtLjAwMS40MDEgMS45NTlhMjk3LjMwNSAyOTcuMzA1IDAgMCAwIC40MDIgMS45NTloLjAwM2wuMDA2LS4wMDJhLjc5MS43OTEgMCAwIDAgLjA0My0uMDFsLjA4NS0uMDJhNC41IDQuNSAwIDAgMCAxLjAxLS4zODZjLjQ2NS0uMjQ3IDEuNjc0LTEuMDIzIDEuNjc0LTIuNTkxaC00em0uMDM2LjI2N2EuOTY4Ljk2OCAwIDAgMS0uMDM2LS4yNjdoNGMwLS4zMTMtLjA1LS41OTgtLjEyMi0uODQ1bC0zLjg0MiAxLjExM3pNMTUgMTcuNWExMDM2LjA5NSAxMDM2LjA5NSAwIDAgMC0uNTQ4IDEuOTI0aC4wMDNsLjAwNy4wMDIuMDIxLjAwNi4wNzUuMDJhMzAuMjA4IDMwLjIwOCAwIDAgMCAxLjIxMS4yOTZjLjc5Mi4xNzggMS44OTYuMzkzIDMuMTQxLjU0OGwuNDkzLTMuOTdhMjkuODgyIDI5Ljg4MiAwIDAgMS0zLjc5NS0uNzMzbC0uMDUtLjAxMy0uMDEtLjAwM2guMDAxTDE1IDE3LjV6bS0yLS43NjR2Ljc2NGg0di0uNzY0aC00em0xLTIuMjM2YzAgLjI5Ni0uMTI2LjU2LS4zMzQuNzQ2bDIuNjY4IDIuOThBNC45OTMgNC45OTMgMCAwIDAgMTggMTQuNWgtNHptMC0uOTE0di45MTRoNHYtLjkxNGgtNHptMy4wMDItMS43MzFhLjQuNCAwIDAgMSAuMTk4LjM0NWgtNGEzLjYgMy42IDAgMCAwIDEuNzk5IDMuMTE3TDE3IDExLjg1NXptLjE5OC4zNDVhLjQuNCAwIDAgMS0uMjE2LjM1NUwxNS4xNSA5YTMuNiAzLjYgMCAwIDAtMS45NSAzLjJoNHoiIGZpbGw9IiMzZTdkYTYiIG1hc2s9InVybCgjcGF0aC0xLWluc2lkZS0xKSIvPjxtYXNrIGlkPSJwYXRoLTMtaW5zaWRlLTIiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMy4wMTV2LjA3YTcuMDAyIDcuMDAyIDAgMCAwLTYgNi45M3YuNjIzYTIuNTM4IDIuNTM4IDAgMCAwIC41NDggNC4zNTZjLjUxIDEuNDkgMS4zNTIgMi43NjggMi40MSAzLjY5Mi4yMS4zMDEuNDA5LjcxMS40MDkgMS4xODYgMCAxLjAxNS0xLjUxNyAxLjQ5Ni0xLjUxNyAxLjQ5NmwtLjA4LjE0NWMtMi40NjUgMS4xMjctNC44NiAyLjU5Ni02LjAyOSAzLjM0NWExLjkzIDEuOTMgMCAwIDAtLjg2NCAxLjM2NEwwIDMyLjQ3OFMyLjYgMzMuNSAxMyAzMy41czEzLTEuMDIyIDEzLTEuMDIybC0uODcxLTYuMjE2YTEuOTQ3IDEuOTQ3IDAgMCAwLS45MTktMS40MDNjLTEuMjA4LS43MjgtMy42MjktMi4xMzctNi4wMzgtMy4yNTJsLS4wNjktLjEzNXMtMS41MTctLjQ4LTEuNTE3LTEuNDk1YzAtLjU4OC4zMDQtMS4wNzcuNTYtMS4zODMgMS4wMS0uOTE2IDEuODEyLTIuMTU4IDIuMzA2LTMuNkEyLjUzOCAyLjUzOCAwIDAgMCAyMCAxMC42Mzh2LS42MjNhNi45NzQgNi45NzQgMCAwIDAtMS44MS00LjY5OEE2LjA3IDYuMDcgMCAwIDAgMjAgLjk4NWgtLjAxNWE1LjA2NyA1LjA2NyAwIDAgMS00LjA2IDIuMDNIMTJ6Ii8+PC9tYXNrPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMy4wMTV2LjA3YTcuMDAyIDcuMDAyIDAgMCAwLTYgNi45M3YuNjIzYTIuNTM4IDIuNTM4IDAgMCAwIC41NDggNC4zNTZjLjUxIDEuNDkgMS4zNTIgMi43NjggMi40MSAzLjY5Mi4yMS4zMDEuNDA5LjcxMS40MDkgMS4xODYgMCAxLjAxNS0xLjUxNyAxLjQ5Ni0xLjUxNyAxLjQ5NmwtLjA4LjE0NWMtMi40NjUgMS4xMjctNC44NiAyLjU5Ni02LjAyOSAzLjM0NWExLjkzIDEuOTMgMCAwIDAtLjg2NCAxLjM2NEwwIDMyLjQ3OFMyLjYgMzMuNSAxMyAzMy41czEzLTEuMDIyIDEzLTEuMDIybC0uODcxLTYuMjE2YTEuOTQ3IDEuOTQ3IDAgMCAwLS45MTktMS40MDNjLTEuMjA4LS43MjgtMy42MjktMi4xMzctNi4wMzgtMy4yNTJsLS4wNjktLjEzNXMtMS41MTctLjQ4LTEuNTE3LTEuNDk1YzAtLjU4OC4zMDQtMS4wNzcuNTYtMS4zODMgMS4wMS0uOTE2IDEuODEyLTIuMTU4IDIuMzA2LTMuNkEyLjUzOCAyLjUzOCAwIDAgMCAyMCAxMC42Mzh2LS42MjNhNi45NzQgNi45NzQgMCAwIDAtMS44MS00LjY5OEE2LjA3IDYuMDcgMCAwIDAgMjAgLjk4NWgtLjAxNWE1LjA2NyA1LjA2NyAwIDAgMS00LjA2IDIuMDNIMTJ6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEyIDMuMDg2bC4yODMgMS45OEwxNCA0LjgyVjMuMDg2aC0yem0wLS4wNzF2LTJoLTJ2Mmgyem0tNiA3LjYyM2wxLjIxMyAxLjU5Ljc4Ny0uNnYtLjk5SDZ6bS41NDggNC4zNTZsMS44OTItLjY0OC0uMjktLjg0NS0uODIyLS4zNDgtLjc4IDEuODQxem0yLjQxIDMuNjkybDEuNjM5LTEuMTQ2LS4xNC0uMi0uMTg0LS4xNi0xLjMxNSAxLjUwNnpNNy44NSAyMS4zNjhsLS42MDQtMS45MDctLjc2NS4yNDItLjM4Ni43MDUgMS43NTUuOTZ6bS0uMDguMTQ1bC44MzIgMS44MTkuNjA0LS4yNzcuMzItLjU4Mi0xLjc1NS0uOTZ6bS02LjAyOSAzLjM0NUwuNjYzIDIzLjE3NGwxLjA3OCAxLjY4NHptLS44NjQgMS4zNjRsMS45OC4yNzgtMS45OC0uMjc4ek0wIDMyLjQ3OGwtMS45OC0uMjc4LS4yMiAxLjU2MiAxLjQ2OC41NzdMMCAzMi40Nzh6bTI2IDBsLjczMiAxLjg2IDEuNDY4LS41NzYtLjIyLTEuNTYyLTEuOTguMjc4em0tLjg3MS02LjIxNmwxLjk4LS4yNzgtMS45OC4yNzh6bS0uOTE5LTEuNDAzbC0xLjAzMiAxLjcxMyAxLjAzMi0xLjcxM3ptLTYuMDM4LTMuMjUybC0xLjc4NS45MDMuMzE0LjYyLjYzMS4yOTMuODQtMS44MTZ6bS0uMDY5LS4xMzVsMS43ODUtLjkwMy0uMzgtLjc1LS44MDEtLjI1NC0uNjA0IDEuOTA3em0tLjk1Ny0yLjg3OGwtMS4zNDQtMS40ODEtLjEwNC4wOTMtLjA4OS4xMDggMS41MzcgMS4yOHptMi4zMDYtMy42bC0uNzgtMS44NDEtLjgyMy4zNDgtLjI5Ljg0NSAxLjg5My42NDh6TTIwIDEwLjYzOGgtMnYuOTlsLjc4Ny42TDIwIDEwLjYzOHptLTEuODEtNS4zMmwtMS40MDYtMS40MjMtMS4zNjIgMS4zNDYgMS4yODUgMS40MiAxLjQ4My0xLjM0NHpNMjAgLjk4NGgydi0yaC0ydjJ6bS0uMDE1IDB2LTJoLS45OTlsLS42Ljc5OSAxLjYgMS4yMDF6TTE0IDMuMDg1di0uMDdoLTR2LjA3aDR6bS02IDYuOTNhNS4wMDIgNS4wMDIgMCAwIDEgNC4yODMtNC45NWwtLjU2Ni0zLjk1OUM3LjM1MyAxLjczIDQgNS40NzkgNCAxMC4wMTVoNHptMCAuNjIzdi0uNjIzSDR2LjYyM2g0em0tMSAyLjAxOWMwLS4xNzMuMDgtLjMyNy4yMTMtLjQyOWwtMi40MjYtMy4xOEE0LjUzMyA0LjUzMyAwIDAgMCAzIDEyLjY1N2g0em0uMzI4LjQ5NUEuNTM4LjUzOCAwIDAgMSA3IDEyLjY1OEgzYTQuNTM4IDQuNTM4IDAgMCAwIDIuNzY4IDQuMTc4bDEuNTYtMy42ODN6bTIuOTQ1IDQuMDI3Yy0uNzctLjY3MS0xLjQyNS0xLjY0MS0xLjgzMy0yLjgzM2wtMy43ODQgMS4yOTZjLjYxMyAxLjc5IDEuNjQgMy4zNzQgMi45ODYgNC41NWwyLjYzMS0zLjAxM3ptMS4wOTQgMi42OTNjMC0xLjAzMy0uNDI3LTEuODQtLjc3LTIuMzMybC0zLjI3OCAyLjI5MmEuNjQ4LjY0OCAwIDAgMSAuMDUzLjA5M2MuMDA0LjAxMS0uMDA1LS4wMDktLjAwNS0uMDUzaDR6TTcuODUgMjEuMzY4YTMyNC4wOCAzMjQuMDggMCAwIDAgLjYwNiAxLjkwNmwuMDAzLS4wMDEuMDA1LS4wMDJhMS4wMTQgMS4wMTQgMCAwIDEgLjA0NS0uMDE1IDQuNDcgNC40NyAwIDAgMCAuMzY1LS4xNGMuMjEzLS4wOTIuNTEyLS4yMzUuODI2LS40NC41MDktLjMzIDEuNjY3LTEuMjI2IDEuNjY3LTIuODA0aC00YzAtLjI3Ny4xMTEtLjQ3LjE2OC0uNTQ1LjA0NC0uMDU4LjA1Ni0uMDUtLjAxOC0uMDAyYTEuNDkzIDEuNDkzIDAgMCAxLS4yODcuMTRsLS4wMDUuMDAzLjAwNy0uMDAzYy4wMDIgMCAuMDA0IDAgLjAwNi0uMDAyaC4wMDRsLjAwMi0uMDAxaC4wMDFzLjAwMS0uMDAxLjYwNSAxLjkwNnptMS42NzUgMS4xMDVsLjA4LS4xNDYtMy41MS0xLjkyLS4wOC4xNDYgMy41MSAxLjkyek0yLjgyIDI2LjU0MmMxLjE0Mi0uNzMxIDMuNDQzLTIuMTQxIDUuNzgyLTMuMjFMNi45NCAxOS42OTRjLTIuNTkzIDEuMTg1LTUuMDggMi43MTMtNi4yNzYgMy40OGwyLjE1NyAzLjM2OHptLjAzNy0uMDQyYzAtLjAwMiAwIC4wMDMtLjAwNS4wMTFhLjEwNS4xMDUgMCAwIDEtLjAzMi4wMzFMLjY2MyAyMy4xNzRhMy45MyAzLjkzIDAgMCAwLTEuNzY3IDIuNzdsMy45NjEuNTU2em0tLjg3NiA2LjI1NWwuODc2LTYuMjU1LTMuOTYtLjU1Ni0uODc4IDYuMjU2IDMuOTYyLjU1NXpNMTMgMzEuNWMtNS4xMzkgMC04LjI5OS0uMjUzLTEwLjE0LS40OTQtLjkyLS4xMi0xLjUwMi0uMjM3LTEuODMyLS4zMTVhNS4wMzcgNS4wMzcgMCAwIDEtLjMxMS0uMDgybC0uMDMtLjAxLjAxNC4wMDZjLjAwNCAwIC4wMDguMDAzLjAxMy4wMDVsLjAwOS4wMDNjLjAwMSAwIC4wMDMgMCAuMDA0LjAwMkguNzNjLjAwMiAwIC4wMDMuMDAxLS43MjkgMS44NjMtLjczMiAxLjg2LS43MyAxLjg2MS0uNzMgMS44NjJoLjAwM2EuMDkuMDkgMCAwIDAgLjAwNS4wMDNsLjAxMi4wMDQuMDI1LjAxYTMuNjQ0IDMuNjQ0IDAgMCAwIC4yMzIuMDc3Yy4xMzcuMDQyLjMyLjA5My41NjIuMTUuNDgzLjExNCAxLjIuMjUzIDIuMjMxLjM4OCAyLjA1OS4yNyA1LjM5OS41MjggMTAuNjYuNTI4di00em0xMyAuOTc4Yy0uNzMyLTEuODYyLS43My0xLjg2Mi0uNzMtMS44NjNoLjAwM2wuMDA1LS4wMDJjLjAwMi0uMDAxLjAwNS0uMDAzLjAwOC0uMDAzbC4wMTMtLjAwNWEuNTMxLjUzMSAwIDAgMSAuMDE0LS4wMDVsLS4wMy4wMDlhNS4wMTggNS4wMTggMCAwIDEtLjMxMS4wODJjLS4zMy4wNzgtLjkxMy4xOTQtMS44MzIuMzE1LTEuODQxLjI0MS01LjAwMS40OTQtMTAuMTQuNDk0djRjNS4yNjEgMCA4LjYwMS0uMjU4IDEwLjY2LS41MjhhMjIuNjgxIDIyLjY4MSAwIDAgMCAyLjIzLS4zODggOC45NTUgOC45NTUgMCAwIDAgLjczNC0uMjA1bC4wNjEtLjAyMi4wMjUtLjAxLjAxMi0uMDA0LjAwNS0uMDAyLjAwMi0uMDAxYy4wMDIgMCAuMDAzLS4wMDEtLjcyOS0xLjg2MnptLTIuODUyLTUuOTM5bC44NzEgNi4yMTYgMy45NjItLjU1NS0uODcyLTYuMjE2LTMuOTYuNTU1em0uMDMuMDMzYS4wOC4wOCAwIDAgMS0uMDI2LS4wMjRsLS4wMDQtLjAwOSAzLjk2MS0uNTU1YTMuOTQ2IDMuOTQ2IDAgMCAwLTEuODY2LTIuODM4bC0yLjA2NSAzLjQyNnptLTUuODQ2LTMuMTVjMi4zMTEgMS4wNyA0LjY1OSAyLjQzNSA1Ljg0NiAzLjE1bDIuMDY1LTMuNDI2Yy0xLjIyOS0uNzQtMy43MjMtMi4xOTQtNi4yMzItMy4zNTRsLTEuNjc5IDMuNjN6bS0xLjAxMy0xLjA0N2wuMDY4LjEzNSAzLjU3LTEuODA2LS4wNy0uMTM1LTMuNTY4IDEuODA2em0tMS43MzMtMi4zOThjMCAxLjU3NyAxLjE1OSAyLjQ3MyAxLjY2NyAyLjgwNGE1LjQ2NyA1LjQ2NyAwIDAgMCAxLjIyNC41OWwuMDEyLjAwNGEuMzAzLjMwMyAwIDAgMCAuMDEuMDAzbC42MDQtMS45MDZhMzQxLjc2NiAzNDEuNzY2IDAgMCAxIC42MDYtMS45MDZoLjAwMmwuMDA0LjAwMi4wMDYuMDAyYy4wMDQgMCAuMDA2LjAwMi4wMDcuMDAyLjAwMyAwIDAgMC0uMDA1LS4wMDJhMS40OTUgMS40OTUgMCAwIDEtLjI4Ny0uMTQxYy0uMDc0LS4wNDgtLjA2Mi0uMDU2LS4wMTguMDAyYS45MjYuOTI2IDAgMCAxIC4xNjguNTQ2aC00em0xLjAyMy0yLjY2M2MtLjM4My40Ni0xLjAyMyAxLjM5NS0xLjAyMyAyLjY2M2g0YzAgLjA1NC0uMDE0LjA3MSAwIC4wNGEuODc0Ljg3NCAwIDAgMSAuMDk2LS4xNDNsLTMuMDczLTIuNTZ6bTEuOTUtMi45NjhjLS4zOTQgMS4xNTItMS4wMiAyLjA5OC0xLjc1NyAyLjc2N2wyLjY4NyAyLjk2MmMxLjI4Mi0xLjE2MyAyLjI2Mi0yLjcwMSAyLjg1NS00LjQzM2wtMy43ODQtMS4yOTZ6bTIuNjczIDIuNDlBNC41MzggNC41MzggMCAwIDAgMjMgMTIuNjU1aC00YzAgLjIyLS4xMzIuNDEzLS4zMjguNDk2bDEuNTYgMy42ODR6TTIzIDEyLjY1NWE0LjUzMyA0LjUzMyAwIDAgMC0xLjc4Ny0zLjYwOGwtMi40MjYgMy4xOGEuNTMzLjUzMyAwIDAgMSAuMjEzLjQyOWg0em0tNS0yLjY0MXYuNjIzaDR2LS42MjNoLTR6TTE2LjcwNyA2LjY2QTQuOTc0IDQuOTc0IDAgMCAxIDE4IDEwLjAxNWg0YTguOTc0IDguOTc0IDAgMCAwLTIuMzI4LTYuMDRMMTYuNzA3IDYuNjZ6TTE4IC45ODVhNC4wNzEgNC4wNzEgMCAwIDEtMS4yMTYgMi45MWwyLjgxMSAyLjg0NUE4LjA3MSA4LjA3MSAwIDAgMCAyMiAuOTg1aC00em0xLjk4NSAySDIwdi00aC0uMDE1djR6bS00LjA2IDIuMDNhNy4wNjcgNy4wNjcgMCAwIDAgNS42Ni0yLjgyOUwxOC4zODYtLjIxNmEzLjA2NyAzLjA2NyAwIDAgMS0yLjQ2IDEuMjMxdjR6bS0zLjkyNSAwaDMuOTI1di00SDEydjR6IiBmaWxsPSIjM2U3ZGE2IiBtYXNrPSJ1cmwoI3BhdGgtMy1pbnNpZGUtMikiLz48L2c+PC9zdmc+);height:1.6875rem;width:1.625rem}div.developer_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNiAyNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Q29nIChpY29uKSAyPC90aXRsZT48ZyBmaWxsPSJub25lIiBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjIyNyA4Ljg0YzEuMjEzLS40MzMgMi41MTMuNDMzIDIuNjg2IDEuNjQ3LjA4Ny41Mi4wODcgMS4xMjYuMDg3IDEuNjQ2czAgMS4xMjctLjI2IDEuNjQ3YTEuOTg2IDEuOTg2IDAgMCAxLTEuOTkzIDEuODJjLS4yNiAwLS40MzQgMC0uNjk0LS4wODctLjYwNi0uMjYtMS4yMTMuMDg3LTEuNDczLjYwN3MtLjYwNyAxLjEyNy0uOTUzIDEuNjQ3Yy0uMzQ3LjUyLS4yNiAxLjIxMy4xNzMgMS41Ni40MzMuMzQ2LjY5My45NTMuNjkzIDEuNTYgMCAuNjA2LS4yNiAxLjIxMy0uNzggMS41Ni0uODY2LjY5My0xLjgyIDEuMjEzLTIuNzczIDEuNjQ2LS4yNi4wODctLjUyLjE3NC0uNzguMTc0LS45NTMgMC0xLjgyLS42OTQtMS45OTMtMS42NDctLjA4Ny0uNjA3LS42OTQtMS4wNC0xLjMtLjk1M2E3LjAzIDcuMDMgMCAwIDEtMS45MDcgMGMtLjY5My0uMDg3LTEuMjEzLjM0Ni0xLjMuOTUzLS4xNzMuOTUzLTEuMDQgMS42NDctMS45OTMgMS42NDctLjI2IDAtLjUyLS4wODctLjc4LS4xNzQtLjk1NC0uNDMzLTEuOTA3LS45NTMtMi43NzQtMS42NDYtLjQzMy0uMzQ3LS43OC0uOTU0LS43OC0xLjU2IDAtLjYwNy4yNi0xLjIxNC42OTQtMS41Ni40MzMtLjM0Ny41Mi0xLjA0LjE3My0xLjU2LS4zNDctLjUyLS42OTMtMS4wNC0uOTUzLTEuNjQ3cy0uOTU0LS44NjctMS40NzQtLjY5M0MxLjU2IDE1Ljg2LjI2IDE0Ljk5My4wODcgMTMuNzggMCAxMy4yNiAwIDEyLjY1MyAwIDEyLjEzM3MwLTEuMTI2LjA4Ny0xLjY0NmExLjk4NiAxLjk4NiAwIDAgMSAxLjk5My0xLjgyYy4yNiAwIC40MzMgMCAuNjkzLjA4Ni42MDcuMjYgMS4yMTQtLjA4NiAxLjQ3NC0uNjA2UzQuODUzIDcuMDIgNS4yIDYuNWMuNDMzLS41Mi4zNDctMS4xMjctLjE3My0xLjU2LS40MzQtLjM0Ny0uNjk0LS45NTMtLjY5NC0xLjU2IDAtLjYwNy4zNDctMS4yMTMuNzgtMS41Ni44NjctLjY5MyAxLjgyLTEuMjEzIDIuODYtMS42NDcuMjYtLjA4Ni41Mi0uMTczLjc4LS4xNzMuOTU0IDAgMS44Mi42OTMgMS45OTQgMS42NDcuMDg2LjYwNi42OTMgMS4wNCAxLjMuOTUzYTcuMDIzIDcuMDIzIDAgMCAxIDEuOTA2IDBjLjY5NC4wODcgMS4yMTQtLjM0NyAxLjMtLjk1M0MxNS40MjcuNjkzIDE2LjI5MyAwIDE3LjI0NyAwYy4yMDUgMCAuNDExLjA1NC42Ni4xMmwuMjA2LjA1M2MuOTU0LjQzNCAxLjkwNy45NTQgMi43NzQgMS42NDcuNDMzLjM0Ny43OC45NTMuNzggMS41NiAwIC42MDctLjI2IDEuMjEzLS42OTQgMS42NDctLjQzMy4zNDYtLjUyIDEuMDQtLjE3MyAxLjU2LjM0Ny41Mi42OTMgMS4wNC45NTMgMS42NDYuMjYuNTIuOTU0Ljc4IDEuNDc0LjYwN3pNMTMgMTYuNDY3YTQuMjkxIDQuMjkxIDAgMCAwIDQuMzMzLTQuMzM0QTQuMjkxIDQuMjkxIDAgMCAwIDEzIDcuOGE0LjI5MSA0LjI5MSAwIDAgMC00LjMzMyA0LjMzM0E0LjI5MSA0LjI5MSAwIDAgMCAxMyAxNi40Njd6IiBmaWxsPSIjM2U3ZGE2Ii8+PC9nPjwvc3ZnPg==);height:1.5625rem;width:1.625rem}div.designer_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggb3BhY2l0eT0iLjQwNCIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDFhMSAxIDAgMDEyIDB2MjRhMSAxIDAgMTEtMiAwVjF6bTEwIDBhMSAxIDAgMTEyIDB2MjRhMSAxIDAgMTEtMiAwVjF6bTExLTFhMSAxIDAgMDAtMSAxdjI0YTEgMSAwIDEwMiAwVjFhMSAxIDAgMDAtMS0xeiIgZmlsbD0iIzNFN0RBNiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjYgOWEzIDMgMCAxMS02IDAgMyAzIDAgMDE2IDB6TTMgMTVhMyAzIDAgMTAwLTYgMyAzIDAgMDAwIDZ6bTEwIDZhMyAzIDAgMTAwLTYgMyAzIDAgMDAwIDZ6IiBmaWxsPSIjM0U3REE2Ii8+PC9zdmc+);height:1.625rem;width:1.625rem}div.resource_list{padding:0 1.5rem 1.8125rem}.resource_list h3{color:#242748;font-weight:400}div.resource_list li{line-height:1.5rem;margin-bottom:1rem;position:relative}div.resource_list li::before{background-image:url(../../../images/arrow-right-icon-help-page.svg);background-repeat:no-repeat;content:"";display:inline-block;height:1.375rem;position:absolute;top:2px;width:1.375rem}.resource_list a:focus{box-shadow:none}.forms_page_gf_help div.gforms_help h2{color:#242748;font-size:2.375rem;font-weight:600;margin-bottom:2.3125rem}.gf_help_content{margin:0 auto 2.875rem;max-width:823px}#gf_help_page_search{margin-bottom:4.25rem}.gforms_help{margin:4.375rem auto 0;max-width:1000px;text-align:center}#gf_help_page_search input{border:1px solid #dee1ec;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);font-size:.875rem;height:3.0625rem;padding-left:3.5625rem;width:100%}#gf_help_page_search input::-moz-placeholder{color:#5b5e80}#gf_help_page_search input::placeholder{color:#5b5e80}div#gforms_helpboxes{display:flex;justify-content:space-between;text-align:left}div.gforms_helpbox{background-color:#fff;border-radius:.375rem;box-shadow:0 1px 4px rgba(18,25,97,.0779552);box-sizing:border-box;flex-basis:301px;font-size:.875rem;margin:.625rem 0}div.gforms_helpbox select{width:460px}div.gforms_helpbox ul.resource_list{margin-top:.25rem}div.gforms_helpbox ul.resource_list li{margin:0 0 .75rem!important}div.gforms_helpbox ul.resource_list li a{margin-left:.125rem;text-decoration:none}div.gforms_helpbox ul.resource_list li a:active,div.gforms_helpbox ul.resource_list li a:hover{text-decoration:underline}@media screen and (max-width:1200px){div#gforms_helpboxes{justify-content:space-around;margin:0 2%}div.gforms_helpbox{flex-basis:29%}.gf_help_content{max-width:600px}}@media screen and (max-width:782px){div#gforms_helpboxes{display:inline;display:initial}div.gforms_helpbox{margin:0 auto 3.125rem;max-width:400px}.forms_page_gf_help #hexagons-bg-orange{left:-256px}.forms_page_gf_help #hexagons-bg-dark-blue{right:-240px}.gforms_help{padding:0 10%}}body.forms_page_gf_entries.auto-fold .gforms_edit_form{top:-.625rem}@media (min-width:783px){body.forms_page_gf_entries.auto-fold .gforms_edit_form{top:0}}body.forms_page_gf_entries.auto-fold #wpcontent{padding-left:0}.ginput_full_admin label,body.forms_page_gf_entries table.entry-details td.detail-view label.detail-label{display:block;font-size:13px;font-weight:700;margin-bottom:4px}body.forms_page_gf_entries div.ginput_complex_admin .ginput_full_admin label{font-size:11px;font-weight:400}body.forms_page_gf_entries table.entry-details .gchoice,body.forms_page_gf_entries table.entry-details .gfield_radio>div{line-height:1.8}body.forms_page_gf_entries table.entry-details .gfield_consent_description,body.forms_page_gf_entries table.entry-details input:not([type=checkbox]):not([type=radio]),body.forms_page_gf_entries table.entry-details input[type=text]{width:99%}body.forms_page_gf_entries table.entry-details .ginput_container_consent input{width:auto}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right_admin{display:-moz-inline-stack;display:inline-block;width:49%}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin{margin-right:1rem}body.forms_page_gf_entries .ginput_left_admin label,body.forms_page_gf_entries .ginput_right_admin label{display:block}body.forms_page_gf_entries .ginput_left_admin input[type=text]{width:99%!important}body.forms_page_gf_entries select.medium_admin{max-width:400px}body.forms_page_gf_entries textarea.medium_admin{min-height:250px;min-width:475px;width:98%}body.forms_page_gf_entries h2.detail_gsection_title{font-family:helvetica,arial,sans-serif;font-size:16px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:0!important;padding:0!important}body.forms_page_gf_entries div.ginput_complex_admin span label{display:block;font-size:.8rem;margin:4px 0}.datepicker,body.forms_page_gf_entries table.entry-details input[type=text].datepicker{width:7rem}body.forms_page_gf_entries table.entry-details .ginput_container_time input[type=number]{width:4.5rem}.gform_installation_progress_step_wrap{padding-left:1.25rem}#gform_installation_progress li{display:inline-block;padding:.625rem 1.562rem .625rem 0}.gform_installation_progress_current_step,.gform_installation_progress_step_complete,.gform_installation_progress_step_wrap p{color:#000}.gform_installation_progress_step_pending{color:silver}ul#form_autoresponder_container,ul#form_notification_container{width:95%}ul#form_autoresponder_container li,ul#form_notification_container li{margin-bottom:15px!important}ul#form_autoresponder_container li label,ul#form_notification_container li label{display:block;margin-bottom:8px!important}#confirmation_list_form .check-column,#notification_list_form .check-column{width:75px}#confirmation_list_form .check-column img.pending{transform:translateX(50%)}.gform-notification-service{display:inline-block;margin-bottom:5px;text-align:center}.gform-notification-service input:checked+label>span{-moz-filter:none;filter:none}.gform-notification-service label>span{background-repeat:no-repeat;display:inline-block;-moz-filter:brightness(1.8) grayscale(1) opacity(0.5);filter:brightness(1.8) grayscale(1) opacity(.5);height:65px;padding-top:5px;transition:all .1s ease-in;width:130px}.gform-notification-service input{display:none}.gform-notification-service label>span>img{height:32px;margin:5px;vertical-align:middle;width:32px}.gform-notification-service label{background-color:#f9f9f9;border:1px solid #eee}.gform-notification-service input:not([disabled]):not([checked])+label>span:hover{-moz-filter:brightness(1.2) grayscale(0.5) opacity(0.9);filter:brightness(1.2) grayscale(.5) opacity(.9)}.toplevel_page_gf_splash #wpcontent{padding-left:0}.toplevel_page_gf_splash #wpcontent #wpbody-content{background:#fff;padding:0}.gform-splash{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:4.5rem auto;max-width:1280px;width:94%}.gform-splash,.gform-splash *{box-sizing:border-box}.gform-dialog--full-screen .gform-splash{margin:0;padding:0;width:100%}.gform-splash__header{background:#242748;color:#fff;min-height:17.875rem;overflow:hidden;padding:3.75rem 1.875rem 0 1.875rem;position:relative;text-align:center;z-index:5}@media (min-width:783px){.gform-splash__header{padding-left:5.812rem;padding-right:5.812rem}}.gform-splash__header .gform-logo{display:block;margin:0 auto 3.25rem auto;max-width:90%;width:18.75rem}.gform-splash__header h1{color:#fff;font-size:3rem;font-weight:700;letter-spacing:-1px;line-height:112%;margin:0 auto 1.375rem auto;max-width:53rem;text-align:center}@media (min-width:783px){.gform-splash__header h1{font-size:4.5rem}}.gform-splash__header p{color:#ecedf8;font-size:1.25rem;line-height:150%;margin:0 auto 2.125rem auto;max-width:48rem;text-align:center}.gform-splash__header .gform-reviews{font-size:1rem;font-weight:500;margin:0 auto 2.812rem auto;padding-top:2.5rem}.gform-splash__header .gform-reviews a{align-items:center;color:#fff;display:flex;justify-content:center;text-decoration:none}.gform-splash__header .gform-reviews a:focus{box-shadow:none}.gform-splash__header .gform-reviews img{height:2.187rem}.gform-splash__header .gform-reviews .gform-reviews__stars{color:#ffbe03;font-size:1.3rem;letter-spacing:-.15rem;padding:0 1rem}.gform-splash__header .gform-splash__header-bottom-image{display:block;width:100%}.gform-splash__header .gform-splash__back-link{align-items:center;border:1px solid transparent;border-radius:3px;color:#fff;display:inline-flex;font-size:2rem;height:2rem;justify-content:center;position:absolute;right:15px;text-decoration:none;top:15px;width:2rem}.gform-splash__header .gform-splash__back-link:focus{box-shadow:none;color:#f6f9fc;outline:0}.gform-splash__header .gform-splash__back-link.focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__header .gform-splash__back-link.focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__header .gform-splash__back-link:focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__body{background:#fff;overflow:hidden;position:relative}.gform-splash__body h2{font-size:2.25rem;line-height:1.16;text-align:center}.gform-splash__body h3{font-size:1.875rem;line-height:1.7}.gform-splash__body h4{font-size:1.5rem;line-height:1.95}.gform-splash__body p{font-size:1rem;line-height:1.562rem}.gform-splash__body a{color:#242748;-webkit-text-decoration:solid underline #242748 1px;text-decoration:solid underline #242748 1px;text-underline-offset:2px;transition:text-decoration-color .15s ease}.gform-splash__body a:focus,.gform-splash__body a:hover{text-decoration-color:transparent}.gform-splash__section{margin:3.25rem auto;max-width:64rem;position:relative;width:94%;z-index:10}@media (min-width:783px){.gform-splash__section{margin:4rem auto}}.gform-splash__section--text-and-image{margin-bottom:5rem}.gform-splash__section--text-and-image .gform-splash-text{margin-bottom:2.5rem}.gform-splash__section--text-and-image .gform-splash-text>:first-child{margin-top:0}.gform-splash__section--text-and-image .gform-splash-text>:last-child{margin-bottom:0}@media (min-width:783px){.gform-splash__section--text-and-image{display:flex;margin-bottom:6.5rem}.gform-splash__section--text-and-image .gform-splash-text{margin:0;padding-right:6%;width:37.5%}.gform-splash__section--text-and-image .gform-splash-image-wrapper{width:62.5%}.gform-splash__section--text-and-image.gform-splash__section--image-left{flex-direction:row-reverse}.gform-splash__section--text-and-image.gform-splash__section--image-left .gform-splash-text{padding-left:6%;padding-right:0}}.gform-splash__section--text-and-image.gform-splash__section--image-spread-left .gform-splash-image{margin-left:-3.7%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-left .gform-splash-image{margin-left:-2.3%}.gform-splash__section--text-and-image.gform-splash__section--image-spread-right .gform-splash-image{margin-left:-3.7%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-right .gform-splash-image{margin-left:-2.3%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-down .gform-splash-image,.gform-splash__section--text-and-image.gform-splash__section--image-spread-down .gform-splash-image{margin-bottom:-5%}.gform-splash-image img{display:block;width:100%}.gform-splash-image img.image--width-auto{width:auto}.gform-splash__section--full-width-text{margin:2rem auto 3.375rem}.gform-splash__section--columns{margin:3.375rem auto}.gform-splash__section--columns .column{margin:2.5rem 0}.gform-splash__section--columns .column>:first-child{margin-top:0}.gform-splash__section--columns .column>:last-child{margin-bottom:0}@media (min-width:783px){.gform-splash__section--columns .columns{display:flex;justify-content:space-between;margin:0 -2rem}.gform-splash__section--columns .column{flex:none;margin:0;padding:0 2rem;width:50%}}.gform-splash__section--columns.column--vertical-center .column{align-items:center;display:flex;justify-content:center}.gform-splash__footer{background:#242748;color:#fff;margin-top:3.375rem;overflow:hidden;padding:7.5rem 2rem;position:relative;text-align:center;width:100%;z-index:5}.gform-splash__footer img{height:auto;width:7.5rem}.gform-splash__footer h4{display:inline-block;font-size:3rem;font-weight:700;line-height:112%;margin:0 0 1.25rem 0;position:relative}@media (min-width:783px){.gform-splash__footer h4::before{background-image:repeating-linear-gradient(to bottom,transparent,transparent 4px,#242748 4px,#242748 23.5px),repeating-linear-gradient(to right,#9092b0,#9092b0 4px,#242748 4px,#242748 23.5px);content:"";display:block;height:9.375rem;left:-8.5rem;opacity:.6;position:absolute;top:-5rem;width:9.375rem;z-index:-1}}.gform-splash__footer p{color:#ecedf8;font-size:1.125rem;line-height:156%;margin:0 auto 1.25rem auto;max-width:32rem}.gform-splash__footer::after,.gform-splash__footer::before{content:"";display:block;position:absolute;z-index:1}.gform-splash__footer::before{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IiM0MkU5RjQiLz4KPC9zdmc+) center center no-repeat;background-size:contain;height:280px;left:-219px;top:-118px;transform:rotate(30deg);width:280px}@media (min-width:783px){.gform-splash__footer::before{height:344px;width:335px}}.gform-splash__footer::after{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IiNGMTVBMkIiLz4KPC9zdmc+) center center no-repeat;background-size:contain;bottom:-68px;height:200px;right:-152px;width:200px}@media (min-width:783px){.gform-splash__footer::after{height:280px;width:280px}}.toplevel_page_gf_splash #wpfooter{display:none}.gform-splash__background{position:absolute;z-index:0}.gform-splash__background-one{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;left:-530px;opacity:.16;top:0;width:740px}.gform-splash__background-two{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;opacity:.16;right:-530px;top:0;width:740px}.gform-splash__background-three{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:652px;opacity:.16;position:absolute;right:-500px;top:20%;width:652px}.gform-splash__background-four{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;left:-530px;opacity:.16;top:48%;width:740px}.gform-splash__background-five{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);height:740px;opacity:.16;position:absolute;right:-530px;top:51%;width:740px}.gform-splash__background-six{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);bottom:4%;height:740px;left:-530px;opacity:.16;position:absolute;width:740px}.gform-splash__background-seven{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);bottom:3%;height:740px;opacity:.16;position:absolute;right:-530px;width:740px}html[dir=rtl] .toplevel_page_gf_splash #wpcontent{padding-left:0;padding-right:0}@media (min-width:783px){html[dir=rtl] .gform-splash__section--text-and-image .gform-splash-text{padding-left:6%;padding-right:0}html[dir=rtl] .gform-splash__section--text-and-image.gform-splash__section--image-left .gform-splash-text{padding-left:0;padding-right:6%}}.gform-admin .gform-dialog .gform-dialog__content .gform-splash__header p{color:#ecedf8;font-size:1.25rem;line-height:150%;margin:0 auto 2.125rem auto;max-width:48rem;text-align:center}.gform-admin .gform-dialog .gform-dialog__content .gform-splash__footer p{color:#ecedf8;font-size:1.125rem;line-height:156%;margin:0 auto 1.25rem auto;max-width:32rem}div.gforms_code{background-color:#e2edff;border:1px solid #d2e0eb;font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px;margin:10px 0;padding:10px;width:700px}div.gforms_code pre{display:block;font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px;font-weight:400!important;line-height:18px;margin:0;overflow:hidden;padding:6px 10px 6px 0;position:relative;white-space:pre-wrap;word-wrap:break-word;z-index:100}.form_head .form_delete_iconx,.gform_heading .form_edit_iconx{display:block}.settings_control_container{height:18px}.gform-admin-screen .editor-sidebar li.next_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)],.gform-admin-screen .editor-sidebar li.previous_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)],.gform-admin-screen .inline{display:-moz-inline-stack!important;display:inline-block!important}.gform-admin-screen .editor-sidebar li.next_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip),.gform-admin-screen .editor-sidebar li.previous_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip),.gform-admin-screen .inline{display:-moz-inline-stack!important;display:inline-block!important}.gform-admin-screen .editor-sidebar input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)]{display:inline!important}.gform-admin-screen .editor-sidebar input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip){display:inline!important}.gform-admin-screen .editor-sidebar li.email_confirm_setting.field_setting input[type=checkbox]+label.inline,.gform-admin-screen .editor-sidebar li.post_category_initial_item_setting.field_setting input[type=checkbox]+label.inline{display:inline!important}label.float_label{float:left;padding:2px 0 0;width:40px}.field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],.field_sublabel_hidden_label .ginput_complex.ginput_container select{margin-bottom:.75rem}#gform_fields li ul li{padding:2px 0 4px 0}.gforms_form_settings li{border:1px solid transparent;overflow:hidden;padding:2px 0 4px 0}.gform_page_names li{padding:5px 0!important}#gform_heading{border:1px solid transparent;margin-bottom:10px;overflow:hidden;padding:8px 10px 10px 10px;position:relative;width:480px!important}img#gfield_input_datepicker_icon{left:4px;position:relative;top:3px}#date_picker_container{margin:8px 0}#gfield_icon_url_container{margin-top:5px}td.content_center,th.content_center{text-align:center!important}tr img[src$="/images/active0.svg"],tr img[src$="/images/active1.svg"]{display:-moz-inline-stack;display:inline-block;height:auto;margin:0;width:35px}.gform-settings-panel .wp-list-table.feeds tr img[src$="/images/active0.svg"],.gform-settings-panel .wp-list-table.feeds tr img[src$="/images/active1.svg"]{width:30px}#notification_action_type{display:none}#notification_logic_type{margin-left:5px}div.settings_control_container div.gfield_admin_header_title{margin-top:-4px}.gform-icon--entries-edit{font-size:1.5rem}.gform-icon--entries-edit:active,.gform-icon--entries-edit:hover{color:#707070}.gform-admin-screen .option_header{font-weight:700;margin:5px 0 2px}img.gtitle_icon{float:left;margin:15px 7px 0 0}td.pad_top{padding-top:10px}.gform_merge_tags{width:200px}.gform_editor_merge_tags{width:190px}.gform_content_template_merge_tags{width:165px}.gform_column_wrapper{display:flex;justify-content:space-between}.gform_column_wrapper .panel{border:1px solid #9092b2;border-radius:5px;overflow:hidden}h2.gsection_title,h3.gsection_title{border-bottom:1px solid #ccc!important;font-family:helvetica,arial,sans-serif;font-size:20px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:16px 0;padding:0 0 16px 0!important;width:100%}.gsection .gfield_label{font-family:helvetica,arial,sans-serif;font-size:16px;font-weight:700}.gsection_description{clear:both;font-family:sans-serif;font-size:13px;line-height:1.5;padding-top:4px;width:100%}.gfield_date_year+.gfield_description,.gsection_description{padding:0 0 8px}.gfield{position:relative}.gfield_label{word-break:break-all}ul.gfield_checkbox,ul.gfield_radio{margin:6px 0}.gfield_checkbox li,.gfield_radio li{padding:0!important;position:relative}.gfield_checkbox li label,.gfield_radio li label{display:block;line-height:1.5;margin:0 0 0 24px;padding:0!important;vertical-align:top;width:auto}.gchoice_select_all{font-weight:700}.gfield_checkbox li input,.gfield_checkbox li input[type=checkbox],.gfield_radio li input[type=radio]{float:left;margin-top:2px}.description,.gfield_description,.instruction{clear:both;font-family:inherit;font-size:.8rem;line-height:1.5}.gfield_consent_description{border:1px solid #ddd;margin-top:12px;max-height:320px;overflow-y:scroll;padding:6px 8px;width:100%}.description_above .gfield_description.gfield_consent_description,.description_below .gfield_description.gfield_consent_description{padding:6px 8px}.entry-view-field-value .gfield_consent_description{width:calc(100% - 40px)}.description_above .gfield_description{padding:0 0 10px 0}.left_label div.gfield .gfield_description,.left_label div.gfield .instruction,.left_label fieldset.gfield .gfield_description,.right_label div.gfield .gfield_description,.right_label div.gfield .instruction,.right_label fieldset.gfield .gfield_description{margin-left:30%}@media (max-width:640px){.left_label div.gfield .gfield_description,.left_label div.gfield .instruction,.left_label fieldset.gfield .gfield_description,.right_label div.gfield .gfield_description,.right_label div.gfield .instruction,.right_label fieldset.gfield .gfield_description{margin-left:0}}.left_label .gsection .gsection_description,.right_label .gsection .gsection_description{line-height:1.5;margin-left:0;padding-left:0;padding-top:10px}.gfield_required{color:#9e0b0f;line-height:1rem;margin-left:4px}textarea.small{height:80px}textarea.medium{height:150px}textarea.large{height:250px}div.gfield_admin_icons{cursor:move;height:24px;padding-top:6px}div.gform_admin_icons{height:20px}ul#gform_fields.left_label div.gfield_admin_icons,ul#gform_fields.right_label div.gfield_admin_icons{height:30px}div.gfield_admin_icons div.gfield_admin_header_title,div.gform_admin_icons div.gform_admin_header_title,div.settings_control_container div.gfield_admin_header_title{display:none}#form_settings{margin-top:10px;padding-top:2px}#form_settings h3 span i[class*=" fa-"],#form_settings h3 span i[class^=fa-],.gform_tab_container h3 span i[class*=" fa-"],.gform_tab_container h3 span i[class^=fa-]{color:#0074a2}#tab_gravityformslogging .gforms_form_settings th{width:auto}.input_size_a,.textarea_size_a{width:375px}.form_button_options{margin:8px 0}#form_button_image_container,#form_button_text_container{margin-top:8px!important}.captcha_message{padding:5px}#after_insert_dialog div{padding-bottom:10px}#simplemodal-overlay{background-color:#000;cursor:default}#simplemodal-container{background-color:#f9f9f9;border:6px solid #636363;border-radius:8px;height:355px;padding:20px 20px 0;width:400px}#simplemodal-container a.modalCloseImg{background-image:url(../../../images/icon-close.png);background-repeat:no-repeat;cursor:pointer;display:inline;height:29px;position:absolute;right:-18px;top:-14px;width:25px;z-index:3200}.field-choice-handle{cursor:move;vertical-align:middle}#gfield_settings_category_container{margin:8px 0 0;max-height:230px}#field_columns li{margin:0!important;padding:0!important}#field_columns{margin:0!important;padding:10px 0!important}.input_active_icon{cursor:pointer;margin:10px 5px 0 0}#field_choices li input.field-choice-value,.field_input_choices li input.field-choice-value{display:none}#field_choices li input.field-choice-price{display:none}.gfield_choice_header_label{display:none!important;padding-left:51px}.gfield_choice_header_value{display:none!important}.gfield_choice_header_price{display:none!important}.choice_with_value li input.field-choice-value{display:inline!important}.choice_with_value .gfield_choice_header_label{display:inline!important}.choice_with_value .gfield_choice_header_value{display:inline-block!important;padding-left:120px}.choice_with_value_and_price li input.field-choice-value{display:flex!important}.choice_with_value_and_price li input.field-choice-price{display:flex!important}.choice_with_value_and_price .gfield_choice_header_label{display:inline-block!important}.choice_with_value_and_price .gfield_choice_header_value{display:inline-block!important;padding-left:70px}.choice_with_value_and_price .gfield_choice_header_price{display:inline-block!important;padding-left:70px}.choice_with_price li input.field-choice-price{display:flex!important}.choice_with_price .gfield_choice_header_label{display:inline-block!important}.choice_with_price .gfield_choice_header_price{display:inline-block!important;padding-left:120px}#field_columns li input.field-choice-value{display:none}#field_columns li input.field-choice-price{display:none}#field_columns li input.gfield_choice_radio{display:none}#field_columns li input.gfield_choice_checkbox{display:none}#field_columns li input.field-choice-text{width:312px!important}div.gf_payment_detail{margin-bottom:15px}table.entry-detail-view{margin-bottom:16px}table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{background-color:#eee;border-bottom:1px solid #dfdfdf;font-size:14px;font-weight:700;padding:7px}td.entry-view-field-name{background-color:#eaf2fa;border-bottom:1px solid #fff;font-weight:700;line-height:1.5;padding:7px}td.entry-view-field-value{border-bottom:1px solid #dfdfdf;line-height:1.8;padding:7px 7px 7px 40px}td.entry-view-field-value p{text-align:left}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}div.note-meta-container{font-size:0;white-space:nowrap}div.note-avatar{display:inline-block;height:48px;margin-right:8px;vertical-align:middle;width:48px}.note-has-email div.note-avatar{vertical-align:top}div.note-meta{display:inline-block;left:-48px;margin-left:48px;position:relative;vertical-align:middle;white-space:normal}span.note-divider{opacity:.25}.note-author{display:inline;font-size:.9rem;font-weight:700;line-height:1;margin:0 0 2px;padding:0}.note-email{font-size:.9rem;line-height:1.3;margin:0!important;padding:0!important;text-align:left}.note-email::before{color:#dadada;content:"\2014";margin:0 5px}.detail-note-content{background-color:#f7f7f7;border-left:4px solid #ddd;line-height:1.8rem;margin:1em 0;padding:1rem;position:relative}.detail-note-content p{line-height:30px}.detail-note-content.gforms_note_success{background-color:#ecfcde;border-left-color:#a7c886}.detail-note-content.gforms_note_warning{background-color:#fffbcc;border-left-color:#e6db55}.detail-note-content.gforms_note_error{background-color:#ffebe8;border-left-color:#c00}div.gforms_note_content{margin:0}div.gforms_note_content p:last-child{margin-bottom:0}.note-meta-container .note-date{display:block;font-size:.8rem;line-height:1}.bulk-left-panel-wrapper{height:330px;width:250px}.bulk-left-panel{height:100%;overflow-x:hidden;overflow-y:scroll;padding:0;position:relative;width:100%}.bulk-left-panel ul{border-radius:5px}.bulk-left-panel ul li{margin:0;padding:0}html[dir=rtl] .bulk-left-panel ul li{text-align:right}.bulk-left-panel ul li a.bulk-choice{border-bottom:1px solid #ecedf8;color:#242748;display:block;padding:8px 10px;text-decoration:none;width:100%}.bulk-left-panel ul li:last-child a.bulk-choice{border-bottom:none}.bulk-left-panel ul li a.bulk-choice:focus,.bulk-left-panel ul li a.bulk-choice:hover{background-color:#f6f9fc;outline:0}.bulk-left-panel ul li.choice_section_header{background-color:#f6fbfd;border-bottom:1px solid #ecedf8;color:#21759b;display:block;padding:5px;text-align:center;text-decoration:none}a.bulk-choice:first-child{border-top:none}.bulk-arrow-mid{align-items:center;display:flex;height:330px;justify-content:center;width:64px}.bulk-right-panel{width:250px}textarea#gfield_bulk_add_input{border:none;height:100%;padding:6px;width:100%}textarea#gfield_bulk_add_input:focus{outline:0}div.panel-buttons{display:-moz-inline-stack;display:inline-block}div.panel-custom{display:-moz-inline-stack;display:inline-block;margin-left:1em}div.panel-custom a{font-weight:600;text-decoration:none}html[dir=rtl] div.panel-custom{margin-right:1em}html[dir=rtl] div.panel-custom a span{display:inline-block;transform:rotate(180deg)}div#bulk_custom_message{position:absolute;top:11px;width:250px}div#bulk_custom_edit{position:absolute;top:20px}.updated_base{background-color:#fff;border:1px solid #fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:10px 15px 10px 0;padding:0 .6rem}.updated_base p{line-height:1;margin:.5em 0;padding:2px}.wrap .updated_base{margin:10px 15px 24px 0}table.form-table td .updated_base{font-size:13px}.error_base{background-color:#ffebe8;border-color:#c00;border-radius:3px;border-style:solid;border-width:1px;margin:10px 15px 10px 0;padding:0 .6rem}.error_base p{line-height:1;margin:.5em 0;padding:2px}.wrap .error_base{margin:10px 15px 10px 0}table.form-table td .error_base{font-size:13px}.gf_input_error_icon{background-image:url(../../../images/exclamation.png);display:-moz-inline-stack;display:inline-block;float:right;height:16px;margin-top:-16px;position:relative;right:-20px;top:18px;width:16px}li.gfield_html label.gfield_label{height:18px}.gfield_captcha_input_container{padding-top:3px}.simple_captcha_small input{width:100px}.simple_captcha_medium input{width:150px}.simple_captcha_large input{width:200px}.left_label .simple_captcha_large,.left_label .simple_captcha_medium,.left_label .simple_captcha_small,.right_label .simple_captcha_large,.right_label .simple_captcha_medium,.right_label .simple_captcha_small{margin-left:32%}.math_small input{width:69px}.math_medium input{width:90px}.math_large input{width:108px}.left_label .math_large,.left_label .math_medium,.left_label .math_small,.right_label .math_large,.right_label .math_medium,.right_label .math_small{margin-left:32%}table.entry-products{border:1px solid #c3c4c7;margin:10px 0}table.entry-products th[scope=col]{background-color:#fff;border-bottom:1px solid #c3c4c7;padding:7px 5px 8px}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3{width:155px}table.entry-products col.entry-products-col4{width:155px}table.entry-products thead th:last-child{text-align:right}table.entry-products tfoot tr:first-child td{border-top:1px solid #e5e5e5}table.entry-products td{color:#51575d;font-size:.75rem;font-weight:600;padding:.796875rem 5px}table.entry-products tfoot td{font-size:.8rem;font-weight:700;padding:.5rem}table.entry-products tbody tr:nth-child(odd){background-color:#f9f9f9}table.entry-products td:last-child{text-align:right}table.entry-products td:nth-child(2){text-align:left}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.emptycell{background-color:#fff}table.entry-products td div.product_name{color:#3a70ac;font-size:13px;font-weight:700;margin-bottom:5px}table.entry-products td.grandtotal_amount{color:#367b5e;font-size:1rem}table.entry-products td ul.product_options li{background-image:url(../../../images/prodlist.png);background-position:0 0;background-repeat:no-repeat;margin:0 0 0 2px!important;overflow:visible;padding:4px 0 4px 16px}table.entry-products td ul.product_options li.lastitem{background-image:url(../../../images/prodlist-last.png)}.ginput_container_password span{position:relative}.ginput_container_password span button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;padding:3px 0;pointer-events:none;position:absolute;right:1px;text-align:center;top:1px;width:30px}.ginput_container_password span button .dashicons{font-size:16px;height:16px;width:16px}.password_input_container{display:block;position:relative}.gfield_password_strength{background-color:#eee;border-color:#ddd!important;border-style:solid;border-width:1px;float:left;line-height:1.8;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:96%}ul.left_label .gfield_password_strength,ul.right_label .gfield_password_strength{margin-left:32.5%}p.search-box{margin:12px 0 0 0}#gform-settings .column-is_active{padding-top:9px;vertical-align:top;width:75px}div#gform_heading.selectable.field_selected{background-color:#f6fbfd;background-image:url(../../../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;padding-top:8px}div.gf_renew_license,div.gf_upgrade_license{grid-column:span 2}div.gf_renew_license{background-color:#faf2f5;border:1px solid #cfadb3;color:#832525;padding:10px 0 20px 20px}p.gform_renew_expired strong{color:#9e0b0f}div.gf_upgrade_license h4{font-size:14px;margin:0;padding:0}div.gf_upgrade_business_license,div.gf_upgrade_developer_license{background-position:0 0;background-repeat:no-repeat;min-height:175px;padding:14px 0 0 140px}div.gf_upgrade_developer_license{background-image:url(../../../images/gravityforms-developer-upgrade.png);background-size:133px 169px;margin:30px 0 0 0}div.gf_upgrade_business_license{background-image:url(../../../images/gravityforms-business-upgrade.png);background-size:133px 169px;margin:0}p.gform_renew_expired,p.gform_renew_not_expired{background-position:0 0;background-repeat:no-repeat;font-size:1.4rem}a.gf_upgrade_link{background:#d54e21;border:solid #c4461c 4px;border-radius:4px;color:#fff;display:-moz-inline-stack;display:inline-block;font-family:Arial;font-size:16px;padding:10px 20px 11px 20px;text-decoration:none;text-shadow:1px 1px 2px #c24319}a.gf_upgrade_link:hover{background:#db5428;text-decoration:none}.gf_update_current,.gf_update_expired,.gf_update_outdated{margin-top:20px;padding:10px}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);position:relative}.alert_green{background-color:#fff;border-bottom:none;border-left:4px solid #7ad03a;border-right:none;border-top:none;color:#424242}.alert_yellow{background-color:#fff;border-bottom:none;border-left:4px solid #ffba00;border-right:none;border-top:none;color:#424242}.alert_gray{background-color:#fff;border-bottom:none;border-left:4px solid #ccc;border-right:none;border-top:none;color:#424242}.alert_blue{background-color:#fff;border-bottom:none;border-left:4px solid #2ea2cc;border-right:none;border-top:none;color:#424242}.alert_red,ul#gform_fields li#no-fields div.newform_notice{background-color:#fff;border-bottom:none;border-left:4px solid #dd3d36;border-right:none;border-top:none;color:#424242}span.gf_keystatus_invalid_text,span.gf_keystatus_valid_text{display:-moz-inline-stack;display:inline-block}i.gf_keystatus_valid,i.gf_valid,span.gf_keystatus_valid_text{color:green}i.gf_invalid,i.gf_keystatus_invalid,span.gf_invalid,span.gf_keystatus_invalid_text{color:#9e0b0f}span.gf_keystatus_invalid_text{color:#9e0b0f}.gfield_checkbox .gchoice_total,.gfield_radio .gchoice_total{color:#878787;font-size:.6875rem;padding-top:.875rem!important}body #wpcontent #wpbody #wpbody-content{overflow:visible}div.ui-widget-content{background-color:#fafafa}div#gform_heading.selectable div#form_settings.ui-tabs,div#pagination_settings.ui-tabs{border:none!important}div.ui-tabs div.ui-tabs-panel{background-color:#fff;border-bottom:1px solid #d2e0eb;border-left:1px solid #d2e0eb;border-right:1px solid #d2e0eb}div.ui-widget-content li.ui-state-active{border-left:1px solid #d2e0eb!important;border-right:1px solid #d2e0eb!important;border-top:1px solid #d2e0eb!important}ul.ui-widget-header{border-bottom:1px solid #d2e0eb!important}div.ui-widget-content li.ui-state-default{background-color:#d2e0eb!important;border-bottom:1px solid #d2e0eb;border-left:1px solid #d2e0eb!important;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;border-right:1px solid #d2e0eb!important;border-top:1px solid #d2e0eb!important;border-top-left-radius:4px;border-top-right-radius:4px}div.ui-widget-content li.ui-state-default a{color:#21759b}div.ui-widget-content li.ui-state-default.ui-state-active{background-color:#fff!important;background-image:none!important;border-bottom:1px solid #fff!important}div.ui-widget-content li.ui-state-default.ui-state-active a{color:#212121}li.gform_setting_left_half{display:-moz-inline-stack;display:inline-block;height:60px;margin-right:2%;vertical-align:top;width:44%}li.gform_setting_right_half{clear:right;display:-moz-inline-stack;display:inline-block;height:60px;margin-right:2%;vertical-align:top;width:44%}li.gform_setting_left_half input,li.gform_setting_left_half select,li.gform_setting_right_half input,li.gform_setting_right_half select{width:95%}#contextual-help-link-wrap{display:none}#gf_form_toolbar{background:#fff;border-bottom:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;color:#555;display:inline-block;font-size:13px;margin:12px 0 0;padding:4px 10px 0 10px;width:100%}ul#gf_form_toolbar_links{display:flex;margin:0;position:relative}#edit-title-close{color:#999;cursor:pointer;position:absolute;right:4px;width:16px}#gform_settings_page_title_error{color:red;margin-left:5px}#edit-title-header{background:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px 1px 0 1px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);font-size:14px;margin:0!important;min-height:24px;overflow:hidden;padding:8px 12px 5px;position:relative;white-space:nowrap}#edit-title-container{position:absolute;top:50px;visibility:hidden;width:350px;z-index:9999}#edit-title-input{font-size:14px;margin-bottom:20px;width:100%}#edit-title-label{display:block;font-size:14px;font-weight:700;margin-bottom:2px}#gform_settings_page_title{border-radius:2px;padding:5px 10px 5px 10px}.gform_settings_page_title_editable{cursor:pointer}.gform_settings_page_title_editable:hover{background-color:#e5e5e5;border-radius:2px}#form_switcher{display:none;max-width:300px;min-width:130px}.form_switcher_arrow{display:inline-block;margin-left:1.5rem;outline:0}.form_switcher_arrow svg{outline:0;vertical-align:middle}.form_switcher_arrow svg path{outline:0}body>.select2-container.gform-select2[style]{left:0;position:static!important;top:0}.gform-form-switcher__container{background:#fff;border:1px solid #c3c5db;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);position:absolute;transform:scale(.95);transform-origin:top left;transition:.1s all;width:14.625rem!important;z-index:10000}.gform-form-switcher__container input[type=text].select2-search__field{background:#fff no-repeat 20px center url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi40NjggMTEuMTY1YTYuOTQ3IDYuOTQ3IDAgMTAtMS4zMDMgMS4zMDNsMS42NDQgMS42NDQtLjAyNS4wMjVhMS41IDEuNSAwIDAwMCAyLjEyMWwyLjIyMSAyLjIyYTEuNSAxLjUgMCAwMDIuMTIxIDBsMS4zNTMtMS4zNTJhMS41IDEuNSAwIDAwMC0yLjEybC0yLjIyLTIuMjIyYTEuNSAxLjUgMCAwMC0yLjEyMiAwbC0uMDI1LjAyNS0xLjY0NC0xLjY0M3ptLTUuNTIuOTkzYTUuMjEgNS4yMSAwIDEwMC0xMC40MjEgNS4yMSA1LjIxIDAgMDAwIDEwLjQyMXptNi45NDcgMy4wNGwxLjMwMi0xLjMwMyAyLjE3MiAyLjE3LTEuMzAzIDEuMzAzLTIuMTcxLTIuMTd6IiBmaWxsPSIjQkNDN0QwIi8+PC9zdmc+);background-size:19px;border:1px solid #c3c5db;border-radius:3px;box-shadow:none;font-size:.875rem;margin:.675rem .575rem;outline:0;padding:.5625rem 1.1875rem .5625rem 3.5625rem;width:calc(100% - 1.35rem)}.gform-form-switcher__container input[type=text].select2-search__field::-moz-placeholder{color:#9092b0}.gform-form-switcher__container input[type=text].select2-search__field::-moz-placeholder,.gform-form-switcher__container input[type=text].select2-search__field::-ms-input-placeholder,.gform-form-switcher__container input[type=text].select2-search__field::placeholder{color:#9092b0}.gform-form-switcher__container input[type=text].select2-search__field:focus{background-image:none;border:1px solid rgba(62,125,166,.55)!important;box-shadow:0 0 1px 1px rgba(62,125,166,.55);padding:.5625rem 1.1875rem}.gform-form-switcher__container .select2-results__options{border-radius:0 0 3px 3px;border-top:1px solid #d9dae6;max-height:9.1875rem;overflow-y:auto}.gform-form-switcher__container .select2-results__options li{color:#5b5e80;cursor:pointer;font-size:.8125rem;line-height:1.1875rem;margin:0;padding:1.0625rem 1.1875rem}.gform-form-switcher__container .select2-results__options li:last-child{border-bottom:none}.gform-form-switcher__container .select2-results__options li:focus,.gform-form-switcher__container .select2-results__options li:hover{background:#f5f6fb;color:#242748;outline:0}div#gravity-edit-icon,div#gravity-entry-icon,div#gravity-export-icon,div#gravity-help-icon,div#gravity-import-icon,div#gravity-notification-icon,div#gravity-settings-icon,div#gravity-title-icon,div#gravity-update-icon{background-image:url(../../../images/gf-32-iconsprite.png);background-repeat:no-repeat}div#gravity-edit-icon{background-position:0 0}div#gravity-entry-icon{background-position:0 -50px}div#gravity-export-icon{background-position:0 -100px}div#gravity-help-icon{background-position:0 -150px}div#gravity-import-icon{background-position:0 -200px}div#gravity-notification-icon{background-position:0 -250px}div#gravity-settings-icon{background-position:0 -300px}div#gravity-update-icon{background-position:0 -400px}div#gravity-title-icon{background-position:0 -350px}div#major-publishing-actions{clear:both}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat tfoot tr th.manage-column,html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat thead tr th.manage-column{font-size:13px!important}th.manage-column.column-cb.check-column{vertical-align:top}table.gfield_list td.gfield_list_cell{padding:6px 0}table.gfield_list td.gfield_list_cell+td.gfield_list_cell{padding:6px 0}table.gfield_list thead tr th{font-weight:700;padding:6px 0}table.gfield_list thead tr th+th{padding:6px 0}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-left:1px solid #dfdfdf!important;border-spacing:0;border-top:1px solid #dfdfdf!important;margin:2px 0 6px;padding:0;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #dfdfdf!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #dfdfdf!important;font-family:sans-serif!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}input.headercb{margin-top:-3px}.gfield_routing_select,.gfield_rule_select{width:120px}.gfield_rule_input{height:28px;vertical-align:bottom}.gf_conditional_logic_rules_container{margin-top:1rem}.gf_conditional_logic_rules_container input,.gf_conditional_logic_rules_container select{margin-left:2px;margin-top:0!important}.gform_routing_operator{width:60px}.validation_message{color:#9e0b0f!important;font-family:sans-serif;font-size:11px;letter-spacing:normal}.gfield_error{background-color:#ffdfdf!important;border:1px dotted #c89797;margin-bottom:6px;margin-top:4px!important;padding:6px 6px 4px!important}.grouting_rule_error input{border:1px solid red}.gfield_sub_setting{margin-top:20px}div#notifications_container .inside div.message.error{line-height:1.5!important}.ginput_complex .ginput_cardinfo_left,.ginput_complex .ginput_cardinfo_right{float:left;min-height:43px;position:relative}.ginput_complex .ginput_cardinfo_left{margin-right:1%;width:50%}.gfield .ginput_complex .ginput_cardinfo_left legend:not(.hidden_sub_label){position:static}.ginput_complex .ginput_cardinfo_right{min-width:85px!important}.ginput_complex .ginput_cardinfo_right label{white-space:nowrap!important}.ginput_complex span.ginput_cardextras{display:block;margin-bottom:8px;overflow:hidden}.ginput_complex .ginput_cardinfo_right span.ginput_card_expiration_container{position:relative}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year{display:-moz-inline-stack;display:inline-block}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month{margin-right:4px}.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{position:relative;width:50%}div.gfield_creditcard_warning_message{display:none!important}#gform_fields li.credit_card_setting.field_setting ul li{padding:2px 0 4px 0}html[dir=rtl] .gform_wrapper .gform_card_icon_container div{float:right}html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_left,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right{float:right}html[dir=rtl] .ginput_complex .ginput_cardinfo_left{margin-right:0}.wp-media-buttons{line-height:3px!important;padding:0!important}.wp-media-buttons select{font-size:10px!important;line-height:2.2rem;padding:1px!important}#notifications_advanced_settings label{line-height:18px}div.gf_toolset_dropdown_menu{position:absolute;right:0;top:10px}div.gf_toolset_dropdown_menu ul li.gf_toolset_dropdown_toplevel a.gf_toolset_dropdown_toplevel_link{background-color:#efefef;background-image:url(../../../images/gf-entry-paging-sprite.jpg);background-position:-144px 0;background-repeat:no-repeat;border:1px solid #dfdfdf;border-radius:3px;display:block;height:24px;margin:0;overflow:hidden;padding:0;text-decoration:none;text-indent:-9000px;width:40px}div.gf_entry_detail_pagination{clear:both;float:right;font-size:13px}div.gf_entry_detail_pagination ul{height:15px}div.gf_entry_detail_pagination ul li div.gf_entry_detail_pagination ul li{margin-bottom:0!important;padding:0!important}div.gf_entry_detail_pagination ul li{display:-moz-inline-stack;display:inline-block}div.gf_entry_detail_pagination ul li.gf_entry_count span{display:block;line-height:25px;padding:0 5px 0 0;width:auto!important}div.gf_entry_detail_pagination ul li.gf_entry_count span strong{color:#d24e29}div.gf_entry_detail_pagination ul li.gf_entry_pagination a{display:block;margin:0;padding:0;text-decoration:none}div.gf_entry_wrap #poststuff .inside{border-top:1px solid #ebebf2;margin:0;padding:12px}div.gf_entry_wrap #poststuff .inside .message,div.gf_entry_wrap #poststuff .inside .updated{margin:-12px -12px 12px -12px}#notifications_container .message{margin:-2px -15px 0 -15px}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive{color:#424242;opacity:.2}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active{color:#424242;opacity:.5}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover{color:#0074a2;opacity:1}li.gf_entry_next i,li.gf_entry_prev i{display:block}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap div#tab_notification div.wp-editor-wrap{margin-top:20px!important}html body.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{background-color:#e9e9e9;border-left:1px solid #ccc;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;border-right:1px solid #ccc;border-top:1px solid #ccc;border-top-left-radius:3px;border-top-right-radius:3px;left:0;padding:3px 4px 3px 6px!important;position:absolute;top:-2px;width:290px!important}html body.rtl.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{left:auto!important;right:0}html body.wp-admin div#wp-form_notification_message-editor-tools.wp-editor-tools{position:relative}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media{background-color:#fff;background-image:url(../../../images/gf-media-button-bg.jpg);background-position:bottom;background-repeat:repeat-x;border:1px solid #c3c3c3;border-bottom:2px solid #ccc;border-radius:3px;color:#464646;display:-moz-inline-stack;display:inline-block;font-family:arial,sans-serif;font-size:12px;font-weight:400;line-height:18px;padding:3px 6px 2px 5px!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media img{display:none!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js select#form_notification_message_variable_select{font-family:arial,sans-serif;font-size:12px!important;font-weight:400;line-height:18px;position:relative;top:0}.gf_toggle_submenu{background-image:url(../../../images/icon-submenu-down.png);background-position:center center;background-repeat:no-repeat;background-size:11px 11px;cursor:pointer;display:-moz-inline-stack;display:inline-block;height:11px;width:11px}h4.gf_nofield_header{font-size:1.6rem;font-weight:700}h4.gf_settings_subheader{border-bottom:1px solid #ccc;font-size:1.4rem;font-weight:400!important;margin:2px 0 30px 0!important;padding:0 0 10px 0}#export_filters{width:450px}#gform_fields .field-drop-zone{background-color:#fff;border:1px dashed #bbb;box-sizing:border-box;height:75px;margin:0 auto 10px;width:100%}.gform_fields_empty{height:600px}ul.gforms_form_settings li{margin:0}h4.section-title{border-bottom:1px solid #eee;font-size:14px;font-weight:400;margin:0 0 20px;padding:0 0 5px}.child-settings{border-left:2px solid #eee;margin-left:5px;padding:10px}table.gforms_form_settings{margin:0 0 18px}table.gforms_form_settings th{font-weight:400;padding-left:10px;text-align:left;vertical-align:top;width:200px}table.gforms_form_settings td,table.gforms_form_settings th{padding:8px 0}.show_advanced_settings_container{border-top:1px solid #eee;padding:5px}#show_advanced_settings{cursor:pointer}h4.gf_settings_subgroup_title{border-bottom:1px solid #dfdfdf;padding-bottom:6px}body.wp-admin .wrap .gform_tab_group .gform_tab_container .gform_tab_content input.button-primary{font-weight:400;letter-spacing:.3pt;margin:10px 0 20px 0}.setting-row{margin:0 0 10px}a.limit-text{color:#242748;display:block;height:18px;line-height:18px;overflow:hidden;padding-right:5px;text-overflow:ellipsis;white-space:nowrap}a.limit-text:hover{color:#555}th.column-name{width:30%}th.column-type{width:20%}tr#confirmation-editor-row td{border-left:3px solid #21759b;border-top:0;padding:0}div#confirmation-editor{padding:20px}.editing td{border-bottom:0}.editing td:first-child{border-left:3px solid #21759b}.editing .edit a{color:#999!important}.last-row td{background-color:red}.editor-actions a{line-height:24px}.editor-actions img.spinner{left:6px;position:relative;top:4px}.add_field_choice,.delete_field_choice{color:#444;margin-left:.25rem;position:relative}.add_field_choice{margin-left:.625rem}#confirmation_action_type{display:none}#confirmation_logic_type{margin-left:5px}.description-list{margin:10px 0;padding:0 20px}.description-list li{list-style:disc;overflow:visible;padding:0}.custom_mask_instructions h5{font-size:11px;margin:0 0 4px}.custom_mask_instructions span.label{display:inline-block;font-size:11px;width:80px}.custom_mask_instructions li{margin:0 0 14px}.gf_calculation_buttons{float:right;margin-right:55px}.gf_calculation_buttons input[type=button]{float:left;width:22px}#field_calculation_formula_variable_select{width:150px}#calculation_options p{margin:0 0 14px;padding:0}div.gf_animate_sub_settings{border-left:2px solid #ececf2;margin:.75rem 0 0 .625rem;padding-left:1.375rem}.gform_nofification_edit div.gf_animate_sub_settings{margin-left:0}table.gforms_form_settings td.gf_sub_settings_cell{padding:0}div#form_button_conditional_logic_container.gf_animate_sub_settings{padding-left:12px!important}span.gf_admin_page_formid{background-color:#d4662c;border:none;border-radius:2px;color:#fff;display:-moz-inline-stack;display:inline-block;font-size:13px;font-weight:600;line-height:2;margin:0 2px 0 12px;padding:0 8px;position:relative;text-decoration:none;text-shadow:none;top:-3px;white-space:nowrap}#gform_notification_to_routing_container table{width:100%}#tab_confirmation .gform-settings-field__conditional_logic .gform-settings-choice{display:none}#tab_confirmation .gform-settings-field__conditional_logic .gform-settings-field__header{margin-bottom:0}.ui-tabs>.ui-tabs-nav>.ui-state-disabled{display:none}div#gform_last_page_settings div#last_page_settings.ui-tabs,div#gform_pagination div#pagination_settings.ui-tabs{padding:0!important}div#gform_last_page_settings div#last_page_settings .ui-widget-header,div#gform_pagination div#pagination_settings .ui-widget-header,ul#gform_fields li .ui-widget-header{background:0 0!important;border-left:none!important;border-right:none!important;border-top:none!important;font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav{padding:0!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default{font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-widget-content,div#gform_pagination div#pagination_settings.ui-widget-content{background:0 0!important;background-image:none!important;border:none!important}input:checked+label{font-weight:400}div.gf_clear{clear:both!important}div.gf_clear.gf_clear_complex{clear:both!important}.gf_button.slick_button{border:1px solid rgba(0,0,0,.15);border-radius:3px;box-shadow:0 0 1px 2px rgba(121,0,0,.2);color:#fff;display:inline-block;font-size:1.2rem;font-weight:700;padding:10px 25px;text-decoration:none;text-shadow:0 -1px 0 rgba(0,0,0,.2)}.slick_button.red_button{background:#ff3019;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzAxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZjA0MDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%)}.slick_button.red_button:active,.slick_button.red_button:hover{color:#fff}.gform-add,.gform-remove{cursor:pointer;vertical-align:middle}.gform-add{margin-left:5px}#gform-no-filters{align-items:flex-end;color:#696c8c;cursor:pointer;display:flex}.gform-filter-value{vertical-align:bottom}.gform-filter-field,.gform-filter-operator,.gform-filter-value{-ms-box-sizing:border-box;box-sizing:border-box;height:2rem}.gform-filter-field,.gform-filter-value{width:150px}.gform-filter-operator{width:70px}#gform-field-filters{overflow-y:auto}.gform-field-filter{margin-top:4px}.gform-field-filter input,.gform-field-filter select{margin-right:6px}.gform-field-filter .gform-add{margin-right:4px}.ui-resizable-handle{display:block;font-size:.1px;position:absolute;z-index:99999}.ui-resizable-s{bottom:-5px;cursor:s-resize;height:7px;left:0;width:100%}#gform_update_button{height:2.3125rem;line-height:.875rem;padding:.625rem 12px}#gform_update_button:hover{background:#3985b7;color:#fff;transform:none}#gform_update_button:focus{background-color:#3e7da6;box-shadow:0 0 0 2px #bed8ed;color:#fff}#gform_update_button:active{background:#3985b7;border-color:#bed8ed;color:#fff}#namediv .gform_button_select_files{width:100px!important}.gform_fileupload_multifile .gform_drop_area{border:2px dashed #ddd;color:#aaa;margin-bottom:10px;padding:25px;text-align:center}.gform_delete{cursor:pointer;vertical-align:middle}tr.gf-locking.wp-locked .locked-info{height:auto}tr.gf-locking.wp-locked img.gform_active_icon{display:none}.gform-signature-action{font-size:1.5rem;text-decoration:none}@media (max-width:640px){html[dir=rtl] .gforms_edit_form .gform_wrapper.gravity-theme .ginput_list input{float:none!important}}.gf-pagebreak{align-items:center;color:#6c7781;display:flex;font-size:.8rem;font-weight:700;letter-spacing:.65px;line-height:1.1rem;padding:1.25rem 0;text-align:center;text-transform:uppercase}.gf-pagebreak-first{padding:0 0 2.5rem 0}.gf-pagebreak-end,.gf-pagebreak-first{padding-left:1rem;padding-right:1rem}.gf-pagebreak::after,.gf-pagebreak::before{background-color:silver;content:"";flex-grow:1;height:4px}.gf-pagebreak::before{background:repeating-linear-gradient(to left,#ddd 0,#ddd 9px,transparent 9px,transparent 13px);margin-right:1em}.gf-pagebreak::after{background:repeating-linear-gradient(to right,#ddd 0,#ddd 9px,transparent 9px,transparent 13px);margin-left:1em}html[dir=rtl] .gf-pagebreak::before{margin-left:1em;margin-right:0}html[dir=rtl] .gf-pagebreak::after{margin-left:0;margin-right:1em}.left_label .gpage .field_label,.right_label .gpage .field_label{display:none}#gform_fields.left_label .gfield>.gf-pagebreak,#gform_fields.right_label .gfield>.gf-pagebreak{width:100%}li.gfield.gpage label.gfield_label{display:none!important;margin:0!important}.entry_unread a,.entry_unread td{font-weight:700}.entry_spam_trash a,.entry_spam_trash td{font-weight:400}.row-actions a{display:inline-block;font-weight:400}.entry_nowrap{overflow:hidden;white-space:nowrap}.gform-filter-operator{width:100px}body.forms_page_gf_entries div#TB_title[style]{width:630px!important}table.form-table tr:last-child td,table.form-table tr:last-child th{border:none!important}span.gf_settings_description{display:block;margin-top:6px}div.gf-html-container{background-color:#f6f6f6;border:1px solid #e4e4e4;padding:20px}div.gf-html-container span.gf_blockheader{display:block;font-size:16px;font-weight:700;line-height:16px;margin-bottom:6px;text-transform:uppercase}ul.gform_fields.left_label li.gfield.gfield_html .gfield_label,ul.gform_fields.right_label li.gfield.gfield_html .gfield_label{display:inline-block;float:none!important;margin-bottom:8px;margin-top:12px;text-align:left;width:100%}.gf_delete_field_choice,.gf_insert_field_choice{border:0;color:#9b9b9b;font-size:14px;margin-left:6px;padding:0;text-decoration:none}.gf_delete_field_choice:active,.gf_delete_field_choice:hover,.gf_insert_field_choice:active,.gf_insert_field_choice:hover{color:#444}html[dir=rtl] .gform-admin-screen #TB_ajaxContent,html[dir=rtl] .gform-admin-screen #TB_window{text-align:right}.gform-admin-screen #TB_ajaxContent{box-sizing:border-box;padding:0 2rem 80px;position:relative;width:auto!important}.gform-admin-screen #TB_overlay{background:#1c1f3f;opacity:.72}.gform-admin-screen #TB_window{background:#fff;border-radius:6px;box-shadow:0 16px 80px rgba(5,17,50,.66)}.gform-admin-screen #TB_title{background:0 0;border-bottom:none;display:flex;height:auto;justify-content:space-between;padding:1.875rem 2rem 1.375rem}.gform-admin-screen #TB_ajaxWindowTitle{color:#242748;font-size:1rem;font-weight:400;line-height:1.5rem;padding:0;white-space:normal}.gform-admin-screen #TB_closeWindowButton{position:relative}.tb-title{align-items:center;display:flex}.tb-title__logo::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDMiIGhlaWdodD0iNDciIHZpZXdCb3g9IjAgMCA0MyA0NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik00Mi44MTQ4IDMxLjc3OTNDNDIuODE0OCAzMy45MTkzIDQxLjI4OTIgMzYuNTQyMiAzOS40MjEgMzcuNjA2N0wyNC43OTU2IDQ1Ljk5MTJDMjIuOTI3NCA0Ny4wNTU3IDE5Ljg3NjMgNDcuMDU1NyAxOC4wMDgxIDQ1Ljk5MTJMMy4zODI3MyAzNy42MDY3QzEuNTI1NTUgMzYuNTQyMiAwIDMzLjkxOTMgMCAzMS43NzkzVjE1LjAxMDNDMCAxMi44NzAzIDEuNTI1NTUgMTAuMjQ3NCAzLjM5Mzc5IDkuMTgyODhMMTguMDA4MSAwLjc5ODM5MkMxOS44NzYzIC0wLjI2NjEzMSAyMi45Mjc0IC0wLjI2NjEzMSAyNC43OTU2IDAuNzk4MzkyTDM5LjQyMSA5LjE4Mjg4QzQxLjI4OTIgMTAuMjQ3NCA0Mi44MTQ4IDEyLjg3MDMgNDIuODE0OCAxNS4wMTAzVjMxLjc3OTNaIiBmaWxsPSIjRjE1QTI5Ii8+DQo8cGF0aCBkPSJNMTcuMjQ0OSAxOS41MUgzNi42MjM4VjE0LjA5OTZIMTcuMzAwMkMxNC41MzY1IDE0LjA5OTYgMTIuMjM3MiAxNS4wNDM0IDEwLjQ5MDUgMTYuODk4MUM2LjI2NzY1IDIxLjM1MzcgNi4xNTcxIDMyLjU5MTYgNi4xNTcxIDMyLjU5MTZIMzYuNDkxMVYyMi40MjkySDMxLjA0MTJWMjcuMTgxMkgxMS45NjA4QzEyLjA4MjQgMjUuNDE0MyAxMi45MDA1IDIyLjI0MjcgMTQuNDQ4MSAyMC42MDc1QzE1LjE1NTYgMTkuODYxMiAxNi4wNTEgMTkuNTEgMTcuMjQ0OSAxOS41MVoiIGZpbGw9IndoaXRlIi8+PC9zdmc+);background-repeat:no-repeat;background-size:auto;content:" ";display:inline-block;height:2.9375rem;margin-right:.74375rem;width:2.6875rem}html[dir=rtl] .gform-admin .tb-title__logo::before{margin-left:.74375rem;margin-right:0}.tb-title__main{color:#242748;font-size:1rem;font-weight:400}.tb-title__sub{color:#696c8c;font-size:.875rem;font-weight:400}.gform-admin-screen .tb-close-icon{background:#fff center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjE4MyAxLjE4M2EuNjI1LjYyNSAwIDAwMCAuODg0TDUuMTE2IDYgMS4xODMgOS45MzNhLjYyNS42MjUgMCAxMC44ODQuODg0TDYgNi44ODRsMy45MzMgMy45MzNhLjYyNS42MjUgMCAxMC44ODQtLjg4NEw2Ljg4NCA2bDMuOTMzLTMuOTMzYS42MjUuNjI1IDAgMTAtLjg4NC0uODg0TDYgNS4xMTYgMi4wNjcgMS4xODNhLjYyNS42MjUgMCAwMC0uODg0IDB6IiBmaWxsPSIjM0U3REE2Ii8+PHBhdGggZD0iTTEuMTgzIDIuMDY3TC44MyAyLjQybC4zNTMtLjM1M3ptMC0uODg0TC44My44M2wuMzUzLjM1M3pNNS4xMTYgNmwuMzU0LjM1NEw1LjgyMyA2bC0uMzUzLS4zNTRMNS4xMTYgNnpNMS4xODMgOS45MzNMLjgzIDkuNThsLjM1My4zNTR6bTAgLjg4NGwtLjM1My4zNTQuMzUzLS4zNTR6TTYgNi44ODRsLjM1NC0uMzU0TDYgNi4xNzdsLS4zNTQuMzUzLjM1NC4zNTR6bTMuOTMzIDMuOTMzbC4zNTQtLjM1NC0uMzU0LjM1NHptLjg4NC0uODg0bC0uMzU0LjM1NC4zNTQtLjM1NHpNNi44ODQgNmwtLjM1NC0uMzU0TDYuMTc3IDZsLjM1My4zNTRMNi44ODQgNnptMy45MzMtNC44MTdMMTEuMTcuODNsLS4zNTQuMzUzem0tLjg4NCAwTDkuNTguODNsLjM1NC4zNTN6TTYgNS4xMTZsLS4zNTQuMzU0LjM1NC4zNTMuMzU0LS4zNTNMNiA1LjExNnpNMi4wNjcgMS4xODNMMi40Mi44M2wtLjM1My4zNTN6bS0uNTMuNTNhLjEyNS4xMjUgMCAwMTAtLjE3NkwuODMuODNjLS40NC40MzktLjQ0IDEuMTUxIDAgMS41OWwuNzA3LS43MDd6TTUuNDcgNS42NDZMMS41MzcgMS43MTNsLS43MDcuNzA4IDMuOTMzIDMuOTMzLjcwNy0uNzA4em0tMy45MzMgNC42NEw1LjQ3IDYuMzU1bC0uNzA3LS43MDhMLjgzIDkuNThsLjcwNy43MDh6bTAgLjE3N2EuMTI1LjEyNSAwIDAxMC0uMTc2TC44MyA5LjU3OWMtLjQ0LjQ0LS40NCAxLjE1MiAwIDEuNTkxbC43MDctLjcwN3ptLjE3NiAwYS4xMjUuMTI1IDAgMDEtLjE3NiAwbC0uNzA3LjcwOGMuNDM5LjQzOSAxLjE1MS40MzkgMS41OSAwbC0uNzA3LS43MDh6TTUuNjQ2IDYuNTNsLTMuOTMzIDMuOTMzLjcwOC43MDggMy45MzMtMy45MzQtLjcwOC0uNzA3em00LjY0IDMuOTMzTDYuMzU1IDYuNTNsLS43MDguNzA3IDMuOTMzIDMuOTM0LjcwOC0uNzA4em0uMTc3IDBhLjEyNS4xMjUgMCAwMS0uMTc2IDBsLS43MDguNzA4Yy40NC40MzkgMS4xNTIuNDM5IDEuNTkxIDBsLS43MDctLjcwOHptMC0uMTc2YS4xMjUuMTI1IDAgMDEwIC4xNzZsLjcwOC43MDhjLjQzOS0uNDQuNDM5LTEuMTUyIDAtMS41OTFsLS43MDguNzA3ek02LjUzIDYuMzU0bDMuOTMzIDMuOTMzLjcwOC0uNzA4LTMuOTM0LTMuOTMzLS43MDcuNzA4em0zLjkzMy00LjY0TDYuNTMgNS42NDVsLjcwNy43MDggMy45MzQtMy45MzMtLjcwOC0uNzA4em0wLS4xNzdhLjEyNS4xMjUgMCAwMTAgLjE3NmwuNzA4LjcwOGMuNDM5LS40NC40MzktMS4xNTIgMC0xLjU5MWwtLjcwOC43MDd6bS0uMTc2IDBhLjEyNS4xMjUgMCAwMS4xNzYgMGwuNzA4LS43MDdhMS4xMjUgMS4xMjUgMCAwMC0xLjU5MSAwbC43MDcuNzA3ek02LjM1NCA1LjQ3bDMuOTMzLTMuOTMzTDkuNTc5LjgzIDUuNjQ2IDQuNzYzbC43MDguNzA3em0tNC42NC0zLjkzM0w1LjY0NSA1LjQ3bC43MDgtLjcwN0wyLjQyLjgzbC0uNzA4LjcwN3ptLS4xNzcgMGEuMTI1LjEyNSAwIDAxLjE3NiAwTDIuNDIxLjgzQTEuMTI1IDEuMTI1IDAgMDAuODMuODNsLjcwNy43MDd6IiBmaWxsPSIjM0U3REE2Ii8+PC9zdmc+);background-size:.625rem;border:1px solid #d5d7e9;border-radius:50%;cursor:pointer;height:1.625rem;position:relative;width:1.625rem}.gform-admin-screen .tb-close-icon::before{content:none}#TB_window .modal_footer{background:#f6f9fc;border-radius:0 0 5px 5px;border-top:1px solid #e2e8f0;bottom:0;left:0;padding:20px 32px;position:absolute;right:0}.modal_footer .button,.modal_footer .button-primary{-webkit-appearance:none;background:#fff;border-color:#3e7da6;border-radius:3px;border-style:solid;border-width:1px;box-sizing:border-box;color:#3e7da6;cursor:pointer;font-size:.875rem;font-weight:600;line-height:2.15384615;margin:0;min-height:30px;padding:.125rem 1.125rem;transition:all .3s ease;white-space:nowrap}.modal_footer .button-primary:hover,.modal_footer .button:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.modal_footer .button-primary,.modal_footer .button.primary{background:#3e7da6;border:1px solid transparent;border-radius:3px;color:#fff;font-family:inherit;font-size:.875rem;font-weight:500;height:auto;height:initial;line-height:1;padding:.625rem 1.125rem;transition:all .3s ease}.modal_footer .button-primary:hover,.modal_footer .button.primary:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.gform_new_form #TB_window{margin-left:-230px!important;margin-top:0!important;top:10%!important;width:460px!important}.gform_new_form #TB_ajaxContent{height:auto!important;max-height:415px;overflow:hidden;padding:0 2rem}.gform_new_form #TB_ajaxContent .gform-settings__wrapper{display:block;padding:0}.gform_new_form #TB_ajaxContent .gform-settings-label{color:#242748;font-size:14px;font-weight:400}.gform-settings-label .required{padding:.2em}.gform_new_form .gform_new_form_modal_container .submit-row{background-color:#fdfdff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #e2e8f0;margin-left:-32px;margin-right:-32px;margin-top:18px;padding:1rem 2rem}.gform_new_form .gform_new_form_modal_container .setting-row{margin:0 0 10px}.gform_new_form .gform_new_form_modal_container .setting-row label{line-height:24px}.gform_new_form .gform_new_form_modal_container .setting-row input,.gform_new_form .gform_new_form_modal_container .setting-row textarea{display:block;width:100%}.gform_new_form .gform_new_form_modal_container .setting-row textarea{height:110px;max-height:200px}.gform_new_form .gform_new_form_modal_container #gf_new_form_error_message{color:#bc0b0b;margin:0 0 18px 5px!important}.gform_new_form .gform_new_form_modal_container img.gfspinner{left:5px;position:relative;top:5px}.gform_new_form .gf_not_ready{opacity:.25}.ginput_container.ginput_single_email input.medium,span.ginput_left input.medium,span.ginput_right input.medium{width:95%!important}ul:not(.top_label) .ginput_container.ginput_single_email{margin-left:30%}.gforms_edit_form input.disabled,.gforms_edit_form input:disabled,.gforms_edit_form select.disabled,.gforms_edit_form select:disabled,.gforms_edit_form textarea.disabled,.gforms_edit_form textarea:disabled{pointer-events:none}.gaddon-section{margin:0 0 20px;padding:20px 0 0}.gaddon-section.gaddon-first-section{border-top:0;padding-top:0}.gaddon-setting.large{width:95%}.gaddon-select,.gaddon-setting.medium{width:50%}.gaddon-setting.gaddon-checkbox{margin-right:8px}div.wrap.gf_browser_gecko div.new-form-option a{padding:16px 16px 14px 16px}div.wrap.gf_browser_ie .gfield_checkbox li input,div.wrap.gf_browser_ie .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_ie .gfield_radio li input[type=radio]{margin-top:0}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{top:0}div.wrap.gf_browser_ie input.button-primary,div.wrap.gf_browser_ie input.button-primary.gfbutton,div.wrap.gf_browser_ie input.gfbutton{line-height:1rem;padding:0 6px}body .gf_browser_chrome a.button-primary.gfbutton,body .gf_browser_chrome button.button-primary.gfbutton,body .gf_browser_chrome input.button-primary.gfbutton{line-height:1em!important}body .gf_browser_chrome h2.gf_admin_page_title span.gf_admin_page_subtitle{margin-top:2px}div.wrap.gf_browser_chrome .gfield_checkbox li input,div.wrap.gf_browser_chrome .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_chrome .gfield_radio li input[type=radio]{margin-left:2px!important}.gform_system_report mark{background:0 0;color:#999}.gform_system_report mark.yes{color:#7ad03a}.gform_system_report .error_message,.gform_system_report mark.error{color:#a00}.gform_system_report_alert{border-left-color:#2ea2cc!important;box-sizing:border-box;display:block;padding-bottom:10px!important;position:relative;width:100%}.gf_copy_message{color:#080;display:none!important}#gf_system_report{height:10px;left:20px;position:absolute;top:65px;width:10px;z-index:-1}#gform_register_site{display:none}#gform_license_key{font-size:19px!important;width:90%!important}#entry_list_form .column-is_starred,#form_list_form .column-is_active{vertical-align:top;width:6rem}#entry_list_form .column-is_starred{width:19px}#form_list_form .column-is_active img.pending{transform:translateX(50%)}#form_list_form .column-conversion,#form_list_form .column-entry_count,#form_list_form .column-id,#form_list_form .column-view_count{width:10%}#entry_list_form .column-column_selector{width:20px}#entry_filters{display:inline-block;vertical-align:middle}#entry_search_button{bottom:-.0625rem;float:right;height:2.1875rem;line-height:.9rem;min-height:auto;position:relative}.gf_entry_detail_pagination+#poststuff{padding-top:30px}#content-sortables.empty-container,#sidebar_middle-sortables.empty-container,#sidebar_top-sortables.empty-container{border:3px dashed #bbb!important;height:250px!important}#entry_search_container{float:right;margin-top:12px}.gform-rte-preview{border:1px solid #9092b2;border-radius:3px;display:none}.gform-rte-preview.small{height:6rem}.gform-rte-preview.medium{height:12rem}.gform-rte-preview.large{height:18rem}.gform-rte-preview ul{background:#f5f5f5;border-bottom:1px solid #ddd;border-radius:3px 3px 0 0;box-shadow:0 1px 2px rgba(0,0,0,.2);padding:.3rem}.gform-rte-preview ul li{align-items:center;display:inline-flex;justify-content:center;margin-bottom:0;padding:.3rem}.gform-rte-preview ul li svg{height:1.3rem;width:1.3rem}.screen-meta-toggle{z-index:2}div.error{padding:20px}::-webkit-input-placeholder{color:#5b5e80}::-moz-placeholder{color:#5b5e80}:-ms-input-placeholder{color:#5b5e80}:-moz-placeholder{color:#5b5e80}.gf_browser_gecko input[type=checkbox],.gf_browser_gecko input[type=radio]{margin-bottom:-6px}.gf_browser_chrome input[type=checkbox],.gf_browser_chrome input[type=radio]{margin-bottom:-4px}#gform_fields li ul.rules_container li{padding:0}.last_page_button_options{margin-top:8px}#last_page_button_button_container,#last_page_button_image_container,#last_page_button_text_container{margin-top:12px!important}div.range_max,div.range_min{display:-moz-inline-stack;display:inline-block;padding-right:8px;vertical-align:top;width:98px}div.range_max label,div.range_min label{display:block;margin-bottom:0;margin-top:.25rem}@media screen and (max-width:782px){.gforms_form_settings_wrap #gform_tab_container_1{margin-left:0}.gforms_form_settings_wrap #gform_tabs{display:none}#gform-settings .column-is_active{padding-top:0;vertical-align:top;width:19px}.gforms_settings_wrap #gform_tab_container{margin-left:0}.gforms_settings_wrap .gform_tab_group{flex-flow:column}.gforms_settings_wrap #gform_tabs{float:none;margin:10px 10px 0 10px;width:100%}.gforms_settings_wrap #gform_tabs li.active a{background-color:inherit;border-bottom:4px solid #666;border-left:0;border-right:0;border-top:0;box-shadow:none;color:#23282d;padding:10px!important;width:auto}.gforms_settings_wrap #gform_tabs li{border-right:#e1e1e1;display:inline-block;margin-bottom:0;width:auto}#gform_tab_container{border-top:1px solid #e1e1e1}.gform_panel h3{line-height:39px}.gform_panel h3 .add-new-h2{display:inline-block;margin-left:0;position:static;vertical-align:top}}.gfield_repeater_cell>.gfield_repeater_wrapper{background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;box-shadow:0 1px 1px 0 rgba(0,0,0,.06),0 2px 1px -1px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.06);padding:10px 20px}.gfield_repeater_wrapper input{border:1px solid #c5c6c5;border-radius:4px}.gfield_repeater_buttons .add_repeater_item_text,.gfield_repeater_buttons .remove_repeater_item_text{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:20px;color:#757575;font-size:12px;font-weight:400;height:30px;margin-bottom:5px;margin-right:10px;min-width:100px;transition:all .3s cubic-bezier(.67, .17, .4, .83)}.gfield_repeater_buttons .add_repeater_item_plus,.gfield_repeater_buttons .remove_repeater_item_minus{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:50%;color:#757575;font-size:16px;font-weight:700;height:22px;margin:10px 5px 0 5px;padding:0;padding-bottom:5px;transition:all .3s cubic-bezier(.67, .17, .4, .83);width:22px}.gfield_repeater_buttons button.gfield_icon_disabled{cursor:default;-khtml-opacity:0.3;-moz-opacity:0.3;opacity:.3}.gfield_repeater_buttons button.gfield_icon_disabled:hover{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);color:#757575}.gfield_repeater_buttons button:hover{background:#fafafa;border:1px solid #757575;color:#374750}.gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child){border-bottom:2px solid #e0e0e6;margin-bottom:20px;margin-right:10px;padding-bottom:20px}.gfield_repeater_buttons .add_repeater_item_text:focus,.gfield_repeater_buttons .remove_repeater_item_text:focus{outline:0}.gfield_repeater_item .gfield_repeater_cell .gfield_required{color:#c32121}.gform_wrapper .gfield_repeater_cell label{color:#9b9a9a;font-size:14px;font-weight:400}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_cell{padding-bottom:20px;padding-top:0}div .gfield_repeater_cell{margin-top:5px}.gfield_repeater_value>.gfield_repeater{background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;margin:10px;padding:10px 20px}.gfield_repeater_cell .gfield_repeater_value:not(:first-child){background-color:#f0f0f0;border:1px solid #c5c6c5;border-radius:4px;color:rgba(117,117,117,.7);margin-right:10px;padding-left:10px}.gfield_repeater .gfield_repeater_items,.gfield_repeater_items .gfield_repeater_cell:not(:first-child){padding-top:5px}.gfield_repeater .gfield_label{color:#23282d;font-size:16px;font-weight:600}.gfield_repeater_cell div.ginput_complex_admin span label,.gfield_repeater_cell label.gfield_label{color:#9b9a9a;font-size:14px;font-weight:400}.gfield_repeater_value .gfield_label{padding-bottom:0}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_item:first-child{padding-bottom:0}.gfield_repeater_cell .gfield_admin_icons{height:0}.gf-notice-container{display:none}.form-list{display:flex;flex-wrap:wrap}.form-list-head{align-items:baseline;display:flex;flex:1 1 100%}.form-list-head h2{color:#23282d;font-size:21px;font-weight:500;margin:0 1rem 0 0}.form-list-nav{align-items:center;display:flex;flex:1 1 auto}.form-list-nav .search-box{display:flex}.gform-settings-panel__content .wp-list-table th.check-column{padding-top:10px}.gform-settings-panel__content .wp-list-table .check-column input[type=checkbox]{margin:0 0 0 8px}.gform-settings-panel__content #form_list_form{display:flex;flex-wrap:wrap}.gform-settings-panel__content #form_list_form #entry_filters .gform-field-filter,.gform-settings-panel__content#entry_list_form #entry_filters .gform-field-filter{margin:0}.gform-settings-panel__content #form_list_form .tablenav,.gform-settings-panel__content#entry_list_form .tablenav{display:flex;flex:1 1 auto;flex-wrap:wrap;height:2.563rem;margin:1rem 0}.gform-settings-panel__content #form_list_form .tablenav .actions,.gform-settings-panel__content#entry_list_form .tablenav .actions{flex:1 1 auto}.gform-settings-panel__content #form_list_form .tablenav .actions select,.gform-settings-panel__content#entry_list_form .tablenav .actions select{padding-bottom:.4375rem;padding-top:.375rem}.gform-settings-panel__content #form_list_form .tablenav .actions .button,.gform-settings-panel__content#entry_list_form .tablenav .actions .button{height:2.1875rem;line-height:.7rem;min-height:auto}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages{align-items:center;display:flex;flex:none;flex-direction:row;height:2.375rem;text-align:right}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages.no-pages,.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages.one-page .pagination-links,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages.no-pages,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages.one-page .pagination-links{display:none}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links{display:flex;flex-direction:row;font-size:.8125rem;height:100%}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links span:last-child,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links span:last-child{margin-right:0}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links .current-page,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links .current-page{font-size:.8125rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .paging-input,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .paging-input{align-items:center;display:flex;height:100%;justify-content:center;margin-left:.1875rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .button,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .button{align-items:center;display:flex;height:100%;justify-content:center;margin:0 .1875rem;padding:0;width:2.375rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .tablenav-paging-text,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .tablenav-paging-text{margin-left:.1875rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages input.current-page,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages input.current-page{height:100%;padding-bottom:.4375rem;padding-top:.4375rem;width:auto}#screen-meta-links{margin-bottom:-30px}.gform-settings-header .gform-settings__wrapper{clear:both}#gform-field-filters .gform-field-filter{margin-bottom:.5rem;padding:.125rem 0;text-align:right}.gform-settings-panel__content #entry_search_container .gform-field-filter .gform-filter-value,.gform-settings-panel__content #entry_search_container .gform-field-filter input,.gform-settings-panel__content #entry_search_container .gform-field-filter select{height:auto;line-height:1.1875rem;min-height:unset;min-width:unset;padding-bottom:.4375rem;padding-top:.4375rem;width:auto}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter select.gform-filter-field{margin-right:.375rem;width:calc(33% - .375rem)}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter select.gform-filter-operator{margin-right:.375rem;width:calc(25% - .375rem)}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter input.gform-filter-value{margin-right:.375rem;width:calc(40% - .375rem)}#entry_list_form{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:space-between}#entry_list_form .alert{flex:1 1 100%}#entry_list_form.gform-settings-panel__content .tablenav{flex:1 1 auto;width:100%}#entry_list_form.gform-settings-panel__content .tablenav.bottom .tablenav-pages{padding-top:1.25rem}@media (min-width:783px){#entry_list_form.gform-settings-panel__content .tablenav.bottom .tablenav-pages{padding-top:0}}#entry_list_form.gform-settings-panel__content .tablenav-pages{flex:1 1 auto;float:none;margin:0;text-align:right}#entry_list_form.gform-settings-panel__content .tablenav-pages input.current-page{height:1rem;width:auto}.gform-settings-panel__content #entry_search_container{align-items:baseline;display:flex;justify-content:flex-start;left:-.625rem;margin:0;position:relative;width:100%}@media (min-width:783px){.gform-settings-panel__content #entry_search_container{flex:1 1 55%;float:none;justify-content:flex-end;left:0;width:auto}}.gform-settings-panel__content .subsubsub{flex:1 1 45%;float:none;font-size:13px}.gform-settings-panel__content--entry-list .subsubsub{flex:none}.gf_entry_detail_pagination{display:flex;justify-content:flex-end}.gf_entry_pagination{width:1.75rem}.gf_entry_pagination_link_inactive{opacity:.6}.gf_entry_pagination_link_active{opacity:1}.gf_entry_pagination_link,.gf_entry_pagination_link:active,.gf_entry_pagination_link:focus,.gf_entry_pagination_link:hover{box-shadow:none;color:#3e7da6;cursor:pointer;outline:0;padding:.5rem;text-decoration:none}.gf_entry_pagination_link i{background:#fff;border:1px solid #9092b2;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.0596411);font-size:.55rem;font-weight:400;height:auto;line-height:1.1rem;width:1.1rem}.gform-settings__content .entry-details-table,.gform-settings__content .gresults-results-field,.gform-settings__content .postbox,.gform-settings__content .sales,.gform-settings__content table:not(.form-table){background:#fff;box-sizing:border-box;width:100%}.gform-settings__content .entry-details-table,.gform-settings__content .gresults-results-field,.gform-settings__content .postbox,.gform-settings__content .sales{border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552)}.gform-settings__content .gresults-chart-wrapper svg{border-radius:3px;width:100%}.gform-settings__content .entry-details-table>thead>tr{align-items:center;border:none;display:flex;flex-grow:1;font-size:.875rem;justify-content:space-around;line-height:2.875rem;padding-bottom:0;padding-left:1.0625rem;padding-right:.875rem;padding-top:0;position:relative}.gform-settings__content .entry-details-table th{flex-grow:1;font-size:.875rem;font-weight:500;margin:0;padding:0;text-align:left}.gform-settings-panel__content .entry-details-table>tbody>:nth-child(odd){background:#f6f9fc}.gf_entry_detail_pagination .gf_entry_count strong{color:#3e7da6}#gentry_display_empty_fields{margin-right:6px}#gentry_display_empty_fields+label{color:#242748;font-size:13px;font-weight:400;line-height:18px}.entry-notes-print-header{display:none}.entry-notes .note-details{display:flex;flex-wrap:wrap}.entry-notes .note-details .note-check{flex:0 0 auto;margin-right:1rem}.entry-notes .note-details .author{display:flex;flex:1 1 auto;font-weight:400}.entry-notes .note-details .author .avatar{border-radius:50%;flex:0 0 auto;height:auto;margin-right:1rem;width:2.25rem}.entry-notes .note-details .author .text{flex:1 1 auto}.entry-notes .note-details .author .text h6{color:#242748;font-size:14px;font-weight:400;line-height:14px;margin:0 0 .5rem 0}.entry-notes .note-details .author .text time{color:#a7a9c1;font-size:13px;line-height:13px}.entry-notes .note-content{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);display:flex;font-size:13px;margin-bottom:1.625rem;margin-top:1.3125rem}.entry-notes .note-content.alert{font-weight:500;margin-bottom:1.625rem;margin-top:1.3125rem}.entry-notes .note-content:not(.alert){color:#242748;padding:19px 16px 22px 16px}.entry-notes .add-note{background-color:#fdfdff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #e2e8f0;margin:12px -12px -12px -12px;padding:23px 17px 35px 18px}.entry-notes .add-note textarea{background:#fff;border:1px solid #9092b2;border-radius:3px;margin-bottom:18px;width:100%}.entry-notes .add-note .add-note-actions{display:flex}.entry-notes .add-note .add-note-actions input{flex:0 0 auto;margin-right:1rem}.entry-notes .add-note .add-note-actions .send-to{display:flex;flex:1 1 auto}.entry-notes .add-note .add-note-actions .send-to #gentry_email_subject_container{flex:1 1 auto}.entry-notes .add-note .add-note-actions .send-to select{flex:1 1 5rem;height:2.375rem;line-height:1}.js .postbox .handlediv:focus .toggle-indicator::before{box-shadow:none}.gform-settings__content #poststuff .postbox #major-publishing-actions a{color:#a00;font-size:13px;line-height:30px;text-decoration:none}.gform-settings__content #poststuff .postbox #major-publishing-actions{background:#f6f9fc;border-bottom-left-radius:6px;border-bottom-right-radius:6px;padding:12px}.gform-settings__content #poststuff .postbox #minor-publishing{padding:12px}.gform-settings__content #poststuff .postbox .handlediv{height:45px}#notifications_override_settings label{display:block;margin-bottom:.5rem}.gform-settings__content .postbox input[type=checkbox]{margin-right:6px}.gform-settings__content #poststuff .postbox h2{border:none;color:#242748;flex-grow:0;font-size:.875rem;font-weight:500;justify-content:space-around;line-height:2.875rem;padding-bottom:0;padding-left:1.0625rem;padding-right:.875rem;padding-top:0}.gform-settings__content #poststuff .postbox .actions{align-items:baseline;display:flex;justify-content:flex-start;margin-bottom:20px}.gform-settings__content #poststuff .postbox .actions select{flex:0 0 8rem;margin-right:10px}.gform-settings__content #poststuff .postbox .actions input{flex:0 0 75px;line-height:28px}.gform-settings__content #poststuff .postbox .actions input.button{flex:0 0 75px;line-height:19px;padding:8px 18px}.gform-settings-panel__content .entry-details-table .entry-view-field-name,.gform-settings-panel__content .entry-details-table .entry-view-field-value{background:#f6f9fc;border-bottom:1px solid #ececf2;border-top:1px solid #ececf2;color:#242748;font-size:13px;line-height:165%;padding:12px 17px}.gform-settings-panel__content .entry-details-table .entry-view-field-value:last-of-type{border-radius:3px}.gform-settings-panel__content .entry-details-table .entry-view-field-value{background:#fff;border:none;font-weight:400}.inner-sidebar{clear:right;display:none;float:right;position:relative;width:281px}.columns-2 .inner-sidebar{display:block;margin-right:auto;width:286px}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;padding:0;width:280px}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{clear:left;float:left;margin-right:-2000px;width:100%}.has-right-sidebar #post-body-content{float:none;margin-right:300px;width:auto}.ginput_preview_control{bottom:-.25rem;display:inline-block;font-size:1.25rem;outline:0;position:relative;text-decoration:none}.ginput_preview_control.gform-icon--circle-arrow-down{color:#22a753}.ginput_preview_control.gform-icon--circle-delete{color:#dd301d}[data-simplebar]{align-content:flex-start;align-items:flex-start;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;position:relative}.simplebar-wrapper{height:inherit;max-height:inherit;max-width:inherit;overflow:hidden;width:inherit}.simplebar-mask{bottom:0;direction:inherit;height:auto!important;left:0;margin:0;overflow:hidden;padding:0;position:absolute;right:0;top:0;width:auto!important;z-index:0}.simplebar-offset{bottom:0;box-sizing:inherit!important;direction:inherit!important;left:0;margin:0;-webkit-overflow-scrolling:touch;padding:0;position:absolute;resize:none!important;right:0;top:0}.simplebar-content-wrapper{box-sizing:border-box!important;direction:inherit;display:block;height:100%;max-height:100%;max-width:100%;-ms-overflow-style:none;position:relative;scrollbar-width:none;width:auto}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{height:0;width:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;pointer-events:none;width:100%}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;flex-basis:0;flex-grow:inherit;flex-shrink:0;float:left;height:100%;margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:relative;width:100%;z-index:-1}.simplebar-height-auto-observer{box-sizing:inherit;display:block;height:1000%;left:0;min-height:1px;min-width:1px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:0;width:1000%;z-index:-1}.simplebar-track{bottom:0;overflow:hidden;pointer-events:none;position:absolute;right:0;z-index:1}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}[data-simplebar]::-webkit-scrollbar{-webkit-appearance:none;display:none;height:0;width:0}.simplebar-content-wrapper::-webkit-scrollbar{-webkit-appearance:none;display:none;height:0;width:0}.simplebar-scrollbar{left:0;min-height:10px;position:absolute;right:0}.simplebar-scrollbar:before{background:#d5d7e9;border-radius:3px;content:'';left:3px;opacity:0;position:absolute;right:4px;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:1;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{bottom:2px;top:2px}.simplebar-track.simplebar-horizontal{height:11px;left:0}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:7px;left:0;min-height:0;min-width:10px;right:auto;top:2px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{left:0;right:auto}.hs-dummy-scrollbar-size{direction:rtl;height:500px;opacity:0;overflow-x:scroll;overflow-y:hidden;position:fixed;visibility:hidden;width:500px}.simplebar-hide-scrollbar{left:0;overflow-y:scroll;position:fixed;scrollbar-width:none;visibility:hidden} \ No newline at end of file +@font-face{font-display:swap;font-family:inter;font-style:normal;font-weight:400;src:url(../../../fonts/inter-regular-webfont.woff2) format("woff2"),url(../../../fonts/inter-regular-webfont.woff) format("woff")}@font-face{font-display:swap;font-family:inter;font-style:normal;font-weight:500;src:url(../../../fonts/inter-medium-webfont.woff2) format("woff2"),url(../../../fonts/inter-medium-webfont.woff) format("woff")}@font-face{font-display:swap;font-family:inter;font-style:normal;font-weight:600;src:url(../../../fonts/inter-semibold-webfont.woff2) format("woff2"),url(../../../fonts/inter-semibold-webfont.woff) format("woff")}*{direction:ltr}#gf-admin-notices-wrapper,.gform-settings__wrapper,.gforms_edit_form,.gforms_form_settings_wrap,.gforms_help{-webkit-font-smoothing:antialiased}input,textarea{font-family:inherit;font-size:inherit;outline-style:none}input,select{margin:0}ul{margin:0}ul li{list-style:none}#wpbody-content{position:relative}div#wpbody{position:relative}.wrap.gforms_edit_form>#no-fields{display:none!important}select{font-family:verdana,sans-serif;font-size:inherit;padding:2px 0}.ui-datepicker{display:none}table.xwidefat{width:99%!important}div.wrap{position:relative}.hr-divider{background-color:#fff;border-bottom:1px solid #fff;border-top:1px solid #e6e6e6;clear:both;height:1px;margin:24px 0;overflow:hidden}.gform_settings_form .hr-divider{grid-column:span 2}.gf_admin_notice{background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-size:14px;line-height:19px;margin:25px 20px 0 2px;margin-bottom:24px;padding:11px 15px;text-align:left}a .gform-icon{text-decoration:none}.gform-kitchen-sink ul,.gform-kitchen-sink__ul{margin-bottom:6px;padding-left:1rem}.gform-kitchen-sink li,.gform-kitchen-sink__li{line-height:1.2rem;list-style:disc outside;margin-bottom:0}.gform-kitchen-sink li+li,.gform-kitchen-sink__li+.gform-kitchen-sink__li{margin-top:6px}.gform-admin .gform-c-warning-text{color:#a16938}.gform-admin .gform-c-error-text{color:#dd301d}.gform-admin .gform-c-red{color:#dd301d}.gform-admin .gform-c-hunter{color:#276a52}.gform-admin .gform-c-orange{color:#f15a2b}.gform-admin .gform-c-blue-ribbon{color:#175cff}.gform-admin .gform-p-16{padding:1rem}.gform-admin .gform-visually-hidden{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.gform-hide-if-ie{display:inherit}.gform-show-if-ie{display:none}.gform-hide-if-not-ie{display:none}.gform-show-if-not-ie{display:inherit}.gform-fade-if-not-ie{opacity:.4}.gform-fade-if-not-ie,.gform-fade-if-not-ie *{pointer-events:none}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.gform-hide-if-ie{display:none}.gform-show-if-ie{display:inherit}.gform-hide-if-not-ie{display:inherit}.gform-show-if-not-ie{display:none}.gform-fade-if-ie{opacity:.4}.gform-fade-if-not-ie{cursor:inherit;opacity:inherit;pointer-events:inherit}}.all-merge-tags{position:absolute;right:0;top:-1.9rem}.all-merge-tags button{transition:color ease-in-out .5s}.gform-tinymce-mergetag-button .all-merge-tags{display:inline-block;padding-top:.45rem;position:static}.wp-media-buttons .all-merge-tags{position:relative;top:.375rem}.field_setting .all-merge-tags{top:-.15rem}.field_setting .all-merge-tags .gform-button--unstyled{font-weight:400}@-moz-document url-prefix(){.gform-settings-input__container--with-merge-tag .all-merge-tags.textarea a.open-list{margin-top:1px}}#gf_merge_tag_list{background:#fff;border:1px solid #d9dae6;border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.125);max-height:14rem;overflow:auto;position:absolute;right:0;width:14.625rem!important;z-index:999}#gf_merge_tag_list li{margin:0}#gf_merge_tag_list li a{cursor:pointer}#gf_merge_tag_list li a:hover{background:#f6f9fc}#gf_merge_tag_list li:last-child a{border-bottom:none}#gf_merge_tag_list .group-header,#gf_merge_tag_list li a{border-bottom:1px solid #ecedf8;color:#242748;display:block;font-size:.875rem;line-height:1.1875rem;padding:.75rem 1.1875rem 1.0625rem}#gf_merge_tag_list .group-header{font-weight:700}.right ul#gf_merge_tag_list{right:0}.mt-form_confirmation_message,.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px}#wp-form_confirmation_message-wrap,#wp-gform_notification_message-wrap{margin-right:12px}#form_settings{margin-top:0}table#gf_personal_data_field_settings td{margin:0;padding:0;vertical-align:top}#gf_personal_data_field_settings .gf_personal_data_field_label_title{font-weight:700;padding:0 10px 10px 0;text-align:left}#gf_personal_data_field_settings .gf_personal_data_cb_title{font-weight:700;padding:0;text-align:center;width:50px}#gf_personal_data_field_settings .gf_personal_data_cb_cell{text-align:center;width:50px}.gform-admin .ui-autocomplete .ui-state-active{background-color:#f6f9fc;border-right:2px solid #3e7da6}.gform-admin .ui-menu-item{padding:0}.gform-admin .ui-menu-item div{padding:.25rem .625rem}.gform-admin .gform-dropdown--merge-tags{display:inline-block}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control{background:0 0;border:none;box-shadow:none;display:inline-block;height:auto;line-height:1;padding:0}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control i.gform-dropdown__chevron{display:none}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control .gform-icon--merge-tag{border:1px solid transparent;border-radius:3px;color:#9092b2;font-size:1.5rem;position:relative}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control:focus .gform-icon--merge-tag{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control:hover .gform-icon--merge-tag{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__control .gform-dropdown__control-text{align-items:center;color:#242748;display:flex;font-size:.8125rem;overflow:visible}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container{border-radius:.1875rem;border-top:.0625rem solid #d5d7e9;top:1.5rem;width:16rem}@media (min-width:960px){.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container{width:18.75rem}}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__container::before{display:none}.gform-admin .gform-dropdown--merge-tags .gform-dropdown__group-text{display:inline-block;padding-bottom:.6875rem}.right .gform-dropdown__container{right:0}.gform-admin .gform-dropdown__search .gform-dropdown__search-input:not(#gform-form-switcher-search){-webkit-appearance:none;background:#fff;border:1px solid #c3c5db;border-radius:3px;box-shadow:0 0 0 transparent;box-sizing:border-box;color:#242748;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.8125rem;line-height:2;outline:0;padding:.25rem .75rem;transition:box-shadow .15s ease,background-color .15s ease}html[dir=rtl] .all-merge-tags{left:0;right:auto}html[dir=rtl] #gf_merge_tag_list{left:0;right:auto}html[dir=rtl] .gform-admin .gform-dropdown--merge-tags .gform-dropdown__control{padding:0}html[dir=rtl] .right .gform-dropdown__container{left:0;right:auto}.gforms_edit_form .button,.gforms_edit_form button.primary{border-radius:3px;font-size:.8125rem;font-weight:500;line-height:1.125rem;text-decoration:none;text-shadow:none;transition:box-shadow .1s linear;white-space:nowrap}.gforms_edit_form .button:focus,.gforms_edit_form button.primary:focus{outline:0}.gforms_edit_form .button{background-color:#fff;border:1px solid #3e7da6;color:#3e7da6;display:inline-block;height:2.3125rem;padding:.5625rem 1.125rem}.gforms_edit_form .button:hover{background-color:#fff;box-shadow:0 2px 7px rgba(28,31,63,.053);color:#3985b7}.gforms_edit_form .button:focus{background-color:#fff;border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed;color:#3985b7}.gforms_edit_form .button:active{background:#f6f9fc;border:1px solid #3e7da6;color:#3985b7}.gforms_edit_form button.primary{background-color:#3e7da6;border:0;color:#fff;cursor:pointer;height:2.3125rem;padding:.5625rem 1.125rem}.gforms_edit_form button.primary:hover{background:#3985b7;color:#fff}.gforms_edit_form button.primary:focus{background-color:#3e7da6;border:0;box-shadow:0 0 0 2px #bed8ed;color:#fff}.gforms_edit_form button.primary:active{background:#3985b7;border-color:#bed8ed;color:#fff}.gforms_edit_form .gfield_list_icons button{font-size:0}.gforms_edit_form #field_submit{display:flex}.gforms_edit_form #field_submit input{align-self:flex-end}.gforms_edit_form #field_submit .gform-button--primary{background:#3e7da6;border-color:#3e7da6;color:#fff}.gforms_edit_form #field_submit .gform_image_button{background-color:transparent;border:none;border-radius:0;box-shadow:none;height:auto;padding:0;width:auto}.gforms_edit_form #field_submit .gform-button--width-full{justify-content:center;width:100%}#gf_toolbar_buttons_container .update-form{margin:0 .75rem 0 .1875rem}#gf_toolbar_buttons_container .update-form .gform-button__icon{font-size:1.5rem;line-height:0;top:unset;width:24px}#gf_toolbar_buttons_container .update-form.save-in-progress:disabled{background-color:#3e7da6;color:#fff}#gf_toolbar_buttons_container .preview-form{margin:0 .75rem}#gf_toolbar_buttons_container .gform-button--icon-editor{padding:0 8px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes moveOutLeft{0%{margin-left:0}50%{margin-left:-12px}100%{margin-left:-24px}}@keyframes moveInRight{0%{margin-right:12px}100%{margin-right:0}}@keyframes fadeOut{0%{opacity:1}50%{opacity:.5}100%{opacity:0}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInFromHalf{0%{opacity:.75}100%{opacity:1}}html[dir=rtl] #gf_toolbar_buttons_container .update-form{margin:0 .1875rem 0 .75rem}html[dir=rtl] #gf_toolbar_buttons_container .update-form.gform-button--icon-leading .gform-button__icon{margin-left:.5rem;margin-right:unset}html[dir=rtl] #gf_toolbar_buttons_container .preview-form{margin:0 .75rem 0 .1875rem}html[dir=rtl] #gf_toolbar_buttons_container .gform-button--icon-editor{margin:0 .1875rem 0 .75rem}button.panel-block-tabs__toggle{background:0 0;border:1px solid transparent;border-radius:0;border-top-color:#ecedf8;box-shadow:none;box-sizing:border-box;color:#242748;cursor:pointer;display:block;font-size:.8125rem;font-weight:500;line-height:2.8125rem;min-height:3.375rem;overflow:unset;padding:0 0 0 14px;position:relative;text-align:left;transition:.1s background ease-in-out,box-shadow .1s linear;vertical-align:middle;width:100%}a.button-primary.gfbutton,button.button-primary.gfbutton,input.button-primary.gfbutton{border-radius:4px;font-size:12px!important;font-weight:400;letter-spacing:.3pt;margin:10px 0 20px 0}.gform-admin .gform-choice{align-items:center;display:flex;flex-flow:row nowrap;padding:0;position:relative;width:100%}.gform-admin .gform-choice .gform-choice__handle{align-items:center;background:0 0;color:#9092b2;display:flex;font-size:20px;justify-content:center;margin-right:.625rem;width:.588rem}.gform-admin .gform-choice .gform-choice__handle:hover{color:#242748}.gform-admin .gform-choice .gform-choice__selected{-webkit-appearance:none;border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-admin .gform-choice .gform-choice__selected:checked+.gform-choice__selected-label{background:#22a753;border-color:#e1f6ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label{background:#fff;border-color:#bed8ed}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label::after{border-color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected.focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected:focus-visible+.gform-choice__selected-label .gform-choice__selected-icon{color:#3e7da6}.gform-admin .gform-choice .gform-choice__selected-label{align-items:center;background:#9092b2;border:.25rem solid #ecedf8;border-radius:100%;box-sizing:border-box;cursor:pointer;display:inline-flex;flex-basis:26px;font-size:1rem;height:26px;justify-content:center;margin:0;min-width:26px;padding:0;position:relative;transition:border-color .3s ease,background-color .3s ease;width:26px}.gform-admin .gform-choice .gform-choice__selected-label::after{border:2px solid transparent;border-radius:100%;content:"";height:18px;left:-2px;position:absolute;top:-2px;transition:border-color .3s ease;width:18px}.gform-admin .gform-choice .gform-choice__selected-label::before{content:none}.gform-admin .gform-choice .gform-choice__selected-icon{color:#fff;transition:color .3s ease}.gform-admin .gform-choice .gform-choice__input--label{width:calc(100% - 110px)}.gform-admin .gform-choice .gform-choice__input--price,.gform-admin .gform-choice .gform-choice__input--value{display:none}.gform-admin .gform-choice .gform-choice__button--add{margin-left:.3125rem}.gform-admin .gf_browser_chrome .gform-choice__button--add::after,.gform-admin .gf_browser_chrome .gform-choice__button--delete::after{margin-left:-.03125rem}.gform-admin .choice_with_value .gform-choice__input--label{width:calc(50% - 57px)}.gform-admin .choice_with_value .gform-choice__input--value{display:inline-block;width:calc(50% - 58px)}.gform-admin .choice_with_value .gform-choice__button--add{margin-left:.625rem}.gform-admin .choice_with_price .gform-choice__input--label{width:calc(50% - 57px)}.gform-admin .choice_with_price .gform-choice__input--price{display:inline-block;width:calc(50% - 58px)}.gform-admin .choice_with_price .gform-choice__button--add{margin-left:.625rem}html[dir=rtl] .gform-admin .gform-choice__handle{margin-left:.625rem;margin-right:0}html[dir=rtl] .gform-admin .gform-choice .gform-choice__button--add{margin-left:0;margin-right:.3125rem}html[dir=rtl] .gform-admin .gform-choice .gform-choice__selected-label::before{margin-left:0}#field_conditional_logic_container{color:#242748;display:block;font-size:.8125rem;padding-top:10px}#field_conditional_logic_container #field_action_type{width:70px}#field_conditional_logic_container #field_logic_type{width:50px}.conditional_logic_flyout{background:#fff;bottom:0;box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03);box-sizing:border-box;display:flex;flex-direction:column;height:calc(100vh - 5.75rem);left:10px;opacity:0;padding-top:1.25rem;position:absolute;top:0;width:calc(100vw - 270px);z-index:-10}@media (min-width:783px){.conditional_logic_flyout{width:calc(100vw - 306px)}}@media (min-width:960px){.conditional_logic_flyout{width:calc(100vw - 530px)}}@media (min-width:1280px){.conditional_logic_flyout{width:650px}}@media (min-width:960px){.folded.sticky-menu .conditional_logic_flyout{width:calc(100vw - 406px)}}@media (min-width:1280px){.folded.sticky-menu .conditional_logic_flyout{width:auto}}.conditional_logic_flyout__head{padding:0 1.5625rem 1.25rem;position:relative}.conditional_logic_flyout__head::after{background:#ecedf8;bottom:0;content:"";height:.0625rem;left:0;position:absolute;width:100%}.conditional_logic_flyout__title{font-size:.8125rem;font-weight:500;line-height:18px;margin-bottom:12px}.conditional_logic_flyout__desc{font-size:.8125rem;padding-right:1.125rem}.conditional_logic_flyout__action{margin-bottom:22px}.conditional_logic_flyout__action select{margin:0 .5rem}.conditional_logic_flyout__action select:first-child{margin-left:0}.conditional_logic_flyout__body{font-size:.8125rem;overflow-y:auto;padding:1.25rem 1.5625rem}.conditional_logic_flyout__body.panel-block-tabs__body--settings .simplebar-wrapper{height:100%}.conditional_logic_flyout__body.panel-block-tabs__body--settings input[type=text],.conditional_logic_flyout__body.panel-block-tabs__body--settings select{width:auto}.conditional_logic_flyout__body.panel-block-tabs__body--settings .conditional_logic_flyout__rule select:first-child,.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:30%}@media (min-width:1390px){.conditional_logic_flyout__body.panel-block-tabs__body--settings .conditional_logic_flyout__rule select:first-child,.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{width:40%}}.conditional_logic_flyout__body.panel-block-tabs__body--settings .gfield_rule_value_dropdown_cl{margin-right:0}.conditional_logic_flyout__rule{display:flex;flex-direction:row}.conditional_logic_flyout__rule select{margin-right:.75rem}.conditional_logic_flyout__rule input[type=text].gfield_rule_input{width:30%}@media (min-width:1280px){.conditional_logic_flyout__rule input[type=text].gfield_rule_input{flex:1;width:auto}}.conditional_logic_flyout__rule-controls{white-space:nowrap;width:3.75rem}.conditional_logic_flyout__toggle{margin-bottom:22px}.conditional_logic_flyout__toggle_label{font-weight:500}.conditional_logic_flyout__toggle_input{margin-top:5px}.conditional_logic_flyout__toggle_input .gform-field__toggle-switch{background-position:50% 60%;transition:left .25s ease}.conditional_logic_flyout__rule+.conditional_logic_flyout__rule{margin-top:10px}.conditional_logic_flyout .add_field_choice,.conditional_logic_flyout .delete_field_choice{top:.5625rem}.gf_browser_chrome .conditional_logic_flyout .add_field_choice::after,.gf_browser_chrome .conditional_logic_flyout .delete_field_choice::after{margin-left:0}.conditional_logic_flyout .add_field_choice{margin-left:.625rem}.conditional_logic_flyout .delete_field_choice{margin-left:.1875rem;opacity:0;pointer-events:none}.conditional_logic_flyout .delete_field_choice.active{opacity:1;pointer-events:auto}html[dir=rtl] .conditional_logic_flyout .add_field_choice{margin:0 .625rem 0 0}html[dir=rtl] .conditional_logic_flyout .delete_field_choice{margin:0 .375rem 0 0}.conditional-flyout__main-fields{display:none}.conditional-flyout__main-fields.active{display:block}.conditional_logic_flyout_container{overflow:visible}.conditional_logic_flyout_container.anim-in-ready .conditional_logic_flyout{transform:translateX(-98%) translateX(-10px)}.conditional_logic_flyout_container.anim-in-ready.anim-in-active .conditional_logic_flyout{opacity:1;transform:translateX(-100%) translateX(-10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}.conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout{opacity:1;transform:translateX(-100%) translateX(-10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}.conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout .conditional_logic_flyout__body{overflow:hidden}.conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout{opacity:0;transform:translateX(-98%) translateX(-10px)}.conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout .conditional_logic_flyout__body{overflow:hidden}html[dir=rtl] .conditional_logic_flyout{left:auto;right:10px}.conditional_logic_wrapper .conditional_logic_accordion{align-items:center;border:1px solid transparent;border-bottom-color:#ecedf8;border-top-color:#ecedf8;display:flex;flex-direction:row;flex-wrap:wrap;min-height:3.375rem;padding:1.25rem 0;position:relative}.conditional_logic_wrapper .conditional_logic_accordion.active{padding:0}.conditional_logic_wrapper .conditional_logic_accordion.active:hover{background:#f6f9fc}.conditional_logic_wrapper .conditional_logic_accordion.active[focus-within]{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active[focus-within]{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active:focus-within{border-color:#3985b7}.conditional_logic_wrapper .conditional_logic_accordion.active .conditional_logic_accordion__status_indicator{display:inline}.conditional_logic_wrapper .conditional_logic_accordion.active .conditional_logic_accordion__status_indicator .gform-status-indicator-status{bottom:-.0625rem;position:relative}.conditional_logic_wrapper .conditional_logic_accordion__label{font-weight:500;padding:0 0 0 1rem}.conditional_logic_wrapper .conditional_logic_accordion__status_indicator{display:none;margin-left:.625rem}.conditional_logic_wrapper .conditional_logic_accordion__toggle{display:none;margin-left:auto}.conditional_logic_wrapper .conditional_logic_accordion__toggle.active{display:flex;flex:1;min-height:3.375rem}.conditional_logic_wrapper .conditional_logic_accordion__toggle button{align-items:center;background:0 0;border:none;cursor:pointer;display:flex;height:100%;justify-content:flex-end;left:0;outline:0;padding:0 1.125rem 0 0;position:absolute;top:0;width:100%;z-index:1}.conditional_logic_wrapper .conditional_logic_accordion__toggle button:focus .conditional_logic_accordion__toggle_button_icon::before,.conditional_logic_wrapper .conditional_logic_accordion__toggle button:hover .conditional_logic_accordion__toggle_button_icon::before{background-image:url(../../../images/cog-hover.svg)}.conditional_logic_wrapper .conditional_logic_accordion__toggle_button_icon{color:#5b5e80;display:inline-block;font-size:16px;height:16px}.conditional_logic_wrapper .conditional_logic_accordion__toggle_button_icon::before{background-image:url(../../../images/cog.svg);background-position:center;background-repeat:no-repeat;background-size:contain;content:"";display:inline-block;height:16px;width:16px}.conditional_logic_wrapper .conditional_logic_accordion__desc{display:none;padding:1rem 1.625rem .5rem 1rem}.conditional_logic_wrapper .conditional_logic_accordion__desc.active{display:block}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__label{padding:0 1rem 0 0}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__status_indicator{display:none;margin-left:0;margin-right:10px}html[dir=rtl] .conditional_logic_wrapper .conditional_logic_accordion__toggle button{padding:0 0 0 1.125rem}button.conditional_logic_flyout__close{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:100%;box-shadow:0 2px 2px rgba(58,58,87,.0596411);color:#3e7da6;cursor:pointer;display:flex;font-family:dashicons;font-size:1.25rem;height:1.625rem;justify-content:center;outline:0;position:absolute;right:25px;top:15px;transition:border-color .2s ease-in-out,box-shadow .2s ease-in-out;width:1.625rem;z-index:5}button.conditional_logic_flyout__close i::before{content:"\f335";font-style:normal}.gf_browser_safari button.conditional_logic_flyout__close i::before{bottom:-1px;position:relative}button.conditional_logic_flyout__close:focus,button.conditional_logic_flyout__close:hover{border-color:#3e7da6}button.conditional_logic_flyout__close:focus_icon,button.conditional_logic_flyout__close:hover_icon{transform:translateY(1px)}html[dir=rtl] .conditional_logic_flyout_container{overflow:visible}html[dir=rtl] .conditional_logic_flyout_container.anim-in-ready .conditional_logic_flyout{transform:translateX(98%) translateX(10px)}html[dir=rtl] .conditional_logic_flyout_container.anim-in-ready.anim-in-active .conditional_logic_flyout{opacity:1;transform:translateX(100%) translateX(10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}html[dir=rtl] .conditional_logic_flyout_container.anim-out-ready .conditional_logic_flyout{opacity:1;transform:translateX(100%) translateX(10px);transition:opacity 190ms ease-in-out,transform 190ms ease-in-out}html[dir=rtl] .conditional_logic_flyout_container.anim-out-ready.anim-out-active .conditional_logic_flyout{opacity:0;transform:translateX(98%) translateX(10px)}html[dir=rtl] .conditional_logic_flyout_container button.conditional_logic_flyout__close{left:1.562rem;right:auto}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__head{text-align:right}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__desc{padding-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__body{text-align:right}html[dir=rtl] .conditional_logic_flyout_container #field_action_type{margin-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout__rule select{margin-left:.75rem;margin-right:0}html[dir=rtl] .conditional_logic_flyout_container .conditional_logic_flyout .add_field_choice{margin-right:.625rem}.gravity-theme.ui-datepicker,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker){background:#fff;border:.0625rem solid #d5d7e9;border-radius:.1875rem;box-shadow:0 .125rem .75rem rgba(28,31,63,.09);color:#242748;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.75rem;font-weight:500;margin-top:.3125rem;padding:1.125rem 1.5rem}.gravity-theme.ui-datepicker .ui-datepicker-header,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header{display:flex;flex-direction:row;justify-content:center;margin-bottom:.3125rem;position:relative;width:100%}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev{align-items:center;color:#9092b2;cursor:pointer;display:flex;font-family:gform-icons-admin!important;font-size:1.5rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:1.875rem;justify-content:center;position:absolute;speak:never;top:-.125rem;transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus,.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev:hover{color:#3e7da6}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev{left:-.3125rem}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-prev::before{content:"\e90c"}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next{right:-.3125rem;transform:rotate(180deg)}.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header .ui-datepicker-next::before{content:"\e90c"}.gravity-theme.ui-datepicker .ui-datepicker-header select,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select{-webkit-appearance:none;background:0 0;border:0;border-radius:0;box-shadow:none;color:#5b5e80;font-size:.8125rem;font-weight:500;min-height:0;padding:0 1.25rem 0 .5rem}.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-month,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select.ui-datepicker-month{background-image:url(../../../images/chevron-down.svg);background-position:100% .3125rem;background-repeat:no-repeat;background-size:1.125rem 1.125rem;margin-right:.3125rem;padding:0 1.25rem 0 0;-moz-text-align-last:right;text-align-last:right}.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-year,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-header select.ui-datepicker-year{background-image:url(../../../images/select-date.svg);background-position:100% .375rem;background-repeat:no-repeat;background-size:.875rem .875rem;padding:0 1rem 0 0}.gravity-theme.ui-datepicker .ui-datepicker-calendar th span,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar th span{align-items:center;color:#5b5e80;display:flex;font-size:.75rem;font-weight:500;height:1.875rem;justify-content:center;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar td{font-size:.75rem;height:1.875rem;padding:0;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default{align-items:center;border:.0625rem solid transparent;border-radius:100%;box-shadow:none;color:#242748;display:flex;height:1.875rem;justify-content:center;text-decoration:none;transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;width:1.875rem}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:hover{border-color:#d5d7e9;outline:0}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:active,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-default:active{background:#ecedf8;border-color:#d5d7e9}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default{background:#3e7da6;border-color:#3e7da6;color:#fff}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover{border-color:#3e7da6}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default{color:#9092b2}.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:focus,.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:hover,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default:focus,.ui-datepicker:not(.gform-legacy-datepicker):not(.gform-theme-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default:hover{border-color:transparent}.gform-compact-view-overflow-menu{align-self:center;display:none;margin-left:auto;order:1}.gform-compact-view .gform-compact-view-overflow-menu{display:block}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content select:not([multiple]){background:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%239092B2%22%2F%3E%3C%2Fsvg%3E) no-repeat right .6rem top 55%;background-color:#fff;background-size:1rem 1rem;font-size:.8125rem;line-height:1.6875rem;max-height:2.25rem;min-height:2.25rem;padding:0 2rem 0 .8125rem;width:100%}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content select:not([multiple]){font-size:.875rem;line-height:1.25rem;max-height:none;min-height:0;min-height:initial;padding:.6875rem 2rem .6875rem 1rem}.gform-settings-panel__content .select2-container .select2-selection__rendered{width:auto}.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:200px;width:auto}@media (min-width:960px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:150px}}@media (min-width:1280px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:400px}}@media (min-width:1390px){.gform-settings-field__conditional-logic .select2-container .select2-selection__rendered,.gform-settings-field__conditional-logic select:not([multiple]){max-width:460px}}.gform-settings-panel__content .select2-container .select2-selection[aria-expanded=true] .select2-selection__rendered{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiAzLjQxNEwxLjcwNyA3LjcwN0ExIDEgMCAwMS4yOTMgNi4yOTNMNiAuNTg2bDUuNzA3IDUuNzA3YTEgMSAwIDAxLTEuNDE0IDEuNDE0TDYgMy40MTR6IiBmaWxsPSIjQzNDNURCIi8+PC9zdmc+);background-position:100%;background-size:1.5rem}.gform-settings-panel__content .select2-selection{outline:0}.gform-settings-panel__content .select2-container .select2-selection__rendered:hover,.gform-settings-panel__content select:hover{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered:focus,.gform-settings-panel__content select:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered[focus-within],.gform-settings-panel__content select[focus-within]{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-container .select2-selection__rendered:focus-within,.gform-settings-panel__content select:focus-within{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content .select2-search--inline{display:inline-block;margin-bottom:.3125rem}.gform-settings-panel__content .select2-container .select2-search--inline input,.gform-settings-panel__content .select2-container .select2-search--inline input:focus{border:none;box-shadow:none;line-height:1.75rem;padding:0 .5rem;width:auto!important}.gform-settings-panel__content .select2-selection__choice{background-color:#3e7da6;border-radius:2.5rem;color:#fff;display:inline-block;font-size:.875rem;font-weight:600;margin:0 .625rem .3125rem 0;padding:.3125rem .75rem}.gform-settings-panel__content .select2-selection__choice:hover{background-color:#3985b7}.gform-settings-panel__content .select2-selection__choice:hover .select2-selection__choice__remove{color:#3985b7}.gform-settings-panel__content .select2-container .select2-selection__choice__remove{background-color:#ecedf8;border-radius:1rem;color:#3e7da6;float:right;line-height:.85rem;margin-left:.5rem;padding:0 .2rem .1875rem;position:relative;top:.125rem}.gform-settings-field__select--enhanced{display:block;position:relative}.gform-settings-field__select--enhanced .select2-container ul.select2-selection__rendered{padding:.375rem 1rem .0625rem}.gform-settings-field__select--enhanced .select2-container .select2-selection__rendered{box-sizing:border-box;cursor:pointer;display:block;-webkit-user-select:none;-moz-user-select:none;user-select:none}.gform-settings-field__select--enhanced .select2-container--open{z-index:10}.gform-settings-field__select--enhanced .select2-container--above+.select2-container,.gform-settings-field__select--enhanced .select2-container--below+.select2-container{top:100%!important;width:100%!important}.gform-settings-field__select--enhanced .select2-container--above.select2-container--open .select2-selection__rendered,.gform-settings-field__select--enhanced .select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-left-radius:0;border-bottom-right-radius:0}.gform-settings-field__select-enhanced-container .select2-search--hide{display:none}.gform-settings-field__select-enhanced-container .select2-results__options{background:#fff;border:1px solid #9092b2;border-radius:0 0 3px 3px;border-top:none;display:block;margin-bottom:0;max-height:10rem;overflow-y:scroll;padding:0}.gform-settings-field__select-enhanced-container .select2-results__options.select2-results__options--nested{max-height:none;overflow-y:visible}.gform-settings-field__select-enhanced-container .select2-results__options .select2-results__group{display:block;margin-bottom:15px}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option{padding-left:.8125rem;position:relative}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option::before{border:1px solid #3e7da6;border-radius:3px;content:"";display:inline-block;height:1.375rem;margin-right:.75rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.375rem}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option[data-selected=true]{background-color:#fff;border-right:0}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option[data-selected=true]::before{background-color:#3e7da6;background-image:url(../../../images/check.svg);background-position:center;background-repeat:no-repeat}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option--highlighted{background-color:#f6f9fc;border-left:2px solid #3e7da6;border-right:0;padding-left:.6875rem}.gform-settings-field__select-enhanced-container .select2-results__options[aria-multiselectable=true] .select2-results__option--highlighted::before{background-color:#fff;background-image:url(../../../images/grey-check.svg);background-position:center;background-repeat:no-repeat;border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-settings-field__select-enhanced-container .select2-results__option{border-bottom:1px solid #ecedf8;border-left:2px solid transparent;cursor:pointer;font-size:.875rem;line-height:1.25rem;margin:0;outline:0;padding:.75rem .25rem .75rem .75rem}.gform-settings-field__select-enhanced-container .select2-results__option:hover,.gform-settings-field__select-enhanced-container .select2-results__option[data-selected=true]{background:#f6f9fc;border-left:2px solid #3e7da6}html[dir=rtl] .gf_browser_safari .gform-settings-field__select--enhanced .select2-container--below+.select2-container{margin-left:-100%}html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option{border-left:0;border-right:2px solid transparent}html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option:hover,html[dir=rtl] .gform-settings-field__select-enhanced-container .select2-results__option[data-selected=true]{border-left:0;border-right:2px solid #3e7da6}@-moz-document url-prefix(){.gform-settings-field__select--enhanced .select2-container--below+.select2-container{margin-top:0}}.gf_editor_error{align-items:center;background-color:#fff;border-left:4px solid #dd301d;box-sizing:border-box;color:#242748;display:flex;font-size:.8125rem;justify-content:space-between;margin:0 0 .3125rem;min-height:3.75rem;opacity:0;padding:.375rem .75rem;position:fixed;width:calc(100% - 20.125rem)}.folded .gf_editor_error{width:calc(100% - 25.375rem)}.gf_editor_error .error_dismiss svg{fill:currentColor;outline:0}.gf_editor_error .error_dismiss:hover{color:#1e1e1e}.gf_editor_error .error_dismiss{background-color:transparent;border:none;color:#6c7781;cursor:pointer;outline:0}.field_setting.error input,.field_setting.error select,.field_setting.error textarea{border:1px solid #dd301d;color:#dd301d}.field_setting.error input:focus,.field_setting.error select:focus,.field_setting.error textarea:focus{padding:0 .75rem}.gforms_edit_form #form_editor_fields_container .wp-core-ui select.disabled,.gforms_edit_form #form_editor_fields_container .wp-core-ui select:disabled,.gforms_edit_form #form_editor_fields_container input.disabled,.gforms_edit_form #form_editor_fields_container input:disabled,.gforms_edit_form #form_editor_fields_container input[type=checkbox].disabled,.gforms_edit_form #form_editor_fields_container input[type=checkbox]:disabled,.gforms_edit_form #form_editor_fields_container input[type=radio].disabled,.gforms_edit_form #form_editor_fields_container input[type=radio]:disabled,.gforms_edit_form #form_editor_fields_container select.disabled,.gforms_edit_form #form_editor_fields_container select:disabled,.gforms_edit_form #form_editor_fields_container textarea.disabled,.gforms_edit_form #form_editor_fields_container textarea:disabled{background-color:#fff;border-color:#9092b2;opacity:1}.gforms_edit_form #form_editor_fields_container .gform_hidden input{border-color:#d5d7e9}.editor-sidebar .panel-block-tabs__body--settings input:disabled,.editor-sidebar .panel-block-tabs__body--settings select:disabled,.editor-sidebar .panel-block-tabs__body--settings textarea:disabled{background-color:#ecedf8;border:1px solid #ecedf8;color:#9092b2;opacity:1;pointer-events:none}.gform-flyout--choices-ui input[type=date],.gform-flyout--choices-ui input[type=datetime-local],.gform-flyout--choices-ui input[type=datetime],.gform-flyout--choices-ui input[type=email],.gform-flyout--choices-ui input[type=month],.gform-flyout--choices-ui input[type=number],.gform-flyout--choices-ui input[type=password],.gform-flyout--choices-ui input[type=search],.gform-flyout--choices-ui input[type=tel],.gform-flyout--choices-ui input[type=text],.gform-flyout--choices-ui input[type=time],.gform-flyout--choices-ui input[type=url],.gform-flyout--choices-ui input[type=week],.panel-block-tabs__body--settings input[type=date],.panel-block-tabs__body--settings input[type=datetime-local],.panel-block-tabs__body--settings input[type=datetime],.panel-block-tabs__body--settings input[type=email],.panel-block-tabs__body--settings input[type=month],.panel-block-tabs__body--settings input[type=number],.panel-block-tabs__body--settings input[type=password],.panel-block-tabs__body--settings input[type=search],.panel-block-tabs__body--settings input[type=tel],.panel-block-tabs__body--settings input[type=text],.panel-block-tabs__body--settings input[type=time],.panel-block-tabs__body--settings input[type=url],.panel-block-tabs__body--settings input[type=week]{padding:0 .75rem}.gform-flyout--choices-ui input,.gform-flyout--choices-ui textarea,.panel-block-tabs__body--settings input,.panel-block-tabs__body--settings textarea{background:#fff;border:1px solid #9092b2;border-radius:3px;box-sizing:border-box;color:#242748;transition:box-shadow .15s ease}.gform-flyout--choices-ui input:focus,.gform-flyout--choices-ui textarea:focus,.panel-block-tabs__body--settings input:focus,.panel-block-tabs__body--settings textarea:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed}.gform-flyout--choices-ui textarea,.panel-block-tabs__body--settings textarea{height:5.3125rem;padding:.5rem .75rem;width:100%}.gform-flyout--choices-ui input[type=text],.panel-block-tabs__body--settings input[type=text]{max-height:2.25rem;min-height:2.25rem;width:100%}.gform-flyout--choices-ui input[type=text]::-moz-placeholder,.panel-block-tabs__body--settings input[type=text]::-moz-placeholder{color:#9092b2}.gform-flyout--choices-ui input[type=text]::placeholder,.panel-block-tabs__body--settings input[type=text]::placeholder{color:#9092b2}.gform-flyout--choices-ui input[type=text] select.small,.gform-flyout--choices-ui input[type=text].small,.panel-block-tabs__body--settings input[type=text] select.small,.panel-block-tabs__body--settings input[type=text].small{width:25%}.gform-flyout--choices-ui input[type=text] select.medium,.gform-flyout--choices-ui input[type=text].medium,.panel-block-tabs__body--settings input[type=text] select.medium,.panel-block-tabs__body--settings input[type=text].medium{width:50%}.gform-flyout--choices-ui input[type=text] select.large,.gform-flyout--choices-ui input[type=text] textarea.textarea,.gform-flyout--choices-ui input[type=text].large,.panel-block-tabs__body--settings input[type=text] select.large,.panel-block-tabs__body--settings input[type=text] textarea.textarea,.panel-block-tabs__body--settings input[type=text].large{width:100%}.gform-flyout--choices-ui .left_label input[type=text].small,.gform-flyout--choices-ui .left_label select.small,.gform-flyout--choices-ui .right_label input[type=text].small,.gform-flyout--choices-ui .right_label select.small,.panel-block-tabs__body--settings .left_label input[type=text].small,.panel-block-tabs__body--settings .left_label select.small,.panel-block-tabs__body--settings .right_label input[type=text].small,.panel-block-tabs__body--settings .right_label select.small{width:15%}.gform-flyout--choices-ui .left_label input[type=text].medium,.gform-flyout--choices-ui .left_label select.medium,.gform-flyout--choices-ui .right_label input[type=text].medium,.gform-flyout--choices-ui .right_label select.medium,.panel-block-tabs__body--settings .left_label input[type=text].medium,.panel-block-tabs__body--settings .left_label select.medium,.panel-block-tabs__body--settings .right_label input[type=text].medium,.panel-block-tabs__body--settings .right_label select.medium{width:35%}.gform-flyout--choices-ui .left_label input[type=text].large,.gform-flyout--choices-ui .left_label select.large,.gform-flyout--choices-ui .right_label input[type=text].large,.gform-flyout--choices-ui .right_label select.large,.gform-flyout--choices-ui textarea.textarea,.panel-block-tabs__body--settings .left_label input[type=text].large,.panel-block-tabs__body--settings .left_label select.large,.panel-block-tabs__body--settings .right_label input[type=text].large,.panel-block-tabs__body--settings .right_label select.large,.panel-block-tabs__body--settings textarea.textarea{width:67%}.gform-flyout--choices-ui select,.panel-block-tabs__body--settings select{background:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%239092B2%22%2F%3E%3C%2Fsvg%3E) no-repeat right .6rem top 55%;background-color:#fff;background-size:16px 16px;border:1px solid #9092b2;border-radius:3px;box-shadow:none;box-sizing:border-box;color:#242748;font-size:.8125rem;line-height:1.6875rem;max-height:2.25rem;min-height:2.25rem;padding:0 2rem 0 .8125rem;width:100%}.gf_browser_gecko .gform-flyout--choices-ui select,.gf_browser_gecko .panel-block-tabs__body--settings select{line-height:2rem}.gform-flyout--choices-ui select:hover,.panel-block-tabs__body--settings select:hover{box-shadow:0 .25rem .25rem rgba(18,25,97,.0405344);color:#242748}.gform-flyout--choices-ui select:focus,.panel-block-tabs__body--settings select:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-flyout--choices-ui input[type=checkbox],.gform-flyout--choices-ui input[type=radio],.panel-block-tabs__body--settings input[type=checkbox],.panel-block-tabs__body--settings input[type=radio]{border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-flyout--choices-ui .field-choice-label,.panel-block-tabs__body--settings .field-choice-label{height:1rem;margin:0 .325rem;position:relative;width:1rem}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio)+label,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio)+label{margin-right:.3rem;outline:0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):focus+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):disabled+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):disabled+label::before{opacity:.6}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::before{background-color:#fff;border:1px solid #9092b2;border-radius:50%;content:"";display:inline-block;height:1.25rem;margin-right:.3rem;top:1.5625rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.25rem}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label:hover::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label:hover::before{background-image:url(../../../images/grey-bullet.svg);background-position:center;background-repeat:no-repeat;border-color:#3985b7;box-shadow:0 0 0 2px #bed8ed;display:inline-block}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::-moz-selection,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::-moz-selection{background:0 0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::selection,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type)+label::selection{background:0 0}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked:focus+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked:focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked+label::before,.panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type--radio):not(.field-choice-type):checked+label::before{background-color:#fff;background-image:url(../../../images/bullet.svg);background-position:center;background-repeat:no-repeat;border-color:#9092b2}.gform-flyout--choices-ui .field-choice-label::before,.panel-block-tabs__body--settings .field-choice-label::before{background:url(../../../images/icon-check-inactive.svg) center center no-repeat;border:0 none;bottom:auto;box-shadow:none;content:"";cursor:pointer;display:inline-block;height:1rem;position:absolute;top:auto;vertical-align:auto;width:1rem}.gform-flyout--choices-ui .field-choice-type:checked+.field-choice-label::before,.panel-block-tabs__body--settings .field-choice-type:checked+.field-choice-label::before{background:url(../../../images/icon-check-active.svg) center center no-repeat}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input)+label,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input)+label{outline:0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):disabled+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):disabled+label::before{opacity:.6}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type):focus+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type):focus+label::before{border:1px solid #3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::before{background-color:#fff;border:1px solid #9092b2;border-radius:3px;content:"";display:inline-block;height:1.375rem;margin-inline-end:.375rem;transition:box-shadow .15s ease,background-color .15s ease;vertical-align:middle;width:1.375rem}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label:hover::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label:hover::before{background-image:url(../../../images/grey-check.svg);background-position:center;background-repeat:no-repeat;border-color:#3985b7;box-shadow:0 0 0 2px #bed8ed}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::-moz-selection,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::-moz-selection{background:0 0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::selection,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):not(.field-choice-type)+label::selection{background:0 0}.gform-flyout--choices-ui input[type=checkbox]:not(.gform-field__toggle-input):checked:not(.field-choice-type--checkbox)+label::before,.panel-block-tabs__body--settings input[type=checkbox]:not(.gform-field__toggle-input):checked:not(.field-choice-type--checkbox)+label::before{background-color:#3e7da6;background-image:url(../../../images/check.svg);background-position:center;background-repeat:no-repeat;border-color:#3e7da6}.gform-flyout--choices-ui #field_choices .field-choice-text,.gform-flyout--choices-ui .choice_with_value .field-choice-text,.panel-block-tabs__body--settings #field_choices .field-choice-text,.panel-block-tabs__body--settings .choice_with_value .field-choice-text{flex:1;min-width:1px}.gform-flyout--choices-ui .field-choice-text,.panel-block-tabs__body--settings .field-choice-text{width:80%}.gform-flyout--choices-ui .choice_with_value .field-choice-text+.field-choice-value,.panel-block-tabs__body--settings .choice_with_value .field-choice-text+.field-choice-value{flex:1;min-width:1px}.gform-flyout--choices-ui input:disabled,.gform-flyout--choices-ui select:disabled,.gform-flyout--choices-ui textarea:disabled,.panel-block-tabs__body--settings input:disabled,.panel-block-tabs__body--settings select:disabled,.panel-block-tabs__body--settings textarea:disabled{background-color:#ecedf8;border:1px solid #ecedf8;color:#9092b2;pointer-events:none}html[dir=rtl] .panel-block-tabs__body--settings input[type=radio]:not(.field-choice-type)+label::before{margin-left:.3rem;margin-right:0;margin-right:initial}.gform-settings-panel__content .gform-settings-input__container--with-merge-tag .wp-editor-wrap,.gform-settings-panel__content .gform-settings-input__container--with-merge-tag input[type=text].merge-tag-support,.merge-tag-support{max-width:100%;width:100%}.gfield input[type=checkbox],.gfield input[type=radio]{height:1rem;width:1rem}.search-button .search-button__input{background:#fff;border:1px solid #c3c5db;border-radius:3px;box-sizing:border-box;color:#242748;font-size:.8125rem;margin:1px;padding:.625rem 1.0625rem;padding-right:2.1875rem;width:100%}input.search-button__input::-moz-placeholder{color:#5b5e80}input.search-button__input::placeholder{color:#5b5e80}.search-button .search-button__input:focus{border:1px solid #3985b7;box-shadow:0 2px 1px rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748!important;margin:1px;transition:box-shadow .15s ease}.field-choice-row .field-choice-text[type=text]{border-radius:3px;margin:auto .3125rem}html[dir=rtl] .search-button .search-button__input{padding-left:2.1875rem;padding-right:1.0625rem}.gform-settings-field--multiple-inputs .gform-settings-description,.gform-settings-field--multiple-inputs label{flex-basis:100%}.gform-settings-field--multiple-inputs .gform-settings-input__container{display:inline-flex;flex-direction:column}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append{flex-direction:row;flex-wrap:nowrap}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid{flex-wrap:wrap}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid input{flex:1}.gform-settings-field--multiple-inputs .gform-settings-input__container--with-append.gform-settings-input__container--invalid .gform-settings-validation__error{flex-basis:100%}li .section_label,li.field_setting>label{color:#242748;display:block;font-size:.8125rem;font-weight:400;line-height:1.21875rem;margin-bottom:.7rem}.field_setting--with-merge-tag .section_label,li.field_setting--with-merge-tag>label{margin-right:2rem}html[dir=rtl] .field_setting--with-merge-tag .section_label,html[dir=rtl] li.field_setting--with-merge-tag>label{margin-left:2rem;margin-right:0}.panel-block-tabs__body--settings input[type=checkbox]:checked+label{color:#242748}.panel-block-tabs__body--settings li.field_setting label+div,.panel-block-tabs__body--settings li.field_setting select+div{margin-top:.9375rem}.panel-block-tabs__body--settings li.post_custom_field_setting label+div{margin-top:0}.panel-block-tabs__body--settings div#gform_input_mask input,.panel-block-tabs__body--settings div#gform_input_mask select{margin-top:.5rem}.gforms_edit_form .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#autocomplete_attribute_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#field_input_name_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#next_button_text_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#page_names_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li div#previous_button_text_container label.inline,.gforms_edit_form .ui-tabs-panel ul.panel-block-tabs__body--settings li.post_image_setting label.inline{margin-bottom:.5rem!important}div.push-alert-blue,div.push-alert-gold,div.push-alert-green,div.push-alert-red{display:block!important;font-size:1.1rem;line-height:1.5;margin:30px 0 10px;min-width:800px;padding:10px 6px;text-align:center;visibility:visible!important}div.push-alert-gold{background-color:#fffbcc;border-bottom:1px solid #e6db55;border-top:1px solid #e6db55}div.push-alert-green{background-color:#ecfcde;border-bottom:1px solid #a7c886;border-top:1px solid #a7c886}div.push-alert-blue{background-color:#e2edff;border-bottom:1px solid #d2e0eb;border-top:1px solid #d2e0eb}div.push-alert-red{background-color:#ffe1e1;border-bottom:1px solid #eaaead;border-top:1px solid #eaaead}.gform-admin .gform-spinner{background-image:url(../../../images/spinner.svg);background-position:50% 50%;background-repeat:no-repeat;background-size:contain;display:none;height:1rem;width:1rem}.gform-admin .gform-spinner--active{display:inline-block}.gform-admin .gform-table{border:.0625rem solid #ecedf8;border-collapse:collapse;box-sizing:border-box;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:.8125rem;max-width:100%;text-align:left;width:100%}.gform-admin .gform-table *{box-sizing:border-box}.gform-admin .gform-table tr{border-bottom:.0625rem solid #ecedf8}.gform-admin .gform-table th{font-weight:500;padding:.8125rem 1.125rem}.gform-admin .gform-table td{padding:1.25rem 1.125rem}.gform-admin .gform-table p{font-size:.8125rem;margin:0}@media (max-width:960px){.gform-admin .gform-table--responsive thead{border:0;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}}@media (max-width:960px){.gform-admin .gform-table--responsive tbody,.gform-admin .gform-table--responsive td,.gform-admin .gform-table--responsive th,.gform-admin .gform-table--responsive tr{display:block;padding:0;white-space:normal}}@media (max-width:960px){.gform-admin .gform-table--responsive tr{border-bottom:0}}@media (max-width:960px){.gform-admin .gform-table--responsive td,.gform-admin .gform-table--responsive th{border-bottom:1px solid #ecedf8;overflow:hidden;padding:1.25rem 1.125rem;position:relative;vertical-align:top;white-space:normal;width:100%}}@media (max-width:960px){.gform-admin .gform-table--responsive td p{padding-left:1.125rem}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]::before{content:attr(data-header);display:block;float:left;font-weight:500;width:50%}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]>*{clear:right;display:block;float:right;width:50%}}@media (max-width:960px){.gform-admin .gform-table--responsive td[data-header]::after{border-right:1px solid #ecedf8;content:"";display:block;left:0;padding-bottom:200%;position:absolute;top:0;width:50%}}.gform-admin .gform-table--fixed{table-layout:fixed}.gform-admin .gform-table--no-outer-border{border:0}.gform-admin .gform-table--no-outer-border tbody tr:last-child{border-bottom:0}.gform-admin .gform-table--no-outer-border tbody tr:last-child td:last-child{border-bottom:0}html[dir=rtl] .gform-admin .gform-table{text-align:right}.gform-field__toggle,.gform-settings-field__toggle{transition-duration:.2s;transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.gform-field__toggle .gform-settings-description,.gform-settings-field__toggle .gform-settings-description{margin-bottom:.625rem}.gform-field__toggle input[type=checkbox]:focus+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:focus+.gform-field__toggle-container{border-color:#3e7da6}.gform-field__toggle input[type=checkbox]:disabled,.gform-settings-field__toggle input[type=checkbox]:disabled{display:none}.gform-field__toggle input[type=checkbox]:disabled+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:disabled+.gform-field__toggle-container{cursor:not-allowed;opacity:.4;pointer-events:none}.gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container{background:#3e7da6}.gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch,.gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0yLjY2NjcgNC4zOTA1TDYuODYxOS4xOTUzYS42NjY3LjY2NjcgMCAwMS45NDI4Ljk0MjhsLTUuMTM4IDUuMTM4TC4xOTUzIDMuODA0N2EuNjY2Ny42NjY3IDAgMDEuOTQyOC0uOTQyOGwxLjUyODYgMS41Mjg2eiIgZmlsbD0iIzNFN0RBNiIvPjwvc3ZnPg==);background-size:.5rem;left:1.5rem}.gform-field__toggle input[type=checkbox]:checked:focus+.gform-field__toggle-container,.gform-settings-field__toggle input[type=checkbox]:checked:focus+.gform-field__toggle-container{border:2px solid #bed8ed}.gform-field__toggle input[type=checkbox]:not(:disabled),.gform-settings-field__toggle input[type=checkbox]:not(:disabled){opacity:0!important;position:absolute;z-index:3}.gform-field__toggle .gform-field__toggle-switch,.gform-settings-field__toggle .gform-field__toggle-switch{background:#fff center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjQ3NDkgMi41MjUxYS41ODMzLjU4MzMgMCAwMDAgLjgyNUw0LjEyNDggNWwtMS42NSAxLjY1YS41ODMzLjU4MzMgMCAxMC44MjUuODI0OWwxLjY1LTEuNjUgMS42NDk5IDEuNjVhLjU4MzMuNTgzMyAwIDEwLjgyNS0uODI1TDUuNzc0NiA1bDEuNjUtMS42NWEuNTgzMy41ODMzIDAgMTAtLjgyNS0uODI0OWwtMS42NSAxLjY1LTEuNjQ5OS0xLjY1YS41ODMzLjU4MzMgMCAwMC0uODI1IDB6IiBmaWxsPSIjOTA5MkIyIi8+PC9zdmc+);background-size:.625rem;border-radius:50%;box-shadow:0 1px 4px rgba(24,24,72,.123698);display:block;height:1.125rem;left:0;position:relative;transition:all .25s ease;transition-duration:.2s;transition-property:background,left;transition-timing-function:cubic-bezier(0.4,0,0.2,1);width:1.125rem}html[dir=rtl] .gform-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch,html[dir=rtl] .gform-settings-field__toggle input[type=checkbox]:checked+.gform-field__toggle-container .gform-field__toggle-switch{left:-1.5rem}.gform-field__toggle-container{background:#9092b2;border:2px solid transparent;border-radius:15px;box-shadow:inset 0 1px 2px rgba(90,97,105,.15);cursor:pointer;display:inline-block;height:1.125rem;margin-right:.5rem;padding:.1275rem;position:relative;transition:all .25s ease;transition-duration:.2s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.1,1);width:2.625rem}.gforms_edit_form .gform-field__toggle-container{bottom:-.1rem;margin-bottom:0;margin-right:.1rem}.gform-form-toolbar{align-items:center;background:#fff;box-sizing:border-box;color:#1c1f3f;display:flex;font-size:.8125rem;-webkit-font-smoothing:antialiased;justify-content:start;margin:0;max-height:4rem;min-height:4rem;padding:0 .5rem 0 0;width:100%;z-index:99}.gform-form-toolbar>li{margin-bottom:0;padding-top:.5625rem}.gform-form-toolbar a:focus{box-shadow:none;outline:0}.gform-form-toolbar--fixed{position:fixed;z-index:3}.gform-form-toolbar__container{align-items:center;display:flex;flex-wrap:wrap;margin-left:auto;margin-right:auto;padding:0 1.5rem;width:69.5rem}.gform-form-toolbar__divider{background:#ecedf8;display:inline-block;height:100%;margin:0 .8125rem;width:1px}.gform-form-toolbar__menu{border-left:1px solid #ecedf8;border-right:1px solid #ecedf8;display:flex;height:4rem;padding:0 .65rem}.gform-form-toolbar__menu li>a:hover{border-bottom-color:#3e7da6}.gform-form-toolbar__menu>li{display:inline-block;margin:0;position:relative}.gform-form-toolbar__menu>li::after{bottom:0;content:"";height:.25rem;left:0;margin-bottom:-.25rem;position:absolute;width:100%}.gform-form-toolbar__menu>li>a{align-items:center;color:#5b5e80;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:500;height:4rem;padding:0 .8125rem 0 .8125rem;position:relative;text-decoration:none;transition:all .2s ease}.gform-form-toolbar__menu>li>a::after{background:0 0;bottom:0;content:"";height:.1875rem;left:.375rem;position:absolute;transition:all .2s ease;width:calc(100% - .75rem)}.gform-form-toolbar__menu>li>a.gf_toolbar_active,.gform-form-toolbar__menu>li>a.submenu-open,.gform-form-toolbar__menu>li>a:focus,.gform-form-toolbar__menu>li>a:hover{color:#242748}.gform-form-toolbar__menu>li>a.gf_toolbar_active::after,.gform-form-toolbar__menu>li>a.submenu-open::after,.gform-form-toolbar__menu>li>a:focus::after,.gform-form-toolbar__menu>li>a:hover::after{background:#3e7da6}.gform-form-toolbar__menu>li>a.gf-topmenu-dynamic svg{fill:currentColor}.gform-form-toolbar__menu>li>a.gf-topmenu-dynamic{border-bottom:none;line-height:1px;padding-top:13px}.gform-form-toolbar__menu .gform-form-toolbar__submenu{margin:.1875rem 0 0 .3125rem;min-width:14.688rem;opacity:0;position:absolute;transition:.2s all;visibility:hidden;z-index:100}.gform-form-toolbar__menu .gform-form-toolbar__submenu.open{opacity:1;visibility:visible}.gform-form-toolbar__menu .gform-form-toolbar__submenu>div{background:#fff;border:.0625rem solid #d5d7e9;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);box-sizing:border-box;max-height:calc(100vh - 10rem);overflow-y:auto}.gform-form-toolbar__menu .gform-form-toolbar__submenu li{display:block;margin:0}.gform-form-toolbar__icon{align-content:center;display:inline-flex;font-size:1.375rem;justify-content:center;margin-right:.5rem;text-align:center;width:1.25rem}.gform-form-toolbar__icon svg{max-width:1.25rem}.gf_toolbar_buttons_container{align-items:center;display:flex;flex:auto;font-family:inter,-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;justify-content:flex-end;padding-inline-start:0.65rem;text-align:right}.form_switcher_arrow{margin-left:.5rem}.gform-form-toolbar__logo{display:none}.gform-form-toolbar__logo a{align-items:center;background:#242748;display:flex;height:3.813rem;justify-content:center;transition:all ease-in-out 190ms;width:3.813rem}.gform-form-toolbar__logo a:hover{background:#0f3d6c}.gform-form-toolbar__logo a:hover svg path.g{fill:#0f3d6c}.gform-form-toolbar__form-title{margin-right:0;padding:0 .9375rem 0 .1875rem;width:13.75rem}@media (min-width:900px){.gform-form-toolbar__form-title.gform-dropdown--medium-title{width:18.75rem}}@media (min-width:990px){.gform-form-toolbar__form-title.gform-dropdown--long-title{width:25rem}}.gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor{padding:0 .9375rem}@media (min-width:900px){.gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor.gform-dropdown--long-title{width:25rem}}html[dir=rtl] .gform-form-toolbar__form-title{padding:0 0 0 .9375rem}html[dir=rtl] .gform-form-toolbar__form-title.gform-form-toolbar__form-title--form-editor{padding:0 .9375rem}.gform-form-toolbar__form-id{font-size:.8125rem;margin-left:auto}.row-actions .gform-form-toolbar__submenu{display:none;position:absolute;z-index:5}.row-actions .gform-form-toolbar__submenu>div{background:#fff;border:.0625rem solid #d5d7e9;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);box-sizing:border-box;max-height:calc(100vh - 35rem);min-height:6.25rem;min-width:14.688rem;overflow-y:auto}.row-actions .gform-form-toolbar__submenu li{margin:0}.gform-form-toolbar__submenu a,.row-actions .gform-form-toolbar__submenu a{align-items:center;background:0 0;border:0;border-left:.1875rem solid transparent;box-shadow:none;color:#242748;cursor:pointer;display:flex;outline:0;overflow:hidden;padding:.6875rem 1rem .6875rem .875rem;text-align:left;text-decoration:none;text-overflow:ellipsis;transition:all .15s ease}.gform-form-toolbar__submenu a:focus,.gform-form-toolbar__submenu a:hover,.row-actions .gform-form-toolbar__submenu a:focus,.row-actions .gform-form-toolbar__submenu a:hover{background:#f6f9fc;border-left-color:#3e7da6}html[dir=rtl] .gform-form-toolbar__submenu a,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a{border-left:0;border-right:.1875rem solid transparent;text-align:right}html[dir=rtl] .gform-form-toolbar__submenu a:focus,html[dir=rtl] .gform-form-toolbar__submenu a:hover,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a:focus,html[dir=rtl] .row-actions .gform-form-toolbar__submenu a:hover{border-right-color:#3e7da6}.gf_tooltip{align-items:center;background:#ecedf8;border:none;border-radius:50%;box-sizing:border-box;color:#242748;display:inline-flex;font-size:.5rem;height:1rem;justify-content:center;margin-left:.25rem;position:relative;text-decoration:none;vertical-align:middle;width:1rem}.gf_tooltip::before{border:.0625rem solid transparent;border-radius:100%;content:" ";display:block;height:.875rem;left:0;position:absolute;top:0;transition:border-color .2s ease-in-out,box-shadow .2s ease-in-out;transition-delay:0.1s;width:.875rem}.gf_tooltip:focus{outline:0}.gf_tooltip:active,.gf_tooltip:hover{box-shadow:0 2px 2px rgba(58,58,87,.0796)}.gf_tooltip:active::before,.gf_tooltip:hover::before{border-color:#3e7da6;box-shadow:0 0 0 1px #bed8ed}.ui-tooltip.ui-widget-content{background:rgba(28,31,63,.9);border-radius:5px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);color:#fff;font:400 0.8125rem "Open Sans",sans-serif;line-height:1.538461538em;max-width:13.125rem;mix-blend-mode:normal;padding:.625rem 1rem;position:absolute;text-align:center;z-index:1000}.ui-tooltip.ui-widget-content a{color:#fff}.ui-tooltip.ui-widget-content h6,.ui-tooltip.ui-widget-content strong{display:block;font:inherit;font-weight:600;margin:0}.ui-tooltip.ui-widget-content.arrow-bottom::after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid rgba(28,31,63,.9);bottom:-6px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);content:"";margin-left:-3px;position:absolute}.ui-tooltip.ui-widget-content.arrow-left::after{border-bottom:6px solid transparent;border-right:6px solid rgba(28,31,63,.9);border-top:6px solid transparent;box-shadow:0 4px 10px rgba(18,25,97,.0779552);content:"";left:-6px;margin-top:-6px;position:absolute;top:50%}html[dir=rtl] .gf_tooltip{margin-left:0;margin-right:.25rem}div.delete-alert{margin-bottom:30px;padding:20px 0 20px 20px}div.gf_delete_notice{margin-bottom:10px}div.gforms_green_alert,div.gforms_help_alert,div.gforms_red_alert{background-color:#fff;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;line-height:1.6;margin:12px 24px -6px;padding:11px 15px;position:relative;text-align:left}div.gforms_help_alert{border-left:4px solid #ffba00}html[dir=rtl] div.gforms_help_alert{border-left:none!important;border-right:4px solid #ffba00}div.gforms_help_alert i.fa{color:#d4662c}div.gforms_red_alert{border-left:4px solid #dd3d36}html[dir=rtl] div.gforms_red_alert{border-left:none!important;border-right:4px solid #dd3d36}div.gforms_red_alert i.fa{color:#dd3d36}div.gforms_green_alert{border-left:4px solid #7ad03a}html[dir=rtl] div.gforms_green_alert{border-left:none!important;border-right:4px solid #7ad03a}div.gforms_green_alert i.fa{color:#7ad03a}div.delete-alert input.button{background:#9e0b0f;border:1px solid #9e0b0f;box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);color:#fff;text-shadow:none!important}div.delete-alert input.button:active,div.delete-alert input.button:hover{background:#dd3d36;border:1px solid #dd3d36;box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);color:#fff;text-shadow:none!important}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}* html .ui-helper-clearfix{height:1%}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-tabs{padding:.2em;zoom:1}.ui-tabs[style]{border:1px solid #c2d7ef!important;margin:6px 0 0!important;swidth:438px!important}.ui-tabs .ui-tabs-nav{list-style:none;position:relative;padding:.2em .2em 0 0}.ui-tabs .ui-tabs-nav li{position:relative;float:left;border-bottom-width:0!important;margin:0 .2em -1px 0;padding:0;text-align:center}.ui-tabs .ui-tabs-nav li a{display:block;text-decoration:none;padding:.5em 1em;text-align:center;font-size:12px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{padding-bottom:1px;border-bottom-width:0}.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a,.ui-tabs .ui-tabs-nav li.ui-tabs-selected a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{padding:1em 1.4em;display:block;border-width:0;background:0 0}.ui-tabs .ui-tabs-hide{display:none!important}@font-face{font-family:gravityfont;src:url('../../../fonts/gravityfont.eot')}@font-face{font-family:gravityfont;src:url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff');font-weight:400;font-style:normal}[class*=" gficon-"],[class^=gficon-]{font-family:gravityfont;speak:none;font-style:normal;font-weight:400;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gficon-gravityforms-locked-icon:before{content:"\e627"}.gficon-gravityforms-logo-icon:before{content:"\e60c"}.gficon-gravitycharge-logo-icon:before{content:"\e600"}.gficon-gravityforms-rocket-icon:before{content:"\e614"}.gficon-gravityforms-form-icon:before{content:"\e60b"}.gficon-gravityforms-css-alt-con:before{content:"\e60e"}.gficon-gravityforms-markup-icon:before{content:"\e60d"}.gficon-gravityforms-key-icon:before{content:"\e610"}.gficon-gravityforms-upload-icon:before{content:"\e612"}.gficon-gravityforms-download-icon:before{content:"\e611"}.gficon-gravityforms-filter-icon:before{content:"\e61d"}.gficon-gravityforms-settings-icon:before{content:"\e615"}.gficon-gravityforms-eye-icon:before{content:"\e61c"}.gficon-gravityforms-star-icon:before{content:"\e61e"}.gficon-gravityforms-cross-icon:before{content:"\e61f"}.gficon-gravityforms-tick-icon:before{content:"\e620"}.gficon-gravityforms-credit-icon:before{content:"\e621"}.gficon-gravityforms-file-icon:before{content:"\e622"}.gficon-gravityforms-search-icon:before{content:"\e623"}.gficon-gravityforms-bullet-icon:before{content:"\e624"}.gficon-gravityforms-bug-icon:before{content:"\e619"}.gficon-gravityforms-docs-icon:before{content:"\e61a"}.gficon-gravityforms-vcard-icon:before{content:"\e61b"}.gficon-gravityforms-info-icon:before{content:"\e616"}.gficon-gravityforms-favorite-icon:before{content:"\e617"}.gficon-gravityforms-chat-icon:before{content:"\e618"}.gficon-gravityforms-zero-icon:before{content:"\e601"}.gficon-gravityforms-nine-icon:before{content:"\e602"}.gficon-gravityforms-eight-icon:before{content:"\e603"}.gficon-gravityforms-seven-icon:before{content:"\e604"}.gficon-gravityforms-six-icon:before{content:"\e605"}.gficon-gravityforms-five-icon:before{content:"\e606"}.gficon-gravityforms-four-icon:before{content:"\e607"}.gficon-gravityforms-three-con:before{content:"\e608"}.gficon-gravityforms-two-icon:before{content:"\e609"}.gficon-gravityforms-one-icon:before{content:"\e60a"}.gficon-gravityforms-css-icon:before{content:"\e60f"}.gficon-gravityforms-dollar-icon:before{content:"\e613"}.gficon-gravityforms-slideoff-icon:before{content:"\e625"}.gficon-gravityforms-slideon-icon:before{content:"\e626"}.gficon-settings-cog:before{content:"\e634"}.gficon-gravityforms-spinner-icon:before{content:"\e628"}.gficon-tick:before{content:"\e629"}.gficon-cross:before{content:"\e62a"}.gficon-search:before{content:"\e62b"}.gficon-pencil:before{content:"\e62c"}.gficon-exclamation:before{content:"\e635"}.gficon-forbid:before{content:"\e636"}.gficon-star:before{content:"\e639"}.gficon-star-hollow:before{content:"\e63a"}.gficon-trash:before{content:"\e62d"}.gficon-arrow-up:before{content:"\e62e"}.gficon-arrow-down:before{content:"\e62f"}.gficon-arrow-left:before{content:"\e630"}.gficon-arrow-right:before{content:"\e631"}.gficon-add:before{content:"\e632"}.gficon-subtract:before{content:"\e633"}.gficon-close:before{content:"\e63b"}.gficon-support:before{content:"\e63c"}.gficon-send:before{content:"\e63d"}.gficon-star1:before{content:"\e639";color:#ff9800;font-size:1.2em;margin-top:.188em}.gficon-star0:before{content:"\e63a";color:#ccc;font-size:1.2em;margin-top:.188em}.gfield_creditcard_warning_message .gficon-forbid{color:#9c0f17!important;margin-right:1em}.gficon-2x{font-size:2em}.gficon-3x{font-size:3em}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.gficon-spin{display:inline-block;animation:rotation 2s linear infinite;-webkit-animation:rotation 2s linear infinite;-moz-animation:rotation 2s linear infinite;text-shadow:0 0 2px rgba(255,255,255,.2);margin-left:2px}.gficon-gravityforms-spinner-icon.gficon-spin{color:#d54e21;font-size:1.5em}html[dir=rtl] .gform_wrapper *,html[dir=rtl] .gform_wrapper .gform_body,html[dir=rtl] .gform_wrapper .gform_footer,html[dir=rtl] .gform_wrapper button,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper form,html[dir=rtl] .gform_wrapper h3.gform_title,html[dir=rtl] .gform_wrapper input[type=button],html[dir=rtl] .gform_wrapper input[type=email],html[dir=rtl] .gform_wrapper input[type=password],html[dir=rtl] .gform_wrapper input[type=submit],html[dir=rtl] .gform_wrapper input[type=tel],html[dir=rtl] .gform_wrapper input[type=text],html[dir=rtl] .gform_wrapper input[type=url],html[dir=rtl] .gform_wrapper select,html[dir=rtl] .gform_wrapper span.gform_description,html[dir=rtl] .gform_wrapper textarea,html[dir=rtl] .gform_wrapper ul li,html[dir=rtl] .gform_wrapper ul li.gfield,html[dir=rtl] .gform_wrapper ul li.gfield input,html[dir=rtl] .gform_wrapper ul li.gfield select,html[dir=rtl] .gform_wrapper ul li.gfield textarea,html[dir=rtl] .gform_wrapper ul li.gfield.gfield_html{text-align:right;direction:rtl}html[dir=rtl] .gform_wrapper ul,html[dir=rtl] .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}html[dir=rtl] .gform_wrapper table.gfield_list td,html[dir=rtl] .gform_wrapper table.gfield_list th{padding-left:16px;padding-right:0}.gform_legacy_markup_wrapper table.gfield_list tbody td.gfield_list_icons,.gform_legacy_markup_wrapper table.gfield_list thead tr td:last-child{padding:0 4px 0 0!important}html[dir=rtl] .gform_wrapper.gf_browser_gecko .left_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .right_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl!important}html[dir=rtl] .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}html[dir=rtl] .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer,body .gform_wrapper.gf_rtl_wrapper .gform_heading,body .gform_wrapper.gf_rtl_wrapper button,body .gform_wrapper.gf_rtl_wrapper div.validation_error,body .gform_wrapper.gf_rtl_wrapper h3.gform_title,body .gform_wrapper.gf_rtl_wrapper input[type=button],body .gform_wrapper.gf_rtl_wrapper input[type=email],body .gform_wrapper.gf_rtl_wrapper input[type=password],body .gform_wrapper.gf_rtl_wrapper input[type=submit],body .gform_wrapper.gf_rtl_wrapper input[type=tel],body .gform_wrapper.gf_rtl_wrapper input[type=text],body .gform_wrapper.gf_rtl_wrapper input[type=url],body .gform_wrapper.gf_rtl_wrapper select,body .gform_wrapper.gf_rtl_wrapper span.gform_description,body .gform_wrapper.gf_rtl_wrapper textarea,body .gform_wrapper.gf_rtl_wrapper ul li,body .gform_wrapper.gf_rtl_wrapper ul li.gfield,body .gform_wrapper.gf_rtl_wrapper ul li.gfield input,body .gform_wrapper.gf_rtl_wrapper ul li.gfield select,body .gform_wrapper.gf_rtl_wrapper ul li.gfield textarea,body .gform_wrapper.gf_rtl_wrapper ul li.gfield.gfield_html,body.rtl .gform_wrapper *,body.rtl .gform_wrapper .gform_body,body.rtl .gform_wrapper .gform_footer,body.rtl .gform_wrapper button,body.rtl .gform_wrapper div.validation_error,body.rtl .gform_wrapper form,body.rtl .gform_wrapper h3.gform_title,body.rtl .gform_wrapper input[type=button],body.rtl .gform_wrapper input[type=email],body.rtl .gform_wrapper input[type=password],body.rtl .gform_wrapper input[type=submit],body.rtl .gform_wrapper input[type=tel],body.rtl .gform_wrapper input[type=text],body.rtl .gform_wrapper input[type=url],body.rtl .gform_wrapper select,body.rtl .gform_wrapper span.gform_description,body.rtl .gform_wrapper textarea,body.rtl .gform_wrapper ul li,body.rtl .gform_wrapper ul li.gfield,body.rtl .gform_wrapper ul li.gfield input,body.rtl .gform_wrapper ul li.gfield select,body.rtl .gform_wrapper ul li.gfield textarea,body.rtl .gform_wrapper ul li.gfield.gfield_html{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper ul,body .gform_wrapper.gf_rtl_wrapper ul li,body.rtl .gform_wrapper ul,body.rtl .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input,body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input[type=checkbox],body .gform_wrapper.gf_rtl_wrapper .gfield_radio li input[type=radio],body.rtl .gform_wrapper .gfield_checkbox li input,body.rtl .gform_wrapper .gfield_checkbox li input[type=checkbox],body.rtl .gform_wrapper .gfield_radio li input[type=radio]{float:right!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0 24px 0 0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html blockquote,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html p,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html span,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table td,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table th{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list td,body .gform_wrapper.gf_rtl_wrapper table.gfield_list th,body.rtl .gform_wrapper table.gfield_list td,body.rtl .gform_wrapper table.gfield_list th{padding:0!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list thead th{text-align:right!important}body .gform_wrapper.gf_rtl_wrapper table input,body.rtl .gform_wrapper table input{float:right!important}body .gform_wrapper.gf_rtl_wrapper .recaptchatable #recaptcha_response_field,body.rtl .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi ul.chosen-choices li.search-choice,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container ul.chosen-choices li.search-field,body.rtl .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .instruction,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .instruction{margin-right:31%;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) div.ginput_complex,body.rtl .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:32%;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description{padding:0}body.rtl .left_label .gfield_html_formatted,body.rtl .right_label .gfield_html_formatted{margin-left:0;margin-right:30%}body .gform_wrapper.gf_rtl_wrapper .gform_footer.left_label,body .gform_wrapper.gf_rtl_wrapper .gform_footer.right_label,body.rtl .gform_wrapper .gform_footer.left_label,body.rtl .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}body .gform_wrapper.gf_rtl_wrapper .ginput_right select,body.rtl .gform_wrapper .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_right select{margin-right:2px}body .gform_wrapper.gf_rtl_wrapper .ginput_container_address .ginput_right select,body.rtl .gform_wrapper .ginput_container_address .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_container_address .ginput_right select{margin-right:0}body .gform_wrapper.gf_rtl_wrapper img.ui-datepicker-trigger,body.rtl .gform_wrapper img.ui-datepicker-trigger,html[dir=rtl] .gform_wrapper img.ui-datepicker-trigger{margin:4px 2px 0 0}body .gform_wrapper.gf_rtl_wrapper .gf_progressbar_percentage span,body.rtl .gform_wrapper .gf_progressbar_percentage span,html[dir=rtl] .gform_wrapper .gf_progressbar_percentage span{display:block;width:auto;float:left!important}body .gform_wrapper.gf_rtl_wrapper .gf_step span.gf_step_number,body.rtl .gform_wrapper .gf_step span.gf_step_number,html[dir=rtl] .gform_wrapper .gf_step span.gf_step_number{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .gf_step,body.rtl .gform_wrapper .gf_step,html[dir=rtl] .gform_wrapper .gf_step{margin:0 0 10px 10px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container .chosen-results li.active-result,body.rtl .gform_wrapper .chosen-container .chosen-results li.active-result,html[dir=rtl] .gform_wrapper .chosen-container .chosen-results li.active-result{padding-right:24px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,body.rtl .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,html[dir=rtl] .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close{right:5px!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span{display:block;margin-right:19px!important}html[dir=rtl] div#preview_hdr span.actionlinks{float:left!important;text-align:left!important}html[dir=rtl] div#preview_hdr div:first-child{background-position:right center!important;padding-left:10px!important;padding-right:10px!important}html[dir=rtl] .gform_wrapper .gf_invisible,html[dir=rtl] .gform_wrapper .gfield_visibility_hidden{left:auto;right:-9999px}html[dir=rtl] .gform_wrapper .gf_progressbar_percentage{border-radius:4px 20px 20px 4px}html[dir=rtl] body.wp-admin *{direction:rtl!important}html[dir=rtl] body.wp-admin li.gf_form_switcher{display:block;position:relative;right:0}html[dir=rtl] body.wp-admin ul#gf_form_toolbar_links{padding:0 6px 0 0!important}html[dir=rtl] body.wp-admin .top_label .gfield_label{margin:8px 6px 4px 0}html[dir=rtl] body.wp-admin .gfield_checkbox li input,html[dir=rtl] body.wp-admin .gfield_checkbox li input[type=checkbox],html[dir=rtl] body.wp-admin .gfield_radio li input[type=radio]{float:right!important;margin-left:2px!important;margin-right:1px!important}html[dir=rtl] body.wp-admin .ginput_complex .ginput_left,html[dir=rtl] body.wp-admin .ginput_complex .ginput_right{float:right!important}html[dir=rtl] body.wp-admin .gfield_time_hour,html[dir=rtl] body.wp-admin .gfield_time_minute{float:right}html[dir=rtl] body.wp-admin .gfield_date_day,html[dir=rtl] body.wp-admin .gfield_date_month,html[dir=rtl] body.wp-admin .gfield_date_year{float:right!important}html[dir=rtl] body.wp-admin img#gfield_input_datepicker_icon{left:-4px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions{background-position:0 -1995px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions span{margin-left:300px}html[dir=rtl] body.wp-admin ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:340px;top:40px;background-position:0 -1880px}html[dir=rtl] body.wp-admin .gform_new_form_modal_container .setting-row label{float:right!important}html[dir=rtl] body.wp-admin .gform_new_form_modal_container div.submit-row input#save_new_form.button{float:right!important}html[dir=rtl] body.wp-admin #TB_ajaxWindowTitle{float:right!important}html[dir=rtl] body.wp-admin #TB_closeAjaxWindow{float:left!important}html[dir=rtl] body.wp-admin .gform_tabs li.active a{position:relative;right:-1px;padding:6px 10px 6px 10px!important}html[dir=rtl] body.wp-admin a.tooltip,html[dir=rtl] body.wp-admin a.tooltip_bottomleft,html[dir=rtl] body.wp-admin a.tooltip_left{overflow:hidden}html[dir=rtl] body.wp-admin h2.gf_admin_page_title span.gf_admin_page_subtitle span.gf_admin_page_formid{margin:0 0 0 8px!important}html[dir=rtl] body.wp-admin p.submit input.gf_settings_savebutton{float:right}html[dir=rtl] body.wp-admin p[style]{text-align:right!important}html[dir=rtl] body.wp-admin div.delete-alert{padding:0 20px 20px 20px}html[dir=rtl] .gform_wrapper span.ginput_left,html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield.gfield_error{padding-right:16px!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container .ginput_left{padding-left:.9804%;padding-right:.9804%}html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-right:0!important;padding-right:0;margin-left:-4px}html[dir=rtl] div.ginput_container_name span{padding-right:0;padding-left:16px;margin-right:0;margin-left:-4px}html[dir=rtl] div#preview_hdr span.toggle_helpers{float:left}html[dir=rtl] div#preview_hdr span.toggle_helpers input,html[dir=rtl] div#preview_hdr span.toggle_helpers label{display:-moz-inline-stack;display:inline-block}html[dir=rtl] div#preview_note{border-right:4px solid #ffba00;border-left:none!important}html[dir=rtl] .gform_wrapper span.gfield_required{margin-left:0;margin-right:4px}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{padding:0 24px 14px 0}html[dir=rtl] .gform_wrapper .gfield_time_hour i{float:left}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{background-position:100% top}html[dir=rtl] div.form_saved_message,html[dir=rtl] div.form_saved_message *{text-align:center!important}html[dir=rtl] .gform_wrapper .gfield_checkbox li label,html[dir=rtl] .gform_wrapper .gfield_radio li label{margin:0 4px 0 0}html[dir=rtl] .gform_wrapper:not(.gf_browser_gecko):not(.gf_browser_ie) select{background-position:3.5% center}html[dir=rtl] .gform_wrapper .gform_fileupload_multifile .gform_drop_area,html[dir=rtl] .gform_wrapper span.gform_drop_instructions{text-align:center}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper div.validation_error{text-align:center}.rtl #gform_fields.left_label fieldset.gfield,.rtl #gform_fields.right_label fieldset.gfield{margin:0;padding:0}.rtl #gform_fields.right_label legend.gfield_label{right:0;text-align:left}.rtl #gform_fields:not(.top_label) .ginput_container.ginput_single_email{margin-right:0}.rtl #gform_fields.left_label fieldset .gfield_description,.rtl #gform_fields.left_label fieldset .ginput_container:not(.ginput_container_time){width:auto}.rtl #gform_fields.right_label fieldset .gfield_description,.rtl #gform_fields.right_label fieldset .ginput_container:not(.ginput_container_time){width:70%;margin-right:30%}.rtl #gform_fields.left_label fieldset .gfield_description,.rtl #gform_fields.left_label fieldset .ginput_container:not(.ginput_container_time){margin-right:32.5%}.rtl #gform_fields.left_label legend.gfield_label,.rtl #gform_fields.right_label legend.gfield_label{width:30%;padding-left:0;padding-right:1em}.rtl #gform_fields.left_label legend.gfield_label{width:30%;right:0}html[dir=rtl] .gform_wrapper span.ginput_price{float:right}@media only screen and (max-width:761px),(min-device-width:768px) and (max-device-width:1024px){html[dir=rtl] .gform_wrapper table.gfield_list{border:0}html[dir=rtl] .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before{margin:8px 1px 3px 0}html[dir=rtl] .gform_wrapper table.gfield_list td{clear:both}html[dir=rtl] .gform_wrapper table.gfield_list td:last-child(2){padding-bottom:4px!important}html[dir=rtl] .gform_wrapper table.gfield_list td.gfield_list_icons{vertical-align:middle;padding:0 4px 4px 0!important}}@media only screen and (min-width:641px){html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description,html[dir=rtl] .gform_wrapper ul:not(.top_label) .ginput_container:not(.ginput_container_time){width:70%;margin-left:0}html[dir=rtl] .gform_wrapper .ul:not(.top_label) .instruction,html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{margin-right:30%;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:30%;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{padding:10px 0 10px 0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%}html[dir=rtl] .gform_wrapper .gform_footer.left_label,html[dir=rtl] .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0}html[dir=rtl] .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] .gform_wrapper .gform_page_footer a.gform_save_link{margin-right:16px}html[dir=rtl] .gform_wrapper table input{float:right!important}html[dir=rtl] .gform_wrapper .left_label li.gfield .gfield_password_strength,html[dir=rtl] .gform_wrapper .right_label li.gfield .gfield_password_strength{margin-left:0;margin-right:29%;width:70%;text-align:center!important}.gform_wrapper .ginput_complex .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_left{margin:0 0 0 -4px}.gform_wrapper .ginput_complex.ginput_container_address .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left{margin-left:0}html[dir=rtl] .gform_wrapper ul li.gf_right_half{margin-left:0}html[dir=rtl] .gform_wrapper .gform_footer input.button,html[dir=rtl] .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .gform_wrapper .gform_page_footer input.button,html[dir=rtl] .gform_wrapper .gform_page_footer input[type=submit]{margin:0 0 0 16px}}@media only screen and (max-width:641px){html[dir=rtl] body .gform_wrapper .gform_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] body .gform_wrapper .gform_page_footer,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_next_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_previous_button,html[dir=rtl] body .gform_wrapper .gform_page_footer a.gform_save_link{text-align:center!important}html[dir=rtl] div.ginput_container_name span{padding-left:0}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:0!important}html[dir=rtl] .gform_footer,html[dir=rtl] .gform_page_footer{padding-left:16px}html[dir=rtl] .gform_wrapper{padding-right:16px}}body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .left_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .right_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .top_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .left_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .right_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl}body.forms_page_gf_help{background-color:#f6f9fc}body.forms_page_gf_help #wpcontent{overflow:hidden;padding-left:0}html[dir=rtl] body.forms_page_gf_help #wpcontent{padding-right:0}body.forms_page_gf_help div#wpfooter{display:none}.forms_page_gf_help #hexagons-bg-orange{height:392px;left:-159px;position:absolute;top:-108px;transform:rotate(-101.53deg);width:376px;z-index:-1}.forms_page_gf_help #hexagons-bg-dark-blue{height:286px;position:absolute;right:-164px;top:129px;transform:rotate(-157.53deg);width:308px;z-index:-1}.forms_page_gf_help #hexagons-bg-light-blue{bottom:0;left:-234px;position:absolute;transform:rotate(0);width:351px;z-index:-1}.gf_help_content,.gf_help_content p{color:#242748;font-size:1.125rem;line-height:2rem}.gf_help_content a{color:#3e7da6;text-decoration:none}.forms_page_gf_help .search_box{margin:0 auto;max-width:100%;position:relative;width:543px}.forms_page_gf_help .search_box input[type=text]:focus{border:1px solid #7e8993;box-shadow:none}div.search_box::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi40NjgyIDExLjE2NTVDMTMuMzYzMSA5Ljk5NiAxMy44OTQ4IDguNTMzOCAxMy44OTQ4IDYuOTQ3NEMxMy44OTQ4IDMuMTEwNDYgMTAuNzg0MyAwIDYuOTQ3NCAwQzMuMTEwNDYgMCAwIDMuMTEwNDYgMCA2Ljk0NzRDMCAxMC43ODQzIDMuMTEwNDYgMTMuODk0OCA2Ljk0NzQgMTMuODk0OEM4LjUzMzggMTMuODk0OCA5Ljk5NiAxMy4zNjMxIDExLjE2NTUgMTIuNDY4MkwxMi44MDkzIDE0LjExMTlMMTIuNzg0NCAxNC4xMzY4QzEyLjE5ODYgMTQuNzIyNiAxMi4xOTg2IDE1LjY3MjMgMTIuNzg0NCAxNi4yNTgxTDE1LjAwNTIgMTguNDc4OUMxNS41OTEgMTkuMDY0NyAxNi41NDA3IDE5LjA2NDcgMTcuMTI2NSAxOC40Nzg5TDE4LjQ3ODkgMTcuMTI2NUMxOS4wNjQ3IDE2LjU0MDcgMTkuMDY0NyAxNS41OTEgMTguNDc4OSAxNS4wMDUyTDE2LjI1ODEgMTIuNzg0NEMxNS42NzIzIDEyLjE5ODYgMTQuNzIyNiAxMi4xOTg2IDE0LjEzNjggMTIuNzg0NEwxNC4xMTE5IDEyLjgwOTNMMTIuNDY4MiAxMS4xNjU1Wk02Ljk0NzQgMTIuMTU4QzkuODI1MTEgMTIuMTU4IDEyLjE1OCA5LjgyNTExIDEyLjE1OCA2Ljk0NzRDMTIuMTU4IDQuMDY5NjkgOS44MjUxMSAxLjczNjg1IDYuOTQ3NCAxLjczNjg1QzQuMDY5NjkgMS43MzY4NSAxLjczNjg1IDQuMDY5NjkgMS43MzY4NSA2Ljk0NzRDMS43MzY4NSA5LjgyNTExIDQuMDY5NjkgMTIuMTU4IDYuOTQ3NCAxMi4xNThaTTEzLjg5NDggMTUuMTk3NEwxNS4xOTc0IDEzLjg5NDhMMTcuMzY4NSAxNi4wNjU5TDE2LjA2NTkgMTcuMzY4NUwxMy44OTQ4IDE1LjE5NzRaIiBmaWxsPSIjOUI5REI4Ii8+Cjwvc3ZnPgo=);background-repeat:no-repeat;content:"";display:inline-block;height:1.25rem;left:20px;position:absolute;top:15px;width:1.25rem}div.search_box[focus-within]::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjEuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOSAxOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTkgMTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojM0U3REE2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEyLjUsMTEuMmMwLjktMS4yLDEuNC0yLjYsMS40LTQuMmMwLTMuOC0zLjEtNi45LTYuOS02LjlDMy4xLDAsMCwzLjEsMCw2LjljMCwzLjgsMy4xLDYuOSw2LjksNi45CgljMS42LDAsMy0wLjUsNC4yLTEuNGwxLjYsMS42bDAsMGMtMC42LDAuNi0wLjYsMS41LDAsMi4xbDIuMiwyLjJjMC42LDAuNiwxLjUsMC42LDIuMSwwbDEuNC0xLjRjMC42LTAuNiwwLjYtMS41LDAtMi4xbC0yLjItMi4yCgljLTAuNi0wLjYtMS41LTAuNi0yLjEsMGwwLDBMMTIuNSwxMS4yeiBNNi45LDEyLjJjMi45LDAsNS4yLTIuMyw1LjItNS4yUzkuOCwxLjcsNi45LDEuN1MxLjcsNC4xLDEuNyw2LjlTNC4xLDEyLjIsNi45LDEyLjJ6CgkgTTEzLjksMTUuMmwxLjMtMS4zbDIuMiwyLjJsLTEuMywxLjNMMTMuOSwxNS4yeiIvPgo8L3N2Zz4K);background-repeat:no-repeat;content:"";display:inline-block;height:1.1875rem;left:20px;position:absolute;top:15px;transition:all .2s ease;width:1.1875rem}div.search_box:focus-within::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjEuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOSAxOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTkgMTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojM0U3REE2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEyLjUsMTEuMmMwLjktMS4yLDEuNC0yLjYsMS40LTQuMmMwLTMuOC0zLjEtNi45LTYuOS02LjlDMy4xLDAsMCwzLjEsMCw2LjljMCwzLjgsMy4xLDYuOSw2LjksNi45CgljMS42LDAsMy0wLjUsNC4yLTEuNGwxLjYsMS42bDAsMGMtMC42LDAuNi0wLjYsMS41LDAsMi4xbDIuMiwyLjJjMC42LDAuNiwxLjUsMC42LDIuMSwwbDEuNC0xLjRjMC42LTAuNiwwLjYtMS41LDAtMi4xbC0yLjItMi4yCgljLTAuNi0wLjYtMS41LTAuNi0yLjEsMGwwLDBMMTIuNSwxMS4yeiBNNi45LDEyLjJjMi45LDAsNS4yLTIuMyw1LjItNS4yUzkuOCwxLjcsNi45LDEuN1MxLjcsNC4xLDEuNyw2LjlTNC4xLDEyLjIsNi45LDEyLjJ6CgkgTTEzLjksMTUuMmwxLjMtMS4zbDIuMiwyLjJsLTEuMywxLjNMMTMuOSwxNS4yeiIvPgo8L3N2Zz4K);background-repeat:no-repeat;content:"";display:inline-block;height:1.1875rem;left:20px;position:absolute;top:15px;transition:all .2s ease;width:1.1875rem}div.gforms_helpbox:hover{box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03);transition:all .2s ease}div#gforms_helpboxes a{color:#242748;display:inline-block;margin-inline-start:35px;text-decoration:none}div#gforms_helpboxes a:hover{text-decoration:underline}div.helpbox_header{border-radius:.375rem .375rem 0 0;height:178px;position:relative;text-align:center}div.gforms_helpbox .helpbox_header::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);background-position-y:center;background-repeat:no-repeat;content:"";display:inline-block;height:100%;width:111px}div.developer_documentation .helpbox_header{background-color:rgba(255,110,32,.33)}div.user_documentation .helpbox_header{background-color:rgba(0,159,222,.33)}div.designer_documentation .helpbox_header{background-color:rgba(36,39,72,.33)}div.gforms_helpbox .helpbox_header::after{background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}div.user_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzMiAzNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+QXR0ZW5kaW5nIChpY29uKSAxIDI8L3RpdGxlPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxtYXNrIGlkPSJwYXRoLTEtaW5zaWRlLTEiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTYuMDY3IDEwLjc3N0MxNi41MDMgNy41MDcgMTguOTkzIDUgMjIgNWMzLjAwNyAwIDUuNDk3IDIuNTA3IDUuOTMzIDUuNzc3QTEuNiAxLjYgMCAwIDEgMjggMTMuNTg2di45MTRjMCAuODg5LjM4NiAxLjY4NyAxIDIuMjM2di43NjRzLTEuODI3LjUyMi00LjE2MS44MTJjLS4wMjUuMDktLjAzOS4xODEtLjAzOS4yNzMgMCAuOCAxLjM0IDEuMjMzIDEuMzQgMS4yMzNsLS4xNjMtLjAxNWMxLjcwOC43NjggMy40MjMgMS43MjQgNC40MSAyLjI5Ni41MzUuMzExLjg4Mi44NjIuOTQ4IDEuNDc4TDMyIDI5LjhzLTIgLjctMTAgLjctMTAtLjctMTAtLjdsLjY3LTYuMjYzYTEuOTIgMS45MiAwIDAgMSAuODk1LTEuNDRjLjk5OS0uNjE0IDIuODA0LTEuNjY5IDQuNjMtMi40NmwtLjIxOC4wMTJTMTkuMiAxOS40IDE5LjIgMTguNmExLjA0IDEuMDQgMCAwIDAtLjA0My0uMjg5QzE2LjgyNSAxOC4wMjEgMTUgMTcuNSAxNSAxNy41di0uNzY0Yy42MTQtLjU1IDEtMS4zNDggMS0yLjIzNnYtLjkxNGExLjYgMS42IDAgMCAxIC4wNjctMi44MDl6Ii8+PC9tYXNrPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTYuMDY3IDEwLjc3N0MxNi41MDMgNy41MDcgMTguOTkzIDUgMjIgNWMzLjAwNyAwIDUuNDk3IDIuNTA3IDUuOTMzIDUuNzc3QTEuNiAxLjYgMCAwIDEgMjggMTMuNTg2di45MTRjMCAuODg5LjM4NiAxLjY4NyAxIDIuMjM2di43NjRzLTEuODI3LjUyMi00LjE2MS44MTJjLS4wMjUuMDktLjAzOS4xODEtLjAzOS4yNzMgMCAuOCAxLjM0IDEuMjMzIDEuMzQgMS4yMzNsLS4xNjMtLjAxNWMxLjcwOC43NjggMy40MjMgMS43MjQgNC40MSAyLjI5Ni41MzUuMzExLjg4Mi44NjIuOTQ4IDEuNDc4TDMyIDI5LjhzLTIgLjctMTAgLjctMTAtLjctMTAtLjdsLjY3LTYuMjYzYTEuOTIgMS45MiAwIDAgMSAuODk1LTEuNDRjLjk5OS0uNjE0IDIuODA0LTEuNjY5IDQuNjMtMi40NmwtLjIxOC4wMTJTMTkuMiAxOS40IDE5LjIgMTguNmExLjA0IDEuMDQgMCAwIDAtLjA0My0uMjg5QzE2LjgyNSAxOC4wMjEgMTUgMTcuNSAxNSAxNy41di0uNzY0Yy42MTQtLjU1IDEtMS4zNDggMS0yLjIzNnYtLjkxNGExLjYgMS42IDAgMCAxIC4wNjctMi44MDl6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE2LjA2NyAxMC43NzdsLjkxNyAxLjc3OC45MjgtLjQ4LjEzOC0xLjAzNC0xLjk4My0uMjY0em0xMS44NjYgMGwtMS45ODMuMjY0LjEzOCAxLjAzNS45MjguNDc5LjkxNy0xLjc3OHpNMjggMTMuNTg2bC0xLjAwMi0xLjczMS0uOTk4LjU3N3YxLjE1NGgyem0xIDMuMTVoMnYtLjg5NGwtLjY2Ni0uNTk2TDI5IDE2LjczNnptMCAuNzY0bC41NSAxLjkyMyAxLjQ1LS40MTRWMTcuNWgtMnptLTQuMTYxLjgxMmwtLjI0Ny0xLjk4NS0xLjMyNy4xNjUtLjM1NSAxLjI5IDEuOTI5LjUzem0xLjMgMS41MDZsLS4xOSAxLjk5MS44MDYtMy44OTMtLjYxNiAxLjkwMnptLS4xNjItLjAxNWwuMTktMS45OTEtMS4wMSAzLjgxNS44Mi0xLjgyNHptNC40MSAyLjI5NmwxLjAwMy0xLjczLTEuMDA0IDEuNzN6bS45NDggMS40NzhsLTEuOTg5LjIxMyAxLjk5LS4yMTN6TTMyIDI5LjhsLjY2IDEuODg4IDEuNDk3LS41MjQtLjE2OC0xLjU3N0wzMiAyOS44em0tMjAgMGwtMS45ODktLjIxMy0uMTY4IDEuNTc3IDEuNDk2LjUyNEwxMiAyOS44em0uNjctNi4yNjNsMS45ODguMjEyLTEuOTg5LS4yMTJ6bS44OTUtMS40NGwtMS4wNDgtMS43MDMgMS4wNDggMS43MDN6bTQuNjMtMi40NmwuNzk0IDEuODM1LS45MDctMy44MzIuMTEyIDEuOTk3em0tLjIxOC4wMTJsLS40LTEuOTYuNTEzIDMuOTU3LS4xMTMtMS45OTd6bTEuMTgtMS4zMzhsMS45Mi0uNTU2LS4zNjYtMS4yNjYtMS4zMDgtLjE2My0uMjQ2IDEuOTg1ek0xNSAxNy41aC0ydjEuNTA5bDEuNDUuNDE0TDE1IDE3LjV6bTAtLjc2NGwtMS4zMzQtMS40OS0uNjY2LjU5NnYuODk0aDJ6bTEtMy4xNWgydi0xLjE1NGwtLjk5OC0uNTc3TDE2IDEzLjU4NXpNMjIgM2MtNC4yMDggMC03LjM3NiAzLjQ2LTcuOTE1IDcuNTEzbDMuOTY1LjUyOEMxOC4zOCA4LjU1NSAyMC4xOTQgNyAyMiA3VjN6bTcuOTE1IDcuNTEzQzI5LjM3NSA2LjQ2IDI2LjIwOCAzIDIyIDN2NGMxLjgwNiAwIDMuNjIgMS41NTUgMy45NSA0LjA0MWwzLjk2NS0uNTI4ek0zMC44IDEyLjJBMy42IDMuNiAwIDAgMCAyOC44NSA5bC0xLjgzNCAzLjU1NWEuNC40IDAgMCAxLS4yMTYtLjM1NWg0em0tMS43OTkgMy4xMTdBMy42IDMuNiAwIDAgMCAzMC44IDEyLjJoLTRhLjQuNCAwIDAgMSAuMTk4LS4zNDVsMi4wMDMgMy40NjJ6TTMwIDE0LjV2LS45MTRoLTR2LjkxNGg0em0uMzM0Ljc0NkEuOTkyLjk5MiAwIDAgMSAzMCAxNC41aC00YzAgMS40ODEuNjQ2IDIuODE0IDEuNjY2IDMuNzI2bDIuNjY4LTIuOTh6TTMxIDE3LjV2LS43NjRoLTR2Ljc2NGg0em0tNS45MTUgMi43OTdhMzMuODIgMzMuODIgMCAwIDAgNC4zNTctLjg0NGwuMDc1LS4wMi4wMjEtLjAwNy4wMDctLjAwMmguMDA0TDI5IDE3LjVsLS41NS0xLjkyM2guMDAybC0uMDEuMDAzLS4wNS4wMTMtLjIxMi4wNTZhMjkuODg0IDI5Ljg4NCAwIDAgMS0zLjU4Ny42NzhsLjQ5MiAzLjk3em0xLjcxNS0xLjcxMmMwIC4xMTItLjAxNy4yLS4wMzMuMjU3bC0zLjg1Ny0xLjA2Yy0uMDY1LjIzNi0uMTEuNTA3LS4xMS44MDNoNHptLS42NiAxLjIzM2wuNjE2LTEuOTAyaC4wMDNsLjAwMy4wMDIuMDA2LjAwMi4wMDYuMDAyLS4wMDQtLjAwMmExLjM0NyAxLjM0NyAwIDAgMS0uMjQ0LS4xMTdjLS4wNjQtLjA0LS4wMzQtLjAzNC4wMy4wNDQuMDczLjA5LjI0NC4zNDUuMjQ0LjczOGgtNGMwIDEuNTQ3IDEuMjMgMi4zNzYgMS42MTMgMi42MTRhNS4zNzUgNS4zNzUgMCAwIDAgMS4wNjEuNTA2bC4wMjkuMDFjLjAwNCAwIC4wMDguMDAyLjAxMS4wMDNsLjAwNS4wMDJoLjAwM3MuMDAxLjAwMS42MTctMS45MDJ6bS0uMzUzIDEuOTc2bC4xNjIuMDE1LjM4LTMuOTgyLS4xNjItLjAxNS0uMzggMy45ODJ6bTUuNjAzLTEuNDI1Yy0xLjAwOS0uNTg1LTIuNzkyLTEuNTgtNC41OTItMi4zOWwtMS42NDEgMy42NDhjMS42MTUuNzI3IDMuMjYyIDEuNjQzIDQuMjI2IDIuMjAybDIuMDA3LTMuNDZ6bTEuOTM0IDIuOTk2YTMuOTM5IDMuOTM5IDAgMCAwLTEuOTM0LTIuOTk2bC0yLjAwNyAzLjQ2YS4wOTMuMDkzIDAgMCAxLS4wMzEtLjAyOWMtLjAwNi0uMDA4LS4wMDYtLjAxMi0uMDA2LS4wMWwzLjk3OC0uNDI1em0uNjY1IDYuMjIzbC0uNjY1LTYuMjIzLTMuOTc3LjQyNS42NjQgNi4yMjMgMy45NzgtLjQyNnpNMjIgMzIuNWM0LjA1NCAwIDYuNjM1LS4xNzcgOC4yMzItLjM2NC44LS4wOTMgMS4zNi0uMTkgMS43NDItLjI3YTcuOTQ4IDcuOTQ4IDAgMCAwIC41OTItLjE0NyAyLjYyMyAyLjYyMyAwIDAgMCAuMDc1LS4wMjRsLjAxLS4wMDRhLjA5Mi4wOTIgMCAwIDAgLjAwNy0uMDAyYy4wMDIgMCAuMDAzLS4wMDEtLjY1OC0xLjg4OS0uNjYtMS44ODgtLjY2LTEuODg4LS42NTgtMS44ODloLjAwMmEuMjEuMjEgMCAwIDAgLjAxMi0uMDA1LjY2Ni42NjYgMCAwIDEgLjAzLS4wMWMuMDA1IDAgLjAwMiAwLS4wMTMuMDA0LS4wMjkuMDA4LS4xLjAyNy0uMjIyLjA1Mi0uMjQzLjA1MS0uNjgyLjEzLTEuMzgzLjIxMS0xLjQwMy4xNjQtMy44MjIuMzM3LTcuNzY4LjMzN3Y0em0tMTAtMi43Yy0uNjYgMS44ODgtLjY2IDEuODg4LS42NTggMS44ODloLjAwMmwuMDA1LjAwMi4wMS4wMDRhLjk3NS45NzUgMCAwIDAgLjA3NS4wMjRjLjA0LjAxMi4wODYuMDI2LjE0Mi4wNC4xMTIuMDMxLjI2LjA2OC40NS4xMDguMzgyLjA4Ljk0My4xNzYgMS43NDIuMjcgMS41OTcuMTg2IDQuMTc4LjM2MyA4LjIzMi4zNjN2LTRjLTMuOTQ2IDAtNi4zNjUtLjE3My03Ljc2OC0uMzM3LS43LS4wODEtMS4xNC0uMTYtMS4zODMtLjIxYTQuMDMzIDQuMDMzIDAgMCAxLS4yMjItLjA1M2wtLjAxMi0uMDAzYS44MDkuODA5IDAgMCAxIC4wNDMuMDE1Yy4wMDIgMCAuMDAzIDAtLjY1OCAxLjg4OHptLTEuMzItNi40NzZsLS42NjkgNi4yNjMgMy45NzguNDI1LjY2OS02LjI2My0zLjk3Ny0uNDI1em0xLjgzNy0yLjkzYTMuOTE5IDMuOTE5IDAgMCAwLTEuODM2IDIuOTNsMy45NzcuNDI1YzAtLjAwMiAwIC4wMDQtLjAwNy4wMTRhLjEyMi4xMjIgMCAwIDEtLjAzOS4wMzhsLTIuMDk1LTMuNDA3em00Ljg4Mi0yLjU5MmMtMS45NTQuODQ3LTMuODU0IDEuOTYtNC44ODIgMi41OTJsMi4wOTUgMy40MDdjLjk3LS41OTYgMi42ODEtMS41OTQgNC4zNzctMi4zMjlsLTEuNTktMy42N3ptLjY5IDMuODQ0bC4yMTgtLjAxMi0uMjI1LTMuOTk0LS4yMTcuMDEzLjIyNSAzLjk5M3pNMTcuMiAxOC42YzAtLjM1Ni4xNS0uNjMzLjI4LS43ODguMTA4LS4xMjcuMTkzLS4xNjUuMTctLjE1NGEuNTM3LjUzNyAwIDAgMS0uMTA3LjA0bC4wMDctLjAwMi4wMTEtLjAwMy4wMDgtLjAwMS4wMDQtLjAwMWguMDAzYzAtLjAwMS4wMDEtLjAwMS40MDEgMS45NTlhMjk3LjMwNSAyOTcuMzA1IDAgMCAwIC40MDIgMS45NTloLjAwM2wuMDA2LS4wMDJhLjc5MS43OTEgMCAwIDAgLjA0My0uMDFsLjA4NS0uMDJhNC41IDQuNSAwIDAgMCAxLjAxLS4zODZjLjQ2NS0uMjQ3IDEuNjc0LTEuMDIzIDEuNjc0LTIuNTkxaC00em0uMDM2LjI2N2EuOTY4Ljk2OCAwIDAgMS0uMDM2LS4yNjdoNGMwLS4zMTMtLjA1LS41OTgtLjEyMi0uODQ1bC0zLjg0MiAxLjExM3pNMTUgMTcuNWExMDM2LjA5NSAxMDM2LjA5NSAwIDAgMC0uNTQ4IDEuOTI0aC4wMDNsLjAwNy4wMDIuMDIxLjAwNi4wNzUuMDJhMzAuMjA4IDMwLjIwOCAwIDAgMCAxLjIxMS4yOTZjLjc5Mi4xNzggMS44OTYuMzkzIDMuMTQxLjU0OGwuNDkzLTMuOTdhMjkuODgyIDI5Ljg4MiAwIDAgMS0zLjc5NS0uNzMzbC0uMDUtLjAxMy0uMDEtLjAwM2guMDAxTDE1IDE3LjV6bS0yLS43NjR2Ljc2NGg0di0uNzY0aC00em0xLTIuMjM2YzAgLjI5Ni0uMTI2LjU2LS4zMzQuNzQ2bDIuNjY4IDIuOThBNC45OTMgNC45OTMgMCAwIDAgMTggMTQuNWgtNHptMC0uOTE0di45MTRoNHYtLjkxNGgtNHptMy4wMDItMS43MzFhLjQuNCAwIDAgMSAuMTk4LjM0NWgtNGEzLjYgMy42IDAgMCAwIDEuNzk5IDMuMTE3TDE3IDExLjg1NXptLjE5OC4zNDVhLjQuNCAwIDAgMS0uMjE2LjM1NUwxNS4xNSA5YTMuNiAzLjYgMCAwIDAtMS45NSAzLjJoNHoiIGZpbGw9IiMzZTdkYTYiIG1hc2s9InVybCgjcGF0aC0xLWluc2lkZS0xKSIvPjxtYXNrIGlkPSJwYXRoLTMtaW5zaWRlLTIiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMy4wMTV2LjA3YTcuMDAyIDcuMDAyIDAgMCAwLTYgNi45M3YuNjIzYTIuNTM4IDIuNTM4IDAgMCAwIC41NDggNC4zNTZjLjUxIDEuNDkgMS4zNTIgMi43NjggMi40MSAzLjY5Mi4yMS4zMDEuNDA5LjcxMS40MDkgMS4xODYgMCAxLjAxNS0xLjUxNyAxLjQ5Ni0xLjUxNyAxLjQ5NmwtLjA4LjE0NWMtMi40NjUgMS4xMjctNC44NiAyLjU5Ni02LjAyOSAzLjM0NWExLjkzIDEuOTMgMCAwIDAtLjg2NCAxLjM2NEwwIDMyLjQ3OFMyLjYgMzMuNSAxMyAzMy41czEzLTEuMDIyIDEzLTEuMDIybC0uODcxLTYuMjE2YTEuOTQ3IDEuOTQ3IDAgMCAwLS45MTktMS40MDNjLTEuMjA4LS43MjgtMy42MjktMi4xMzctNi4wMzgtMy4yNTJsLS4wNjktLjEzNXMtMS41MTctLjQ4LTEuNTE3LTEuNDk1YzAtLjU4OC4zMDQtMS4wNzcuNTYtMS4zODMgMS4wMS0uOTE2IDEuODEyLTIuMTU4IDIuMzA2LTMuNkEyLjUzOCAyLjUzOCAwIDAgMCAyMCAxMC42Mzh2LS42MjNhNi45NzQgNi45NzQgMCAwIDAtMS44MS00LjY5OEE2LjA3IDYuMDcgMCAwIDAgMjAgLjk4NWgtLjAxNWE1LjA2NyA1LjA2NyAwIDAgMS00LjA2IDIuMDNIMTJ6Ii8+PC9tYXNrPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMy4wMTV2LjA3YTcuMDAyIDcuMDAyIDAgMCAwLTYgNi45M3YuNjIzYTIuNTM4IDIuNTM4IDAgMCAwIC41NDggNC4zNTZjLjUxIDEuNDkgMS4zNTIgMi43NjggMi40MSAzLjY5Mi4yMS4zMDEuNDA5LjcxMS40MDkgMS4xODYgMCAxLjAxNS0xLjUxNyAxLjQ5Ni0xLjUxNyAxLjQ5NmwtLjA4LjE0NWMtMi40NjUgMS4xMjctNC44NiAyLjU5Ni02LjAyOSAzLjM0NWExLjkzIDEuOTMgMCAwIDAtLjg2NCAxLjM2NEwwIDMyLjQ3OFMyLjYgMzMuNSAxMyAzMy41czEzLTEuMDIyIDEzLTEuMDIybC0uODcxLTYuMjE2YTEuOTQ3IDEuOTQ3IDAgMCAwLS45MTktMS40MDNjLTEuMjA4LS43MjgtMy42MjktMi4xMzctNi4wMzgtMy4yNTJsLS4wNjktLjEzNXMtMS41MTctLjQ4LTEuNTE3LTEuNDk1YzAtLjU4OC4zMDQtMS4wNzcuNTYtMS4zODMgMS4wMS0uOTE2IDEuODEyLTIuMTU4IDIuMzA2LTMuNkEyLjUzOCAyLjUzOCAwIDAgMCAyMCAxMC42Mzh2LS42MjNhNi45NzQgNi45NzQgMCAwIDAtMS44MS00LjY5OEE2LjA3IDYuMDcgMCAwIDAgMjAgLjk4NWgtLjAxNWE1LjA2NyA1LjA2NyAwIDAgMS00LjA2IDIuMDNIMTJ6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEyIDMuMDg2bC4yODMgMS45OEwxNCA0LjgyVjMuMDg2aC0yem0wLS4wNzF2LTJoLTJ2Mmgyem0tNiA3LjYyM2wxLjIxMyAxLjU5Ljc4Ny0uNnYtLjk5SDZ6bS41NDggNC4zNTZsMS44OTItLjY0OC0uMjktLjg0NS0uODIyLS4zNDgtLjc4IDEuODQxem0yLjQxIDMuNjkybDEuNjM5LTEuMTQ2LS4xNC0uMi0uMTg0LS4xNi0xLjMxNSAxLjUwNnpNNy44NSAyMS4zNjhsLS42MDQtMS45MDctLjc2NS4yNDItLjM4Ni43MDUgMS43NTUuOTZ6bS0uMDguMTQ1bC44MzIgMS44MTkuNjA0LS4yNzcuMzItLjU4Mi0xLjc1NS0uOTZ6bS02LjAyOSAzLjM0NUwuNjYzIDIzLjE3NGwxLjA3OCAxLjY4NHptLS44NjQgMS4zNjRsMS45OC4yNzgtMS45OC0uMjc4ek0wIDMyLjQ3OGwtMS45OC0uMjc4LS4yMiAxLjU2MiAxLjQ2OC41NzdMMCAzMi40Nzh6bTI2IDBsLjczMiAxLjg2IDEuNDY4LS41NzYtLjIyLTEuNTYyLTEuOTguMjc4em0tLjg3MS02LjIxNmwxLjk4LS4yNzgtMS45OC4yNzh6bS0uOTE5LTEuNDAzbC0xLjAzMiAxLjcxMyAxLjAzMi0xLjcxM3ptLTYuMDM4LTMuMjUybC0xLjc4NS45MDMuMzE0LjYyLjYzMS4yOTMuODQtMS44MTZ6bS0uMDY5LS4xMzVsMS43ODUtLjkwMy0uMzgtLjc1LS44MDEtLjI1NC0uNjA0IDEuOTA3em0tLjk1Ny0yLjg3OGwtMS4zNDQtMS40ODEtLjEwNC4wOTMtLjA4OS4xMDggMS41MzcgMS4yOHptMi4zMDYtMy42bC0uNzgtMS44NDEtLjgyMy4zNDgtLjI5Ljg0NSAxLjg5My42NDh6TTIwIDEwLjYzOGgtMnYuOTlsLjc4Ny42TDIwIDEwLjYzOHptLTEuODEtNS4zMmwtMS40MDYtMS40MjMtMS4zNjIgMS4zNDYgMS4yODUgMS40MiAxLjQ4My0xLjM0NHpNMjAgLjk4NGgydi0yaC0ydjJ6bS0uMDE1IDB2LTJoLS45OTlsLS42Ljc5OSAxLjYgMS4yMDF6TTE0IDMuMDg1di0uMDdoLTR2LjA3aDR6bS02IDYuOTNhNS4wMDIgNS4wMDIgMCAwIDEgNC4yODMtNC45NWwtLjU2Ni0zLjk1OUM3LjM1MyAxLjczIDQgNS40NzkgNCAxMC4wMTVoNHptMCAuNjIzdi0uNjIzSDR2LjYyM2g0em0tMSAyLjAxOWMwLS4xNzMuMDgtLjMyNy4yMTMtLjQyOWwtMi40MjYtMy4xOEE0LjUzMyA0LjUzMyAwIDAgMCAzIDEyLjY1N2g0em0uMzI4LjQ5NUEuNTM4LjUzOCAwIDAgMSA3IDEyLjY1OEgzYTQuNTM4IDQuNTM4IDAgMCAwIDIuNzY4IDQuMTc4bDEuNTYtMy42ODN6bTIuOTQ1IDQuMDI3Yy0uNzctLjY3MS0xLjQyNS0xLjY0MS0xLjgzMy0yLjgzM2wtMy43ODQgMS4yOTZjLjYxMyAxLjc5IDEuNjQgMy4zNzQgMi45ODYgNC41NWwyLjYzMS0zLjAxM3ptMS4wOTQgMi42OTNjMC0xLjAzMy0uNDI3LTEuODQtLjc3LTIuMzMybC0zLjI3OCAyLjI5MmEuNjQ4LjY0OCAwIDAgMSAuMDUzLjA5M2MuMDA0LjAxMS0uMDA1LS4wMDktLjAwNS0uMDUzaDR6TTcuODUgMjEuMzY4YTMyNC4wOCAzMjQuMDggMCAwIDAgLjYwNiAxLjkwNmwuMDAzLS4wMDEuMDA1LS4wMDJhMS4wMTQgMS4wMTQgMCAwIDEgLjA0NS0uMDE1IDQuNDcgNC40NyAwIDAgMCAuMzY1LS4xNGMuMjEzLS4wOTIuNTEyLS4yMzUuODI2LS40NC41MDktLjMzIDEuNjY3LTEuMjI2IDEuNjY3LTIuODA0aC00YzAtLjI3Ny4xMTEtLjQ3LjE2OC0uNTQ1LjA0NC0uMDU4LjA1Ni0uMDUtLjAxOC0uMDAyYTEuNDkzIDEuNDkzIDAgMCAxLS4yODcuMTRsLS4wMDUuMDAzLjAwNy0uMDAzYy4wMDIgMCAuMDA0IDAgLjAwNi0uMDAyaC4wMDRsLjAwMi0uMDAxaC4wMDFzLjAwMS0uMDAxLjYwNSAxLjkwNnptMS42NzUgMS4xMDVsLjA4LS4xNDYtMy41MS0xLjkyLS4wOC4xNDYgMy41MSAxLjkyek0yLjgyIDI2LjU0MmMxLjE0Mi0uNzMxIDMuNDQzLTIuMTQxIDUuNzgyLTMuMjFMNi45NCAxOS42OTRjLTIuNTkzIDEuMTg1LTUuMDggMi43MTMtNi4yNzYgMy40OGwyLjE1NyAzLjM2OHptLjAzNy0uMDQyYzAtLjAwMiAwIC4wMDMtLjAwNS4wMTFhLjEwNS4xMDUgMCAwIDEtLjAzMi4wMzFMLjY2MyAyMy4xNzRhMy45MyAzLjkzIDAgMCAwLTEuNzY3IDIuNzdsMy45NjEuNTU2em0tLjg3NiA2LjI1NWwuODc2LTYuMjU1LTMuOTYtLjU1Ni0uODc4IDYuMjU2IDMuOTYyLjU1NXpNMTMgMzEuNWMtNS4xMzkgMC04LjI5OS0uMjUzLTEwLjE0LS40OTQtLjkyLS4xMi0xLjUwMi0uMjM3LTEuODMyLS4zMTVhNS4wMzcgNS4wMzcgMCAwIDEtLjMxMS0uMDgybC0uMDMtLjAxLjAxNC4wMDZjLjAwNCAwIC4wMDguMDAzLjAxMy4wMDVsLjAwOS4wMDNjLjAwMSAwIC4wMDMgMCAuMDA0LjAwMkguNzNjLjAwMiAwIC4wMDMuMDAxLS43MjkgMS44NjMtLjczMiAxLjg2LS43MyAxLjg2MS0uNzMgMS44NjJoLjAwM2EuMDkuMDkgMCAwIDAgLjAwNS4wMDNsLjAxMi4wMDQuMDI1LjAxYTMuNjQ0IDMuNjQ0IDAgMCAwIC4yMzIuMDc3Yy4xMzcuMDQyLjMyLjA5My41NjIuMTUuNDgzLjExNCAxLjIuMjUzIDIuMjMxLjM4OCAyLjA1OS4yNyA1LjM5OS41MjggMTAuNjYuNTI4di00em0xMyAuOTc4Yy0uNzMyLTEuODYyLS43My0xLjg2Mi0uNzMtMS44NjNoLjAwM2wuMDA1LS4wMDJjLjAwMi0uMDAxLjAwNS0uMDAzLjAwOC0uMDAzbC4wMTMtLjAwNWEuNTMxLjUzMSAwIDAgMSAuMDE0LS4wMDVsLS4wMy4wMDlhNS4wMTggNS4wMTggMCAwIDEtLjMxMS4wODJjLS4zMy4wNzgtLjkxMy4xOTQtMS44MzIuMzE1LTEuODQxLjI0MS01LjAwMS40OTQtMTAuMTQuNDk0djRjNS4yNjEgMCA4LjYwMS0uMjU4IDEwLjY2LS41MjhhMjIuNjgxIDIyLjY4MSAwIDAgMCAyLjIzLS4zODggOC45NTUgOC45NTUgMCAwIDAgLjczNC0uMjA1bC4wNjEtLjAyMi4wMjUtLjAxLjAxMi0uMDA0LjAwNS0uMDAyLjAwMi0uMDAxYy4wMDIgMCAuMDAzLS4wMDEtLjcyOS0xLjg2MnptLTIuODUyLTUuOTM5bC44NzEgNi4yMTYgMy45NjItLjU1NS0uODcyLTYuMjE2LTMuOTYuNTU1em0uMDMuMDMzYS4wOC4wOCAwIDAgMS0uMDI2LS4wMjRsLS4wMDQtLjAwOSAzLjk2MS0uNTU1YTMuOTQ2IDMuOTQ2IDAgMCAwLTEuODY2LTIuODM4bC0yLjA2NSAzLjQyNnptLTUuODQ2LTMuMTVjMi4zMTEgMS4wNyA0LjY1OSAyLjQzNSA1Ljg0NiAzLjE1bDIuMDY1LTMuNDI2Yy0xLjIyOS0uNzQtMy43MjMtMi4xOTQtNi4yMzItMy4zNTRsLTEuNjc5IDMuNjN6bS0xLjAxMy0xLjA0N2wuMDY4LjEzNSAzLjU3LTEuODA2LS4wNy0uMTM1LTMuNTY4IDEuODA2em0tMS43MzMtMi4zOThjMCAxLjU3NyAxLjE1OSAyLjQ3MyAxLjY2NyAyLjgwNGE1LjQ2NyA1LjQ2NyAwIDAgMCAxLjIyNC41OWwuMDEyLjAwNGEuMzAzLjMwMyAwIDAgMCAuMDEuMDAzbC42MDQtMS45MDZhMzQxLjc2NiAzNDEuNzY2IDAgMCAxIC42MDYtMS45MDZoLjAwMmwuMDA0LjAwMi4wMDYuMDAyYy4wMDQgMCAuMDA2LjAwMi4wMDcuMDAyLjAwMyAwIDAgMC0uMDA1LS4wMDJhMS40OTUgMS40OTUgMCAwIDEtLjI4Ny0uMTQxYy0uMDc0LS4wNDgtLjA2Mi0uMDU2LS4wMTguMDAyYS45MjYuOTI2IDAgMCAxIC4xNjguNTQ2aC00em0xLjAyMy0yLjY2M2MtLjM4My40Ni0xLjAyMyAxLjM5NS0xLjAyMyAyLjY2M2g0YzAgLjA1NC0uMDE0LjA3MSAwIC4wNGEuODc0Ljg3NCAwIDAgMSAuMDk2LS4xNDNsLTMuMDczLTIuNTZ6bTEuOTUtMi45NjhjLS4zOTQgMS4xNTItMS4wMiAyLjA5OC0xLjc1NyAyLjc2N2wyLjY4NyAyLjk2MmMxLjI4Mi0xLjE2MyAyLjI2Mi0yLjcwMSAyLjg1NS00LjQzM2wtMy43ODQtMS4yOTZ6bTIuNjczIDIuNDlBNC41MzggNC41MzggMCAwIDAgMjMgMTIuNjU1aC00YzAgLjIyLS4xMzIuNDEzLS4zMjguNDk2bDEuNTYgMy42ODR6TTIzIDEyLjY1NWE0LjUzMyA0LjUzMyAwIDAgMC0xLjc4Ny0zLjYwOGwtMi40MjYgMy4xOGEuNTMzLjUzMyAwIDAgMSAuMjEzLjQyOWg0em0tNS0yLjY0MXYuNjIzaDR2LS42MjNoLTR6TTE2LjcwNyA2LjY2QTQuOTc0IDQuOTc0IDAgMCAxIDE4IDEwLjAxNWg0YTguOTc0IDguOTc0IDAgMCAwLTIuMzI4LTYuMDRMMTYuNzA3IDYuNjZ6TTE4IC45ODVhNC4wNzEgNC4wNzEgMCAwIDEtMS4yMTYgMi45MWwyLjgxMSAyLjg0NUE4LjA3MSA4LjA3MSAwIDAgMCAyMiAuOTg1aC00em0xLjk4NSAySDIwdi00aC0uMDE1djR6bS00LjA2IDIuMDNhNy4wNjcgNy4wNjcgMCAwIDAgNS42Ni0yLjgyOUwxOC4zODYtLjIxNmEzLjA2NyAzLjA2NyAwIDAgMS0yLjQ2IDEuMjMxdjR6bS0zLjkyNSAwaDMuOTI1di00SDEydjR6IiBmaWxsPSIjM2U3ZGE2IiBtYXNrPSJ1cmwoI3BhdGgtMy1pbnNpZGUtMikiLz48L2c+PC9zdmc+);height:1.6875rem;width:1.625rem}div.developer_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNiAyNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Q29nIChpY29uKSAyPC90aXRsZT48ZyBmaWxsPSJub25lIiBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjIyNyA4Ljg0YzEuMjEzLS40MzMgMi41MTMuNDMzIDIuNjg2IDEuNjQ3LjA4Ny41Mi4wODcgMS4xMjYuMDg3IDEuNjQ2czAgMS4xMjctLjI2IDEuNjQ3YTEuOTg2IDEuOTg2IDAgMCAxLTEuOTkzIDEuODJjLS4yNiAwLS40MzQgMC0uNjk0LS4wODctLjYwNi0uMjYtMS4yMTMuMDg3LTEuNDczLjYwN3MtLjYwNyAxLjEyNy0uOTUzIDEuNjQ3Yy0uMzQ3LjUyLS4yNiAxLjIxMy4xNzMgMS41Ni40MzMuMzQ2LjY5My45NTMuNjkzIDEuNTYgMCAuNjA2LS4yNiAxLjIxMy0uNzggMS41Ni0uODY2LjY5My0xLjgyIDEuMjEzLTIuNzczIDEuNjQ2LS4yNi4wODctLjUyLjE3NC0uNzguMTc0LS45NTMgMC0xLjgyLS42OTQtMS45OTMtMS42NDctLjA4Ny0uNjA3LS42OTQtMS4wNC0xLjMtLjk1M2E3LjAzIDcuMDMgMCAwIDEtMS45MDcgMGMtLjY5My0uMDg3LTEuMjEzLjM0Ni0xLjMuOTUzLS4xNzMuOTUzLTEuMDQgMS42NDctMS45OTMgMS42NDctLjI2IDAtLjUyLS4wODctLjc4LS4xNzQtLjk1NC0uNDMzLTEuOTA3LS45NTMtMi43NzQtMS42NDYtLjQzMy0uMzQ3LS43OC0uOTU0LS43OC0xLjU2IDAtLjYwNy4yNi0xLjIxNC42OTQtMS41Ni40MzMtLjM0Ny41Mi0xLjA0LjE3My0xLjU2LS4zNDctLjUyLS42OTMtMS4wNC0uOTUzLTEuNjQ3cy0uOTU0LS44NjctMS40NzQtLjY5M0MxLjU2IDE1Ljg2LjI2IDE0Ljk5My4wODcgMTMuNzggMCAxMy4yNiAwIDEyLjY1MyAwIDEyLjEzM3MwLTEuMTI2LjA4Ny0xLjY0NmExLjk4NiAxLjk4NiAwIDAgMSAxLjk5My0xLjgyYy4yNiAwIC40MzMgMCAuNjkzLjA4Ni42MDcuMjYgMS4yMTQtLjA4NiAxLjQ3NC0uNjA2UzQuODUzIDcuMDIgNS4yIDYuNWMuNDMzLS41Mi4zNDctMS4xMjctLjE3My0xLjU2LS40MzQtLjM0Ny0uNjk0LS45NTMtLjY5NC0xLjU2IDAtLjYwNy4zNDctMS4yMTMuNzgtMS41Ni44NjctLjY5MyAxLjgyLTEuMjEzIDIuODYtMS42NDcuMjYtLjA4Ni41Mi0uMTczLjc4LS4xNzMuOTU0IDAgMS44Mi42OTMgMS45OTQgMS42NDcuMDg2LjYwNi42OTMgMS4wNCAxLjMuOTUzYTcuMDIzIDcuMDIzIDAgMCAxIDEuOTA2IDBjLjY5NC4wODcgMS4yMTQtLjM0NyAxLjMtLjk1M0MxNS40MjcuNjkzIDE2LjI5MyAwIDE3LjI0NyAwYy4yMDUgMCAuNDExLjA1NC42Ni4xMmwuMjA2LjA1M2MuOTU0LjQzNCAxLjkwNy45NTQgMi43NzQgMS42NDcuNDMzLjM0Ny43OC45NTMuNzggMS41NiAwIC42MDctLjI2IDEuMjEzLS42OTQgMS42NDctLjQzMy4zNDYtLjUyIDEuMDQtLjE3MyAxLjU2LjM0Ny41Mi42OTMgMS4wNC45NTMgMS42NDYuMjYuNTIuOTU0Ljc4IDEuNDc0LjYwN3pNMTMgMTYuNDY3YTQuMjkxIDQuMjkxIDAgMCAwIDQuMzMzLTQuMzM0QTQuMjkxIDQuMjkxIDAgMCAwIDEzIDcuOGE0LjI5MSA0LjI5MSAwIDAgMC00LjMzMyA0LjMzM0E0LjI5MSA0LjI5MSAwIDAgMCAxMyAxNi40Njd6IiBmaWxsPSIjM2U3ZGE2Ii8+PC9nPjwvc3ZnPg==);height:1.5625rem;width:1.625rem}div.designer_documentation .helpbox_header::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggb3BhY2l0eT0iLjQwNCIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDFhMSAxIDAgMDEyIDB2MjRhMSAxIDAgMTEtMiAwVjF6bTEwIDBhMSAxIDAgMTEyIDB2MjRhMSAxIDAgMTEtMiAwVjF6bTExLTFhMSAxIDAgMDAtMSAxdjI0YTEgMSAwIDEwMiAwVjFhMSAxIDAgMDAtMS0xeiIgZmlsbD0iIzNFN0RBNiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjYgOWEzIDMgMCAxMS02IDAgMyAzIDAgMDE2IDB6TTMgMTVhMyAzIDAgMTAwLTYgMyAzIDAgMDAwIDZ6bTEwIDZhMyAzIDAgMTAwLTYgMyAzIDAgMDAwIDZ6IiBmaWxsPSIjM0U3REE2Ii8+PC9zdmc+);height:1.625rem;width:1.625rem}div.resource_list{padding:0 1.5rem 1.8125rem}.resource_list h3{color:#242748;font-weight:400}div.resource_list li{line-height:1.5rem;margin-bottom:1rem;position:relative}div.resource_list li::before{background-image:url(../../../images/arrow-right-icon-help-page.svg);background-repeat:no-repeat;content:"";display:inline-block;height:1.375rem;position:absolute;top:2px;width:1.375rem}.resource_list a:focus{box-shadow:none}.forms_page_gf_help div.gforms_help h2{color:#242748;font-size:2.375rem;font-weight:600;margin-bottom:2.3125rem}.gf_help_content{margin:0 auto 2.875rem;max-width:823px}#gf_help_page_search{margin-bottom:4.25rem}.gforms_help{margin:4.375rem auto 0;max-width:1000px;text-align:center}#gf_help_page_search input{border:1px solid #dee1ec;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);font-size:.875rem;height:3.0625rem;padding-left:3.5625rem;width:100%}#gf_help_page_search input::-moz-placeholder{color:#5b5e80}#gf_help_page_search input::placeholder{color:#5b5e80}div#gforms_helpboxes{display:flex;justify-content:space-between;text-align:start}div.gforms_helpbox{background-color:#fff;border-radius:.375rem;box-shadow:0 1px 4px rgba(18,25,97,.0779552);box-sizing:border-box;flex-basis:301px;font-size:.875rem;margin:.625rem 0}div.gforms_helpbox select{width:460px}div.gforms_helpbox ul.resource_list{margin-top:.25rem}div.gforms_helpbox ul.resource_list li{margin:0 0 .75rem!important}div.gforms_helpbox ul.resource_list li a{margin-left:.125rem;text-decoration:none}div.gforms_helpbox ul.resource_list li a:active,div.gforms_helpbox ul.resource_list li a:hover{text-decoration:underline}@media screen and (max-width:1200px){div#gforms_helpboxes{justify-content:space-around;margin:0 2%}div.gforms_helpbox{flex-basis:29%}.gf_help_content{max-width:600px}}@media screen and (max-width:782px){div#gforms_helpboxes{display:inline;display:initial}div.gforms_helpbox{margin:0 auto 3.125rem;max-width:400px}.forms_page_gf_help #hexagons-bg-orange{left:-256px}.forms_page_gf_help #hexagons-bg-dark-blue{right:-240px}.gforms_help{padding:0 10%}}body.forms_page_gf_entries.auto-fold .gforms_edit_form{top:-.625rem}@media (min-width:783px){body.forms_page_gf_entries.auto-fold .gforms_edit_form{top:0}}body.forms_page_gf_entries.auto-fold #wpcontent{padding-left:0}.ginput_full_admin label,body.forms_page_gf_entries table.entry-details td.detail-view label.detail-label{display:block;font-size:13px;font-weight:700;margin-bottom:4px}body.forms_page_gf_entries div.ginput_complex_admin .ginput_full_admin label{font-size:11px;font-weight:400}body.forms_page_gf_entries table.entry-details .gchoice,body.forms_page_gf_entries table.entry-details .gfield_radio>div{line-height:1.8}body.forms_page_gf_entries table.entry-details .gfield_consent_description,body.forms_page_gf_entries table.entry-details input:not([type=checkbox]):not([type=radio]),body.forms_page_gf_entries table.entry-details input[type=text]{width:99%}body.forms_page_gf_entries table.entry-details .ginput_container_consent input{width:auto}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right_admin{display:-moz-inline-stack;display:inline-block;width:49%}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin{margin-right:1rem}body.forms_page_gf_entries .ginput_left_admin label,body.forms_page_gf_entries .ginput_right_admin label{display:block}body.forms_page_gf_entries .ginput_left_admin input[type=text]{width:99%!important}body.forms_page_gf_entries select.medium_admin{max-width:400px}body.forms_page_gf_entries textarea.medium_admin{min-height:250px;min-width:475px;width:98%}body.forms_page_gf_entries h2.detail_gsection_title{font-family:helvetica,arial,sans-serif;font-size:16px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:0!important;padding:0!important}body.forms_page_gf_entries div.ginput_complex_admin span label{display:block;font-size:.8rem;margin:4px 0}.datepicker,body.forms_page_gf_entries table.entry-details input[type=text].datepicker{width:7rem}body.forms_page_gf_entries table.entry-details .ginput_container_time input[type=number]{width:4.5rem}.gform_installation_progress_step_wrap{padding-left:1.25rem}#gform_installation_progress li{display:inline-block;padding:.625rem 1.562rem .625rem 0}.gform_installation_progress_current_step,.gform_installation_progress_step_complete,.gform_installation_progress_step_wrap p{color:#000}.gform_installation_progress_step_pending{color:silver}ul#form_autoresponder_container,ul#form_notification_container{width:95%}ul#form_autoresponder_container li,ul#form_notification_container li{margin-bottom:15px!important}ul#form_autoresponder_container li label,ul#form_notification_container li label{display:block;margin-bottom:8px!important}#confirmation_list_form .check-column,#notification_list_form .check-column{width:75px}#confirmation_list_form .check-column img.pending{transform:translateX(50%)}.gform-notification-service{display:inline-block;margin-bottom:5px;text-align:center}.gform-notification-service input:checked+label>span{-moz-filter:none;filter:none}.gform-notification-service label>span{background-repeat:no-repeat;display:inline-block;-moz-filter:brightness(1.8) grayscale(1) opacity(0.5);filter:brightness(1.8) grayscale(1) opacity(.5);height:65px;padding-top:5px;transition:all .1s ease-in;width:130px}.gform-notification-service input{display:none}.gform-notification-service label>span>img{height:32px;margin:5px;vertical-align:middle;width:32px}.gform-notification-service label{background-color:#f9f9f9;border:1px solid #eee}.gform-notification-service input:not([disabled]):not([checked])+label>span:hover{-moz-filter:brightness(1.2) grayscale(0.5) opacity(0.9);filter:brightness(1.2) grayscale(.5) opacity(.9)}.toplevel_page_gf_splash #wpcontent{padding-left:0}.toplevel_page_gf_splash #wpcontent #wpbody-content{background:#fff;padding:0}.gform-splash{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:4.5rem auto;max-width:1280px;width:94%}.gform-splash,.gform-splash *{box-sizing:border-box}.gform-dialog--full-screen .gform-splash{margin:0;padding:0;width:100%}.gform-splash__header{background:#242748;color:#fff;min-height:17.875rem;overflow:hidden;padding:3.75rem 1.875rem 0 1.875rem;position:relative;text-align:center;z-index:5}@media (min-width:783px){.gform-splash__header{padding-left:5.812rem;padding-right:5.812rem}}.gform-splash__header .gform-logo{display:block;margin:0 auto 3.25rem auto;max-width:90%;width:18.75rem}.gform-splash__header h1{color:#fff;font-size:3rem;font-weight:700;letter-spacing:-1px;line-height:112%;margin:0 auto 1.375rem auto;max-width:53rem;text-align:center}@media (min-width:783px){.gform-splash__header h1{font-size:4.5rem}}.gform-splash__header p{color:#ecedf8;font-size:1.25rem;line-height:150%;margin:0 auto 2.125rem auto;max-width:48rem;text-align:center}.gform-splash__header .gform-reviews{font-size:1rem;font-weight:500;margin:0 auto 2.812rem auto;padding-top:2.5rem}.gform-splash__header .gform-reviews a{align-items:center;color:#fff;display:flex;justify-content:center;text-decoration:none}.gform-splash__header .gform-reviews a:focus{box-shadow:none}.gform-splash__header .gform-reviews img{height:2.187rem}.gform-splash__header .gform-reviews .gform-reviews__stars{color:#ffbe03;font-size:1.3rem;letter-spacing:-.15rem;padding:0 1rem}.gform-splash__header .gform-splash__header-bottom-image{display:block;width:100%}.gform-splash__header .gform-splash__back-link{align-items:center;border:1px solid transparent;border-radius:3px;color:#fff;display:inline-flex;font-size:2rem;height:2rem;justify-content:center;position:absolute;right:15px;text-decoration:none;top:15px;width:2rem}.gform-splash__header .gform-splash__back-link:focus{box-shadow:none;color:#f6f9fc;outline:0}.gform-splash__header .gform-splash__back-link.focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__header .gform-splash__back-link.focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__header .gform-splash__back-link:focus-visible{border-color:#fdfdff;color:#f6f9fc}.gform-splash__body{background:#fff;overflow:hidden;position:relative}.gform-splash__body h2{font-size:2.25rem;line-height:1.16;text-align:center}.gform-splash__body h3{font-size:1.875rem;line-height:1.7}.gform-splash__body h4{font-size:1.5rem;line-height:1.95}.gform-splash__body p{font-size:1rem;line-height:1.562rem}.gform-splash__body a{color:#242748;-webkit-text-decoration:solid underline #242748 1px;text-decoration:solid underline #242748 1px;text-underline-offset:2px;transition:text-decoration-color .15s ease}.gform-splash__body a:focus,.gform-splash__body a:hover{text-decoration-color:transparent}.gform-splash__section{margin:3.25rem auto;max-width:64rem;position:relative;width:94%;z-index:10}@media (min-width:783px){.gform-splash__section{margin:4rem auto}}.gform-splash__section--text-and-image{margin-bottom:5rem}.gform-splash__section--text-and-image .gform-splash-text{margin-bottom:2.5rem}.gform-splash__section--text-and-image .gform-splash-text>:first-child{margin-top:0}.gform-splash__section--text-and-image .gform-splash-text>:last-child{margin-bottom:0}@media (min-width:783px){.gform-splash__section--text-and-image{display:flex;margin-bottom:6.5rem}.gform-splash__section--text-and-image .gform-splash-text{margin:0;padding-right:6%;width:37.5%}.gform-splash__section--text-and-image .gform-splash-image-wrapper{width:62.5%}.gform-splash__section--text-and-image.gform-splash__section--image-left{flex-direction:row-reverse}.gform-splash__section--text-and-image.gform-splash__section--image-left .gform-splash-text{padding-left:6%;padding-right:0}}.gform-splash__section--text-and-image.gform-splash__section--image-spread-left .gform-splash-image{margin-left:-3.7%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-left .gform-splash-image{margin-left:-2.3%}.gform-splash__section--text-and-image.gform-splash__section--image-spread-right .gform-splash-image{margin-left:-3.7%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-right .gform-splash-image{margin-left:-2.3%}.gform-splash__section--full-width-image.gform-splash__section--image-spread-down .gform-splash-image,.gform-splash__section--text-and-image.gform-splash__section--image-spread-down .gform-splash-image{margin-bottom:-5%}.gform-splash-image img{display:block;width:100%}.gform-splash-image img.image--width-auto{width:auto}.gform-splash__section--full-width-text{margin:2rem auto 3.375rem}.gform-splash__section--columns{margin:3.375rem auto}.gform-splash__section--columns .column{margin:2.5rem 0}.gform-splash__section--columns .column>:first-child{margin-top:0}.gform-splash__section--columns .column>:last-child{margin-bottom:0}@media (min-width:783px){.gform-splash__section--columns .columns{display:flex;justify-content:space-between;margin:0 -2rem}.gform-splash__section--columns .column{flex:none;margin:0;padding:0 2rem;width:50%}}.gform-splash__section--columns.column--vertical-center .column{align-items:center;display:flex;justify-content:center}.gform-splash__footer{background:#242748;color:#fff;margin-top:3.375rem;overflow:hidden;padding:7.5rem 2rem;position:relative;text-align:center;width:100%;z-index:5}.gform-splash__footer img{height:auto;width:7.5rem}.gform-splash__footer h4{display:inline-block;font-size:3rem;font-weight:700;line-height:112%;margin:0 0 1.25rem 0;position:relative}@media (min-width:783px){.gform-splash__footer h4::before{background-image:repeating-linear-gradient(to bottom,transparent,transparent 4px,#242748 4px,#242748 23.5px),repeating-linear-gradient(to right,#9092b0,#9092b0 4px,#242748 4px,#242748 23.5px);content:"";display:block;height:9.375rem;left:-8.5rem;opacity:.6;position:absolute;top:-5rem;width:9.375rem;z-index:-1}}.gform-splash__footer p{color:#ecedf8;font-size:1.125rem;line-height:156%;margin:0 auto 1.25rem auto;max-width:32rem}.gform-splash__footer::after,.gform-splash__footer::before{content:"";display:block;position:absolute;z-index:1}.gform-splash__footer::before{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IiM0MkU5RjQiLz4KPC9zdmc+) center center no-repeat;background-size:contain;height:280px;left:-219px;top:-118px;transform:rotate(30deg);width:280px}@media (min-width:783px){.gform-splash__footer::before{height:344px;width:335px}}.gform-splash__footer::after{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTExIiBoZWlnaHQ9IjEyMiIgdmlld0JveD0iMCAwIDExMSAxMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMTEgODIuODYxOEMxMTEgODguNDQxOCAxMDcuMDQ1IDk1LjI4MDcgMTAyLjIwMSA5OC4wNTY0TDY0LjI4NDMgMTE5LjkxOEM1OS40NDA3IDEyMi42OTQgNTEuNTMwNiAxMjIuNjk0IDQ2LjY4NzEgMTE5LjkxOEw4Ljc2OTk1IDk4LjA1NjRDMy45NTUwNyA5NS4yODA3IDAgODguNDQxOCAwIDgyLjg2MThWMzkuMTM4MUMwIDMzLjU1ODIgMy45NTUwNyAyNi43MTkyIDguNzk4NjEgMjMuOTQzNkw0Ni42ODcxIDIuMDgxNzRDNTEuNTMwNiAtMC42OTM5MTMgNTkuNDQwNyAtMC42OTM5MTMgNjQuMjg0MyAyLjA4MTc0TDEwMi4yMDEgMjMuOTQzNkMxMDcuMDQ1IDI2LjcxOTIgMTExIDMzLjU1ODIgMTExIDM5LjEzODFWODIuODYxOFoiIGZpbGw9IiNGMTVBMkIiLz4KPC9zdmc+) center center no-repeat;background-size:contain;bottom:-68px;height:200px;right:-152px;width:200px}@media (min-width:783px){.gform-splash__footer::after{height:280px;width:280px}}.toplevel_page_gf_splash #wpfooter{display:none}.gform-splash__background{position:absolute;z-index:0}.gform-splash__background-one{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;left:-530px;opacity:.16;top:0;width:740px}.gform-splash__background-two{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;opacity:.16;right:-530px;top:0;width:740px}.gform-splash__background-three{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:652px;opacity:.16;position:absolute;right:-500px;top:20%;width:652px}.gform-splash__background-four{background:radial-gradient(50% 50% at 50% 50%,#0005ff 0,rgba(0,5,255,.7) 45.83%,rgba(255,0,113,.12) 83.33%,rgba(255,0,113,.03) 100%);height:740px;left:-530px;opacity:.16;top:48%;width:740px}.gform-splash__background-five{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);height:740px;opacity:.16;position:absolute;right:-530px;top:51%;width:740px}.gform-splash__background-six{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);bottom:4%;height:740px;left:-530px;opacity:.16;position:absolute;width:740px}.gform-splash__background-seven{background:radial-gradient(50% 50% at 50% 50%,#ff0071 0,rgba(255,0,113,.7) 45.83%,rgba(0,5,255,.114423) 83.33%,rgba(0,5,255,0) 100%);bottom:3%;height:740px;opacity:.16;position:absolute;right:-530px;width:740px}html[dir=rtl] .toplevel_page_gf_splash #wpcontent{padding-left:0;padding-right:0}@media (min-width:783px){html[dir=rtl] .gform-splash__section--text-and-image .gform-splash-text{padding-left:6%;padding-right:0}html[dir=rtl] .gform-splash__section--text-and-image.gform-splash__section--image-left .gform-splash-text{padding-left:0;padding-right:6%}}.gform-admin .gform-dialog .gform-dialog__content .gform-splash__header p{color:#ecedf8;font-size:1.25rem;line-height:150%;margin:0 auto 2.125rem auto;max-width:48rem;text-align:center}.gform-admin .gform-dialog .gform-dialog__content .gform-splash__footer p{color:#ecedf8;font-size:1.125rem;line-height:156%;margin:0 auto 1.25rem auto;max-width:32rem}div.gforms_code{background-color:#e2edff;border:1px solid #d2e0eb;font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px;margin:10px 0;padding:10px;width:700px}div.gforms_code pre{display:block;font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px;font-weight:400!important;line-height:18px;margin:0;overflow:hidden;padding:6px 10px 6px 0;position:relative;white-space:pre-wrap;word-wrap:break-word;z-index:100}.form_head .form_delete_iconx,.gform_heading .form_edit_iconx{display:block}.settings_control_container{height:18px}.gform-admin-screen .editor-sidebar li.next_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)],.gform-admin-screen .editor-sidebar li.previous_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)],.gform-admin-screen .inline{display:-moz-inline-stack!important;display:inline-block!important}.gform-admin-screen .editor-sidebar li.next_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip),.gform-admin-screen .editor-sidebar li.previous_button_setting.field_setting input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip),.gform-admin-screen .inline{display:-moz-inline-stack!important;display:inline-block!important}.gform-admin-screen .editor-sidebar input:where([type=checkbox],[type=radio])+label.inline[\:has\(\%3E\%20.gf_tooltip\)]{display:inline!important}.gform-admin-screen .editor-sidebar input:where([type=checkbox],[type=radio])+label.inline:has(> .gf_tooltip){display:inline!important}.gform-admin-screen .editor-sidebar li.email_confirm_setting.field_setting input[type=checkbox]+label.inline,.gform-admin-screen .editor-sidebar li.post_category_initial_item_setting.field_setting input[type=checkbox]+label.inline{display:inline!important}label.float_label{float:left;padding:2px 0 0;width:40px}.field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],.field_sublabel_hidden_label .ginput_complex.ginput_container select{margin-bottom:.75rem}#gform_fields li ul li{padding:2px 0 4px 0}.gforms_form_settings li{border:1px solid transparent;overflow:hidden;padding:2px 0 4px 0}.gform_page_names li{padding:5px 0!important}#gform_heading{border:1px solid transparent;margin-bottom:10px;overflow:hidden;padding:8px 10px 10px 10px;position:relative;width:480px!important}img#gfield_input_datepicker_icon{left:4px;position:relative;top:3px}#date_picker_container{margin:8px 0}#gfield_icon_url_container{margin-top:5px}td.content_center,th.content_center{text-align:center!important}tr img[src$="/images/active0.svg"],tr img[src$="/images/active1.svg"]{display:-moz-inline-stack;display:inline-block;height:auto;margin:0;width:35px}.gform-settings-panel .wp-list-table.feeds tr img[src$="/images/active0.svg"],.gform-settings-panel .wp-list-table.feeds tr img[src$="/images/active1.svg"]{width:30px}#notification_action_type{display:none}#notification_logic_type{margin-left:5px}div.settings_control_container div.gfield_admin_header_title{margin-top:-4px}.gform-icon--entries-edit{font-size:1.5rem}.gform-icon--entries-edit:active,.gform-icon--entries-edit:hover{color:#707070}.gform-admin-screen .option_header{font-weight:700;margin:5px 0 2px}img.gtitle_icon{float:left;margin:15px 7px 0 0}td.pad_top{padding-top:10px}.gform_merge_tags{width:200px}.gform_editor_merge_tags{width:190px}.gform_content_template_merge_tags{width:165px}.gform_column_wrapper{display:flex;justify-content:space-between}.gform_column_wrapper .panel{border:1px solid #9092b2;border-radius:5px;overflow:hidden}h2.gsection_title,h3.gsection_title{border-bottom:1px solid #ccc!important;font-family:helvetica,arial,sans-serif;font-size:20px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:16px 0;padding:0 0 16px 0!important;width:100%}.gsection .gfield_label{font-family:helvetica,arial,sans-serif;font-size:16px;font-weight:700}.gsection_description{clear:both;font-family:sans-serif;font-size:13px;line-height:1.5;padding-top:4px;width:100%}.gfield_date_year+.gfield_description,.gsection_description{padding:0 0 8px}.gfield{position:relative}.gfield_label{word-break:break-all}ul.gfield_checkbox,ul.gfield_radio{margin:6px 0}.gfield_checkbox li,.gfield_radio li{padding:0!important;position:relative}.gfield_checkbox li label,.gfield_radio li label{display:block;line-height:1.5;margin:0 0 0 24px;padding:0!important;vertical-align:top;width:auto}.gchoice_select_all{font-weight:700}.gfield_checkbox li input,.gfield_checkbox li input[type=checkbox],.gfield_radio li input[type=radio]{float:left;margin-top:2px}.description,.gfield_description,.instruction{clear:both;font-family:inherit;font-size:.8rem;line-height:1.5}.gfield_consent_description{border:1px solid #ddd;margin-top:12px;max-height:320px;overflow-y:scroll;padding:6px 8px;width:100%}.description_above .gfield_description.gfield_consent_description,.description_below .gfield_description.gfield_consent_description{padding:6px 8px}.entry-view-field-value .gfield_consent_description{width:calc(100% - 40px)}.description_above .gfield_description{padding:0 0 10px 0}.left_label div.gfield .gfield_description,.left_label div.gfield .instruction,.left_label fieldset.gfield .gfield_description,.right_label div.gfield .gfield_description,.right_label div.gfield .instruction,.right_label fieldset.gfield .gfield_description{margin-left:30%}@media (max-width:640px){.left_label div.gfield .gfield_description,.left_label div.gfield .instruction,.left_label fieldset.gfield .gfield_description,.right_label div.gfield .gfield_description,.right_label div.gfield .instruction,.right_label fieldset.gfield .gfield_description{margin-left:0}}.left_label .gsection .gsection_description,.right_label .gsection .gsection_description{line-height:1.5;margin-left:0;padding-left:0;padding-top:10px}.gfield_required{color:#9e0b0f;line-height:1rem;margin-left:4px}textarea.small{height:80px}textarea.medium{height:150px}textarea.large{height:250px}div.gfield_admin_icons{cursor:move;height:24px;padding-top:6px}div.gform_admin_icons{height:20px}ul#gform_fields.left_label div.gfield_admin_icons,ul#gform_fields.right_label div.gfield_admin_icons{height:30px}div.gfield_admin_icons div.gfield_admin_header_title,div.gform_admin_icons div.gform_admin_header_title,div.settings_control_container div.gfield_admin_header_title{display:none}#form_settings{margin-top:10px;padding-top:2px}#form_settings h3 span i[class*=" fa-"],#form_settings h3 span i[class^=fa-],.gform_tab_container h3 span i[class*=" fa-"],.gform_tab_container h3 span i[class^=fa-]{color:#0074a2}#tab_gravityformslogging .gforms_form_settings th{width:auto}.input_size_a,.textarea_size_a{width:375px}.form_button_options{margin:8px 0}#form_button_image_container,#form_button_text_container{margin-top:8px!important}.captcha_message{padding:5px}#after_insert_dialog div{padding-bottom:10px}#simplemodal-overlay{background-color:#000;cursor:default}#simplemodal-container{background-color:#f9f9f9;border:6px solid #636363;border-radius:8px;height:355px;padding:20px 20px 0;width:400px}#simplemodal-container a.modalCloseImg{background-image:url(../../../images/icon-close.png);background-repeat:no-repeat;cursor:pointer;display:inline;height:29px;position:absolute;right:-18px;top:-14px;width:25px;z-index:3200}.field-choice-handle{cursor:move;vertical-align:middle}#gfield_settings_category_container{margin:8px 0 0;max-height:230px}#field_columns li{margin:0!important;padding:0!important}#field_columns{margin:0!important;padding:10px 0!important}.input_active_icon{cursor:pointer;margin:10px 5px 0 0}#field_choices li input.field-choice-value,.field_input_choices li input.field-choice-value{display:none}#field_choices li input.field-choice-price{display:none}.gfield_choice_header_label{display:none!important;padding-left:51px}.gfield_choice_header_value{display:none!important}.gfield_choice_header_price{display:none!important}.choice_with_value li input.field-choice-value{display:inline!important}.choice_with_value .gfield_choice_header_label{display:inline!important}.choice_with_value .gfield_choice_header_value{display:inline-block!important;padding-left:120px}.choice_with_value_and_price li input.field-choice-value{display:flex!important}.choice_with_value_and_price li input.field-choice-price{display:flex!important}.choice_with_value_and_price .gfield_choice_header_label{display:inline-block!important}.choice_with_value_and_price .gfield_choice_header_value{display:inline-block!important;padding-left:70px}.choice_with_value_and_price .gfield_choice_header_price{display:inline-block!important;padding-left:70px}.choice_with_price li input.field-choice-price{display:flex!important}.choice_with_price .gfield_choice_header_label{display:inline-block!important}.choice_with_price .gfield_choice_header_price{display:inline-block!important;padding-left:120px}#field_columns li input.field-choice-value{display:none}#field_columns li input.field-choice-price{display:none}#field_columns li input.gfield_choice_radio{display:none}#field_columns li input.gfield_choice_checkbox{display:none}#field_columns li input.field-choice-text{width:312px!important}div.gf_payment_detail{margin-bottom:15px}table.entry-detail-view{margin-bottom:16px}table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{background-color:#eee;border-bottom:1px solid #dfdfdf;font-size:14px;font-weight:700;padding:7px}td.entry-view-field-name{background-color:#eaf2fa;border-bottom:1px solid #fff;font-weight:700;line-height:1.5;padding:7px}td.entry-view-field-value{border-bottom:1px solid #dfdfdf;line-height:1.8;padding:7px 7px 7px 40px}td.entry-view-field-value p{text-align:left}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}div.note-meta-container{font-size:0;white-space:nowrap}div.note-avatar{display:inline-block;height:48px;margin-right:8px;vertical-align:middle;width:48px}.note-has-email div.note-avatar{vertical-align:top}div.note-meta{display:inline-block;left:-48px;margin-left:48px;position:relative;vertical-align:middle;white-space:normal}span.note-divider{opacity:.25}.note-author{display:inline;font-size:.9rem;font-weight:700;line-height:1;margin:0 0 2px;padding:0}.note-email{font-size:.9rem;line-height:1.3;margin:0!important;padding:0!important;text-align:left}.note-email::before{color:#dadada;content:"\2014";margin:0 5px}.detail-note-content{background-color:#f7f7f7;border-left:4px solid #ddd;line-height:1.8rem;margin:1em 0;padding:1rem;position:relative}.detail-note-content p{line-height:30px}.detail-note-content.gforms_note_success{background-color:#ecfcde;border-left-color:#a7c886}.detail-note-content.gforms_note_warning{background-color:#fffbcc;border-left-color:#e6db55}.detail-note-content.gforms_note_error{background-color:#ffebe8;border-left-color:#c00}div.gforms_note_content{margin:0}div.gforms_note_content p:last-child{margin-bottom:0}.note-meta-container .note-date{display:block;font-size:.8rem;line-height:1}.bulk-left-panel-wrapper{height:330px;width:250px}.bulk-left-panel{height:100%;overflow-x:hidden;overflow-y:scroll;padding:0;position:relative;width:100%}.bulk-left-panel ul{border-radius:5px}.bulk-left-panel ul li{margin:0;padding:0}html[dir=rtl] .bulk-left-panel ul li{text-align:right}.bulk-left-panel ul li a.bulk-choice{border-bottom:1px solid #ecedf8;color:#242748;display:block;padding:8px 10px;text-decoration:none;width:100%}.bulk-left-panel ul li:last-child a.bulk-choice{border-bottom:none}.bulk-left-panel ul li a.bulk-choice:focus,.bulk-left-panel ul li a.bulk-choice:hover{background-color:#f6f9fc;outline:0}.bulk-left-panel ul li.choice_section_header{background-color:#f6fbfd;border-bottom:1px solid #ecedf8;color:#21759b;display:block;padding:5px;text-align:center;text-decoration:none}a.bulk-choice:first-child{border-top:none}.bulk-arrow-mid{align-items:center;display:flex;height:330px;justify-content:center;width:64px}.bulk-right-panel{width:250px}textarea#gfield_bulk_add_input{border:none;height:100%;padding:6px;width:100%}textarea#gfield_bulk_add_input:focus{outline:0}div.panel-buttons{display:-moz-inline-stack;display:inline-block}div.panel-custom{display:-moz-inline-stack;display:inline-block;margin-left:1em}div.panel-custom a{font-weight:600;text-decoration:none}html[dir=rtl] div.panel-custom{margin-right:1em}html[dir=rtl] div.panel-custom a span{display:inline-block;transform:rotate(180deg)}div#bulk_custom_message{position:absolute;top:11px;width:250px}div#bulk_custom_edit{position:absolute;top:20px}.updated_base{background-color:#fff;border:1px solid #fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:10px 15px 10px 0;padding:0 .6rem}.updated_base p{line-height:1;margin:.5em 0;padding:2px}.wrap .updated_base{margin:10px 15px 24px 0}table.form-table td .updated_base{font-size:13px}.error_base{background-color:#ffebe8;border-color:#c00;border-radius:3px;border-style:solid;border-width:1px;margin:10px 15px 10px 0;padding:0 .6rem}.error_base p{line-height:1;margin:.5em 0;padding:2px}.wrap .error_base{margin:10px 15px 10px 0}table.form-table td .error_base{font-size:13px}.gf_input_error_icon{background-image:url(../../../images/exclamation.png);display:-moz-inline-stack;display:inline-block;float:right;height:16px;margin-top:-16px;position:relative;right:-20px;top:18px;width:16px}li.gfield_html label.gfield_label{height:18px}.gfield_captcha_input_container{padding-top:3px}.simple_captcha_small input{width:100px}.simple_captcha_medium input{width:150px}.simple_captcha_large input{width:200px}.left_label .simple_captcha_large,.left_label .simple_captcha_medium,.left_label .simple_captcha_small,.right_label .simple_captcha_large,.right_label .simple_captcha_medium,.right_label .simple_captcha_small{margin-left:32%}.math_small input{width:69px}.math_medium input{width:90px}.math_large input{width:108px}.left_label .math_large,.left_label .math_medium,.left_label .math_small,.right_label .math_large,.right_label .math_medium,.right_label .math_small{margin-left:32%}table.entry-products{border:1px solid #c3c4c7;margin:10px 0}table.entry-products th[scope=col]{background-color:#fff;border-bottom:1px solid #c3c4c7;padding:7px 5px 8px}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3{width:155px}table.entry-products col.entry-products-col4{width:155px}table.entry-products thead th:last-child{text-align:right}table.entry-products tfoot tr:first-child td{border-top:1px solid #e5e5e5}table.entry-products td{color:#51575d;font-size:.75rem;font-weight:600;padding:.796875rem 5px}table.entry-products tfoot td{font-size:.8rem;font-weight:700;padding:.5rem}table.entry-products tbody tr:nth-child(odd){background-color:#f9f9f9}table.entry-products td:last-child{text-align:right}table.entry-products td:nth-child(2){text-align:left}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.emptycell{background-color:#fff}table.entry-products td div.product_name{color:#3a70ac;font-size:13px;font-weight:700;margin-bottom:5px}table.entry-products td.grandtotal_amount{color:#367b5e;font-size:1rem}table.entry-products td ul.product_options li{background-image:url(../../../images/prodlist.png);background-position:0 0;background-repeat:no-repeat;margin:0 0 0 2px!important;overflow:visible;padding:4px 0 4px 16px}table.entry-products td ul.product_options li.lastitem{background-image:url(../../../images/prodlist-last.png)}.ginput_container_password span{position:relative}.ginput_container_password span button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;padding:3px 0;pointer-events:none;position:absolute;right:1px;text-align:center;top:1px;width:30px}.ginput_container_password span button .dashicons{font-size:16px;height:16px;width:16px}.password_input_container{display:block;position:relative}.gfield_password_strength{background-color:#eee;border-color:#ddd!important;border-style:solid;border-width:1px;float:left;line-height:1.8;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:96%}ul.left_label .gfield_password_strength,ul.right_label .gfield_password_strength{margin-left:32.5%}p.search-box{margin:12px 0 0 0}#gform-settings .column-is_active{padding-top:9px;vertical-align:top;width:75px}div#gform_heading.selectable.field_selected{background-color:#f6fbfd;background-image:url(../../../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;padding-top:8px}div.gf_renew_license,div.gf_upgrade_license{grid-column:span 2}div.gf_renew_license{background-color:#faf2f5;border:1px solid #cfadb3;color:#832525;padding:10px 0 20px 20px}p.gform_renew_expired strong{color:#9e0b0f}div.gf_upgrade_license h4{font-size:14px;margin:0;padding:0}div.gf_upgrade_business_license,div.gf_upgrade_developer_license{background-position:0 0;background-repeat:no-repeat;min-height:175px;padding:14px 0 0 140px}div.gf_upgrade_developer_license{background-image:url(../../../images/gravityforms-developer-upgrade.png);background-size:133px 169px;margin:30px 0 0 0}div.gf_upgrade_business_license{background-image:url(../../../images/gravityforms-business-upgrade.png);background-size:133px 169px;margin:0}p.gform_renew_expired,p.gform_renew_not_expired{background-position:0 0;background-repeat:no-repeat;font-size:1.4rem}a.gf_upgrade_link{background:#d54e21;border:solid #c4461c 4px;border-radius:4px;color:#fff;display:-moz-inline-stack;display:inline-block;font-family:Arial;font-size:16px;padding:10px 20px 11px 20px;text-decoration:none;text-shadow:1px 1px 2px #c24319}a.gf_upgrade_link:hover{background:#db5428;text-decoration:none}.gf_update_current,.gf_update_expired,.gf_update_outdated{margin-top:20px;padding:10px}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);position:relative}.alert_green{background-color:#fff;border-bottom:none;border-left:4px solid #7ad03a;border-right:none;border-top:none;color:#424242}.alert_yellow{background-color:#fff;border-bottom:none;border-left:4px solid #ffba00;border-right:none;border-top:none;color:#424242}.alert_gray{background-color:#fff;border-bottom:none;border-left:4px solid #ccc;border-right:none;border-top:none;color:#424242}.alert_blue{background-color:#fff;border-bottom:none;border-left:4px solid #2ea2cc;border-right:none;border-top:none;color:#424242}.alert_red,ul#gform_fields li#no-fields div.newform_notice{background-color:#fff;border-bottom:none;border-left:4px solid #dd3d36;border-right:none;border-top:none;color:#424242}span.gf_keystatus_invalid_text,span.gf_keystatus_valid_text{display:-moz-inline-stack;display:inline-block}i.gf_keystatus_valid,i.gf_valid,span.gf_keystatus_valid_text{color:green}i.gf_invalid,i.gf_keystatus_invalid,span.gf_invalid,span.gf_keystatus_invalid_text{color:#9e0b0f}span.gf_keystatus_invalid_text{color:#9e0b0f}.gfield_checkbox .gchoice_total,.gfield_radio .gchoice_total{color:#878787;font-size:.6875rem;padding-top:.875rem!important}body #wpcontent #wpbody #wpbody-content{overflow:visible}div.ui-widget-content{background-color:#fafafa}div#gform_heading.selectable div#form_settings.ui-tabs,div#pagination_settings.ui-tabs{border:none!important}div.ui-tabs div.ui-tabs-panel{background-color:#fff;border-bottom:1px solid #d2e0eb;border-left:1px solid #d2e0eb;border-right:1px solid #d2e0eb}div.ui-widget-content li.ui-state-active{border-left:1px solid #d2e0eb!important;border-right:1px solid #d2e0eb!important;border-top:1px solid #d2e0eb!important}ul.ui-widget-header{border-bottom:1px solid #d2e0eb!important}div.ui-widget-content li.ui-state-default{background-color:#d2e0eb!important;border-bottom:1px solid #d2e0eb;border-left:1px solid #d2e0eb!important;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;border-right:1px solid #d2e0eb!important;border-top:1px solid #d2e0eb!important;border-top-left-radius:4px;border-top-right-radius:4px}div.ui-widget-content li.ui-state-default a{color:#21759b}div.ui-widget-content li.ui-state-default.ui-state-active{background-color:#fff!important;background-image:none!important;border-bottom:1px solid #fff!important}div.ui-widget-content li.ui-state-default.ui-state-active a{color:#212121}li.gform_setting_left_half{display:-moz-inline-stack;display:inline-block;height:60px;margin-right:2%;vertical-align:top;width:44%}li.gform_setting_right_half{clear:right;display:-moz-inline-stack;display:inline-block;height:60px;margin-right:2%;vertical-align:top;width:44%}li.gform_setting_left_half input,li.gform_setting_left_half select,li.gform_setting_right_half input,li.gform_setting_right_half select{width:95%}#contextual-help-link-wrap{display:none}#gf_form_toolbar{background:#fff;border-bottom:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;color:#555;display:inline-block;font-size:13px;margin:12px 0 0;padding:4px 10px 0 10px;width:100%}ul#gf_form_toolbar_links{display:flex;margin:0;position:relative}#edit-title-close{color:#999;cursor:pointer;position:absolute;right:4px;width:16px}#gform_settings_page_title_error{color:red;margin-left:5px}#edit-title-header{background:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px 1px 0 1px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);font-size:14px;margin:0!important;min-height:24px;overflow:hidden;padding:8px 12px 5px;position:relative;white-space:nowrap}#edit-title-container{position:absolute;top:50px;visibility:hidden;width:350px;z-index:9999}#edit-title-input{font-size:14px;margin-bottom:20px;width:100%}#edit-title-label{display:block;font-size:14px;font-weight:700;margin-bottom:2px}#gform_settings_page_title{border-radius:2px;padding:5px 10px 5px 10px}.gform_settings_page_title_editable{cursor:pointer}.gform_settings_page_title_editable:hover{background-color:#e5e5e5;border-radius:2px}#form_switcher{display:none;max-width:300px;min-width:130px}.form_switcher_arrow{display:inline-block;margin-left:1.5rem;outline:0}.form_switcher_arrow svg{outline:0;vertical-align:middle}.form_switcher_arrow svg path{outline:0}body>.select2-container.gform-select2[style]{left:0;position:static!important;top:0}.gform-form-switcher__container{background:#fff;border:1px solid #c3c5db;border-radius:3px;box-shadow:0 10px 15px rgba(58,61,90,.1),0 4px 6px rgba(58,61,90,.05);position:absolute;transform:scale(.95);transform-origin:top left;transition:.1s all;width:14.625rem!important;z-index:10000}.gform-form-switcher__container input[type=text].select2-search__field{background:#fff no-repeat 20px center url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi40NjggMTEuMTY1YTYuOTQ3IDYuOTQ3IDAgMTAtMS4zMDMgMS4zMDNsMS42NDQgMS42NDQtLjAyNS4wMjVhMS41IDEuNSAwIDAwMCAyLjEyMWwyLjIyMSAyLjIyYTEuNSAxLjUgMCAwMDIuMTIxIDBsMS4zNTMtMS4zNTJhMS41IDEuNSAwIDAwMC0yLjEybC0yLjIyLTIuMjIyYTEuNSAxLjUgMCAwMC0yLjEyMiAwbC0uMDI1LjAyNS0xLjY0NC0xLjY0M3ptLTUuNTIuOTkzYTUuMjEgNS4yMSAwIDEwMC0xMC40MjEgNS4yMSA1LjIxIDAgMDAwIDEwLjQyMXptNi45NDcgMy4wNGwxLjMwMi0xLjMwMyAyLjE3MiAyLjE3LTEuMzAzIDEuMzAzLTIuMTcxLTIuMTd6IiBmaWxsPSIjQkNDN0QwIi8+PC9zdmc+);background-size:19px;border:1px solid #c3c5db;border-radius:3px;box-shadow:none;font-size:.875rem;margin:.675rem .575rem;outline:0;padding:.5625rem 1.1875rem .5625rem 3.5625rem;width:calc(100% - 1.35rem)}.gform-form-switcher__container input[type=text].select2-search__field::-moz-placeholder{color:#9092b0}.gform-form-switcher__container input[type=text].select2-search__field::-moz-placeholder,.gform-form-switcher__container input[type=text].select2-search__field::-ms-input-placeholder,.gform-form-switcher__container input[type=text].select2-search__field::placeholder{color:#9092b0}.gform-form-switcher__container input[type=text].select2-search__field:focus{background-image:none;border:1px solid rgba(62,125,166,.55)!important;box-shadow:0 0 1px 1px rgba(62,125,166,.55);padding:.5625rem 1.1875rem}.gform-form-switcher__container .select2-results__options{border-radius:0 0 3px 3px;border-top:1px solid #d9dae6;max-height:9.1875rem;overflow-y:auto}.gform-form-switcher__container .select2-results__options li{color:#5b5e80;cursor:pointer;font-size:.8125rem;line-height:1.1875rem;margin:0;padding:1.0625rem 1.1875rem}.gform-form-switcher__container .select2-results__options li:last-child{border-bottom:none}.gform-form-switcher__container .select2-results__options li:focus,.gform-form-switcher__container .select2-results__options li:hover{background:#f5f6fb;color:#242748;outline:0}div#gravity-edit-icon,div#gravity-entry-icon,div#gravity-export-icon,div#gravity-help-icon,div#gravity-import-icon,div#gravity-notification-icon,div#gravity-settings-icon,div#gravity-title-icon,div#gravity-update-icon{background-image:url(../../../images/gf-32-iconsprite.png);background-repeat:no-repeat}div#gravity-edit-icon{background-position:0 0}div#gravity-entry-icon{background-position:0 -50px}div#gravity-export-icon{background-position:0 -100px}div#gravity-help-icon{background-position:0 -150px}div#gravity-import-icon{background-position:0 -200px}div#gravity-notification-icon{background-position:0 -250px}div#gravity-settings-icon{background-position:0 -300px}div#gravity-update-icon{background-position:0 -400px}div#gravity-title-icon{background-position:0 -350px}div#major-publishing-actions{clear:both}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat tfoot tr th.manage-column,html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat thead tr th.manage-column{font-size:13px!important}th.manage-column.column-cb.check-column{vertical-align:top}table.gfield_list td.gfield_list_cell{padding:6px 0}table.gfield_list td.gfield_list_cell+td.gfield_list_cell{padding:6px 0}table.gfield_list thead tr th{font-weight:700;padding:6px 0}table.gfield_list thead tr th+th{padding:6px 0}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-left:1px solid #dfdfdf!important;border-spacing:0;border-top:1px solid #dfdfdf!important;margin:2px 0 6px;padding:0;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #dfdfdf!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #dfdfdf!important;font-family:sans-serif!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}input.headercb{margin-top:-3px}.gfield_routing_select,.gfield_rule_select{width:120px}.gfield_rule_input{height:28px;vertical-align:bottom}.gf_conditional_logic_rules_container{margin-top:1rem}.gf_conditional_logic_rules_container input,.gf_conditional_logic_rules_container select{margin-left:2px;margin-top:0!important}.gform_routing_operator{width:60px}.validation_message{color:#9e0b0f!important;font-family:sans-serif;font-size:11px;letter-spacing:normal}.gfield_error{background-color:#ffdfdf!important;border:1px dotted #c89797;margin-bottom:6px;margin-top:4px!important;padding:6px 6px 4px!important}.grouting_rule_error input{border:1px solid red}.gfield_sub_setting{margin-top:20px}div#notifications_container .inside div.message.error{line-height:1.5!important}.ginput_complex .ginput_cardinfo_left,.ginput_complex .ginput_cardinfo_right{float:left;min-height:43px;position:relative}.ginput_complex .ginput_cardinfo_left{margin-right:1%;width:50%}.gfield .ginput_complex .ginput_cardinfo_left legend:not(.hidden_sub_label){position:static}.ginput_complex .ginput_cardinfo_right{min-width:85px!important}.ginput_complex .ginput_cardinfo_right label{white-space:nowrap!important}.ginput_complex span.ginput_cardextras{display:block;margin-bottom:8px;overflow:hidden}.ginput_complex .ginput_cardinfo_right span.ginput_card_expiration_container{position:relative}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year{display:-moz-inline-stack;display:inline-block}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month{margin-right:4px}.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{position:relative;width:50%}div.gfield_creditcard_warning_message{display:none!important}#gform_fields li.credit_card_setting.field_setting ul li{padding:2px 0 4px 0}html[dir=rtl] .gform_wrapper .gform_card_icon_container div{float:right}html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_left,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right{float:right}html[dir=rtl] .ginput_complex .ginput_cardinfo_left{margin-right:0}.wp-media-buttons{line-height:3px!important;padding:0!important}.wp-media-buttons select{font-size:10px!important;line-height:2.2rem;padding:1px!important}#notifications_advanced_settings label{line-height:18px}div.gf_toolset_dropdown_menu{position:absolute;right:0;top:10px}div.gf_toolset_dropdown_menu ul li.gf_toolset_dropdown_toplevel a.gf_toolset_dropdown_toplevel_link{background-color:#efefef;background-image:url(../../../images/gf-entry-paging-sprite.jpg);background-position:-144px 0;background-repeat:no-repeat;border:1px solid #dfdfdf;border-radius:3px;display:block;height:24px;margin:0;overflow:hidden;padding:0;text-decoration:none;text-indent:-9000px;width:40px}div.gf_entry_detail_pagination{clear:both;float:right;font-size:13px}div.gf_entry_detail_pagination ul{height:15px}div.gf_entry_detail_pagination ul li div.gf_entry_detail_pagination ul li{margin-bottom:0!important;padding:0!important}div.gf_entry_detail_pagination ul li{display:-moz-inline-stack;display:inline-block}div.gf_entry_detail_pagination ul li.gf_entry_count span{display:block;line-height:25px;padding:0 5px 0 0;width:auto!important}div.gf_entry_detail_pagination ul li.gf_entry_count span strong{color:#d24e29}div.gf_entry_detail_pagination ul li.gf_entry_pagination a{display:block;margin:0;padding:0;text-decoration:none}div.gf_entry_wrap #poststuff .inside{border-top:1px solid #ebebf2;margin:0;padding:12px}div.gf_entry_wrap #poststuff .inside .message,div.gf_entry_wrap #poststuff .inside .updated{margin:-12px -12px 12px -12px}#notifications_container .message{margin:-2px -15px 0 -15px}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive{color:#424242;opacity:.2}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active{color:#424242;opacity:.5}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover{color:#0074a2;opacity:1}li.gf_entry_next i,li.gf_entry_prev i{display:block}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap div#tab_notification div.wp-editor-wrap{margin-top:20px!important}html body.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{background-color:#e9e9e9;border-left:1px solid #ccc;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;border-right:1px solid #ccc;border-top:1px solid #ccc;border-top-left-radius:3px;border-top-right-radius:3px;left:0;padding:3px 4px 3px 6px!important;position:absolute;top:-2px;width:290px!important}html body.rtl.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{left:auto!important;right:0}html body.wp-admin div#wp-form_notification_message-editor-tools.wp-editor-tools{position:relative}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media{background-color:#fff;background-image:url(../../../images/gf-media-button-bg.jpg);background-position:bottom;background-repeat:repeat-x;border:1px solid #c3c3c3;border-bottom:2px solid #ccc;border-radius:3px;color:#464646;display:-moz-inline-stack;display:inline-block;font-family:arial,sans-serif;font-size:12px;font-weight:400;line-height:18px;padding:3px 6px 2px 5px!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media img{display:none!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js select#form_notification_message_variable_select{font-family:arial,sans-serif;font-size:12px!important;font-weight:400;line-height:18px;position:relative;top:0}.gf_toggle_submenu{background-image:url(../../../images/icon-submenu-down.png);background-position:center center;background-repeat:no-repeat;background-size:11px 11px;cursor:pointer;display:-moz-inline-stack;display:inline-block;height:11px;width:11px}h4.gf_nofield_header{font-size:1.6rem;font-weight:700}h4.gf_settings_subheader{border-bottom:1px solid #ccc;font-size:1.4rem;font-weight:400!important;margin:2px 0 30px 0!important;padding:0 0 10px 0}#export_filters{width:450px}#gform_fields .field-drop-zone{background-color:#fff;border:1px dashed #bbb;box-sizing:border-box;height:75px;margin:0 auto 10px;width:100%}.gform_fields_empty{height:600px}ul.gforms_form_settings li{margin:0}h4.section-title{border-bottom:1px solid #eee;font-size:14px;font-weight:400;margin:0 0 20px;padding:0 0 5px}.child-settings{border-left:2px solid #eee;margin-left:5px;padding:10px}table.gforms_form_settings{margin:0 0 18px}table.gforms_form_settings th{font-weight:400;padding-left:10px;text-align:left;vertical-align:top;width:200px}table.gforms_form_settings td,table.gforms_form_settings th{padding:8px 0}.show_advanced_settings_container{border-top:1px solid #eee;padding:5px}#show_advanced_settings{cursor:pointer}h4.gf_settings_subgroup_title{border-bottom:1px solid #dfdfdf;padding-bottom:6px}body.wp-admin .wrap .gform_tab_group .gform_tab_container .gform_tab_content input.button-primary{font-weight:400;letter-spacing:.3pt;margin:10px 0 20px 0}.setting-row{margin:0 0 10px}a.limit-text{color:#242748;display:block;height:18px;line-height:18px;overflow:hidden;padding-right:5px;text-overflow:ellipsis;white-space:nowrap}a.limit-text:hover{color:#555}th.column-name{width:30%}th.column-type{width:20%}tr#confirmation-editor-row td{border-left:3px solid #21759b;border-top:0;padding:0}div#confirmation-editor{padding:20px}.editing td{border-bottom:0}.editing td:first-child{border-left:3px solid #21759b}.editing .edit a{color:#999!important}.last-row td{background-color:red}.editor-actions a{line-height:24px}.editor-actions img.spinner{left:6px;position:relative;top:4px}.add_field_choice,.delete_field_choice{color:#444;margin-left:.25rem;position:relative}.add_field_choice{margin-left:.625rem}#confirmation_action_type{display:none}#confirmation_logic_type{margin-left:5px}.description-list{margin:10px 0;padding:0 20px}.description-list li{list-style:disc;overflow:visible;padding:0}.custom_mask_instructions h5{font-size:11px;margin:0 0 4px}.custom_mask_instructions span.label{display:inline-block;font-size:11px;width:80px}.custom_mask_instructions li{margin:0 0 14px}.gf_calculation_buttons{float:right;margin-right:55px}.gf_calculation_buttons input[type=button]{float:left;width:22px}#field_calculation_formula_variable_select{width:150px}#calculation_options p{margin:0 0 14px;padding:0}div.gf_animate_sub_settings{border-left:2px solid #ececf2;margin:.75rem 0 0 .625rem;padding-left:1.375rem}.gform_nofification_edit div.gf_animate_sub_settings{margin-left:0}table.gforms_form_settings td.gf_sub_settings_cell{padding:0}div#form_button_conditional_logic_container.gf_animate_sub_settings{padding-left:12px!important}span.gf_admin_page_formid{background-color:#d4662c;border:none;border-radius:2px;color:#fff;display:-moz-inline-stack;display:inline-block;font-size:13px;font-weight:600;line-height:2;margin:0 2px 0 12px;padding:0 8px;position:relative;text-decoration:none;text-shadow:none;top:-3px;white-space:nowrap}#gform_notification_to_routing_container table{width:100%}#tab_confirmation .gform-settings-field__conditional_logic .gform-settings-choice{display:none}#tab_confirmation .gform-settings-field__conditional_logic .gform-settings-field__header{margin-bottom:0}.ui-tabs>.ui-tabs-nav>.ui-state-disabled{display:none}div#gform_last_page_settings div#last_page_settings.ui-tabs,div#gform_pagination div#pagination_settings.ui-tabs{padding:0!important}div#gform_last_page_settings div#last_page_settings .ui-widget-header,div#gform_pagination div#pagination_settings .ui-widget-header,ul#gform_fields li .ui-widget-header{background:0 0!important;border-left:none!important;border-right:none!important;border-top:none!important;font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav{padding:0!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default{font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-widget-content,div#gform_pagination div#pagination_settings.ui-widget-content{background:0 0!important;background-image:none!important;border:none!important}input:checked+label{font-weight:400}div.gf_clear{clear:both!important}div.gf_clear.gf_clear_complex{clear:both!important}.gf_button.slick_button{border:1px solid rgba(0,0,0,.15);border-radius:3px;box-shadow:0 0 1px 2px rgba(121,0,0,.2);color:#fff;display:inline-block;font-size:1.2rem;font-weight:700;padding:10px 25px;text-decoration:none;text-shadow:0 -1px 0 rgba(0,0,0,.2)}.slick_button.red_button{background:#ff3019;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzAxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZjA0MDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%)}.slick_button.red_button:active,.slick_button.red_button:hover{color:#fff}.gform-add,.gform-remove{cursor:pointer;vertical-align:middle}.gform-add{margin-left:5px}#gform-no-filters{align-items:flex-end;color:#696c8c;cursor:pointer;display:flex}.gform-filter-value{vertical-align:bottom}.gform-filter-field,.gform-filter-operator,.gform-filter-value{-ms-box-sizing:border-box;box-sizing:border-box;height:2rem}.gform-filter-field,.gform-filter-value{width:150px}.gform-filter-operator{width:70px}#gform-field-filters{overflow-y:auto}.gform-field-filter{margin-top:4px}.gform-field-filter input,.gform-field-filter select{margin-right:6px}.gform-field-filter .gform-add{margin-right:4px}.ui-resizable-handle{display:block;font-size:.1px;position:absolute;z-index:99999}.ui-resizable-s{bottom:-5px;cursor:s-resize;height:7px;left:0;width:100%}#gform_update_button{height:2.3125rem;line-height:.875rem;padding:.625rem 12px}#gform_update_button:hover{background:#3985b7;color:#fff;transform:none}#gform_update_button:focus{background-color:#3e7da6;box-shadow:0 0 0 2px #bed8ed;color:#fff}#gform_update_button:active{background:#3985b7;border-color:#bed8ed;color:#fff}#namediv .gform_button_select_files{width:100px!important}.gform_fileupload_multifile .gform_drop_area{border:2px dashed #ddd;color:#aaa;margin-bottom:10px;padding:25px;text-align:center}.gform_delete{cursor:pointer;vertical-align:middle}tr.gf-locking.wp-locked .locked-info{height:auto}tr.gf-locking.wp-locked img.gform_active_icon{display:none}.gform-signature-action{font-size:1.5rem;text-decoration:none}@media (max-width:640px){html[dir=rtl] .gforms_edit_form .gform_wrapper.gravity-theme .ginput_list input{float:none!important}}.gf-pagebreak{align-items:center;color:#6c7781;display:flex;font-size:.8rem;font-weight:700;letter-spacing:.65px;line-height:1.1rem;padding:1.25rem 0;text-align:center;text-transform:uppercase}.gf-pagebreak-first{padding:0 0 2.5rem 0}.gf-pagebreak-end,.gf-pagebreak-first{padding-left:1rem;padding-right:1rem}.gf-pagebreak::after,.gf-pagebreak::before{background-color:silver;content:"";flex-grow:1;height:4px}.gf-pagebreak::before{background:repeating-linear-gradient(to left,#ddd 0,#ddd 9px,transparent 9px,transparent 13px);margin-right:1em}.gf-pagebreak::after{background:repeating-linear-gradient(to right,#ddd 0,#ddd 9px,transparent 9px,transparent 13px);margin-left:1em}html[dir=rtl] .gf-pagebreak::before{margin-left:1em;margin-right:0}html[dir=rtl] .gf-pagebreak::after{margin-left:0;margin-right:1em}.left_label .gpage .field_label,.right_label .gpage .field_label{display:none}#gform_fields.left_label .gfield>.gf-pagebreak,#gform_fields.right_label .gfield>.gf-pagebreak{width:100%}li.gfield.gpage label.gfield_label{display:none!important;margin:0!important}.entry_unread a,.entry_unread td{font-weight:700}.entry_spam_trash a,.entry_spam_trash td{font-weight:400}.row-actions a{display:inline-block;font-weight:400}.entry_nowrap{overflow:hidden;white-space:nowrap}.gform-filter-operator{width:100px}body.forms_page_gf_entries div#TB_title[style]{width:630px!important}table.form-table tr:last-child td,table.form-table tr:last-child th{border:none!important}span.gf_settings_description{display:block;margin-top:6px}div.gf-html-container{background-color:#f6f6f6;border:1px solid #e4e4e4;padding:20px}div.gf-html-container span.gf_blockheader{display:block;font-size:16px;font-weight:700;line-height:16px;margin-bottom:6px;text-transform:uppercase}ul.gform_fields.left_label li.gfield.gfield_html .gfield_label,ul.gform_fields.right_label li.gfield.gfield_html .gfield_label{display:inline-block;float:none!important;margin-bottom:8px;margin-top:12px;text-align:left;width:100%}.gf_delete_field_choice,.gf_insert_field_choice{border:0;color:#9b9b9b;font-size:14px;margin-left:6px;padding:0;text-decoration:none}.gf_delete_field_choice:active,.gf_delete_field_choice:hover,.gf_insert_field_choice:active,.gf_insert_field_choice:hover{color:#444}html[dir=rtl] .gform-admin-screen #TB_ajaxContent,html[dir=rtl] .gform-admin-screen #TB_window{text-align:right}.gform-admin-screen #TB_ajaxContent{box-sizing:border-box;padding:0 2rem 80px;position:relative;width:auto!important}.gform-admin-screen #TB_overlay{background:#1c1f3f;opacity:.72}.gform-admin-screen #TB_window{background:#fff;border-radius:6px;box-shadow:0 16px 80px rgba(5,17,50,.66)}.gform-admin-screen #TB_title{background:0 0;border-bottom:none;display:flex;height:auto;justify-content:space-between;padding:1.875rem 2rem 1.375rem}.gform-admin-screen #TB_ajaxWindowTitle{color:#242748;font-size:1rem;font-weight:400;line-height:1.5rem;padding:0;white-space:normal}.gform-admin-screen #TB_closeWindowButton{position:relative}.tb-title{align-items:center;display:flex}.tb-title__logo::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDMiIGhlaWdodD0iNDciIHZpZXdCb3g9IjAgMCA0MyA0NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik00Mi44MTQ4IDMxLjc3OTNDNDIuODE0OCAzMy45MTkzIDQxLjI4OTIgMzYuNTQyMiAzOS40MjEgMzcuNjA2N0wyNC43OTU2IDQ1Ljk5MTJDMjIuOTI3NCA0Ny4wNTU3IDE5Ljg3NjMgNDcuMDU1NyAxOC4wMDgxIDQ1Ljk5MTJMMy4zODI3MyAzNy42MDY3QzEuNTI1NTUgMzYuNTQyMiAwIDMzLjkxOTMgMCAzMS43NzkzVjE1LjAxMDNDMCAxMi44NzAzIDEuNTI1NTUgMTAuMjQ3NCAzLjM5Mzc5IDkuMTgyODhMMTguMDA4MSAwLjc5ODM5MkMxOS44NzYzIC0wLjI2NjEzMSAyMi45Mjc0IC0wLjI2NjEzMSAyNC43OTU2IDAuNzk4MzkyTDM5LjQyMSA5LjE4Mjg4QzQxLjI4OTIgMTAuMjQ3NCA0Mi44MTQ4IDEyLjg3MDMgNDIuODE0OCAxNS4wMTAzVjMxLjc3OTNaIiBmaWxsPSIjRjE1QTI5Ii8+DQo8cGF0aCBkPSJNMTcuMjQ0OSAxOS41MUgzNi42MjM4VjE0LjA5OTZIMTcuMzAwMkMxNC41MzY1IDE0LjA5OTYgMTIuMjM3MiAxNS4wNDM0IDEwLjQ5MDUgMTYuODk4MUM2LjI2NzY1IDIxLjM1MzcgNi4xNTcxIDMyLjU5MTYgNi4xNTcxIDMyLjU5MTZIMzYuNDkxMVYyMi40MjkySDMxLjA0MTJWMjcuMTgxMkgxMS45NjA4QzEyLjA4MjQgMjUuNDE0MyAxMi45MDA1IDIyLjI0MjcgMTQuNDQ4MSAyMC42MDc1QzE1LjE1NTYgMTkuODYxMiAxNi4wNTEgMTkuNTEgMTcuMjQ0OSAxOS41MVoiIGZpbGw9IndoaXRlIi8+PC9zdmc+);background-repeat:no-repeat;background-size:auto;content:" ";display:inline-block;height:2.9375rem;margin-right:.74375rem;width:2.6875rem}html[dir=rtl] .gform-admin .tb-title__logo::before{margin-left:.74375rem;margin-right:0}.tb-title__main{color:#242748;font-size:1rem;font-weight:400}.tb-title__sub{color:#696c8c;font-size:.875rem;font-weight:400}.gform-admin-screen .tb-close-icon{background:#fff center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjE4MyAxLjE4M2EuNjI1LjYyNSAwIDAwMCAuODg0TDUuMTE2IDYgMS4xODMgOS45MzNhLjYyNS42MjUgMCAxMC44ODQuODg0TDYgNi44ODRsMy45MzMgMy45MzNhLjYyNS42MjUgMCAxMC44ODQtLjg4NEw2Ljg4NCA2bDMuOTMzLTMuOTMzYS42MjUuNjI1IDAgMTAtLjg4NC0uODg0TDYgNS4xMTYgMi4wNjcgMS4xODNhLjYyNS42MjUgMCAwMC0uODg0IDB6IiBmaWxsPSIjM0U3REE2Ii8+PHBhdGggZD0iTTEuMTgzIDIuMDY3TC44MyAyLjQybC4zNTMtLjM1M3ptMC0uODg0TC44My44M2wuMzUzLjM1M3pNNS4xMTYgNmwuMzU0LjM1NEw1LjgyMyA2bC0uMzUzLS4zNTRMNS4xMTYgNnpNMS4xODMgOS45MzNMLjgzIDkuNThsLjM1My4zNTR6bTAgLjg4NGwtLjM1My4zNTQuMzUzLS4zNTR6TTYgNi44ODRsLjM1NC0uMzU0TDYgNi4xNzdsLS4zNTQuMzUzLjM1NC4zNTR6bTMuOTMzIDMuOTMzbC4zNTQtLjM1NC0uMzU0LjM1NHptLjg4NC0uODg0bC0uMzU0LjM1NC4zNTQtLjM1NHpNNi44ODQgNmwtLjM1NC0uMzU0TDYuMTc3IDZsLjM1My4zNTRMNi44ODQgNnptMy45MzMtNC44MTdMMTEuMTcuODNsLS4zNTQuMzUzem0tLjg4NCAwTDkuNTguODNsLjM1NC4zNTN6TTYgNS4xMTZsLS4zNTQuMzU0LjM1NC4zNTMuMzU0LS4zNTNMNiA1LjExNnpNMi4wNjcgMS4xODNMMi40Mi44M2wtLjM1My4zNTN6bS0uNTMuNTNhLjEyNS4xMjUgMCAwMTAtLjE3NkwuODMuODNjLS40NC40MzktLjQ0IDEuMTUxIDAgMS41OWwuNzA3LS43MDd6TTUuNDcgNS42NDZMMS41MzcgMS43MTNsLS43MDcuNzA4IDMuOTMzIDMuOTMzLjcwNy0uNzA4em0tMy45MzMgNC42NEw1LjQ3IDYuMzU1bC0uNzA3LS43MDhMLjgzIDkuNThsLjcwNy43MDh6bTAgLjE3N2EuMTI1LjEyNSAwIDAxMC0uMTc2TC44MyA5LjU3OWMtLjQ0LjQ0LS40NCAxLjE1MiAwIDEuNTkxbC43MDctLjcwN3ptLjE3NiAwYS4xMjUuMTI1IDAgMDEtLjE3NiAwbC0uNzA3LjcwOGMuNDM5LjQzOSAxLjE1MS40MzkgMS41OSAwbC0uNzA3LS43MDh6TTUuNjQ2IDYuNTNsLTMuOTMzIDMuOTMzLjcwOC43MDggMy45MzMtMy45MzQtLjcwOC0uNzA3em00LjY0IDMuOTMzTDYuMzU1IDYuNTNsLS43MDguNzA3IDMuOTMzIDMuOTM0LjcwOC0uNzA4em0uMTc3IDBhLjEyNS4xMjUgMCAwMS0uMTc2IDBsLS43MDguNzA4Yy40NC40MzkgMS4xNTIuNDM5IDEuNTkxIDBsLS43MDctLjcwOHptMC0uMTc2YS4xMjUuMTI1IDAgMDEwIC4xNzZsLjcwOC43MDhjLjQzOS0uNDQuNDM5LTEuMTUyIDAtMS41OTFsLS43MDguNzA3ek02LjUzIDYuMzU0bDMuOTMzIDMuOTMzLjcwOC0uNzA4LTMuOTM0LTMuOTMzLS43MDcuNzA4em0zLjkzMy00LjY0TDYuNTMgNS42NDVsLjcwNy43MDggMy45MzQtMy45MzMtLjcwOC0uNzA4em0wLS4xNzdhLjEyNS4xMjUgMCAwMTAgLjE3NmwuNzA4LjcwOGMuNDM5LS40NC40MzktMS4xNTIgMC0xLjU5MWwtLjcwOC43MDd6bS0uMTc2IDBhLjEyNS4xMjUgMCAwMS4xNzYgMGwuNzA4LS43MDdhMS4xMjUgMS4xMjUgMCAwMC0xLjU5MSAwbC43MDcuNzA3ek02LjM1NCA1LjQ3bDMuOTMzLTMuOTMzTDkuNTc5LjgzIDUuNjQ2IDQuNzYzbC43MDguNzA3em0tNC42NC0zLjkzM0w1LjY0NSA1LjQ3bC43MDgtLjcwN0wyLjQyLjgzbC0uNzA4LjcwN3ptLS4xNzcgMGEuMTI1LjEyNSAwIDAxLjE3NiAwTDIuNDIxLjgzQTEuMTI1IDEuMTI1IDAgMDAuODMuODNsLjcwNy43MDd6IiBmaWxsPSIjM0U3REE2Ii8+PC9zdmc+);background-size:.625rem;border:1px solid #d5d7e9;border-radius:50%;cursor:pointer;height:1.625rem;position:relative;width:1.625rem}.gform-admin-screen .tb-close-icon::before{content:none}#TB_window .modal_footer{background:#f6f9fc;border-radius:0 0 5px 5px;border-top:1px solid #e2e8f0;bottom:0;left:0;padding:20px 32px;position:absolute;right:0}.modal_footer .button,.modal_footer .button-primary{-webkit-appearance:none;background:#fff;border-color:#3e7da6;border-radius:3px;border-style:solid;border-width:1px;box-sizing:border-box;color:#3e7da6;cursor:pointer;font-size:.875rem;font-weight:600;line-height:2.15384615;margin:0;min-height:30px;padding:.125rem 1.125rem;transition:all .3s ease;white-space:nowrap}.modal_footer .button-primary:hover,.modal_footer .button:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.modal_footer .button-primary,.modal_footer .button.primary{background:#3e7da6;border:1px solid transparent;border-radius:3px;color:#fff;font-family:inherit;font-size:.875rem;font-weight:500;height:auto;height:initial;line-height:1;padding:.625rem 1.125rem;transition:all .3s ease}.modal_footer .button-primary:hover,.modal_footer .button.primary:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.gform_new_form #TB_window{margin-left:-230px!important;margin-top:0!important;top:10%!important;width:460px!important}.gform_new_form #TB_ajaxContent{height:auto!important;max-height:415px;overflow:hidden;padding:0 2rem}.gform_new_form #TB_ajaxContent .gform-settings__wrapper{display:block;padding:0}.gform_new_form #TB_ajaxContent .gform-settings-label{color:#242748;font-size:14px;font-weight:400}.gform-settings-label .required{padding:.2em}.gform_new_form .gform_new_form_modal_container .submit-row{background-color:#fdfdff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #e2e8f0;margin-left:-32px;margin-right:-32px;margin-top:18px;padding:1rem 2rem}.gform_new_form .gform_new_form_modal_container .setting-row{margin:0 0 10px}.gform_new_form .gform_new_form_modal_container .setting-row label{line-height:24px}.gform_new_form .gform_new_form_modal_container .setting-row input,.gform_new_form .gform_new_form_modal_container .setting-row textarea{display:block;width:100%}.gform_new_form .gform_new_form_modal_container .setting-row textarea{height:110px;max-height:200px}.gform_new_form .gform_new_form_modal_container #gf_new_form_error_message{color:#bc0b0b;margin:0 0 18px 5px!important}.gform_new_form .gform_new_form_modal_container img.gfspinner{left:5px;position:relative;top:5px}.gform_new_form .gf_not_ready{opacity:.25}.ginput_container.ginput_single_email input.medium,span.ginput_left input.medium,span.ginput_right input.medium{width:95%!important}ul:not(.top_label) .ginput_container.ginput_single_email{margin-left:30%}.gforms_edit_form input.disabled,.gforms_edit_form input:disabled,.gforms_edit_form select.disabled,.gforms_edit_form select:disabled,.gforms_edit_form textarea.disabled,.gforms_edit_form textarea:disabled{pointer-events:none}.gaddon-section{margin:0 0 20px;padding:20px 0 0}.gaddon-section.gaddon-first-section{border-top:0;padding-top:0}.gaddon-setting.large{width:95%}.gaddon-select,.gaddon-setting.medium{width:50%}.gaddon-setting.gaddon-checkbox{margin-right:8px}div.wrap.gf_browser_gecko div.new-form-option a{padding:16px 16px 14px 16px}div.wrap.gf_browser_ie .gfield_checkbox li input,div.wrap.gf_browser_ie .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_ie .gfield_radio li input[type=radio]{margin-top:0}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{top:0}div.wrap.gf_browser_ie input.button-primary,div.wrap.gf_browser_ie input.button-primary.gfbutton,div.wrap.gf_browser_ie input.gfbutton{line-height:1rem;padding:0 6px}body .gf_browser_chrome a.button-primary.gfbutton,body .gf_browser_chrome button.button-primary.gfbutton,body .gf_browser_chrome input.button-primary.gfbutton{line-height:1em!important}body .gf_browser_chrome h2.gf_admin_page_title span.gf_admin_page_subtitle{margin-top:2px}div.wrap.gf_browser_chrome .gfield_checkbox li input,div.wrap.gf_browser_chrome .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_chrome .gfield_radio li input[type=radio]{margin-left:2px!important}.gform_system_report mark{background:0 0;color:#999}.gform_system_report mark.yes{color:#7ad03a}.gform_system_report .error_message,.gform_system_report mark.error{color:#a00}.gform_system_report_alert{border-left-color:#2ea2cc!important;box-sizing:border-box;display:block;padding-bottom:10px!important;position:relative;width:100%}.gf_copy_message{color:#080;display:none!important}#gf_system_report{height:10px;left:20px;position:absolute;top:65px;width:10px;z-index:-1}#gform_register_site{display:none}#gform_license_key{font-size:19px!important;width:90%!important}#entry_list_form .column-is_starred,#form_list_form .column-is_active{vertical-align:top;width:6rem}#entry_list_form .column-is_starred{width:19px}#form_list_form .column-is_active img.pending{transform:translateX(50%)}#form_list_form .column-conversion,#form_list_form .column-entry_count,#form_list_form .column-id,#form_list_form .column-view_count{width:10%}#entry_list_form .column-column_selector{width:20px}#entry_filters{display:inline-block;vertical-align:middle}#entry_search_button{bottom:-.0625rem;float:right;height:2.1875rem;line-height:.9rem;min-height:auto;position:relative}.gf_entry_detail_pagination+#poststuff{padding-top:30px}#content-sortables.empty-container,#sidebar_middle-sortables.empty-container,#sidebar_top-sortables.empty-container{border:3px dashed #bbb!important;height:250px!important}#entry_search_container{float:right;margin-top:12px}.gform-rte-preview{border:1px solid #9092b2;border-radius:3px;display:none}.gform-rte-preview.small{height:6rem}.gform-rte-preview.medium{height:12rem}.gform-rte-preview.large{height:18rem}.gform-rte-preview ul{background:#f5f5f5;border-bottom:1px solid #ddd;border-radius:3px 3px 0 0;box-shadow:0 1px 2px rgba(0,0,0,.2);padding:.3rem}.gform-rte-preview ul li{align-items:center;display:inline-flex;justify-content:center;margin-bottom:0;padding:.3rem}.gform-rte-preview ul li svg{height:1.3rem;width:1.3rem}.screen-meta-toggle{z-index:2}div.error{padding:20px}::-webkit-input-placeholder{color:#5b5e80}::-moz-placeholder{color:#5b5e80}:-ms-input-placeholder{color:#5b5e80}:-moz-placeholder{color:#5b5e80}.gf_browser_gecko input[type=checkbox],.gf_browser_gecko input[type=radio]{margin-bottom:-6px}.gf_browser_chrome input[type=checkbox],.gf_browser_chrome input[type=radio]{margin-bottom:-4px}#gform_fields li ul.rules_container li{padding:0}.last_page_button_options{margin-top:8px}#last_page_button_button_container,#last_page_button_image_container,#last_page_button_text_container{margin-top:12px!important}div.range_max,div.range_min{display:-moz-inline-stack;display:inline-block;padding-right:8px;vertical-align:top;width:98px}div.range_max label,div.range_min label{display:block;margin-bottom:0;margin-top:.25rem}@media screen and (max-width:782px){.gforms_form_settings_wrap #gform_tab_container_1{margin-left:0}.gforms_form_settings_wrap #gform_tabs{display:none}#gform-settings .column-is_active{padding-top:0;vertical-align:top;width:19px}.gforms_settings_wrap #gform_tab_container{margin-left:0}.gforms_settings_wrap .gform_tab_group{flex-flow:column}.gforms_settings_wrap #gform_tabs{float:none;margin:10px 10px 0 10px;width:100%}.gforms_settings_wrap #gform_tabs li.active a{background-color:inherit;border-bottom:4px solid #666;border-left:0;border-right:0;border-top:0;box-shadow:none;color:#23282d;padding:10px!important;width:auto}.gforms_settings_wrap #gform_tabs li{border-right:#e1e1e1;display:inline-block;margin-bottom:0;width:auto}#gform_tab_container{border-top:1px solid #e1e1e1}.gform_panel h3{line-height:39px}.gform_panel h3 .add-new-h2{display:inline-block;margin-left:0;position:static;vertical-align:top}}.gfield_repeater_cell>.gfield_repeater_wrapper{background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;box-shadow:0 1px 1px 0 rgba(0,0,0,.06),0 2px 1px -1px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.06);padding:10px 20px}.gfield_repeater_wrapper input{border:1px solid #c5c6c5;border-radius:4px}.gfield_repeater_buttons .add_repeater_item_text,.gfield_repeater_buttons .remove_repeater_item_text{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:20px;color:#757575;font-size:12px;font-weight:400;height:30px;margin-bottom:5px;margin-right:10px;min-width:100px;transition:all .3s cubic-bezier(.67, .17, .4, .83)}.gfield_repeater_buttons .add_repeater_item_plus,.gfield_repeater_buttons .remove_repeater_item_minus{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:50%;color:#757575;font-size:16px;font-weight:700;height:22px;margin:10px 5px 0 5px;padding:0;padding-bottom:5px;transition:all .3s cubic-bezier(.67, .17, .4, .83);width:22px}.gfield_repeater_buttons button.gfield_icon_disabled{cursor:default;-khtml-opacity:0.3;-moz-opacity:0.3;opacity:.3}.gfield_repeater_buttons button.gfield_icon_disabled:hover{background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);color:#757575}.gfield_repeater_buttons button:hover{background:#fafafa;border:1px solid #757575;color:#374750}.gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child){border-bottom:2px solid #e0e0e6;margin-bottom:20px;margin-right:10px;padding-bottom:20px}.gfield_repeater_buttons .add_repeater_item_text:focus,.gfield_repeater_buttons .remove_repeater_item_text:focus{outline:0}.gfield_repeater_item .gfield_repeater_cell .gfield_required{color:#c32121}.gform_wrapper .gfield_repeater_cell label{color:#9b9a9a;font-size:14px;font-weight:400}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_cell{padding-bottom:20px;padding-top:0}div .gfield_repeater_cell{margin-top:5px}.gfield_repeater_value>.gfield_repeater{background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;margin:10px;padding:10px 20px}.gfield_repeater_cell .gfield_repeater_value:not(:first-child){background-color:#f0f0f0;border:1px solid #c5c6c5;border-radius:4px;color:rgba(117,117,117,.7);margin-right:10px;padding-left:10px}.gfield_repeater .gfield_repeater_items,.gfield_repeater_items .gfield_repeater_cell:not(:first-child){padding-top:5px}.gfield_repeater .gfield_label{color:#23282d;font-size:16px;font-weight:600}.gfield_repeater_cell div.ginput_complex_admin span label,.gfield_repeater_cell label.gfield_label{color:#9b9a9a;font-size:14px;font-weight:400}.gfield_repeater_value .gfield_label{padding-bottom:0}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_item:first-child{padding-bottom:0}.gfield_repeater_cell .gfield_admin_icons{height:0}.gf-notice-container{display:none}.form-list{display:flex;flex-wrap:wrap}.form-list-head{align-items:baseline;display:flex;flex:1 1 100%}.form-list-head h2{color:#23282d;font-size:21px;font-weight:500;margin-block:0;margin-inline:0 1rem}.form-list-nav{align-items:center;display:flex;flex:1 1 auto}.form-list-nav .search-box{display:flex}.gform-settings-panel__content .wp-list-table th.check-column{padding-top:10px}.gform-settings-panel__content .wp-list-table .check-column input[type=checkbox]{margin-block:0;margin-inline:8px}.gform-settings-panel__content #form_list_form{display:flex;flex-wrap:wrap}.gform-settings-panel__content #form_list_form #entry_filters .gform-field-filter,.gform-settings-panel__content#entry_list_form #entry_filters .gform-field-filter{margin:0}.gform-settings-panel__content #form_list_form .tablenav,.gform-settings-panel__content#entry_list_form .tablenav{display:flex;flex:1 1 auto;flex-wrap:wrap;height:2.563rem;margin:1rem 0}.gform-settings-panel__content #form_list_form .tablenav .actions,.gform-settings-panel__content#entry_list_form .tablenav .actions{flex:1 1 auto}.gform-settings-panel__content #form_list_form .tablenav .actions select,.gform-settings-panel__content#entry_list_form .tablenav .actions select{padding-bottom:.4375rem;padding-top:.375rem}.gform-settings-panel__content #form_list_form .tablenav .actions .button,.gform-settings-panel__content#entry_list_form .tablenav .actions .button{height:2.1875rem;line-height:.7rem;min-height:auto}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages{align-items:center;display:flex;flex:none;flex-direction:row;height:2.375rem;text-align:right}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages.no-pages,.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages.one-page .pagination-links,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages.no-pages,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages.one-page .pagination-links{display:none}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links{display:flex;flex-direction:row;font-size:.8125rem;height:100%}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links span:last-child,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links span:last-child{margin-right:0}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .pagination-links .current-page,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .pagination-links .current-page{font-size:.8125rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .paging-input,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .paging-input{align-items:center;display:flex;height:100%;justify-content:center;margin-left:.1875rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .button,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .button{align-items:center;display:flex;height:100%;justify-content:center;margin:0 .1875rem;padding:0;width:2.375rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages .tablenav-paging-text,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages .tablenav-paging-text{margin-left:.1875rem}.gform-settings-panel__content #form_list_form .tablenav .tablenav-pages input.current-page,.gform-settings-panel__content#entry_list_form .tablenav .tablenav-pages input.current-page{height:100%;padding-bottom:.4375rem;padding-top:.4375rem;width:auto}#screen-meta-links{margin-bottom:-30px}.gform-settings-header .gform-settings__wrapper{clear:both}#gform-field-filters .gform-field-filter{margin-bottom:.5rem;padding:.125rem 0;text-align:right}.gform-settings-panel__content #entry_search_container .gform-field-filter .gform-filter-value,.gform-settings-panel__content #entry_search_container .gform-field-filter input,.gform-settings-panel__content #entry_search_container .gform-field-filter select{height:auto;line-height:1.1875rem;min-height:unset;min-width:unset;padding-bottom:.4375rem;padding-top:.4375rem;width:auto}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter select.gform-filter-field{margin-right:.375rem;width:calc(33% - .375rem)}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter select.gform-filter-operator{margin-right:.375rem;width:calc(25% - .375rem)}.gform-settings-panel__content--entry-list #entry_search_container .gform-field-filter input.gform-filter-value{margin-right:.375rem;width:calc(40% - .375rem)}#entry_list_form{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:space-between}#entry_list_form .alert{flex:1 1 100%}#entry_list_form.gform-settings-panel__content .tablenav{flex:1 1 auto;width:100%}#entry_list_form.gform-settings-panel__content .tablenav.bottom .tablenav-pages{padding-top:1.25rem}@media (min-width:783px){#entry_list_form.gform-settings-panel__content .tablenav.bottom .tablenav-pages{padding-top:0}}#entry_list_form.gform-settings-panel__content .tablenav-pages{flex:1 1 auto;float:none;margin:0;text-align:right}#entry_list_form.gform-settings-panel__content .tablenav-pages input.current-page{height:1rem;width:auto}.gform-settings-panel__content #entry_search_container{align-items:baseline;display:flex;justify-content:flex-start;left:-.625rem;margin:0;position:relative;width:100%}@media (min-width:783px){.gform-settings-panel__content #entry_search_container{flex:1 1 55%;float:none;justify-content:flex-end;left:0;width:auto}}.gform-settings-panel__content .subsubsub{flex:1 1 45%;float:none;font-size:13px}.gform-settings-panel__content--entry-list .subsubsub{flex:none}.gf_entry_detail_pagination{display:flex;justify-content:flex-end}.gf_entry_pagination{width:1.75rem}.gf_entry_pagination_link_inactive{opacity:.6}.gf_entry_pagination_link_active{opacity:1}.gf_entry_pagination_link,.gf_entry_pagination_link:active,.gf_entry_pagination_link:focus,.gf_entry_pagination_link:hover{box-shadow:none;color:#3e7da6;cursor:pointer;outline:0;padding:.5rem;text-decoration:none}.gf_entry_pagination_link i{background:#fff;border:1px solid #9092b2;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.0596411);font-size:.55rem;font-weight:400;height:auto;line-height:1.1rem;width:1.1rem}.gform-settings__content .entry-details-table,.gform-settings__content .gresults-results-field,.gform-settings__content .postbox,.gform-settings__content .sales,.gform-settings__content table:not(.form-table){background:#fff;box-sizing:border-box;width:100%}.gform-settings__content .entry-details-table,.gform-settings__content .gresults-results-field,.gform-settings__content .postbox,.gform-settings__content .sales{border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552)}.gform-settings__content .gresults-chart-wrapper svg{border-radius:3px;width:100%}.gform-settings__content .entry-details-table>thead>tr{align-items:center;border:none;display:flex;flex-grow:1;font-size:.875rem;justify-content:space-around;line-height:2.875rem;padding-bottom:0;padding-left:1.0625rem;padding-right:.875rem;padding-top:0;position:relative}.gform-settings__content .entry-details-table th{flex-grow:1;font-size:.875rem;font-weight:500;margin:0;padding:0;text-align:left}.gform-settings-panel__content .entry-details-table>tbody>:nth-child(odd){background:#f6f9fc}.gf_entry_detail_pagination .gf_entry_count strong{color:#3e7da6}#gentry_display_empty_fields{margin-right:6px}#gentry_display_empty_fields+label{color:#242748;font-size:13px;font-weight:400;line-height:18px}.entry-notes-print-header{display:none}.entry-notes .note-details{display:flex;flex-wrap:wrap}.entry-notes .note-details .note-check{flex:0 0 auto;margin-right:1rem}.entry-notes .note-details .author{display:flex;flex:1 1 auto;font-weight:400}.entry-notes .note-details .author .avatar{border-radius:50%;flex:0 0 auto;height:auto;margin-right:1rem;width:2.25rem}.entry-notes .note-details .author .text{flex:1 1 auto}.entry-notes .note-details .author .text h6{color:#242748;font-size:14px;font-weight:400;line-height:14px;margin:0 0 .5rem 0}.entry-notes .note-details .author .text time{color:#a7a9c1;font-size:13px;line-height:13px}.entry-notes .note-content{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);display:flex;font-size:13px;margin-bottom:1.625rem;margin-top:1.3125rem}.entry-notes .note-content.alert{font-weight:500;margin-bottom:1.625rem;margin-top:1.3125rem}.entry-notes .note-content:not(.alert){color:#242748;padding:19px 16px 22px 16px}.entry-notes .add-note{background-color:#fdfdff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #e2e8f0;margin:12px -12px -12px -12px;padding:23px 17px 35px 18px}.entry-notes .add-note textarea{background:#fff;border:1px solid #9092b2;border-radius:3px;margin-bottom:18px;width:100%}.entry-notes .add-note .add-note-actions{display:flex}.entry-notes .add-note .add-note-actions input{flex:0 0 auto;margin-right:1rem}.entry-notes .add-note .add-note-actions .send-to{display:flex;flex:1 1 auto}.entry-notes .add-note .add-note-actions .send-to #gentry_email_subject_container{flex:1 1 auto}.entry-notes .add-note .add-note-actions .send-to select{flex:1 1 5rem;height:2.375rem;line-height:1}.js .postbox .handlediv:focus .toggle-indicator::before{box-shadow:none}.gform-settings__content #poststuff .postbox #major-publishing-actions a{color:#a00;font-size:13px;line-height:30px;text-decoration:none}.gform-settings__content #poststuff .postbox #major-publishing-actions{background:#f6f9fc;border-bottom-left-radius:6px;border-bottom-right-radius:6px;padding:12px}.gform-settings__content #poststuff .postbox #minor-publishing{padding:12px}.gform-settings__content #poststuff .postbox .handlediv{height:45px}#notifications_override_settings label{display:block;margin-bottom:.5rem}.gform-settings__content .postbox input[type=checkbox]{margin-right:6px}.gform-settings__content #poststuff .postbox h2{border:none;color:#242748;flex-grow:0;font-size:.875rem;font-weight:500;justify-content:space-around;line-height:2.875rem;padding-bottom:0;padding-left:1.0625rem;padding-right:.875rem;padding-top:0}.gform-settings__content #poststuff .postbox .actions{align-items:baseline;display:flex;justify-content:flex-start;margin-bottom:20px}.gform-settings__content #poststuff .postbox .actions select{flex:0 0 8rem;margin-right:10px}.gform-settings__content #poststuff .postbox .actions input{flex:0 0 75px;line-height:28px}.gform-settings__content #poststuff .postbox .actions input.button{flex:0 0 75px;line-height:19px;padding:8px 18px}.gform-settings-panel__content .entry-details-table .entry-view-field-name,.gform-settings-panel__content .entry-details-table .entry-view-field-value{background:#f6f9fc;border-bottom:1px solid #ececf2;border-top:1px solid #ececf2;color:#242748;font-size:13px;line-height:165%;padding:12px 17px}.gform-settings-panel__content .entry-details-table .entry-view-field-value:last-of-type{border-radius:3px}.gform-settings-panel__content .entry-details-table .entry-view-field-value{background:#fff;border:none;font-weight:400}.inner-sidebar{clear:right;display:none;float:right;position:relative;width:281px}.columns-2 .inner-sidebar{display:block;margin-right:auto;width:286px}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;padding:0;width:280px}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{clear:left;float:left;margin-right:-2000px;width:100%}.has-right-sidebar #post-body-content{float:none;margin-right:300px;width:auto}.ginput_preview_control{bottom:-.25rem;display:inline-block;font-size:1.25rem;outline:0;position:relative;text-decoration:none}.ginput_preview_control.gform-icon--circle-arrow-down{color:#22a753}.ginput_preview_control.gform-icon--circle-delete{color:#dd301d}[data-simplebar]{align-content:flex-start;align-items:flex-start;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;position:relative}.simplebar-wrapper{height:inherit;max-height:inherit;max-width:inherit;overflow:hidden;width:inherit}.simplebar-mask{bottom:0;direction:inherit;height:auto!important;left:0;margin:0;overflow:hidden;padding:0;position:absolute;right:0;top:0;width:auto!important;z-index:0}.simplebar-offset{bottom:0;box-sizing:inherit!important;direction:inherit!important;left:0;margin:0;-webkit-overflow-scrolling:touch;padding:0;position:absolute;resize:none!important;right:0;top:0}.simplebar-content-wrapper{box-sizing:border-box!important;direction:inherit;display:block;height:100%;max-height:100%;max-width:100%;-ms-overflow-style:none;position:relative;scrollbar-width:none;width:auto}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{height:0;width:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;pointer-events:none;width:100%}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;flex-basis:0;flex-grow:inherit;flex-shrink:0;float:left;height:100%;margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:relative;width:100%;z-index:-1}.simplebar-height-auto-observer{box-sizing:inherit;display:block;height:1000%;left:0;min-height:1px;min-width:1px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:0;width:1000%;z-index:-1}.simplebar-track{bottom:0;overflow:hidden;pointer-events:none;position:absolute;right:0;z-index:1}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}[data-simplebar]::-webkit-scrollbar{-webkit-appearance:none;display:none;height:0;width:0}.simplebar-content-wrapper::-webkit-scrollbar{-webkit-appearance:none;display:none;height:0;width:0}.simplebar-scrollbar{left:0;min-height:10px;position:absolute;right:0}.simplebar-scrollbar:before{background:#d5d7e9;border-radius:3px;content:'';left:3px;opacity:0;position:absolute;right:4px;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:1;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{bottom:2px;top:2px}.simplebar-track.simplebar-horizontal{height:11px;left:0}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:7px;left:0;min-height:0;min-width:10px;right:auto;top:2px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{left:0;right:auto}.hs-dummy-scrollbar-size{direction:rtl;height:500px;opacity:0;overflow-x:scroll;overflow-y:hidden;position:fixed;visibility:hidden;width:500px}.simplebar-hide-scrollbar{left:0;overflow-y:scroll;position:fixed;scrollbar-width:none;visibility:hidden} \ No newline at end of file diff --git a/wp/wp-content/plugins/gravityforms/assets/css/dist/assets.php b/wp/wp-content/plugins/gravityforms/assets/css/dist/assets.php index 7fd102d3..931d7311 100644 --- a/wp/wp-content/plugins/gravityforms/assets/css/dist/assets.php +++ b/wp/wp-content/plugins/gravityforms/assets/css/dist/assets.php @@ -1 +1 @@ - array('admin-components.min.css' => array('version' => 'f78e5368d8b599a78b9709de2178cf97', 'file' => 'admin-components.min.css'), 'admin-css-utilities.min.css' => array('version' => '047c723392c56ed67effb778811f50ea', 'file' => 'admin-css-utilities.min.css'), 'admin-icons.min.css' => array('version' => '520e7dcc452befec5f1c95e51400ec2d', 'file' => 'admin-icons.min.css'), 'admin-ie11.min.css' => array('version' => 'b1f15b2772b378a5549ac45eefe2fcb7', 'file' => 'admin-ie11.min.css'), 'admin-theme.min.css' => array('version' => '181487c53e25a62e81e1db77d7c504e3', 'file' => 'admin-theme.min.css'), 'admin.min.css' => array('version' => '51611f92b865196a3851e8dbe254b31d', 'file' => 'admin.min.css'), 'basic.min.css' => array('version' => '4bedfdb9cf94d64f854157dffba8b66f', 'file' => 'basic.min.css'), 'blocks.min.css' => array('version' => 'f7b147e3138419bb9db86d7e0b0bd5e5', 'file' => 'blocks.min.css'), 'common-css-utilities.min.css' => array('version' => '2633df3a029b0d34687e2d197707e947', 'file' => 'common-css-utilities.min.css'), 'editor.min.css' => array('version' => '6a4bdd86191cb74f53524474d2ee78a8', 'file' => 'editor.min.css'), 'font-awesome.min.css' => array('version' => 'ab928ca9bd3a308082b143be8a422524', 'file' => 'font-awesome.min.css'), 'gravity-forms-common-icons.min.css' => array('version' => '7144d998edb50d92c9bd4e51d89e1248', 'file' => 'gravity-forms-common-icons.min.css'), 'gravity-forms-orbital-theme.min.css' => array('version' => 'd41d8cd98f00b204e9800998ecf8427e', 'file' => 'gravity-forms-orbital-theme.min.css'), 'gravity-forms-theme-foundation.min.css' => array('version' => '24e1aab73d398b04bedb185ac75f540d', 'file' => 'gravity-forms-theme-foundation.min.css'), 'gravity-forms-theme-framework.min.css' => array('version' => '7ed359ef17010b5a486e83c0767de750', 'file' => 'gravity-forms-theme-framework.min.css'), 'gravity-forms-theme-reset.min.css' => array('version' => '590d763581c57d55da02972ac0f387d2', 'file' => 'gravity-forms-theme-reset.min.css'), 'settings.min.css' => array('version' => 'b2d752f8ab63822be2409ebf817de4cc', 'file' => 'settings.min.css'), 'setup-wizard.min.css' => array('version' => '7c1011a25f000c4eb8f1bcb85fa4dfa2', 'file' => 'setup-wizard.min.css'), 'template-library.min.css' => array('version' => '560c6c8266f8a6c5cf81077ad29c13a9', 'file' => 'template-library.min.css'), 'theme-components.min.css' => array('version' => 'd41d8cd98f00b204e9800998ecf8427e', 'file' => 'theme-components.min.css'), 'theme-ie11.min.css' => array('version' => '67ea51dbc2856d10c83352871408a6da', 'file' => 'theme-ie11.min.css'), 'theme.min.css' => array('version' => '6a7e3f08eafa3f4cd82cb28dfa574bfa', 'file' => 'theme.min.css'))); \ No newline at end of file + array('admin-components.min.css' => array('version' => 'f78e5368d8b599a78b9709de2178cf97', 'file' => 'admin-components.min.css'), 'admin-css-utilities.min.css' => array('version' => '047c723392c56ed67effb778811f50ea', 'file' => 'admin-css-utilities.min.css'), 'admin-icons.min.css' => array('version' => '520e7dcc452befec5f1c95e51400ec2d', 'file' => 'admin-icons.min.css'), 'admin-ie11.min.css' => array('version' => 'b1f15b2772b378a5549ac45eefe2fcb7', 'file' => 'admin-ie11.min.css'), 'admin-theme.min.css' => array('version' => '181487c53e25a62e81e1db77d7c504e3', 'file' => 'admin-theme.min.css'), 'admin.min.css' => array('version' => 'b2310dbe070b29d27f9e4c1df0b39ed7', 'file' => 'admin.min.css'), 'basic.min.css' => array('version' => '4bedfdb9cf94d64f854157dffba8b66f', 'file' => 'basic.min.css'), 'blocks.min.css' => array('version' => 'f7b147e3138419bb9db86d7e0b0bd5e5', 'file' => 'blocks.min.css'), 'common-css-utilities.min.css' => array('version' => '2633df3a029b0d34687e2d197707e947', 'file' => 'common-css-utilities.min.css'), 'editor.min.css' => array('version' => '6a4bdd86191cb74f53524474d2ee78a8', 'file' => 'editor.min.css'), 'font-awesome.min.css' => array('version' => 'ab928ca9bd3a308082b143be8a422524', 'file' => 'font-awesome.min.css'), 'gravity-forms-common-icons.min.css' => array('version' => '7144d998edb50d92c9bd4e51d89e1248', 'file' => 'gravity-forms-common-icons.min.css'), 'gravity-forms-orbital-theme.min.css' => array('version' => 'd41d8cd98f00b204e9800998ecf8427e', 'file' => 'gravity-forms-orbital-theme.min.css'), 'gravity-forms-theme-foundation.min.css' => array('version' => '24e1aab73d398b04bedb185ac75f540d', 'file' => 'gravity-forms-theme-foundation.min.css'), 'gravity-forms-theme-framework.min.css' => array('version' => '7ed359ef17010b5a486e83c0767de750', 'file' => 'gravity-forms-theme-framework.min.css'), 'gravity-forms-theme-reset.min.css' => array('version' => '590d763581c57d55da02972ac0f387d2', 'file' => 'gravity-forms-theme-reset.min.css'), 'settings.min.css' => array('version' => '01a4be7adf61c7203e43116c49b01e78', 'file' => 'settings.min.css'), 'setup-wizard.min.css' => array('version' => '7c1011a25f000c4eb8f1bcb85fa4dfa2', 'file' => 'setup-wizard.min.css'), 'template-library.min.css' => array('version' => '560c6c8266f8a6c5cf81077ad29c13a9', 'file' => 'template-library.min.css'), 'theme-components.min.css' => array('version' => 'd41d8cd98f00b204e9800998ecf8427e', 'file' => 'theme-components.min.css'), 'theme-ie11.min.css' => array('version' => '67ea51dbc2856d10c83352871408a6da', 'file' => 'theme-ie11.min.css'), 'theme.min.css' => array('version' => '6a7e3f08eafa3f4cd82cb28dfa574bfa', 'file' => 'theme.min.css'))); \ No newline at end of file diff --git a/wp/wp-content/plugins/gravityforms/assets/css/dist/settings.min.css b/wp/wp-content/plugins/gravityforms/assets/css/dist/settings.min.css index 527afc7f..aed34791 100644 --- a/wp/wp-content/plugins/gravityforms/assets/css/dist/settings.min.css +++ b/wp/wp-content/plugins/gravityforms/assets/css/dist/settings.min.css @@ -1 +1 @@ -.gform-settings__content table.gform_system_report,.gform-settings__content table.plugins{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);overflow:hidden;width:100%}.gform-settings__content table.gform_system_report>thead,.gform-settings__content table.plugins>thead{font-weight:700;margin:0}.gform-settings__content table.gform_system_report>thead>tr,.gform-settings__content table.plugins>thead>tr{font-size:.875rem;line-height:3.285714286rem;min-height:2rem;padding-left:1.071428571rem;padding-right:.857142857rem;position:relative}.gform-settings__content table.gform_system_report td,.gform-settings__content table.gform_system_report th,.gform-settings__content table.plugins td,.gform-settings__content table.plugins th{padding:0 1rem;text-align:left}.rtl .gform-settings__content table.gform_system_report td,.rtl .gform-settings__content table.gform_system_report th,.rtl .gform-settings__content table.plugins td,.rtl .gform-settings__content table.plugins th{direction:ltr!important}.gform-settings__content table.gform_system_report td.plugin-title,.gform-settings__content table.plugins td.plugin-title{vertical-align:top;white-space:normal}.gform-settings__content table.gform_system_report>tbody>tr:nth-child(odd),.gform-settings__content table.plugins>tbody>tr:nth-child(odd){background:#f6f9fc}.gform-settings__content table.gform_system_report td,.gform-settings__content table.gform_system_report th{height:2.5rem}.gform-settings__content table.plugins>thead>tr{background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial}.gform-settings__content table.plugins>thead>tr>#description,.gform-settings__content table.plugins>thead>tr>#name{font-weight:400}.gform-settings__content table.plugins #updates{box-shadow:0 1px #ebebf2}.gform-settings__content table.plugins .inactive td{box-shadow:none}.gform-system-report__text{display:none}.gform-system-report__copy-button{margin-top:20px}.gform-system-report__copy-button .gform-button__icon{opacity:1;transition:var(--tr-hover)}.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-button__icon,.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-label{opacity:0}.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-copied,.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-icon{opacity:1}.gform-system-report__copy-icon{color:#22a753;font-size:1.5rem;margin-right:6px}.gform-system-report__copy-label{opacity:1;transition:all .15s ease}.gform-system-report__copy-copied{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;left:0;opacity:0;position:absolute;text-align:center;width:100%}body{background:#f6f9fc;color:#242748;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpcontent{padding-left:0}html[dir=rtl] #wpcontent{padding-right:0}#wpbody-content{width:100%}#wpfooter{display:none}.wrap{color:#242748;margin:0}.gform-settings__wrapper{display:grid;grid-column-gap:0.875rem;grid-template-columns:12.875rem auto;margin-left:auto;margin-right:auto;max-width:69.5rem;padding:1.5rem}.gform-settings__wrapper--full{grid-template-columns:auto}.gform_form_settings_wrap--full-width #gf-admin-notices-wrapper,.gform_form_settings_wrap--full-width .gform-settings__wrapper{margin:0 1.25rem 0;max-width:100%;padding-left:0;padding-right:0}.gform-settings__wrapper>.alert,.gform-settings__wrapper>.notice{grid-column:span 2;margin:0 0 .875rem}#gform-webapi-edit{display:flex;flex-flow:column;flex-wrap:wrap;padding:0}.gform-settings-header{background:#3e7da6;box-shadow:1px 1px 3px rgba(0,0,0,.0272345)}.gform-settings-header .gform-settings__wrapper{align-items:center;background:url(../../../images/gravity-rocket.svg?2) no-repeat 252px bottom;background-size:164px;display:flex;flex-wrap:wrap;justify-content:space-between;padding-bottom:1.375rem;padding-top:1.375rem;transition:padding .3s ease}.gform-settings-header .button{margin-left:.5rem}.gform-settings-header .button.primary{padding-left:2.0625rem;padding-right:2.0625rem}.gforms_form_settings_wrap #gform-form-toolbar__menu>li>a .fa,.gforms_form_settings_wrap #gform-form-toolbar__menu>li>a svg{display:none}.gform-form-toolbar{border-bottom:0;box-shadow:rgba(58,58,87,.082) 0 1px 4px,rgba(44,44,64,.063) 0 1px 0}.gform-settings__navigation a{border:1px solid transparent;border-radius:3px;color:#5b5e80;display:block;font-size:.875rem;font-weight:400;line-height:normal;margin:0;padding:.6875rem .5rem .6875rem 1rem;text-decoration:none}.gform-settings__navigation .active,.gform-settings__navigation a:focus,.gform-settings__navigation a:hover{color:#242748}.gform-settings__navigation .active,.gform-settings__navigation a:focus{background:#fff;font-weight:500}.gform-settings__navigation .active{border:1px solid #e3e6ef;box-shadow:0 1px 4px rgba(18,25,97,.0779552);margin-top:.125rem}.gform-settings__navigation a:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings__navigation span{vertical-align:middle}.gform-settings__navigation .icon{align-items:center;color:#242748;display:inline-flex;font-size:1.5rem;height:1.25rem;justify-content:center;margin-right:.75rem;width:1.25rem}.gform-settings__navigation img,.gform-settings__navigation svg{height:auto;max-width:1.25rem}.gform-settings__navigation .dashicons,.gform-settings__navigation .fa{color:#242748}.gform-settings-tabs__container,.gform_settings_form{display:grid;grid-column-gap:0.875rem;grid-row-gap:0.875rem;grid-template-columns:1fr 1fr}.gform-settings__wrapper--full .gform-settings-tabs__container,.gform-settings__wrapper--full .gform_settings_form{grid-column:span 2}.gform-settings-tabs__navigation{background:#fff;border-radius:3px;box-shadow:0 1px 5px rgba(0,0,0,.13);grid-column:span 2}.gform-settings-tabs__navigation a{border-bottom:3px solid transparent;color:#242748;display:inline-block;font-size:.8125rem;line-height:2.8125rem;padding-left:1.25rem;padding-right:1.25rem;text-decoration:none}.gform-settings-tabs__navigation a:focus{outline:0}.gform-settings-tabs__navigation a.active{border-bottom-color:#3e7da6;font-weight:700}.gform-settings-tabs__container{grid-column:span 2}.gform-settings-tabs__container:not(.active){display:none}.gform-settings-panel{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);box-sizing:border-box;display:flex;flex-direction:column;grid-column:span 2;position:relative}.gform-settings-panel--with-title{padding-top:2.875rem}.gform-settings-panel--half{grid-column:span 1}.gform-settings-save-container{grid-column:span 2;margin-top:1.125rem}.gform-settings-panel__header{align-items:center;display:flex;font-size:.875rem;justify-content:space-around;line-height:2.875rem;padding-left:1.0625rem;padding-right:.875rem;position:relative}.gform-settings-panel__title{flex-grow:1;font-weight:500;margin:0}.gform-settings-panel__title--header{box-sizing:border-box;display:block;font-size:.875rem;line-height:2.875rem;padding-left:1.0625rem;position:absolute;top:0;width:100%}html[dir=rtl] .gform-settings-panel__title--header{padding-left:inherit;padding-right:1.0625rem}.gform-settings-panel__title--header+.gform-settings-panel__collapsible-control{position:absolute;right:.875rem;top:1rem}html[dir=rtl] .gform-settings-panel__title--header+.gform-settings-panel__collapsible-control{left:.875rem;right:inherit}.gform-settings-panel .gform-settings-panel__content{border-top:1px solid #ebebf2;padding:1rem 1rem 1.25rem}.gform-settings-panel.gform-settings-panel--no-padding .gform-settings-panel__content{padding:0}.gform-settings-panel--license-details .gform-settings-field{margin:0}.gform-settings-panel__collapsible-control input{opacity:0;position:absolute;z-index:3}.gform-settings-panel__collapsible-control input:focus+label{border:2px solid #3e7da6}.gform-settings-panel__collapsible-toggle{background:center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMy4xNTkgNi42OWw0LjEwOSA0LjI5MmMuMzczLjM5MS4zNzMgMS4wMjQgMCAxLjQxNWEuOTI4LjkyOCAwIDAxLTEuMzU0IDBMLjQ1MiA2LjY5IDUuOTE0Ljk4MmEuOTI4LjkyOCAwIDAxMS4zNTQgMGMuMzczLjM5MS4zNzMgMS4wMjQgMCAxLjQxNUwzLjE1OSA2LjY5eiIgZmlsbD0iI0Q1RDdFOSIvPjwvc3ZnPg==);border:none;display:block;height:12px;width:12px}.gform-settings-panel:not(.gform-settings-panel--collapsed) .gform-settings-panel__collapsible-toggle{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiA0LjUzTDEwLjI5My40MjNhMS4wMzIgMS4wMzIgMCAwMTEuNDE0IDBjLjM5LjM3NC4zOS45OCAwIDEuMzUzTDYgNy4yMzguMjkzIDEuNzc1YS45MjguOTI4IDAgMDEwLTEuMzUzIDEuMDMyIDEuMDMyIDAgMDExLjQxNCAwTDYgNC41M3oiIGZpbGw9IiNENUQ3RTkiLz48L3N2Zz4=)}.gform-settings-panel--collapsed .gform-settings-panel__content{display:none}.gform-settings-panel__uninstall{margin-top:.875rem}.gform-addons-uninstall-panel{display:grid;grid-column-gap:0.875rem;grid-row-gap:0.875rem;grid-template-columns:1fr 1fr;margin:1.125rem 0}.gform-settings-panel__addon-uninstall{grid-column:span 1}.gform-settings-panel__addon-uninstall .gform-settings-panel__content{display:grid;grid-template-columns:1fr 2fr 1fr}.addon-uninstall-text .gform-settings-panel__title{font-weight:600;margin-bottom:.3125rem}div.addon-logo.dashicons{border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);float:left;height:3.875rem;margin-right:1rem;position:relative;width:3.875rem}.addon-logo.dashicons i,.addon-logo.dashicons svg{height:1.5625rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:1.5625rem}.addon-logo.dashicons i::before{font-size:1.56rem}.addon-uninstall-text{max-width:95%}.gform-settings__wrapper .button.uninstall-addon{background:#fff3f1;border:none;border-radius:3px;box-shadow:none;color:#e54c3b;position:relative;top:50%;transform:translateY(-50%);transition:all .3s ease}.gform-settings__wrapper .button.addon-settings{border-radius:3px;position:relative;top:50%;transform:translateY(-50%);transition:all .3s ease}.gform-settings__wrapper .button.uninstall-addon:hover{background:#f8e7e4;border:0;border-radius:3px;box-shadow:0 4px 6px rgba(28,31,63,.0837013);height:2.1875rem;line-height:14px;padding:.625rem 1.125rem;transform:translateY(-57%)}.gform-settings__wrapper .button.addon-settings:hover{transform:translateY(-57%)}.gform-settings__wrapper .button.addon-settings i.dashicons.dashicons-admin-generic,.gform-settings__wrapper .button.uninstall-addon i.dashicons.dashicons-trash{font-size:.9rem}.gform-settings-description{display:block;font-size:.8125rem;line-height:1.384615385rem;margin-bottom:.5625rem}.gform-settings__wrapper .gform-settings-description .alert{margin-top:1.230769231rem}.gform-settings-description p:first-child{margin-top:0}.gform-settings-nested-fields{border-left:2px solid #ececf2;margin:.75rem 0 0 .625rem;padding-left:1.375rem}.gform-settings-nested-fields .gform-settings-label{font-weight:400}.gform-settings-field__header{margin-bottom:.625rem}.gform-settings-field--with-merge-tag .gform-settings-field__header{margin-right:2rem}html[dir=rtl] .gform-settings-field--with-merge-tag .gform-settings-field__header{margin-left:2rem;margin-right:0}.gform-settings-label{color:#23282d;font-size:.8125rem;font-weight:500}.gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),.gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-position:98% 50%;background-repeat:no-repeat;background-size:1.25rem;padding-right:3.25rem}.gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+c3VjY2VzczwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgY2xhc3M9Im5jLWljb24td3JhcHBlciI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMyAyNmM3LjE4IDAgMTMtNS44MiAxMy0xM1MyMC4xOCAwIDEzIDAgMCA1LjgyIDAgMTNzNS44MiAxMyAxMyAxM3oiIGZpbGw9IiMyMkE3NTMiLz48cGF0aCBkPSJNMTEgMTQuNTg2bDYuMjkzLTYuMjkzYTEgMSAwIDEgMSAxLjQxNCAxLjQxNEwxMSAxNy40MTRsLTMuNzA3LTMuNzA3YTEgMSAwIDEgMSAxLjQxNC0xLjQxNEwxMSAxNC41ODZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+RXJyb3I8L3RpdGxlPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMgMjZjNy4xOCAwIDEzLTUuODIgMTMtMTNTMjAuMTggMCAxMyAwIDAgNS44MiAwIDEzczUuODIgMTMgMTMgMTN6IiBmaWxsPSIjQ0IyNDMxIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04LjE4MyA4LjE4M2EuNjI1LjYyNSAwIDAgMCAwIC44ODRMMTIuMTE2IDEzbC0zLjkzMyAzLjkzM2EuNjI1LjYyNSAwIDEgMCAuODg0Ljg4NEwxMyAxMy44ODRsMy45MzMgMy45MzNhLjYyNS42MjUgMCAxIDAgLjg4NC0uODg0TDEzLjg4NCAxM2wzLjkzMy0zLjkzM2EuNjI1LjYyNSAwIDEgMC0uODg0LS44ODRMMTMgMTIuMTE2IDkuMDY3IDguMTgzYS42MjUuNjI1IDAgMCAwLS44ODQgMHoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC4xODMgOS4wNjdsLS4zNTMuMzU0LjM1My0uMzU0em0wLS44ODRMNy44MyA3LjgzbC4zNTMuMzUzek0xMi4xMTYgMTNsLjM1NC4zNTQuMzUzLS4zNTQtLjM1My0uMzU0LS4zNTQuMzU0em0tMy45MzMgMy45MzNsLS4zNTMtLjM1NC4zNTMuMzU0em0wIC44ODRsLS4zNTMuMzU0LjM1My0uMzU0ek0xMyAxMy44ODRsLjM1NC0uMzU0LS4zNTQtLjM1My0uMzU0LjM1My4zNTQuMzU0em0zLjkzMyAzLjkzM2wuMzU0LS4zNTQtLjM1NC4zNTR6bS44ODQtLjg4NGwtLjM1NC4zNTQuMzU0LS4zNTR6TTEzLjg4NCAxM2wtLjM1NC0uMzU0LS4zNTMuMzU0LjM1My4zNTQuMzU0LS4zNTR6bTMuOTMzLTQuODE3bC4zNTQtLjM1My0uMzU0LjM1M3ptLS44ODQgMGwtLjM1NC0uMzUzLjM1NC4zNTN6TTEzIDEyLjExNmwtLjM1NC4zNTQuMzU0LjM1My4zNTQtLjM1My0uMzU0LS4zNTR6TTkuMDY3IDguMTgzbC4zNTQtLjM1My0uMzU0LjM1M3ptLS41My41M2EuMTI1LjEyNSAwIDAgMSAwLS4xNzZsLS43MDgtLjcwOGMtLjQzOS40NC0uNDM5IDEuMTUyIDAgMS41OTJsLjcwOC0uNzA4em0zLjkzMyAzLjkzM0w4LjUzNyA4LjcxM2wtLjcwOC43MDggMy45MzQgMy45MzMuNzA3LS43MDh6bS0zLjkzMyA0LjY0bDMuOTMzLTMuOTMyLS43MDctLjcwOEw3LjgzIDE2LjU4bC43MDcuNzA4em0wIC4xNzdhLjEyNS4xMjUgMCAwIDEgMC0uMTc2bC0uNzA4LS43MDdjLS40MzkuNDM5LS40MzkgMS4xNTEgMCAxLjU5bC43MDgtLjcwN3ptLjE3NiAwYS4xMjUuMTI1IDAgMCAxLS4xNzYgMGwtLjcwOC43MDdjLjQ0LjQ0IDEuMTUyLjQ0IDEuNTkyIDBsLS43MDgtLjcwN3ptMy45MzMtMy45MzNsLTMuOTMzIDMuOTMzLjcwOC43MDcgMy45MzMtMy45MzMtLjcwOC0uNzA3em00LjY0IDMuOTMzbC0zLjkzMi0zLjkzMy0uNzA4LjcwNyAzLjkzMyAzLjkzNC43MDgtLjcwOHptLjE3NyAwYS4xMjUuMTI1IDAgMCAxLS4xNzYgMGwtLjcwNy43MDdjLjQzOS40NCAxLjE1MS40NCAxLjU5IDBsLS43MDctLjcwN3ptMC0uMTc2YS4xMjUuMTI1IDAgMCAxIDAgLjE3NmwuNzA3LjcwN2MuNDQtLjQzOS40NC0xLjE1MSAwLTEuNTlsLS43MDcuNzA3em0tMy45MzMtMy45MzNsMy45MzMgMy45MzMuNzA3LS43MDctMy45MzMtMy45MzQtLjcwNy43MDh6bTMuOTMzLTQuNjRsLTMuOTMzIDMuOTMyLjcwNy43MDggMy45MzQtMy45MzMtLjcwOC0uNzA4em0wLS4xNzdhLjEyNS4xMjUgMCAwIDEgMCAuMTc2bC43MDcuNzA4Yy40NC0uNDQuNDQtMS4xNTIgMC0xLjU5MWwtLjcwNy43MDd6bS0uMTc2IDBhLjEyNS4xMjUgMCAwIDEgLjE3NiAwbC43MDctLjcwOGExLjEyNSAxLjEyNSAwIDAgMC0xLjU5IDBsLjcwNy43MDh6bS0zLjkzMyAzLjkzM2wzLjkzMy0zLjkzMy0uNzA3LS43MDgtMy45MzQgMy45MzQuNzA4LjcwN3ptLTQuNjQtMy45MzNsMy45MzIgMy45MzMuNzA4LS43MDdMOS40MiA3LjgzbC0uNzA4LjcwN3ptLS4xNzcgMGEuMTI1LjEyNSAwIDAgMSAuMTc2IDBsLjcwOC0uNzA4YTEuMTI1IDEuMTI1IDAgMCAwLTEuNTkxIDBsLjcwNy43MDh6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.rtl .gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),.rtl .gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-position:2% 50%;padding-left:3.25rem;padding-right:1rem}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content input[type=email],.gform-settings-panel__content input[type=number],.gform-settings-panel__content input[type=password],.gform-settings-panel__content input[type=search],.gform-settings-panel__content input[type=tel],.gform-settings-panel__content input[type=text],.gform-settings-panel__content input[type=url],.gform-settings-panel__content select,.gform-settings-panel__content textarea{background-color:#fff;border:1px solid #9092b2;border-radius:3px;color:#242748;font-family:inherit;font-size:.875rem;line-height:1.25rem;padding:.6875rem 1rem;transition:box-shadow .15s ease,background-color .15s ease}.gform-settings-panel__content input[type=email],.gform-settings-panel__content input[type=number],.gform-settings-panel__content input[type=password],.gform-settings-panel__content input[type=search],.gform-settings-panel__content input[type=tel],.gform-settings-panel__content input[type=text],.gform-settings-panel__content input[type=url],.gform-settings-panel__content select,.gform-settings-panel__content textarea{max-width:100%;width:100%}.gform-settings-panel__content input[type=email][disabled],.gform-settings-panel__content input[type=email][readonly],.gform-settings-panel__content input[type=number][disabled],.gform-settings-panel__content input[type=number][readonly],.gform-settings-panel__content input[type=password][disabled],.gform-settings-panel__content input[type=password][readonly],.gform-settings-panel__content input[type=search][disabled],.gform-settings-panel__content input[type=search][readonly],.gform-settings-panel__content input[type=tel][disabled],.gform-settings-panel__content input[type=tel][readonly],.gform-settings-panel__content input[type=text][disabled],.gform-settings-panel__content input[type=text][readonly],.gform-settings-panel__content input[type=url][disabled],.gform-settings-panel__content input[type=url][readonly],.gform-settings-panel__content select[disabled],.gform-settings-panel__content select[readonly],.gform-settings-panel__content textarea[disabled],.gform-settings-panel__content textarea[readonly]{background:#f4f5fb;cursor:not-allowed;outline:0;pointer-events:none}.gform-settings-panel__content input[type=email][disabled],.gform-settings-panel__content input[type=number][disabled],.gform-settings-panel__content input[type=password][disabled],.gform-settings-panel__content input[type=search][disabled],.gform-settings-panel__content input[type=tel][disabled],.gform-settings-panel__content input[type=text][disabled],.gform-settings-panel__content input[type=url][disabled],.gform-settings-panel__content select[disabled],.gform-settings-panel__content textarea[disabled]{color:#9092b2}.gform-settings-panel__content p.search-box{align-items:center;-moz-column-gap:6px;column-gap:6px;display:flex;flex-wrap:wrap;position:relative}.gform-settings-panel__content input[type=search]#form-search-input{flex:1;height:2.3125rem;margin-inline-end:0}.gform-settings-panel__content input[type=search]#form-search-input:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content select#bulk_action{height:2.375rem;line-height:1.125rem;padding:.5rem 1.125rem}.gform-settings-panel__content input::-moz-placeholder,.gform-settings-panel__content input::-ms-input-placeholder,.gform-settings-panel__content input::placeholder,.gform-settings-panel__content textarea::-moz-placeholder,.gform-settings-panel__content textarea::-ms-input-placeholder,.gform-settings-panel__content textarea::placeholder{color:#9092b0}.gform-settings-panel__content input[type=number]{width:auto}.gform-settings-panel__content .select2-container :focus .select2-selection__rendered,.gform-settings-panel__content input[type=email]:focus,.gform-settings-panel__content input[type=number]:focus,.gform-settings-panel__content input[type=password]:focus,.gform-settings-panel__content input[type=tel]:focus,.gform-settings-panel__content input[type=text]:focus,.gform-settings-panel__content input[type=url]:focus,.gform-settings-panel__content select:focus,.gform-settings-panel__content textarea:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-field__toggleable-inputs{border-left:2px solid #ececf3;display:flex;flex-direction:row;flex-wrap:nowrap;margin-left:.625rem;margin-top:.3125rem;padding-left:1.4375rem}.gform-settings-field__toggleable-inputs .gform-settings-input__container{flex-grow:1;margin-right:.625rem}html[dir=rtl] .gform-settings-field__toggleable-inputs{border-left:none;border-right:2px solid #ececf3;margin-left:inherit;margin-right:.625rem;padding-left:inherit;padding-right:1.4375rem}.gform-settings-panel__content input[type=checkbox]:disabled,.gform-settings-panel__content input[type=radio]:disabled{opacity:.6;pointer-events:none}.gform-settings-panel__content input:disabled+label,.gform-settings-panel__content input:disabled+label::before{cursor:not-allowed;opacity:.6;pointer-events:none}.gform-settings-panel__content input[readonly]+label,.gform-settings-panel__content input[readonly]+label::before,.gform-settings-panel__content input[type=checkbox][readonly],.gform-settings-panel__content input[type=radio][readonly]{cursor:not-allowed;pointer-events:none}.gform-settings-panel__content input[type=checkbox]{background:#fff;border:1px solid #9092b2;border-radius:3px;height:1.375rem;margin:0 .75rem 0 0;transition:box-shadow .15s ease,background-color .15s ease;width:1.375rem}.gform-settings-panel__content input[type=checkbox]:focus,.gform-settings-panel__content input[type=checkbox]:hover{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content input[type=checkbox]::before{background-position:center;background-repeat:no-repeat;background-size:.75rem;content:"";display:block;height:100%;margin:0;width:100%}.gform-settings-panel__content input[type=checkbox]:hover::before{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMTIgMTAiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNCA2LjU4NTc5IDYuMjkyOS02LjI5Mjg5N2MuMzkwNS0uMzkwNTI0MSAxLjAyMzctLjM5MDUyNDEgMS40MTQyIDAgLjM5MDUuMzkwNTI1LjM5MDUgMS4wMjM2ODcgMCAxLjQxNDIxN2wtNy43MDcxIDcuNzA3MS0zLjcwNzEwNy0zLjcwNzFjLS4zOTA1MjQxLS4zOTA1My0uMzkwNTI0MS0xLjAyMzY5IDAtMS40MTQyMi4zOTA1MjUtLjM5MDUyIDEuMDIzNjg3LS4zOTA1MiAxLjQxNDIxNyAweiIgZmlsbD0iI0VDRURGOCIvPjwvc3ZnPg==)}.gform-settings-panel__content input[type=checkbox]:checked{background:#3e7da6;border-color:transparent}.gform-settings-panel__content input[type=checkbox]:checked::before{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMTIgMTAiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNCA2LjU4NTc5IDYuMjkyOS02LjI5Mjg5N2MuMzkwNS0uMzkwNTI0MSAxLjAyMzctLjM5MDUyNDEgMS40MTQyIDAgLjM5MDUuMzkwNTI1LjM5MDUgMS4wMjM2ODcgMCAxLjQxNDIxN2wtNy43MDcxIDcuNzA3MS0zLjcwNzEwNy0zLjcwNzFjLS4zOTA1MjQxLS4zOTA1My0uMzkwNTI0MS0xLjAyMzY5IDAtMS40MTQyMi4zOTA1MjUtLjM5MDUyIDEuMDIzNjg3LS4zOTA1MiAxLjQxNDIxNyAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}.gform-settings-panel__content input[type=checkbox]:focus{outline:0}.gform-settings-panel__content input[type=radio]{background:#fff;border:1px solid #9092b2;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.06);box-sizing:border-box;height:1.375rem;position:relative;transition:box-shadow .15s ease,background-color .15s ease;width:1.375rem}.gform-settings-panel__content input[type=radio]:focus,.gform-settings-panel__content input[type=radio]:hover{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content input[type=radio]::before{border-radius:50%;height:.5rem;left:50%;margin:-.25rem 0 0 -.25rem;position:absolute;top:50%;width:.5rem}.gform-settings-panel__content input[type=radio]:hover::before{background:#ecedf8;content:""}.gform-settings-panel__content input[type=radio]:checked::before{background:#3e7da6;content:""}.gform-settings-input__container{position:relative}.gform-settings-input__container--with-append,.gform-settings-input__container--with-merge-tag{display:flex}.gform-settings-input__container--with-append.gform-settings-input__container--invalid,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid{flex-wrap:wrap}.gform-settings-input__container--with-append.gform-settings-input__container--invalid textarea,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid textarea{flex:1}.gform-settings-input__container--with-append.gform-settings-input__container--invalid input,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid input{flex:1}.gform-settings-input__container--with-append .gform-settings-validation__error{flex-basis:100%}#gform_setting_limitEntriesNumber input[type=number],#gform_setting_limitEntriesNumber select{width:auto}.gform-settings__wrapper .button:disabled{opacity:.6}.gform-settings__wrapper .button{background:#fff;border:1px solid #3e7da6;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);font-size:.875rem;height:2.3125rem;line-height:.875rem;padding:.625rem 1.125rem}.gform-settings__wrapper .button:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013)}.gform-settings__wrapper .button.primary{backface-visibility:hidden;background:#3e7da6;border:1px solid transparent;border-radius:3px;color:#fff;font-family:inherit;font-size:.875rem;font-weight:500;height:auto;height:initial;line-height:1;margin-left:0;padding:.625rem 1.125rem;transition:transform .3s ease,box-shadow .3s ease,background-color .3s ease}.gform-settings__wrapper .button.primary:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.gforms_edit_form .button.primary.gform-add-new-form{border:1px solid transparent}.gforms_edit_form .button.primary.gform-add-new-form:focus{transform:translate(0,-2px)}.gforms_edit_form .button.primary.gform-add-new-form:active{transform:translate(0,-1px)}.gform-settings__wrapper .button.large{padding-bottom:.875rem;padding-top:.875rem}.gform-settings__wrapper .button.white,.gform-settings__wrapper .button.white:hover{background:#fff;border-color:#3e7da6;color:#3e7da6}.gform-settings-field{margin-bottom:.625rem}html:not([dir=rtl]) .gform-settings-field .gform-settings-input__container+.gform-settings-input__container{margin-left:.625rem}html[dir=rtl] .gform-settings-field .gform-settings-input__container+.gform-settings-input__container{margin-right:.625rem}.gform-settings-choice{margin-bottom:.5rem}.gform-settings-choice--inline{display:inline-block;margin-right:1.25rem}.gform-settings-choice--visual{display:flex;margin-bottom:1.25rem}.gform-settings-choice--visual input[type=checkbox],.gform-settings-choice--visual input[type=radio]{border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-settings-choice--visual input[type=checkbox]:focus+label::before,.gform-settings-choice--visual input[type=radio]:focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-settings-choice--visual label{background:#fff;border:1px solid #9092b2;border-radius:3px;box-sizing:border-box;display:block;padding:1.625rem 1.5rem 1.75rem;position:relative;text-align:center;width:8.75rem}.gform-settings-choice--visual label::before{background:0 0;border:1px solid #d5d7e9;border-radius:50%;content:"";height:1rem;position:absolute;right:.5rem;top:.5625rem;width:1rem}.gform-settings-choice--visual input:disabled+label,.gform-settings-choice--visual input:disabled+label::before{cursor:not-allowed;opacity:.6;pointer-events:none}.gform-settings-choice--visual input:checked+label::before{background-color:#22a753;color:#fff;content:"\e983";display:block;font-family:gform-icons-admin;font-size:1rem;position:absolute;right:.5rem;top:.5625rem}.gform-settings-choice--visual input:checked+label,.gform-settings-choice--visual label:hover{border:1px solid #d5d7e9;box-shadow:0 4px 6px rgba(28,31,63,.0837013)}.gform-settings-choice--visual .dashicons,.gform-settings-choice--visual .fa,.gform-settings-choice--visual .gform-icon,.gform-settings-choice--visual img,.gform-settings-choice--visual svg{display:block;margin-bottom:.875rem}.gform-settings-choice--visual .dashicons,.gform-settings-choice--visual .fa,.gform-settings-choice--visual .gform-icon{color:#f15a2b;font-size:2rem;height:auto;width:auto}.gform-settings-choice--visual img,.gform-settings-choice--visual svg{height:2rem;margin-left:auto;margin-right:auto;width:auto}.gform-settings-choices--visual .gform-settings-input__container{display:flex;flex-wrap:wrap}.gform-settings-choice--image-select input[type=checkbox],.gform-settings-choice--image-select input[type=radio]{display:none}.gform-settings-choice--image-select .gform-settings-choice-label{display:none}.gform-settings-choice--image-select label>span{display:block;position:relative}.gform-settings-choice--image-select input:checked+label>span::before{background-color:#22a753;border-radius:100%;color:#fff;content:"\e983";display:block;font-family:gform-icons-admin;font-size:1rem;height:17px;padding-left:1px;position:absolute;right:.5rem;top:.5625rem;width:16px}.gform-settings-panel--card{background:0 0;border:none;box-shadow:none}.gform-settings-panel--card .gform-settings-field__card{margin-bottom:0}.gform-settings-panel--card .gform-settings-panel__content{border-top:none;padding:0}.gform-settings-panel--card .gform-settings-choice{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);transition:all .2s ease}.gform-settings-panel--card .gform-settings-choice:hover{box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03)}.gform-settings-panel--card .gform-settings-choice--visual{display:block}.gform-settings-panel--card .gform-settings-choice--visual:last-child{margin-bottom:0}.gform-settings-panel--card .gform-settings-choices--visual{display:block}.gform-settings-panel--card .gform-settings-choices--visual input:checked+label,.gform-settings-panel--card .gform-settings-choices--visual label,.gform-settings-panel--card .gform-settings-choices--visual label:hover{border:none;border-bottom:1px solid #ecedf8;border-radius:3px 0 0 3px;box-shadow:none;padding-bottom:0;width:100%}.gform-settings-panel--card .gform-settings-choices--visual img,.gform-settings-panel--card .gform-settings-choices--visual svg{height:3.75rem}.gform-settings-panel--card .gform-settings-card-tag{align-items:center;display:flex;font-size:.625rem;font-weight:800;justify-content:center;margin-top:1.5rem;padding:.812rem;position:relative;text-align:center}.gform-settings-panel--card .gform-settings-card-tag::before{background:#ecedf8;content:"";display:block;height:1px;left:-1.5rem;position:absolute;right:-1.5rem;top:0}.gform-settings-panel--card .gform-settings-card-tag .gform-icon{color:inherit;display:inline;font-size:1.45rem;padding-right:.25rem;position:relative;top:.3rem}.gform-settings-panel--card .gform-settings-card--description{align-items:center;display:flex}.gform-settings-panel--card .gform-settings-card--description strong{font-size:.875rem;font-weight:500}.gform-settings-panel--card .gform-settings-card--description p{font-size:.8125rem;line-height:1.384615385rem;margin-bottom:.5625rem}@media (min-width:768px){.gform-settings-panel--card .gform-settings-choices--visual{display:flex}.gform-settings-panel--card .gform-settings-choices--visual input:checked+label,.gform-settings-panel--card .gform-settings-choices--visual label,.gform-settings-panel--card .gform-settings-choices--visual label:hover{border-bottom:none;border-right:1px solid #ecedf8;width:12.5rem}.gform-settings-panel--card .gform-settings-choice--visual{display:flex}.gform-settings-panel--card .gform-settings-card-tag::before{width:calc(100% + 3rem)}.gform-settings-panel--card .gform-settings-card--description{padding:1rem;width:calc(100% - 16rem)}}.gform-settings-field__select--enhanced select{display:none}.gform-settings-generic-map__table{border-spacing:0}.gform-settings-generic-map__column{padding-bottom:.875rem;text-align:left}.gform-settings-generic-map__column--heading{padding-bottom:.625rem}.gform-settings-generic-map__table td{padding-bottom:.875rem;padding-top:0}.gf_browser_gecko .gform-settings-generic-map__table td .gform-st-icon--circle-minus::after,.gf_browser_gecko .gform-settings-generic-map__table td .gform-st-icon--circle-plus::after{margin-left:-.03125rem}.gform-settings-generic-map__column--buttons{min-width:3rem}.gform-settings-generic-map__column--key{font-size:.875rem}.gform-settings-generic-map__column--key,.gform-settings-generic-map__column--value{padding-right:.6875rem}.gform-settings-panel__content .gform-settings-generic-map__value--invalid{border-color:#e54c3b}.gform-settings-generic-map__column input[type=text]{padding-right:2.25rem}.gform-settings-generic-map__button--add{margin-right:.4375rem}.gform-settings-generic-map__custom,.gform-settings-select-custom__custom{display:block;max-height:2.75rem;position:relative}.gform-settings-generic-map__reset,.gform-settings-select-custom__reset{background:transparent no-repeat center url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMjAxIDEuMjAxYS42ODguNjg4IDAgMDAwIC45NzNMNS41MjggNi41IDEuMiAxMC44MjZhLjY4Ny42ODcgMCAxMC45NzMuOTczTDYuNSA3LjQ3Mmw0LjMyNiA0LjMyN2EuNjg3LjY4NyAwIDEwLjk3My0uOTczTDcuNDcyIDYuNSAxMS44IDIuMTc0YS42ODcuNjg3IDAgMDAtLjk3My0uOTczTDYuNSA1LjUyOCAyLjE3NCAxLjJhLjY4OC42ODggMCAwMC0uOTczIDB6IiBmaWxsPSIjRDVEN0U5IiBzdHJva2U9IiNENUQ3RTkiIHN0cm9rZS13aWR0aD0iLjUiLz48L3N2Zz4=);background-size:.6875rem;border:none;cursor:pointer;height:1.125rem;position:absolute;right:.625rem;top:.84375rem;width:1.125rem;z-index:3}.gform-settings-input__container--with-merge-tag .gform-settings-generic-map__reset{right:3.625rem}.gform-settings-field__checkbox_and_select>.gform-settings-input__container{align-items:center;display:flex;justify-content:space-between}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-choice{margin-bottom:0}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-choice--inline{white-space:nowrap}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-input__target,.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-input__target .gform-settings-input__container{width:100%}.gform-settings-field__conditional-logic{padding:1rem 0}.form-table .gform-settings-field__conditional-logic{padding:0}.form-table .gform-settings-field__conditional-logic select{max-width:25%;min-width:25%}.form-table #gform-no-filters{color:#242748;line-height:1.5}.form-table #gform-field-filters .gform-field-filter{align-items:center;display:flex;padding:.5rem 0 0;text-align:left;width:100%}.form-table #gform-field-filters .gform-field-filter input[type=text]{height:2.75rem;padding:1.025rem 1em;width:25%}.form-table #gform-field-filters button{top:-.1rem}.gform-settings-field__conditional-logic .gf_conditional_logic_rules_container{align-items:center;display:flex;flex-direction:row}.gform-settings-field__conditional-logic input[type=text],.gform-settings-field__conditional-logic select,.gform-settings-simple-condition input[type=text],.gform-settings-simple-condition select{height:inherit;width:auto}.gform-settings-field__conditional-logic select,.gform-settings-simple-condition select{margin-right:.5rem}.gform-settings-field__conditional-logic #form_button_logic_type{margin-left:.5rem}.gform-settings-field__conditional-logic #feed_condition_logic_type{margin-left:.5rem}.gform-settings-field__conditional-logic .gf_conditional_logic_rules_container select:first-child{margin-left:0}.gform-settings-generic-map__button{background-color:#fff;background-position:center;background-repeat:no-repeat;background-size:49%;border:1px solid #d5d7e9;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.0796);cursor:pointer;height:1.25rem;margin:0 0 0 3px;padding:1px 7px;vertical-align:middle;width:1.25rem}.gform-settings-generic-map__button--add:last-child{margin:0 calc(1.25rem + 3px) 0 3px}.gform-settings-input__container--invalid .select2-container .select2-selection__rendered,.gform-settings-input__container--invalid input[type=checkbox],.gform-settings-input__container--invalid input[type=email],.gform-settings-input__container--invalid input[type=number],.gform-settings-input__container--invalid input[type=password],.gform-settings-input__container--invalid input[type=radio],.gform-settings-input__container--invalid input[type=text],.gform-settings-input__container--invalid input[type=url],.gform-settings-input__container--invalid select,.gform-settings-input__container--invalid textarea{border-color:#e54c3b}.gform-settings-input__container--invalid .mce-tinymce{border:1px solid #e54c3b}.gform-settings-input__container--invalid .gform-field__toggle-container{border:1px solid #e54c3b}.gform-settings-field__text-append{background:#f6f9fc;border:1px solid #9092b2;font-size:.875rem;line-height:2.625rem;padding-left:1.125rem;padding-right:1.125rem}.gform-settings-input__container--with-append input[type=text]:focus+.gform-settings-field__text-append{border-color:#3e7da6}html:not([dir=rtl]) .gform-settings-field__text-append{border-radius:0 3px 3px 0}html[dir=rtl] .gform-settings-field__text-append{border-radius:3px 0 0 3px}.gform-settings-field__date_time input[type=text],.gform-settings-field__date_time select{min-width:0;width:auto}.gform-settings-field__date_time .gform-settings-input__container,.gform-settings-field__text_and_select .gform-settings-input__container{display:inline-flex;flex-wrap:wrap;position:relative}.gform-settings-field__date_time input[type=text]{padding-right:2.9375rem}.gform-settings-field__date_time .ui-datepicker-trigger{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fdfdff;border:none;border-left:1px solid #d5d7e9;border-radius:0 3px 3px 0;cursor:pointer;height:2.625rem;position:absolute;right:1px;text-align:center;top:1px;width:2.875rem}.gform-settings-field__date_time button svg{vertical-align:middle}.gform-settings-field__date_time select{margin-left:3px;margin-right:3px}.gform-settings-field__dynamic_field_map .gform-settings-generic-map__table .gform-settings-generic-map__column--key,.gform-settings-field__dynamic_field_map .gform-settings-generic-map__table .gform-settings-generic-map__column--value{max-width:25rem;width:45%}.gform-settings-generic-map__column--key+.gform-settings-generic-map__column--value{padding-left:1rem;width:55%}.wp-editor-wrap textarea{border:none;max-width:100%}.wp-editor-tabs{margin-top:.5rem}.gform-settings-validation__error{color:#e54c3b;flex-basis:100%;font-size:.75rem;line-height:1.375rem;margin-top:.5625rem}.gform-settings-field__feedback{background-position:center;background-repeat:no-repeat;border-radius:50%;height:1.25rem;margin-top:-.625rem;position:absolute;right:.5rem;top:50%;width:1.25rem}#TB_window .alert.success::after,#gf-admin-notices-wrapper .notice-success::after,.alert.gforms_note_success::after,.gform-settings-field__feedback--valid,.gform-settings__wrapper .alert.success::after{background-color:#22a753;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjcwNyA0LjU0M0ExIDEgMCAwMC4yOTMgNS45NTdMNCA5Ljc1bDcuNzA3LTcuNzkzQTEgMSAwIDAwMTAuMjkzLjU0M0w0IDYuNzUgMS43MDcgNC41NDN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+)}.gform-settings-field__feedback--valid{background-size:.625rem}#TB_window .alert.error::after,.alert.gforms_note_error::after,.gform-settings-field__feedback--invalid,.gform-settings__wrapper .alert.error::after{background-color:#e54c3b;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS43MzcgMGEuMjI2LjIyNiAwIDAwLS4yMjUuMjM3TC45NSA5LjAwMWExLjA1MSAxLjA1MSAwIDAwMi4xIDBMMy40ODguMjM3QS4yMjYuMjI2IDAgMDAzLjI2MyAwSC43Mzd6TTMuNSAxMi41YTEuNSAxLjUgMCAxMS0zIDAgMS41IDEuNSAwIDAxMyAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#TB_window .alert,#gf-admin-notices-wrapper .gf-notice,.gform-settings__wrapper .alert{background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);font-size:.8125rem;font-weight:500;line-height:1.125rem;margin:0 0 1.375rem;padding:1.25rem 3rem 1.25rem 4.375rem;position:relative}.rtl #TB_window .alert,.rtl #gf-admin-notices-wrapper .gf-notice,.rtl .gform-settings__wrapper .alert{padding:1.25rem 4.375rem 1.25rem 3rem}#gf-admin-notices-wrapper .gf-notice p:first-child,.gform-settings__wrapper .alert p:first-child{margin:auto}#TB_window .alert::after,#TB_window .alert::before,#gf-admin-notices-wrapper .gf-notice::after,#gf-admin-notices-wrapper .gf-notice::before,.gform-settings__wrapper .alert::after,.gform-settings__wrapper .alert::before{border-radius:50%;content:"";position:absolute;top:50%}#TB_window .alert::before,#gf-admin-notices-wrapper .gf-notice::before,.gform-settings__wrapper .alert::before{height:3rem;left:.5rem;margin-top:-1.5rem;width:3rem}#TB_window .alert::after,#gf-admin-notices-wrapper .gf-notice::after,.gform-settings__wrapper .alert::after{background-position:center;background-repeat:no-repeat;height:1.625rem;left:1.1875rem;margin-top:-.8125rem;width:1.625rem}.rtl #TB_window .alert::before,.rtl #gf-admin-notices-wrapper .gf-notice::before,.rtl .gform-settings__wrapper .alert::before{left:auto;right:.5rem}.rtl #TB_window .alert::after,.rtl #gf-admin-notices-wrapper .gf-notice::after,.rtl .gform-settings__wrapper .alert::after{left:auto;right:1.1875rem}#TB_window .alert.info,#gf-admin-notices-wrapper .notice-info,.alert.gforms_note_info,.gform-settings__wrapper .alert.info{color:#6b6bf4}#TB_window .alert.info::before,#gf-admin-notices-wrapper .notice-info::before,.alert.gforms_note_info::before,.gform-settings__wrapper .alert.info::before{background-color:rgba(107,107,244,.2)}#TB_window .alert.info::after,#gf-admin-notices-wrapper .notice-info::after,.alert.gforms_note_info::after,.gform-settings__wrapper .alert.info::after{background-color:#6b6bf4;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEuNjk0LjQ1QzEuMDE0Ljc1LjQ1IDEuMTczIDAgMS43MThsMS42NSAxLjQ0NmMuMjQ1LS4zNC41NTctLjYwNi45MzYtLjguMzgtLjE5NC43NjMtLjI5MSAxLjE0OS0uMjkxLjUyNyAwIC45NTUuMTQ0IDEuMjgzLjQzMi4zMjguMjg3LjQ5Mi42ODkuNDkyIDEuMjA0IDAgLjQyNC0uMTA4LjgwOC0uMzIzIDEuMTUtLjIxNi4zNDMtLjUzLjcyLS45NCAxLjEzMi0uMDQuMDM2LS4xMzEuMTI2LS4yNzYuMjY4LS4xNDUuMTQzLS4yNC4yMzYtLjI4NS4yODItLjA0NS4wNDUtLjEyOC4xMzUtLjI1LjI2OGEzLjUwNSAzLjUwNSAwIDAwLS4yNTEuMjk2Yy0uMDQ1LjA2My0uMTE1LjE1Ny0uMjA4LjI4MWExLjQ5IDEuNDkgMCAwMC0uMTkzLjMxOWwtLjEyNS4zMTNjLS4wNDkuMTIxLS4wOC4yNDEtLjA5Ny4zNmEyLjczIDIuNzMgMCAwMC0uMDI0LjM2N2wuMDEuOTM3aDEuOTU5bC4wNDgtLjgxOGEuOTk1Ljk5NSAwIDAxLjEwNi0uMzk2Yy4wNjQtLjEzLjE2Mi0uMjY4LjI5NC0uNDEzLjEzMi0uMTQ2LjI1My0uMjcuMzYyLS4zNzMuMTEtLjEwMy4yNjctLjI0NC40NzMtLjQyMy4yMDYtLjE3OS4zNjQtLjMxNy40NzMtLjQxNC4yNS0uMjMuNDY4LS40NDguNjUxLS42NTQuMTg0LS4yMDYuMzY0LS40NDQuNTQtLjcxNGEzLjI4IDMuMjggMCAwMC40MDYtLjg4MmMuMDkzLS4zMTguMTQtLjY1My4xNC0xLjAwNCAwLS41ODItLjExMy0xLjEwNS0uMzM4LTEuNTY4QTMuMDY5IDMuMDY5IDAgMDA2Ljc0NS44OSA0LjI3MiA0LjI3MiAwIDAwNS40NDMuMjI3IDUuMDYgNS4wNiAwIDAwMy45MTggMGE1LjQ0IDUuNDQgMCAwMC0yLjIyNC40NXptLjgyIDExLjE4NmMtLjI5My4yNzMtLjQ0LjYtLjQ0Ljk4MnMuMTQ3LjcwOC40NC45NzdjLjI5My4yNy42NDguNDA1IDEuMDY2LjQwNS40MDYgMCAuNzU1LS4xMzUgMS4wNDctLjQwNS4yOTMtLjI3LjQ0LS41OTUuNDQtLjk3N3MtLjE0Ny0uNzA5LS40NC0uOTgyYTEuNDgzIDEuNDgzIDAgMDAtMS4wNDctLjQwOWMtLjQxOCAwLS43NzMuMTM3LTEuMDY2LjQxeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#TB_window .alert.warning,#gf-admin-notices-wrapper .notice-warning,#gf-wordpress-notices,.alert.gforms_note_warning,.gform-settings__wrapper .alert.warning{color:#a16938}#TB_window .alert.warning::before,#gf-admin-notices-wrapper .notice-warning::before,#gf-wordpress-notices::before,.alert.gforms_note_warning::before,.gform-settings__wrapper .alert.warning::before{background-color:rgba(255,190,3,.2)}#TB_window .alert.warning::after,#gf-admin-notices-wrapper .notice-warning::after,.alert.gforms_note_warning::after,.gform-settings__wrapper .alert.warning::after{background-color:#ffbe03;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjI1NyAxLjA5OWMuNzY1LTEuMzYgMi43MjItMS4zNiAzLjQ4NiAwbDUuNTggOS45MmMuNzUgMS4zMzQtLjIxMyAyLjk4LTEuNzQyIDIuOThIMi40MmMtMS41MyAwLTIuNDkzLTEuNjQ2LTEuNzQzLTIuOThsNS41OC05Ljkyek05IDExYTEgMSAwIDExLTIgMCAxIDEgMCAwMTIgMHpNOCAzYTEgMSAwIDAwLTEgMXYzYTEgMSAwIDAwMiAwVjRhMSAxIDAgMDAtMS0xeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#gf-wordpress-notices::after{background-color:#ffbe03;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGl0bGU+QmVsbDwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgY2xhc3M9Im5jLWljb24td3JhcHBlciI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEzIDE4LjVhMSAxIDAgMSAxLTIgMFYxOGgydi41em0tMi0xM2ExIDEgMCAxIDEgMiAwdjFoLTJ2LTF6Ii8+PG1hc2sgaWQ9ImhvaHZHeGEiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEyIDUuNWE0LjM3NSA0LjM3NSAwIDAgMC00LjM3NSA0LjM3NXYzLjU0MmwtLjc1NS41MDNhMS45NTQgMS45NTQgMCAwIDAgMS4wODQgMy41OGg4LjA5MmExLjk1NCAxLjk1NCAwIDAgMCAxLjA4NC0zLjU4bC0uNzU1LS41MDNWOS44NzVBNC4zNzUgNC4zNzUgMCAwIDAgMTIgNS41eiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9tYXNrPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik03LjYyNSAxMy40MTdsLjgzMiAxLjI0OC42NjgtLjQ0NnYtLjgwMmgtMS41em0tLjc1NS41MDNsLS44MzItMS4yNDguODMyIDEuMjQ4em0xMC4yNiAwbC0uODMyIDEuMjQ4LjgzMi0xLjI0OHptLS43NTUtLjUwM2gtMS41di44MDJsLjY2OC40NDYuODMyLTEuMjQ4em0tNy4yNS0zLjU0MkEyLjg3NSAyLjg3NSAwIDAgMSAxMiA3VjRhNS44NzUgNS44NzUgMCAwIDAtNS44NzUgNS44NzVoM3ptMCAzLjU0MlY5Ljg3NWgtM3YzLjU0Mmgzem0tMS40MjMgMS43NWwuNzU1LS41MDItMS42NjQtMi40OTYtLjc1NS41MDMgMS42NjQgMi40OTZ6bS0uMjAyLjM3OWMwLS4xNTIuMDc2LS4yOTQuMjAyLS4zNzhsLTEuNjY0LTIuNDk2QTMuNDU0IDMuNDU0IDAgMCAwIDQuNSAxNS41NDZoM3ptLjQ1NC40NTRhLjQ1NC40NTQgMCAwIDEtLjQ1NC0uNDU0aC0zQTMuNDU0IDMuNDU0IDAgMCAwIDcuOTU0IDE5di0zem04LjA5MiAwSDcuOTU0djNoOC4wOTJ2LTN6bS40NTQtLjQ1NGMwIC4yNS0uMjAzLjQ1NC0uNDU0LjQ1NHYzYTMuNDU0IDMuNDU0IDAgMCAwIDMuNDU0LTMuNDU0aC0zem0tLjIwMi0uMzc4YS40NTQuNDU0IDAgMCAxIC4yMDIuMzc4aDNhMy40NTQgMy40NTQgMCAwIDAtMS41MzgtMi44NzRsLTEuNjY0IDIuNDk2em0tLjc1NS0uNTAzbC43NTUuNTAzIDEuNjY0LTIuNDk2LS43NTUtLjUwMy0xLjY2NCAyLjQ5NnptLS42NjgtNC43OXYzLjU0MmgzVjkuODc1aC0zek0xMiA3YTIuODc1IDIuODc1IDAgMCAxIDIuODc1IDIuODc1aDNBNS44NzUgNS44NzUgMCAwIDAgMTIgNHYzeiIgbWFzaz0idXJsKCNob2h2R3hhKSIvPjwvZz48L3N2Zz4=)}#TB_window .alert.success,#gf-admin-notices-wrapper .notice-success,.alert.gforms_note_success,.gform-settings__wrapper .alert.success{color:#276a52}#TB_window .alert.success::before,#gf-admin-notices-wrapper .notice-success::before,.alert.gforms_note_success::before,.gform-settings__wrapper .alert.success::before{background-color:rgba(34,167,83,.2)}#TB_window .alert.error,#gf-admin-notices-wrapper .notice-error,.alert.gforms_note_error,.gform-settings__wrapper .alert.error{color:#e54c3b}#TB_window .alert.error::before,#gf-admin-notices-wrapper .notice-error::before,.alert.gforms_note_error::before,.gform-settings__wrapper .alert.error::before{background-color:rgba(229,76,59,.2)}#TB_window .alert.error::after,#gf-admin-notices-wrapper .notice-error::after,.alert.gforms_note_error::after,.gform-settings__wrapper .alert.error::after{background-color:#e54c3b;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPmV4Y2xhbWF0aW9uPC90aXRsZT48ZyBmaWxsPSJub25lIiBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS43MzcgMGEuMjI2LjIyNiAwIDAgMC0uMjI1LjIzN0wuOTUgOS4wMDFhMS4wNTEgMS4wNTEgMCAwIDAgMi4xIDBMMy40ODguMjM3QS4yMjYuMjI2IDAgMCAwIDMuMjYzIDBILjczN3pNMy41IDEyLjVhMS41IDEuNSAwIDEgMS0zIDAgMS41IDEuNSAwIDAgMSAzIDB6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.gform-settings-input__container+.alert{margin-top:1rem}#gf-admin-notices-wrapper{margin:0 auto;max-width:69.5rem;padding:1.375rem 1.5rem 0}#gf-admin-notices-wrapper .gf-notice{margin-bottom:0}#gf-admin-notices-wrapper .gf-notice~.gf-notice{margin-top:1.375rem}.gform-admin #gform_notification_to_routing_rules{border-left:2px solid #ececf2;margin:.75rem 0 0 .5rem;padding:0 0 0 .8125rem}.gform-admin #gform_notification_to_routing_rules div{align-items:center;display:flex;margin-bottom:.625rem;padding-right:3.125rem;position:relative;width:calc(99% - 3.125rem)}.gform-admin #gform_notification_to_routing_rules input[type=text],.gform-admin #gform_notification_to_routing_rules select{flex:1 0 20%;margin-left:.3125rem;margin-right:.3125rem;width:100%}.gform-admin #gform_notification_to_routing_rules input[type=text]{flex-grow:1;font-size:.8125rem}.gform-admin .gform-settings-field__notification-routing-button{position:absolute}.gform-admin .gform-settings-field__notification-routing-button--add{right:24px}.gform-admin .gform-settings-field__notification-routing-button--delete{right:0}.gform-admin .gform-settings-field__notification-routing-button svg{display:block;margin:0 auto;vertical-align:middle}.gform-admin .gform-settings-field__notification-routing-route--invalid input[type=text].gfield_routing_email{border-color:#dd301d}.gform-admin .gform-settings-field__notification_routing .gform-settings-validation__error{padding-left:1.4375rem}.gform-settings-panel__content .tablenav{align-content:space-between;display:flex;margin-bottom:.75rem}.gform-settings-panel__content .tablenav .alignleft,.gform-settings-panel__content .tablenav .alignright{float:none;width:50%}.gform-settings-panel__content .tablenav .alignright{text-align:right}.gform-settings-panel__content .tablenav .alignright:first-child{width:100%}.gform-settings-panel__content .wp-list-table thead td,.gform-settings-panel__content .wp-list-table thead th{border-bottom-color:#d5d7e9}.gform-settings-panel__content .wp-list-table tfoot td,.gform-settings-panel__content .wp-list-table tfoot th{border-top-color:#d5d7e9}.gform-settings-panel__content .wp-list-table tbody td,.gform-settings-panel__content .wp-list-table tbody th,.gform-settings-panel__content .wp-list-table tfoot td,.gform-settings-panel__content .wp-list-table tfoot th,.gform-settings-panel__content .wp-list-table thead td,.gform-settings-panel__content .wp-list-table thead th{color:#242748}.gform-settings-panel__content .wp-list-table>tbody>tr:not(:last-child){border-bottom:1px solid #d5d7e9}.gform-settings-panel__content .wp-list-table .alternate,.gform-settings-panel__content .wp-list-table.striped>tbody>:nth-child(odd){background:#f6f9fc}.gform-settings-panel__content .tablenav select{line-height:1.1875rem;padding-bottom:.5rem;padding-top:.5rem}.gform-settings-panel__content .wp-list-table input[type=checkbox]{height:1rem;width:1rem}.gform-table.gform-table--license-ui .gform-icon--cog{font-size:1.125rem}.gform-results{display:flex;justify-content:space-between;margin-bottom:1.25rem}.gform-result-box{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);box-sizing:border-box;flex:1 1 auto;max-width:15.625rem}.wide .gform-result-box{max-width:12.5rem}.gform-result-box__primary{min-height:3.0625rem;padding:1.5rem 1rem 1.8125rem 1rem}.gform-result-box__secondary{background:#f6f9fc;border-radius:0 0 3px 3px;color:#f15a2b;font-size:.8125rem;font-style:normal;font-weight:600;justify-content:space-between;line-height:165%;padding:.5625rem 1rem .875rem 1.5625rem}.gform-result-box__primary,.gform-result-box__secondary{display:flex}.box-icon{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);display:flex;height:2.875rem;justify-content:center;width:2.93875rem}.box-data{padding-left:1.123785rem}.box-label{color:#696c8c;font-size:.875rem;line-height:1rem}.box-number{color:#242748;font-size:1.3125rem;font-weight:600;letter-spacing:.484615px;line-height:1.8125rem}.sales{border-collapse:separate;border-spacing:0}.sales td,.sales th{padding:0}.sales td:first-child,.sales th:first-child{padding-left:1.375rem}.sales td{height:3.5625rem}.sales th{font-weight:400;height:2.375rem;text-align:left}.sales tbody>:nth-child(odd){background:#f6f9fc}.sales thead th{border-bottom:1px solid #ebebf2}.sales tfoot th{border-top:1px solid #ebebf2}#gresults-results-filter-content .gform-settings-field__date_time .gform-settings-input__container,#gresults-results-filter-content .gform-settings-field__text_and_select .gform-settings-input__container{display:block;margin:0}#gresults-results-filter-date-end,#gresults-results-filter-date-start{width:100%}.gform-settings-input__container .ui-datepicker-trigger svg{transition:fill .3s ease}.gform-settings-input__container .ui-datepicker-trigger:hover svg{fill:#5b5e80}.gform-settings-field__date_time .gform-settings-input__container .ui-datepicker-trigger:focus{box-shadow:none;outline:0}.gform-settings-input__separator{line-height:3em}#gresults-results-filter-form .gform-settings-field__conditional-logic{padding:0}#gresults-results-filter-form .gform-settings-field__conditional-logic #gform-field-filters{overflow:visible}#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter .gform-filter-value,#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter input,#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter select{height:auto;line-height:1.25rem;margin-bottom:.25rem;min-height:unset;min-width:unset;padding:.6875rem 2rem .6875rem 1rem;width:100%}#gresults-results-filter-buttons{background:#f6f9fc;border-bottom-left-radius:6px;border-bottom-right-radius:6px;clear:both;margin-bottom:-.625rem;margin-left:-.625rem;margin-top:1.25rem;padding:.625rem;width:100%}#gresults-results-filter-clear-button,#gresults-results-filter-submit-button{font-size:.875rem;height:2.1875rem;line-height:1.125rem;margin-right:.5rem;padding:.5rem 1.125rem .5rem 1.125rem;width:7.5rem}#gresults-results-filter-clear-button{width:4.625rem}html[dir=rtl] .box-data{padding-left:0;padding-right:1.123785rem}html[dir=rtl] .sales th{text-align:right}html[dir=rtl] .sales td:first-child,html[dir=rtl] .sales th:first-child{padding-left:0;padding-right:1.375rem}.gform-admin .gform-settings-field__post_select .gform-dropdown__control{border:1px solid #9092b2;box-shadow:none;color:#242748;height:2.75rem}#gravity_addon_browser{margin:0 2rem} \ No newline at end of file +.gform-settings__content table.gform_system_report,.gform-settings__content table.plugins{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);overflow:hidden;width:100%}.gform-settings__content table.gform_system_report>thead,.gform-settings__content table.plugins>thead{font-weight:700;margin:0}.gform-settings__content table.gform_system_report>thead>tr,.gform-settings__content table.plugins>thead>tr{font-size:.875rem;line-height:3.285714286rem;min-height:2rem;padding-left:1.071428571rem;padding-right:.857142857rem;position:relative}.gform-settings__content table.gform_system_report td,.gform-settings__content table.gform_system_report th,.gform-settings__content table.plugins td,.gform-settings__content table.plugins th{padding:0 1rem;text-align:left}.rtl .gform-settings__content table.gform_system_report td,.rtl .gform-settings__content table.gform_system_report th,.rtl .gform-settings__content table.plugins td,.rtl .gform-settings__content table.plugins th{direction:ltr!important}.gform-settings__content table.gform_system_report td.plugin-title,.gform-settings__content table.plugins td.plugin-title{vertical-align:top;white-space:normal}.gform-settings__content table.gform_system_report>tbody>tr:nth-child(odd),.gform-settings__content table.plugins>tbody>tr:nth-child(odd){background:#f6f9fc}.gform-settings__content table.gform_system_report td,.gform-settings__content table.gform_system_report th{height:2.5rem}.gform-settings__content table.plugins>thead>tr{background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial}.gform-settings__content table.plugins>thead>tr>#description,.gform-settings__content table.plugins>thead>tr>#name{font-weight:400}.gform-settings__content table.plugins #updates{box-shadow:0 1px #ebebf2}.gform-settings__content table.plugins .inactive td{box-shadow:none}.gform-system-report__text{display:none}.gform-system-report__copy-button{margin-top:20px}.gform-system-report__copy-button .gform-button__icon{opacity:1;transition:var(--tr-hover)}.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-button__icon,.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-label{opacity:0}.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-copied,.gform-system-report__copy-button.gform-system-report__copy-button-copied .gform-system-report__copy-icon{opacity:1}.gform-system-report__copy-icon{color:#22a753;font-size:1.5rem;margin-right:6px}.gform-system-report__copy-label{opacity:1;transition:all .15s ease}.gform-system-report__copy-copied{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;left:0;opacity:0;position:absolute;text-align:center;width:100%}body{background:#f6f9fc;color:#242748;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpcontent{padding-left:0}html[dir=rtl] #wpcontent{padding-right:0}#wpbody-content{width:100%}#wpfooter{display:none}.wrap{color:#242748;margin:0}.gform-settings__wrapper{display:grid;grid-column-gap:0.875rem;grid-template-columns:12.875rem auto;margin-left:auto;margin-right:auto;max-width:69.5rem;padding:1.5rem}.gform-settings__wrapper--full{grid-template-columns:auto}.gform_form_settings_wrap--full-width #gf-admin-notices-wrapper,.gform_form_settings_wrap--full-width .gform-settings__wrapper{margin:0 1.25rem 0;max-width:100%;padding-left:0;padding-right:0}.gform-settings__wrapper>.alert,.gform-settings__wrapper>.notice{grid-column:span 2;margin:0 0 .875rem}#gform-webapi-edit{display:flex;flex-flow:column;flex-wrap:wrap;padding:0}.gform-settings-header{background:#3e7da6;box-shadow:1px 1px 3px rgba(0,0,0,.0272345)}.gform-settings-header .gform-settings__wrapper{align-items:center;background:url(../../../images/gravity-rocket.svg?2) no-repeat 252px bottom;background-size:164px;display:flex;flex-wrap:wrap;justify-content:space-between;padding-bottom:1.375rem;padding-top:1.375rem;transition:padding .3s ease}.gform-settings-header .button{margin-left:.5rem}.gform-settings-header .button.primary{padding-left:2.0625rem;padding-right:2.0625rem}.gforms_form_settings_wrap #gform-form-toolbar__menu>li>a .fa,.gforms_form_settings_wrap #gform-form-toolbar__menu>li>a svg{display:none}.gform-form-toolbar{border-bottom:0;box-shadow:rgba(58,58,87,.082) 0 1px 4px,rgba(44,44,64,.063) 0 1px 0}.gform-settings__navigation a{border:1px solid transparent;border-radius:3px;color:#5b5e80;display:block;font-size:.875rem;font-weight:400;line-height:normal;margin:0;padding:.6875rem .5rem .6875rem 1rem;text-decoration:none}.gform-settings__navigation .active,.gform-settings__navigation a:focus,.gform-settings__navigation a:hover{color:#242748}.gform-settings__navigation .active,.gform-settings__navigation a:focus{background:#fff;font-weight:500}.gform-settings__navigation .active{border:1px solid #e3e6ef;box-shadow:0 1px 4px rgba(18,25,97,.0779552);margin-top:.125rem}.gform-settings__navigation a:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings__navigation span{vertical-align:middle}.gform-settings__navigation .icon{align-items:center;color:#242748;display:inline-flex;font-size:1.5rem;height:1.25rem;justify-content:center;margin-right:.75rem;width:1.25rem}.gform-settings__navigation img,.gform-settings__navigation svg{height:auto;max-width:1.25rem}.gform-settings__navigation .dashicons,.gform-settings__navigation .fa{color:#242748}.gform-settings-tabs__container,.gform_settings_form{display:grid;grid-column-gap:0.875rem;grid-row-gap:0.875rem;grid-template-columns:1fr 1fr}.gform-settings__wrapper--full .gform-settings-tabs__container,.gform-settings__wrapper--full .gform_settings_form{grid-column:span 2}.gform-settings-tabs__navigation{background:#fff;border-radius:3px;box-shadow:0 1px 5px rgba(0,0,0,.13);grid-column:span 2}.gform-settings-tabs__navigation a{border-bottom:3px solid transparent;color:#242748;display:inline-block;font-size:.8125rem;line-height:2.8125rem;padding-left:1.25rem;padding-right:1.25rem;text-decoration:none}.gform-settings-tabs__navigation a:focus{outline:0}.gform-settings-tabs__navigation a.active{border-bottom-color:#3e7da6;font-weight:700}.gform-settings-tabs__container{grid-column:span 2}.gform-settings-tabs__container:not(.active){display:none}.gform-settings-panel{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);box-sizing:border-box;display:flex;flex-direction:column;grid-column:span 2;position:relative}.gform-settings-panel--with-title{padding-top:2.875rem}.gform-settings-panel--half{grid-column:span 1}.gform-settings-save-container{grid-column:span 2;margin-top:1.125rem}.gform-settings-panel__header{align-items:center;display:flex;font-size:.875rem;justify-content:space-around;line-height:2.875rem;padding-left:1.0625rem;padding-right:.875rem;position:relative}.gform-settings-panel__title{flex-grow:1;font-weight:500;margin:0}.gform-settings-panel__title--header{box-sizing:border-box;display:block;font-size:.875rem;line-height:2.875rem;padding-left:1.0625rem;position:absolute;top:0;width:100%}html[dir=rtl] .gform-settings-panel__title--header{padding-left:inherit;padding-right:1.0625rem}.gform-settings-panel__title--header+.gform-settings-panel__collapsible-control{position:absolute;right:.875rem;top:1rem}html[dir=rtl] .gform-settings-panel__title--header+.gform-settings-panel__collapsible-control{left:.875rem;right:inherit}.gform-settings-panel .gform-settings-panel__content{border-top:1px solid #ebebf2;padding:1rem 1rem 1.25rem}.gform-settings-panel.gform-settings-panel--no-padding .gform-settings-panel__content{padding:0}.gform-settings-panel--license-details .gform-settings-field{margin:0}.gform-settings-panel__collapsible-control input{opacity:0;position:absolute;z-index:3}.gform-settings-panel__collapsible-control input:focus+label{border:2px solid #3e7da6}.gform-settings-panel__collapsible-toggle{background:center no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMy4xNTkgNi42OWw0LjEwOSA0LjI5MmMuMzczLjM5MS4zNzMgMS4wMjQgMCAxLjQxNWEuOTI4LjkyOCAwIDAxLTEuMzU0IDBMLjQ1MiA2LjY5IDUuOTE0Ljk4MmEuOTI4LjkyOCAwIDAxMS4zNTQgMGMuMzczLjM5MS4zNzMgMS4wMjQgMCAxLjQxNUwzLjE1OSA2LjY5eiIgZmlsbD0iI0Q1RDdFOSIvPjwvc3ZnPg==);border:none;display:block;height:12px;width:12px}.gform-settings-panel:not(.gform-settings-panel--collapsed) .gform-settings-panel__collapsible-toggle{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiA0LjUzTDEwLjI5My40MjNhMS4wMzIgMS4wMzIgMCAwMTEuNDE0IDBjLjM5LjM3NC4zOS45OCAwIDEuMzUzTDYgNy4yMzguMjkzIDEuNzc1YS45MjguOTI4IDAgMDEwLTEuMzUzIDEuMDMyIDEuMDMyIDAgMDExLjQxNCAwTDYgNC41M3oiIGZpbGw9IiNENUQ3RTkiLz48L3N2Zz4=)}.gform-settings-panel--collapsed .gform-settings-panel__content{display:none}.gform-settings-panel__uninstall{margin-top:.875rem}.gform-addons-uninstall-panel{display:grid;grid-column-gap:0.875rem;grid-row-gap:0.875rem;grid-template-columns:1fr 1fr;margin:1.125rem 0}.gform-settings-panel__addon-uninstall{grid-column:span 1}.gform-settings-panel__addon-uninstall .gform-settings-panel__content{display:grid;grid-template-columns:1fr 2fr 1fr}.addon-uninstall-text .gform-settings-panel__title{font-weight:600;margin-bottom:.3125rem}div.addon-logo.dashicons{border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);float:left;height:3.875rem;margin-right:1rem;position:relative;width:3.875rem}.addon-logo.dashicons i,.addon-logo.dashicons svg{height:1.5625rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:1.5625rem}.addon-logo.dashicons i::before{font-size:1.56rem}.addon-uninstall-text{max-width:95%}.gform-settings__wrapper .button.uninstall-addon{background:#fff3f1;border:none;border-radius:3px;box-shadow:none;color:#e54c3b;position:relative;top:50%;transform:translateY(-50%);transition:all .3s ease}.gform-settings__wrapper .button.addon-settings{border-radius:3px;position:relative;top:50%;transform:translateY(-50%);transition:all .3s ease}.gform-settings__wrapper .button.uninstall-addon:hover{background:#f8e7e4;border:0;border-radius:3px;box-shadow:0 4px 6px rgba(28,31,63,.0837013);height:2.1875rem;line-height:14px;padding:.625rem 1.125rem;transform:translateY(-57%)}.gform-settings__wrapper .button.addon-settings:hover{transform:translateY(-57%)}.gform-settings__wrapper .button.addon-settings i.dashicons.dashicons-admin-generic,.gform-settings__wrapper .button.uninstall-addon i.dashicons.dashicons-trash{font-size:.9rem}.gform-settings-description{display:block;font-size:.8125rem;line-height:1.384615385rem;margin-bottom:.5625rem}.gform-settings__wrapper .gform-settings-description .alert{margin-top:1.230769231rem}.gform-settings-description p:first-child{margin-top:0}.gform-settings-nested-fields{border-left:2px solid #ececf2;margin:.75rem 0 0 .625rem;padding-left:1.375rem}.gform-settings-nested-fields .gform-settings-label{font-weight:400}.gform-settings-field__header{margin-bottom:.625rem}.gform-settings-field--with-merge-tag .gform-settings-field__header{margin-right:2rem}html[dir=rtl] .gform-settings-field--with-merge-tag .gform-settings-field__header{margin-left:2rem;margin-right:0}.gform-settings-label{color:#23282d;font-size:.8125rem;font-weight:500}.gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),.gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-position:98% 50%;background-repeat:no-repeat;background-size:1.25rem;padding-right:3.25rem}.gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+c3VjY2VzczwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgY2xhc3M9Im5jLWljb24td3JhcHBlciI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMyAyNmM3LjE4IDAgMTMtNS44MiAxMy0xM1MyMC4xOCAwIDEzIDAgMCA1LjgyIDAgMTNzNS44MiAxMyAxMyAxM3oiIGZpbGw9IiMyMkE3NTMiLz48cGF0aCBkPSJNMTEgMTQuNTg2bDYuMjkzLTYuMjkzYTEgMSAwIDEgMSAxLjQxNCAxLjQxNEwxMSAxNy40MTRsLTMuNzA3LTMuNzA3YTEgMSAwIDEgMSAxLjQxNC0xLjQxNEwxMSAxNC41ODZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+RXJyb3I8L3RpdGxlPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMgMjZjNy4xOCAwIDEzLTUuODIgMTMtMTNTMjAuMTggMCAxMyAwIDAgNS44MiAwIDEzczUuODIgMTMgMTMgMTN6IiBmaWxsPSIjQ0IyNDMxIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04LjE4MyA4LjE4M2EuNjI1LjYyNSAwIDAgMCAwIC44ODRMMTIuMTE2IDEzbC0zLjkzMyAzLjkzM2EuNjI1LjYyNSAwIDEgMCAuODg0Ljg4NEwxMyAxMy44ODRsMy45MzMgMy45MzNhLjYyNS42MjUgMCAxIDAgLjg4NC0uODg0TDEzLjg4NCAxM2wzLjkzMy0zLjkzM2EuNjI1LjYyNSAwIDEgMC0uODg0LS44ODRMMTMgMTIuMTE2IDkuMDY3IDguMTgzYS42MjUuNjI1IDAgMCAwLS44ODQgMHoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC4xODMgOS4wNjdsLS4zNTMuMzU0LjM1My0uMzU0em0wLS44ODRMNy44MyA3LjgzbC4zNTMuMzUzek0xMi4xMTYgMTNsLjM1NC4zNTQuMzUzLS4zNTQtLjM1My0uMzU0LS4zNTQuMzU0em0tMy45MzMgMy45MzNsLS4zNTMtLjM1NC4zNTMuMzU0em0wIC44ODRsLS4zNTMuMzU0LjM1My0uMzU0ek0xMyAxMy44ODRsLjM1NC0uMzU0LS4zNTQtLjM1My0uMzU0LjM1My4zNTQuMzU0em0zLjkzMyAzLjkzM2wuMzU0LS4zNTQtLjM1NC4zNTR6bS44ODQtLjg4NGwtLjM1NC4zNTQuMzU0LS4zNTR6TTEzLjg4NCAxM2wtLjM1NC0uMzU0LS4zNTMuMzU0LjM1My4zNTQuMzU0LS4zNTR6bTMuOTMzLTQuODE3bC4zNTQtLjM1My0uMzU0LjM1M3ptLS44ODQgMGwtLjM1NC0uMzUzLjM1NC4zNTN6TTEzIDEyLjExNmwtLjM1NC4zNTQuMzU0LjM1My4zNTQtLjM1My0uMzU0LS4zNTR6TTkuMDY3IDguMTgzbC4zNTQtLjM1My0uMzU0LjM1M3ptLS41My41M2EuMTI1LjEyNSAwIDAgMSAwLS4xNzZsLS43MDgtLjcwOGMtLjQzOS40NC0uNDM5IDEuMTUyIDAgMS41OTJsLjcwOC0uNzA4em0zLjkzMyAzLjkzM0w4LjUzNyA4LjcxM2wtLjcwOC43MDggMy45MzQgMy45MzMuNzA3LS43MDh6bS0zLjkzMyA0LjY0bDMuOTMzLTMuOTMyLS43MDctLjcwOEw3LjgzIDE2LjU4bC43MDcuNzA4em0wIC4xNzdhLjEyNS4xMjUgMCAwIDEgMC0uMTc2bC0uNzA4LS43MDdjLS40MzkuNDM5LS40MzkgMS4xNTEgMCAxLjU5bC43MDgtLjcwN3ptLjE3NiAwYS4xMjUuMTI1IDAgMCAxLS4xNzYgMGwtLjcwOC43MDdjLjQ0LjQ0IDEuMTUyLjQ0IDEuNTkyIDBsLS43MDgtLjcwN3ptMy45MzMtMy45MzNsLTMuOTMzIDMuOTMzLjcwOC43MDcgMy45MzMtMy45MzMtLjcwOC0uNzA3em00LjY0IDMuOTMzbC0zLjkzMi0zLjkzMy0uNzA4LjcwNyAzLjkzMyAzLjkzNC43MDgtLjcwOHptLjE3NyAwYS4xMjUuMTI1IDAgMCAxLS4xNzYgMGwtLjcwNy43MDdjLjQzOS40NCAxLjE1MS40NCAxLjU5IDBsLS43MDctLjcwN3ptMC0uMTc2YS4xMjUuMTI1IDAgMCAxIDAgLjE3NmwuNzA3LjcwN2MuNDQtLjQzOS40NC0xLjE1MSAwLTEuNTlsLS43MDcuNzA3em0tMy45MzMtMy45MzNsMy45MzMgMy45MzMuNzA3LS43MDctMy45MzMtMy45MzQtLjcwNy43MDh6bTMuOTMzLTQuNjRsLTMuOTMzIDMuOTMyLjcwNy43MDggMy45MzQtMy45MzMtLjcwOC0uNzA4em0wLS4xNzdhLjEyNS4xMjUgMCAwIDEgMCAuMTc2bC43MDcuNzA4Yy40NC0uNDQuNDQtMS4xNTIgMC0xLjU5MWwtLjcwNy43MDd6bS0uMTc2IDBhLjEyNS4xMjUgMCAwIDEgLjE3NiAwbC43MDctLjcwOGExLjEyNSAxLjEyNSAwIDAgMC0xLjU5IDBsLjcwNy43MDh6bS0zLjkzMyAzLjkzM2wzLjkzMy0zLjkzMy0uNzA3LS43MDgtMy45MzQgMy45MzQuNzA4LjcwN3ptLTQuNjQtMy45MzNsMy45MzIgMy45MzMuNzA4LS43MDdMOS40MiA3LjgzbC0uNzA4LjcwN3ptLS4xNzcgMGEuMTI1LjEyNSAwIDAgMSAuMTc2IDBsLjcwOC0uNzA4YTEuMTI1IDEuMTI1IDAgMCAwLTEuNTkxIDBsLjcwNy43MDh6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.rtl .gform-settings-input__container--feedback-error input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),.rtl .gform-settings-input__container--feedback-success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]){background-position:2% 50%;padding-left:3.25rem;padding-right:1rem}.gform-settings-panel__content .select2-container .select2-selection__rendered,.gform-settings-panel__content input[type=email],.gform-settings-panel__content input[type=number],.gform-settings-panel__content input[type=password],.gform-settings-panel__content input[type=search],.gform-settings-panel__content input[type=tel],.gform-settings-panel__content input[type=text],.gform-settings-panel__content input[type=url],.gform-settings-panel__content select,.gform-settings-panel__content textarea{background-color:#fff;border:1px solid #9092b2;border-radius:3px;color:#242748;font-family:inherit;font-size:.875rem;line-height:1.25rem;padding:.6875rem 1rem;transition:box-shadow .15s ease,background-color .15s ease}.gform-settings-panel__content .select2-container .select2-selection__rendered.select2-selection__rendered,.gform-settings-panel__content input[type=email].select2-selection__rendered,.gform-settings-panel__content input[type=number].select2-selection__rendered,.gform-settings-panel__content input[type=password].select2-selection__rendered,.gform-settings-panel__content input[type=search].select2-selection__rendered,.gform-settings-panel__content input[type=tel].select2-selection__rendered,.gform-settings-panel__content input[type=text].select2-selection__rendered,.gform-settings-panel__content input[type=url].select2-selection__rendered,.gform-settings-panel__content select.select2-selection__rendered,.gform-settings-panel__content textarea.select2-selection__rendered{padding:.6875rem 2rem .6875rem 1rem}.gform-settings-panel__content input[type=email],.gform-settings-panel__content input[type=number],.gform-settings-panel__content input[type=password],.gform-settings-panel__content input[type=search],.gform-settings-panel__content input[type=tel],.gform-settings-panel__content input[type=text],.gform-settings-panel__content input[type=url],.gform-settings-panel__content select,.gform-settings-panel__content textarea{max-width:100%;width:100%}.gform-settings-panel__content input[type=email][disabled],.gform-settings-panel__content input[type=email][readonly],.gform-settings-panel__content input[type=number][disabled],.gform-settings-panel__content input[type=number][readonly],.gform-settings-panel__content input[type=password][disabled],.gform-settings-panel__content input[type=password][readonly],.gform-settings-panel__content input[type=search][disabled],.gform-settings-panel__content input[type=search][readonly],.gform-settings-panel__content input[type=tel][disabled],.gform-settings-panel__content input[type=tel][readonly],.gform-settings-panel__content input[type=text][disabled],.gform-settings-panel__content input[type=text][readonly],.gform-settings-panel__content input[type=url][disabled],.gform-settings-panel__content input[type=url][readonly],.gform-settings-panel__content select[disabled],.gform-settings-panel__content select[readonly],.gform-settings-panel__content textarea[disabled],.gform-settings-panel__content textarea[readonly]{background:#f4f5fb;cursor:not-allowed;outline:0;pointer-events:none}.gform-settings-panel__content input[type=email][disabled],.gform-settings-panel__content input[type=number][disabled],.gform-settings-panel__content input[type=password][disabled],.gform-settings-panel__content input[type=search][disabled],.gform-settings-panel__content input[type=tel][disabled],.gform-settings-panel__content input[type=text][disabled],.gform-settings-panel__content input[type=url][disabled],.gform-settings-panel__content select[disabled],.gform-settings-panel__content textarea[disabled]{color:#9092b2}.gform-settings-panel__content p.search-box{align-items:center;-moz-column-gap:6px;column-gap:6px;display:flex;flex-wrap:wrap;position:relative}.gform-settings-panel__content input[type=search]#form-search-input{flex:1;height:2.3125rem;margin-inline-end:0}.gform-settings-panel__content input[type=search]#form-search-input:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content select#bulk_action{height:2.375rem;line-height:1.125rem;padding:.5rem 1.125rem}.gform-settings-panel__content input::-moz-placeholder,.gform-settings-panel__content input::-ms-input-placeholder,.gform-settings-panel__content input::placeholder,.gform-settings-panel__content textarea::-moz-placeholder,.gform-settings-panel__content textarea::-ms-input-placeholder,.gform-settings-panel__content textarea::placeholder{color:#9092b0}.gform-settings-panel__content input[type=number]{width:auto}.gform-settings-panel__content .select2-container :focus .select2-selection__rendered,.gform-settings-panel__content input[type=email]:focus,.gform-settings-panel__content input[type=number]:focus,.gform-settings-panel__content input[type=password]:focus,.gform-settings-panel__content input[type=tel]:focus,.gform-settings-panel__content input[type=text]:focus,.gform-settings-panel__content input[type=url]:focus,.gform-settings-panel__content select:focus,.gform-settings-panel__content textarea:focus{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-field__toggleable-inputs{border-left:2px solid #ececf3;display:flex;flex-direction:row;flex-wrap:nowrap;margin-left:.625rem;margin-top:.3125rem;padding-left:1.4375rem}.gform-settings-field__toggleable-inputs .gform-settings-input__container{flex-grow:1;margin-right:.625rem}html[dir=rtl] .gform-settings-field__toggleable-inputs{border-left:none;border-right:2px solid #ececf3;margin-left:inherit;margin-right:.625rem;padding-left:inherit;padding-right:1.4375rem}.gform-settings-panel__content input[type=checkbox]:disabled,.gform-settings-panel__content input[type=radio]:disabled{opacity:.6;pointer-events:none}.gform-settings-panel__content input:disabled+label,.gform-settings-panel__content input:disabled+label::before{cursor:not-allowed;opacity:.6;pointer-events:none}.gform-settings-panel__content input[readonly]+label,.gform-settings-panel__content input[readonly]+label::before,.gform-settings-panel__content input[type=checkbox][readonly],.gform-settings-panel__content input[type=radio][readonly]{cursor:not-allowed;pointer-events:none}.gform-settings-panel__content input[type=checkbox]{background:#fff;border:1px solid #9092b2;border-radius:3px;height:1.375rem;margin:0 .75rem 0 0;transition:box-shadow .15s ease,background-color .15s ease;width:1.375rem}.gform-settings-panel__content input[type=checkbox]:focus,.gform-settings-panel__content input[type=checkbox]:hover{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content input[type=checkbox]::before{background-position:center;background-repeat:no-repeat;background-size:.75rem;content:"";display:block;height:100%;margin:0;width:100%}.gform-settings-panel__content input[type=checkbox]:hover::before{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMTIgMTAiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNCA2LjU4NTc5IDYuMjkyOS02LjI5Mjg5N2MuMzkwNS0uMzkwNTI0MSAxLjAyMzctLjM5MDUyNDEgMS40MTQyIDAgLjM5MDUuMzkwNTI1LjM5MDUgMS4wMjM2ODcgMCAxLjQxNDIxN2wtNy43MDcxIDcuNzA3MS0zLjcwNzEwNy0zLjcwNzFjLS4zOTA1MjQxLS4zOTA1My0uMzkwNTI0MS0xLjAyMzY5IDAtMS40MTQyMi4zOTA1MjUtLjM5MDUyIDEuMDIzNjg3LS4zOTA1MiAxLjQxNDIxNyAweiIgZmlsbD0iI0VDRURGOCIvPjwvc3ZnPg==)}.gform-settings-panel__content input[type=checkbox]:checked{background:#3e7da6;border-color:transparent}.gform-settings-panel__content input[type=checkbox]:checked::before{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMTIgMTAiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNCA2LjU4NTc5IDYuMjkyOS02LjI5Mjg5N2MuMzkwNS0uMzkwNTI0MSAxLjAyMzctLjM5MDUyNDEgMS40MTQyIDAgLjM5MDUuMzkwNTI1LjM5MDUgMS4wMjM2ODcgMCAxLjQxNDIxN2wtNy43MDcxIDcuNzA3MS0zLjcwNzEwNy0zLjcwNzFjLS4zOTA1MjQxLS4zOTA1My0uMzkwNTI0MS0xLjAyMzY5IDAtMS40MTQyMi4zOTA1MjUtLjM5MDUyIDEuMDIzNjg3LS4zOTA1MiAxLjQxNDIxNyAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}.gform-settings-panel__content input[type=checkbox]:focus{outline:0}.gform-settings-panel__content input[type=radio]{background:#fff;border:1px solid #9092b2;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.06);box-sizing:border-box;height:1.375rem;position:relative;transition:box-shadow .15s ease,background-color .15s ease;width:1.375rem}.gform-settings-panel__content input[type=radio]:focus,.gform-settings-panel__content input[type=radio]:hover{border:1px solid #3985b7;box-shadow:0 .125rem .0675rem rgba(28,31,63,.0634624),0 0 0 2px #bed8ed;color:#242748}.gform-settings-panel__content input[type=radio]::before{border-radius:50%;height:.5rem;left:50%;margin:-.25rem 0 0 -.25rem;position:absolute;top:50%;width:.5rem}.gform-settings-panel__content input[type=radio]:hover::before{background:#ecedf8;content:""}.gform-settings-panel__content input[type=radio]:checked::before{background:#3e7da6;content:""}.gform-settings-input__container{position:relative}.gform-settings-input__container--with-append,.gform-settings-input__container--with-merge-tag{display:flex}.gform-settings-input__container--with-append.gform-settings-input__container--invalid,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid{flex-wrap:wrap}.gform-settings-input__container--with-append.gform-settings-input__container--invalid textarea,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid textarea{flex:1}.gform-settings-input__container--with-append.gform-settings-input__container--invalid input,.gform-settings-input__container--with-merge-tag.gform-settings-input__container--invalid input{flex:1}.gform-settings-input__container--with-append .gform-settings-validation__error{flex-basis:100%}#gform_setting_limitEntriesNumber input[type=number],#gform_setting_limitEntriesNumber select{width:auto}.gform-settings__wrapper .button:disabled{opacity:.6}.gform-settings__wrapper .button{background:#fff;border:1px solid #3e7da6;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);font-size:.875rem;height:2.3125rem;line-height:.875rem;padding:.625rem 1.125rem}.gform-settings__wrapper .button:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013)}.gform-settings__wrapper .button.primary{backface-visibility:hidden;background:#3e7da6;border:1px solid transparent;border-radius:3px;color:#fff;font-family:inherit;font-size:.875rem;font-weight:500;height:auto;height:initial;line-height:1;margin-left:0;padding:.625rem 1.125rem;transition:transform .3s ease,box-shadow .3s ease,background-color .3s ease}.gform-settings__wrapper .button.primary:hover{box-shadow:0 4px 6px rgba(28,31,63,.0837013);transform:translate(0,-2px)}.gforms_edit_form .button.primary.gform-add-new-form{border:1px solid transparent}.gforms_edit_form .button.primary.gform-add-new-form:focus{transform:translate(0,-2px)}.gforms_edit_form .button.primary.gform-add-new-form:active{transform:translate(0,-1px)}.gform-settings__wrapper .button.large{padding-bottom:.875rem;padding-top:.875rem}.gform-settings__wrapper .button.white,.gform-settings__wrapper .button.white:hover{background:#fff;border-color:#3e7da6;color:#3e7da6}.gform-settings-field{margin-bottom:.625rem}html:not([dir=rtl]) .gform-settings-field .gform-settings-input__container+.gform-settings-input__container{margin-left:.625rem}html[dir=rtl] .gform-settings-field .gform-settings-input__container+.gform-settings-input__container{margin-right:.625rem}.gform-settings-choice{margin-bottom:.5rem}.gform-settings-choice--inline{display:inline-block;margin-right:1.25rem}.gform-settings-choice--visual{display:flex;margin-bottom:1.25rem}.gform-settings-choice--visual input[type=checkbox],.gform-settings-choice--visual input[type=radio]{border:0 none;clip:rect(.125rem,.125rem,.125rem,.125rem);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:.0625rem;margin:-.125rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.gform-settings-choice--visual input[type=checkbox]:focus+label::before,.gform-settings-choice--visual input[type=radio]:focus+label::before{box-shadow:0 0 0 2px #bed8ed}.gform-settings-choice--visual label{background:#fff;border:1px solid #9092b2;border-radius:3px;box-sizing:border-box;display:block;padding:1.625rem 1.5rem 1.75rem;position:relative;text-align:center;width:8.75rem}.gform-settings-choice--visual label::before{background:0 0;border:1px solid #d5d7e9;border-radius:50%;content:"";height:1rem;position:absolute;right:.5rem;top:.5625rem;width:1rem}.gform-settings-choice--visual input:disabled+label,.gform-settings-choice--visual input:disabled+label::before{cursor:not-allowed;opacity:.6;pointer-events:none}.gform-settings-choice--visual input:checked+label::before{background-color:#22a753;color:#fff;content:"\e983";display:block;font-family:gform-icons-admin;font-size:1rem;position:absolute;right:.5rem;top:.5625rem}.gform-settings-choice--visual input:checked+label,.gform-settings-choice--visual label:hover{border:1px solid #d5d7e9;box-shadow:0 4px 6px rgba(28,31,63,.0837013)}.gform-settings-choice--visual .dashicons,.gform-settings-choice--visual .fa,.gform-settings-choice--visual .gform-icon,.gform-settings-choice--visual img,.gform-settings-choice--visual svg{display:block;margin-bottom:.875rem}.gform-settings-choice--visual .dashicons,.gform-settings-choice--visual .fa,.gform-settings-choice--visual .gform-icon{color:#f15a2b;font-size:2rem;height:auto;width:auto}.gform-settings-choice--visual img,.gform-settings-choice--visual svg{height:2rem;margin-left:auto;margin-right:auto;width:auto}.gform-settings-choices--visual .gform-settings-input__container{display:flex;flex-wrap:wrap}.gform-settings-choice--image-select input[type=checkbox],.gform-settings-choice--image-select input[type=radio]{display:none}.gform-settings-choice--image-select .gform-settings-choice-label{display:none}.gform-settings-choice--image-select label>span{display:block;position:relative}.gform-settings-choice--image-select input:checked+label>span::before{background-color:#22a753;border-radius:100%;color:#fff;content:"\e983";display:block;font-family:gform-icons-admin;font-size:1rem;height:17px;padding-left:1px;position:absolute;right:.5rem;top:.5625rem;width:16px}.gform-settings-panel--card{background:0 0;border:none;box-shadow:none}.gform-settings-panel--card .gform-settings-field__card{margin-bottom:0}.gform-settings-panel--card .gform-settings-panel__content{border-top:none;padding:0}.gform-settings-panel--card .gform-settings-choice{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 1px 4px rgba(18,25,97,.0779552);transition:all .2s ease}.gform-settings-panel--card .gform-settings-choice:hover{box-shadow:0 0 1px rgba(18,25,97,.24),0 24px 24px rgba(18,25,97,.03),0 2px 2px rgba(18,25,97,.03),0 4px 4px rgba(18,25,97,.03),0 8px 8px rgba(18,25,97,.03),0 16px 16px rgba(18,25,97,.03)}.gform-settings-panel--card .gform-settings-choice--visual{display:block}.gform-settings-panel--card .gform-settings-choice--visual:last-child{margin-bottom:0}.gform-settings-panel--card .gform-settings-choices--visual{display:block}.gform-settings-panel--card .gform-settings-choices--visual input:checked+label,.gform-settings-panel--card .gform-settings-choices--visual label,.gform-settings-panel--card .gform-settings-choices--visual label:hover{border:none;border-bottom:1px solid #ecedf8;border-radius:3px 0 0 3px;box-shadow:none;padding-bottom:0;width:100%}.gform-settings-panel--card .gform-settings-choices--visual img,.gform-settings-panel--card .gform-settings-choices--visual svg{height:3.75rem}.gform-settings-panel--card .gform-settings-card-tag{align-items:center;display:flex;font-size:.625rem;font-weight:800;justify-content:center;margin-top:1.5rem;padding:.812rem;position:relative;text-align:center}.gform-settings-panel--card .gform-settings-card-tag::before{background:#ecedf8;content:"";display:block;height:1px;left:-1.5rem;position:absolute;right:-1.5rem;top:0}.gform-settings-panel--card .gform-settings-card-tag .gform-icon{color:inherit;display:inline;font-size:1.45rem;padding-right:.25rem;position:relative;top:.3rem}.gform-settings-panel--card .gform-settings-card--description{align-items:center;display:flex}.gform-settings-panel--card .gform-settings-card--description strong{font-size:.875rem;font-weight:500}.gform-settings-panel--card .gform-settings-card--description p{font-size:.8125rem;line-height:1.384615385rem;margin-bottom:.5625rem}@media (min-width:768px){.gform-settings-panel--card .gform-settings-choices--visual{display:flex}.gform-settings-panel--card .gform-settings-choices--visual input:checked+label,.gform-settings-panel--card .gform-settings-choices--visual label,.gform-settings-panel--card .gform-settings-choices--visual label:hover{border-bottom:none;border-right:1px solid #ecedf8;width:12.5rem}.gform-settings-panel--card .gform-settings-choice--visual{display:flex}.gform-settings-panel--card .gform-settings-card-tag::before{width:calc(100% + 3rem)}.gform-settings-panel--card .gform-settings-card--description{padding:1rem;width:calc(100% - 16rem)}}.gform-settings-field__select--enhanced select{display:none}.gform-settings-generic-map__table{border-spacing:0}.gform-settings-generic-map__column{padding-bottom:.875rem;text-align:left}.gform-settings-generic-map__column--heading{padding-bottom:.625rem}.gform-settings-generic-map__table td{padding-bottom:.875rem;padding-top:0}.gf_browser_gecko .gform-settings-generic-map__table td .gform-st-icon--circle-minus::after,.gf_browser_gecko .gform-settings-generic-map__table td .gform-st-icon--circle-plus::after{margin-left:-.03125rem}.gform-settings-generic-map__column--buttons{min-width:3rem}.gform-settings-generic-map__column--key{font-size:.875rem}.gform-settings-generic-map__column--key,.gform-settings-generic-map__column--value{padding-right:.6875rem}.gform-settings-panel__content .gform-settings-generic-map__value--invalid{border-color:#e54c3b}.gform-settings-generic-map__column input[type=text]{padding-right:2.25rem}.gform-settings-generic-map__button--add{margin-right:.4375rem}.gform-settings-generic-map__custom,.gform-settings-select-custom__custom{display:block;max-height:2.75rem;position:relative}.gform-settings-generic-map__reset,.gform-settings-select-custom__reset{background:transparent no-repeat center url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMjAxIDEuMjAxYS42ODguNjg4IDAgMDAwIC45NzNMNS41MjggNi41IDEuMiAxMC44MjZhLjY4Ny42ODcgMCAxMC45NzMuOTczTDYuNSA3LjQ3Mmw0LjMyNiA0LjMyN2EuNjg3LjY4NyAwIDEwLjk3My0uOTczTDcuNDcyIDYuNSAxMS44IDIuMTc0YS42ODcuNjg3IDAgMDAtLjk3My0uOTczTDYuNSA1LjUyOCAyLjE3NCAxLjJhLjY4OC42ODggMCAwMC0uOTczIDB6IiBmaWxsPSIjRDVEN0U5IiBzdHJva2U9IiNENUQ3RTkiIHN0cm9rZS13aWR0aD0iLjUiLz48L3N2Zz4=);background-size:.6875rem;border:none;cursor:pointer;height:1.125rem;position:absolute;right:.625rem;top:.84375rem;width:1.125rem;z-index:3}.gform-settings-input__container--with-merge-tag .gform-settings-generic-map__reset{right:3.625rem}.gform-settings-field__checkbox_and_select>.gform-settings-input__container{align-items:center;display:flex;justify-content:space-between}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-choice{margin-bottom:0}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-choice--inline{white-space:nowrap}.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-input__target,.gform-settings-field__checkbox_and_select>.gform-settings-input__container .gform-settings-input__target .gform-settings-input__container{width:100%}.gform-settings-field__conditional-logic{padding:1rem 0}.form-table .gform-settings-field__conditional-logic{padding:0}.form-table .gform-settings-field__conditional-logic select{max-width:25%;min-width:25%}.form-table #gform-no-filters{color:#242748;line-height:1.5}.form-table #gform-field-filters .gform-field-filter{align-items:center;display:flex;padding:.5rem 0 0;text-align:left;width:100%}.form-table #gform-field-filters .gform-field-filter input[type=text]{height:2.75rem;padding:1.025rem 1em;width:25%}.form-table #gform-field-filters button{top:-.1rem}.gform-settings-field__conditional-logic .gf_conditional_logic_rules_container{align-items:center;display:flex;flex-direction:row}.gform-settings-field__conditional-logic input[type=text],.gform-settings-field__conditional-logic select,.gform-settings-simple-condition input[type=text],.gform-settings-simple-condition select{height:inherit;width:auto}.gform-settings-field__conditional-logic select,.gform-settings-simple-condition select{margin-right:.5rem}.gform-settings-field__conditional-logic #form_button_logic_type{margin-left:.5rem}.gform-settings-field__conditional-logic #feed_condition_logic_type{margin-left:.5rem}.gform-settings-field__conditional-logic .gf_conditional_logic_rules_container select:first-child{margin-left:0}.gform-settings-generic-map__button{background-color:#fff;background-position:center;background-repeat:no-repeat;background-size:49%;border:1px solid #d5d7e9;border-radius:50%;box-shadow:0 2px 2px rgba(58,58,87,.0796);cursor:pointer;height:1.25rem;margin:0 0 0 3px;padding:1px 7px;vertical-align:middle;width:1.25rem}.gform-settings-generic-map__button--add:last-child{margin:0 calc(1.25rem + 3px) 0 3px}.gform-settings-input__container--invalid .select2-container .select2-selection__rendered,.gform-settings-input__container--invalid input[type=checkbox],.gform-settings-input__container--invalid input[type=email],.gform-settings-input__container--invalid input[type=number],.gform-settings-input__container--invalid input[type=password],.gform-settings-input__container--invalid input[type=radio],.gform-settings-input__container--invalid input[type=text],.gform-settings-input__container--invalid input[type=url],.gform-settings-input__container--invalid select,.gform-settings-input__container--invalid textarea{border-color:#e54c3b}.gform-settings-input__container--invalid .mce-tinymce{border:1px solid #e54c3b}.gform-settings-input__container--invalid .gform-field__toggle-container{border:1px solid #e54c3b}.gform-settings-field__text-append{background:#f6f9fc;border:1px solid #9092b2;font-size:.875rem;line-height:2.625rem;padding-left:1.125rem;padding-right:1.125rem}.gform-settings-input__container--with-append input[type=text]:focus+.gform-settings-field__text-append{border-color:#3e7da6}html:not([dir=rtl]) .gform-settings-field__text-append{border-radius:0 3px 3px 0}html[dir=rtl] .gform-settings-field__text-append{border-radius:3px 0 0 3px}.gform-settings-field__date_time input[type=text],.gform-settings-field__date_time select{min-width:0;width:auto}.gform-settings-field__date_time .gform-settings-input__container,.gform-settings-field__text_and_select .gform-settings-input__container{display:inline-flex;flex-wrap:wrap;position:relative}.gform-settings-field__date_time input[type=text]{padding-right:2.9375rem}.gform-settings-field__date_time .ui-datepicker-trigger{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fdfdff;border:none;border-left:1px solid #d5d7e9;border-radius:0 3px 3px 0;cursor:pointer;height:2.625rem;position:absolute;right:1px;text-align:center;top:1px;width:2.875rem}.gform-settings-field__date_time button svg{vertical-align:middle}.gform-settings-field__date_time select{margin-left:3px;margin-right:3px}.gform-settings-field__dynamic_field_map .gform-settings-generic-map__table .gform-settings-generic-map__column--key,.gform-settings-field__dynamic_field_map .gform-settings-generic-map__table .gform-settings-generic-map__column--value{max-width:25rem;width:45%}.gform-settings-generic-map__column--key+.gform-settings-generic-map__column--value{padding-left:1rem;width:55%}.wp-editor-wrap textarea{border:none;max-width:100%}.wp-editor-tabs{margin-top:.5rem}.gform-settings-validation__error{color:#e54c3b;flex-basis:100%;font-size:.75rem;line-height:1.375rem;margin-top:.5625rem}.gform-settings-field__feedback{background-position:center;background-repeat:no-repeat;border-radius:50%;height:1.25rem;margin-top:-.625rem;position:absolute;right:.5rem;top:50%;width:1.25rem}#TB_window .alert.success::after,#gf-admin-notices-wrapper .notice-success::after,.alert.gforms_note_success::after,.gform-settings-field__feedback--valid,.gform-settings__wrapper .alert.success::after{background-color:#22a753;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjcwNyA0LjU0M0ExIDEgMCAwMC4yOTMgNS45NTdMNCA5Ljc1bDcuNzA3LTcuNzkzQTEgMSAwIDAwMTAuMjkzLjU0M0w0IDYuNzUgMS43MDcgNC41NDN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+)}.gform-settings-field__feedback--valid{background-size:.625rem}#TB_window .alert.error::after,.alert.gforms_note_error::after,.gform-settings-field__feedback--invalid,.gform-settings__wrapper .alert.error::after{background-color:#e54c3b;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS43MzcgMGEuMjI2LjIyNiAwIDAwLS4yMjUuMjM3TC45NSA5LjAwMWExLjA1MSAxLjA1MSAwIDAwMi4xIDBMMy40ODguMjM3QS4yMjYuMjI2IDAgMDAzLjI2MyAwSC43Mzd6TTMuNSAxMi41YTEuNSAxLjUgMCAxMS0zIDAgMS41IDEuNSAwIDAxMyAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#TB_window .alert,#gf-admin-notices-wrapper .gf-notice,.gform-settings__wrapper .alert{background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);font-size:.8125rem;font-weight:500;line-height:1.125rem;margin:0 0 1.375rem;padding:1.25rem 3rem 1.25rem 4.375rem;position:relative}.rtl #TB_window .alert,.rtl #gf-admin-notices-wrapper .gf-notice,.rtl .gform-settings__wrapper .alert{padding:1.25rem 4.375rem 1.25rem 3rem}#gf-admin-notices-wrapper .gf-notice p:first-child,.gform-settings__wrapper .alert p:first-child{margin:auto}#TB_window .alert::after,#TB_window .alert::before,#gf-admin-notices-wrapper .gf-notice::after,#gf-admin-notices-wrapper .gf-notice::before,.gform-settings__wrapper .alert::after,.gform-settings__wrapper .alert::before{border-radius:50%;content:"";position:absolute;top:50%}#TB_window .alert::before,#gf-admin-notices-wrapper .gf-notice::before,.gform-settings__wrapper .alert::before{height:3rem;left:.5rem;margin-top:-1.5rem;width:3rem}#TB_window .alert::after,#gf-admin-notices-wrapper .gf-notice::after,.gform-settings__wrapper .alert::after{background-position:center;background-repeat:no-repeat;height:1.625rem;left:1.1875rem;margin-top:-.8125rem;width:1.625rem}.rtl #TB_window .alert::before,.rtl #gf-admin-notices-wrapper .gf-notice::before,.rtl .gform-settings__wrapper .alert::before{left:auto;right:.5rem}.rtl #TB_window .alert::after,.rtl #gf-admin-notices-wrapper .gf-notice::after,.rtl .gform-settings__wrapper .alert::after{left:auto;right:1.1875rem}#TB_window .alert.info,#gf-admin-notices-wrapper .notice-info,.alert.gforms_note_info,.gform-settings__wrapper .alert.info{color:#6b6bf4}#TB_window .alert.info::before,#gf-admin-notices-wrapper .notice-info::before,.alert.gforms_note_info::before,.gform-settings__wrapper .alert.info::before{background-color:rgba(107,107,244,.2)}#TB_window .alert.info::after,#gf-admin-notices-wrapper .notice-info::after,.alert.gforms_note_info::after,.gform-settings__wrapper .alert.info::after{background-color:#6b6bf4;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEuNjk0LjQ1QzEuMDE0Ljc1LjQ1IDEuMTczIDAgMS43MThsMS42NSAxLjQ0NmMuMjQ1LS4zNC41NTctLjYwNi45MzYtLjguMzgtLjE5NC43NjMtLjI5MSAxLjE0OS0uMjkxLjUyNyAwIC45NTUuMTQ0IDEuMjgzLjQzMi4zMjguMjg3LjQ5Mi42ODkuNDkyIDEuMjA0IDAgLjQyNC0uMTA4LjgwOC0uMzIzIDEuMTUtLjIxNi4zNDMtLjUzLjcyLS45NCAxLjEzMi0uMDQuMDM2LS4xMzEuMTI2LS4yNzYuMjY4LS4xNDUuMTQzLS4yNC4yMzYtLjI4NS4yODItLjA0NS4wNDUtLjEyOC4xMzUtLjI1LjI2OGEzLjUwNSAzLjUwNSAwIDAwLS4yNTEuMjk2Yy0uMDQ1LjA2My0uMTE1LjE1Ny0uMjA4LjI4MWExLjQ5IDEuNDkgMCAwMC0uMTkzLjMxOWwtLjEyNS4zMTNjLS4wNDkuMTIxLS4wOC4yNDEtLjA5Ny4zNmEyLjczIDIuNzMgMCAwMC0uMDI0LjM2N2wuMDEuOTM3aDEuOTU5bC4wNDgtLjgxOGEuOTk1Ljk5NSAwIDAxLjEwNi0uMzk2Yy4wNjQtLjEzLjE2Mi0uMjY4LjI5NC0uNDEzLjEzMi0uMTQ2LjI1My0uMjcuMzYyLS4zNzMuMTEtLjEwMy4yNjctLjI0NC40NzMtLjQyMy4yMDYtLjE3OS4zNjQtLjMxNy40NzMtLjQxNC4yNS0uMjMuNDY4LS40NDguNjUxLS42NTQuMTg0LS4yMDYuMzY0LS40NDQuNTQtLjcxNGEzLjI4IDMuMjggMCAwMC40MDYtLjg4MmMuMDkzLS4zMTguMTQtLjY1My4xNC0xLjAwNCAwLS41ODItLjExMy0xLjEwNS0uMzM4LTEuNTY4QTMuMDY5IDMuMDY5IDAgMDA2Ljc0NS44OSA0LjI3MiA0LjI3MiAwIDAwNS40NDMuMjI3IDUuMDYgNS4wNiAwIDAwMy45MTggMGE1LjQ0IDUuNDQgMCAwMC0yLjIyNC40NXptLjgyIDExLjE4NmMtLjI5My4yNzMtLjQ0LjYtLjQ0Ljk4MnMuMTQ3LjcwOC40NC45NzdjLjI5My4yNy42NDguNDA1IDEuMDY2LjQwNS40MDYgMCAuNzU1LS4xMzUgMS4wNDctLjQwNS4yOTMtLjI3LjQ0LS41OTUuNDQtLjk3N3MtLjE0Ny0uNzA5LS40NC0uOTgyYTEuNDgzIDEuNDgzIDAgMDAtMS4wNDctLjQwOWMtLjQxOCAwLS43NzMuMTM3LTEuMDY2LjQxeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#TB_window .alert.warning,#gf-admin-notices-wrapper .notice-warning,#gf-wordpress-notices,.alert.gforms_note_warning,.gform-settings__wrapper .alert.warning{color:#a16938}#TB_window .alert.warning::before,#gf-admin-notices-wrapper .notice-warning::before,#gf-wordpress-notices::before,.alert.gforms_note_warning::before,.gform-settings__wrapper .alert.warning::before{background-color:rgba(255,190,3,.2)}#TB_window .alert.warning::after,#gf-admin-notices-wrapper .notice-warning::after,.alert.gforms_note_warning::after,.gform-settings__wrapper .alert.warning::after{background-color:#ffbe03;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjI1NyAxLjA5OWMuNzY1LTEuMzYgMi43MjItMS4zNiAzLjQ4NiAwbDUuNTggOS45MmMuNzUgMS4zMzQtLjIxMyAyLjk4LTEuNzQyIDIuOThIMi40MmMtMS41MyAwLTIuNDkzLTEuNjQ2LTEuNzQzLTIuOThsNS41OC05Ljkyek05IDExYTEgMSAwIDExLTIgMCAxIDEgMCAwMTIgMHpNOCAzYTEgMSAwIDAwLTEgMXYzYTEgMSAwIDAwMiAwVjRhMSAxIDAgMDAtMS0xeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}#gf-wordpress-notices::after{background-color:#ffbe03;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGl0bGU+QmVsbDwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgY2xhc3M9Im5jLWljb24td3JhcHBlciI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEzIDE4LjVhMSAxIDAgMSAxLTIgMFYxOGgydi41em0tMi0xM2ExIDEgMCAxIDEgMiAwdjFoLTJ2LTF6Ii8+PG1hc2sgaWQ9ImhvaHZHeGEiIGZpbGw9IiNmZmYiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEyIDUuNWE0LjM3NSA0LjM3NSAwIDAgMC00LjM3NSA0LjM3NXYzLjU0MmwtLjc1NS41MDNhMS45NTQgMS45NTQgMCAwIDAgMS4wODQgMy41OGg4LjA5MmExLjk1NCAxLjk1NCAwIDAgMCAxLjA4NC0zLjU4bC0uNzU1LS41MDNWOS44NzVBNC4zNzUgNC4zNzUgMCAwIDAgMTIgNS41eiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9tYXNrPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik03LjYyNSAxMy40MTdsLjgzMiAxLjI0OC42NjgtLjQ0NnYtLjgwMmgtMS41em0tLjc1NS41MDNsLS44MzItMS4yNDguODMyIDEuMjQ4em0xMC4yNiAwbC0uODMyIDEuMjQ4LjgzMi0xLjI0OHptLS43NTUtLjUwM2gtMS41di44MDJsLjY2OC40NDYuODMyLTEuMjQ4em0tNy4yNS0zLjU0MkEyLjg3NSAyLjg3NSAwIDAgMSAxMiA3VjRhNS44NzUgNS44NzUgMCAwIDAtNS44NzUgNS44NzVoM3ptMCAzLjU0MlY5Ljg3NWgtM3YzLjU0Mmgzem0tMS40MjMgMS43NWwuNzU1LS41MDItMS42NjQtMi40OTYtLjc1NS41MDMgMS42NjQgMi40OTZ6bS0uMjAyLjM3OWMwLS4xNTIuMDc2LS4yOTQuMjAyLS4zNzhsLTEuNjY0LTIuNDk2QTMuNDU0IDMuNDU0IDAgMCAwIDQuNSAxNS41NDZoM3ptLjQ1NC40NTRhLjQ1NC40NTQgMCAwIDEtLjQ1NC0uNDU0aC0zQTMuNDU0IDMuNDU0IDAgMCAwIDcuOTU0IDE5di0zem04LjA5MiAwSDcuOTU0djNoOC4wOTJ2LTN6bS40NTQtLjQ1NGMwIC4yNS0uMjAzLjQ1NC0uNDU0LjQ1NHYzYTMuNDU0IDMuNDU0IDAgMCAwIDMuNDU0LTMuNDU0aC0zem0tLjIwMi0uMzc4YS40NTQuNDU0IDAgMCAxIC4yMDIuMzc4aDNhMy40NTQgMy40NTQgMCAwIDAtMS41MzgtMi44NzRsLTEuNjY0IDIuNDk2em0tLjc1NS0uNTAzbC43NTUuNTAzIDEuNjY0LTIuNDk2LS43NTUtLjUwMy0xLjY2NCAyLjQ5NnptLS42NjgtNC43OXYzLjU0MmgzVjkuODc1aC0zek0xMiA3YTIuODc1IDIuODc1IDAgMCAxIDIuODc1IDIuODc1aDNBNS44NzUgNS44NzUgMCAwIDAgMTIgNHYzeiIgbWFzaz0idXJsKCNob2h2R3hhKSIvPjwvZz48L3N2Zz4=)}#TB_window .alert.success,#gf-admin-notices-wrapper .notice-success,.alert.gforms_note_success,.gform-settings__wrapper .alert.success{color:#276a52}#TB_window .alert.success::before,#gf-admin-notices-wrapper .notice-success::before,.alert.gforms_note_success::before,.gform-settings__wrapper .alert.success::before{background-color:rgba(34,167,83,.2)}#TB_window .alert.error,#gf-admin-notices-wrapper .notice-error,.alert.gforms_note_error,.gform-settings__wrapper .alert.error{color:#e54c3b}#TB_window .alert.error::before,#gf-admin-notices-wrapper .notice-error::before,.alert.gforms_note_error::before,.gform-settings__wrapper .alert.error::before{background-color:rgba(229,76,59,.2)}#TB_window .alert.error::after,#gf-admin-notices-wrapper .notice-error::after,.alert.gforms_note_error::after,.gform-settings__wrapper .alert.error::after{background-color:#e54c3b;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPmV4Y2xhbWF0aW9uPC90aXRsZT48ZyBmaWxsPSJub25lIiBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS43MzcgMGEuMjI2LjIyNiAwIDAgMC0uMjI1LjIzN0wuOTUgOS4wMDFhMS4wNTEgMS4wNTEgMCAwIDAgMi4xIDBMMy40ODguMjM3QS4yMjYuMjI2IDAgMCAwIDMuMjYzIDBILjczN3pNMy41IDEyLjVhMS41IDEuNSAwIDEgMS0zIDAgMS41IDEuNSAwIDAgMSAzIDB6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==)}.gform-settings-input__container+.alert{margin-top:1rem}#gf-admin-notices-wrapper{margin:0 auto;max-width:69.5rem;padding:1.375rem 1.5rem 0}#gf-admin-notices-wrapper .gf-notice{margin-bottom:0}#gf-admin-notices-wrapper .gf-notice~.gf-notice{margin-top:1.375rem}.gform-admin #gform_notification_to_routing_rules{border-left:2px solid #ececf2;margin:.75rem 0 0 .5rem;padding:0 0 0 .8125rem}.gform-admin #gform_notification_to_routing_rules div{align-items:center;display:flex;margin-bottom:.625rem;padding-right:3.125rem;position:relative;width:calc(99% - 3.125rem)}.gform-admin #gform_notification_to_routing_rules input[type=text],.gform-admin #gform_notification_to_routing_rules select{flex:1 0 20%;margin-left:.3125rem;margin-right:.3125rem;width:100%}.gform-admin #gform_notification_to_routing_rules input[type=text]{flex-grow:1;font-size:.8125rem}.gform-admin .gform-settings-field__notification-routing-button{position:absolute}.gform-admin .gform-settings-field__notification-routing-button--add{right:24px}.gform-admin .gform-settings-field__notification-routing-button--delete{right:0}.gform-admin .gform-settings-field__notification-routing-button svg{display:block;margin:0 auto;vertical-align:middle}.gform-admin .gform-settings-field__notification-routing-route--invalid input[type=text].gfield_routing_email{border-color:#dd301d}.gform-admin .gform-settings-field__notification_routing .gform-settings-validation__error{padding-left:1.4375rem}.gform-settings-panel__content .tablenav{align-content:space-between;display:flex;margin-bottom:.75rem}.gform-settings-panel__content .tablenav .alignleft,.gform-settings-panel__content .tablenav .alignright{float:none;width:50%}.gform-settings-panel__content .tablenav .alignright{text-align:right}.gform-settings-panel__content .tablenav .alignright:first-child{width:100%}.gform-settings-panel__content .wp-list-table thead td,.gform-settings-panel__content .wp-list-table thead th{border-bottom-color:#d5d7e9}.gform-settings-panel__content .wp-list-table tfoot td,.gform-settings-panel__content .wp-list-table tfoot th{border-top-color:#d5d7e9}.gform-settings-panel__content .wp-list-table tbody td,.gform-settings-panel__content .wp-list-table tbody th,.gform-settings-panel__content .wp-list-table tfoot td,.gform-settings-panel__content .wp-list-table tfoot th,.gform-settings-panel__content .wp-list-table thead td,.gform-settings-panel__content .wp-list-table thead th{color:#242748}.gform-settings-panel__content .wp-list-table>tbody>tr:not(:last-child){border-bottom:1px solid #d5d7e9}.gform-settings-panel__content .wp-list-table .alternate,.gform-settings-panel__content .wp-list-table.striped>tbody>:nth-child(odd){background:#f6f9fc}.gform-settings-panel__content .tablenav select{line-height:1.1875rem;padding-bottom:.5rem;padding-top:.5rem}.gform-settings-panel__content .wp-list-table input[type=checkbox]{height:1rem;width:1rem}.gform-table.gform-table--license-ui .gform-icon--cog{font-size:1.125rem}.gform-results{display:flex;justify-content:space-between;margin-bottom:1.25rem}.gform-result-box{background:#fff;border:1px solid #e3e6ef;border-radius:3px;box-shadow:0 4px 10px rgba(18,25,97,.0779552);box-sizing:border-box;flex:1 1 auto;max-width:15.625rem}.wide .gform-result-box{max-width:12.5rem}.gform-result-box__primary{min-height:3.0625rem;padding:1.5rem 1rem 1.8125rem 1rem}.gform-result-box__secondary{background:#f6f9fc;border-radius:0 0 3px 3px;color:#f15a2b;font-size:.8125rem;font-style:normal;font-weight:600;justify-content:space-between;line-height:165%;padding:.5625rem 1rem .875rem 1.5625rem}.gform-result-box__primary,.gform-result-box__secondary{display:flex}.box-icon{align-items:center;background:#fff;border:1px solid #d5d7e9;border-radius:3px;box-shadow:0 2px 1px rgba(28,31,63,.0634624);display:flex;height:2.875rem;justify-content:center;width:2.93875rem}.box-data{padding-left:1.123785rem}.box-label{color:#696c8c;font-size:.875rem;line-height:1rem}.box-number{color:#242748;font-size:1.3125rem;font-weight:600;letter-spacing:.484615px;line-height:1.8125rem}.sales{border-collapse:separate;border-spacing:0}.sales td,.sales th{padding:0}.sales td:first-child,.sales th:first-child{padding-left:1.375rem}.sales td{height:3.5625rem}.sales th{font-weight:400;height:2.375rem;text-align:left}.sales tbody>:nth-child(odd){background:#f6f9fc}.sales thead th{border-bottom:1px solid #ebebf2}.sales tfoot th{border-top:1px solid #ebebf2}#gresults-results-filter-content .gform-settings-field__date_time .gform-settings-input__container,#gresults-results-filter-content .gform-settings-field__text_and_select .gform-settings-input__container{display:block;margin:0}#gresults-results-filter-date-end,#gresults-results-filter-date-start{width:100%}.gform-settings-input__container .ui-datepicker-trigger svg{transition:fill .3s ease}.gform-settings-input__container .ui-datepicker-trigger:hover svg{fill:#5b5e80}.gform-settings-field__date_time .gform-settings-input__container .ui-datepicker-trigger:focus{box-shadow:none;outline:0}.gform-settings-input__separator{line-height:3em}#gresults-results-filter-form .gform-settings-field__conditional-logic{padding:0}#gresults-results-filter-form .gform-settings-field__conditional-logic #gform-field-filters{overflow:visible}#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter .gform-filter-value,#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter input,#gresults-results-filter-form .gform-settings-field__conditional-logic .gform-field-filter select{height:auto;line-height:1.25rem;margin-bottom:.25rem;min-height:unset;min-width:unset;padding:.6875rem 2rem .6875rem 1rem;width:100%}#gresults-results-filter-buttons{background:#f6f9fc;border-bottom-left-radius:6px;border-bottom-right-radius:6px;clear:both;margin-bottom:-.625rem;margin-left:-.625rem;margin-top:1.25rem;padding:.625rem;width:100%}#gresults-results-filter-clear-button,#gresults-results-filter-submit-button{font-size:.875rem;height:2.1875rem;line-height:1.125rem;margin-right:.5rem;padding:.5rem 1.125rem .5rem 1.125rem;width:7.5rem}#gresults-results-filter-clear-button{width:4.625rem}html[dir=rtl] .box-data{padding-left:0;padding-right:1.123785rem}html[dir=rtl] .sales th{text-align:right}html[dir=rtl] .sales td:first-child,html[dir=rtl] .sales th:first-child{padding-left:0;padding-right:1.375rem}.gform-admin .gform-settings-field__post_select .gform-dropdown__control{border:1px solid #9092b2;box-shadow:none;color:#242748;height:2.75rem}#gravity_addon_browser{margin:0 2rem} \ No newline at end of file diff --git a/wp/wp-content/plugins/gravityforms/change_log.txt b/wp/wp-content/plugins/gravityforms/change_log.txt index a864e533..67590427 100644 --- a/wp/wp-content/plugins/gravityforms/change_log.txt +++ b/wp/wp-content/plugins/gravityforms/change_log.txt @@ -1,3 +1,7 @@ +### 2.8.18 | 2024-10-01 +- Fixed spacing and margin issues in the form list, help page, and settings page in RTL. +- Fixed an issue where `get_submitted_fields()` is not returning the correct field values if meta keys are not numeric. + ### 2.8.17 | 2024-08-26 - Updated the form restriction logging statements to include the form ID. - Fixed an issue where the license key is not saved for some sites in a multisite/network installation. diff --git a/wp/wp-content/plugins/gravityforms/forms_model.php b/wp/wp-content/plugins/gravityforms/forms_model.php index 6319cb04..1210bbde 100644 --- a/wp/wp-content/plugins/gravityforms/forms_model.php +++ b/wp/wp-content/plugins/gravityforms/forms_model.php @@ -6724,14 +6724,8 @@ class GFFormsModel { $entry_meta_table_name = self::get_entry_meta_table_name(); $field_list = ''; - $fields = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT meta_key FROM $entry_meta_table_name WHERE form_id=%d", $form_id ) ); - foreach ( $fields as $field ) { - $field_list .= intval( $field->meta_key ) . ','; - } - - if ( ! empty( $field_list ) ) { - $field_list = substr( $field_list, 0, strlen( $field_list ) - 1 ); - } + $fields = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT meta_key FROM $entry_meta_table_name WHERE form_id=%d AND meta_key REGEXP '^[0-9]+(\.[0-9]+)?$'", $form_id ) ); + $field_list = implode( ',', array_unique( array_map( 'intval', $fields ) ) ); return $field_list; } diff --git a/wp/wp-content/plugins/gravityforms/gravityforms.php b/wp/wp-content/plugins/gravityforms/gravityforms.php index 59bde541..6fc01292 100644 --- a/wp/wp-content/plugins/gravityforms/gravityforms.php +++ b/wp/wp-content/plugins/gravityforms/gravityforms.php @@ -3,7 +3,7 @@ Plugin Name: Gravity Forms Plugin URI: https://gravityforms.com Description: Easily create web forms and manage form entries within the WordPress admin. -Version: 2.8.17 +Version: 2.8.18 Requires at least: 4.0 Requires PHP: 5.6 Author: Gravity Forms @@ -245,7 +245,7 @@ class GFForms { * * @var string $version The version number. */ - public static $version = '2.8.17'; + public static $version = '2.8.18'; /** * Handles background upgrade tasks. diff --git a/wp/wp-content/plugins/gravityforms/languages/gravityforms.pot b/wp/wp-content/plugins/gravityforms/languages/gravityforms.pot index 9e5c740e..4fa1d2ed 100644 --- a/wp/wp-content/plugins/gravityforms/languages/gravityforms.pot +++ b/wp/wp-content/plugins/gravityforms/languages/gravityforms.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Gravity Forms 2.8.17\n" +"Project-Id-Version: Gravity Forms 2.8.18\n" "Report-Msgid-Bugs-To: https://gravityforms.com/support\n" "Last-Translator: Gravity Forms \n" "Language-Team: Gravity Forms \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-08-26T16:50:15+00:00\n" +"POT-Creation-Date: 2024-10-01T16:13:02+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.11.0\n" "X-Domain: gravityforms\n" @@ -449,7 +449,7 @@ msgstr "" #: common.php:5399 #: common.php:5450 -#: forms_model.php:6946 +#: forms_model.php:6940 msgid "Thanks for contacting us! We will get in touch with you shortly." msgstr "" @@ -1814,7 +1814,7 @@ msgstr "" #: forms_model.php:1830 #: forms_model.php:1863 #: forms_model.php:1899 -#: forms_model.php:8196 +#: forms_model.php:8190 #: includes/api.php:131 #: includes/api.php:158 #: includes/api.php:180 @@ -1879,61 +1879,61 @@ msgstr "" msgid "(Required)" msgstr "" -#: forms_model.php:6879 -#: forms_model.php:6943 +#: forms_model.php:6873 +#: forms_model.php:6937 msgid "Default Confirmation" msgstr "" -#: forms_model.php:6908 +#: forms_model.php:6902 msgid "Save and Continue Confirmation" msgstr "" -#: forms_model.php:6913 +#: forms_model.php:6907 msgid "Link to continue editing later" msgstr "" -#: forms_model.php:6914 +#: forms_model.php:6908 msgid "Please use the following link to return and complete this form from any computer." msgstr "" -#: forms_model.php:6915 +#: forms_model.php:6909 msgid "Note: This link will expire after 30 days." msgstr "" -#: forms_model.php:6916 +#: forms_model.php:6910 msgid "Enter your email address if you would like to receive the link via email." msgstr "" -#: forms_model.php:6927 +#: forms_model.php:6921 msgid "Save and Continue Email Sent Confirmation" msgstr "" -#: forms_model.php:6932 +#: forms_model.php:6926 msgid "Success!" msgstr "" -#: forms_model.php:6933 +#: forms_model.php:6927 msgid "The link was sent to the following email address:" msgstr "" -#: forms_model.php:8188 +#: forms_model.php:8182 msgid "Updating the id property is not supported" msgstr "" -#: forms_model.php:8192 +#: forms_model.php:8186 msgid "%s is not a valid feed property" msgstr "" -#: forms_model.php:8205 +#: forms_model.php:8199 msgid "Feed meta should be an associative array or JSON" msgstr "" -#: forms_model.php:8214 +#: forms_model.php:8208 #: includes/api.php:2117 msgid "There was an error while updating feed id %s" msgstr "" -#: forms_model.php:8218 +#: forms_model.php:8212 #: includes/api.php:2078 msgid "Feed id %s not found" msgstr "" diff --git a/wp/wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot b/wp/wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot index e8adc332..ac27861a 100644 --- a/wp/wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot +++ b/wp/wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce 9.3.2\n" +"Project-Id-Version: WooCommerce 9.3.3\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-09-18T13:36:43+00:00\n" +"POT-Creation-Date: 2024-09-25T08:21:07+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.11.0\n" "X-Domain: woocommerce\n" @@ -20884,7 +20884,7 @@ msgstr "" #: includes/class-wc-form-handler.php:295 #: includes/wc-user-functions.php:54 -#: src/StoreApi/Routes/V1/Checkout.php:620 +#: src/StoreApi/Routes/V1/Checkout.php:621 msgid "Please provide a valid email address." msgstr "" @@ -40420,35 +40420,35 @@ msgid "There was a problem with the provided additional fields: %s is required" msgstr "" #. translators: %s: is the field label -#: src/StoreApi/Routes/V1/Checkout.php:211 +#: src/StoreApi/Routes/V1/Checkout.php:212 msgid "There was a problem with the provided billing address: %s is required" msgstr "" #. translators: %s: is the field label -#: src/StoreApi/Routes/V1/Checkout.php:219 +#: src/StoreApi/Routes/V1/Checkout.php:220 msgid "There was a problem with the provided shipping address: %s is required" msgstr "" -#: src/StoreApi/Routes/V1/Checkout.php:476 +#: src/StoreApi/Routes/V1/Checkout.php:477 msgid "Unable to create order" msgstr "" -#: src/StoreApi/Routes/V1/Checkout.php:557 +#: src/StoreApi/Routes/V1/Checkout.php:558 #: src/StoreApi/Routes/V1/CheckoutOrder.php:244 msgid "No payment method provided." msgstr "" #. Translators: %s Payment method ID. -#: src/StoreApi/Routes/V1/Checkout.php:571 +#: src/StoreApi/Routes/V1/Checkout.php:572 msgid "%s is not available for this order—please choose a different payment method" msgstr "" #. Translators: %s Email address. -#: src/StoreApi/Routes/V1/Checkout.php:628 +#: src/StoreApi/Routes/V1/Checkout.php:629 msgid "An account is already registered with %s. Please log in or use a different email address." msgstr "" -#: src/StoreApi/Routes/V1/Checkout.php:636 +#: src/StoreApi/Routes/V1/Checkout.php:637 msgid "Please create a password for your account." msgstr "" diff --git a/wp/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php b/wp/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php index 0ce9d749..53a59d9a 100644 --- a/wp/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php +++ b/wp/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php @@ -371,7 +371,7 @@ class WC_Product_CSV_Importer_Controller { * * @since 3.1.0 */ - 'lines' => apply_filters( 'woocommerce_product_import_batch_size', 1 ), + 'lines' => apply_filters( 'woocommerce_product_import_batch_size', 30 ), 'parse' => true, ); diff --git a/wp/wp-content/plugins/woocommerce/includes/class-woocommerce.php b/wp/wp-content/plugins/woocommerce/includes/class-woocommerce.php index 9020e236..6af19418 100644 --- a/wp/wp-content/plugins/woocommerce/includes/class-woocommerce.php +++ b/wp/wp-content/plugins/woocommerce/includes/class-woocommerce.php @@ -46,7 +46,7 @@ final class WooCommerce { * * @var string */ - public $version = '9.3.2'; + public $version = '9.3.3'; /** * WooCommerce Schema version. diff --git a/wp/wp-content/plugins/woocommerce/readme.txt b/wp/wp-content/plugins/woocommerce/readme.txt index c3d14d27..11bf67f9 100644 --- a/wp/wp-content/plugins/woocommerce/readme.txt +++ b/wp/wp-content/plugins/woocommerce/readme.txt @@ -4,7 +4,7 @@ Tags: online store, ecommerce, shop, shopping cart, sell online Requires at least: 6.5 Tested up to: 6.6 Requires PHP: 7.4 -Stable tag: 9.3.1 +Stable tag: 9.3.2 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -169,11 +169,10 @@ WooCommerce comes with some sample data you can use to see how products look; im == Changelog == -= 9.3.2 2024-09-18 = += 9.3.3 2024-09-25 = -- Fix - Improve the product importer's handling of filepaths under Windows [#51456](https://github.com/woocommerce/woocommerce/pull/51456) -- Fix - Revert changes related to low stock product notifications [#51441](https://github.com/woocommerce/woocommerce/pull/51441) -- Fix - Resolve a bug where manually triggering `added_to_cart` event without a button element caused an Exception [#51449](https://github.com/woocommerce/woocommerce/pull/51449) +- Fix - An issue where virtual products could not be purchased when using the Additional Fields API [#51630](https://github.com/woocommerce/woocommerce/pull/51630) +- Fix - Restore the previous default for `woocommerce_product_import_batch_size` (process 30 lines per batch when importing product CSV data) [#51631] (https://github.com/woocommerce/woocommerce/pull/51631) [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt). diff --git a/wp/wp-content/plugins/woocommerce/src/StoreApi/Routes/V1/Checkout.php b/wp/wp-content/plugins/woocommerce/src/StoreApi/Routes/V1/Checkout.php index 24340348..3b3eab55 100644 --- a/wp/wp-content/plugins/woocommerce/src/StoreApi/Routes/V1/Checkout.php +++ b/wp/wp-content/plugins/woocommerce/src/StoreApi/Routes/V1/Checkout.php @@ -203,6 +203,7 @@ class Checkout extends AbstractCartRoute { $address_fields = $this->additional_fields_controller->get_fields_for_location( 'address' ); if ( ! empty( $address_fields ) ) { + $needs_shipping = WC()->cart->needs_shipping(); foreach ( $address_fields as $field_key => $address_field ) { if ( $address_field['required'] && ! isset( $request['billing_address'][ $field_key ] ) ) { throw new RouteException( @@ -212,7 +213,7 @@ class Checkout extends AbstractCartRoute { 400 ); } - if ( $address_field['required'] && ! isset( $request['shipping_address'][ $field_key ] ) ) { + if ( $needs_shipping && $address_field['required'] && ! isset( $request['shipping_address'][ $field_key ] ) ) { throw new RouteException( 'woocommerce_rest_checkout_missing_required_field', /* translators: %s: is the field label */ diff --git a/wp/wp-content/plugins/woocommerce/vendor/composer/installed.php b/wp/wp-content/plugins/woocommerce/vendor/composer/installed.php index 9dbfee13..988de253 100644 --- a/wp/wp-content/plugins/woocommerce/vendor/composer/installed.php +++ b/wp/wp-content/plugins/woocommerce/vendor/composer/installed.php @@ -1,8 +1,8 @@ array( 'name' => 'woocommerce/woocommerce', - 'pretty_version' => '9.3.2', - 'version' => '9.3.2.0', + 'pretty_version' => '9.3.3', + 'version' => '9.3.3.0', 'reference' => null, 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', @@ -212,8 +212,8 @@ 'dev_requirement' => false, ), 'woocommerce/woocommerce' => array( - 'pretty_version' => '9.3.2', - 'version' => '9.3.2.0', + 'pretty_version' => '9.3.3', + 'version' => '9.3.3.0', 'reference' => null, 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', diff --git a/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php b/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php index 07c1f0ea..2c4110fc 100644 --- a/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php +++ b/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php @@ -271,2363 +271,2363 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-tracking.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\AIEndpoint' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/AIEndpoint.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\BusinessDescription' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/BusinessDescription.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\Images' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/Images.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\Middleware' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/Middleware.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\Patterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/Patterns.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\Product' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/Product.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\StoreInfo' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/StoreInfo.php' ), 'Automattic\\WooCommerce\\Admin\\API\\AI\\StoreTitle' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/AI/StoreTitle.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Coupons.php' ), 'Automattic\\WooCommerce\\Admin\\API\\CustomAttributeTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/CustomAttributeTraits.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Customers' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Customers.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Data' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Data.php' ), 'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/DataCountries.php' ), 'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/DataDownloadIPs.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Experiments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Experiments.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Features' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Features.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Init.php' ), 'Automattic\\WooCommerce\\Admin\\API\\LaunchYourStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/LaunchYourStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Leaderboards.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Marketing.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingCampaignTypes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MarketingCampaignTypes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingCampaigns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MarketingCampaigns.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingChannels' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MarketingChannels.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MarketingOverview.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingRecommendations' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MarketingRecommendations.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MobileAppMagicLink' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/MobileAppMagicLink.php' ), 'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/NavigationFavorites.php' ), 'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/NoteActions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Notes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Notes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Notice' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Notice.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingFreeExtensions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingFreeExtensions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingPlugins' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingPlugins.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProductTypes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingProductTypes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingProducts.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingProfile.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingTasks.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/OnboardingThemes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Options' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Options.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Orders' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Orders.php' ), 'Automattic\\WooCommerce\\Admin\\API\\PaymentGatewaySuggestions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/PaymentGatewaySuggestions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Plugins.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributeTerms' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductAttributeTerms.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductAttributes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductCategories.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductForm' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductForm.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductReviews.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductVariations.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Products' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Products.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductsLowInStock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ProductsLowInStock.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Cache.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/DataStoreInterface.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Files/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Export/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/ExportableInterface.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/ExportableTraits.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\FilteredGetDataTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/FilteredGetDataTrait.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\GenericController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/GenericController.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\GenericQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/GenericQuery.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\GenericStatsController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/GenericStatsController.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Import/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\OrderAwareControllerTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/OrderAwareControllerTrait.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/ParameterException.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/PerformanceIndicators/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/SqlQuery.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\StatsDataStoreTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/StatsDataStoreTrait.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/TimeInterval.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/SettingOptions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ShippingPartnerSuggestions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/ShippingPartnerSuggestions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Taxes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Themes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/API/Themes.php' ), 'Automattic\\WooCommerce\\Admin\\BlockTemplates\\BlockContainerInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/BlockTemplates/BlockContainerInterface.php' ), 'Automattic\\WooCommerce\\Admin\\BlockTemplates\\BlockInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/BlockTemplates/BlockInterface.php' ), 'Automattic\\WooCommerce\\Admin\\BlockTemplates\\BlockTemplateInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/BlockTemplates/BlockTemplateInterface.php' ), 'Automattic\\WooCommerce\\Admin\\BlockTemplates\\ContainerInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/BlockTemplates/ContainerInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Composer/Package.php' ), 'Automattic\\WooCommerce\\Admin\\DataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/DataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php' ), 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/DateTimeProvider/DateTimeProviderInterface.php' ), 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/DeprecatedClassFacade.php' ), 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/FeaturePlugin.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\AsyncProductEditorCategoryField\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/AsyncProductEditorCategoryField/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCCoreProfilerOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCCoreProfilerOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCPaymentGateways' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCPaymentGateways.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCSettings' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCSettings.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCShipping' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCShipping.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCTaskOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCTaskOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Exporters\\ExportWCTaxRates' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Exporters/ExportWCTaxRates.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Importers\\ImportSetWCPaymentGateways' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Importers/ImportSetWCPaymentGateways.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Importers\\ImportSetWCShipping' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Importers/ImportSetWCShipping.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Importers\\ImportSetWCTaxRates' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Importers/ImportSetWCTaxRates.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\RestApi' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/RestApi.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Steps\\SetWCPaymentGateways' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Steps/SetWCPaymentGateways.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Steps\\SetWCShipping' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Steps/SetWCShipping.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Blueprint\\Steps\\SetWCTaxRates' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Blueprint/Steps/SetWCTaxRates.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Features.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\LaunchYourStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/LaunchYourStore.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\MarketingRecommendations\\DefaultMarketingRecommendations' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/MarketingRecommendations/DefaultMarketingRecommendations.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\MarketingRecommendations\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/MarketingRecommendations/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\MarketingRecommendations\\MarketingRecommendationsDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/MarketingRecommendations/MarketingRecommendationsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/CoreMenu.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Favorites.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Menu.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Screen.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/Onboarding.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedExtendedTask' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Task' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Task.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskList' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskList.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskListSection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskListSection.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskLists' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskLists.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\AdditionalPayments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Appearance' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\CustomizeStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/CustomizeStore.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ExperimentalShippingRecommendation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ExperimentalShippingRecommendation.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ExtendStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ExtendStore.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\GetMobileApp' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/GetMobileApp.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\LaunchYourStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/LaunchYourStore.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Marketing' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Payments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Payments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Products' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Products.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Purchase' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ReviewShippingOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ReviewShippingOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Shipping' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreCreation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreDetails' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Tax' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Tax.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\TourInAppMarketplace' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/TourInAppMarketplace.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\WooCommercePayments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaySuggestionsDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\BlockRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/BlockRegistry.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\BlockTemplateUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/BlockTemplateUtils.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductFormsController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductFormsController.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductTemplate.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductTemplates\\GroupInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductTemplates/GroupInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductTemplates\\ProductFormTemplateInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductFormTemplateInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductTemplates\\SectionInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductTemplates/SectionInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\ProductTemplates\\SubsectionInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/ProductTemplates/SubsectionInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\RedirectionController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/RedirectionController.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ProductBlockEditor\\Tracks' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ProductBlockEditor/Tracks.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ShippingPartnerSuggestions\\DefaultShippingPartners' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ShippingPartnerSuggestions/DefaultShippingPartners.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ShippingPartnerSuggestions\\ShippingPartnerSuggestions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ShippingPartnerSuggestions/ShippingPartnerSuggestions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\ShippingPartnerSuggestions\\ShippingPartnerSuggestionsDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/ShippingPartnerSuggestions/ShippingPartnerSuggestionsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Features/TransientNotices.php' ), 'Automattic\\WooCommerce\\Admin\\Loader' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Loader.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/InstalledExtensions.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\MarketingCampaign' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/MarketingCampaign.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\MarketingCampaignType' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/MarketingCampaignType.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\MarketingChannelInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/MarketingChannelInterface.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\MarketingChannels' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/MarketingChannels.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\Price' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Marketing/Price.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/Note.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/NoteTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/Notes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/NotesUnavailableException.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Overrides/Order.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Overrides/OrderRefund.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Overrides/OrderTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgrader.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgraderSkin.php' ), 'Automattic\\WooCommerce\\Admin\\PageController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PageController.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsHelper.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsInstallLoggers\\AsyncPluginsInstallLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsInstallLoggers/AsyncPluginsInstallLogger.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsInstallLoggers\\PluginsInstallLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsInstallLoggers/PluginsInstallLogger.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsInstaller.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProvider.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProviderInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ComparisonOperation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluationLogger.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsWooExpressRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsWooExpressRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrdersProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleEvaluator.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/SpecRunner.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TotalPaymentsVolumeProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TotalPaymentsVolumeProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerService.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/Count.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\PrepareUrl' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/PrepareUrl.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\DataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/DataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RemoteSpecsEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RemoteSpecsEngine.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\BaseLocationCountryRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/BaseLocationCountryRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\BaseLocationStateRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/BaseLocationStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\ComparisonOperation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/ComparisonOperation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\EvaluateAndGetStatus' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/EvaluateAndGetStatus.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\EvaluationLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/EvaluationLogger.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\FailRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/FailRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\GetRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/GetRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\IsEcommerceRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/IsEcommerceRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\IsWooExpressRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/IsWooExpressRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\NotRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/NotRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\NoteStatusRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/NoteStatusRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\OnboardingProfileRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/OnboardingProfileRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\OptionRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/OptionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\OrRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/OrRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\OrderCountRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/OrderCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\OrdersProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/OrdersProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\PassRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/PassRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\PluginVersionRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/PluginVersionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\PluginsActivatedRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/PluginsActivatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\ProductCountRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/ProductCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\PublishAfterTimeRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/PublishAfterTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\PublishBeforeTimeRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/PublishBeforeTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\RuleEvaluator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/RuleEvaluator.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\RuleProcessorInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/RuleProcessorInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\StoredStateRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/StoredStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\StoredStateSetupForProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/StoredStateSetupForProducts.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\TotalPaymentsVolumeProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/TotalPaymentsVolumeProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\ArrayColumn' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/ArrayColumn.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\ArrayFlatten' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/ArrayFlatten.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\ArrayKeys' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/ArrayKeys.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\ArraySearch' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/ArraySearch.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\ArrayValues' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/ArrayValues.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\Count' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/Count.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\DotNotation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/DotNotation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\PrepareUrl' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/PrepareUrl.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\TransformerInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/TransformerInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\Transformers\\TransformerService' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/Transformers/TransformerService.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\WCAdminActiveForProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/WCAdminActiveForProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\WCAdminActiveForRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/WCAdminActiveForRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteSpecs\\RuleProcessors\\WooCommerceAdminUpdatedRuleProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/RemoteSpecs/RuleProcessors/WooCommerceAdminUpdatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/ReportCSVEmail.php' ), 'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/ReportCSVExporter.php' ), 'Automattic\\WooCommerce\\Admin\\ReportExporter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/ReportExporter.php' ), 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/ReportsSync.php' ), 'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/Schedulers/SchedulerTraits.php' ), 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Admin/WCAdminHelper.php' ), 'Automattic\\WooCommerce\\Autoloader' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Autoloader.php' ), 'Automattic\\WooCommerce\\Blocks\\AIContent\\ContentProcessor' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AIContent/ContentProcessor.php' ), 'Automattic\\WooCommerce\\Blocks\\AIContent\\PatternsDictionary' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AIContent/PatternsDictionary.php' ), 'Automattic\\WooCommerce\\Blocks\\AIContent\\PatternsHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AIContent/PatternsHelper.php' ), 'Automattic\\WooCommerce\\Blocks\\AIContent\\UpdatePatterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AIContent/UpdatePatterns.php' ), 'Automattic\\WooCommerce\\Blocks\\AIContent\\UpdateProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AIContent/UpdateProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\AI\\Configuration' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AI/Configuration.php' ), 'Automattic\\WooCommerce\\Blocks\\AI\\Connection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AI/Connection.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Assets.php' ), 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/AssetsController.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Assets/Api.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Assets/AssetDataRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockPatterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockPatterns.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTemplatesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTemplatesController.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTemplatesRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTemplatesRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypesController.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AbstractBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AbstractDynamicBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractInnerBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AbstractInnerBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AbstractProductGrid.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ActiveFilters.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AddToCartForm' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AddToCartForm.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AllProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AllReviews.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AtomicBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/AttributeFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Breadcrumbs' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/Breadcrumbs.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/Cart.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartAcceptedPaymentMethodsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartAcceptedPaymentMethodsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartCrossSellsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsProductsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartCrossSellsProductsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartExpressPaymentBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartExpressPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartItemsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartLineItemsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartLineItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryCouponFormBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryCouponFormBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryDiscountBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryDiscountBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryFeeBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryFeeBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryHeadingBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryHeadingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryShippingBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryShippingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummarySubtotalBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummarySubtotalBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryTaxesBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryTaxesBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryTotalsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartOrderSummaryTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartTotalsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CartTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CatalogSorting' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CatalogSorting.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/Checkout.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutActionsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutActionsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutAdditionalInformationBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutAdditionalInformationBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutBillingAddressBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutBillingAddressBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutContactInformationBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutContactInformationBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutExpressPaymentBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutExpressPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutFieldsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutFieldsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderNoteBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderNoteBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCartItemsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryCartItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCouponFormBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryCouponFormBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryDiscountBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryDiscountBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryFeeBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryFeeBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryShippingBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryShippingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummarySubtotalBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummarySubtotalBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryTaxesBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryTaxesBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryTotalsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutOrderSummaryTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutPaymentBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutPickupOptionsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutPickupOptionsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingAddressBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutShippingAddressBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingMethodBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutShippingMethodBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingMethodsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutShippingMethodsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTermsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutTermsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTotalsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CheckoutTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicShortcode' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ClassicShortcode.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ClassicTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ComingSoon' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ComingSoon.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CustomerAccount' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/CustomerAccount.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\EmptyCartBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/EmptyCartBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\EmptyMiniCartContentsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/EmptyMiniCartContentsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FeaturedCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedItem' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FeaturedItem.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FeaturedProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilledCartBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FilledCartBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilledMiniCartContentsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FilledMiniCartContentsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilterWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/FilterWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/HandpickedProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCart.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartCartButtonBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartCartButtonBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartCheckoutButtonBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartCheckoutButtonBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartContents' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartContents.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartFooterBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartFooterBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartItemsBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartProductsTableBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartProductsTableBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartShoppingButtonBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartShoppingButtonBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartTitleBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartTitleBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartTitleItemsCounterBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartTitleItemsCounterBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartTitleLabelBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/MiniCartTitleLabelBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\AbstractOrderConfirmationBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/AbstractOrderConfirmationBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\AdditionalFields' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/AdditionalFields.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\AdditionalFieldsWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/AdditionalFieldsWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\AdditionalInformation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/AdditionalInformation.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\BillingAddress' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/BillingAddress.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\BillingWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/BillingWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\Downloads' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/Downloads.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\DownloadsWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/DownloadsWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\ShippingAddress' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/ShippingAddress.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\ShippingWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/ShippingWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\Status' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/Status.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\Summary' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/Summary.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\Totals' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/Totals.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\OrderConfirmation\\TotalsWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/OrderConfirmation/TotalsWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PageContentWrapper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/PageContentWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/PriceFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProceedToCheckoutBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProceedToCheckoutBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductAverageRating' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductAverageRating.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductBestSellers.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductButton' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductButton.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductCategories.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCollection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductCollection.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCollectionNoResults' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductCollectionNoResults.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductDetails' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductDetails.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterActive' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterActive.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterAttribute' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterAttribute.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterClearButton' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterClearButton.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterPrice' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterPrice.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterRating' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterRating.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilterStockStatus' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilterStockStatus.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFilters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFilters.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFiltersOverlay' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFiltersOverlay.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductFiltersOverlayNavigation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductFiltersOverlayNavigation.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductGallery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductGallery.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductGalleryLargeImage' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductGalleryLargeImage.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductGalleryLargeImageNextPrevious' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductGalleryLargeImageNextPrevious.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductGalleryPager' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductGalleryPager.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductGalleryThumbnails' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductGalleryThumbnails.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImage' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductImage.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImageGallery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductImageGallery.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductMeta' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductMeta.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductNew.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductOnSale.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductPrice' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductPrice.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductQuery.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRating' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductRating.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRatingCounter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductRatingCounter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRatingStars' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductRatingStars.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductResultsCount' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductResultsCount.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductReviews' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductReviews.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSKU' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductSKU.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSaleBadge' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductSaleBadge.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductSearch.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductStockIndicator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductStockIndicator.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSummary' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductSummary.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductTag.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTitle' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductTitle.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductTopRated.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ProductsByAttribute.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\RatingFilter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/RatingFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\RelatedProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/RelatedProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ReviewsByCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/ReviewsByProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/SingleProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/StockFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StoreNotices' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/BlockTypes/StoreNotices.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Bootstrap.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Package.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CheckoutFields' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/CheckoutFields.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CheckoutFieldsAdmin' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/CheckoutFieldsAdmin.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CheckoutFieldsFrontend' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/CheckoutFieldsFrontend.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/CreateAccount.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/DraftOrders.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/Email/CustomerNewAccount.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/FeatureGating.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/GoogleAnalytics.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Hydration' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/Hydration.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Notices' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/Notices.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\OnboardingTasks\\ReviewCheckoutTask' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/OnboardingTasks/ReviewCheckoutTask.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\OnboardingTasks\\TasksController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/OnboardingTasks/TasksController.php' ), 'Automattic\\WooCommerce\\Blocks\\Images\\Pexels' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Images/Pexels.php' ), 'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/InboxNotifications.php' ), 'Automattic\\WooCommerce\\Blocks\\Installer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Installer.php' ), 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Integrations/IntegrationInterface.php' ), 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Integrations/IntegrationRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\InteractivityComponents\\CheckboxList' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/InteractivityComponents/CheckboxList.php' ), 'Automattic\\WooCommerce\\Blocks\\InteractivityComponents\\Dropdown' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/InteractivityComponents/Dropdown.php' ), 'Automattic\\WooCommerce\\Blocks\\Library' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Library.php' ), 'Automattic\\WooCommerce\\Blocks\\Migration' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Migration.php' ), 'Automattic\\WooCommerce\\Blocks\\Options' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Options.php' ), 'Automattic\\WooCommerce\\Blocks\\Package' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Package.php' ), 'Automattic\\WooCommerce\\Blocks\\Patterns\\AIPatterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Patterns/AIPatterns.php' ), 'Automattic\\WooCommerce\\Blocks\\Patterns\\PTKClient' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Patterns/PTKClient.php' ), 'Automattic\\WooCommerce\\Blocks\\Patterns\\PTKPatternsStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Patterns/PTKPatternsStore.php' ), 'Automattic\\WooCommerce\\Blocks\\Patterns\\PatternRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Patterns/PatternRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Api.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Integrations/AbstractPaymentMethodType.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Integrations/BankTransfer.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Integrations/CashOnDelivery.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Integrations/Cheque.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/Integrations/PayPal.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/PaymentMethodRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Payments/PaymentMethodTypeInterface.php' ), 'Automattic\\WooCommerce\\Blocks\\QueryFilters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/QueryFilters.php' ), 'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Registry/AbstractDependencyType.php' ), 'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Registry/Container.php' ), 'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Registry/FactoryType.php' ), 'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Registry/SharedType.php' ), 'Automattic\\WooCommerce\\Blocks\\Shipping\\PickupLocation' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Shipping/PickupLocation.php' ), 'Automattic\\WooCommerce\\Blocks\\Shipping\\ShippingController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Shipping/ShippingController.php' ), 'Automattic\\WooCommerce\\Blocks\\TemplateOptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/TemplateOptions.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\AbstractPageTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/AbstractPageTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\AbstractTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/AbstractTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\AbstractTemplateCompatibility' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/AbstractTemplateCompatibility.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\AbstractTemplatePart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/AbstractTemplatePart.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ArchiveProductTemplatesCompatibility' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ArchiveProductTemplatesCompatibility.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\CartTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/CartTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\CheckoutHeaderTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/CheckoutHeaderTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\CheckoutTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/CheckoutTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ClassicTemplatesCompatibility' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ClassicTemplatesCompatibility.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ComingSoonTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ComingSoonTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\MiniCartTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/MiniCartTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\OrderConfirmationTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/OrderConfirmationTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductAttributeTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductAttributeTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductCatalogTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductCatalogTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductCategoryTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductCategoryTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductFiltersOverlayTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductFiltersOverlayTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductFiltersTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductFiltersTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductSearchResultsTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductSearchResultsTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductTagTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/ProductTagTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\SingleProductTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/SingleProductTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\SingleProductTemplateCompatibility' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Templates/SingleProductTemplateCompatibility.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\BlockHooksTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/BlockHooksTrait.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\BlockTemplateUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/BlockTemplateUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/BlocksWpQuery.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\CartCheckoutUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/CartCheckoutUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\MiniCartUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/MiniCartUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\ProductCollectionUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/ProductCollectionUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\ProductGalleryUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/ProductGalleryUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\StyleAttributesUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/StyleAttributesUtils.php' ), 'Automattic\\WooCommerce\\Blocks\\Utils\\Utils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Utils/Utils.php' ), 'Automattic\\WooCommerce\\Blueprint\\BuiltInExporters' => array( @@ -2823,2363 +2823,2363 @@ return array( 'path' => $vendorDir . '/woocommerce/blueprint/src/ZipExportedSchema.php' ), 'Automattic\\WooCommerce\\Caches\\OrderCache' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caches/OrderCache.php' ), 'Automattic\\WooCommerce\\Caches\\OrderCacheController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caches/OrderCacheController.php' ), 'Automattic\\WooCommerce\\Caching\\CacheEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caching/CacheEngine.php' ), 'Automattic\\WooCommerce\\Caching\\CacheException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caching/CacheException.php' ), 'Automattic\\WooCommerce\\Caching\\CacheNameSpaceTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caching/CacheNameSpaceTrait.php' ), 'Automattic\\WooCommerce\\Caching\\ObjectCache' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caching/ObjectCache.php' ), 'Automattic\\WooCommerce\\Caching\\WPCacheEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Caching/WPCacheEngine.php' ), 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php' ), 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php' ), 'Automattic\\WooCommerce\\Container' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Container.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\CLIRunner' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/CLIRunner.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostMetaToOrderMetaMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostMetaToOrderMetaMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderAddressTableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderAddressTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderOpTableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderOpTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderTableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostsToOrdersMigrationController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationController.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MetaToCustomTableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/MetaToCustomTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MetaToMetaTableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/MetaToMetaTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MigrationHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/MigrationHelper.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\TableMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Database/Migrations/TableMigrator.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ActivityPanels' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ActivityPanels.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Analytics' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Analytics.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\AbstractBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/AbstractBlock.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\AbstractBlockTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/AbstractBlockTemplate.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\Block' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/Block.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\BlockContainerTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/BlockContainerTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\BlockFormattedTemplateTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/BlockFormattedTemplateTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\BlockTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/BlockTemplate.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\BlockTemplates\\BlockTemplateLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/BlockTemplates/BlockTemplateLogger.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CategoryLookup' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/CategoryLookup.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Coupons' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Coupons.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CouponsMovedTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/CouponsMovedTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CustomerEffortScoreTracks' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/CustomerEffortScoreTracks.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Events' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Events.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\FeaturePlugin' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/FeaturePlugin.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Homescreen' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Homescreen.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ImportExport\\CSVUploadHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ImportExport/CSVUploadHelper.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Loader' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Loader.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\FileV2\\File' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/FileV2/File.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\FileV2\\FileController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/FileV2/FileController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\FileV2\\FileExporter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/FileV2/FileExporter.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\FileV2\\FileListTable' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/FileV2/FileListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\FileV2\\SearchListTable' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/FileV2/SearchListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\LogHandlerFileV2' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/LogHandlerFileV2.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\PageController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/PageController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Logging\\Settings' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Logging/Settings.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Marketing' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Marketing.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Marketing\\MarketingSpecs' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Marketing/MarketingSpecs.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Marketplace' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Marketplace.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\MobileAppBanner' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/MobileAppBanner.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddFirstProduct' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/AddFirstProduct.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ChoosingTheme' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/ChoosingTheme.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CouponPageMoved' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CouponPageMoved.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizeStoreWithBlocks' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizingProductCatalog' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizingProductCatalog.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EUVATNumber' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EUVATNumber.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EditProductsOnTheMove' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EditProductsOnTheMove.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EmailNotification' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EmailNotification.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstProduct' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/FirstProduct.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\GivingFeedbackNotes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/GivingFeedbackNotes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InstallJPAndWCSPlugins' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\LaunchChecklist' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/LaunchChecklist.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MagentoMigration' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MagentoMigration.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageOrdersOnTheGo' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MarketingJetpack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MarketingJetpack.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MerchantEmailNotifications' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MerchantEmailNotifications.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MigrateFromShopify' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MigrateFromShopify.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MobileApp' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MobileApp.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NewSalesRecord' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/NewSalesRecord.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnboardingPayments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OnboardingPayments.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnlineClothingStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OnlineClothingStore.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OrderMilestones' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OrderMilestones.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsMoreInfoNeeded' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsMoreInfoNeeded.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsRemindMeLater' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsRemindMeLater.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PerformanceOnMobile' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PerformanceOnMobile.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PersonalizeStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PersonalizeStore.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\RealTimeOrderAlerts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/RealTimeOrderAlerts.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\SellingOnlineCourses' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/SellingOnlineCourses.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TrackingOptIn' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/TrackingOptIn.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UnsecuredReportFiles' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/UnsecuredReportFiles.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommercePayments' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommercePayments.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommerceSubscriptions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommerceSubscriptions.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooSubscriptionsNotes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooSubscriptionsNotes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\Onboarding' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/Onboarding.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingFonts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingFonts.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingHelper.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingIndustries' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingIndustries.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingJetpack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingJetpack.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingMailchimp' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingMailchimp.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProducts' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProducts.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProfile' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProfile.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSetupWizard' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSync' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSync.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingThemes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingThemes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\COTRedirectionController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/COTRedirectionController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\Edit' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/Edit.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\EditLock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/EditLock.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\ListTable' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/ListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\CustomMetaBox' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/CustomMetaBox.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\CustomerHistory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/CustomerHistory.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\OrderAttribution' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/OrderAttribution.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\TaxonomiesMetaBox' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/TaxonomiesMetaBox.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PageController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/PageController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PostsRedirectionController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/PostsRedirectionController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\Component' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/Component.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\ComponentTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/ComponentTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\Field' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/Field.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\FormFactory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/FormFactory.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\Section' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/Section.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\Subsection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/Subsection.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductForm\\Tab' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductForm/Tab.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\Reviews' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/Reviews.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsCommentsOverrides' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsCommentsOverrides.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsListTable' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\EvaluateExtension' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/Init.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\RemoteFreeExtensionsDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteInboxNotifications' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteInboxNotifications.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\CustomersScheduler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/CustomersScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportInterface.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\MailchimpScheduler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/MailchimpScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\OrdersScheduler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/OrdersScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Settings' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Settings.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\SettingsNavigationFeature' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/SettingsNavigationFeature.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBanner' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBanner.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBannerDisplayRules' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBannerDisplayRules.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\SiteHealth' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/SiteHealth.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Survey' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Survey.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\SystemStatusReport' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/SystemStatusReport.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Translations' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/Translations.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminAssets' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminAssets.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminSharedSettings' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminSharedSettings.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminUser' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminUser.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\DefaultPromotions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/DefaultPromotions.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\Init' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/Init.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPayPromotionDataSourcePoller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPaymentGatewayPreInstallWCPayPromotion' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WcPayWelcomePage' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Admin/WcPayWelcomePage.php' ), 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php' ), 'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessingController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessingController.php' ), 'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessorInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessorInterface.php' ), 'Automattic\\WooCommerce\\Internal\\ComingSoon\\ComingSoonAdminBarBadge' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ComingSoon/ComingSoonAdminBarBadge.php' ), 'Automattic\\WooCommerce\\Internal\\ComingSoon\\ComingSoonCacheInvalidator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ComingSoon/ComingSoonCacheInvalidator.php' ), 'Automattic\\WooCommerce\\Internal\\ComingSoon\\ComingSoonHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ComingSoon/ComingSoonHelper.php' ), 'Automattic\\WooCommerce\\Internal\\ComingSoon\\ComingSoonRequestHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ComingSoon/ComingSoonRequestHandler.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\CustomMetaDataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/CustomMetaDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\CustomOrdersTableController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/CustomOrdersTableController.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\DataSynchronizer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/DataSynchronizer.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\LegacyDataCleanup' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/LegacyDataCleanup.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\LegacyDataHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/LegacyDataHandler.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStoreMeta' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStoreMeta.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableFieldQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableFieldQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableMetaQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableMetaQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableRefundDataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableRefundDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableSearchQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableSearchQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AbstractInterfaceServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AbstractInterfaceServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\BatchProcessingServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/BatchProcessingServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\COTMigrationServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ComingSoonServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ComingSoonServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\EnginesServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/EnginesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\FeaturesServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/FeaturesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ImportExportServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ImportExportServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\LayoutTemplatesServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/LayoutTemplatesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\LoggingServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/LoggingServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\MarketingServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/MarketingServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\MarketplaceServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/MarketplaceServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ObjectCacheServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ObjectCacheServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OptionSanitizerServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OptionSanitizerServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderAdminServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderAdminServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderAttributionServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderAttributionServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderMetaBoxServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderMetaBoxServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersControllersServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersControllersServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersDataStoreServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductDownloadsServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductImageBySKUServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductImageBySKUServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductReviewsServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductReviewsServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\StatsServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/StatsServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\UtilsClassesServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\FeaturesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/FeaturesController.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\AbstractProductFormTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/AbstractProductFormTemplate.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\DownloadableProductTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/DownloadableProductTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\Group' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/Group.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\ProductBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/ProductBlock.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\ProductVariationTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\Section' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/Section.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\SimpleProductTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\ProductBlockEditor\\ProductTemplates\\Subsection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Features/ProductBlockEditor/ProductTemplates/Subsection.php' ), 'Automattic\\WooCommerce\\Internal\\Font\\FontFace' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Font/FontFace.php' ), 'Automattic\\WooCommerce\\Internal\\Font\\FontFamily' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Font/FontFamily.php' ), 'Automattic\\WooCommerce\\Internal\\Integrations\\WPConsentAPI' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Integrations/WPConsentAPI.php' ), 'Automattic\\WooCommerce\\Internal\\Logging\\RemoteLogger' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Logging/RemoteLogger.php' ), 'Automattic\\WooCommerce\\Internal\\McStats' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/McStats.php' ), 'Automattic\\WooCommerce\\Internal\\OrderCouponDataMigrator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/OrderCouponDataMigrator.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\CouponsController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/CouponsController.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\IppFunctions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/IppFunctions.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\MobileMessagingHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/MobileMessagingHandler.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\OrderAttributionBlocksController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/OrderAttributionBlocksController.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\OrderAttributionController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/OrderAttributionController.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\TaxesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Orders/TaxesController.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\CLIRunner' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/CLIRunner.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\SyncUI' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\Table' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\UI' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\ApprovedDirectoriesException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Register' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Register.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\StoredUrl' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Synchronize' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php' ), 'Automattic\\WooCommerce\\Internal\\ProductImage\\MatchImageBySKU' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ProductImage/MatchImageBySKU.php' ), 'Automattic\\WooCommerce\\Internal\\ReceiptRendering\\ReceiptRenderingEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ReceiptRendering/ReceiptRenderingEngine.php' ), 'Automattic\\WooCommerce\\Internal\\ReceiptRendering\\ReceiptRenderingRestController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/ReceiptRendering/ReceiptRenderingRestController.php' ), 'Automattic\\WooCommerce\\Internal\\RegisterHooksInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/RegisterHooksInterface.php' ), 'Automattic\\WooCommerce\\Internal\\RestApiControllerBase' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/RestApiControllerBase.php' ), 'Automattic\\WooCommerce\\Internal\\RestApiParameterUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/RestApiParameterUtil.php' ), 'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php' ), 'Automattic\\WooCommerce\\Internal\\Settings\\OptionSanitizer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Settings/OptionSanitizer.php' ), 'Automattic\\WooCommerce\\Internal\\Traits\\AccessiblePrivateMethods' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Traits/AccessiblePrivateMethods.php' ), 'Automattic\\WooCommerce\\Internal\\Traits\\OrderAttributionMeta' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Traits/OrderAttributionMeta.php' ), 'Automattic\\WooCommerce\\Internal\\Traits\\ScriptDebug' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Traits/ScriptDebug.php' ), 'Automattic\\WooCommerce\\Internal\\TransientFiles\\TransientFilesEngine' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/TransientFiles/TransientFilesEngine.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\BlocksUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/BlocksUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\COTMigrationUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/COTMigrationUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\DatabaseUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/DatabaseUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\FilesystemUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/FilesystemUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\HtmlSanitizer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/HtmlSanitizer.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\LegacyRestApiStub' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/LegacyRestApiStub.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\PluginInstaller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/PluginInstaller.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\Types' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/Types.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\URL' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/URL.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\URLException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/URLException.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\Users' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/Users.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\WebhookUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/Utilities/WebhookUtil.php' ), 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php' ), 'Automattic\\WooCommerce\\LayoutTemplates\\LayoutTemplateRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/LayoutTemplates/LayoutTemplateRegistry.php' ), 'Automattic\\WooCommerce\\Packages' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Packages.php' ), 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Proxies/ActionsProxy.php' ), 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Proxies/LegacyProxy.php' ), 'Automattic\\WooCommerce\\RestApi\\Package' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Package.php' ), 'Automattic\\WooCommerce\\RestApi\\Server' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Server.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php' ), 'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php' ), 'Automattic\\WooCommerce\\StoreApi\\Authentication' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Authentication.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidCartException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/InvalidCartException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidStockLevelsInCartException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\NotPurchasableException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/NotPurchasableException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\OutOfStockException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/OutOfStockException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\PartialOutOfStockException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/PartialOutOfStockException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\RouteException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/RouteException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\StockAvailabilityException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/StockAvailabilityException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\TooManyInCartException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Exceptions/TooManyInCartException.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters\\CurrencyFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters/CurrencyFormatter.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters\\DefaultFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters/DefaultFormatter.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters\\FormatterInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters/FormatterInterface.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters\\HtmlFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters/HtmlFormatter.php' ), 'Automattic\\WooCommerce\\StoreApi\\Formatters\\MoneyFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Formatters/MoneyFormatter.php' ), 'Automattic\\WooCommerce\\StoreApi\\Legacy' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Legacy.php' ), 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentContext' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Payments/PaymentContext.php' ), 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentResult' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Payments/PaymentResult.php' ), 'Automattic\\WooCommerce\\StoreApi\\RoutesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/RoutesController.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\RouteInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/RouteInterface.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AI\\Middleware' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/AI/Middleware.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AI\\Products' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/AI/Products.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractCartRoute' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/AbstractCartRoute.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractRoute' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/AbstractRoute.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractTermsRoute' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/AbstractTermsRoute.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Batch' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Batch.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Cart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Cart.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartAddItem' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartAddItem.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartApplyCoupon' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartApplyCoupon.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCoupons' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartCoupons.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCouponsByCode' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartCouponsByCode.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartExtensions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartExtensions.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItems' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartItems.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItemsByKey' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartItemsByKey.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveCoupon' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartRemoveCoupon.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveItem' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartRemoveItem.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartSelectShippingRate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartSelectShippingRate.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateCustomer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartUpdateCustomer.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateItem' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CartUpdateItem.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Checkout' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Checkout.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CheckoutOrder' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/CheckoutOrder.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Order' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Order.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Patterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Patterns.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributeTerms' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductAttributeTerms.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductAttributes.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributesById' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductAttributesById.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategories' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductCategories.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategoriesById' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductCategoriesById.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCollectionData' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductCollectionData.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductReviews' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductReviews.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductTags' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductTags.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Products' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/Products.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductsById' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductsById.php' ), 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductsBySlug' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Routes/V1/ProductsBySlug.php' ), 'Automattic\\WooCommerce\\StoreApi\\SchemaController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/SchemaController.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\ExtendSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/ExtendSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AI\\ProductsSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/AI/ProductsSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractAddressSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/AbstractAddressSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/AbstractSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BatchSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/BatchSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BillingAddressSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/BillingAddressSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartCouponSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartCouponSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartExtensionsSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartExtensionsSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartFeeSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartFeeSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartItemSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartItemSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartShippingRateSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CartShippingRateSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CheckoutOrderSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CheckoutOrderSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CheckoutSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/CheckoutSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ErrorSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ErrorSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ImageAttachmentSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ItemSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ItemSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderCouponSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/OrderCouponSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderFeeSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/OrderFeeSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderItemSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/OrderItemSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/OrderSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\PatternsSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/PatternsSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductAttributeSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ProductAttributeSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCategorySchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ProductCategorySchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCollectionDataSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductReviewSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ProductReviewSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ProductSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ShippingAddressSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/ShippingAddressSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\TermSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Schemas/V1/TermSchema.php' ), 'Automattic\\WooCommerce\\StoreApi\\SessionHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/SessionHandler.php' ), 'Automattic\\WooCommerce\\StoreApi\\StoreApi' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/StoreApi.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ArrayUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/ArrayUtils.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\CartController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/CartController.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\CheckoutTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/CheckoutTrait.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\DraftOrderTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/DraftOrderTrait.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\JsonWebToken' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/JsonWebToken.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\LocalPickupUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/LocalPickupUtils.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\NoticeHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/NoticeHandler.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\OrderAuthorizationTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/OrderAuthorizationTrait.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\OrderController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/OrderController.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\Pagination' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/Pagination.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductItemTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/ProductItemTrait.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/ProductQuery.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQueryFilters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/ProductQueryFilters.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\QuantityLimits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/QuantityLimits.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\RateLimits' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/RateLimits.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\SanitizationUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/SanitizationUtils.php' ), 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ValidationUtils' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/Utilities/ValidationUtils.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\DynamicDecorator' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/DynamicDecorator.php' ), 'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/Tools/FakeQueue.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\LaunchYourStoreTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/LaunchYourStoreTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\MarketingCampaignTypesTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/MarketingCampaignTypesTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\MarketingCampaignsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/MarketingCampaignsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\MarketingChannelsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/MarketingChannelsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\MarketingRecommendationsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/MarketingRecommendationsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\OnboardingPluginsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/OnboardingPluginsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\API\\PaymentGatewaySuggestionsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/API/PaymentGatewaySuggestionsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\Features\\Blueprint\\Importers\\ImportSetWCTaxRatesTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/Features/Blueprint/Importers/ImportSetWCTaxRatesTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\Features\\OnboardingTasks\\Tasks\\ExperimentalShippingRecommendationTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/Features/OnboardingTasks/Tasks/ExperimentalShippingRecommendationTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\Features\\ShippingPartnerSuggestions\\DefaultShippingPartnersTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/ShippingPartnerSuggestions/DefaultShippingPartnersTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\Marketing\\MarketingCampaignTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/Marketing/MarketingCampaignTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\Marketing\\MarketingChannelsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/Marketing/MarketingChannelsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\ProductBlockEditor\\BlockRegistryTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/ProductBlockEditor/BlockRegistryTest.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\ProductBlockEditor\\ProductTemplates\\CustomProductFormTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/ProductBlockEditor/ProductTemplates/CustomProductFormTemplate.php' ), 'Automattic\\WooCommerce\\Tests\\Admin\\ProductBlockEditor\\ProductTemplates\\CustomProductFormTemplateTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Admin/ProductBlockEditor/ProductTemplates/CustomProductFormTemplateTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\AI\\ConnectionTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/AI/ConnectionTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Assets\\AssetDataRegistry' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Assets/AssetDataRegistry.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypesController' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypesController.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypes\\Cart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypes/Cart.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypes\\MiniCartUtilsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Utils/MiniCartUtilsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypes\\OrderConfirmation\\Totals' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypes/OrderConfirmation/Totals.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypes\\ProductCollection' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypes/ProductCollection.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\BlockTypes\\ProductQuery' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypes/ProductQuery.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Bootstrap\\MainFile' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Bootstrap/MainFile.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Domain\\Package\\Package' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Domain/Package.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Helpers\\FixtureData' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Helpers/FixtureData.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Helpers\\TestValidateSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Helpers/TestValidateSchema.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Helpers\\ValidateSchema' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Helpers/ValidateSchema.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Library\\DeleteDraftOrders' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Domain/Services/DeleteDraftOrders.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Library\\Hydration' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Domain/Services/Hydration.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\AssetDataRegistryMock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/AssetDataRegistry.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\BlockHooksTestBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/BlockHooksTestBlock.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\CartCheckoutUtilsMock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/CartCheckoutUtilsMock.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\MockTestDependency' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/MockTestDependency.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\OrderConfirmation\\TotalsMock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/OrderConfirmation/TotalsMock.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\ProductCollectionMock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/ProductCollectionMock.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Mocks\\ProductQueryMock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/mocks/ProductQueryMock.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Patterns\\PTKClientTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Patterns/PTKClientTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Patterns\\PTKPatternsStoreTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Patterns/PTKPatternsStoreTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Patterns\\PatternRegistryTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Patterns/PatternRegistryTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Registry\\Container' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Registry/Container.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\ControllerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/ControllerTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\ExtendSchemaTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/ExtendSchemaTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Formatters\\TestCurrencyFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Formatters/TestCurrencyFormatter.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Formatters\\TestFormatters' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Formatters/TestFormatters.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Formatters\\TestHtmlFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Formatters/TestHtmlFormatter.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Formatters\\TestMoneyFormatter' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Formatters/TestMoneyFormatter.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\MockSessionHandler' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/MockSessionHandler.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\RateLimitsTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/RateLimitsTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\AdditionalFields' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/AdditionalFields.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\Batch' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/Batch.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\Cart' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/Cart.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\CartCoupons' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/CartCoupons.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\CartExtensions' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/CartExtensions.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\CartItems' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/CartItems.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\Checkout' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/Checkout.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\ControllerTestCase' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/ControllerTestCase.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\Patterns' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/Patterns.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\ProductAttributeTerms' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/ProductAttributeTerms.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\ProductAttributes' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/ProductAttributes.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\ProductCollectionData' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/ProductCollectionData.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Routes\\Products' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Routes/Products.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Utilities\\CartControllerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Utilities/CartController.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Utilities\\NoticeHandlerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Utilities/NoticeHandler.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Utilities\\OrderControllerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Utilities/OrderController.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\StoreApi\\Utilities\\ProductQueryFiltersTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Utilities/ProductQueryFilters.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Templates\\BlockHooksTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/BlockTypes/BlockHooksTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Templates\\SingleProductTemplateCompatibilityTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Templates/SingleProductTemplateCompatibilityTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Templates\\SingleProductTemplateTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Templates/SingleProductTemplateTests.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Utils\\BlockTemplateUtilsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Utils/BlockTemplateUtilsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Blocks\\Utils\\MigrationTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/Migration.php' ), 'Automattic\\WooCommerce\\Tests\\Caching\\CacheExceptionTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Caching/CacheExceptionTest.php' ), 'Automattic\\WooCommerce\\Tests\\Caching\\InvalidObjectCacheClass' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Caching/InvalidObjectCacheClass.php' ), 'Automattic\\WooCommerce\\Tests\\Caching\\ObjectCacheTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Caching/ObjectCacheTest.php' ), 'Automattic\\WooCommerce\\Tests\\Caching\\WPCacheEngineTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Caching/WPCacheEngineTest.php' ), 'Automattic\\WooCommerce\\Tests\\ComingSoon\\ComingSoonCacheInvalidatorTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ComingSoon/ComingSoonCacheInvalidatorTest.php' ), 'Automattic\\WooCommerce\\Tests\\ComingSoon\\ComingSoonHelperTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ComingSoon/ComingSoonHelperTest.php' ), 'Automattic\\WooCommerce\\Tests\\ComingSoon\\ComingSoonRequestHandlerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ComingSoon/ComingSoonRequestHandlerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\BlockTemplateTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/BlockTemplateTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\BlockTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/BlockTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\CustomBlock' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/CustomBlock.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\CustomBlockInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/CustomBlockInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\CustomBlockTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/CustomBlockTemplate.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\CustomBlockTemplateTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/CustomBlockTemplateTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\BlockTemplates\\CustomBlockTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/BlockTemplates/CustomBlockTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Logging\\FileV2\\FileControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Logging/FileV2/FileControllerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Logging\\FileV2\\FileTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Logging/FileV2/FileTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Logging\\LogHandlerFileV2Test' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Logging/LogHandlerFileV2Test.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Logging\\SettingsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Logging/SettingsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Orders\\ListTableTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/ListTableTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Orders\\MetaBoxes\\OrderAttributionTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/MetaBoxes/OrderAttributionTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\Orders\\PageControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/PageControllerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsCommentsOverridesTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsCommentsOverridesTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsListTableTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsListTableTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensionsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensionsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\RemoteFreeExtensions\\InitTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/RemoteFreeExtensions/InitTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ShippingPartnerSuggestions\\InitTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/MarketingRecommendations/InitTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ShippingPartnerSuggestions\\ShippingPartnerSuggestionsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/ShippingPartnerSuggestions/ShippingPartnerSuggestionsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\WCPayPromotion\\DefaultPromotionsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/WCPayPromotion/DefaultPromotionsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\WCPayPromotion\\InitTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/WCPayPromotion/InitTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractInterfaceServiceProviderTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractInterfaceServiceProviderTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\AnotherClassInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/AnotherClassInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithMultipleInterfaces' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithMultipleInterfaces.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNoInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNoInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DerivedDependencyClass' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DerivedDependencyClass.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassA' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassA.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassAWithInterface1' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassAWithInterface1.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassAWithInterface2' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassAWithInterface2.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassB' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassB.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassBWithInterface1' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassBWithInterface1.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ClassBWithInterface2' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ClassBWithInterface2.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ProviderA' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ProviderA.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\ProviderB' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/ProviderB.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleProviders\\TheInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleProviders/TheInterface.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Features\\FeaturesControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Features/FeaturesControllerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Integration\\WPConsentAPITest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Integration/WPConsentAPITest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Logging\\RemoteLoggerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Logging/RemoteLoggerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Logging\\RemoteLoggerWithEnvironmentOverride' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Logging/RemoteLoggerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\McStatsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/McStatsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Orders\\IppFunctionsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Orders/IppFunctionsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Orders\\OrderAttributionControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Orders/OrderAttributionControllerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\RegisterTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/RegisterTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\SynchronizeTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/SynchronizeTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\ReceiptRendering\\ReceiptRenderingEngineTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/ReceiptRendering/ReceiptRenderingEngineTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\RestApiParameterUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/RestApiParameterUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Telemetry\\TelemetryControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Telemetry/TelemetryControllerTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Traits\\AccessiblePrivateMethodsTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Traits/AccessiblePrivateMethodsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Traits\\BaseClass' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Traits/AccessiblePrivateMethodsTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\TransientFilesEngineTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/TransientFiles/TransientFilesEngineTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\FilesystemUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/FilesystemUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\TypesTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/Types.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\URLTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/URLTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\UsersTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/UsersTest.php' ), 'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php' ), 'Automattic\\WooCommerce\\Tests\\LayoutTemplates\\LayoutTemplateRegistryTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/LayoutTemplates/LayoutTemplateRegistryTest.php' ), 'Automattic\\WooCommerce\\Tests\\LayoutTemplates\\TestLayoutTemplate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/LayoutTemplates/TestLayoutTemplate.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\DynamicDecoratorTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/DynamicDecoratorTest.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassWithReplaceableMembers' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassWithReplaceableMembers.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php' ), 'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\DiscountsUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/DiscountsUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\I18nUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/I18nUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\PluginUtilTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/PluginUtilTests.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\SanitizationUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Blocks/StoreApi/Utilities/SanitizationUtilTest.php' ), 'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php' ), 'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/ArrayUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\DiscountsUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/DiscountsUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\FeaturesUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/FeaturesUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\I18nUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/I18nUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\LoggingUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/LoggingUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/NumberUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\OrderUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/OrderUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\PluginUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/PluginUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\RestApiUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/RestApiUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\StringUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/StringUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\TimeUtil' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Utilities/TimeUtil.php' ), 'Automattic\\WooCommerce\\Vendor\\Detection\\MobileDetect' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/Detection/MobileDetect.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Container.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\ContainerExceptionInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/Psr/Container/ContainerExceptionInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\ContainerInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/Psr/Container/ContainerInterface.php' ), 'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\NotFoundExceptionInterface' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/lib/packages/Psr/Container/NotFoundExceptionInterface.php' ), 'BatchProcessingControllerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/BatchProcessing/BatchProcessingControllerTests.php' ), 'BlockHooksVersionTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Database/BlockHooksVersionTests.php' ), 'COTMigrationUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php' ), 'COTRedirectionControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/COTRedirectionControllerTest.php' ), 'ClassWithLoadMethod' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithLoadMethod.php' ), 'ClassWithSingleton' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithSingleton.php' ), 'Composer\\Installers\\AglInstaller' => array( @@ -5595,19 +5595,19 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-container.php' ), 'DataSynchronizerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/DataSynchronizerTests.php' ), 'DatabaseUtilTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/DatabaseUtilTest.php' ), 'EditLockTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/EditLockTest.php' ), 'Foo\\Bar\\ClassWithNonWooNamespace' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassWithNonWooNamespace.php' ), 'Hook_Manager' => array( @@ -5615,7 +5615,7 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'HtmlSanitizerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Utilities/HtmlSanitizerTest.php' ), 'Jetpack_IXR_Client' => array( @@ -5651,11 +5651,11 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php' ), 'LegacyDataCleanupTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/LegacyDataCleanupTests.php' ), 'LegacyDataHandlerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/LegacyDataHandlerTests.php' ), 'Manifest_Reader' => array( @@ -5683,7 +5683,7 @@ return array( 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php' ), 'MobileMessagingHandlerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/Orders/MobileMessagingHandlerTest.php' ), 'Opis\\JsonSchema\\CompliantValidator' => array( @@ -6499,23 +6499,23 @@ return array( 'path' => $vendorDir . '/opis/uri/src/UriTemplate.php' ), 'OrderCacheTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Caching/OrderCacheTest.php' ), 'OrdersTableDataStoreRestOrdersControllerTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableDataStoreRestOrdersControllerTests.php' ), 'OrdersTableDataStoreTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableDataStoreTests.php' ), 'OrdersTableQueryTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableQueryTests.php' ), 'OrdersTableRefundDataStoreTests' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableRefundDataStoreTests.php' ), 'PHP_Autoloader' => array( @@ -6579,7 +6579,7 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-plugins-handler.php' ), 'PostsToOrdersMigrationControllerTest' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/tests/php/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationControllerTest.php' ), 'Sabberworm\\CSS\\CSSList\\AtRuleBlockList' => array( @@ -6967,403 +6967,403 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-selector.php' ), 'WC_Interactivity_Initial_State' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Interactivity/class-wc-interactivity-initial-state.php' ), 'WC_REST_CRUD_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php' ), 'WC_REST_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php' ), 'WC_REST_Coupons_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php' ), 'WC_REST_Coupons_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php' ), 'WC_REST_Coupons_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php' ), 'WC_REST_Customer_Downloads_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php' ), 'WC_REST_Customer_Downloads_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php' ), 'WC_REST_Customer_Downloads_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php' ), 'WC_REST_Customers_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php' ), 'WC_REST_Customers_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php' ), 'WC_REST_Customers_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php' ), 'WC_REST_Data_Continents_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php' ), 'WC_REST_Data_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php' ), 'WC_REST_Data_Countries_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php' ), 'WC_REST_Data_Currencies_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php' ), 'WC_REST_Layout_Templates_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-layout-templates-controller.php' ), 'WC_REST_Network_Orders_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php' ), 'WC_REST_Network_Orders_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php' ), 'WC_REST_Order_Notes_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php' ), 'WC_REST_Order_Notes_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php' ), 'WC_REST_Order_Notes_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php' ), 'WC_REST_Order_Refunds_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php' ), 'WC_REST_Order_Refunds_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php' ), 'WC_REST_Order_Refunds_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php' ), 'WC_REST_Orders_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php' ), 'WC_REST_Orders_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php' ), 'WC_REST_Orders_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php' ), 'WC_REST_Payment_Gateways_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php' ), 'WC_REST_Payment_Gateways_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php' ), 'WC_REST_Posts_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php' ), 'WC_REST_Product_Attribute_Terms_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php' ), 'WC_REST_Product_Attribute_Terms_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php' ), 'WC_REST_Product_Attribute_Terms_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php' ), 'WC_REST_Product_Attributes_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php' ), 'WC_REST_Product_Attributes_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php' ), 'WC_REST_Product_Attributes_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php' ), 'WC_REST_Product_Categories_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php' ), 'WC_REST_Product_Categories_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php' ), 'WC_REST_Product_Categories_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php' ), 'WC_REST_Product_Custom_Fields_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-custom-fields-controller.php' ), 'WC_REST_Product_Reviews_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php' ), 'WC_REST_Product_Reviews_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php' ), 'WC_REST_Product_Reviews_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php' ), 'WC_REST_Product_Shipping_Classes_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php' ), 'WC_REST_Product_Shipping_Classes_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php' ), 'WC_REST_Product_Shipping_Classes_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php' ), 'WC_REST_Product_Tags_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php' ), 'WC_REST_Product_Tags_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php' ), 'WC_REST_Product_Tags_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php' ), 'WC_REST_Product_Variations_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php' ), 'WC_REST_Product_Variations_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php' ), 'WC_REST_Products_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php' ), 'WC_REST_Products_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php' ), 'WC_REST_Products_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php' ), 'WC_REST_Refunds_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-refunds-controller.php' ), 'WC_REST_Report_Coupons_Totals_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php' ), 'WC_REST_Report_Customers_Totals_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php' ), 'WC_REST_Report_Orders_Totals_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php' ), 'WC_REST_Report_Products_Totals_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php' ), 'WC_REST_Report_Reviews_Totals_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php' ), 'WC_REST_Report_Sales_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php' ), 'WC_REST_Report_Sales_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php' ), 'WC_REST_Report_Sales_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php' ), 'WC_REST_Report_Top_Sellers_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php' ), 'WC_REST_Report_Top_Sellers_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php' ), 'WC_REST_Report_Top_Sellers_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php' ), 'WC_REST_Reports_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php' ), 'WC_REST_Reports_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php' ), 'WC_REST_Reports_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php' ), 'WC_REST_Setting_Options_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php' ), 'WC_REST_Setting_Options_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php' ), 'WC_REST_Settings_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php' ), 'WC_REST_Settings_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php' ), 'WC_REST_Shipping_Methods_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php' ), 'WC_REST_Shipping_Methods_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php' ), 'WC_REST_Shipping_Zone_Locations_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php' ), 'WC_REST_Shipping_Zone_Locations_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php' ), 'WC_REST_Shipping_Zone_Methods_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php' ), 'WC_REST_Shipping_Zone_Methods_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php' ), 'WC_REST_Shipping_Zones_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php' ), 'WC_REST_Shipping_Zones_Controller_Base' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php' ), 'WC_REST_Shipping_Zones_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php' ), 'WC_REST_System_Status_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php' ), 'WC_REST_System_Status_Tools_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php' ), 'WC_REST_System_Status_Tools_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php' ), 'WC_REST_System_Status_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php' ), 'WC_REST_Tax_Classes_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php' ), 'WC_REST_Tax_Classes_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php' ), 'WC_REST_Tax_Classes_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php' ), 'WC_REST_Taxes_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php' ), 'WC_REST_Taxes_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php' ), 'WC_REST_Taxes_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php' ), 'WC_REST_Telemetry_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Telemetry/class-wc-rest-telemetry-controller.php' ), 'WC_REST_Terms_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php' ), 'WC_REST_Webhook_Deliveries_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php' ), 'WC_REST_Webhook_Deliveries_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php' ), 'WC_REST_Webhooks_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php' ), 'WC_REST_Webhooks_V1_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php' ), 'WC_REST_Webhooks_V2_Controller' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php' ), ); diff --git a/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php b/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php index fb2400ed..51c4f851 100644 --- a/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php +++ b/wp/wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php @@ -15,15 +15,15 @@ return array( 'path' => $vendorDir . '/automattic/jetpack-assets/actions.php' ), '44e8414cd27982ecf86403af6e48f123' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/deprecated.php' ), '9ce98895d0a470c71998c4b530020d26' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/StoreApi/functions.php' ), 'c379ea42c3f5964a973a7106b08c5ef0' => array( - 'version' => '9.3.2.0', + 'version' => '9.3.3.0', 'path' => $baseDir . '/src/Blocks/Domain/Services/functions.php' ), ); diff --git a/wp/wp-content/plugins/woocommerce/woocommerce.php b/wp/wp-content/plugins/woocommerce/woocommerce.php index 10422e21..b5f65f7e 100644 --- a/wp/wp-content/plugins/woocommerce/woocommerce.php +++ b/wp/wp-content/plugins/woocommerce/woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce * Plugin URI: https://woocommerce.com/ * Description: An ecommerce toolkit that helps you sell anything. Beautifully. - * Version: 9.3.2 + * Version: 9.3.3 * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woocommerce