File manager - Edit - /home/lapakabqaryb6f7f/public_html/astra-sites.zip
Back
PK aG]���[0 0 5 admin/bsf-analytics/assets/css/minified/style.min.cssnu �[��� [ID*="-optin-notice"]{padding:1px 12px;border-left-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 20px 12px 0}[ID*="-optin-notice"] .button-primary{margin-right:5px}PK aG]�m�0 0 9 admin/bsf-analytics/assets/css/minified/style-rtl.min.cssnu �[��� [ID*="-optin-notice"]{padding:1px 12px;border-right-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 0 12px 20px}[ID*="-optin-notice"] .button-primary{margin-left:5px}PK aG]���q q 3 admin/bsf-analytics/assets/css/unminified/style.cssnu �[��� [ID*="-optin-notice"] { padding: 1px 12px; border-left-color: #007cba; } [ID*="-optin-notice"] .notice-container { padding-top: 10px; padding-bottom: 12px; } [ID*="-optin-notice"] .notice-content { margin: 0; } [ID*="-optin-notice"] .notice-heading { padding: 0 20px 12px 0; } [ID*="-optin-notice"] .button-primary { margin-right: 5px; }PK aG]���q q 7 admin/bsf-analytics/assets/css/unminified/style-rtl.cssnu �[��� [ID*="-optin-notice"] { padding: 1px 12px; border-right-color: #007cba; } [ID*="-optin-notice"] .notice-container { padding-top: 10px; padding-bottom: 12px; } [ID*="-optin-notice"] .notice-content { margin: 0; } [ID*="-optin-notice"] .notice-heading { padding: 0 0 12px 20px; } [ID*="-optin-notice"] .button-primary { margin-left: 5px; }PK aG]�R]�2 2 : admin/bsf-analytics/classes/class-bsf-analytics-helper.phpnu �[��� <?php /** * BSF analytics Helper Class File. * * @package bsf-analytics */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'BSF_Analytics_Helper' ) ) { /** * BSF analytics stat class. */ class BSF_Analytics_Helper { /** * Check is error in the received response. * * @param object $response Received API Response. * @return array $result Error result. */ public static function is_api_error( $response ) { $result = array( 'error' => false, 'error_message' => __( 'Oops! Something went wrong. Please refresh the page and try again.', 'astra-sites' ), 'error_code' => 0, ); if ( is_wp_error( $response ) ) { $result['error'] = true; $result['error_message'] = $response->get_error_message(); $result['error_code'] = $response->get_error_code(); } elseif ( ! empty( wp_remote_retrieve_response_code( $response ) ) && ! in_array( wp_remote_retrieve_response_code( $response ), array( 200, 201, 204 ), true ) ) { $result['error'] = true; $result['error_message'] = wp_remote_retrieve_response_message( $response ); $result['error_code'] = wp_remote_retrieve_response_code( $response ); } return $result; } /** * Get API headers * * @since 1.1.6 * @return array<string, string> */ public static function get_api_headers() { return array( 'Content-Type' => 'application/json', 'Accept' => 'application/json', ); } /** * Get API URL for sending analytics. * * @return string API URL. * @since 1.0.0 */ public static function get_api_url() { return defined( 'BSF_ANALYTICS_API_BASE_URL' ) ? BSF_ANALYTICS_API_BASE_URL : 'https://analytics.brainstormforce.com/'; } /** * Check if the current screen is allowed for the survey. * * This function checks if the current screen is one of the allowed screens for displaying the survey. * It uses the `get_current_screen` function to get the current screen information and compares it with the list of allowed screens. * * @since 1.1.6 * @return bool True if the current screen is allowed, false otherwise. */ public static function is_allowed_screen() { // This filter allows to dynamically modify the list of allowed screens for the survey. $allowed_screens = apply_filters( 'uds_survey_allowed_screens', array( 'plugins' ) ); $current_screen = get_current_screen(); // Check if $current_screen is a valid object before accessing its properties. if ( ! is_object( $current_screen ) ) { return false; // Return false if current screen is not valid. } $screen_id = $current_screen->id; if ( ! empty( $screen_id ) && in_array( $screen_id, $allowed_screens, true ) ) { return true; } return false; } } }PK aG]��xI I G admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.cssnu �[��� /* Base CSS to normalize the default. */ .uds-feedback-form--wrapper h2, .uds-feedback-form--wrapper p, .uds-feedback-form--wrapper input[type="radio"] { margin: 0; padding: 0; } .uds-feedback-form--wrapper .show { display: block; } .uds-feedback-form--wrapper .hide { display: none; } .uds-feedback-form--wrapper { align-items: center; background-color: rgba( 0, 0, 0, 0.75 ); bottom: 0; display: none; justify-content: center; left: 0; position: fixed; right: 0; top: 0; user-select: none; z-index: -9999; } .uds-feedback-form--wrapper.show_popup { display: flex !important; z-index: 99999; } .uds-feedback-form--wrapper .uds-feedback-form--container { background-color: #fff; border-radius: 8px; box-shadow: 4px 4px 24px rgba( 0, 0, 0, 0.25 ); max-width: 90%; width: 540px; } .uds-feedback-form--container .uds-form-header--wrapper { align-items: center; display: flex; justify-content: space-between; padding: 16px 20px 0; } .uds-feedback-form--container .uds-form-title--icon-wrapper { display: flex; align-items: center; gap: 12px; } .uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon, .uds-feedback-form--container .uds-form-header--wrapper .uds-close { width: 20px; height: 20px; } .uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title { color: #1f2937; font-size: 16px; font-weight: 600; line-height: 24px; text-align: left; } .uds-feedback-form--container .uds-form-header--wrapper .uds-close { color: #9ca3af; cursor: pointer; } .uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover { color: #4b5563; } .uds-feedback-form--container .uds-form-body--content { padding: 20px 20px 0 20px; display: flex; flex-direction: column; gap: 20px; } .uds-feedback-form--container .uds-form-body--content .uds-form-description { color: #1f2937; font-size: 16px; font-weight: 500; line-height: 24px; text-align: left; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback { color: #6b7280; font-size: 14px; font-weight: 400; line-height: 20px; text-align: left; width: 100%; padding: 9px 13px; border-radius: 6px; border-width: 1px; border-style: solid; border-color: #e5e7eb; box-shadow: 0 1px 2px 0 #0000000d; background: #fff; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover, .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus, .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active { border-color: #d1d5db; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta { color: #4b5563; margin-top: 10px; font-size: 13px; font-weight: 400; line-height: 20px; text-align: left; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a { text-decoration: none; color: #006ba1; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder { font-size: 14px; font-weight: 400; line-height: 20px; text-align: left; color: #6b7280; opacity: 1; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background-color: #f6f7f7; border-top: 1px solid #e1e1e1; margin: 40px -20px 0; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button { padding: 7px 13px; border-radius: 3px; border-width: 1px; font-size: 14px; font-weight: 400; line-height: 20px; text-align: left; border-style: solid; display: flex; gap: 8px; align-items: center; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus { outline: none; box-shadow: none; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing { pointer-events: none; opacity: 0.8; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before { content: "\f463"; animation: spin 2s linear infinite; font-family: dashicons, sans-serif; font-weight: 400; font-size: 18px; cursor: pointer; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label { font-size: 14px; font-weight: 400; line-height: 20px; text-align: left; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] { display: flex; justify-content: center; height: 18px; width: 18px; cursor: pointer; margin: 0; border: 1px solid #d1d5db; border-radius: 50%; line-height: 0; box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% ); transition: 0.05s border-color ease-in-out; -webkit-appearance: none; padding: 0; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked { vertical-align: middle; background-color: #006ba1; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before { background-color: #fff !important; border-radius: 50px; content: "\2022"; font-size: 24px; height: 6px; line-height: 13px; margin: 5px; text-indent: -9999px; width: 6px; } @keyframes spin { 0% { transform: rotate( 0deg ); } 100% { transform: rotate( 360deg ); } } PK aG]��`0� � K admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.min.cssnu �[��� .uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;left:0;position:fixed;right:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:left;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:left;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:left;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}PK aG]dw^* * K admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.cssnu �[��� /* Base CSS to normalize the default. */ .uds-feedback-form--wrapper h2, .uds-feedback-form--wrapper p, .uds-feedback-form--wrapper input[type="radio"] { margin: 0; padding: 0; } .uds-feedback-form--wrapper .show { display: block; } .uds-feedback-form--wrapper .hide { display: none; } .uds-feedback-form--wrapper { align-items: center; background-color: rgba( 0, 0, 0, 0.75 ); bottom: 0; display: none; justify-content: center; right: 0; position: fixed; left: 0; top: 0; user-select: none; z-index: -9999; } .uds-feedback-form--wrapper.show_popup { display: flex !important; z-index: 99999; } .uds-feedback-form--wrapper .uds-feedback-form--container { background-color: #fff; border-radius: 8px; box-shadow: -4px 4px 24px rgba( 0, 0, 0, 0.25 ); max-width: 90%; width: 540px; } .uds-feedback-form--container .uds-form-header--wrapper { align-items: center; display: flex; justify-content: space-between; padding: 16px 20px 0; } .uds-feedback-form--container .uds-form-title--icon-wrapper { display: flex; align-items: center; gap: 12px; } .uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon, .uds-feedback-form--container .uds-form-header--wrapper .uds-close { width: 20px; height: 20px; } .uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title { color: #1f2937; font-size: 16px; font-weight: 600; line-height: 24px; text-align: right; } .uds-feedback-form--container .uds-form-header--wrapper .uds-close { color: #9ca3af; cursor: pointer; } .uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover { color: #4b5563; } .uds-feedback-form--container .uds-form-body--content { padding: 20px 20px 0 20px; display: flex; flex-direction: column; gap: 20px; } .uds-feedback-form--container .uds-form-body--content .uds-form-description { color: #1f2937; font-size: 16px; font-weight: 500; line-height: 24px; text-align: right; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback { color: #6b7280; font-size: 14px; font-weight: 400; line-height: 20px; text-align: right; width: 100%; padding: 9px 13px; border-radius: 6px; border-width: 1px; border-style: solid; border-color: #e5e7eb; box-shadow: 0 1px 2px 0 #0000000d; background: #fff; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover, .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus, .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active { border-color: #d1d5db; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta { color: #4b5563; margin-top: 10px; font-size: 13px; font-weight: 400; line-height: 20px; text-align: right; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a { text-decoration: none; color: #006ba1; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder { font-size: 14px; font-weight: 400; line-height: 20px; text-align: right; color: #6b7280; opacity: 1; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background-color: #f6f7f7; border-top: 1px solid #e1e1e1; margin: 40px -20px 0; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button { padding: 7px 13px; border-radius: 3px; border-width: 1px; font-size: 14px; font-weight: 400; line-height: 20px; text-align: right; border-style: solid; display: flex; gap: 8px; align-items: center; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus { outline: none; box-shadow: none; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing { pointer-events: none; opacity: 0.8; } .uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before { content: "\f463"; animation: spin 2s linear infinite; font-family: dashicons, sans-serif; font-weight: 400; font-size: 18px; cursor: pointer; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label { font-size: 14px; font-weight: 400; line-height: 20px; text-align: right; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] { display: flex; justify-content: center; height: 18px; width: 18px; cursor: pointer; margin: 0; border: 1px solid #d1d5db; border-radius: 50%; line-height: 0; box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% ); transition: 0.05s border-color ease-in-out; -webkit-appearance: none; padding: 0; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked { vertical-align: middle; background-color: #006ba1; } .uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before { background-color: #fff !important; border-radius: 50px; content: "\2022"; font-size: 24px; height: 6px; line-height: 13px; margin: 5px; text-indent: -9999px; width: 6px; } @keyframes spin { 0% { transform: rotate( 0deg ); } 100% { transform: rotate( -360deg ); } } ,.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}PK aG]ԃ�}y'