Version Description
- Improvement: Post - Post Title tag can be span/p.
- Improvement: Post - Column count increased to 8.
- Improvement: Post - Excerpt length maximum value increased.
- Fix: Gutenberg 7.6 compatibility fixes.
- Fix: Advanced Columns - Column width issue for responsive devices.
- Fix: Contact Form 7 Styler - Styling not applied in editor mode.
- Fix: Gravity Form Styler - Styling not applied in editor mode.
- Fix: Table of Contents - Advanced Heading getting skipped in some case scenario.
Download this release
Release Info
Developer | brainstormworg |
Plugin | Gutenberg Blocks – Ultimate Addons for Gutenberg |
Version | 1.14.7 |
Comparing to | |
See all releases |
Code changes from version 1.14.6 to 1.14.7
- assets/css/blocks/table-of-contents.css +1 -1
- assets/js/table-of-contents.js +23 -8
- classes/class-uagb-block-helper.php +54 -58
- classes/class-uagb-core-plugin.php +4 -4
- classes/class-uagb-helper.php +12 -12
- classes/class-uagb-init-blocks.php +1 -1
- classes/class-uagb-loader.php +2 -2
- classes/class-uagb-update.php +1 -1
- dist/blocks.build.js +983 -976
- dist/blocks.editor.build.css +3 -3
- dist/blocks.style.build.css +1 -1
- dist/blocks.style.css +10 -10
- languages/ultimate-addons-for-gutenberg.pot +4 -4
- readme.txt +12 -2
- ultimate-addons-for-gutenberg.php +1 -1
assets/css/blocks/table-of-contents.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list:first-child{margin:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1em;margin-bottom:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul{padding:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
|
1 |
+
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list:first-child{margin:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1em;margin-bottom:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul{padding:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicon.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.dashicon.uagb-toc__show-scroll{display:inline-table}
|
assets/js/table-of-contents.js
CHANGED
@@ -32,18 +32,20 @@
|
|
32 |
|
33 |
$( document ).delegate( ".uagb-toc__list a", "click", UAGBTableOfContents._scroll )
|
34 |
$( document ).delegate( ".uagb-toc__scroll-top", "click", UAGBTableOfContents._scrollTop )
|
35 |
-
$( document ).delegate( '.
|
36 |
$( document ).on( "scroll", UAGBTableOfContents._showHideScroll )
|
37 |
|
38 |
},
|
39 |
|
40 |
_toggleCollapse: function( e ) {
|
41 |
-
|
|
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
47 |
}
|
48 |
},
|
49 |
|
@@ -108,12 +110,26 @@
|
|
108 |
_run: function( attr, id ) {
|
109 |
|
110 |
$this_scope = $( id );
|
|
|
|
|
|
|
|
|
|
|
111 |
$headers = $this_scope.find( '.uagb-toc__list-wrap' ).data( 'headers' );
|
112 |
|
113 |
if ( undefined !== $headers ) {
|
114 |
|
115 |
$headers.forEach(function (element, index) {
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
if ( undefined !== point_header && point_header.length > 0 ) {
|
119 |
point_header.before(function (ind) {
|
@@ -124,7 +140,6 @@
|
|
124 |
});
|
125 |
}
|
126 |
|
127 |
-
|
128 |
scroll_to_top = attr.scrollToTop
|
129 |
|
130 |
scroll_element = $( ".uagb-toc__scroll-top" )
|
32 |
|
33 |
$( document ).delegate( ".uagb-toc__list a", "click", UAGBTableOfContents._scroll )
|
34 |
$( document ).delegate( ".uagb-toc__scroll-top", "click", UAGBTableOfContents._scrollTop )
|
35 |
+
$( document ).delegate( '.uagb-toc__title-wrap', 'click', UAGBTableOfContents._toggleCollapse )
|
36 |
$( document ).on( "scroll", UAGBTableOfContents._showHideScroll )
|
37 |
|
38 |
},
|
39 |
|
40 |
_toggleCollapse: function( e ) {
|
41 |
+
if ( $( this ).find( '.uag-toc__collapsible-wrap' ).length > 0 ) {
|
42 |
+
let $root = $( this ).closest( '.wp-block-uagb-table-of-contents' )
|
43 |
|
44 |
+
if ( $root.hasClass( 'uagb-toc__collapse' ) ) {
|
45 |
+
$root.removeClass( 'uagb-toc__collapse' );
|
46 |
+
} else {
|
47 |
+
$root.addClass( 'uagb-toc__collapse' );
|
48 |
+
}
|
49 |
}
|
50 |
},
|
51 |
|
110 |
_run: function( attr, id ) {
|
111 |
|
112 |
$this_scope = $( id );
|
113 |
+
|
114 |
+
if ( $this_scope.find( '.uag-toc__collapsible-wrap' ).length > 0 ) {
|
115 |
+
$this_scope.find( '.uagb-toc__title-wrap' ).addClass( 'uagb-toc__is-collapsible' );
|
116 |
+
}
|
117 |
+
|
118 |
$headers = $this_scope.find( '.uagb-toc__list-wrap' ).data( 'headers' );
|
119 |
|
120 |
if ( undefined !== $headers ) {
|
121 |
|
122 |
$headers.forEach(function (element, index) {
|
123 |
+
|
124 |
+
let point_header = $( 'body' ).find( 'h' + element.tag + ':contains("' + element.text + '")' );
|
125 |
+
|
126 |
+
let sel = $( 'body' ).find( 'h' + element.tag ).filter( function(){
|
127 |
+
let left_word = $( this ).text().replace(/([ #;&,.%+*~\'’:"!^$[\]()=>|\/])/g,'');
|
128 |
+
let right_word = element.text.replace(/([ #;&,.%+*~\'’:"!^$[\]()=>|\/])/g,'');
|
129 |
+
if ( left_word == right_word ) {
|
130 |
+
point_header = $( this );
|
131 |
+
}
|
132 |
+
});
|
133 |
|
134 |
if ( undefined !== point_header && point_header.length > 0 ) {
|
135 |
point_header.before(function (ind) {
|
140 |
});
|
141 |
}
|
142 |
|
|
|
143 |
scroll_to_top = attr.scrollToTop
|
144 |
|
145 |
scroll_element = $( ".uagb-toc__scroll-top" )
|
classes/class-uagb-block-helper.php
CHANGED
@@ -503,42 +503,38 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
503 |
|
504 |
$m_selectors = array(
|
505 |
'.uagb-column__wrap' => array(
|
506 |
-
'padding-top' => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['
|
507 |
-
'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['
|
508 |
-
'padding-left' => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['
|
509 |
-
'padding-right' => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['
|
510 |
-
'margin-top' => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['
|
511 |
-
'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['
|
512 |
-
'margin-left' => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['
|
513 |
-
'margin-right' => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['
|
514 |
)
|
515 |
);
|
516 |
|
517 |
$t_selectors = array(
|
518 |
'.uagb-column__wrap' => array(
|
519 |
-
'padding-top' => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['
|
520 |
-
'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['
|
521 |
-
'padding-left' => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['
|
522 |
-
'padding-right' => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['
|
523 |
-
'margin-top' => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['
|
524 |
-
'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['
|
525 |
-
'margin-left' => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['
|
526 |
-
'margin-right' => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['
|
527 |
)
|
528 |
);
|
529 |
|
530 |
if ( '' != $attr['colWidthTablet'] && 0 != $attr['colWidthTablet'] ) {
|
531 |
|
532 |
-
$t_selectors[''] =
|
533 |
-
"width" => UAGB_Helper::get_css_value( $attr['colWidthTablet'], '%' )
|
534 |
-
);
|
535 |
}
|
536 |
|
537 |
if ( '' != $attr['colWidthMobile'] && 0 != $attr['colWidthMobile'] ) {
|
538 |
|
539 |
-
$m_selectors[''] =
|
540 |
-
"width" => UAGB_Helper::get_css_value( $attr['colWidthMobile'], '%' )
|
541 |
-
);
|
542 |
}
|
543 |
|
544 |
// @codingStandardsIgnoreEnd
|
@@ -3690,27 +3686,27 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
3690 |
);
|
3691 |
|
3692 |
$t_selectors = array(
|
3693 |
-
' .wpcf7 form.wpcf7-form:not(input)'
|
3694 |
'color' => $attr['fieldLabelColor'],
|
3695 |
),
|
3696 |
-
' .wpcf7 input:not([type=submit])'
|
3697 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
3698 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
3699 |
),
|
3700 |
-
' .wpcf7 select'
|
3701 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3702 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3703 |
),
|
3704 |
-
' .wpcf7 textarea'
|
3705 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
3706 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
3707 |
),
|
3708 |
-
' .wpcf7 form label'
|
3709 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3710 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3711 |
),
|
3712 |
|
3713 |
-
' .wpcf7 form .wpcf7-list-item-label' => array(
|
3714 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3715 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3716 |
),
|
@@ -3722,11 +3718,11 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
3722 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeTablet'], $attr['radioCheckFontSizeType'] ),
|
3723 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightTablet'], $attr['radioCheckLineHeightType'] ),
|
3724 |
),
|
3725 |
-
' span.wpcf7-not-valid-tip'
|
3726 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
3727 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
3728 |
),
|
3729 |
-
' .wpcf7-response-output'
|
3730 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
3731 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
3732 |
),
|
@@ -3913,21 +3909,21 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
3913 |
'color' => $attr['fieldInputColor'],
|
3914 |
'text-align' => $attr['align'],
|
3915 |
),
|
3916 |
-
' form label'
|
3917 |
'color' => $attr['fieldLabelColor'],
|
3918 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3919 |
'font-family' => $attr['labelFontFamily'],
|
3920 |
'font-weight' => $attr['labelFontWeight'],
|
3921 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
|
3922 |
),
|
3923 |
-
' form .gfield_radio label'
|
3924 |
'color' => $attr['fieldLabelColor'],
|
3925 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3926 |
'font-family' => $attr['labelFontFamily'],
|
3927 |
'font-weight' => $attr['labelFontWeight'],
|
3928 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
|
3929 |
),
|
3930 |
-
' form .gfield_checkbox label'
|
3931 |
'color' => $attr['fieldLabelColor'],
|
3932 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3933 |
'font-family' => $attr['labelFontFamily'],
|
@@ -4059,13 +4055,13 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4059 |
'border-style' => 'solid',
|
4060 |
'border-width' => UAGB_Helper::get_css_value( $attr['fieldBorderWidth'], 'px' ),
|
4061 |
'border-radius' => UAGB_Helper::get_css_value( $attr['fieldBorderRadius'], $attr['fieldBorderRadiusType'] ),
|
4062 |
-
'font-size' => 'calc( ' . $attr['
|
4063 |
),
|
4064 |
' .uagb-gf-styler__field-style-box input[type="checkbox"]:checked + label:before' => array(
|
4065 |
'border-style' => 'solid',
|
4066 |
'border-width' => UAGB_Helper::get_css_value( $attr['fieldBorderWidth'], 'px' ),
|
4067 |
'border-radius' => UAGB_Helper::get_css_value( $attr['fieldBorderRadius'], $attr['fieldBorderRadiusType'] ),
|
4068 |
-
'font-size' => 'calc( ' . $attr['
|
4069 |
),
|
4070 |
' .gfield_radio input[type="radio"]:checked + label:before' => array(
|
4071 |
'background-color' => $attr['fieldInputColor'],
|
@@ -4210,31 +4206,31 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4210 |
);
|
4211 |
|
4212 |
$t_selectors = array(
|
4213 |
-
' form.wpgf-form:not(input)'
|
4214 |
'color' => $attr['fieldLabelColor'],
|
4215 |
),
|
4216 |
-
' input:not([type=submit])'
|
4217 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
4218 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
4219 |
),
|
4220 |
-
' textarea'
|
4221 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
4222 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
4223 |
),
|
4224 |
-
' form label'
|
4225 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4226 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4227 |
),
|
4228 |
|
4229 |
-
' form .gfield_radio label'
|
4230 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4231 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4232 |
),
|
4233 |
-
' form .gfield_checkbox label'
|
4234 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4235 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4236 |
),
|
4237 |
-
' input.gform_button'
|
4238 |
'font-size' => UAGB_Helper::get_css_value( $attr['buttonFontSizeTablet'], $attr['buttonFontSizeType'] ),
|
4239 |
'line-height' => UAGB_Helper::get_css_value( $attr['buttonLineHeightTablet'], $attr['buttonLineHeightType'] ),
|
4240 |
),
|
@@ -4246,23 +4242,23 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4246 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeTablet'], $attr['radioCheckFontSizeType'] ),
|
4247 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightTablet'], $attr['radioCheckLineHeightType'] ),
|
4248 |
),
|
4249 |
-
' span.wpgf-not-valid-tip'
|
4250 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
4251 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
4252 |
),
|
4253 |
-
' .wpgf-response-output'
|
4254 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
4255 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
4256 |
),
|
4257 |
-
' .gform_wrapper .validation_message'
|
4258 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
4259 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
4260 |
),
|
4261 |
-
' .gform_wrapper div.validation_error'
|
4262 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
4263 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
4264 |
),
|
4265 |
-
' .gform_confirmation_message'
|
4266 |
'font-size' => UAGB_Helper::get_css_value( $attr['successMsgFontSizeTablet'], $attr['successMsgFontSizeType'] ),
|
4267 |
'line-height' => UAGB_Helper::get_css_value( $attr['successMsgLineHeightTablet'], $attr['successMsgLineHeightType'] ),
|
4268 |
'color' => $attr['successMsgColor'],
|
@@ -4270,28 +4266,28 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4270 |
);
|
4271 |
|
4272 |
$m_selectors = array(
|
4273 |
-
' input:not([type=submit])'
|
4274 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeMobile'], $attr['inputFontSizeType'] ),
|
4275 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightMobile'], $attr['inputLineHeightType'] ),
|
4276 |
),
|
4277 |
-
' textarea'
|
4278 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeMobile'], $attr['inputFontSizeType'] ),
|
4279 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightMobile'], $attr['inputLineHeightType'] ),
|
4280 |
),
|
4281 |
-
' form label'
|
4282 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4283 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4284 |
),
|
4285 |
|
4286 |
-
' form .gfield_radio label'
|
4287 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4288 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4289 |
),
|
4290 |
-
' form .gfield_checkbox label'
|
4291 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4292 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4293 |
),
|
4294 |
-
' input.gform_button'
|
4295 |
'font-size' => UAGB_Helper::get_css_value( $attr['buttonFontSizeMobile'], $attr['buttonFontSizeType'] ),
|
4296 |
'line-height' => UAGB_Helper::get_css_value( $attr['buttonLineHeightMobile'], $attr['buttonLineHeightType'] ),
|
4297 |
),
|
@@ -4303,23 +4299,23 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4303 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeMobile'], $attr['radioCheckFontSizeType'] ),
|
4304 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightMobile'], $attr['radioCheckLineHeightType'] ),
|
4305 |
),
|
4306 |
-
' span.wpgf-not-valid-tip'
|
4307 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeMobile'], $attr['validationMsgFontSizeType'] ),
|
4308 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightMobile'], $attr['validationMsgLineHeightType'] ),
|
4309 |
),
|
4310 |
-
' .wpgf-response-output'
|
4311 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeMobile'], $attr['msgFontSizeType'] ),
|
4312 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightMobile'], $attr['msgLineHeightType'] ),
|
4313 |
),
|
4314 |
-
' .gform_wrapper .validation_message'
|
4315 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeMobile'], $attr['validationMsgFontSizeType'] ),
|
4316 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightMobile'], $attr['validationMsgLineHeightType'] ),
|
4317 |
),
|
4318 |
-
' .gform_wrapper div.validation_error'
|
4319 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeMobile'], $attr['msgFontSizeType'] ),
|
4320 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightMobile'], $attr['msgLineHeightType'] ),
|
4321 |
),
|
4322 |
-
' .gform_confirmation_message'
|
4323 |
'font-size' => UAGB_Helper::get_css_value( $attr['successMsgFontSizeMobile'], $attr['successMsgFontSizeType'] ),
|
4324 |
'line-height' => UAGB_Helper::get_css_value( $attr['successMsgLineHeightMobile'], $attr['successMsgLineHeightType'] ),
|
4325 |
'color' => $attr['successMsgColor'],
|
503 |
|
504 |
$m_selectors = array(
|
505 |
'.uagb-column__wrap' => array(
|
506 |
+
'padding-top' => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingType'] ),
|
507 |
+
'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingType'] ),
|
508 |
+
'padding-left' => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingType'] ),
|
509 |
+
'padding-right' => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingType'] ),
|
510 |
+
'margin-top' => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['mobileMarginType'] ),
|
511 |
+
'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['mobileMarginType'] ),
|
512 |
+
'margin-left' => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['mobileMarginType'] ),
|
513 |
+
'margin-right' => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['mobileMarginType'] ),
|
514 |
)
|
515 |
);
|
516 |
|
517 |
$t_selectors = array(
|
518 |
'.uagb-column__wrap' => array(
|
519 |
+
'padding-top' => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingType'] ),
|
520 |
+
'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingType'] ),
|
521 |
+
'padding-left' => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingType'] ),
|
522 |
+
'padding-right' => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingType'] ),
|
523 |
+
'margin-top' => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['tabletMarginType'] ),
|
524 |
+
'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['tabletMarginType'] ),
|
525 |
+
'margin-left' => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['tabletMarginType'] ),
|
526 |
+
'margin-right' => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['tabletMarginType'] ),
|
527 |
)
|
528 |
);
|
529 |
|
530 |
if ( '' != $attr['colWidthTablet'] && 0 != $attr['colWidthTablet'] ) {
|
531 |
|
532 |
+
$t_selectors['.uagb-column__wrap']["width"] = UAGB_Helper::get_css_value( $attr['colWidthTablet'], '%' );
|
|
|
|
|
533 |
}
|
534 |
|
535 |
if ( '' != $attr['colWidthMobile'] && 0 != $attr['colWidthMobile'] ) {
|
536 |
|
537 |
+
$m_selectors['.uagb-column__wrap']["width"] = UAGB_Helper::get_css_value( $attr['colWidthMobile'], '%' );
|
|
|
|
|
538 |
}
|
539 |
|
540 |
// @codingStandardsIgnoreEnd
|
3686 |
);
|
3687 |
|
3688 |
$t_selectors = array(
|
3689 |
+
' .wpcf7 form.wpcf7-form:not(input)' => array(
|
3690 |
'color' => $attr['fieldLabelColor'],
|
3691 |
),
|
3692 |
+
' .wpcf7 input:not([type=submit])' => array(
|
3693 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
3694 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
3695 |
),
|
3696 |
+
' .wpcf7 select' => array(
|
3697 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3698 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3699 |
),
|
3700 |
+
' .wpcf7 textarea' => array(
|
3701 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
3702 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
3703 |
),
|
3704 |
+
' .wpcf7 form label' => array(
|
3705 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3706 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3707 |
),
|
3708 |
|
3709 |
+
' .wpcf7 form .wpcf7-list-item-label.gfield_label' => array(
|
3710 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
3711 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
3712 |
),
|
3718 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeTablet'], $attr['radioCheckFontSizeType'] ),
|
3719 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightTablet'], $attr['radioCheckLineHeightType'] ),
|
3720 |
),
|
3721 |
+
' span.wpcf7-not-valid-tip' => array(
|
3722 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
3723 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
3724 |
),
|
3725 |
+
' .wpcf7-response-output' => array(
|
3726 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
3727 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
3728 |
),
|
3909 |
'color' => $attr['fieldInputColor'],
|
3910 |
'text-align' => $attr['align'],
|
3911 |
),
|
3912 |
+
' form label.gfield_label' => array(
|
3913 |
'color' => $attr['fieldLabelColor'],
|
3914 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3915 |
'font-family' => $attr['labelFontFamily'],
|
3916 |
'font-weight' => $attr['labelFontWeight'],
|
3917 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
|
3918 |
),
|
3919 |
+
' form .gfield_radio label.gfield_label' => array(
|
3920 |
'color' => $attr['fieldLabelColor'],
|
3921 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3922 |
'font-family' => $attr['labelFontFamily'],
|
3923 |
'font-weight' => $attr['labelFontWeight'],
|
3924 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
|
3925 |
),
|
3926 |
+
' form .gfield_checkbox label.gfield_label' => array(
|
3927 |
'color' => $attr['fieldLabelColor'],
|
3928 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
3929 |
'font-family' => $attr['labelFontFamily'],
|
4055 |
'border-style' => 'solid',
|
4056 |
'border-width' => UAGB_Helper::get_css_value( $attr['fieldBorderWidth'], 'px' ),
|
4057 |
'border-radius' => UAGB_Helper::get_css_value( $attr['fieldBorderRadius'], $attr['fieldBorderRadiusType'] ),
|
4058 |
+
'font-size' => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
|
4059 |
),
|
4060 |
' .uagb-gf-styler__field-style-box input[type="checkbox"]:checked + label:before' => array(
|
4061 |
'border-style' => 'solid',
|
4062 |
'border-width' => UAGB_Helper::get_css_value( $attr['fieldBorderWidth'], 'px' ),
|
4063 |
'border-radius' => UAGB_Helper::get_css_value( $attr['fieldBorderRadius'], $attr['fieldBorderRadiusType'] ),
|
4064 |
+
'font-size' => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
|
4065 |
),
|
4066 |
' .gfield_radio input[type="radio"]:checked + label:before' => array(
|
4067 |
'background-color' => $attr['fieldInputColor'],
|
4206 |
);
|
4207 |
|
4208 |
$t_selectors = array(
|
4209 |
+
' form.wpgf-form:not(input)' => array(
|
4210 |
'color' => $attr['fieldLabelColor'],
|
4211 |
),
|
4212 |
+
' input:not([type=submit])' => array(
|
4213 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
4214 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
4215 |
),
|
4216 |
+
' textarea' => array(
|
4217 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeTablet'], $attr['inputFontSizeType'] ),
|
4218 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightTablet'], $attr['inputLineHeightType'] ),
|
4219 |
),
|
4220 |
+
' form label.gfield_label' => array(
|
4221 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4222 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4223 |
),
|
4224 |
|
4225 |
+
' form .gfield_radio label.gfield_label' => array(
|
4226 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4227 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4228 |
),
|
4229 |
+
' form .gfield_checkbox label.gfield_label' => array(
|
4230 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeType'] ),
|
4231 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
|
4232 |
),
|
4233 |
+
' input.gform_button' => array(
|
4234 |
'font-size' => UAGB_Helper::get_css_value( $attr['buttonFontSizeTablet'], $attr['buttonFontSizeType'] ),
|
4235 |
'line-height' => UAGB_Helper::get_css_value( $attr['buttonLineHeightTablet'], $attr['buttonLineHeightType'] ),
|
4236 |
),
|
4242 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeTablet'], $attr['radioCheckFontSizeType'] ),
|
4243 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightTablet'], $attr['radioCheckLineHeightType'] ),
|
4244 |
),
|
4245 |
+
' span.wpgf-not-valid-tip' => array(
|
4246 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
4247 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
4248 |
),
|
4249 |
+
' .wpgf-response-output' => array(
|
4250 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
4251 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
4252 |
),
|
4253 |
+
' .gform_wrapper .validation_message' => array(
|
4254 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeTablet'], $attr['validationMsgFontSizeType'] ),
|
4255 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightTablet'], $attr['validationMsgLineHeightType'] ),
|
4256 |
),
|
4257 |
+
' .gform_wrapper div.validation_error' => array(
|
4258 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeTablet'], $attr['msgFontSizeType'] ),
|
4259 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightTablet'], $attr['msgLineHeightType'] ),
|
4260 |
),
|
4261 |
+
' .gform_confirmation_message' => array(
|
4262 |
'font-size' => UAGB_Helper::get_css_value( $attr['successMsgFontSizeTablet'], $attr['successMsgFontSizeType'] ),
|
4263 |
'line-height' => UAGB_Helper::get_css_value( $attr['successMsgLineHeightTablet'], $attr['successMsgLineHeightType'] ),
|
4264 |
'color' => $attr['successMsgColor'],
|
4266 |
);
|
4267 |
|
4268 |
$m_selectors = array(
|
4269 |
+
' input:not([type=submit])' => array(
|
4270 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeMobile'], $attr['inputFontSizeType'] ),
|
4271 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightMobile'], $attr['inputLineHeightType'] ),
|
4272 |
),
|
4273 |
+
' textarea' => array(
|
4274 |
'font-size' => UAGB_Helper::get_css_value( $attr['inputFontSizeMobile'], $attr['inputFontSizeType'] ),
|
4275 |
'line-height' => UAGB_Helper::get_css_value( $attr['inputLineHeightMobile'], $attr['inputLineHeightType'] ),
|
4276 |
),
|
4277 |
+
' form label.gfield_label' => array(
|
4278 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4279 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4280 |
),
|
4281 |
|
4282 |
+
' form .gfield_radio label.gfield_label' => array(
|
4283 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4284 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4285 |
),
|
4286 |
+
' form .gfield_checkbox label.gfield_label' => array(
|
4287 |
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeType'] ),
|
4288 |
'line-height' => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
|
4289 |
),
|
4290 |
+
' input.gform_button' => array(
|
4291 |
'font-size' => UAGB_Helper::get_css_value( $attr['buttonFontSizeMobile'], $attr['buttonFontSizeType'] ),
|
4292 |
'line-height' => UAGB_Helper::get_css_value( $attr['buttonLineHeightMobile'], $attr['buttonLineHeightType'] ),
|
4293 |
),
|
4299 |
'font-size' => UAGB_Helper::get_css_value( $attr['radioCheckFontSizeMobile'], $attr['radioCheckFontSizeType'] ),
|
4300 |
'line-height' => UAGB_Helper::get_css_value( $attr['radioCheckLineHeightMobile'], $attr['radioCheckLineHeightType'] ),
|
4301 |
),
|
4302 |
+
' span.wpgf-not-valid-tip' => array(
|
4303 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeMobile'], $attr['validationMsgFontSizeType'] ),
|
4304 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightMobile'], $attr['validationMsgLineHeightType'] ),
|
4305 |
),
|
4306 |
+
' .wpgf-response-output' => array(
|
4307 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeMobile'], $attr['msgFontSizeType'] ),
|
4308 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightMobile'], $attr['msgLineHeightType'] ),
|
4309 |
),
|
4310 |
+
' .gform_wrapper .validation_message' => array(
|
4311 |
'font-size' => UAGB_Helper::get_css_value( $attr['validationMsgFontSizeMobile'], $attr['validationMsgFontSizeType'] ),
|
4312 |
'line-height' => UAGB_Helper::get_css_value( $attr['validationMsgLineHeightMobile'], $attr['validationMsgLineHeightType'] ),
|
4313 |
),
|
4314 |
+
' .gform_wrapper div.validation_error' => array(
|
4315 |
'font-size' => UAGB_Helper::get_css_value( $attr['msgFontSizeMobile'], $attr['msgFontSizeType'] ),
|
4316 |
'line-height' => UAGB_Helper::get_css_value( $attr['msgLineHeightMobile'], $attr['msgLineHeightType'] ),
|
4317 |
),
|
4318 |
+
' .gform_confirmation_message' => array(
|
4319 |
'font-size' => UAGB_Helper::get_css_value( $attr['successMsgFontSizeMobile'], $attr['successMsgFontSizeType'] ),
|
4320 |
'line-height' => UAGB_Helper::get_css_value( $attr['successMsgLineHeightMobile'], $attr['successMsgLineHeightType'] ),
|
4321 |
'color' => $attr['successMsgColor'],
|
classes/class-uagb-core-plugin.php
CHANGED
@@ -28,7 +28,7 @@ class UAGB_Core_Plugin {
|
|
28 |
*/
|
29 |
public static function get_instance() {
|
30 |
if ( ! isset( self::$instance ) ) {
|
31 |
-
self::$instance = new self;
|
32 |
}
|
33 |
return self::$instance;
|
34 |
}
|
@@ -48,9 +48,9 @@ class UAGB_Core_Plugin {
|
|
48 |
*/
|
49 |
private function includes() {
|
50 |
|
51 |
-
require
|
52 |
-
require
|
53 |
-
require
|
54 |
}
|
55 |
}
|
56 |
|
28 |
*/
|
29 |
public static function get_instance() {
|
30 |
if ( ! isset( self::$instance ) ) {
|
31 |
+
self::$instance = new self();
|
32 |
}
|
33 |
return self::$instance;
|
34 |
}
|
48 |
*/
|
49 |
private function includes() {
|
50 |
|
51 |
+
require UAGB_DIR . 'lib/notices/class-astra-notices.php';
|
52 |
+
require UAGB_DIR . 'classes/class-uagb-admin.php';
|
53 |
+
require UAGB_DIR . 'classes/class-uagb-init-blocks.php';
|
54 |
}
|
55 |
}
|
56 |
|
classes/class-uagb-helper.php
CHANGED
@@ -111,7 +111,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
111 |
*/
|
112 |
public static function get_instance() {
|
113 |
if ( ! isset( self::$instance ) ) {
|
114 |
-
self::$instance = new self;
|
115 |
}
|
116 |
return self::$instance;
|
117 |
}
|
@@ -121,8 +121,8 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
121 |
*/
|
122 |
public function __construct() {
|
123 |
|
124 |
-
require
|
125 |
-
require
|
126 |
|
127 |
self::$block_list = UAGB_Config::get_block_attributes();
|
128 |
self::$file_generation = self::allow_file_generation();
|
@@ -1007,7 +1007,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1007 |
return self::$icon_json;
|
1008 |
}
|
1009 |
|
1010 |
-
$str =
|
1011 |
self::$icon_json = json_decode( $str, true );
|
1012 |
return self::$icon_json;
|
1013 |
}
|
@@ -1027,7 +1027,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1027 |
$icon = str_replace( 'fa', '', $icon );
|
1028 |
$icon = sanitize_text_field( esc_attr( $icon ) );
|
1029 |
|
1030 |
-
$json =
|
1031 |
$path = isset( $json[ $icon ]['svg']['brands'] ) ? $json[ $icon ]['svg']['brands']['path'] : $json[ $icon ]['svg']['solid']['path'];
|
1032 |
$view = isset( $json[ $icon ]['svg']['brands'] ) ? $json[ $icon ]['svg']['brands']['viewBox'] : $json[ $icon ]['svg']['solid']['viewBox'];
|
1033 |
if ( $view ) {
|
@@ -1362,10 +1362,10 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1362 |
|
1363 |
foreach ( $combined as $key => $c_block ) {
|
1364 |
|
1365 |
-
$style .=
|
1366 |
|
1367 |
}
|
1368 |
-
|
1369 |
}
|
1370 |
|
1371 |
/**
|
@@ -1395,9 +1395,9 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1395 |
// Create the upload dir if it doesn't exist.
|
1396 |
if ( ! file_exists( $dir_info['path'] ) ) {
|
1397 |
// Create the directory.
|
1398 |
-
|
1399 |
// Add an index file for security.
|
1400 |
-
|
1401 |
}
|
1402 |
|
1403 |
return apply_filters( 'uag_get_upload_dir', $dir_info );
|
@@ -1474,7 +1474,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1474 |
|
1475 |
if ( isset( $assets_info[ $var ] ) ) {
|
1476 |
// Create a new file.
|
1477 |
-
|
1478 |
|
1479 |
// Update the post meta.
|
1480 |
update_post_meta( get_the_ID(), 'uagb_style_timestamp-' . $type, $timestamp );
|
@@ -1496,7 +1496,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1496 |
|
1497 |
if ( file_exists( $assets_info[ $var ] ) ) {
|
1498 |
|
1499 |
-
$old_data =
|
1500 |
|
1501 |
if ( $old_data !== $style_data ) {
|
1502 |
|
@@ -1506,7 +1506,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
1506 |
$new_assets_info = self::get_asset_info( $style_data, $type, $new_timestamp );
|
1507 |
|
1508 |
// Create a new file.
|
1509 |
-
|
1510 |
|
1511 |
// Update the post meta.
|
1512 |
update_post_meta( get_the_ID(), 'uagb_style_timestamp-' . $type, $new_timestamp );
|
111 |
*/
|
112 |
public static function get_instance() {
|
113 |
if ( ! isset( self::$instance ) ) {
|
114 |
+
self::$instance = new self();
|
115 |
}
|
116 |
return self::$instance;
|
117 |
}
|
121 |
*/
|
122 |
public function __construct() {
|
123 |
|
124 |
+
require UAGB_DIR . 'classes/class-uagb-config.php';
|
125 |
+
require UAGB_DIR . 'classes/class-uagb-block-helper.php';
|
126 |
|
127 |
self::$block_list = UAGB_Config::get_block_attributes();
|
128 |
self::$file_generation = self::allow_file_generation();
|
1007 |
return self::$icon_json;
|
1008 |
}
|
1009 |
|
1010 |
+
$str = self::get_instance()->get_filesystem()->get_contents( $json_file );
|
1011 |
self::$icon_json = json_decode( $str, true );
|
1012 |
return self::$icon_json;
|
1013 |
}
|
1027 |
$icon = str_replace( 'fa', '', $icon );
|
1028 |
$icon = sanitize_text_field( esc_attr( $icon ) );
|
1029 |
|
1030 |
+
$json = self::backend_load_font_awesome_icons();
|
1031 |
$path = isset( $json[ $icon ]['svg']['brands'] ) ? $json[ $icon ]['svg']['brands']['path'] : $json[ $icon ]['svg']['solid']['path'];
|
1032 |
$view = isset( $json[ $icon ]['svg']['brands'] ) ? $json[ $icon ]['svg']['brands']['viewBox'] : $json[ $icon ]['svg']['solid']['viewBox'];
|
1033 |
if ( $view ) {
|
1362 |
|
1363 |
foreach ( $combined as $key => $c_block ) {
|
1364 |
|
1365 |
+
$style .= self::get_instance()->get_filesystem()->get_contents( plugin_dir_path( UAGB_FILE ) . 'assets/css/blocks/' . $c_block . '.css' );
|
1366 |
|
1367 |
}
|
1368 |
+
self::get_instance()->get_filesystem()->put_contents( $combined_path, $style, FS_CHMOD_FILE );
|
1369 |
}
|
1370 |
|
1371 |
/**
|
1395 |
// Create the upload dir if it doesn't exist.
|
1396 |
if ( ! file_exists( $dir_info['path'] ) ) {
|
1397 |
// Create the directory.
|
1398 |
+
self::get_instance()->get_filesystem()->mkdir( $dir_info['path'] );
|
1399 |
// Add an index file for security.
|
1400 |
+
self::get_instance()->get_filesystem()->put_contents( $dir_info['path'] . 'index.html', '', FS_CHMOD_FILE );
|
1401 |
}
|
1402 |
|
1403 |
return apply_filters( 'uag_get_upload_dir', $dir_info );
|
1474 |
|
1475 |
if ( isset( $assets_info[ $var ] ) ) {
|
1476 |
// Create a new file.
|
1477 |
+
self::get_instance()->get_filesystem()->put_contents( $assets_info[ $var ], $style_data, FS_CHMOD_FILE );
|
1478 |
|
1479 |
// Update the post meta.
|
1480 |
update_post_meta( get_the_ID(), 'uagb_style_timestamp-' . $type, $timestamp );
|
1496 |
|
1497 |
if ( file_exists( $assets_info[ $var ] ) ) {
|
1498 |
|
1499 |
+
$old_data = self::get_instance()->get_filesystem()->get_contents( $assets_info[ $var ] );
|
1500 |
|
1501 |
if ( $old_data !== $style_data ) {
|
1502 |
|
1506 |
$new_assets_info = self::get_asset_info( $style_data, $type, $new_timestamp );
|
1507 |
|
1508 |
// Create a new file.
|
1509 |
+
self::get_instance()->get_filesystem()->put_contents( $new_assets_info[ $var ], $style_data, FS_CHMOD_FILE );
|
1510 |
|
1511 |
// Update the post meta.
|
1512 |
update_post_meta( get_the_ID(), 'uagb_style_timestamp-' . $type, $new_timestamp );
|
classes/class-uagb-init-blocks.php
CHANGED
@@ -32,7 +32,7 @@ class UAGB_Init_Blocks {
|
|
32 |
*/
|
33 |
public static function get_instance() {
|
34 |
if ( ! isset( self::$instance ) ) {
|
35 |
-
self::$instance = new self;
|
36 |
}
|
37 |
return self::$instance;
|
38 |
}
|
32 |
*/
|
33 |
public static function get_instance() {
|
34 |
if ( ! isset( self::$instance ) ) {
|
35 |
+
self::$instance = new self();
|
36 |
}
|
37 |
return self::$instance;
|
38 |
}
|
classes/class-uagb-loader.php
CHANGED
@@ -28,7 +28,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
28 |
*/
|
29 |
public static function get_instance() {
|
30 |
if ( ! isset( self::$instance ) ) {
|
31 |
-
self::$instance = new self;
|
32 |
}
|
33 |
return self::$instance;
|
34 |
}
|
@@ -78,7 +78,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
78 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
79 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
80 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
81 |
-
define( 'UAGB_VER', '1.14.
|
82 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
83 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
84 |
define( 'UAGB_SLUG', 'uag' );
|
28 |
*/
|
29 |
public static function get_instance() {
|
30 |
if ( ! isset( self::$instance ) ) {
|
31 |
+
self::$instance = new self();
|
32 |
}
|
33 |
return self::$instance;
|
34 |
}
|
78 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
79 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
80 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
81 |
+
define( 'UAGB_VER', '1.14.7' );
|
82 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
83 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
84 |
define( 'UAGB_SLUG', 'uag' );
|
classes/class-uagb-update.php
CHANGED
@@ -49,7 +49,7 @@ if ( ! class_exists( 'UAGB_Update' ) ) :
|
|
49 |
* @since 1.13.4
|
50 |
* @return void
|
51 |
*/
|
52 |
-
static
|
53 |
|
54 |
do_action( 'uagb_update_before' );
|
55 |
|
49 |
* @since 1.13.4
|
50 |
* @return void
|
51 |
*/
|
52 |
+
public static function init() {
|
53 |
|
54 |
do_action( 'uagb_update_before' );
|
55 |
|
dist/blocks.build.js
CHANGED
@@ -1702,27 +1702,27 @@ module.exports = copyObject;
|
|
1702 |
/*! all exports used */
|
1703 |
/***/ (function(module, exports) {
|
1704 |
|
1705 |
-
var g;
|
1706 |
-
|
1707 |
-
// This works in non-strict mode
|
1708 |
-
g = (function() {
|
1709 |
-
return this;
|
1710 |
-
})();
|
1711 |
-
|
1712 |
-
try {
|
1713 |
-
// This works if eval is allowed (see CSP)
|
1714 |
-
g = g || Function("return this")() || (1,eval)("this");
|
1715 |
-
} catch(e) {
|
1716 |
-
// This works if the window reference is available
|
1717 |
-
if(typeof window === "object")
|
1718 |
-
g = window;
|
1719 |
-
}
|
1720 |
-
|
1721 |
-
// g can still be undefined, but nothing to do about it...
|
1722 |
-
// We return undefined, instead of nothing here, so it's
|
1723 |
-
// easier to handle this case. if(!global) { ...}
|
1724 |
-
|
1725 |
-
module.exports = g;
|
1726 |
|
1727 |
|
1728 |
/***/ }),
|
@@ -3856,28 +3856,28 @@ module.exports = isBuffer;
|
|
3856 |
/*! all exports used */
|
3857 |
/***/ (function(module, exports) {
|
3858 |
|
3859 |
-
module.exports = function(module) {
|
3860 |
-
if(!module.webpackPolyfill) {
|
3861 |
-
module.deprecate = function() {};
|
3862 |
-
module.paths = [];
|
3863 |
-
// module.parent = undefined by default
|
3864 |
-
if(!module.children) module.children = [];
|
3865 |
-
Object.defineProperty(module, "loaded", {
|
3866 |
-
enumerable: true,
|
3867 |
-
get: function() {
|
3868 |
-
return module.l;
|
3869 |
-
}
|
3870 |
-
});
|
3871 |
-
Object.defineProperty(module, "id", {
|
3872 |
-
enumerable: true,
|
3873 |
-
get: function() {
|
3874 |
-
return module.i;
|
3875 |
-
}
|
3876 |
-
});
|
3877 |
-
module.webpackPolyfill = 1;
|
3878 |
-
}
|
3879 |
-
return module;
|
3880 |
-
};
|
3881 |
|
3882 |
|
3883 |
/***/ }),
|
@@ -60902,7 +60902,7 @@ var _wp$element = wp.element,
|
|
60902 |
Fragment = _wp$element.Fragment;
|
60903 |
var __ = wp.i18n.__;
|
60904 |
|
60905 |
-
var MAX_POSTS_COLUMNS =
|
60906 |
var _wp$components = wp.components,
|
60907 |
PanelBody = _wp$components.PanelBody,
|
60908 |
Placeholder = _wp$components.Placeholder,
|
@@ -61501,7 +61501,7 @@ var UAGBPostGrid = function (_Component) {
|
|
61501 |
return setAttributes({ excerptLength: value });
|
61502 |
},
|
61503 |
min: 1,
|
61504 |
-
max:
|
61505 |
allowReset: true
|
61506 |
})
|
61507 |
),
|
@@ -61666,7 +61666,7 @@ var UAGBPostGrid = function (_Component) {
|
|
61666 |
onChange: function onChange(value) {
|
61667 |
return setAttributes({ titleTag: value });
|
61668 |
},
|
61669 |
-
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }]
|
61670 |
}),
|
61671 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__components_typography__["a" /* default */], {
|
61672 |
label: __("Typography"),
|
@@ -62667,7 +62667,7 @@ var _wp$element = wp.element,
|
|
62667 |
Fragment = _wp$element.Fragment;
|
62668 |
var __ = wp.i18n.__;
|
62669 |
|
62670 |
-
var MAX_POSTS_COLUMNS =
|
62671 |
var _wp$components = wp.components,
|
62672 |
PanelBody = _wp$components.PanelBody,
|
62673 |
Placeholder = _wp$components.Placeholder,
|
@@ -63252,7 +63252,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
63252 |
return setAttributes({ excerptLength: value });
|
63253 |
},
|
63254 |
min: 1,
|
63255 |
-
max:
|
63256 |
allowReset: true
|
63257 |
})
|
63258 |
),
|
@@ -63412,7 +63412,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
63412 |
onChange: function onChange(value) {
|
63413 |
return setAttributes({ titleTag: value });
|
63414 |
},
|
63415 |
-
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }]
|
63416 |
}),
|
63417 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__components_typography__["a" /* default */], {
|
63418 |
label: __("Typography"),
|
@@ -71527,7 +71527,7 @@ var _wp$element = wp.element,
|
|
71527 |
var __ = wp.i18n.__;
|
71528 |
var decodeEntities = wp.htmlEntities.decodeEntities;
|
71529 |
|
71530 |
-
var MAX_POSTS_COLUMNS =
|
71531 |
var _wp$components = wp.components,
|
71532 |
PanelBody = _wp$components.PanelBody,
|
71533 |
Placeholder = _wp$components.Placeholder,
|
@@ -72231,7 +72231,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
72231 |
return setAttributes({ excerptLength: value });
|
72232 |
},
|
72233 |
min: 1,
|
72234 |
-
max:
|
72235 |
allowReset: true
|
72236 |
})
|
72237 |
),
|
@@ -72391,7 +72391,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
72391 |
onChange: function onChange(value) {
|
72392 |
return setAttributes({ titleTag: value });
|
72393 |
},
|
72394 |
-
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }]
|
72395 |
}),
|
72396 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_typography__["a" /* default */], {
|
72397 |
label: __("Typography"),
|
@@ -74876,931 +74876,931 @@ var NextArrow = exports.NextArrow = function (_React$PureComponent2) {
|
|
74876 |
|
74877 |
"use strict";
|
74878 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
74879 |
-
/* WEBPACK VAR INJECTION */(function(global) {/**
|
74880 |
-
* A collection of shims that provide minimal functionality of the ES6 collections.
|
74881 |
-
*
|
74882 |
-
* These implementations are not meant to be used outside of the ResizeObserver
|
74883 |
-
* modules as they cover only a limited range of use cases.
|
74884 |
-
*/
|
74885 |
-
/* eslint-disable require-jsdoc, valid-jsdoc */
|
74886 |
-
var MapShim = (function () {
|
74887 |
-
if (typeof Map !== 'undefined') {
|
74888 |
-
return Map;
|
74889 |
-
}
|
74890 |
-
/**
|
74891 |
-
* Returns index in provided array that matches the specified key.
|
74892 |
-
*
|
74893 |
-
* @param {Array<Array>} arr
|
74894 |
-
* @param {*} key
|
74895 |
-
* @returns {number}
|
74896 |
-
*/
|
74897 |
-
function getIndex(arr, key) {
|
74898 |
-
var result = -1;
|
74899 |
-
arr.some(function (entry, index) {
|
74900 |
-
if (entry[0] === key) {
|
74901 |
-
result = index;
|
74902 |
-
return true;
|
74903 |
-
}
|
74904 |
-
return false;
|
74905 |
-
});
|
74906 |
-
return result;
|
74907 |
-
}
|
74908 |
-
return /** @class */ (function () {
|
74909 |
-
function class_1() {
|
74910 |
-
this.__entries__ = [];
|
74911 |
-
}
|
74912 |
-
Object.defineProperty(class_1.prototype, "size", {
|
74913 |
-
/**
|
74914 |
-
* @returns {boolean}
|
74915 |
-
*/
|
74916 |
-
get: function () {
|
74917 |
-
return this.__entries__.length;
|
74918 |
-
},
|
74919 |
-
enumerable: true,
|
74920 |
-
configurable: true
|
74921 |
-
});
|
74922 |
-
/**
|
74923 |
-
* @param {*} key
|
74924 |
-
* @returns {*}
|
74925 |
-
*/
|
74926 |
-
class_1.prototype.get = function (key) {
|
74927 |
-
var index = getIndex(this.__entries__, key);
|
74928 |
-
var entry = this.__entries__[index];
|
74929 |
-
return entry && entry[1];
|
74930 |
-
};
|
74931 |
-
/**
|
74932 |
-
* @param {*} key
|
74933 |
-
* @param {*} value
|
74934 |
-
* @returns {void}
|
74935 |
-
*/
|
74936 |
-
class_1.prototype.set = function (key, value) {
|
74937 |
-
var index = getIndex(this.__entries__, key);
|
74938 |
-
if (~index) {
|
74939 |
-
this.__entries__[index][1] = value;
|
74940 |
-
}
|
74941 |
-
else {
|
74942 |
-
this.__entries__.push([key, value]);
|
74943 |
-
}
|
74944 |
-
};
|
74945 |
-
/**
|
74946 |
-
* @param {*} key
|
74947 |
-
* @returns {void}
|
74948 |
-
*/
|
74949 |
-
class_1.prototype.delete = function (key) {
|
74950 |
-
var entries = this.__entries__;
|
74951 |
-
var index = getIndex(entries, key);
|
74952 |
-
if (~index) {
|
74953 |
-
entries.splice(index, 1);
|
74954 |
-
}
|
74955 |
-
};
|
74956 |
-
/**
|
74957 |
-
* @param {*} key
|
74958 |
-
* @returns {void}
|
74959 |
-
*/
|
74960 |
-
class_1.prototype.has = function (key) {
|
74961 |
-
return !!~getIndex(this.__entries__, key);
|
74962 |
-
};
|
74963 |
-
/**
|
74964 |
-
* @returns {void}
|
74965 |
-
*/
|
74966 |
-
class_1.prototype.clear = function () {
|
74967 |
-
this.__entries__.splice(0);
|
74968 |
-
};
|
74969 |
-
/**
|
74970 |
-
* @param {Function} callback
|
74971 |
-
* @param {*} [ctx=null]
|
74972 |
-
* @returns {void}
|
74973 |
-
*/
|
74974 |
-
class_1.prototype.forEach = function (callback, ctx) {
|
74975 |
-
if (ctx === void 0) { ctx = null; }
|
74976 |
-
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
|
74977 |
-
var entry = _a[_i];
|
74978 |
-
callback.call(ctx, entry[1], entry[0]);
|
74979 |
-
}
|
74980 |
-
};
|
74981 |
-
return class_1;
|
74982 |
-
}());
|
74983 |
})();
|
74984 |
|
74985 |
-
/**
|
74986 |
-
* Detects whether window and document objects are available in current environment.
|
74987 |
-
*/
|
74988 |
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
|
74989 |
|
74990 |
-
// Returns global object of a current environment.
|
74991 |
-
var global$1 = (function () {
|
74992 |
-
if (typeof global !== 'undefined' && global.Math === Math) {
|
74993 |
-
return global;
|
74994 |
-
}
|
74995 |
-
if (typeof self !== 'undefined' && self.Math === Math) {
|
74996 |
-
return self;
|
74997 |
-
}
|
74998 |
-
if (typeof window !== 'undefined' && window.Math === Math) {
|
74999 |
-
return window;
|
75000 |
-
}
|
75001 |
-
// eslint-disable-next-line no-new-func
|
75002 |
-
return Function('return this')();
|
75003 |
})();
|
75004 |
|
75005 |
-
/**
|
75006 |
-
* A shim for the requestAnimationFrame which falls back to the setTimeout if
|
75007 |
-
* first one is not supported.
|
75008 |
-
*
|
75009 |
-
* @returns {number} Requests' identifier.
|
75010 |
-
*/
|
75011 |
-
var requestAnimationFrame$1 = (function () {
|
75012 |
-
if (typeof requestAnimationFrame === 'function') {
|
75013 |
-
// It's required to use a bounded function because IE sometimes throws
|
75014 |
-
// an "Invalid calling object" error if rAF is invoked without the global
|
75015 |
-
// object on the left hand side.
|
75016 |
-
return requestAnimationFrame.bind(global$1);
|
75017 |
-
}
|
75018 |
-
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
|
75019 |
})();
|
75020 |
|
75021 |
-
// Defines minimum timeout before adding a trailing call.
|
75022 |
-
var trailingTimeout = 2;
|
75023 |
-
/**
|
75024 |
-
* Creates a wrapper function which ensures that provided callback will be
|
75025 |
-
* invoked only once during the specified delay period.
|
75026 |
-
*
|
75027 |
-
* @param {Function} callback - Function to be invoked after the delay period.
|
75028 |
-
* @param {number} delay - Delay after which to invoke callback.
|
75029 |
-
* @returns {Function}
|
75030 |
-
*/
|
75031 |
-
function throttle (callback, delay) {
|
75032 |
-
var leadingCall = false, trailingCall = false, lastCallTime = 0;
|
75033 |
-
/**
|
75034 |
-
* Invokes the original callback function and schedules new invocation if
|
75035 |
-
* the "proxy" was called during current request.
|
75036 |
-
*
|
75037 |
-
* @returns {void}
|
75038 |
-
*/
|
75039 |
-
function resolvePending() {
|
75040 |
-
if (leadingCall) {
|
75041 |
-
leadingCall = false;
|
75042 |
-
callback();
|
75043 |
-
}
|
75044 |
-
if (trailingCall) {
|
75045 |
-
proxy();
|
75046 |
-
}
|
75047 |
-
}
|
75048 |
-
/**
|
75049 |
-
* Callback invoked after the specified delay. It will further postpone
|
75050 |
-
* invocation of the original function delegating it to the
|
75051 |
-
* requestAnimationFrame.
|
75052 |
-
*
|
75053 |
-
* @returns {void}
|
75054 |
-
*/
|
75055 |
-
function timeoutCallback() {
|
75056 |
-
requestAnimationFrame$1(resolvePending);
|
75057 |
-
}
|
75058 |
-
/**
|
75059 |
-
* Schedules invocation of the original function.
|
75060 |
-
*
|
75061 |
-
* @returns {void}
|
75062 |
-
*/
|
75063 |
-
function proxy() {
|
75064 |
-
var timeStamp = Date.now();
|
75065 |
-
if (leadingCall) {
|
75066 |
-
// Reject immediately following calls.
|
75067 |
-
if (timeStamp - lastCallTime < trailingTimeout) {
|
75068 |
-
return;
|
75069 |
-
}
|
75070 |
-
// Schedule new call to be in invoked when the pending one is resolved.
|
75071 |
-
// This is important for "transitions" which never actually start
|
75072 |
-
// immediately so there is a chance that we might miss one if change
|
75073 |
-
// happens amids the pending invocation.
|
75074 |
-
trailingCall = true;
|
75075 |
-
}
|
75076 |
-
else {
|
75077 |
-
leadingCall = true;
|
75078 |
-
trailingCall = false;
|
75079 |
-
setTimeout(timeoutCallback, delay);
|
75080 |
-
}
|
75081 |
-
lastCallTime = timeStamp;
|
75082 |
-
}
|
75083 |
-
return proxy;
|
75084 |
-
}
|
75085 |
-
|
75086 |
-
// Minimum delay before invoking the update of observers.
|
75087 |
-
var REFRESH_DELAY = 20;
|
75088 |
-
// A list of substrings of CSS properties used to find transition events that
|
75089 |
-
// might affect dimensions of observed elements.
|
75090 |
-
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
|
75091 |
-
// Check if MutationObserver is available.
|
75092 |
-
var mutationObserverSupported = typeof MutationObserver !== 'undefined';
|
75093 |
-
/**
|
75094 |
-
* Singleton controller class which handles updates of ResizeObserver instances.
|
75095 |
-
*/
|
75096 |
-
var ResizeObserverController = /** @class */ (function () {
|
75097 |
-
/**
|
75098 |
-
* Creates a new instance of ResizeObserverController.
|
75099 |
-
*
|
75100 |
-
* @private
|
75101 |
-
*/
|
75102 |
-
function ResizeObserverController() {
|
75103 |
-
/**
|
75104 |
-
* Indicates whether DOM listeners have been added.
|
75105 |
-
*
|
75106 |
-
* @private {boolean}
|
75107 |
-
*/
|
75108 |
-
this.connected_ = false;
|
75109 |
-
/**
|
75110 |
-
* Tells that controller has subscribed for Mutation Events.
|
75111 |
-
*
|
75112 |
-
* @private {boolean}
|
75113 |
-
*/
|
75114 |
-
this.mutationEventsAdded_ = false;
|
75115 |
-
/**
|
75116 |
-
* Keeps reference to the instance of MutationObserver.
|
75117 |
-
*
|
75118 |
-
* @private {MutationObserver}
|
75119 |
-
*/
|
75120 |
-
this.mutationsObserver_ = null;
|
75121 |
-
/**
|
75122 |
-
* A list of connected observers.
|
75123 |
-
*
|
75124 |
-
* @private {Array<ResizeObserverSPI>}
|
75125 |
-
*/
|
75126 |
-
this.observers_ = [];
|
75127 |
-
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
|
75128 |
-
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
|
75129 |
-
}
|
75130 |
-
/**
|
75131 |
-
* Adds observer to observers list.
|
75132 |
-
*
|
75133 |
-
* @param {ResizeObserverSPI} observer - Observer to be added.
|
75134 |
-
* @returns {void}
|
75135 |
-
*/
|
75136 |
-
ResizeObserverController.prototype.addObserver = function (observer) {
|
75137 |
-
if (!~this.observers_.indexOf(observer)) {
|
75138 |
-
this.observers_.push(observer);
|
75139 |
-
}
|
75140 |
-
// Add listeners if they haven't been added yet.
|
75141 |
-
if (!this.connected_) {
|
75142 |
-
this.connect_();
|
75143 |
-
}
|
75144 |
-
};
|
75145 |
-
/**
|
75146 |
-
* Removes observer from observers list.
|
75147 |
-
*
|
75148 |
-
* @param {ResizeObserverSPI} observer - Observer to be removed.
|
75149 |
-
* @returns {void}
|
75150 |
-
*/
|
75151 |
-
ResizeObserverController.prototype.removeObserver = function (observer) {
|
75152 |
-
var observers = this.observers_;
|
75153 |
-
var index = observers.indexOf(observer);
|
75154 |
-
// Remove observer if it's present in registry.
|
75155 |
-
if (~index) {
|
75156 |
-
observers.splice(index, 1);
|
75157 |
-
}
|
75158 |
-
// Remove listeners if controller has no connected observers.
|
75159 |
-
if (!observers.length && this.connected_) {
|
75160 |
-
this.disconnect_();
|
75161 |
-
}
|
75162 |
-
};
|
75163 |
-
/**
|
75164 |
-
* Invokes the update of observers. It will continue running updates insofar
|
75165 |
-
* it detects changes.
|
75166 |
-
*
|
75167 |
-
* @returns {void}
|
75168 |
-
*/
|
75169 |
-
ResizeObserverController.prototype.refresh = function () {
|
75170 |
-
var changesDetected = this.updateObservers_();
|
75171 |
-
// Continue running updates if changes have been detected as there might
|
75172 |
-
// be future ones caused by CSS transitions.
|
75173 |
-
if (changesDetected) {
|
75174 |
-
this.refresh();
|
75175 |
-
}
|
75176 |
-
};
|
75177 |
-
/**
|
75178 |
-
* Updates every observer from observers list and notifies them of queued
|
75179 |
-
* entries.
|
75180 |
-
*
|
75181 |
-
* @private
|
75182 |
-
* @returns {boolean} Returns "true" if any observer has detected changes in
|
75183 |
-
* dimensions of it's elements.
|
75184 |
-
*/
|
75185 |
-
ResizeObserverController.prototype.updateObservers_ = function () {
|
75186 |
-
// Collect observers that have active observations.
|
75187 |
-
var activeObservers = this.observers_.filter(function (observer) {
|
75188 |
-
return observer.gatherActive(), observer.hasActive();
|
75189 |
-
});
|
75190 |
-
// Deliver notifications in a separate cycle in order to avoid any
|
75191 |
-
// collisions between observers, e.g. when multiple instances of
|
75192 |
-
// ResizeObserver are tracking the same element and the callback of one
|
75193 |
-
// of them changes content dimensions of the observed target. Sometimes
|
75194 |
-
// this may result in notifications being blocked for the rest of observers.
|
75195 |
-
activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
|
75196 |
-
return activeObservers.length > 0;
|
75197 |
-
};
|
75198 |
-
/**
|
75199 |
-
* Initializes DOM listeners.
|
75200 |
-
*
|
75201 |
-
* @private
|
75202 |
-
* @returns {void}
|
75203 |
-
*/
|
75204 |
-
ResizeObserverController.prototype.connect_ = function () {
|
75205 |
-
// Do nothing if running in a non-browser environment or if listeners
|
75206 |
-
// have been already added.
|
75207 |
-
if (!isBrowser || this.connected_) {
|
75208 |
-
return;
|
75209 |
-
}
|
75210 |
-
// Subscription to the "Transitionend" event is used as a workaround for
|
75211 |
-
// delayed transitions. This way it's possible to capture at least the
|
75212 |
-
// final state of an element.
|
75213 |
-
document.addEventListener('transitionend', this.onTransitionEnd_);
|
75214 |
-
window.addEventListener('resize', this.refresh);
|
75215 |
-
if (mutationObserverSupported) {
|
75216 |
-
this.mutationsObserver_ = new MutationObserver(this.refresh);
|
75217 |
-
this.mutationsObserver_.observe(document, {
|
75218 |
-
attributes: true,
|
75219 |
-
childList: true,
|
75220 |
-
characterData: true,
|
75221 |
-
subtree: true
|
75222 |
-
});
|
75223 |
-
}
|
75224 |
-
else {
|
75225 |
-
document.addEventListener('DOMSubtreeModified', this.refresh);
|
75226 |
-
this.mutationEventsAdded_ = true;
|
75227 |
-
}
|
75228 |
-
this.connected_ = true;
|
75229 |
-
};
|
75230 |
-
/**
|
75231 |
-
* Removes DOM listeners.
|
75232 |
-
*
|
75233 |
-
* @private
|
75234 |
-
* @returns {void}
|
75235 |
-
*/
|
75236 |
-
ResizeObserverController.prototype.disconnect_ = function () {
|
75237 |
-
// Do nothing if running in a non-browser environment or if listeners
|
75238 |
-
// have been already removed.
|
75239 |
-
if (!isBrowser || !this.connected_) {
|
75240 |
-
return;
|
75241 |
-
}
|
75242 |
-
document.removeEventListener('transitionend', this.onTransitionEnd_);
|
75243 |
-
window.removeEventListener('resize', this.refresh);
|
75244 |
-
if (this.mutationsObserver_) {
|
75245 |
-
this.mutationsObserver_.disconnect();
|
75246 |
-
}
|
75247 |
-
if (this.mutationEventsAdded_) {
|
75248 |
-
document.removeEventListener('DOMSubtreeModified', this.refresh);
|
75249 |
-
}
|
75250 |
-
this.mutationsObserver_ = null;
|
75251 |
-
this.mutationEventsAdded_ = false;
|
75252 |
-
this.connected_ = false;
|
75253 |
-
};
|
75254 |
-
/**
|
75255 |
-
* "Transitionend" event handler.
|
75256 |
-
*
|
75257 |
-
* @private
|
75258 |
-
* @param {TransitionEvent} event
|
75259 |
-
* @returns {void}
|
75260 |
-
*/
|
75261 |
-
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
|
75262 |
-
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
|
75263 |
-
// Detect whether transition may affect dimensions of an element.
|
75264 |
-
var isReflowProperty = transitionKeys.some(function (key) {
|
75265 |
-
return !!~propertyName.indexOf(key);
|
75266 |
-
});
|
75267 |
-
if (isReflowProperty) {
|
75268 |
-
this.refresh();
|
75269 |
-
}
|
75270 |
-
};
|
75271 |
-
/**
|
75272 |
-
* Returns instance of the ResizeObserverController.
|
75273 |
-
*
|
75274 |
-
* @returns {ResizeObserverController}
|
75275 |
-
*/
|
75276 |
-
ResizeObserverController.getInstance = function () {
|
75277 |
-
if (!this.instance_) {
|
75278 |
-
this.instance_ = new ResizeObserverController();
|
75279 |
-
}
|
75280 |
-
return this.instance_;
|
75281 |
-
};
|
75282 |
-
/**
|
75283 |
-
* Holds reference to the controller's instance.
|
75284 |
-
*
|
75285 |
-
* @private {ResizeObserverController}
|
75286 |
-
*/
|
75287 |
-
ResizeObserverController.instance_ = null;
|
75288 |
-
return ResizeObserverController;
|
75289 |
}());
|
75290 |
|
75291 |
-
/**
|
75292 |
-
* Defines non-writable/enumerable properties of the provided target object.
|
75293 |
-
*
|
75294 |
-
* @param {Object} target - Object for which to define properties.
|
75295 |
-
* @param {Object} props - Properties to be defined.
|
75296 |
-
* @returns {Object} Target object.
|
75297 |
-
*/
|
75298 |
-
var defineConfigurable = (function (target, props) {
|
75299 |
-
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
|
75300 |
-
var key = _a[_i];
|
75301 |
-
Object.defineProperty(target, key, {
|
75302 |
-
value: props[key],
|
75303 |
-
enumerable: false,
|
75304 |
-
writable: false,
|
75305 |
-
configurable: true
|
75306 |
-
});
|
75307 |
-
}
|
75308 |
-
return target;
|
75309 |
});
|
75310 |
|
75311 |
-
/**
|
75312 |
-
* Returns the global object associated with provided element.
|
75313 |
-
*
|
75314 |
-
* @param {Object} target
|
75315 |
-
* @returns {Object}
|
75316 |
-
*/
|
75317 |
-
var getWindowOf = (function (target) {
|
75318 |
-
// Assume that the element is an instance of Node, which means that it
|
75319 |
-
// has the "ownerDocument" property from which we can retrieve a
|
75320 |
-
// corresponding global object.
|
75321 |
-
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
|
75322 |
-
// Return the local global object if it's not possible extract one from
|
75323 |
-
// provided element.
|
75324 |
-
return ownerGlobal || global$1;
|
75325 |
});
|
75326 |
|
75327 |
-
// Placeholder of an empty content rectangle.
|
75328 |
-
var emptyRect = createRectInit(0, 0, 0, 0);
|
75329 |
-
/**
|
75330 |
-
* Converts provided string to a number.
|
75331 |
-
*
|
75332 |
-
* @param {number|string} value
|
75333 |
-
* @returns {number}
|
75334 |
-
*/
|
75335 |
-
function toFloat(value) {
|
75336 |
-
return parseFloat(value) || 0;
|
75337 |
-
}
|
75338 |
-
/**
|
75339 |
-
* Extracts borders size from provided styles.
|
75340 |
-
*
|
75341 |
-
* @param {CSSStyleDeclaration} styles
|
75342 |
-
* @param {...string} positions - Borders positions (top, right, ...)
|
75343 |
-
* @returns {number}
|
75344 |
-
*/
|
75345 |
-
function getBordersSize(styles) {
|
75346 |
-
var positions = [];
|
75347 |
-
for (var _i = 1; _i < arguments.length; _i++) {
|
75348 |
-
positions[_i - 1] = arguments[_i];
|
75349 |
-
}
|
75350 |
-
return positions.reduce(function (size, position) {
|
75351 |
-
var value = styles['border-' + position + '-width'];
|
75352 |
-
return size + toFloat(value);
|
75353 |
-
}, 0);
|
75354 |
-
}
|
75355 |
-
/**
|
75356 |
-
* Extracts paddings sizes from provided styles.
|
75357 |
-
*
|
75358 |
-
* @param {CSSStyleDeclaration} styles
|
75359 |
-
* @returns {Object} Paddings box.
|
75360 |
-
*/
|
75361 |
-
function getPaddings(styles) {
|
75362 |
-
var positions = ['top', 'right', 'bottom', 'left'];
|
75363 |
-
var paddings = {};
|
75364 |
-
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
|
75365 |
-
var position = positions_1[_i];
|
75366 |
-
var value = styles['padding-' + position];
|
75367 |
-
paddings[position] = toFloat(value);
|
75368 |
-
}
|
75369 |
-
return paddings;
|
75370 |
-
}
|
75371 |
-
/**
|
75372 |
-
* Calculates content rectangle of provided SVG element.
|
75373 |
-
*
|
75374 |
-
* @param {SVGGraphicsElement} target - Element content rectangle of which needs
|
75375 |
-
* to be calculated.
|
75376 |
-
* @returns {DOMRectInit}
|
75377 |
-
*/
|
75378 |
-
function getSVGContentRect(target) {
|
75379 |
-
var bbox = target.getBBox();
|
75380 |
-
return createRectInit(0, 0, bbox.width, bbox.height);
|
75381 |
-
}
|
75382 |
-
/**
|
75383 |
-
* Calculates content rectangle of provided HTMLElement.
|
75384 |
-
*
|
75385 |
-
* @param {HTMLElement} target - Element for which to calculate the content rectangle.
|
75386 |
-
* @returns {DOMRectInit}
|
75387 |
-
*/
|
75388 |
-
function getHTMLElementContentRect(target) {
|
75389 |
-
// Client width & height properties can't be
|
75390 |
-
// used exclusively as they provide rounded values.
|
75391 |
-
var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
|
75392 |
-
// By this condition we can catch all non-replaced inline, hidden and
|
75393 |
-
// detached elements. Though elements with width & height properties less
|
75394 |
-
// than 0.5 will be discarded as well.
|
75395 |
-
//
|
75396 |
-
// Without it we would need to implement separate methods for each of
|
75397 |
-
// those cases and it's not possible to perform a precise and performance
|
75398 |
-
// effective test for hidden elements. E.g. even jQuery's ':visible' filter
|
75399 |
-
// gives wrong results for elements with width & height less than 0.5.
|
75400 |
-
if (!clientWidth && !clientHeight) {
|
75401 |
-
return emptyRect;
|
75402 |
-
}
|
75403 |
-
var styles = getWindowOf(target).getComputedStyle(target);
|
75404 |
-
var paddings = getPaddings(styles);
|
75405 |
-
var horizPad = paddings.left + paddings.right;
|
75406 |
-
var vertPad = paddings.top + paddings.bottom;
|
75407 |
-
// Computed styles of width & height are being used because they are the
|
75408 |
-
// only dimensions available to JS that contain non-rounded values. It could
|
75409 |
-
// be possible to utilize the getBoundingClientRect if only it's data wasn't
|
75410 |
-
// affected by CSS transformations let alone paddings, borders and scroll bars.
|
75411 |
-
var width = toFloat(styles.width), height = toFloat(styles.height);
|
75412 |
-
// Width & height include paddings and borders when the 'border-box' box
|
75413 |
-
// model is applied (except for IE).
|
75414 |
-
if (styles.boxSizing === 'border-box') {
|
75415 |
-
// Following conditions are required to handle Internet Explorer which
|
75416 |
-
// doesn't include paddings and borders to computed CSS dimensions.
|
75417 |
-
//
|
75418 |
-
// We can say that if CSS dimensions + paddings are equal to the "client"
|
75419 |
-
// properties then it's either IE, and thus we don't need to subtract
|
75420 |
-
// anything, or an element merely doesn't have paddings/borders styles.
|
75421 |
-
if (Math.round(width + horizPad) !== clientWidth) {
|
75422 |
-
width -= getBordersSize(styles, 'left', 'right') + horizPad;
|
75423 |
-
}
|
75424 |
-
if (Math.round(height + vertPad) !== clientHeight) {
|
75425 |
-
height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
|
75426 |
-
}
|
75427 |
-
}
|
75428 |
-
// Following steps can't be applied to the document's root element as its
|
75429 |
-
// client[Width/Height] properties represent viewport area of the window.
|
75430 |
-
// Besides, it's as well not necessary as the <html> itself neither has
|
75431 |
-
// rendered scroll bars nor it can be clipped.
|
75432 |
-
if (!isDocumentElement(target)) {
|
75433 |
-
// In some browsers (only in Firefox, actually) CSS width & height
|
75434 |
-
// include scroll bars size which can be removed at this step as scroll
|
75435 |
-
// bars are the only difference between rounded dimensions + paddings
|
75436 |
-
// and "client" properties, though that is not always true in Chrome.
|
75437 |
-
var vertScrollbar = Math.round(width + horizPad) - clientWidth;
|
75438 |
-
var horizScrollbar = Math.round(height + vertPad) - clientHeight;
|
75439 |
-
// Chrome has a rather weird rounding of "client" properties.
|
75440 |
-
// E.g. for an element with content width of 314.2px it sometimes gives
|
75441 |
-
// the client width of 315px and for the width of 314.7px it may give
|
75442 |
-
// 314px. And it doesn't happen all the time. So just ignore this delta
|
75443 |
-
// as a non-relevant.
|
75444 |
-
if (Math.abs(vertScrollbar) !== 1) {
|
75445 |
-
width -= vertScrollbar;
|
75446 |
-
}
|
75447 |
-
if (Math.abs(horizScrollbar) !== 1) {
|
75448 |
-
height -= horizScrollbar;
|
75449 |
-
}
|
75450 |
-
}
|
75451 |
-
return createRectInit(paddings.left, paddings.top, width, height);
|
75452 |
-
}
|
75453 |
-
/**
|
75454 |
-
* Checks whether provided element is an instance of the SVGGraphicsElement.
|
75455 |
-
*
|
75456 |
-
* @param {Element} target - Element to be checked.
|
75457 |
-
* @returns {boolean}
|
75458 |
-
*/
|
75459 |
-
var isSVGGraphicsElement = (function () {
|
75460 |
-
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
|
75461 |
-
// interface.
|
75462 |
-
if (typeof SVGGraphicsElement !== 'undefined') {
|
75463 |
-
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
|
75464 |
-
}
|
75465 |
-
// If it's so, then check that element is at least an instance of the
|
75466 |
-
// SVGElement and that it has the "getBBox" method.
|
75467 |
-
// eslint-disable-next-line no-extra-parens
|
75468 |
-
return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
|
75469 |
-
typeof target.getBBox === 'function'); };
|
75470 |
-
})();
|
75471 |
-
/**
|
75472 |
-
* Checks whether provided element is a document element (<html>).
|
75473 |
-
*
|
75474 |
-
* @param {Element} target - Element to be checked.
|
75475 |
-
* @returns {boolean}
|
75476 |
-
*/
|
75477 |
-
function isDocumentElement(target) {
|
75478 |
-
return target === getWindowOf(target).document.documentElement;
|
75479 |
-
}
|
75480 |
-
/**
|
75481 |
-
* Calculates an appropriate content rectangle for provided html or svg element.
|
75482 |
-
*
|
75483 |
-
* @param {Element} target - Element content rectangle of which needs to be calculated.
|
75484 |
-
* @returns {DOMRectInit}
|
75485 |
-
*/
|
75486 |
-
function getContentRect(target) {
|
75487 |
-
if (!isBrowser) {
|
75488 |
-
return emptyRect;
|
75489 |
-
}
|
75490 |
-
if (isSVGGraphicsElement(target)) {
|
75491 |
-
return getSVGContentRect(target);
|
75492 |
-
}
|
75493 |
-
return getHTMLElementContentRect(target);
|
75494 |
-
}
|
75495 |
-
/**
|
75496 |
-
* Creates rectangle with an interface of the DOMRectReadOnly.
|
75497 |
-
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
|
75498 |
-
*
|
75499 |
-
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
|
75500 |
-
* @returns {DOMRectReadOnly}
|
75501 |
-
*/
|
75502 |
-
function createReadOnlyRect(_a) {
|
75503 |
-
var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
|
75504 |
-
// If DOMRectReadOnly is available use it as a prototype for the rectangle.
|
75505 |
-
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
|
75506 |
-
var rect = Object.create(Constr.prototype);
|
75507 |
-
// Rectangle's properties are not writable and non-enumerable.
|
75508 |
-
defineConfigurable(rect, {
|
75509 |
-
x: x, y: y, width: width, height: height,
|
75510 |
-
top: y,
|
75511 |
-
right: x + width,
|
75512 |
-
bottom: height + y,
|
75513 |
-
left: x
|
75514 |
-
});
|
75515 |
-
return rect;
|
75516 |
-
}
|
75517 |
-
/**
|
75518 |
-
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
|
75519 |
-
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
|
75520 |
-
*
|
75521 |
-
* @param {number} x - X coordinate.
|
75522 |
-
* @param {number} y - Y coordinate.
|
75523 |
-
* @param {number} width - Rectangle's width.
|
75524 |
-
* @param {number} height - Rectangle's height.
|
75525 |
-
* @returns {DOMRectInit}
|
75526 |
-
*/
|
75527 |
-
function createRectInit(x, y, width, height) {
|
75528 |
-
return { x: x, y: y, width: width, height: height };
|
75529 |
-
}
|
75530 |
-
|
75531 |
-
/**
|
75532 |
-
* Class that is responsible for computations of the content rectangle of
|
75533 |
-
* provided DOM element and for keeping track of it's changes.
|
75534 |
-
*/
|
75535 |
-
var ResizeObservation = /** @class */ (function () {
|
75536 |
-
/**
|
75537 |
-
* Creates an instance of ResizeObservation.
|
75538 |
-
*
|
75539 |
-
* @param {Element} target - Element to be observed.
|
75540 |
-
*/
|
75541 |
-
function ResizeObservation(target) {
|
75542 |
-
/**
|
75543 |
-
* Broadcasted width of content rectangle.
|
75544 |
-
*
|
75545 |
-
* @type {number}
|
75546 |
-
*/
|
75547 |
-
this.broadcastWidth = 0;
|
75548 |
-
/**
|
75549 |
-
* Broadcasted height of content rectangle.
|
75550 |
-
*
|
75551 |
-
* @type {number}
|
75552 |
-
*/
|
75553 |
-
this.broadcastHeight = 0;
|
75554 |
-
/**
|
75555 |
-
* Reference to the last observed content rectangle.
|
75556 |
-
*
|
75557 |
-
* @private {DOMRectInit}
|
75558 |
-
*/
|
75559 |
-
this.contentRect_ = createRectInit(0, 0, 0, 0);
|
75560 |
-
this.target = target;
|
75561 |
-
}
|
75562 |
-
/**
|
75563 |
-
* Updates content rectangle and tells whether it's width or height properties
|
75564 |
-
* have changed since the last broadcast.
|
75565 |
-
*
|
75566 |
-
* @returns {boolean}
|
75567 |
-
*/
|
75568 |
-
ResizeObservation.prototype.isActive = function () {
|
75569 |
-
var rect = getContentRect(this.target);
|
75570 |
-
this.contentRect_ = rect;
|
75571 |
-
return (rect.width !== this.broadcastWidth ||
|
75572 |
-
rect.height !== this.broadcastHeight);
|
75573 |
-
};
|
75574 |
-
/**
|
75575 |
-
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
|
75576 |
-
* from the corresponding properties of the last observed content rectangle.
|
75577 |
-
*
|
75578 |
-
* @returns {DOMRectInit} Last observed content rectangle.
|
75579 |
-
*/
|
75580 |
-
ResizeObservation.prototype.broadcastRect = function () {
|
75581 |
-
var rect = this.contentRect_;
|
75582 |
-
this.broadcastWidth = rect.width;
|
75583 |
-
this.broadcastHeight = rect.height;
|
75584 |
-
return rect;
|
75585 |
-
};
|
75586 |
-
return ResizeObservation;
|
75587 |
}());
|
75588 |
|
75589 |
-
var ResizeObserverEntry = /** @class */ (function () {
|
75590 |
-
/**
|
75591 |
-
* Creates an instance of ResizeObserverEntry.
|
75592 |
-
*
|
75593 |
-
* @param {Element} target - Element that is being observed.
|
75594 |
-
* @param {DOMRectInit} rectInit - Data of the element's content rectangle.
|
75595 |
-
*/
|
75596 |
-
function ResizeObserverEntry(target, rectInit) {
|
75597 |
-
var contentRect = createReadOnlyRect(rectInit);
|
75598 |
-
// According to the specification following properties are not writable
|
75599 |
-
// and are also not enumerable in the native implementation.
|
75600 |
-
//
|
75601 |
-
// Property accessors are not being used as they'd require to define a
|
75602 |
-
// private WeakMap storage which may cause memory leaks in browsers that
|
75603 |
-
// don't support this type of collections.
|
75604 |
-
defineConfigurable(this, { target: target, contentRect: contentRect });
|
75605 |
-
}
|
75606 |
-
return ResizeObserverEntry;
|
75607 |
}());
|
75608 |
|
75609 |
-
var ResizeObserverSPI = /** @class */ (function () {
|
75610 |
-
/**
|
75611 |
-
* Creates a new instance of ResizeObserver.
|
75612 |
-
*
|
75613 |
-
* @param {ResizeObserverCallback} callback - Callback function that is invoked
|
75614 |
-
* when one of the observed elements changes it's content dimensions.
|
75615 |
-
* @param {ResizeObserverController} controller - Controller instance which
|
75616 |
-
* is responsible for the updates of observer.
|
75617 |
-
* @param {ResizeObserver} callbackCtx - Reference to the public
|
75618 |
-
* ResizeObserver instance which will be passed to callback function.
|
75619 |
-
*/
|
75620 |
-
function ResizeObserverSPI(callback, controller, callbackCtx) {
|
75621 |
-
/**
|
75622 |
-
* Collection of resize observations that have detected changes in dimensions
|
75623 |
-
* of elements.
|
75624 |
-
*
|
75625 |
-
* @private {Array<ResizeObservation>}
|
75626 |
-
*/
|
75627 |
-
this.activeObservations_ = [];
|
75628 |
-
/**
|
75629 |
-
* Registry of the ResizeObservation instances.
|
75630 |
-
*
|
75631 |
-
* @private {Map<Element, ResizeObservation>}
|
75632 |
-
*/
|
75633 |
-
this.observations_ = new MapShim();
|
75634 |
-
if (typeof callback !== 'function') {
|
75635 |
-
throw new TypeError('The callback provided as parameter 1 is not a function.');
|
75636 |
-
}
|
75637 |
-
this.callback_ = callback;
|
75638 |
-
this.controller_ = controller;
|
75639 |
-
this.callbackCtx_ = callbackCtx;
|
75640 |
-
}
|
75641 |
-
/**
|
75642 |
-
* Starts observing provided element.
|
75643 |
-
*
|
75644 |
-
* @param {Element} target - Element to be observed.
|
75645 |
-
* @returns {void}
|
75646 |
-
*/
|
75647 |
-
ResizeObserverSPI.prototype.observe = function (target) {
|
75648 |
-
if (!arguments.length) {
|
75649 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75650 |
-
}
|
75651 |
-
// Do nothing if current environment doesn't have the Element interface.
|
75652 |
-
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75653 |
-
return;
|
75654 |
-
}
|
75655 |
-
if (!(target instanceof getWindowOf(target).Element)) {
|
75656 |
-
throw new TypeError('parameter 1 is not of type "Element".');
|
75657 |
-
}
|
75658 |
-
var observations = this.observations_;
|
75659 |
-
// Do nothing if element is already being observed.
|
75660 |
-
if (observations.has(target)) {
|
75661 |
-
return;
|
75662 |
-
}
|
75663 |
-
observations.set(target, new ResizeObservation(target));
|
75664 |
-
this.controller_.addObserver(this);
|
75665 |
-
// Force the update of observations.
|
75666 |
-
this.controller_.refresh();
|
75667 |
-
};
|
75668 |
-
/**
|
75669 |
-
* Stops observing provided element.
|
75670 |
-
*
|
75671 |
-
* @param {Element} target - Element to stop observing.
|
75672 |
-
* @returns {void}
|
75673 |
-
*/
|
75674 |
-
ResizeObserverSPI.prototype.unobserve = function (target) {
|
75675 |
-
if (!arguments.length) {
|
75676 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75677 |
-
}
|
75678 |
-
// Do nothing if current environment doesn't have the Element interface.
|
75679 |
-
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75680 |
-
return;
|
75681 |
-
}
|
75682 |
-
if (!(target instanceof getWindowOf(target).Element)) {
|
75683 |
-
throw new TypeError('parameter 1 is not of type "Element".');
|
75684 |
-
}
|
75685 |
-
var observations = this.observations_;
|
75686 |
-
// Do nothing if element is not being observed.
|
75687 |
-
if (!observations.has(target)) {
|
75688 |
-
return;
|
75689 |
-
}
|
75690 |
-
observations.delete(target);
|
75691 |
-
if (!observations.size) {
|
75692 |
-
this.controller_.removeObserver(this);
|
75693 |
-
}
|
75694 |
-
};
|
75695 |
-
/**
|
75696 |
-
* Stops observing all elements.
|
75697 |
-
*
|
75698 |
-
* @returns {void}
|
75699 |
-
*/
|
75700 |
-
ResizeObserverSPI.prototype.disconnect = function () {
|
75701 |
-
this.clearActive();
|
75702 |
-
this.observations_.clear();
|
75703 |
-
this.controller_.removeObserver(this);
|
75704 |
-
};
|
75705 |
-
/**
|
75706 |
-
* Collects observation instances the associated element of which has changed
|
75707 |
-
* it's content rectangle.
|
75708 |
-
*
|
75709 |
-
* @returns {void}
|
75710 |
-
*/
|
75711 |
-
ResizeObserverSPI.prototype.gatherActive = function () {
|
75712 |
-
var _this = this;
|
75713 |
-
this.clearActive();
|
75714 |
-
this.observations_.forEach(function (observation) {
|
75715 |
-
if (observation.isActive()) {
|
75716 |
-
_this.activeObservations_.push(observation);
|
75717 |
-
}
|
75718 |
-
});
|
75719 |
-
};
|
75720 |
-
/**
|
75721 |
-
* Invokes initial callback function with a list of ResizeObserverEntry
|
75722 |
-
* instances collected from active resize observations.
|
75723 |
-
*
|
75724 |
-
* @returns {void}
|
75725 |
-
*/
|
75726 |
-
ResizeObserverSPI.prototype.broadcastActive = function () {
|
75727 |
-
// Do nothing if observer doesn't have active observations.
|
75728 |
-
if (!this.hasActive()) {
|
75729 |
-
return;
|
75730 |
-
}
|
75731 |
-
var ctx = this.callbackCtx_;
|
75732 |
-
// Create ResizeObserverEntry instance for every active observation.
|
75733 |
-
var entries = this.activeObservations_.map(function (observation) {
|
75734 |
-
return new ResizeObserverEntry(observation.target, observation.broadcastRect());
|
75735 |
-
});
|
75736 |
-
this.callback_.call(ctx, entries, ctx);
|
75737 |
-
this.clearActive();
|
75738 |
-
};
|
75739 |
-
/**
|
75740 |
-
* Clears the collection of active observations.
|
75741 |
-
*
|
75742 |
-
* @returns {void}
|
75743 |
-
*/
|
75744 |
-
ResizeObserverSPI.prototype.clearActive = function () {
|
75745 |
-
this.activeObservations_.splice(0);
|
75746 |
-
};
|
75747 |
-
/**
|
75748 |
-
* Tells whether observer has active observations.
|
75749 |
-
*
|
75750 |
-
* @returns {boolean}
|
75751 |
-
*/
|
75752 |
-
ResizeObserverSPI.prototype.hasActive = function () {
|
75753 |
-
return this.activeObservations_.length > 0;
|
75754 |
-
};
|
75755 |
-
return ResizeObserverSPI;
|
75756 |
}());
|
75757 |
|
75758 |
-
// Registry of internal observers. If WeakMap is not available use current shim
|
75759 |
-
// for the Map collection as it has all required methods and because WeakMap
|
75760 |
-
// can't be fully polyfilled anyway.
|
75761 |
-
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
|
75762 |
-
/**
|
75763 |
-
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
|
75764 |
-
* exposing only those methods and properties that are defined in the spec.
|
75765 |
-
*/
|
75766 |
-
var ResizeObserver = /** @class */ (function () {
|
75767 |
-
/**
|
75768 |
-
* Creates a new instance of ResizeObserver.
|
75769 |
-
*
|
75770 |
-
* @param {ResizeObserverCallback} callback - Callback that is invoked when
|
75771 |
-
* dimensions of the observed elements change.
|
75772 |
-
*/
|
75773 |
-
function ResizeObserver(callback) {
|
75774 |
-
if (!(this instanceof ResizeObserver)) {
|
75775 |
-
throw new TypeError('Cannot call a class as a function.');
|
75776 |
-
}
|
75777 |
-
if (!arguments.length) {
|
75778 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75779 |
-
}
|
75780 |
-
var controller = ResizeObserverController.getInstance();
|
75781 |
-
var observer = new ResizeObserverSPI(callback, controller, this);
|
75782 |
-
observers.set(this, observer);
|
75783 |
-
}
|
75784 |
-
return ResizeObserver;
|
75785 |
-
}());
|
75786 |
-
// Expose public methods of ResizeObserver.
|
75787 |
-
[
|
75788 |
-
'observe',
|
75789 |
-
'unobserve',
|
75790 |
-
'disconnect'
|
75791 |
-
].forEach(function (method) {
|
75792 |
-
ResizeObserver.prototype[method] = function () {
|
75793 |
-
var _a;
|
75794 |
-
return (_a = observers.get(this))[method].apply(_a, arguments);
|
75795 |
-
};
|
75796 |
});
|
75797 |
|
75798 |
-
var index = (function () {
|
75799 |
-
// Export existing implementation if available.
|
75800 |
-
if (typeof global$1.ResizeObserver !== 'undefined') {
|
75801 |
-
return global$1.ResizeObserver;
|
75802 |
-
}
|
75803 |
-
return ResizeObserver;
|
75804 |
})();
|
75805 |
|
75806 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
@@ -100955,8 +100955,8 @@ var UAGBCF7 = function (_Component) {
|
|
100955 |
wp.element.createElement(
|
100956 |
"div",
|
100957 |
{
|
100958 |
-
className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, "uagb-cf7-styler__outer-wrap")
|
100959 |
-
|
100960 |
wp.element.createElement(
|
100961 |
"div",
|
100962 |
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-cf7-styler__align-" + align, "uagb-cf7-styler__field-style-" + fieldStyle, "uagb-cf7-styler__btn-align-" + buttonAlignment, "uagb-cf7-styler__highlight-style-" + validationMsgPosition, enableOveride ? "uagb-cf7-styler__check-style-enabled" : "", enableHighlightBorder ? "uagb-cf7-styler__highlight-border" : "") },
|
@@ -102970,8 +102970,8 @@ var UAGBGF = function (_Component) {
|
|
102970 |
wp.element.createElement(
|
102971 |
"div",
|
102972 |
{
|
102973 |
-
className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, "uagb-gf-styler__outer-wrap")
|
102974 |
-
|
102975 |
wp.element.createElement(
|
102976 |
"div",
|
102977 |
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-gf-styler__align-" + align, "uagb-gf-styler__field-style-" + fieldStyle, "uagb-gf-styler__btn-align-" + buttonAlignment, "uagb-gf-styler__gform-heading-" + titleDescStyle, enableOveride ? "uagb-gf-styler__check-style-enabled" : "", enableLabel ? "uagb-gf-styler__hide-label" : "", advancedValidationSettings ? "uagb-gf-styler__error-yes" : "") },
|
@@ -103323,21 +103323,21 @@ function styling(props) {
|
|
103323 |
"color": fieldInputColor,
|
103324 |
"text-align": align
|
103325 |
},
|
103326 |
-
" form label": {
|
103327 |
"color": fieldLabelColor,
|
103328 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103329 |
"font-family": labelFontFamily,
|
103330 |
"font-weight": labelFontWeight,
|
103331 |
"line-height": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelLineHeight, labelLineHeightType)
|
103332 |
},
|
103333 |
-
" form .gfield_radio label": {
|
103334 |
"color": fieldLabelColor,
|
103335 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103336 |
"font-family": labelFontFamily,
|
103337 |
"font-weight": labelFontWeight,
|
103338 |
"line-height": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelLineHeight, labelLineHeightType)
|
103339 |
},
|
103340 |
-
" form .gfield_checkbox label": {
|
103341 |
"color": fieldLabelColor,
|
103342 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103343 |
"font-family": labelFontFamily,
|
@@ -103386,7 +103386,7 @@ function styling(props) {
|
|
103386 |
" .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox']:checked + label:before": {
|
103387 |
"background-color": fieldBgColor,
|
103388 |
"color": fieldInputColor,
|
103389 |
-
"font-size": "calc( " +
|
103390 |
"border-color": fieldBorderFocusColor
|
103391 |
},
|
103392 |
" .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before": {
|
@@ -103403,7 +103403,7 @@ function styling(props) {
|
|
103403 |
" .uagb-gf-styler__check-style-enabled input[type='checkbox']:checked + label:before": {
|
103404 |
"background-color": fieldBgColor,
|
103405 |
"color": fieldInputColor,
|
103406 |
-
"font-size": "calc( " +
|
103407 |
"border-color": fieldBorderFocusColor
|
103408 |
},
|
103409 |
" .uagb-gf-styler__check-style-enabled input[type='checkbox'] + label:before": {
|
@@ -103466,12 +103466,12 @@ function styling(props) {
|
|
103466 |
"border-style": "solid",
|
103467 |
"border-width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderWidth, "px"),
|
103468 |
"border-radius": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderRadius, fieldBorderRadiusType),
|
103469 |
-
"font-size": "calc( " +
|
103470 |
}), _defineProperty(_selectors, " .uagb-gf-styler__field-style-box input[type='checkbox']:checked + label:before", {
|
103471 |
"border-style": "solid",
|
103472 |
"border-width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderWidth, "px"),
|
103473 |
"border-radius": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderRadius, fieldBorderRadiusType),
|
103474 |
-
"font-size": "calc( " +
|
103475 |
}), _defineProperty(_selectors, " .gfield_radio input[type='radio']:checked + label:before", {
|
103476 |
"background-color": fieldInputColor
|
103477 |
}), _defineProperty(_selectors, " .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before", {
|
@@ -108782,16 +108782,22 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
108782 |
if (element.innerBlocks.length > 0) {
|
108783 |
getData(element.innerBlocks, a);
|
108784 |
} else {
|
108785 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
108786 |
}
|
108787 |
});
|
108788 |
} else {
|
108789 |
if (header.name === 'core/heading') {
|
108790 |
-
a.push(header
|
108791 |
}
|
108792 |
|
108793 |
if (header.name === 'uagb/advanced-heading') {
|
108794 |
-
a.push(header
|
108795 |
}
|
108796 |
}
|
108797 |
});
|
@@ -108821,21 +108827,22 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
108821 |
var headers = [];
|
108822 |
|
108823 |
if (typeof all_headers != 'undefined') {
|
108824 |
-
|
108825 |
all_headers.forEach(function (heading, key) {
|
108826 |
|
108827 |
-
var
|
|
|
|
|
108828 |
|
108829 |
-
var contentName =
|
108830 |
|
108831 |
-
var headingContentEmpty = typeof
|
108832 |
|
108833 |
if (!headingContentEmpty) {
|
108834 |
headers.push({
|
108835 |
tag: contentLevel,
|
108836 |
-
text: striptags(
|
108837 |
-
link: parseTocSlug(striptags(
|
108838 |
-
content:
|
108839 |
});
|
108840 |
}
|
108841 |
});
|
1702 |
/*! all exports used */
|
1703 |
/***/ (function(module, exports) {
|
1704 |
|
1705 |
+
var g;
|
1706 |
+
|
1707 |
+
// This works in non-strict mode
|
1708 |
+
g = (function() {
|
1709 |
+
return this;
|
1710 |
+
})();
|
1711 |
+
|
1712 |
+
try {
|
1713 |
+
// This works if eval is allowed (see CSP)
|
1714 |
+
g = g || Function("return this")() || (1,eval)("this");
|
1715 |
+
} catch(e) {
|
1716 |
+
// This works if the window reference is available
|
1717 |
+
if(typeof window === "object")
|
1718 |
+
g = window;
|
1719 |
+
}
|
1720 |
+
|
1721 |
+
// g can still be undefined, but nothing to do about it...
|
1722 |
+
// We return undefined, instead of nothing here, so it's
|
1723 |
+
// easier to handle this case. if(!global) { ...}
|
1724 |
+
|
1725 |
+
module.exports = g;
|
1726 |
|
1727 |
|
1728 |
/***/ }),
|
3856 |
/*! all exports used */
|
3857 |
/***/ (function(module, exports) {
|
3858 |
|
3859 |
+
module.exports = function(module) {
|
3860 |
+
if(!module.webpackPolyfill) {
|
3861 |
+
module.deprecate = function() {};
|
3862 |
+
module.paths = [];
|
3863 |
+
// module.parent = undefined by default
|
3864 |
+
if(!module.children) module.children = [];
|
3865 |
+
Object.defineProperty(module, "loaded", {
|
3866 |
+
enumerable: true,
|
3867 |
+
get: function() {
|
3868 |
+
return module.l;
|
3869 |
+
}
|
3870 |
+
});
|
3871 |
+
Object.defineProperty(module, "id", {
|
3872 |
+
enumerable: true,
|
3873 |
+
get: function() {
|
3874 |
+
return module.i;
|
3875 |
+
}
|
3876 |
+
});
|
3877 |
+
module.webpackPolyfill = 1;
|
3878 |
+
}
|
3879 |
+
return module;
|
3880 |
+
};
|
3881 |
|
3882 |
|
3883 |
/***/ }),
|
60902 |
Fragment = _wp$element.Fragment;
|
60903 |
var __ = wp.i18n.__;
|
60904 |
|
60905 |
+
var MAX_POSTS_COLUMNS = 8;
|
60906 |
var _wp$components = wp.components,
|
60907 |
PanelBody = _wp$components.PanelBody,
|
60908 |
Placeholder = _wp$components.Placeholder,
|
61501 |
return setAttributes({ excerptLength: value });
|
61502 |
},
|
61503 |
min: 1,
|
61504 |
+
max: 500,
|
61505 |
allowReset: true
|
61506 |
})
|
61507 |
),
|
61666 |
onChange: function onChange(value) {
|
61667 |
return setAttributes({ titleTag: value });
|
61668 |
},
|
61669 |
+
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }, { value: "span", label: __("span") }, { value: "p", label: __("p") }]
|
61670 |
}),
|
61671 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__components_typography__["a" /* default */], {
|
61672 |
label: __("Typography"),
|
62667 |
Fragment = _wp$element.Fragment;
|
62668 |
var __ = wp.i18n.__;
|
62669 |
|
62670 |
+
var MAX_POSTS_COLUMNS = 8;
|
62671 |
var _wp$components = wp.components,
|
62672 |
PanelBody = _wp$components.PanelBody,
|
62673 |
Placeholder = _wp$components.Placeholder,
|
63252 |
return setAttributes({ excerptLength: value });
|
63253 |
},
|
63254 |
min: 1,
|
63255 |
+
max: 500,
|
63256 |
allowReset: true
|
63257 |
})
|
63258 |
),
|
63412 |
onChange: function onChange(value) {
|
63413 |
return setAttributes({ titleTag: value });
|
63414 |
},
|
63415 |
+
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }, { value: "span", label: __("span") }, { value: "p", label: __("p") }]
|
63416 |
}),
|
63417 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__components_typography__["a" /* default */], {
|
63418 |
label: __("Typography"),
|
71527 |
var __ = wp.i18n.__;
|
71528 |
var decodeEntities = wp.htmlEntities.decodeEntities;
|
71529 |
|
71530 |
+
var MAX_POSTS_COLUMNS = 8;
|
71531 |
var _wp$components = wp.components,
|
71532 |
PanelBody = _wp$components.PanelBody,
|
71533 |
Placeholder = _wp$components.Placeholder,
|
72231 |
return setAttributes({ excerptLength: value });
|
72232 |
},
|
72233 |
min: 1,
|
72234 |
+
max: 500,
|
72235 |
allowReset: true
|
72236 |
})
|
72237 |
),
|
72391 |
onChange: function onChange(value) {
|
72392 |
return setAttributes({ titleTag: value });
|
72393 |
},
|
72394 |
+
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }, { value: "span", label: __("span") }, { value: "p", label: __("p") }]
|
72395 |
}),
|
72396 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_typography__["a" /* default */], {
|
72397 |
label: __("Typography"),
|
74876 |
|
74877 |
"use strict";
|
74878 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
74879 |
+
/* WEBPACK VAR INJECTION */(function(global) {/**
|
74880 |
+
* A collection of shims that provide minimal functionality of the ES6 collections.
|
74881 |
+
*
|
74882 |
+
* These implementations are not meant to be used outside of the ResizeObserver
|
74883 |
+
* modules as they cover only a limited range of use cases.
|
74884 |
+
*/
|
74885 |
+
/* eslint-disable require-jsdoc, valid-jsdoc */
|
74886 |
+
var MapShim = (function () {
|
74887 |
+
if (typeof Map !== 'undefined') {
|
74888 |
+
return Map;
|
74889 |
+
}
|
74890 |
+
/**
|
74891 |
+
* Returns index in provided array that matches the specified key.
|
74892 |
+
*
|
74893 |
+
* @param {Array<Array>} arr
|
74894 |
+
* @param {*} key
|
74895 |
+
* @returns {number}
|
74896 |
+
*/
|
74897 |
+
function getIndex(arr, key) {
|
74898 |
+
var result = -1;
|
74899 |
+
arr.some(function (entry, index) {
|
74900 |
+
if (entry[0] === key) {
|
74901 |
+
result = index;
|
74902 |
+
return true;
|
74903 |
+
}
|
74904 |
+
return false;
|
74905 |
+
});
|
74906 |
+
return result;
|
74907 |
+
}
|
74908 |
+
return /** @class */ (function () {
|
74909 |
+
function class_1() {
|
74910 |
+
this.__entries__ = [];
|
74911 |
+
}
|
74912 |
+
Object.defineProperty(class_1.prototype, "size", {
|
74913 |
+
/**
|
74914 |
+
* @returns {boolean}
|
74915 |
+
*/
|
74916 |
+
get: function () {
|
74917 |
+
return this.__entries__.length;
|
74918 |
+
},
|
74919 |
+
enumerable: true,
|
74920 |
+
configurable: true
|
74921 |
+
});
|
74922 |
+
/**
|
74923 |
+
* @param {*} key
|
74924 |
+
* @returns {*}
|
74925 |
+
*/
|
74926 |
+
class_1.prototype.get = function (key) {
|
74927 |
+
var index = getIndex(this.__entries__, key);
|
74928 |
+
var entry = this.__entries__[index];
|
74929 |
+
return entry && entry[1];
|
74930 |
+
};
|
74931 |
+
/**
|
74932 |
+
* @param {*} key
|
74933 |
+
* @param {*} value
|
74934 |
+
* @returns {void}
|
74935 |
+
*/
|
74936 |
+
class_1.prototype.set = function (key, value) {
|
74937 |
+
var index = getIndex(this.__entries__, key);
|
74938 |
+
if (~index) {
|
74939 |
+
this.__entries__[index][1] = value;
|
74940 |
+
}
|
74941 |
+
else {
|
74942 |
+
this.__entries__.push([key, value]);
|
74943 |
+
}
|
74944 |
+
};
|
74945 |
+
/**
|
74946 |
+
* @param {*} key
|
74947 |
+
* @returns {void}
|
74948 |
+
*/
|
74949 |
+
class_1.prototype.delete = function (key) {
|
74950 |
+
var entries = this.__entries__;
|
74951 |
+
var index = getIndex(entries, key);
|
74952 |
+
if (~index) {
|
74953 |
+
entries.splice(index, 1);
|
74954 |
+
}
|
74955 |
+
};
|
74956 |
+
/**
|
74957 |
+
* @param {*} key
|
74958 |
+
* @returns {void}
|
74959 |
+
*/
|
74960 |
+
class_1.prototype.has = function (key) {
|
74961 |
+
return !!~getIndex(this.__entries__, key);
|
74962 |
+
};
|
74963 |
+
/**
|
74964 |
+
* @returns {void}
|
74965 |
+
*/
|
74966 |
+
class_1.prototype.clear = function () {
|
74967 |
+
this.__entries__.splice(0);
|
74968 |
+
};
|
74969 |
+
/**
|
74970 |
+
* @param {Function} callback
|
74971 |
+
* @param {*} [ctx=null]
|
74972 |
+
* @returns {void}
|
74973 |
+
*/
|
74974 |
+
class_1.prototype.forEach = function (callback, ctx) {
|
74975 |
+
if (ctx === void 0) { ctx = null; }
|
74976 |
+
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
|
74977 |
+
var entry = _a[_i];
|
74978 |
+
callback.call(ctx, entry[1], entry[0]);
|
74979 |
+
}
|
74980 |
+
};
|
74981 |
+
return class_1;
|
74982 |
+
}());
|
74983 |
})();
|
74984 |
|
74985 |
+
/**
|
74986 |
+
* Detects whether window and document objects are available in current environment.
|
74987 |
+
*/
|
74988 |
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
|
74989 |
|
74990 |
+
// Returns global object of a current environment.
|
74991 |
+
var global$1 = (function () {
|
74992 |
+
if (typeof global !== 'undefined' && global.Math === Math) {
|
74993 |
+
return global;
|
74994 |
+
}
|
74995 |
+
if (typeof self !== 'undefined' && self.Math === Math) {
|
74996 |
+
return self;
|
74997 |
+
}
|
74998 |
+
if (typeof window !== 'undefined' && window.Math === Math) {
|
74999 |
+
return window;
|
75000 |
+
}
|
75001 |
+
// eslint-disable-next-line no-new-func
|
75002 |
+
return Function('return this')();
|
75003 |
})();
|
75004 |
|
75005 |
+
/**
|
75006 |
+
* A shim for the requestAnimationFrame which falls back to the setTimeout if
|
75007 |
+
* first one is not supported.
|
75008 |
+
*
|
75009 |
+
* @returns {number} Requests' identifier.
|
75010 |
+
*/
|
75011 |
+
var requestAnimationFrame$1 = (function () {
|
75012 |
+
if (typeof requestAnimationFrame === 'function') {
|
75013 |
+
// It's required to use a bounded function because IE sometimes throws
|
75014 |
+
// an "Invalid calling object" error if rAF is invoked without the global
|
75015 |
+
// object on the left hand side.
|
75016 |
+
return requestAnimationFrame.bind(global$1);
|
75017 |
+
}
|
75018 |
+
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
|
75019 |
})();
|
75020 |
|
75021 |
+
// Defines minimum timeout before adding a trailing call.
|
75022 |
+
var trailingTimeout = 2;
|
75023 |
+
/**
|
75024 |
+
* Creates a wrapper function which ensures that provided callback will be
|
75025 |
+
* invoked only once during the specified delay period.
|
75026 |
+
*
|
75027 |
+
* @param {Function} callback - Function to be invoked after the delay period.
|
75028 |
+
* @param {number} delay - Delay after which to invoke callback.
|
75029 |
+
* @returns {Function}
|
75030 |
+
*/
|
75031 |
+
function throttle (callback, delay) {
|
75032 |
+
var leadingCall = false, trailingCall = false, lastCallTime = 0;
|
75033 |
+
/**
|
75034 |
+
* Invokes the original callback function and schedules new invocation if
|
75035 |
+
* the "proxy" was called during current request.
|
75036 |
+
*
|
75037 |
+
* @returns {void}
|
75038 |
+
*/
|
75039 |
+
function resolvePending() {
|
75040 |
+
if (leadingCall) {
|
75041 |
+
leadingCall = false;
|
75042 |
+
callback();
|
75043 |
+
}
|
75044 |
+
if (trailingCall) {
|
75045 |
+
proxy();
|
75046 |
+
}
|
75047 |
+
}
|
75048 |
+
/**
|
75049 |
+
* Callback invoked after the specified delay. It will further postpone
|
75050 |
+
* invocation of the original function delegating it to the
|
75051 |
+
* requestAnimationFrame.
|
75052 |
+
*
|
75053 |
+
* @returns {void}
|
75054 |
+
*/
|
75055 |
+
function timeoutCallback() {
|
75056 |
+
requestAnimationFrame$1(resolvePending);
|
75057 |
+
}
|
75058 |
+
/**
|
75059 |
+
* Schedules invocation of the original function.
|
75060 |
+
*
|
75061 |
+
* @returns {void}
|
75062 |
+
*/
|
75063 |
+
function proxy() {
|
75064 |
+
var timeStamp = Date.now();
|
75065 |
+
if (leadingCall) {
|
75066 |
+
// Reject immediately following calls.
|
75067 |
+
if (timeStamp - lastCallTime < trailingTimeout) {
|
75068 |
+
return;
|
75069 |
+
}
|
75070 |
+
// Schedule new call to be in invoked when the pending one is resolved.
|
75071 |
+
// This is important for "transitions" which never actually start
|
75072 |
+
// immediately so there is a chance that we might miss one if change
|
75073 |
+
// happens amids the pending invocation.
|
75074 |
+
trailingCall = true;
|
75075 |
+
}
|
75076 |
+
else {
|
75077 |
+
leadingCall = true;
|
75078 |
+
trailingCall = false;
|
75079 |
+
setTimeout(timeoutCallback, delay);
|
75080 |
+
}
|
75081 |
+
lastCallTime = timeStamp;
|
75082 |
+
}
|
75083 |
+
return proxy;
|
75084 |
+
}
|
75085 |
+
|
75086 |
+
// Minimum delay before invoking the update of observers.
|
75087 |
+
var REFRESH_DELAY = 20;
|
75088 |
+
// A list of substrings of CSS properties used to find transition events that
|
75089 |
+
// might affect dimensions of observed elements.
|
75090 |
+
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
|
75091 |
+
// Check if MutationObserver is available.
|
75092 |
+
var mutationObserverSupported = typeof MutationObserver !== 'undefined';
|
75093 |
+
/**
|
75094 |
+
* Singleton controller class which handles updates of ResizeObserver instances.
|
75095 |
+
*/
|
75096 |
+
var ResizeObserverController = /** @class */ (function () {
|
75097 |
+
/**
|
75098 |
+
* Creates a new instance of ResizeObserverController.
|
75099 |
+
*
|
75100 |
+
* @private
|
75101 |
+
*/
|
75102 |
+
function ResizeObserverController() {
|
75103 |
+
/**
|
75104 |
+
* Indicates whether DOM listeners have been added.
|
75105 |
+
*
|
75106 |
+
* @private {boolean}
|
75107 |
+
*/
|
75108 |
+
this.connected_ = false;
|
75109 |
+
/**
|
75110 |
+
* Tells that controller has subscribed for Mutation Events.
|
75111 |
+
*
|
75112 |
+
* @private {boolean}
|
75113 |
+
*/
|
75114 |
+
this.mutationEventsAdded_ = false;
|
75115 |
+
/**
|
75116 |
+
* Keeps reference to the instance of MutationObserver.
|
75117 |
+
*
|
75118 |
+
* @private {MutationObserver}
|
75119 |
+
*/
|
75120 |
+
this.mutationsObserver_ = null;
|
75121 |
+
/**
|
75122 |
+
* A list of connected observers.
|
75123 |
+
*
|
75124 |
+
* @private {Array<ResizeObserverSPI>}
|
75125 |
+
*/
|
75126 |
+
this.observers_ = [];
|
75127 |
+
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
|
75128 |
+
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
|
75129 |
+
}
|
75130 |
+
/**
|
75131 |
+
* Adds observer to observers list.
|
75132 |
+
*
|
75133 |
+
* @param {ResizeObserverSPI} observer - Observer to be added.
|
75134 |
+
* @returns {void}
|
75135 |
+
*/
|
75136 |
+
ResizeObserverController.prototype.addObserver = function (observer) {
|
75137 |
+
if (!~this.observers_.indexOf(observer)) {
|
75138 |
+
this.observers_.push(observer);
|
75139 |
+
}
|
75140 |
+
// Add listeners if they haven't been added yet.
|
75141 |
+
if (!this.connected_) {
|
75142 |
+
this.connect_();
|
75143 |
+
}
|
75144 |
+
};
|
75145 |
+
/**
|
75146 |
+
* Removes observer from observers list.
|
75147 |
+
*
|
75148 |
+
* @param {ResizeObserverSPI} observer - Observer to be removed.
|
75149 |
+
* @returns {void}
|
75150 |
+
*/
|
75151 |
+
ResizeObserverController.prototype.removeObserver = function (observer) {
|
75152 |
+
var observers = this.observers_;
|
75153 |
+
var index = observers.indexOf(observer);
|
75154 |
+
// Remove observer if it's present in registry.
|
75155 |
+
if (~index) {
|
75156 |
+
observers.splice(index, 1);
|
75157 |
+
}
|
75158 |
+
// Remove listeners if controller has no connected observers.
|
75159 |
+
if (!observers.length && this.connected_) {
|
75160 |
+
this.disconnect_();
|
75161 |
+
}
|
75162 |
+
};
|
75163 |
+
/**
|
75164 |
+
* Invokes the update of observers. It will continue running updates insofar
|
75165 |
+
* it detects changes.
|
75166 |
+
*
|
75167 |
+
* @returns {void}
|
75168 |
+
*/
|
75169 |
+
ResizeObserverController.prototype.refresh = function () {
|
75170 |
+
var changesDetected = this.updateObservers_();
|
75171 |
+
// Continue running updates if changes have been detected as there might
|
75172 |
+
// be future ones caused by CSS transitions.
|
75173 |
+
if (changesDetected) {
|
75174 |
+
this.refresh();
|
75175 |
+
}
|
75176 |
+
};
|
75177 |
+
/**
|
75178 |
+
* Updates every observer from observers list and notifies them of queued
|
75179 |
+
* entries.
|
75180 |
+
*
|
75181 |
+
* @private
|
75182 |
+
* @returns {boolean} Returns "true" if any observer has detected changes in
|
75183 |
+
* dimensions of it's elements.
|
75184 |
+
*/
|
75185 |
+
ResizeObserverController.prototype.updateObservers_ = function () {
|
75186 |
+
// Collect observers that have active observations.
|
75187 |
+
var activeObservers = this.observers_.filter(function (observer) {
|
75188 |
+
return observer.gatherActive(), observer.hasActive();
|
75189 |
+
});
|
75190 |
+
// Deliver notifications in a separate cycle in order to avoid any
|
75191 |
+
// collisions between observers, e.g. when multiple instances of
|
75192 |
+
// ResizeObserver are tracking the same element and the callback of one
|
75193 |
+
// of them changes content dimensions of the observed target. Sometimes
|
75194 |
+
// this may result in notifications being blocked for the rest of observers.
|
75195 |
+
activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
|
75196 |
+
return activeObservers.length > 0;
|
75197 |
+
};
|
75198 |
+
/**
|
75199 |
+
* Initializes DOM listeners.
|
75200 |
+
*
|
75201 |
+
* @private
|
75202 |
+
* @returns {void}
|
75203 |
+
*/
|
75204 |
+
ResizeObserverController.prototype.connect_ = function () {
|
75205 |
+
// Do nothing if running in a non-browser environment or if listeners
|
75206 |
+
// have been already added.
|
75207 |
+
if (!isBrowser || this.connected_) {
|
75208 |
+
return;
|
75209 |
+
}
|
75210 |
+
// Subscription to the "Transitionend" event is used as a workaround for
|
75211 |
+
// delayed transitions. This way it's possible to capture at least the
|
75212 |
+
// final state of an element.
|
75213 |
+
document.addEventListener('transitionend', this.onTransitionEnd_);
|
75214 |
+
window.addEventListener('resize', this.refresh);
|
75215 |
+
if (mutationObserverSupported) {
|
75216 |
+
this.mutationsObserver_ = new MutationObserver(this.refresh);
|
75217 |
+
this.mutationsObserver_.observe(document, {
|
75218 |
+
attributes: true,
|
75219 |
+
childList: true,
|
75220 |
+
characterData: true,
|
75221 |
+
subtree: true
|
75222 |
+
});
|
75223 |
+
}
|
75224 |
+
else {
|
75225 |
+
document.addEventListener('DOMSubtreeModified', this.refresh);
|
75226 |
+
this.mutationEventsAdded_ = true;
|
75227 |
+
}
|
75228 |
+
this.connected_ = true;
|
75229 |
+
};
|
75230 |
+
/**
|
75231 |
+
* Removes DOM listeners.
|
75232 |
+
*
|
75233 |
+
* @private
|
75234 |
+
* @returns {void}
|
75235 |
+
*/
|
75236 |
+
ResizeObserverController.prototype.disconnect_ = function () {
|
75237 |
+
// Do nothing if running in a non-browser environment or if listeners
|
75238 |
+
// have been already removed.
|
75239 |
+
if (!isBrowser || !this.connected_) {
|
75240 |
+
return;
|
75241 |
+
}
|
75242 |
+
document.removeEventListener('transitionend', this.onTransitionEnd_);
|
75243 |
+
window.removeEventListener('resize', this.refresh);
|
75244 |
+
if (this.mutationsObserver_) {
|
75245 |
+
this.mutationsObserver_.disconnect();
|
75246 |
+
}
|
75247 |
+
if (this.mutationEventsAdded_) {
|
75248 |
+
document.removeEventListener('DOMSubtreeModified', this.refresh);
|
75249 |
+
}
|
75250 |
+
this.mutationsObserver_ = null;
|
75251 |
+
this.mutationEventsAdded_ = false;
|
75252 |
+
this.connected_ = false;
|
75253 |
+
};
|
75254 |
+
/**
|
75255 |
+
* "Transitionend" event handler.
|
75256 |
+
*
|
75257 |
+
* @private
|
75258 |
+
* @param {TransitionEvent} event
|
75259 |
+
* @returns {void}
|
75260 |
+
*/
|
75261 |
+
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
|
75262 |
+
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
|
75263 |
+
// Detect whether transition may affect dimensions of an element.
|
75264 |
+
var isReflowProperty = transitionKeys.some(function (key) {
|
75265 |
+
return !!~propertyName.indexOf(key);
|
75266 |
+
});
|
75267 |
+
if (isReflowProperty) {
|
75268 |
+
this.refresh();
|
75269 |
+
}
|
75270 |
+
};
|
75271 |
+
/**
|
75272 |
+
* Returns instance of the ResizeObserverController.
|
75273 |
+
*
|
75274 |
+
* @returns {ResizeObserverController}
|
75275 |
+
*/
|
75276 |
+
ResizeObserverController.getInstance = function () {
|
75277 |
+
if (!this.instance_) {
|
75278 |
+
this.instance_ = new ResizeObserverController();
|
75279 |
+
}
|
75280 |
+
return this.instance_;
|
75281 |
+
};
|
75282 |
+
/**
|
75283 |
+
* Holds reference to the controller's instance.
|
75284 |
+
*
|
75285 |
+
* @private {ResizeObserverController}
|
75286 |
+
*/
|
75287 |
+
ResizeObserverController.instance_ = null;
|
75288 |
+
return ResizeObserverController;
|
75289 |
}());
|
75290 |
|
75291 |
+
/**
|
75292 |
+
* Defines non-writable/enumerable properties of the provided target object.
|
75293 |
+
*
|
75294 |
+
* @param {Object} target - Object for which to define properties.
|
75295 |
+
* @param {Object} props - Properties to be defined.
|
75296 |
+
* @returns {Object} Target object.
|
75297 |
+
*/
|
75298 |
+
var defineConfigurable = (function (target, props) {
|
75299 |
+
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
|
75300 |
+
var key = _a[_i];
|
75301 |
+
Object.defineProperty(target, key, {
|
75302 |
+
value: props[key],
|
75303 |
+
enumerable: false,
|
75304 |
+
writable: false,
|
75305 |
+
configurable: true
|
75306 |
+
});
|
75307 |
+
}
|
75308 |
+
return target;
|
75309 |
});
|
75310 |
|
75311 |
+
/**
|
75312 |
+
* Returns the global object associated with provided element.
|
75313 |
+
*
|
75314 |
+
* @param {Object} target
|
75315 |
+
* @returns {Object}
|
75316 |
+
*/
|
75317 |
+
var getWindowOf = (function (target) {
|
75318 |
+
// Assume that the element is an instance of Node, which means that it
|
75319 |
+
// has the "ownerDocument" property from which we can retrieve a
|
75320 |
+
// corresponding global object.
|
75321 |
+
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
|
75322 |
+
// Return the local global object if it's not possible extract one from
|
75323 |
+
// provided element.
|
75324 |
+
return ownerGlobal || global$1;
|
75325 |
});
|
75326 |
|
75327 |
+
// Placeholder of an empty content rectangle.
|
75328 |
+
var emptyRect = createRectInit(0, 0, 0, 0);
|
75329 |
+
/**
|
75330 |
+
* Converts provided string to a number.
|
75331 |
+
*
|
75332 |
+
* @param {number|string} value
|
75333 |
+
* @returns {number}
|
75334 |
+
*/
|
75335 |
+
function toFloat(value) {
|
75336 |
+
return parseFloat(value) || 0;
|
75337 |
+
}
|
75338 |
+
/**
|
75339 |
+
* Extracts borders size from provided styles.
|
75340 |
+
*
|
75341 |
+
* @param {CSSStyleDeclaration} styles
|
75342 |
+
* @param {...string} positions - Borders positions (top, right, ...)
|
75343 |
+
* @returns {number}
|
75344 |
+
*/
|
75345 |
+
function getBordersSize(styles) {
|
75346 |
+
var positions = [];
|
75347 |
+
for (var _i = 1; _i < arguments.length; _i++) {
|
75348 |
+
positions[_i - 1] = arguments[_i];
|
75349 |
+
}
|
75350 |
+
return positions.reduce(function (size, position) {
|
75351 |
+
var value = styles['border-' + position + '-width'];
|
75352 |
+
return size + toFloat(value);
|
75353 |
+
}, 0);
|
75354 |
+
}
|
75355 |
+
/**
|
75356 |
+
* Extracts paddings sizes from provided styles.
|
75357 |
+
*
|
75358 |
+
* @param {CSSStyleDeclaration} styles
|
75359 |
+
* @returns {Object} Paddings box.
|
75360 |
+
*/
|
75361 |
+
function getPaddings(styles) {
|
75362 |
+
var positions = ['top', 'right', 'bottom', 'left'];
|
75363 |
+
var paddings = {};
|
75364 |
+
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
|
75365 |
+
var position = positions_1[_i];
|
75366 |
+
var value = styles['padding-' + position];
|
75367 |
+
paddings[position] = toFloat(value);
|
75368 |
+
}
|
75369 |
+
return paddings;
|
75370 |
+
}
|
75371 |
+
/**
|
75372 |
+
* Calculates content rectangle of provided SVG element.
|
75373 |
+
*
|
75374 |
+
* @param {SVGGraphicsElement} target - Element content rectangle of which needs
|
75375 |
+
* to be calculated.
|
75376 |
+
* @returns {DOMRectInit}
|
75377 |
+
*/
|
75378 |
+
function getSVGContentRect(target) {
|
75379 |
+
var bbox = target.getBBox();
|
75380 |
+
return createRectInit(0, 0, bbox.width, bbox.height);
|
75381 |
+
}
|
75382 |
+
/**
|
75383 |
+
* Calculates content rectangle of provided HTMLElement.
|
75384 |
+
*
|
75385 |
+
* @param {HTMLElement} target - Element for which to calculate the content rectangle.
|
75386 |
+
* @returns {DOMRectInit}
|
75387 |
+
*/
|
75388 |
+
function getHTMLElementContentRect(target) {
|
75389 |
+
// Client width & height properties can't be
|
75390 |
+
// used exclusively as they provide rounded values.
|
75391 |
+
var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
|
75392 |
+
// By this condition we can catch all non-replaced inline, hidden and
|
75393 |
+
// detached elements. Though elements with width & height properties less
|
75394 |
+
// than 0.5 will be discarded as well.
|
75395 |
+
//
|
75396 |
+
// Without it we would need to implement separate methods for each of
|
75397 |
+
// those cases and it's not possible to perform a precise and performance
|
75398 |
+
// effective test for hidden elements. E.g. even jQuery's ':visible' filter
|
75399 |
+
// gives wrong results for elements with width & height less than 0.5.
|
75400 |
+
if (!clientWidth && !clientHeight) {
|
75401 |
+
return emptyRect;
|
75402 |
+
}
|
75403 |
+
var styles = getWindowOf(target).getComputedStyle(target);
|
75404 |
+
var paddings = getPaddings(styles);
|
75405 |
+
var horizPad = paddings.left + paddings.right;
|
75406 |
+
var vertPad = paddings.top + paddings.bottom;
|
75407 |
+
// Computed styles of width & height are being used because they are the
|
75408 |
+
// only dimensions available to JS that contain non-rounded values. It could
|
75409 |
+
// be possible to utilize the getBoundingClientRect if only it's data wasn't
|
75410 |
+
// affected by CSS transformations let alone paddings, borders and scroll bars.
|
75411 |
+
var width = toFloat(styles.width), height = toFloat(styles.height);
|
75412 |
+
// Width & height include paddings and borders when the 'border-box' box
|
75413 |
+
// model is applied (except for IE).
|
75414 |
+
if (styles.boxSizing === 'border-box') {
|
75415 |
+
// Following conditions are required to handle Internet Explorer which
|
75416 |
+
// doesn't include paddings and borders to computed CSS dimensions.
|
75417 |
+
//
|
75418 |
+
// We can say that if CSS dimensions + paddings are equal to the "client"
|
75419 |
+
// properties then it's either IE, and thus we don't need to subtract
|
75420 |
+
// anything, or an element merely doesn't have paddings/borders styles.
|
75421 |
+
if (Math.round(width + horizPad) !== clientWidth) {
|
75422 |
+
width -= getBordersSize(styles, 'left', 'right') + horizPad;
|
75423 |
+
}
|
75424 |
+
if (Math.round(height + vertPad) !== clientHeight) {
|
75425 |
+
height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
|
75426 |
+
}
|
75427 |
+
}
|
75428 |
+
// Following steps can't be applied to the document's root element as its
|
75429 |
+
// client[Width/Height] properties represent viewport area of the window.
|
75430 |
+
// Besides, it's as well not necessary as the <html> itself neither has
|
75431 |
+
// rendered scroll bars nor it can be clipped.
|
75432 |
+
if (!isDocumentElement(target)) {
|
75433 |
+
// In some browsers (only in Firefox, actually) CSS width & height
|
75434 |
+
// include scroll bars size which can be removed at this step as scroll
|
75435 |
+
// bars are the only difference between rounded dimensions + paddings
|
75436 |
+
// and "client" properties, though that is not always true in Chrome.
|
75437 |
+
var vertScrollbar = Math.round(width + horizPad) - clientWidth;
|
75438 |
+
var horizScrollbar = Math.round(height + vertPad) - clientHeight;
|
75439 |
+
// Chrome has a rather weird rounding of "client" properties.
|
75440 |
+
// E.g. for an element with content width of 314.2px it sometimes gives
|
75441 |
+
// the client width of 315px and for the width of 314.7px it may give
|
75442 |
+
// 314px. And it doesn't happen all the time. So just ignore this delta
|
75443 |
+
// as a non-relevant.
|
75444 |
+
if (Math.abs(vertScrollbar) !== 1) {
|
75445 |
+
width -= vertScrollbar;
|
75446 |
+
}
|
75447 |
+
if (Math.abs(horizScrollbar) !== 1) {
|
75448 |
+
height -= horizScrollbar;
|
75449 |
+
}
|
75450 |
+
}
|
75451 |
+
return createRectInit(paddings.left, paddings.top, width, height);
|
75452 |
+
}
|
75453 |
+
/**
|
75454 |
+
* Checks whether provided element is an instance of the SVGGraphicsElement.
|
75455 |
+
*
|
75456 |
+
* @param {Element} target - Element to be checked.
|
75457 |
+
* @returns {boolean}
|
75458 |
+
*/
|
75459 |
+
var isSVGGraphicsElement = (function () {
|
75460 |
+
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
|
75461 |
+
// interface.
|
75462 |
+
if (typeof SVGGraphicsElement !== 'undefined') {
|
75463 |
+
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
|
75464 |
+
}
|
75465 |
+
// If it's so, then check that element is at least an instance of the
|
75466 |
+
// SVGElement and that it has the "getBBox" method.
|
75467 |
+
// eslint-disable-next-line no-extra-parens
|
75468 |
+
return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
|
75469 |
+
typeof target.getBBox === 'function'); };
|
75470 |
+
})();
|
75471 |
+
/**
|
75472 |
+
* Checks whether provided element is a document element (<html>).
|
75473 |
+
*
|
75474 |
+
* @param {Element} target - Element to be checked.
|
75475 |
+
* @returns {boolean}
|
75476 |
+
*/
|
75477 |
+
function isDocumentElement(target) {
|
75478 |
+
return target === getWindowOf(target).document.documentElement;
|
75479 |
+
}
|
75480 |
+
/**
|
75481 |
+
* Calculates an appropriate content rectangle for provided html or svg element.
|
75482 |
+
*
|
75483 |
+
* @param {Element} target - Element content rectangle of which needs to be calculated.
|
75484 |
+
* @returns {DOMRectInit}
|
75485 |
+
*/
|
75486 |
+
function getContentRect(target) {
|
75487 |
+
if (!isBrowser) {
|
75488 |
+
return emptyRect;
|
75489 |
+
}
|
75490 |
+
if (isSVGGraphicsElement(target)) {
|
75491 |
+
return getSVGContentRect(target);
|
75492 |
+
}
|
75493 |
+
return getHTMLElementContentRect(target);
|
75494 |
+
}
|
75495 |
+
/**
|
75496 |
+
* Creates rectangle with an interface of the DOMRectReadOnly.
|
75497 |
+
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
|
75498 |
+
*
|
75499 |
+
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
|
75500 |
+
* @returns {DOMRectReadOnly}
|
75501 |
+
*/
|
75502 |
+
function createReadOnlyRect(_a) {
|
75503 |
+
var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
|
75504 |
+
// If DOMRectReadOnly is available use it as a prototype for the rectangle.
|
75505 |
+
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
|
75506 |
+
var rect = Object.create(Constr.prototype);
|
75507 |
+
// Rectangle's properties are not writable and non-enumerable.
|
75508 |
+
defineConfigurable(rect, {
|
75509 |
+
x: x, y: y, width: width, height: height,
|
75510 |
+
top: y,
|
75511 |
+
right: x + width,
|
75512 |
+
bottom: height + y,
|
75513 |
+
left: x
|
75514 |
+
});
|
75515 |
+
return rect;
|
75516 |
+
}
|
75517 |
+
/**
|
75518 |
+
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
|
75519 |
+
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
|
75520 |
+
*
|
75521 |
+
* @param {number} x - X coordinate.
|
75522 |
+
* @param {number} y - Y coordinate.
|
75523 |
+
* @param {number} width - Rectangle's width.
|
75524 |
+
* @param {number} height - Rectangle's height.
|
75525 |
+
* @returns {DOMRectInit}
|
75526 |
+
*/
|
75527 |
+
function createRectInit(x, y, width, height) {
|
75528 |
+
return { x: x, y: y, width: width, height: height };
|
75529 |
+
}
|
75530 |
+
|
75531 |
+
/**
|
75532 |
+
* Class that is responsible for computations of the content rectangle of
|
75533 |
+
* provided DOM element and for keeping track of it's changes.
|
75534 |
+
*/
|
75535 |
+
var ResizeObservation = /** @class */ (function () {
|
75536 |
+
/**
|
75537 |
+
* Creates an instance of ResizeObservation.
|
75538 |
+
*
|
75539 |
+
* @param {Element} target - Element to be observed.
|
75540 |
+
*/
|
75541 |
+
function ResizeObservation(target) {
|
75542 |
+
/**
|
75543 |
+
* Broadcasted width of content rectangle.
|
75544 |
+
*
|
75545 |
+
* @type {number}
|
75546 |
+
*/
|
75547 |
+
this.broadcastWidth = 0;
|
75548 |
+
/**
|
75549 |
+
* Broadcasted height of content rectangle.
|
75550 |
+
*
|
75551 |
+
* @type {number}
|
75552 |
+
*/
|
75553 |
+
this.broadcastHeight = 0;
|
75554 |
+
/**
|
75555 |
+
* Reference to the last observed content rectangle.
|
75556 |
+
*
|
75557 |
+
* @private {DOMRectInit}
|
75558 |
+
*/
|
75559 |
+
this.contentRect_ = createRectInit(0, 0, 0, 0);
|
75560 |
+
this.target = target;
|
75561 |
+
}
|
75562 |
+
/**
|
75563 |
+
* Updates content rectangle and tells whether it's width or height properties
|
75564 |
+
* have changed since the last broadcast.
|
75565 |
+
*
|
75566 |
+
* @returns {boolean}
|
75567 |
+
*/
|
75568 |
+
ResizeObservation.prototype.isActive = function () {
|
75569 |
+
var rect = getContentRect(this.target);
|
75570 |
+
this.contentRect_ = rect;
|
75571 |
+
return (rect.width !== this.broadcastWidth ||
|
75572 |
+
rect.height !== this.broadcastHeight);
|
75573 |
+
};
|
75574 |
+
/**
|
75575 |
+
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
|
75576 |
+
* from the corresponding properties of the last observed content rectangle.
|
75577 |
+
*
|
75578 |
+
* @returns {DOMRectInit} Last observed content rectangle.
|
75579 |
+
*/
|
75580 |
+
ResizeObservation.prototype.broadcastRect = function () {
|
75581 |
+
var rect = this.contentRect_;
|
75582 |
+
this.broadcastWidth = rect.width;
|
75583 |
+
this.broadcastHeight = rect.height;
|
75584 |
+
return rect;
|
75585 |
+
};
|
75586 |
+
return ResizeObservation;
|
75587 |
}());
|
75588 |
|
75589 |
+
var ResizeObserverEntry = /** @class */ (function () {
|
75590 |
+
/**
|
75591 |
+
* Creates an instance of ResizeObserverEntry.
|
75592 |
+
*
|
75593 |
+
* @param {Element} target - Element that is being observed.
|
75594 |
+
* @param {DOMRectInit} rectInit - Data of the element's content rectangle.
|
75595 |
+
*/
|
75596 |
+
function ResizeObserverEntry(target, rectInit) {
|
75597 |
+
var contentRect = createReadOnlyRect(rectInit);
|
75598 |
+
// According to the specification following properties are not writable
|
75599 |
+
// and are also not enumerable in the native implementation.
|
75600 |
+
//
|
75601 |
+
// Property accessors are not being used as they'd require to define a
|
75602 |
+
// private WeakMap storage which may cause memory leaks in browsers that
|
75603 |
+
// don't support this type of collections.
|
75604 |
+
defineConfigurable(this, { target: target, contentRect: contentRect });
|
75605 |
+
}
|
75606 |
+
return ResizeObserverEntry;
|
75607 |
}());
|
75608 |
|
75609 |
+
var ResizeObserverSPI = /** @class */ (function () {
|
75610 |
+
/**
|
75611 |
+
* Creates a new instance of ResizeObserver.
|
75612 |
+
*
|
75613 |
+
* @param {ResizeObserverCallback} callback - Callback function that is invoked
|
75614 |
+
* when one of the observed elements changes it's content dimensions.
|
75615 |
+
* @param {ResizeObserverController} controller - Controller instance which
|
75616 |
+
* is responsible for the updates of observer.
|
75617 |
+
* @param {ResizeObserver} callbackCtx - Reference to the public
|
75618 |
+
* ResizeObserver instance which will be passed to callback function.
|
75619 |
+
*/
|
75620 |
+
function ResizeObserverSPI(callback, controller, callbackCtx) {
|
75621 |
+
/**
|
75622 |
+
* Collection of resize observations that have detected changes in dimensions
|
75623 |
+
* of elements.
|
75624 |
+
*
|
75625 |
+
* @private {Array<ResizeObservation>}
|
75626 |
+
*/
|
75627 |
+
this.activeObservations_ = [];
|
75628 |
+
/**
|
75629 |
+
* Registry of the ResizeObservation instances.
|
75630 |
+
*
|
75631 |
+
* @private {Map<Element, ResizeObservation>}
|
75632 |
+
*/
|
75633 |
+
this.observations_ = new MapShim();
|
75634 |
+
if (typeof callback !== 'function') {
|
75635 |
+
throw new TypeError('The callback provided as parameter 1 is not a function.');
|
75636 |
+
}
|
75637 |
+
this.callback_ = callback;
|
75638 |
+
this.controller_ = controller;
|
75639 |
+
this.callbackCtx_ = callbackCtx;
|
75640 |
+
}
|
75641 |
+
/**
|
75642 |
+
* Starts observing provided element.
|
75643 |
+
*
|
75644 |
+
* @param {Element} target - Element to be observed.
|
75645 |
+
* @returns {void}
|
75646 |
+
*/
|
75647 |
+
ResizeObserverSPI.prototype.observe = function (target) {
|
75648 |
+
if (!arguments.length) {
|
75649 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
75650 |
+
}
|
75651 |
+
// Do nothing if current environment doesn't have the Element interface.
|
75652 |
+
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75653 |
+
return;
|
75654 |
+
}
|
75655 |
+
if (!(target instanceof getWindowOf(target).Element)) {
|
75656 |
+
throw new TypeError('parameter 1 is not of type "Element".');
|
75657 |
+
}
|
75658 |
+
var observations = this.observations_;
|
75659 |
+
// Do nothing if element is already being observed.
|
75660 |
+
if (observations.has(target)) {
|
75661 |
+
return;
|
75662 |
+
}
|
75663 |
+
observations.set(target, new ResizeObservation(target));
|
75664 |
+
this.controller_.addObserver(this);
|
75665 |
+
// Force the update of observations.
|
75666 |
+
this.controller_.refresh();
|
75667 |
+
};
|
75668 |
+
/**
|
75669 |
+
* Stops observing provided element.
|
75670 |
+
*
|
75671 |
+
* @param {Element} target - Element to stop observing.
|
75672 |
+
* @returns {void}
|
75673 |
+
*/
|
75674 |
+
ResizeObserverSPI.prototype.unobserve = function (target) {
|
75675 |
+
if (!arguments.length) {
|
75676 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
75677 |
+
}
|
75678 |
+
// Do nothing if current environment doesn't have the Element interface.
|
75679 |
+
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75680 |
+
return;
|
75681 |
+
}
|
75682 |
+
if (!(target instanceof getWindowOf(target).Element)) {
|
75683 |
+
throw new TypeError('parameter 1 is not of type "Element".');
|
75684 |
+
}
|
75685 |
+
var observations = this.observations_;
|
75686 |
+
// Do nothing if element is not being observed.
|
75687 |
+
if (!observations.has(target)) {
|
75688 |
+
return;
|
75689 |
+
}
|
75690 |
+
observations.delete(target);
|
75691 |
+
if (!observations.size) {
|
75692 |
+
this.controller_.removeObserver(this);
|
75693 |
+
}
|
75694 |
+
};
|
75695 |
+
/**
|
75696 |
+
* Stops observing all elements.
|
75697 |
+
*
|
75698 |
+
* @returns {void}
|
75699 |
+
*/
|
75700 |
+
ResizeObserverSPI.prototype.disconnect = function () {
|
75701 |
+
this.clearActive();
|
75702 |
+
this.observations_.clear();
|
75703 |
+
this.controller_.removeObserver(this);
|
75704 |
+
};
|
75705 |
+
/**
|
75706 |
+
* Collects observation instances the associated element of which has changed
|
75707 |
+
* it's content rectangle.
|
75708 |
+
*
|
75709 |
+
* @returns {void}
|
75710 |
+
*/
|
75711 |
+
ResizeObserverSPI.prototype.gatherActive = function () {
|
75712 |
+
var _this = this;
|
75713 |
+
this.clearActive();
|
75714 |
+
this.observations_.forEach(function (observation) {
|
75715 |
+
if (observation.isActive()) {
|
75716 |
+
_this.activeObservations_.push(observation);
|
75717 |
+
}
|
75718 |
+
});
|
75719 |
+
};
|
75720 |
+
/**
|
75721 |
+
* Invokes initial callback function with a list of ResizeObserverEntry
|
75722 |
+
* instances collected from active resize observations.
|
75723 |
+
*
|
75724 |
+
* @returns {void}
|
75725 |
+
*/
|
75726 |
+
ResizeObserverSPI.prototype.broadcastActive = function () {
|
75727 |
+
// Do nothing if observer doesn't have active observations.
|
75728 |
+
if (!this.hasActive()) {
|
75729 |
+
return;
|
75730 |
+
}
|
75731 |
+
var ctx = this.callbackCtx_;
|
75732 |
+
// Create ResizeObserverEntry instance for every active observation.
|
75733 |
+
var entries = this.activeObservations_.map(function (observation) {
|
75734 |
+
return new ResizeObserverEntry(observation.target, observation.broadcastRect());
|
75735 |
+
});
|
75736 |
+
this.callback_.call(ctx, entries, ctx);
|
75737 |
+
this.clearActive();
|
75738 |
+
};
|
75739 |
+
/**
|
75740 |
+
* Clears the collection of active observations.
|
75741 |
+
*
|
75742 |
+
* @returns {void}
|
75743 |
+
*/
|
75744 |
+
ResizeObserverSPI.prototype.clearActive = function () {
|
75745 |
+
this.activeObservations_.splice(0);
|
75746 |
+
};
|
75747 |
+
/**
|
75748 |
+
* Tells whether observer has active observations.
|
75749 |
+
*
|
75750 |
+
* @returns {boolean}
|
75751 |
+
*/
|
75752 |
+
ResizeObserverSPI.prototype.hasActive = function () {
|
75753 |
+
return this.activeObservations_.length > 0;
|
75754 |
+
};
|
75755 |
+
return ResizeObserverSPI;
|
75756 |
}());
|
75757 |
|
75758 |
+
// Registry of internal observers. If WeakMap is not available use current shim
|
75759 |
+
// for the Map collection as it has all required methods and because WeakMap
|
75760 |
+
// can't be fully polyfilled anyway.
|
75761 |
+
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
|
75762 |
+
/**
|
75763 |
+
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
|
75764 |
+
* exposing only those methods and properties that are defined in the spec.
|
75765 |
+
*/
|
75766 |
+
var ResizeObserver = /** @class */ (function () {
|
75767 |
+
/**
|
75768 |
+
* Creates a new instance of ResizeObserver.
|
75769 |
+
*
|
75770 |
+
* @param {ResizeObserverCallback} callback - Callback that is invoked when
|
75771 |
+
* dimensions of the observed elements change.
|
75772 |
+
*/
|
75773 |
+
function ResizeObserver(callback) {
|
75774 |
+
if (!(this instanceof ResizeObserver)) {
|
75775 |
+
throw new TypeError('Cannot call a class as a function.');
|
75776 |
+
}
|
75777 |
+
if (!arguments.length) {
|
75778 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
75779 |
+
}
|
75780 |
+
var controller = ResizeObserverController.getInstance();
|
75781 |
+
var observer = new ResizeObserverSPI(callback, controller, this);
|
75782 |
+
observers.set(this, observer);
|
75783 |
+
}
|
75784 |
+
return ResizeObserver;
|
75785 |
+
}());
|
75786 |
+
// Expose public methods of ResizeObserver.
|
75787 |
+
[
|
75788 |
+
'observe',
|
75789 |
+
'unobserve',
|
75790 |
+
'disconnect'
|
75791 |
+
].forEach(function (method) {
|
75792 |
+
ResizeObserver.prototype[method] = function () {
|
75793 |
+
var _a;
|
75794 |
+
return (_a = observers.get(this))[method].apply(_a, arguments);
|
75795 |
+
};
|
75796 |
});
|
75797 |
|
75798 |
+
var index = (function () {
|
75799 |
+
// Export existing implementation if available.
|
75800 |
+
if (typeof global$1.ResizeObserver !== 'undefined') {
|
75801 |
+
return global$1.ResizeObserver;
|
75802 |
+
}
|
75803 |
+
return ResizeObserver;
|
75804 |
})();
|
75805 |
|
75806 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
100955 |
wp.element.createElement(
|
100956 |
"div",
|
100957 |
{
|
100958 |
+
className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, "uagb-cf7-styler__outer-wrap", "uagb-block-" + this.props.clientId)
|
100959 |
+
},
|
100960 |
wp.element.createElement(
|
100961 |
"div",
|
100962 |
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-cf7-styler__align-" + align, "uagb-cf7-styler__field-style-" + fieldStyle, "uagb-cf7-styler__btn-align-" + buttonAlignment, "uagb-cf7-styler__highlight-style-" + validationMsgPosition, enableOveride ? "uagb-cf7-styler__check-style-enabled" : "", enableHighlightBorder ? "uagb-cf7-styler__highlight-border" : "") },
|
102970 |
wp.element.createElement(
|
102971 |
"div",
|
102972 |
{
|
102973 |
+
className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, "uagb-gf-styler__outer-wrap", "uagb-block-" + this.props.clientId)
|
102974 |
+
},
|
102975 |
wp.element.createElement(
|
102976 |
"div",
|
102977 |
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-gf-styler__align-" + align, "uagb-gf-styler__field-style-" + fieldStyle, "uagb-gf-styler__btn-align-" + buttonAlignment, "uagb-gf-styler__gform-heading-" + titleDescStyle, enableOveride ? "uagb-gf-styler__check-style-enabled" : "", enableLabel ? "uagb-gf-styler__hide-label" : "", advancedValidationSettings ? "uagb-gf-styler__error-yes" : "") },
|
103323 |
"color": fieldInputColor,
|
103324 |
"text-align": align
|
103325 |
},
|
103326 |
+
" form label.gfield_label": {
|
103327 |
"color": fieldLabelColor,
|
103328 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103329 |
"font-family": labelFontFamily,
|
103330 |
"font-weight": labelFontWeight,
|
103331 |
"line-height": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelLineHeight, labelLineHeightType)
|
103332 |
},
|
103333 |
+
" form .gfield_radio label.gfield_label": {
|
103334 |
"color": fieldLabelColor,
|
103335 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103336 |
"font-family": labelFontFamily,
|
103337 |
"font-weight": labelFontWeight,
|
103338 |
"line-height": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelLineHeight, labelLineHeightType)
|
103339 |
},
|
103340 |
+
" form .gfield_checkbox label.gfield_label": {
|
103341 |
"color": fieldLabelColor,
|
103342 |
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(labelFontSize, labelFontSizeType),
|
103343 |
"font-family": labelFontFamily,
|
103386 |
" .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox']:checked + label:before": {
|
103387 |
"background-color": fieldBgColor,
|
103388 |
"color": fieldInputColor,
|
103389 |
+
"font-size": "calc( " + radioCheckSize + "px / 1.2 )",
|
103390 |
"border-color": fieldBorderFocusColor
|
103391 |
},
|
103392 |
" .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before": {
|
103403 |
" .uagb-gf-styler__check-style-enabled input[type='checkbox']:checked + label:before": {
|
103404 |
"background-color": fieldBgColor,
|
103405 |
"color": fieldInputColor,
|
103406 |
+
"font-size": "calc( " + radioCheckSize + "px / 1.2 )",
|
103407 |
"border-color": fieldBorderFocusColor
|
103408 |
},
|
103409 |
" .uagb-gf-styler__check-style-enabled input[type='checkbox'] + label:before": {
|
103466 |
"border-style": "solid",
|
103467 |
"border-width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderWidth, "px"),
|
103468 |
"border-radius": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderRadius, fieldBorderRadiusType),
|
103469 |
+
"font-size": "calc( " + radioCheckSize + "px / 1.2 )"
|
103470 |
}), _defineProperty(_selectors, " .uagb-gf-styler__field-style-box input[type='checkbox']:checked + label:before", {
|
103471 |
"border-style": "solid",
|
103472 |
"border-width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderWidth, "px"),
|
103473 |
"border-radius": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(fieldBorderRadius, fieldBorderRadiusType),
|
103474 |
+
"font-size": "calc( " + radioCheckSize + "px / 1.2)"
|
103475 |
}), _defineProperty(_selectors, " .gfield_radio input[type='radio']:checked + label:before", {
|
103476 |
"background-color": fieldInputColor
|
103477 |
}), _defineProperty(_selectors, " .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before", {
|
108782 |
if (element.innerBlocks.length > 0) {
|
108783 |
getData(element.innerBlocks, a);
|
108784 |
} else {
|
108785 |
+
if (element.name === 'core/heading') {
|
108786 |
+
a.push(element);
|
108787 |
+
}
|
108788 |
+
|
108789 |
+
if (element.name === 'uagb/advanced-heading') {
|
108790 |
+
a.push(element);
|
108791 |
+
}
|
108792 |
}
|
108793 |
});
|
108794 |
} else {
|
108795 |
if (header.name === 'core/heading') {
|
108796 |
+
a.push(header);
|
108797 |
}
|
108798 |
|
108799 |
if (header.name === 'uagb/advanced-heading') {
|
108800 |
+
a.push(header);
|
108801 |
}
|
108802 |
}
|
108803 |
});
|
108827 |
var headers = [];
|
108828 |
|
108829 |
if (typeof all_headers != 'undefined') {
|
|
|
108830 |
all_headers.forEach(function (heading, key) {
|
108831 |
|
108832 |
+
var heading_attr = heading.attributes;
|
108833 |
+
|
108834 |
+
var contentLevel = heading.name == 'uagb/advanced-heading' ? parseInt(heading_attr.headingTag[1]) : heading_attr.level;
|
108835 |
|
108836 |
+
var contentName = heading.name == 'uagb/advanced-heading' ? 'headingTitle' : 'content';
|
108837 |
|
108838 |
+
var headingContentEmpty = typeof heading_attr[contentName] === 'undefined' || heading_attr[contentName] === '';
|
108839 |
|
108840 |
if (!headingContentEmpty) {
|
108841 |
headers.push({
|
108842 |
tag: contentLevel,
|
108843 |
+
text: striptags(heading_attr[contentName]),
|
108844 |
+
link: parseTocSlug(striptags(heading_attr[contentName])),
|
108845 |
+
content: heading_attr[contentName]
|
108846 |
});
|
108847 |
}
|
108848 |
});
|
dist/blocks.editor.build.css
CHANGED
@@ -10,10 +10,10 @@
|
|
10 |
.uagb-rm__desc,.editor-block-list__layout .uagb-rm__desc.block-editor-rich-text__editable{margin-bottom:15px}.block-editor-page #wpwrap .uagb-rm__separator-parent{margin-bottom:10px}
|
11 |
#wpwrap .edit-post-visual-editor .uagb-timeline__widget a{text-decoration:none;color:inherit}#wpwrap .edit-post-visual-editor .uagb-timeline__heading a,.gutenberg-editor-page #wpwrap .edit-post-visual-editor a{font-size:inherit;color:inherit;margin:0}#wpwrap .edit-post-visual-editor .uagb-timeline__heading{margin:0}#wpwrap .edit-post-visual-editor .uagb-timeline-wrapper a{pointer-events:none}
|
12 |
.uagb-cta__content-wrap.uagb-cta__icon-position-above-title{text-align:center}.block-editor-page #wpwrap .edit-post-visual-editor a.uagb-cta__block-link-wrap{color:inherit}.block-editor-page #wpwrap .uagb-cta__title{margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta-separator-parent{margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta__desc{margin:0;margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta__block-link i{font-style:normal}.wp-block-uagb-call-to-action.uagb-cta__outer-wrap a.uagb-cta__link-to-all{z-index:0}
|
13 |
-
.wp-block[data-type="uagb/column"]:before{content:'';position:absolute;border:1px dashed #A3AEB6;top:0;right:0;bottom:0;left:0;z-index:0;width:100%;height:100%}.is-selected.wp-block[data-type="uagb/column"]:before{border-color:#59646C}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.wp-block[data-type="uagb/column"] .editor-block-list__block-edit{height:100%}.wp-block[data-type="uagb/column"] .editor-block-list__block-edit{height:100%}.uagb-column__inner-wrap .editor-block-list__block{margin-left:0;margin-right:0;width:100%}.block-editor-page #wpwrap .wp-block .wp-block-uagb-column .uagb-column__inner-wrap{width:100%;padding:30px}.edit-post-visual-editor .uagb-column__inner-wrap .editor-block-list__block>.editor-block-mover{left:-30px}@media (max-width: 449px){.block-editor-page #wpwrap .uagb-columns__inner-wrap .editor-block-list__block{background-attachment:scroll !important}}
|
14 |
-
.uagb-columns__wrap:before{content:'';position:absolute;border:1px dashed #03ddff;top:0;right:0;bottom:0;left:0;z-index:1}.uagb-columns__edit-active.uagb-columns__wrap:before{border-color:#035cff}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:nowrap}.uagb-columns__inner-wrap>.editor-inner-blocks,.uagb-columns__inner-wrap>.editor-block-list__layout{width:100%}.uagb-columns__columns-1 .editor-block-list__block[data-type="uagb/column"]{width:100%}.uagb-columns__columns-2 .editor-block-list__block[data-type="uagb/column"]{width:50%}.uagb-columns__columns-3 .editor-block-list__block[data-type="uagb/column"]{width:33.33%}.uagb-columns__columns-4 .editor-block-list__block[data-type="uagb/column"]{width:25%}.uagb-columns__columns-5 .editor-block-list__block[data-type="uagb/column"]{width:20%}.uagb-columns__columns-6 .editor-block-list__block[data-type="uagb/column"]{width:16.66%}.wp-block-uagb-columns .editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-uagb-columns .editor-block-list__layout .editor-block-list__block{max-width:none !important}.editor-block-list__block[data-type="uagb/columns"]{clear:both}.editor-block-list__block[data-align=center][data-type="uagb/columns"]{text-align:inherit}.editor-block-list__block[data-type="uagb/column"]>.editor-block-contextual-toolbar{top:38px;transform:translateY(-38px);margin-left:-29px;margin-right:-29px}.editor-block-list__block[data-type="uagb/column"]>.editor-block-list__insertion-point{top:0;margin-top:0}.editor-block-list__block[data-align="full"] .wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout:first-child{margin-left:30px}.editor-block-list__block[data-align="full"] .wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout:last-child{margin-right:30px}.wp-block-uagb-columns.uagb-columns__valign-middle{display:flex;flex-direction:column;justify-content:center}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap{width:100%}.wp-block-uagb-columns.uagb-columns__valign-bottom{display:flex;flex-direction:column;justify-content:flex-end}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap{width:100%}.editor-block-list__layout .editor-block-list__block[data-type="uagb/column"]>.editor-block-list__block-edit{margin-left:14px;margin-right:14px}.editor-block-list__layout .editor-block-list__block[data-type="uagb/column"]>.editor-block-list__block-edit>div:not(.editor-block-contextual-toolbar){width:100%}.editor-block-list__layout .editor-block-list__block[data-type="uagb/column"]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{position:absolute;top:0;transform:translateY(-39px)}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]>.editor-block-list__block-edit:before{bottom:0;top:0}.editor-block-list__block[data-align="full"] .wp-block-uagb-columns{padding-left:15px;padding-right:15px}.wp-block-uagb-columns{display:block;position:relative}.wp-block-uagb-columns>.uagb-columns__inner-wrap{z-index:10;position:relative;margin:0 auto;display:flex;flex-direction:column}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:nowrap;justify-content:space-between;margin-left:0;margin-right:0}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;max-width:none;margin-top:0;margin-bottom:0}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"] .editor-block-list__block-edit{flex-basis:100%}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap{justify-content:center}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap{justify-content:flex-end}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]>.editor-block-list__block-edit{align-items:center;display:flex}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]>.editor-block-list__block-edit{align-items:flex-end;display:flex}.wp-block-uagb-column{width:100%}.editor-block-list__layout .editor-block-list__block[data-align="full"][data-type="uagb/columns"]{margin-left:0;margin-right:0}.edit-post-visual-editor .editor-writing-flow .editor-block-list__layout .editor-block-list__block[data-type="uagb/column"]>.editor-block-list__block-edit{margin-left:0;margin-right:0}.editor-block-list__layout .uagb-column__wrap .uagb-column__inner-wrap{z-index:unset}.editor-block-list__layout .uagb-column__wrap{overflow:visible}@media (min-width: 600px){.edit-post-visual-editor .editor-block-list__block[data-type="uagb/column"] .editor-block-list__block-edit{padding-left:0;padding-right:0}}@media (max-width: 976px){.uagb-columns__reverse-tablet.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout{flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__reverse-mobile.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout{flex-direction:column-reverse}}@media (max-width: 600px){.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout{flex-direction:column}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{flex:none !important;width:100%;margin-right:0}}.editor-block-list__block[data-type="uagb/columns"]>.editor-block-list__block-edit:before{pointer-events:inherit}.editor-block-list__block[data-type="uagb/columns"]>.editor-block-list__insertion-point{height:16px}.editor-block-list__block[data-type="uagb/columns"]>.editor-block-list__insertion-point .editor-block-list__insertion-point-inserter{height:16px}
|
15 |
.wp-block-uagb-cf7-styler .wpcf7 form{position:relative}.wp-block-uagb-cf7-styler .wpcf7 form>div,.wp-block-uagb-cf7-styler .wpcf7 form>p{margin-bottom:1.2em}.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-form-control-wrap{width:100%;display:block}.wp-block-uagb-cf7-styler .wpcf7 input:not([type=submit]):focus,.wp-block-uagb-cf7-styler .wpcf7 select:focus,.wp-block-uagb-cf7-styler .wpcf7 textarea:focus{background:#fff;border-color:#eaeaea;outline:0;box-shadow:none}.wp-block-uagb-cf7-styler .wpcf7 input:not([type=submit]),.wp-block-uagb-cf7-styler .wpcf7 select,.wp-block-uagb-cf7-styler .wpcf7 textarea{width:100%;padding:.75em}.wp-block-uagb-cf7-styler .wpcf7 input[type=file]{color:#666;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{background:#e9eef2;color:#555;clear:none;cursor:pointer;line-height:0;height:1.2em;margin:-3px 4px 0 0;outline:0;padding:0;border-radius:.2em;text-align:center;vertical-align:middle;width:1.4em;min-width:1.4em;transition:all .2s linear;display:none}.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-validation-errors{border-color:red}.wp-block-uagb-cf7-styler div.wpcf7{margin:0;padding:0}.wp-block-uagb-cf7-styler div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;margin:0;padding:0;border:0}.wp-block-uagb-cf7-styler div.wpcf7-response-output{margin:2em 0.5em 1em;padding:0.2em 1em;border:2px solid #ff0000}.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ok{border:2px solid #398f14}.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ng,.wp-block-uagb-cf7-styler div.wpcf7-aborted{border:2px solid #ff0000}.wp-block-uagb-cf7-styler div.wpcf7-spam-blocked{border:2px solid #ffa500}.wp-block-uagb-cf7-styler div.wpcf7-validation-errors,.wp-block-uagb-cf7-styler div.wpcf7-acceptance-missing{border:2px solid #f7e700}.wp-block-uagb-cf7-styler .wpcf7-form-control-wrap{position:relative}.wp-block-uagb-cf7-styler span.wpcf7-not-valid-tip{color:#f00;font-size:1em;font-weight:normal;display:block}.wp-block-uagb-cf7-styler .use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px solid #ff0000;background:#fff;padding:.2em .8em}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-display-none{display:none}.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader{visibility:hidden;display:inline-block;background-image:url("../../images/ajax-loader.gif");width:16px;height:16px;border:none;padding:0;margin:0 0 0 4px;vertical-align:middle}.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader.is-active{visibility:visible}.wp-block-uagb-cf7-styler div.wpcf7 div.ajax-error{display:none}.wp-block-uagb-cf7-styler div.wpcf7 .placeheld{color:#888}.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"]{cursor:pointer}.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"]:disabled{cursor:default}.wp-block-uagb-cf7-styler div.wpcf7 .wpcf7-submit:disabled{cursor:not-allowed}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler .button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler input,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler textarea{font-size:100%;color:inherit}
|
16 |
-
.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-none .gform_heading
|
17 |
#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}#wpwrap .edit-post-visual-editor blockquote.uagb-blockquote{margin:0;padding:0}#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-border blockquote{padding-left:10px}#wpwrap .edit-post-visual-editor .uagb-blockquote__content,#wpwrap .edit-post-visual-editor cite.uagb-blockquote__author,#wpwrap .edit-post-visual-editor .uagb-blockquote__author{font-style:normal}#wpwrap .edit-post-visual-editor .uagb-blockquote a{color:#1DA1F2;box-shadow:none;text-decoration:none}#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{color:#fff}#wpwrap .edit-post-visual-editor .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{margin:0 auto}
|
18 |
p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !important}
|
19 |
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top{right:350px}.block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll{display:block}.uagb-light-font-weight{font-weight:400}
|
10 |
.uagb-rm__desc,.editor-block-list__layout .uagb-rm__desc.block-editor-rich-text__editable{margin-bottom:15px}.block-editor-page #wpwrap .uagb-rm__separator-parent{margin-bottom:10px}
|
11 |
#wpwrap .edit-post-visual-editor .uagb-timeline__widget a{text-decoration:none;color:inherit}#wpwrap .edit-post-visual-editor .uagb-timeline__heading a,.gutenberg-editor-page #wpwrap .edit-post-visual-editor a{font-size:inherit;color:inherit;margin:0}#wpwrap .edit-post-visual-editor .uagb-timeline__heading{margin:0}#wpwrap .edit-post-visual-editor .uagb-timeline-wrapper a{pointer-events:none}
|
12 |
.uagb-cta__content-wrap.uagb-cta__icon-position-above-title{text-align:center}.block-editor-page #wpwrap .edit-post-visual-editor a.uagb-cta__block-link-wrap{color:inherit}.block-editor-page #wpwrap .uagb-cta__title{margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta-separator-parent{margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta__desc{margin:0;margin-bottom:10px}.block-editor-page #wpwrap .uagb-cta__block-link i{font-style:normal}.wp-block-uagb-call-to-action.uagb-cta__outer-wrap a.uagb-cta__link-to-all{z-index:0}
|
13 |
+
.wp-block[data-type="uagb/column"]:before{content:'';position:absolute;border:1px dashed #A3AEB6;top:0;right:0;bottom:0;left:0;z-index:0;width:100%;height:100%}.is-selected.wp-block[data-type="uagb/column"]:before{border-color:#59646C}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.wp-block[data-type="uagb/column"] .block-editor-block-list__block-edit{height:100%}.wp-block[data-type="uagb/column"] .block-editor-block-list__block-edit{height:100%}.uagb-column__inner-wrap .block-editor-block-list__block{margin-left:0;margin-right:0;width:100%}.block-editor-page #wpwrap .wp-block .wp-block-uagb-column .uagb-column__inner-wrap{width:100%;padding:30px}.edit-post-visual-editor .uagb-column__inner-wrap .block-editor-block-list__block>.editor-block-mover{left:-30px}@media (max-width: 449px){.block-editor-page #wpwrap .uagb-columns__inner-wrap .block-editor-block-list__block{background-attachment:scroll !important}}
|
14 |
+
.uagb-columns__wrap:before{content:'';position:absolute;border:1px dashed #03ddff;top:0;right:0;bottom:0;left:0;z-index:1}.uagb-columns__edit-active.uagb-columns__wrap:before{border-color:#035cff}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-wrap:nowrap}.uagb-columns__inner-wrap>.block-editor-inner-blocks,.uagb-columns__inner-wrap>.block-editor-block-list__layout{width:100%}.uagb-columns__columns-1 .block-editor-block-list__block[data-type="uagb/column"]{width:100%}.uagb-columns__columns-2 .block-editor-block-list__block[data-type="uagb/column"]{width:50%}.uagb-columns__columns-3 .block-editor-block-list__block[data-type="uagb/column"]{width:33.33%}.uagb-columns__columns-4 .block-editor-block-list__block[data-type="uagb/column"]{width:25%}.uagb-columns__columns-5 .block-editor-block-list__block[data-type="uagb/column"]{width:20%}.uagb-columns__columns-6 .block-editor-block-list__block[data-type="uagb/column"]{width:16.66%}.wp-block-uagb-columns .block-editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-uagb-columns .block-editor-block-list__layout .editor-block-list__block{max-width:none !important}.block-editor-block-list__block[data-type="uagb/columns"]{clear:both}.block-editor-block-list__block[data-align=center][data-type="uagb/columns"]{text-align:inherit}.block-editor-block-list__block[data-type="uagb/column"]>.editor-block-contextual-toolbar{top:38px;transform:translateY(-38px);margin-left:-29px;margin-right:-29px}.block-editor-block-list__block[data-type="uagb/column"]>.editor-block-list__insertion-point{top:0;margin-top:0}.block-editor-block-list__block[data-align="full"] .wp-block-uagb-columns>.block-editor-inner-blocks>.block-editor-block-list__layout:first-child{margin-left:30px}.block-editor-block-list__block[data-align="full"] .wp-block-uagb-columns>.block-editor-inner-blocks>.block-editor-block-list__layout:last-child{margin-right:30px}.wp-block-uagb-columns.uagb-columns__valign-middle{display:flex;flex-direction:column;justify-content:center}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap{width:100%}.wp-block-uagb-columns.uagb-columns__valign-bottom{display:flex;flex-direction:column;justify-content:flex-end}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap{width:100%}.block-editor-block-list__layout .block-editor-block-list__block[data-type="uagb/column"]>.block-editor-block-list__block-edit{margin-left:14px;margin-right:14px}.block-editor-block-list__layout .block-editor-block-list__block[data-type="uagb/column"]>.block-editor-block-list__block-edit>div:not(.editor-block-contextual-toolbar){width:100%}.block-editor-block-list__layout .block-editor-block-list__block[data-type="uagb/column"]>.block-editor-block-list__block-edit>.editor-block-contextual-toolbar{position:absolute;top:0;transform:translateY(-39px)}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"]>.block-editor-block-list__block-edit:before{bottom:0;top:0}.block-editor-block-list__block[data-align="full"] .wp-block-uagb-columns{padding-left:15px;padding-right:15px}.wp-block-uagb-columns{display:block;position:relative}.wp-block-uagb-columns>.uagb-columns__inner-wrap{z-index:10;position:relative;margin:0 auto;display:flex;flex-direction:column}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-wrap:nowrap;justify-content:space-between;margin-left:0;margin-right:0}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;max-width:none;margin-top:0;margin-bottom:0}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"] .block-editor-block-list__block-edit{flex-basis:100%}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap{justify-content:center}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap{justify-content:flex-end}.wp-block-uagb-columns.uagb-columns__valign-middle>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"]>.block-editor-block-list__block-edit{align-items:center;display:flex}.wp-block-uagb-columns.uagb-columns__valign-bottom>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"]>.block-editor-block-list__block-edit{align-items:flex-end;display:flex}.wp-block-uagb-column{width:100%}.block-editor-block-list__layout .block-editor-block-list__block[data-align="full"][data-type="uagb/columns"]{margin-left:0;margin-right:0}.edit-post-visual-editor .editor-writing-flow .block-editor-block-list__layout .block-editor-block-list__block[data-type="uagb/column"]>.block-editor-block-list__block-edit{margin-left:0;margin-right:0}.block-editor-block-list__layout .uagb-column__wrap .uagb-column__inner-wrap{z-index:unset}.block-editor-block-list__layout .uagb-column__wrap{overflow:visible}@media (min-width: 600px){.edit-post-visual-editor .block-editor-block-list__block[data-type="uagb/column"] .block-editor-block-list__block-edit{padding-left:0;padding-right:0}}@media (max-width: 976px){.uagb-columns__reverse-tablet.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout{flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__reverse-mobile.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout{flex-direction:column-reverse}}@media (max-width: 600px){.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout{flex-direction:column}.wp-block-uagb-columns>.uagb-columns__inner-wrap>.block-editor-inner-blocks>.block-editor-block-list__layout>[data-type="uagb/column"]{flex:none !important;width:100%;margin-right:0}}.block-editor-block-list__block[data-type="uagb/columns"]>.block-editor-block-list__block-edit:before{pointer-events:inherit}.block-editor-block-list__block[data-type="uagb/columns"]>.editor-block-list__insertion-point{height:16px}.block-editor-block-list__block[data-type="uagb/columns"]>.editor-block-list__insertion-point .editor-block-list__insertion-point-inserter{height:16px}
|
15 |
.wp-block-uagb-cf7-styler .wpcf7 form{position:relative}.wp-block-uagb-cf7-styler .wpcf7 form>div,.wp-block-uagb-cf7-styler .wpcf7 form>p{margin-bottom:1.2em}.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-form-control-wrap{width:100%;display:block}.wp-block-uagb-cf7-styler .wpcf7 input:not([type=submit]):focus,.wp-block-uagb-cf7-styler .wpcf7 select:focus,.wp-block-uagb-cf7-styler .wpcf7 textarea:focus{background:#fff;border-color:#eaeaea;outline:0;box-shadow:none}.wp-block-uagb-cf7-styler .wpcf7 input:not([type=submit]),.wp-block-uagb-cf7-styler .wpcf7 select,.wp-block-uagb-cf7-styler .wpcf7 textarea{width:100%;padding:.75em}.wp-block-uagb-cf7-styler .wpcf7 input[type=file]{color:#666;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{background:#e9eef2;color:#555;clear:none;cursor:pointer;line-height:0;height:1.2em;margin:-3px 4px 0 0;outline:0;padding:0;border-radius:.2em;text-align:center;vertical-align:middle;width:1.4em;min-width:1.4em;transition:all .2s linear;display:none}.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-validation-errors{border-color:red}.wp-block-uagb-cf7-styler div.wpcf7{margin:0;padding:0}.wp-block-uagb-cf7-styler div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;margin:0;padding:0;border:0}.wp-block-uagb-cf7-styler div.wpcf7-response-output{margin:2em 0.5em 1em;padding:0.2em 1em;border:2px solid #ff0000}.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ok{border:2px solid #398f14}.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ng,.wp-block-uagb-cf7-styler div.wpcf7-aborted{border:2px solid #ff0000}.wp-block-uagb-cf7-styler div.wpcf7-spam-blocked{border:2px solid #ffa500}.wp-block-uagb-cf7-styler div.wpcf7-validation-errors,.wp-block-uagb-cf7-styler div.wpcf7-acceptance-missing{border:2px solid #f7e700}.wp-block-uagb-cf7-styler .wpcf7-form-control-wrap{position:relative}.wp-block-uagb-cf7-styler span.wpcf7-not-valid-tip{color:#f00;font-size:1em;font-weight:normal;display:block}.wp-block-uagb-cf7-styler .use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px solid #ff0000;background:#fff;padding:.2em .8em}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-display-none{display:none}.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader{visibility:hidden;display:inline-block;background-image:url("../../images/ajax-loader.gif");width:16px;height:16px;border:none;padding:0;margin:0 0 0 4px;vertical-align:middle}.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader.is-active{visibility:visible}.wp-block-uagb-cf7-styler div.wpcf7 div.ajax-error{display:none}.wp-block-uagb-cf7-styler div.wpcf7 .placeheld{color:#888}.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"]{cursor:pointer}.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"]:disabled{cursor:default}.wp-block-uagb-cf7-styler div.wpcf7 .wpcf7-submit:disabled{cursor:not-allowed}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler .button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler input,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-cf7-styler textarea{font-size:100%;color:inherit}
|
16 |
+
.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-none .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading.custom_gform_heading{display:none}.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading.custom_gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading{display:block}.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="radio"],.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="checkbox"]{-webkit-appearance:none}.wp-block-uagb-gf-styler input[type="radio"]{-webkit-appearance:radio}.wp-block-uagb-gf-styler input[type="checkbox"]{-webkit-appearance:checkbox}.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before,.wp-block-uagb-gf-styler input[type="radio"]:checked:before{content:''}.wp-block-uagb-gf-styler input[type="radio"]:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:focus,.wp-block-uagb-gf-styler input[type="radio"]:checked:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:focus{box-shadow:none}.wp-block-uagb-gf-styler input[type="radio"]:checked:before,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before{float:unset;display:inline}.wp-block-uagb-gf-styler input[type=number]{height:auto}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler input,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler textarea{font-size:100%;color:inherit}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .gform_button.button{height:auto}
|
17 |
#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}#wpwrap .edit-post-visual-editor blockquote.uagb-blockquote{margin:0;padding:0}#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-border blockquote{padding-left:10px}#wpwrap .edit-post-visual-editor .uagb-blockquote__content,#wpwrap .edit-post-visual-editor cite.uagb-blockquote__author,#wpwrap .edit-post-visual-editor .uagb-blockquote__author{font-style:normal}#wpwrap .edit-post-visual-editor .uagb-blockquote a{color:#1DA1F2;box-shadow:none;text-decoration:none}#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{color:#fff}#wpwrap .edit-post-visual-editor .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{margin:0 auto}
|
18 |
p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !important}
|
19 |
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top{right:350px}.block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll{display:block}.uagb-light-font-weight{font-weight:400}
|
dist/blocks.style.build.css
CHANGED
@@ -17,4 +17,4 @@
|
|
17 |
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;border-radius:0;background:#FFF;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-js-display:flex;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}
|
18 |
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{-js-display:flex;display:flex;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:flex;transition:0.2s;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;transform:translateY(-50%) scale(1, 0.65);transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
19 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button h6.uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
20 |
-
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list:first-child{margin:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1em;margin-bottom:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul{padding:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
|
17 |
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;border-radius:0;background:#FFF;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-js-display:flex;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}
|
18 |
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{-js-display:flex;display:flex;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:flex;transition:0.2s;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;transform:translateY(-50%) scale(1, 0.65);transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
19 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button h6.uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
20 |
+
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list:first-child{margin:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1em;margin-bottom:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul{padding:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicon.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.dashicon.uagb-toc__show-scroll{display:inline-table}
|
dist/blocks.style.css
CHANGED
@@ -1,20 +1,20 @@
|
|
|
|
1 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
2 |
.uagb-buttons__outer-wrap .uagb-buttons__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-buttons__outer-wrap .uagb-button__active,.uagb-buttons__outer-wrap .uagb-button__active:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}.uagb-buttons__outer-wrap a.uagb-button__link:focus,.uagb-buttons__outer-wrap .uagb-button__link:focus{box-shadow:none;text-decoration:none}.uagb-buttons__outer-wrap .uagb-button__wrapper{padding:0;border:1px solid #333;border-radius:2px;margin-left:5px;margin-right:5px;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s;display:inline-flex}.uagb-buttons__outer-wrap .uagb-button__wrapper:first-child{margin-left:0}.uagb-buttons__outer-wrap .uagb-button__wrapper:last-child{margin-right:0}.uagb-buttons__outer-wrap .uagb-button__wrapper a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-button__link{padding:10px 14px;width:100%;color:#333;text-decoration:none;font-family:inherit;line-height:inherit;font-weight:inherit;font-size:inherit}.uagb-buttons__outer-wrap .uagb-button__wrapper a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper:hover a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper:hover .uagb-button__link{text-decoration:none}
|
3 |
-
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{-webkit-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{-webkit-box-orient:vertical;-webkit-box-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:column;flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{-webkit-box-orient:vertical;-webkit-box-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;-moz-box-orient:column;-moz-box-direction:column;flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
4 |
-
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
5 |
-
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
6 |
-
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
7 |
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
8 |
-
.uagb-
|
9 |
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
|
10 |
-
.
|
11 |
-
.uagb-
|
12 |
-
.uagb-
|
13 |
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap,button.components-button{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:999;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
|
|
|
|
14 |
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}@media only screen and (max-width: 449px){.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll !important}}
|
15 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}
|
16 |
-
.
|
17 |
-
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
18 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
|
|
19 |
.uagb-testimonial__wrap{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%;-webkit-border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%;-webkit-border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;justify-content:center}@media (max-width: 976px){.uagb-tm__image-position-bottom.uagb-tm-stacked-tablet .uagb-tm__image-content,.uagb-tm__image-position-bottom.uagb-tm-stacked-tablet .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm__image-position-left.uagb-tm-stacked-tablet .uagb-tm__content,.uagb-tm__image-position-right.uagb-tm-stacked-tablet .uagb-tm__content{display:block;-js-display:block;display:block}.uagb-tm__image-position-right.uagb-tm-stacked-tablet.uagb-tm-reverse-order-tablet .uagb-tm__content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-tm__image-aligned-top.uagb-tm-stacked-tablet .uagb-tm__image-content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;align-self:center}}@media (max-width: 768px){.uagb-tm__image-position-bottom.uagb-tm-stacked-mobile .uagb-tm__image-content,.uagb-tm__image-position-bottom.uagb-tm-stacked-mobile .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm__image-position-left.uagb-tm-stacked-mobile .uagb-tm__content,.uagb-tm__image-position-right.uagb-tm-stacked-mobile .uagb-tm__content{display:block;-js-display:block;display:block}.uagb-tm__image-position-right.uagb-tm-stacked-mobile.uagb-tm-reverse-order-mobile .uagb-tm__content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-tm__image-aligned-top.uagb-tm-stacked-mobile .uagb-tm__image-content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;align-self:center}}.uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{right:-45px}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}.uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}.uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}@media (max-width: 976px){.uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{left:auto;right:15px}.uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{right:15px}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:15px;right:auto}}
|
20 |
.uagb-timeline__widget{position:relative;-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-moz-box-align:start;-ms-flex-align:start;align-items:flex-start}.uagb-timeline__widget a{text-decoration:none;color:inherit}.uagb-timeline__heading a{font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;-webkit-box-sizing:content-box;-mz-box-sizing:content-box;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}h1.uagb-timeline__heading,h2.uagb-timeline__heading,h3.uagb-timeline__heading,h4.uagb-timeline__heading,h5.uagb-timeline__heading,h6.uagb-timeline__heading{margin-bottom:0px}.uagb-timeline__inner-date-new p{margin-bottom:0}.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__right-block .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px}.uagb-timeline__left-block .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;-webkit-border-radius:999px;border-radius:999px;position:relative;-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:1;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:3;-webkit-order:2;-moz-box-ordinal-group:3;-ms-flex-order:2;order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:3;-webkit-order:2;-moz-box-ordinal-group:3;-ms-flex-order:2;order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.uagb-timeline__arrow:after{-webkit-transition:border-color .2s ease-in-out;transition:border-color .2s ease-in-out}.uagb-timeline__date-new{-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}}
|
1 |
+
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{-webkit-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{-webkit-box-orient:vertical;-webkit-box-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:column;flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{-webkit-box-orient:vertical;-webkit-box-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;-moz-box-orient:column;-moz-box-direction:column;flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
2 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
3 |
.uagb-buttons__outer-wrap .uagb-buttons__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-buttons__outer-wrap .uagb-button__active,.uagb-buttons__outer-wrap .uagb-button__active:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}.uagb-buttons__outer-wrap a.uagb-button__link:focus,.uagb-buttons__outer-wrap .uagb-button__link:focus{box-shadow:none;text-decoration:none}.uagb-buttons__outer-wrap .uagb-button__wrapper{padding:0;border:1px solid #333;border-radius:2px;margin-left:5px;margin-right:5px;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s;display:inline-flex}.uagb-buttons__outer-wrap .uagb-button__wrapper:first-child{margin-left:0}.uagb-buttons__outer-wrap .uagb-button__wrapper:last-child{margin-right:0}.uagb-buttons__outer-wrap .uagb-button__wrapper a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-button__link{padding:10px 14px;width:100%;color:#333;text-decoration:none;font-family:inherit;line-height:inherit;font-weight:inherit;font-size:inherit}.uagb-buttons__outer-wrap .uagb-button__wrapper a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper:hover a.uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-button__link,.uagb-buttons__outer-wrap .uagb-button__wrapper:hover .uagb-button__link{text-decoration:none}
|
|
|
|
|
|
|
|
|
4 |
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
5 |
+
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
6 |
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
|
7 |
+
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:flex-start;-webkit-align-items:flex-start;-moz-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
|
8 |
+
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
9 |
+
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
10 |
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap,button.components-button{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:999;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
11 |
+
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
12 |
+
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button h6.uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
13 |
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}@media only screen and (max-width: 449px){.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll !important}}
|
14 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}
|
15 |
+
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{-webkit-background-size:cover;background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}
|
16 |
+
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
17 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
18 |
+
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list:first-child{margin:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1em;margin-bottom:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul{padding:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicon.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.dashicon.uagb-toc__show-scroll{display:inline-table}
|
19 |
.uagb-testimonial__wrap{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%;-webkit-border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%;-webkit-border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;justify-content:center}@media (max-width: 976px){.uagb-tm__image-position-bottom.uagb-tm-stacked-tablet .uagb-tm__image-content,.uagb-tm__image-position-bottom.uagb-tm-stacked-tablet .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm__image-position-left.uagb-tm-stacked-tablet .uagb-tm__content,.uagb-tm__image-position-right.uagb-tm-stacked-tablet .uagb-tm__content{display:block;-js-display:block;display:block}.uagb-tm__image-position-right.uagb-tm-stacked-tablet.uagb-tm-reverse-order-tablet .uagb-tm__content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-tm__image-aligned-top.uagb-tm-stacked-tablet .uagb-tm__image-content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;align-self:center}}@media (max-width: 768px){.uagb-tm__image-position-bottom.uagb-tm-stacked-mobile .uagb-tm__image-content,.uagb-tm__image-position-bottom.uagb-tm-stacked-mobile .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm__image-position-left.uagb-tm-stacked-mobile .uagb-tm__content,.uagb-tm__image-position-right.uagb-tm-stacked-mobile .uagb-tm__content{display:block;-js-display:block;display:block}.uagb-tm__image-position-right.uagb-tm-stacked-mobile.uagb-tm-reverse-order-mobile .uagb-tm__content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-tm__image-aligned-top.uagb-tm-stacked-mobile .uagb-tm__image-content{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;align-self:center}}.uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{right:-45px}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}.uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}.uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}@media (max-width: 976px){.uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{left:auto;right:15px}.uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{right:15px}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:15px;right:auto}}
|
20 |
.uagb-timeline__widget{position:relative;-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-moz-box-align:start;-ms-flex-align:start;align-items:flex-start}.uagb-timeline__widget a{text-decoration:none;color:inherit}.uagb-timeline__heading a{font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;-webkit-box-sizing:content-box;-mz-box-sizing:content-box;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}h1.uagb-timeline__heading,h2.uagb-timeline__heading,h3.uagb-timeline__heading,h4.uagb-timeline__heading,h5.uagb-timeline__heading,h6.uagb-timeline__heading{margin-bottom:0px}.uagb-timeline__inner-date-new p{margin-bottom:0}.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__right-block .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px}.uagb-timeline__left-block .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;-webkit-border-radius:999px;border-radius:999px;position:relative;-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:1;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:3;-webkit-order:2;-moz-box-ordinal-group:3;-ms-flex-order:2;order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:3;-webkit-order:2;-moz-box-ordinal-group:3;-ms-flex-order:2;order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.uagb-timeline__arrow:after{-webkit-transition:border-color .2s ease-in-out;transition:border-color .2s ease-in-out}.uagb-timeline__date-new{-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}}
|
languages/ultimate-addons-for-gutenberg.pot
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Ultimate Addons for Gutenberg package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ultimate Addons for Gutenberg 1.14.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"PO-Revision-Date:
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
"Language: en\n"
|
1 |
+
# Copyright (C) 2020 Brainstorm Force
|
2 |
# This file is distributed under the same license as the Ultimate Addons for Gutenberg package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ultimate Addons for Gutenberg 1.14.7\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
|
8 |
+
"POT-Creation-Date: 2020-03-02 10:35:47+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
"Language: en\n"
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block
|
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.3.2
|
8 |
-
Stable tag: 1.14.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -40,7 +40,7 @@ These Gutenberg starter sites give you -
|
|
40 |
|
41 |
<strong>FREE And Popular Gutenberg Compatible Theme</strong>
|
42 |
|
43 |
-
Over
|
44 |
|
45 |
Reasons why people love the Astra Theme
|
46 |
|
@@ -155,6 +155,16 @@ When you use the Ultimate Addons for Gutenberg along with the free Astra theme,
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
= 1.14.6 =
|
159 |
* Fix: Advanced Columns - Column width issue.
|
160 |
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.3.2
|
8 |
+
Stable tag: 1.14.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
40 |
|
41 |
<strong>FREE And Popular Gutenberg Compatible Theme</strong>
|
42 |
|
43 |
+
Over 600,000+ users are empowering their websites with Astra - 100% Gutenberg compatible theme! From beginners to industry experts, everyone is loving Astra for its performance and ease of use.
|
44 |
|
45 |
Reasons why people love the Astra Theme
|
46 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.14.7 =
|
159 |
+
* Improvement: Post - Post Title tag can be span/p.
|
160 |
+
* Improvement: Post - Column count increased to 8.
|
161 |
+
* Improvement: Post - Excerpt length maximum value increased.
|
162 |
+
* Fix: Gutenberg 7.6 compatibility fixes.
|
163 |
+
* Fix: Advanced Columns - Column width issue for responsive devices.
|
164 |
+
* Fix: Contact Form 7 Styler - Styling not applied in editor mode.
|
165 |
+
* Fix: Gravity Form Styler - Styling not applied in editor mode.
|
166 |
+
* Fix: Table of Contents - Advanced Heading getting skipped in some case scenario.
|
167 |
+
|
168 |
= 1.14.6 =
|
169 |
* Fix: Advanced Columns - Column width issue.
|
170 |
|
ultimate-addons-for-gutenberg.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://www.brainstormforce.com
|
5 |
* Author: Brainstorm Force
|
6 |
* Author URI: https://www.brainstormforce.com
|
7 |
-
* Version: 1.14.
|
8 |
* Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
|
9 |
* Text Domain: ultimate-addons-for-gutenberg
|
10 |
*
|
4 |
* Plugin URI: https://www.brainstormforce.com
|
5 |
* Author: Brainstorm Force
|
6 |
* Author URI: https://www.brainstormforce.com
|
7 |
+
* Version: 1.14.7
|
8 |
* Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
|
9 |
* Text Domain: ultimate-addons-for-gutenberg
|
10 |
*
|