PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.13
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.13
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / css / _single_theme.css.php

_single_theme.css.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.13, at css/_single_theme.css.php

417 lines 18.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 $settings = FrmStylesHelper::get_settings_for_output( $style );
7 extract( $settings ); // phpcs:ignore WordPress.PHP.DontExtract
8
9 $important = empty( $important_style ) ? '' : ' !important';
10
11 $minus_icons = FrmStylesHelper::minus_icons();
12 $arrow_icons = FrmStylesHelper::arrow_icons();
13 $use_chosen_js = FrmStylesHelper::use_chosen_js();
14
15 ?>
16 .<?php echo esc_html( $style_class ); ?>{
17 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
18 }
19
20 .frm_forms.<?php echo esc_html( $style_class ); ?>{
21 max-width:<?php echo esc_html( $form_width . $important ); ?>;
22 direction:<?php echo esc_html( $direction . $important ); ?>;
23 <?php if ( 'rtl' === $direction ) { ?>
24 unicode-bidi:embed;
25 <?php } ?>
26 <?php if ( $center_form ) { ?>
27 margin:0 auto;
28 <?php } ?>
29 }
30
31 <?php if ( $center_form ) { ?>
32 .frm_inline_form.<?php echo esc_html( $style_class ); ?> form{
33 text-align:center;
34 }
35 <?php } ?>
36
37 <?php if ( ! empty( $field_margin ) ) { ?>
38 .<?php echo esc_html( $style_class ); ?> .form-field{
39 margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
40 }
41 <?php } ?>
42
43 .<?php echo esc_html( $style_class ); ?> .form-field.frm_section_heading{
44 margin-bottom:0<?php echo esc_html( $important ); ?>;
45 }
46
47 .<?php echo esc_html( $style_class ); ?> p.description,
48 .<?php echo esc_html( $style_class ); ?> div.description,
49 .<?php echo esc_html( $style_class ); ?> div.frm_description,
50 .<?php echo esc_html( $style_class ); ?> .frm-show-form > div.frm_description,
51 .<?php echo esc_html( $style_class ); ?> .frm_error,
52 .<?php echo esc_html( $style_class ); ?> .frm_pro_max_limit_desc{
53 <?php if ( ! empty( $description_margin ) ) { ?>
54 margin:<?php echo esc_html( $description_margin . $important ); ?>;
55 <?php } else { ?>
56 margin-top: 6px;
57 <?php } ?>
58 padding:0;
59 <?php if ( ! empty( $font ) ) { ?>
60 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
61 <?php } ?>
62 <?php if ( ! empty( $description_font_size ) ) { ?>
63 font-size:<?php echo esc_html( $description_font_size . $important ); ?>;
64 <?php } ?>
65 <?php if ( ! empty( $description_color ) ) { ?>
66 color:<?php echo esc_html( $description_color . $important ); ?>;
67 <?php } ?>
68 <?php if ( ! empty( $description_weight ) ) { ?>
69 font-weight:<?php echo esc_html( $description_weight . $important ); ?>;
70 <?php } ?>
71 <?php if ( ! empty( $description_align ) ) { ?>
72 text-align:<?php echo esc_html( $description_align . $important ); ?>;
73 <?php } ?>
74 <?php if ( ! empty( $description_style ) ) { ?>
75 font-style:<?php echo esc_html( $description_style . $important ); ?>;
76 <?php } ?>
77 max-width:100%;
78 }
79
80 /* Left and right labels */
81 <?php
82
83 $frm_settings = FrmAppHelper::get_settings();
84
85 if ( '' === $field_height || 'auto' === $field_height ) {
86 foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
87 ?>
88 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=text],
89 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=password],
90 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=email],
91 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=number],
92 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=url],
93 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=tel],
94 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=file],
95 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=search],
96 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
97 <?php } ?>
98 .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
99 height:fit-content<?php echo esc_html( $important ); ?>;
100 }
101 <?php } ?>
102
103 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_left_container{
104 grid-template-columns: <?php echo esc_html( $width ); ?> auto;
105 }
106
107 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_right_container{
108 grid-template-columns: auto <?php echo esc_html( $width ); ?>;
109 }
110
111 .frm_form_field.frm_right_container{
112 grid-template-columns: auto 25%;
113 }
114
115 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_data_container,
116 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
117 display:inline<?php echo esc_html( $important ); ?>;
118 }
119
120 .<?php echo esc_html( $style_class ); ?> .frm_pos_right{
121 display:inline<?php echo esc_html( $important ); ?>;
122 width:<?php echo esc_html( $width . $important ); ?>;
123 }
124
125 .<?php echo esc_html( $style_class ); ?> .frm_none_container .frm_primary_label,
126 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
127 display:none<?php echo esc_html( $important ); ?>;
128 }
129
130 <?php if ( FrmAppHelper::pro_is_installed() ) : ?>
131 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
132 <?php if ( ! empty( $check_weight ) ) { ?>
133 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
134 <?php } ?>
135 <?php if ( ! empty( $font ) ) { ?>
136 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
137 <?php } ?>
138 <?php if ( ! empty( $check_font_size ) ) { ?>
139 font-size:<?php echo esc_html( $check_font_size . $important ); ?>;
140 <?php } ?>
141 <?php if ( ! empty( $check_label_color ) ) { ?>
142 color:<?php echo esc_html( $check_label_color . $important ); ?>;
143 <?php } ?>
144 }
145 <?php endif; ?>
146
147 /* These do not work if they are combined */
148 .<?php echo esc_html( $style_class ); ?> input::placeholder,
149 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
150 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
151 }
152 .<?php echo esc_html( $style_class ); ?> input::-webkit-input-placeholder,
153 .<?php echo esc_html( $style_class ); ?> textarea::-webkit-input-placeholder{
154 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
155 }
156 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
157 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
158 opacity: 1;
159 }
160 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
161 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
162 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
163 }
164
165 .<?php echo esc_html( $style_class ); ?> .frm_default,
166 .<?php echo esc_html( $style_class ); ?> input.frm_default,
167 .<?php echo esc_html( $style_class ); ?> textarea.frm_default,
168 .<?php echo esc_html( $style_class ); ?> select.frm_default,
169 <?php if ( $use_chosen_js ) { ?>
170 .<?php echo esc_html( $style_class ); ?> .chosen-container-multi .chosen-choices li.search-field .default,
171 .<?php echo esc_html( $style_class ); ?> .chosen-container-single .chosen-default,
172 <?php } ?>
173 .<?php echo esc_html( $style_class ); ?> .placeholder {
174 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
175 }
176
177 .<?php echo esc_html( $style_class ); ?> .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,
178 .<?php echo esc_html( $style_class ); ?> select:focus,
179 .<?php echo esc_html( $style_class ); ?> textarea:focus,
180 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=text],
181 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=password],
182 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=email],
183 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=number],
184 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=url],
185 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=tel],
186 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=search],
187 .frm_form_fields_active_style,
188 <?php if ( $use_chosen_js ) { ?>
189 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
190 .<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices,
191 <?php } ?>
192 .<?php echo esc_html( $style_class ); ?> .frm_focus_field .frm-card-element.StripeElement {
193 background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
194 border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
195 color: var(--text-color);
196 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
197 box-shadow:none;
198 outline: none;
199 <?php } else { ?>
200 box-shadow:0px 0px 5px 0px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
201 <?php } ?>
202 }
203
204 <?php if ( ! $submit_style ) { ?>
205 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message,
206 .<?php echo esc_html( $style_class ); ?> input[type=submit],
207 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
208 .<?php echo esc_html( $style_class ); ?> .frm_submit button,
209 .frm_form_submit_style,
210 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
211 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
212 <?php if ( ! empty( $font ) ) { ?>
213 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
214 <?php } ?>
215 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
216 height:<?php echo esc_html( $submit_height . $important ); ?>;
217 line-height:normal<?php echo esc_html( $important ); ?>;
218 text-align:center;
219 background:
220 <?php
221 echo esc_html( $submit_bg_color );
222 if ( ! empty( $submit_bg_img ) ) {
223 echo esc_html( ' url(' . $submit_bg_img . ')' );
224 }
225 echo esc_html( $important );
226 ?>
227 ;
228 <?php if ( '' !== $submit_border_width ) : ?>
229 border-width:<?php echo esc_html( $submit_border_width ); ?>;
230 <?php endif; ?>
231 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
232 border-style:solid;
233 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
234 cursor:pointer;
235 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
236 border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
237 text-shadow:none;
238 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
239 box-sizing:border-box;
240 <?php if ( ! empty( $submit_shadow_color ) ) { ?>
241 box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
242 <?php } ?>
243 margin:<?php echo esc_html( $submit_margin ); ?>;
244 <?php
245 // For reverse compatibility... But allow "10px 10px".
246 if ( strpos( trim( $submit_margin ), ' ' ) === false ) {
247 ?>
248 margin-left:0;
249 margin-right:0;
250 <?php } ?>
251 vertical-align:middle;
252 }
253
254 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message{
255 margin:0;
256 }
257
258 <?php if ( empty( $submit_bg_img ) ) { ?>
259 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
260 .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
261 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
262 .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
263 background: <?php echo esc_html( $submit_hover_bg_color . $important ); ?>;
264 border-color: <?php echo esc_html( $submit_hover_border_color . $important ); ?>;
265 color: <?php echo esc_html( $submit_hover_color . $important ); ?>;
266 }
267
268 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
269 margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
270 }
271
272 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
273 .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
274 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
275 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
276 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
277 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:active,
278 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
279 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
280 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
281 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
282 outline: none;
283 }
284
285 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
286 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
287 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:active,
288 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:focus,
289 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit,
290 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:hover,
291 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
292 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
293 color: transparent <?php echo esc_html( $important ); ?>;
294 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
295 border-color: <?php echo esc_html( $submit_bg_color . $important ); ?>;
296 }
297
298 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
299 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
300 border-bottom-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
301 border-right-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
302 <?php if ( $submit_height !== 'auto' ) { ?>
303 max-height:<?php echo esc_html( $submit_height ); ?>;
304 <?php } ?>
305 <?php if ( $submit_width !== 'auto' ) { ?>
306 max-width:<?php echo esc_html( $submit_width ); ?>;
307 <?php } ?>
308 }
309 <?php
310 }//end if
311 }//end if
312 ?>
313
314 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
315 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
316 content:"before";
317 <?php if ( ! empty( $font ) ) { ?>
318 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
319 <?php } ?>
320 font-size:<?php echo esc_html( $font_size . $important ); ?>;
321 color:<?php echo esc_html( $label_color . $important ); ?>;
322 font-weight:<?php echo esc_html( $weight . $important ); ?>;
323 margin:0;
324 padding:<?php echo esc_html( $label_padding . $important ); ?>;
325 width:auto;
326 display:block;
327 visibility:hidden;
328 }
329
330 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit input,
331 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit button,
332 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit input,
333 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit button {
334 margin: 0 !important;
335 }
336
337 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
338 <?php if ( ! empty( $font ) ) { ?>
339 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
340 <?php } ?>
341 font-size:<?php echo esc_html( $font_size . $important ); ?>;
342 color:<?php echo esc_html( $label_color . $important ); ?>;
343 font-weight:<?php echo esc_html( $weight . $important ); ?>;
344 clear:both;
345 }
346
347 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=text],
348 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=password],
349 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=url],
350 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=tel],
351 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
352 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
353 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
354 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
355 .<?php echo esc_html( $style_class ); ?> .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),
356 .frm_form_fields_error_style,
357 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
358 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
359 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
360 <?php if ( $use_chosen_js ) { ?>
361 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
362 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
363 <?php } ?>
364 .<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid {
365 color:<?php echo esc_html( $text_color_error . $important ); ?>;
366 background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
367 border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
368 border-width:<?php echo esc_html( $border_width_error . $important ); ?>;
369 border-style:<?php echo esc_html( $border_style_error . $important ); ?>;
370 }
371
372 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
373 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
374 }
375
376 .<?php echo esc_html( $style_class ); ?> .frm_error,
377 .<?php echo esc_html( $style_class ); ?> .frm_limit_error{
378 font-weight:<?php echo esc_html( $weight . $important ); ?>;
379 }
380
381 .<?php echo esc_html( $style_class ); ?> .frm_error,
382 .<?php echo esc_html( $style_class ); ?> .frm_limit_error{
383 color:<?php echo esc_html( $border_color_error . $important ); ?>;
384 }
385
386 .<?php echo esc_html( $style_class ); ?> .frm_error_style{
387 background-color:<?php echo esc_html( $error_bg . $important ); ?>;
388 border:1px solid <?php echo esc_html( $error_border . $important ); ?>;
389 border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
390 color: <?php echo esc_html( $error_text . $important ); ?>;
391 font-size:<?php echo esc_html( $error_font_size . $important ); ?>;
392 margin:0;
393 margin-bottom:<?php echo esc_html( $field_margin ); ?>;
394 }
395
396 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-striped .progress-bar{
397 background-image:linear-gradient(45deg, <?php echo esc_html( $border_color ); ?> 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, <?php echo esc_html( $border_color ); ?> 50%, <?php echo esc_html( $border_color ); ?> 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
398 }
399
400 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-bar{
401 background-color:<?php echo esc_html( $bg_color . $important ); ?>;
402 }
403
404 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big input,
405 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big textarea,
406 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total input,
407 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total textarea{
408 color: <?php echo esc_html( $text_color . $important ); ?>;
409 background-color:transparent<?php echo esc_html( $important ); ?>;
410 border:none<?php echo esc_html( $important ); ?>;
411 display:inline<?php echo esc_html( $important ); ?>;
412 width:auto<?php echo esc_html( $important ); ?>;
413 padding:0<?php echo esc_html( $important ); ?>;
414 }
415
416 <?php do_action( 'frm_output_single_style', $settings ); ?>
417