Version Description
[ Specification change ] load block css awesome on footer from header [ Specification change ] load font awesome on footer from header
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 9.9.0.0 |
Comparing to | |
See all releases |
Code changes from version 9.8.3.0 to 9.9.0.0
- inc/font-awesome/package/class-vk-font-awesome-versions.php +23 -17
- inc/vk-blocks/package/build/block-build-editor.css +1 -1
- inc/vk-blocks/package/build/block-build.css +2 -2
- inc/vk-blocks/package/build/block-build.js +2 -3
- inc/vk-blocks/package/build/languages/vk-blocks-ja-vk-blocks-build-js.json +1 -1
- inc/vk-blocks/package/build/languages/vk-blocks-ja.mo +0 -0
- inc/vk-blocks/package/build/languages/vk-blocks-ja.po +292 -227
- inc/vk-blocks/package/build/languages/vk-blocks.pot +57 -52
- inc/vk-blocks/package/load-vk-components.php +6 -0
- inc/vk-blocks/package/view/post-list.php +19 -14
- inc/vk-blocks/package/vk-blocks-functions.php +70 -49
- inc/vk-blocks/vk-blocks-config.php +1 -1
- readme.txt +6 -1
- vkExUnit.php +2 -2
inc/font-awesome/package/class-vk-font-awesome-versions.php
CHANGED
@@ -13,7 +13,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
13 |
|
14 |
static function init() {
|
15 |
add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
|
16 |
-
add_action( '
|
17 |
add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
|
18 |
add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
|
19 |
add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
|
@@ -24,7 +24,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
24 |
global $font_awesome_directory_uri;
|
25 |
$versions = array(
|
26 |
'5_SVG_JS' => array(
|
27 |
-
'label' => '5 SVG with JS ( ' . __( 'Not recommended', '
|
28 |
'version' => '5.11.2',
|
29 |
'type' => 'svg-with-js',
|
30 |
/* [ Notice ] use editor css*/
|
@@ -39,7 +39,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
39 |
'url_js' => '',
|
40 |
),
|
41 |
'4.7' => array(
|
42 |
-
'label' => '4.7 ( ' . __( 'Not recommended', '
|
43 |
'version' => '4.7',
|
44 |
'type' => 'web-fonts-with-css',
|
45 |
'url_css' => $font_awesome_directory_uri . 'versions/4.7.0/css/font-awesome.min.css',
|
@@ -71,15 +71,16 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
71 |
public static function ex_and_link() {
|
72 |
$current_option = self::get_option_fa();
|
73 |
if ( $current_option == '5_WebFonts_CSS' || $current_option == '5_SVG_JS' ) {
|
74 |
-
$ex_and_link = '<strong>Font Awesome 5</strong><br>' . __( 'Ex ) ', '
|
75 |
} else {
|
76 |
-
$ex_and_link = '<strong>Font Awesome 4.7</strong><br>' . __( 'Ex ) ', '
|
77 |
}
|
78 |
return $ex_and_link;
|
79 |
}
|
80 |
|
81 |
/**
|
82 |
* When use Font Awesome 4,7 then print 'fa '.
|
|
|
83 |
* @var strings;
|
84 |
*/
|
85 |
public static function print_fa() {
|
@@ -113,9 +114,10 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
113 |
}
|
114 |
|
115 |
/**
|
116 |
-
|
117 |
-
|
118 |
-
|
|
|
119 |
static function add_body_class_fa_version( $class ) {
|
120 |
$current_option = self::get_option_fa();
|
121 |
if ( $current_option == '4.7' ) {
|
@@ -130,6 +132,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
130 |
|
131 |
/**
|
132 |
* Output dynbamic css according to Font Awesome versions
|
|
|
133 |
* @return [type] [description]
|
134 |
*/
|
135 |
static function dynamic_css() {
|
@@ -162,22 +165,24 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
162 |
}
|
163 |
}
|
164 |
|
165 |
-
|
166 |
-
|
167 |
/*-------------------------------------------*/
|
168 |
static function customize_register( $wp_customize ) {
|
169 |
|
170 |
global $vk_font_awesome_version_prefix_customize_panel;
|
171 |
|
172 |
$wp_customize->add_section(
|
173 |
-
'VK Font Awesome',
|
174 |
-
|
|
|
175 |
'priority' => 450,
|
176 |
)
|
177 |
);
|
178 |
|
179 |
$wp_customize->add_setting(
|
180 |
-
'vk_font_awesome_version',
|
|
|
181 |
'default' => '5_WebFonts_CSS',
|
182 |
'type' => 'option',
|
183 |
'capability' => 'edit_theme_options',
|
@@ -185,17 +190,18 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
185 |
)
|
186 |
);
|
187 |
|
188 |
-
$versions =
|
189 |
foreach ( $versions as $key => $value ) {
|
190 |
$choices[ $key ] = $value['label'];
|
191 |
}
|
192 |
|
193 |
$wp_customize->add_control(
|
194 |
-
'vk_font_awesome_version',
|
195 |
-
|
|
|
196 |
'section' => 'VK Font Awesome',
|
197 |
'settings' => 'vk_font_awesome_version',
|
198 |
-
'description' => __( '4.7 will be abolished in the near future.', '
|
199 |
'type' => 'select',
|
200 |
'priority' => '',
|
201 |
'choices' => $choices,
|
13 |
|
14 |
static function init() {
|
15 |
add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
|
16 |
+
add_action( 'wp_footer', array( __CLASS__, 'load_font_awesome' ), 3 );
|
17 |
add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
|
18 |
add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
|
19 |
add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
|
24 |
global $font_awesome_directory_uri;
|
25 |
$versions = array(
|
26 |
'5_SVG_JS' => array(
|
27 |
+
'label' => '5 SVG with JS ( ' . __( 'Not recommended', 'vk_font_awesome_version_textdomain' ) . ' )',
|
28 |
'version' => '5.11.2',
|
29 |
'type' => 'svg-with-js',
|
30 |
/* [ Notice ] use editor css*/
|
39 |
'url_js' => '',
|
40 |
),
|
41 |
'4.7' => array(
|
42 |
+
'label' => '4.7 ( ' . __( 'Not recommended', 'vk_font_awesome_version_textdomain' ) . ' )',
|
43 |
'version' => '4.7',
|
44 |
'type' => 'web-fonts-with-css',
|
45 |
'url_css' => $font_awesome_directory_uri . 'versions/4.7.0/css/font-awesome.min.css',
|
71 |
public static function ex_and_link() {
|
72 |
$current_option = self::get_option_fa();
|
73 |
if ( $current_option == '5_WebFonts_CSS' || $current_option == '5_SVG_JS' ) {
|
74 |
+
$ex_and_link = '<strong>Font Awesome 5</strong><br>' . __( 'Ex ) ', 'vk_font_awesome_version_textdomain' ) . 'far fa-file-alt [ <a href="//fontawesome.com/icons?d=gallery&m=free" target="_blank">Icon list</a> ]';
|
75 |
} else {
|
76 |
+
$ex_and_link = '<strong>Font Awesome 4.7</strong><br>' . __( 'Ex ) ', 'vk_font_awesome_version_textdomain' ) . 'fa-file-text-o [ <a href="//fontawesome.com/v4.7.0/icons/" target="_blank">Icon list</a> ]';
|
77 |
}
|
78 |
return $ex_and_link;
|
79 |
}
|
80 |
|
81 |
/**
|
82 |
* When use Font Awesome 4,7 then print 'fa '.
|
83 |
+
*
|
84 |
* @var strings;
|
85 |
*/
|
86 |
public static function print_fa() {
|
114 |
}
|
115 |
|
116 |
/**
|
117 |
+
* add body class
|
118 |
+
*
|
119 |
+
* @return [type] [description]
|
120 |
+
*/
|
121 |
static function add_body_class_fa_version( $class ) {
|
122 |
$current_option = self::get_option_fa();
|
123 |
if ( $current_option == '4.7' ) {
|
132 |
|
133 |
/**
|
134 |
* Output dynbamic css according to Font Awesome versions
|
135 |
+
*
|
136 |
* @return [type] [description]
|
137 |
*/
|
138 |
static function dynamic_css() {
|
165 |
}
|
166 |
}
|
167 |
|
168 |
+
/*
|
169 |
+
customize_register
|
170 |
/*-------------------------------------------*/
|
171 |
static function customize_register( $wp_customize ) {
|
172 |
|
173 |
global $vk_font_awesome_version_prefix_customize_panel;
|
174 |
|
175 |
$wp_customize->add_section(
|
176 |
+
'VK Font Awesome',
|
177 |
+
array(
|
178 |
+
'title' => $vk_font_awesome_version_prefix_customize_panel . __( 'Font Awesome', 'vk_font_awesome_version_textdomain' ),
|
179 |
'priority' => 450,
|
180 |
)
|
181 |
);
|
182 |
|
183 |
$wp_customize->add_setting(
|
184 |
+
'vk_font_awesome_version',
|
185 |
+
array(
|
186 |
'default' => '5_WebFonts_CSS',
|
187 |
'type' => 'option',
|
188 |
'capability' => 'edit_theme_options',
|
190 |
)
|
191 |
);
|
192 |
|
193 |
+
$versions = self::versions();
|
194 |
foreach ( $versions as $key => $value ) {
|
195 |
$choices[ $key ] = $value['label'];
|
196 |
}
|
197 |
|
198 |
$wp_customize->add_control(
|
199 |
+
'vk_font_awesome_version',
|
200 |
+
array(
|
201 |
+
'label' => __( 'Font Awesome Version', 'vk_font_awesome_version_textdomain' ),
|
202 |
'section' => 'VK Font Awesome',
|
203 |
'settings' => 'vk_font_awesome_version',
|
204 |
+
'description' => __( '4.7 will be abolished in the near future.', 'vk_font_awesome_version_textdomain' ),
|
205 |
'type' => 'select',
|
206 |
'priority' => '',
|
207 |
'choices' => $choices,
|
inc/vk-blocks/package/build/block-build-editor.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@charset "UTF-8";.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents:after,.editor-block-list-item-vk-blocks-timeline:after{position:absolute;top:0;right:0;content:"Pro";display:inline-block;font-size:10px;line-height:1;color:#fff;background-color:#cd3034;border-radius:2px;padding:3px 4px}.components-base-control__label{font-weight:700}.wp-core-ui .components-base-control__label+button{display:block}.components-base-control .components-base-control__help{margin-top:0}.components-radio-control__option label{margin-bottom:0}.components-checkbox-control__label{margin-bottom:0}.components-color-palette{display:block;overflow:hidden}input[type=range]{margin:1px}.editor-url-input input[type=text]{width:100%}.edit-post-visual-editor.editor-styles-wrapper h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_button .editor-rich-text{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark{-webkit-padding-start:2em;padding-inline-start:2em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li{list-style:none;position:relative;margin-bottom:.8em;line-height:1.65em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;border-radius:50%;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center;border-radius:2px}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-lg li::before{left:-.8em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-pink-color li::before{color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#fff;background-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-red-color li::before{color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#fff;background-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#fff;background-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#fff;background-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-light-green-cyan-color li::before{color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#fff;background-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-green-cyan-color li::before{color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#fff;background-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#fff;background-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#fff;background-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-purple-color li::before{color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#fff;background-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-light-gray-color li::before{color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#fff;background-color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#fff;background-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-dark-gray-color li::before{color:#313131}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#fff;background-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:.5em;border-radius:8px}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2);padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h3:first-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h4:first-child{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group .wp-block-columns:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group dl:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ol:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group p:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group table:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ul:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .alert{padding:1em;margin:1em 0;border-radius:3px}.edit-post-visual-editor.editor-styles-wrapper .alert p{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .alert+.edit-post-visual-editor.editor-styles-wrapper .alert{margin-top:2em}.edit-post-visual-editor.editor-styles-wrapper .alert a{-webkit-transition:color .3s linear,opacity .3s linear;transition:color .3s linear,opacity .3s linear}.edit-post-visual-editor.editor-styles-wrapper .alert a:link,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:.8;text-decoration:underline}.edit-post-visual-editor.editor-styles-wrapper .alert a:hover,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:1;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.edit-post-visual-editor.editor-styles-wrapper .alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.edit-post-visual-editor.editor-styles-wrapper .alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.edit-post-visual-editor.editor-styles-wrapper .alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon figure{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;flex-shrink:0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_name{display:block;text-align:center;font-size:.7rem;margin-top:.2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{position:relative;text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after,.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{position:absolute;content:'';border-radius:50%;background:inherit}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}}@keyframes vibration{0%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}}@media only screen and (max-width:480px){.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{font-size:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{max-width:96px}}.edit-post-visual-editor.editor-styles-wrapper .vk_button{margin:5px 0}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:.8;-webkit-box-shadow:0 0 0 .2rem rgba(171,184,195,.25);box-shadow:0 0 0 .2rem rgba(171,184,195,.25)}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-left{text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-center{text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-block{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link{min-width:100px;min-height:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_before{margin-right:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_after{margin-left:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-primary{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary{color:#fff;background-color:#6c757d}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-success{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-info{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-warning{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-danger{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-light{color:#fff;background-color:#f8f9fa}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark{color:#fff;background-color:#343a40}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark:hover,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary:hover{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light{color:#f8f9fa;border:1px solid #f8f9fa;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:hover{background:#007bff;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:hover{background:#6c757d;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:hover{background:#28a745;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:hover{background:#17a2b8;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:hover{background:#ffc107;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:hover{background:#dc3545;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:hover{background:#f8f9fa;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:hover{background:#343a40;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{border:none;padding-left:35px}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{position:absolute;left:0;font-size:24px;line-height:105%}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{font-family:areal;content:"Q ";color:#e50000}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-on:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off{padding-bottom:0;margin-bottom:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off:after{content:"";font-size:0;background-image:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content,.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{padding-left:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{border-bottom:1px dotted #ccc;margin:0 0 10px;padding:0 0 5px;font-size:1.2em}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_image{max-width:150px;margin-left:15px;-webkit-box-sizing:border-box;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading_subtext{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after{border-bottom:none!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:#efefef;padding:.6em .7em .5em;margin-bottom:1.2em;border-radius:4px}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:double 3px #333;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:1px dotted #111}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;margin-bottom:1.2em;padding:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{content:"";-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-bottom:1px solid #333;position:unset;width:unset;border-top:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{margin-right:1em;top:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after{margin-left:1em;bottom:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:transparent!important;padding:.7em;margin-bottom:1.2em;text-align:center;border-bottom:unset!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{content:"";position:absolute;top:0;width:12px;height:100%;display:inline-block;margin-left:0;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{border-left:solid 1px #333;left:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after{border-right:solid 1px #333!important;right:0;left:auto}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-border img{border:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame{background-color:#fff;padding:10px;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,.2);box-shadow:1px 1px 4px rgba(0,0,0,.2)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame figcaption{margin:8px 0 0}@media screen and (max-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item{margin-bottom:1.5em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link{color:#333}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::after{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_summary{margin-bottom:.5em;text-align:center;line-height:1.8em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{display:-webkit-box;display:-ms-flexbox;display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent .col-sm-6{width:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt{vertical-align:top}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title{background-color:transparent;font-weight:700;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:.8em}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:first-child{margin-top:30px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_btn.btn{font-size:16px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg_image{max-width:100%;height:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.button{margin:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.image-button{margin:0}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 td,.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{background-color:rgba(0,0,0,.05)}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-rich-text__editable{padding:0;margin:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit:before{right:0;left:0;top:0;bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:-webkit-box;display:-ms-flexbox;display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th{padding:0;display:block;width:100%;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable{padding:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,.05)}@media (max-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width:577px) and (max-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width:769px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text{float:left;width:61.6%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{float:right;width:32%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_text{float:right}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_photo{float:left}.edit-post-visual-editor.editor-styles-wrapper .vk_staff{display:block;overflow:hidden}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name{text-align:left;-webkit-box-shadow:none;box-shadow:none;font-size:3.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;line-height:1;margin-bottom:.5rem;border:none;padding:0;background-color:transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;font-size:14px;display:block;margin:0 0 .5rem 4px;letter-spacing:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:0 0}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileText{font-size:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{display:block;vertical-align:top;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo button{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo .image-button{padding:0;margin:0;display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-none{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:74%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_name{font-size:4rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_caption{font-size:16px;letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_role{letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:22%}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:75%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:20%}}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-overflow{white-space:nowrap!important}
|
1 |
+
@charset "UTF-8";.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-card:after,.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents:after,.editor-block-list-item-vk-blocks-timeline:after{position:absolute;top:0;right:0;content:"Pro";display:inline-block;font-size:10px;line-height:1;color:#fff;background-color:#cd3034;border-radius:2px;padding:3px 4px}.components-base-control__label{font-weight:700}.components-base-control .components-base-control__help{margin-top:0}.components-radio-control__option label{margin-bottom:0}.components-checkbox-control__label{margin-bottom:0}.components-color-palette{display:block;overflow:hidden}input[type=range]{margin:1px}.editor-url-input input[type=text]{width:100%}.edit-post-visual-editor.editor-styles-wrapper h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.edit-post-visual-editor.editor-styles-wrapper .postList_itemCard_button-option{margin-bottom:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter{position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete{opacity:0;border:1px solid #b52727;color:#b52727;transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete:hover{background-color:#b52727;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter:hover .button-delete{transition:all 1s;opacity:1}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__layout{display:flex;flex-wrap:wrap;padding:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block{margin:0 15px 30px;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block]{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block] .vk_post{width:100%;height:100%;margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-list-appender{clear:both;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block{width:calc(100% - 30px)}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-12>.editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-12>.editor-block-list__block{width:calc(100% - 30px)}}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark{padding-inline-start:2em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li{list-style:none;position:relative;margin-bottom:.8em;line-height:1.65em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;border-radius:50%;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center;border-radius:2px}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-lg li::before{left:-.8em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-pink-color li::before{color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#fff;background-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-red-color li::before{color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#fff;background-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#fff;background-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#fff;background-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-light-green-cyan-color li::before{color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#fff;background-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-green-cyan-color li::before{color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#fff;background-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#fff;background-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#fff;background-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-purple-color li::before{color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#fff;background-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-light-gray-color li::before{color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#fff;background-color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#fff;background-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-dark-gray-color li::before{color:#313131}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#fff;background-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:.5em;border-radius:8px}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow{box-shadow:0 0 5px rgba(0,0,0,.2);padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h3:first-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h4:first-child{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group .wp-block-columns:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group dl:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ol:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group p:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group table:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ul:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .alert{padding:1em;margin:1em 0;border-radius:3px}.edit-post-visual-editor.editor-styles-wrapper .alert p{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .alert+.edit-post-visual-editor.editor-styles-wrapper .alert{margin-top:2em}.edit-post-visual-editor.editor-styles-wrapper .alert a{transition:color .3s linear,opacity .3s linear}.edit-post-visual-editor.editor-styles-wrapper .alert a:link,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:.8;text-decoration:underline}.edit-post-visual-editor.editor-styles-wrapper .alert a:hover,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:1;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.edit-post-visual-editor.editor-styles-wrapper .alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.edit-post-visual-editor.editor-styles-wrapper .alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.edit-post-visual-editor.editor-styles-wrapper .alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{display:flex;align-items:center;margin-bottom:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon figure{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{flex-basis:96px;flex-shrink:0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_name{display:block;text-align:center;font-size:.7rem;margin-top:.2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{position:relative;text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after,.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{position:absolute;content:'';border-radius:50%;background:inherit}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;animation:vibration .1s infinite}@keyframes vibration{0%{transform:translate(0,0) rotateZ(0)}25%{transform:translate(2px,2px) rotateZ(1deg)}50%{transform:translate(0,2px) rotateZ(0)}75%{transform:translate(2px,0) rotateZ(-1deg)}100%{transform:translate(0,0) rotateZ(0)}}@media only screen and (max-width:480px){.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{font-size:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{align-items:normal}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{max-width:96px}}.edit-post-visual-editor.editor-styles-wrapper .vk_button{margin:5px 0}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:.8;box-shadow:0 0 0 .2rem rgba(171,184,195,.25)}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-left{text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-center{text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-block{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link{min-width:100px;min-height:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;user-select:text}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_before{margin-right:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_after{margin-left:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-primary{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary{color:#fff;background-color:#6c757d}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-success{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-info{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-warning{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-danger{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-light{color:#fff;background-color:#f8f9fa}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark{color:#fff;background-color:#343a40}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark:hover,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary:hover{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light{color:#f8f9fa;border:1px solid #f8f9fa;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:hover{background:#007bff;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:hover{background:#6c757d;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:hover{background:#28a745;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:hover{background:#17a2b8;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:hover{background:#ffc107;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:hover{background:#dc3545;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:hover{background:#f8f9fa;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:hover{background:#343a40;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{border:none;padding-left:35px}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{position:absolute;left:0;font-size:24px;line-height:105%}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{font-family:areal;content:"Q ";color:#e50000}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-on:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off{padding-bottom:0;margin-bottom:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off:after{content:"";font-size:0;background-image:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame{display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;justify-content:space-between}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content,.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{padding-left:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{border-bottom:1px dotted #ccc;margin:0 0 10px;padding:0 0 5px;font-size:1.2em}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_image{max-width:150px;margin-left:15px;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading_subtext{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after{border-bottom:none!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:#efefef;padding:.6em .7em .5em;margin-bottom:1.2em;border-radius:4px}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:double 3px #333;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:1px dotted #111}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:flex;align-items:center;text-align:center;margin-bottom:1.2em;padding:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{content:"";flex-grow:1;border-bottom:1px solid #333;position:unset;width:unset;border-top:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{margin-right:1em;top:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after{margin-left:1em;bottom:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:transparent!important;padding:.7em;margin-bottom:1.2em;text-align:center;border-bottom:unset!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{content:"";position:absolute;top:0;width:12px;height:100%;display:inline-block;margin-left:0;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{border-left:solid 1px #333;left:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after{border-right:solid 1px #333!important;right:0;left:auto}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-border img{border:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame{background-color:#fff;padding:10px;box-shadow:1px 1px 4px rgba(0,0,0,.2)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame figcaption{margin:8px 0 0}@media screen and (max-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item{margin-bottom:1.5em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link{color:#333}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::after{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_summary{margin-bottom:.5em;text-align:center;line-height:1.8em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent .col-sm-6{width:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft{flex-direction:row}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt{vertical-align:top}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title{background-color:transparent;font-weight:700;padding:0;box-shadow:none;border:none;margin-bottom:.8em}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:first-child{margin-top:30px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_btn.btn{font-size:16px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg_image{max-width:100%;height:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.button{margin:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.image-button{margin:0}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 td,.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{background-color:rgba(0,0,0,.05)}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-rich-text__editable{padding:0;margin:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit:before{right:0;left:0;top:0;bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th{padding:0;display:block;width:100%;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable{padding:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,.05)}@media (max-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width:577px) and (max-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width:769px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text{float:left;width:61.6%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{float:right;width:32%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_text{float:right}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_photo{float:left}.edit-post-visual-editor.editor-styles-wrapper .vk_staff{display:block;overflow:hidden}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name{text-align:left;box-shadow:none;font-size:3.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;line-height:1;margin-bottom:.5rem;border:none;padding:0;background-color:transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;font-size:14px;display:block;margin:0 0 .5rem 4px;letter-spacing:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:0 0}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileText{font-size:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{display:block;vertical-align:top;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo button{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo .image-button{padding:0;margin:0;display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-none{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:74%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_name{font-size:4rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_caption{font-size:16px;letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_role{letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:22%}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:75%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:20%}}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-overflow{white-space:nowrap!important}
|
inc/vk-blocks/package/build/block-build.css
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul.is-style-vk-check-mark,ul.is-style-vk-check-circle-mark,ul.is-style-vk-check-square-mark,ul.is-style-vk-handpoint-mark,ul.is-style-vk-pencil-mark,ul.is-style-vk-smile-mark,ul.is-style-vk-frown-mark,ul.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-square-mark,ol.is-style-vk-default,ol.is-style-vk-arrow-mark,ol.is-style-vk-triangle-mark,ol.is-style-vk-check-mark,ol.is-style-vk-check-circle-mark,ol.is-style-vk-check-square-mark,ol.is-style-vk-handpoint-mark,ol.is-style-vk-pencil-mark,ol.is-style-vk-smile-mark,ol.is-style-vk-frown-mark,ol.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-square-mark{-webkit-padding-start:2em;padding-inline-start:2em}ul.is-style-vk-default li,ul.is-style-vk-arrow-mark li,ul.is-style-vk-triangle-mark li,ul.is-style-vk-check-mark li,ul.is-style-vk-check-circle-mark li,ul.is-style-vk-check-square-mark li,ul.is-style-vk-handpoint-mark li,ul.is-style-vk-pencil-mark li,ul.is-style-vk-smile-mark li,ul.is-style-vk-frown-mark li,ul.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-default li,ol.is-style-vk-arrow-mark li,ol.is-style-vk-triangle-mark li,ol.is-style-vk-check-mark li,ol.is-style-vk-check-circle-mark li,ol.is-style-vk-check-square-mark li,ol.is-style-vk-handpoint-mark li,ol.is-style-vk-pencil-mark li,ol.is-style-vk-smile-mark li,ol.is-style-vk-frown-mark li,ol.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-square-mark li{list-style:none;position:relative;margin-bottom:0.8em;line-height:1.65em}ul.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-circle-mark li:before,ol.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;border-radius:50%;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center}ul.is-style-vk-numbered-square-mark,ol.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-numbered-square-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-square-mark li:before,ol.is-style-vk-numbered-square-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center;border-radius:2px}ul.is-style-vk-numbered-circle-mark.fa-lg li::before,ul.is-style-vk-numbered-square-mark.fa-lg li::before,ol.is-style-vk-numbered-circle-mark.fa-lg li::before,ol.is-style-vk-numbered-square-mark.fa-lg li::before{left:-0.8em}ul.is-style-vk-numbered-circle-mark.fa-2x li,ul.is-style-vk-numbered-square-mark.fa-2x li,ol.is-style-vk-numbered-circle-mark.fa-2x li,ol.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-2x li::before,ul.is-style-vk-numbered-square-mark.fa-2x li::before,ol.is-style-vk-numbered-circle-mark.fa-2x li::before,ol.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}ul.is-style-vk-numbered-circle-mark.fa-3x li,ul.is-style-vk-numbered-square-mark.fa-3x li,ol.is-style-vk-numbered-circle-mark.fa-3x li,ol.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-3x li::before,ul.is-style-vk-numbered-square-mark.fa-3x li::before,ol.is-style-vk-numbered-circle-mark.fa-3x li::before,ol.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}ul.is-style-vk-numbered-circle-mark.fa-4x li,ul.is-style-vk-numbered-square-mark.fa-4x li,ol.is-style-vk-numbered-circle-mark.fa-4x li,ol.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-4x li::before,ul.is-style-vk-numbered-square-mark.fa-4x li::before,ol.is-style-vk-numbered-circle-mark.fa-4x li::before,ol.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}ul.is-style-vk-numbered-circle-mark.fa-5x li,ul.is-style-vk-numbered-square-mark.fa-5x li,ol.is-style-vk-numbered-circle-mark.fa-5x li,ol.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-5x li::before,ul.is-style-vk-numbered-square-mark.fa-5x li::before,ol.is-style-vk-numbered-circle-mark.fa-5x li::before,ol.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-arrow-mark li::before,ol.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-triangle-mark li::before,ol.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-mark li::before,ol.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-circle-mark li::before,ol.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-square-mark li::before,ol.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-handpoint-mark li::before,ol.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-pencil-mark li::before,ol.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-smile-mark li::before,ol.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-frown-mark li::before,ol.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.vk-has-pale-pink-color li::before,ol.vk-has-pale-pink-color li::before{color:#f78da7}ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#ffffff;background-color:#f78da7}ul.vk-has-vivid-red-color li::before,ol.vk-has-vivid-red-color li::before{color:#cf2e2e}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#ffffff;background-color:#cf2e2e}ul.vk-has-luminous-vivid-orange-color li::before,ol.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#ffffff;background-color:#ff6900}ul.vk-has-luminous-vivid-amber-color li::before,ol.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#ffffff;background-color:#fcb900}ul.vk-has-light-green-cyan-color li::before,ol.vk-has-light-green-cyan-color li::before{color:#7bdcb5}ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#ffffff;background-color:#7bdcb5}ul.vk-has-vivid-green-cyan-color li::before,ol.vk-has-vivid-green-cyan-color li::before{color:#00d084}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#ffffff;background-color:#00d084}ul.vk-has-pale-cyan-blue-color li::before,ol.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#ffffff;background-color:#8ed1fc}ul.vk-has-vivid-cyan-blue-color li::before,ol.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#ffffff;background-color:#0693e3}ul.vk-has-vivid-purple-color li::before,ol.vk-has-vivid-purple-color li::before{color:#9b51e0}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#ffffff;background-color:#9b51e0}ul.vk-has-very-light-gray-color li::before,ol.vk-has-very-light-gray-color li::before{color:#eee}ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#ffffff;background-color:#eee}ul.vk-has-cyan-bluish-gray-color li::before,ol.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#ffffff;background-color:#abb8c3}ul.vk-has-very-dark-gray-color li::before,ol.vk-has-very-dark-gray-color li::before{color:#313131}ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#ffffff;background-color:#313131}.wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid h2,.wp-block-group.is-style-vk-group-solid h3,.wp-block-group.is-style-vk-group-solid h4,.wp-block-group.is-style-vk-group-solid h5,.wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid ul,.wp-block-group.is-style-vk-group-solid ol{margin-top:0}.wp-block-group.is-style-vk-group-solid ul li:last-child,.wp-block-group.is-style-vk-group-solid ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid-roundcorner h2,.wp-block-group.is-style-vk-group-solid-roundcorner h3,.wp-block-group.is-style-vk-group-solid-roundcorner h4,.wp-block-group.is-style-vk-group-solid-roundcorner h5,.wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid-roundcorner ul,.wp-block-group.is-style-vk-group-solid-roundcorner ol{margin-top:0}.wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child,.wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dotted h2,.wp-block-group.is-style-vk-group-dotted h3,.wp-block-group.is-style-vk-group-dotted h4,.wp-block-group.is-style-vk-group-dotted h5,.wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dotted ul,.wp-block-group.is-style-vk-group-dotted ol{margin-top:0}.wp-block-group.is-style-vk-group-dotted ul li:last-child,.wp-block-group.is-style-vk-group-dotted ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dashed h2,.wp-block-group.is-style-vk-group-dashed h3,.wp-block-group.is-style-vk-group-dashed h4,.wp-block-group.is-style-vk-group-dashed h5,.wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dashed ul,.wp-block-group.is-style-vk-group-dashed ol{margin-top:0}.wp-block-group.is-style-vk-group-dashed ul li:last-child,.wp-block-group.is-style-vk-group-dashed ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-double h2,.wp-block-group.is-style-vk-group-double h3,.wp-block-group.is-style-vk-group-double h4,.wp-block-group.is-style-vk-group-double h5,.wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-double ul,.wp-block-group.is-style-vk-group-double ol{margin-top:0}.wp-block-group.is-style-vk-group-double ul li:last-child,.wp-block-group.is-style-vk-group-double ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:0.5em;border-radius:8px}.wp-block-group.is-style-vk-group-stitch h2,.wp-block-group.is-style-vk-group-stitch h3,.wp-block-group.is-style-vk-group-stitch h4,.wp-block-group.is-style-vk-group-stitch h5,.wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-stitch ul,.wp-block-group.is-style-vk-group-stitch ol{margin-top:0}.wp-block-group.is-style-vk-group-stitch ul li:last-child,.wp-block-group.is-style-vk-group-stitch ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.wp-block-group.is-style-vk-group-top-bottom-border h2,.wp-block-group.is-style-vk-group-top-bottom-border h3,.wp-block-group.is-style-vk-group-top-bottom-border h4,.wp-block-group.is-style-vk-group-top-bottom-border h5,.wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-top-bottom-border ul,.wp-block-group.is-style-vk-group-top-bottom-border ol{margin-top:0}.wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child,.wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-shadow h2,.wp-block-group.is-style-vk-group-shadow h3,.wp-block-group.is-style-vk-group-shadow h4,.wp-block-group.is-style-vk-group-shadow h5,.wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-shadow ul,.wp-block-group.is-style-vk-group-shadow ol{margin-top:0}.wp-block-group.is-style-vk-group-shadow ul li:last-child,.wp-block-group.is-style-vk-group-shadow ol li:last-child{margin-bottom:0}.wp-block-group h3:first-child,.wp-block-group h4:first-child{margin-top:0}.wp-block-group p:last-child,.wp-block-group ul:last-child,.wp-block-group ol:last-child,.wp-block-group dl:last-child,.wp-block-group table:last-child,.wp-block-group .wp-block-columns:last-child{margin-bottom:0}.wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}
|
2 |
-
|
3 |
.alert{padding:1em;margin:1em 0;border-radius:3px}.alert p{margin-bottom:0}.alert+.alert{margin-top:2em}.alert a{-webkit-transition:color .3s linear, opacity .3s linear;transition:color .3s linear, opacity .3s linear}.alert a:link,.alert a:visited{opacity:.8;text-decoration:underline}.alert a:hover,.alert a:visited{opacity:1;text-decoration:none}.alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}
|
4 |
|
5 |
.vk_balloon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1em}.vk_balloon figure{margin:0}.vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.vk_balloon_icon{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;flex-shrink:0;text-align:center}.vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.vk_balloon_icon_name{display:block;text-align:center;font-size:0.7rem;margin-top:0.2rem}.vk_balloon_content{position:relative;text-align:left}.vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.vk_balloon-type-think .vk_balloon_content::before,.vk_balloon-type-think .vk_balloon_content::after{position:absolute;content:'';border-radius:50%;background:inherit}.vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.vk_balloon-position-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@media only screen and (max-width: 480px){.vk_balloon_content{font-size:.9em}.vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.vk_balloon{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.vk_balloon.vk_balloon-position-right{text-align:right}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon_icon{max-width:96px}}
|
@@ -18,6 +16,8 @@ ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul
|
|
18 |
|
19 |
@media screen and (max-width: 992px){.vk_prBlocks_item{margin-bottom:1.5em}}.vk_prBlocks_item_link{color:#333}.vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.vk_prBlocks_item_title{background-color:transparent;margin-top:0.9em;margin-bottom:0.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.vk_prBlocks_item_title::before{content:none}.vk_prBlocks_item_title::after{border:none}.vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.vk_prBlocks_item_summary{margin-bottom:0.5em;text-align:center;line-height:1.8em}
|
20 |
|
|
|
|
|
21 |
.vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width: 576px){.vk_prContent{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_prContent .col-sm-6{width:50%}.vk_prContent-layout-imageLeft{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.vk_prContent_colTxt{vertical-align:top}.vk_prContent_colTxt_title{background-color:transparent;font-weight:bold;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:0.8em}@media (max-width: 575.98px){.vk_prContent_colTxt_title:first-child{margin-top:30px}}.vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width: 992px){.vk_prContent_colTxt_btn.btn{font-size:16px}}.vk_prContent_colImg_image{max-width:100%;height:auto}.vk_prContent_colImg .components-button.button{margin:1em}.vk_prContent_colImg .components-button.image-button{margin:0}
|
22 |
|
23 |
@media (max-width: 575.98px){.vk_table-col-mobile1 th,.vk_table-col-mobile1 td{display:block}.vk_table-col-mobile1 th{background-color:rgba(0,0,0,0.05)}.vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.vk_simpleTable-edit .editor-inner-blocks,.vk_simpleTable-edit .editor-block-list__layout,.vk_simpleTable-edit .editor-block-list__block,.vk_simpleTable-edit .editor-rich-text__editable,.vk_simpleTable-edit .editor-block-list__block-edit{padding:0;margin:0;width:100%}.vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.vk_simpleTable-edit .editor-block-list__block-edit:before{right:-0px;left:-0px;top:-0px;bottom:-0px}.vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_simpleTable-edit .editor-inner-blocks th,.vk_simpleTable-edit .editor-inner-blocks td{padding:0;display:block;width:100%;border:none}.vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable,.vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable{padding:14px}.vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}
|
|
|
|
|
1 |
.alert{padding:1em;margin:1em 0;border-radius:3px}.alert p{margin-bottom:0}.alert+.alert{margin-top:2em}.alert a{-webkit-transition:color .3s linear, opacity .3s linear;transition:color .3s linear, opacity .3s linear}.alert a:link,.alert a:visited{opacity:.8;text-decoration:underline}.alert a:hover,.alert a:visited{opacity:1;text-decoration:none}.alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}
|
2 |
|
3 |
.vk_balloon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1em}.vk_balloon figure{margin:0}.vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.vk_balloon_icon{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;flex-shrink:0;text-align:center}.vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.vk_balloon_icon_name{display:block;text-align:center;font-size:0.7rem;margin-top:0.2rem}.vk_balloon_content{position:relative;text-align:left}.vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.vk_balloon-type-think .vk_balloon_content::before,.vk_balloon-type-think .vk_balloon_content::after{position:absolute;content:'';border-radius:50%;background:inherit}.vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.vk_balloon-position-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@media only screen and (max-width: 480px){.vk_balloon_content{font-size:.9em}.vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.vk_balloon{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.vk_balloon.vk_balloon-position-right{text-align:right}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon_icon{max-width:96px}}
|
16 |
|
17 |
@media screen and (max-width: 992px){.vk_prBlocks_item{margin-bottom:1.5em}}.vk_prBlocks_item_link{color:#333}.vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.vk_prBlocks_item_title{background-color:transparent;margin-top:0.9em;margin-bottom:0.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.vk_prBlocks_item_title::before{content:none}.vk_prBlocks_item_title::after{border:none}.vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.vk_prBlocks_item_summary{margin-bottom:0.5em;text-align:center;line-height:1.8em}
|
18 |
|
19 |
+
ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul.is-style-vk-check-mark,ul.is-style-vk-check-circle-mark,ul.is-style-vk-check-square-mark,ul.is-style-vk-handpoint-mark,ul.is-style-vk-pencil-mark,ul.is-style-vk-smile-mark,ul.is-style-vk-frown-mark,ul.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-square-mark,ol.is-style-vk-default,ol.is-style-vk-arrow-mark,ol.is-style-vk-triangle-mark,ol.is-style-vk-check-mark,ol.is-style-vk-check-circle-mark,ol.is-style-vk-check-square-mark,ol.is-style-vk-handpoint-mark,ol.is-style-vk-pencil-mark,ol.is-style-vk-smile-mark,ol.is-style-vk-frown-mark,ol.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-square-mark{-webkit-padding-start:2em;padding-inline-start:2em}ul.is-style-vk-default li,ul.is-style-vk-arrow-mark li,ul.is-style-vk-triangle-mark li,ul.is-style-vk-check-mark li,ul.is-style-vk-check-circle-mark li,ul.is-style-vk-check-square-mark li,ul.is-style-vk-handpoint-mark li,ul.is-style-vk-pencil-mark li,ul.is-style-vk-smile-mark li,ul.is-style-vk-frown-mark li,ul.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-default li,ol.is-style-vk-arrow-mark li,ol.is-style-vk-triangle-mark li,ol.is-style-vk-check-mark li,ol.is-style-vk-check-circle-mark li,ol.is-style-vk-check-square-mark li,ol.is-style-vk-handpoint-mark li,ol.is-style-vk-pencil-mark li,ol.is-style-vk-smile-mark li,ol.is-style-vk-frown-mark li,ol.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-square-mark li{list-style:none;position:relative;margin-bottom:0.8em;line-height:1.65em}ul.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-circle-mark li:before,ol.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;border-radius:50%;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center}ul.is-style-vk-numbered-square-mark,ol.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-numbered-square-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-square-mark li:before,ol.is-style-vk-numbered-square-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center;border-radius:2px}ul.is-style-vk-numbered-circle-mark.fa-lg li::before,ul.is-style-vk-numbered-square-mark.fa-lg li::before,ol.is-style-vk-numbered-circle-mark.fa-lg li::before,ol.is-style-vk-numbered-square-mark.fa-lg li::before{left:-0.8em}ul.is-style-vk-numbered-circle-mark.fa-2x li,ul.is-style-vk-numbered-square-mark.fa-2x li,ol.is-style-vk-numbered-circle-mark.fa-2x li,ol.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-2x li::before,ul.is-style-vk-numbered-square-mark.fa-2x li::before,ol.is-style-vk-numbered-circle-mark.fa-2x li::before,ol.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}ul.is-style-vk-numbered-circle-mark.fa-3x li,ul.is-style-vk-numbered-square-mark.fa-3x li,ol.is-style-vk-numbered-circle-mark.fa-3x li,ol.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-3x li::before,ul.is-style-vk-numbered-square-mark.fa-3x li::before,ol.is-style-vk-numbered-circle-mark.fa-3x li::before,ol.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}ul.is-style-vk-numbered-circle-mark.fa-4x li,ul.is-style-vk-numbered-square-mark.fa-4x li,ol.is-style-vk-numbered-circle-mark.fa-4x li,ol.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-4x li::before,ul.is-style-vk-numbered-square-mark.fa-4x li::before,ol.is-style-vk-numbered-circle-mark.fa-4x li::before,ol.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}ul.is-style-vk-numbered-circle-mark.fa-5x li,ul.is-style-vk-numbered-square-mark.fa-5x li,ol.is-style-vk-numbered-circle-mark.fa-5x li,ol.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-5x li::before,ul.is-style-vk-numbered-square-mark.fa-5x li::before,ol.is-style-vk-numbered-circle-mark.fa-5x li::before,ol.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-arrow-mark li::before,ol.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-triangle-mark li::before,ol.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-mark li::before,ol.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-circle-mark li::before,ol.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-square-mark li::before,ol.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-handpoint-mark li::before,ol.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-pencil-mark li::before,ol.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-smile-mark li::before,ol.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-frown-mark li::before,ol.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.vk-has-pale-pink-color li::before,ol.vk-has-pale-pink-color li::before{color:#f78da7}ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#ffffff;background-color:#f78da7}ul.vk-has-vivid-red-color li::before,ol.vk-has-vivid-red-color li::before{color:#cf2e2e}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#ffffff;background-color:#cf2e2e}ul.vk-has-luminous-vivid-orange-color li::before,ol.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#ffffff;background-color:#ff6900}ul.vk-has-luminous-vivid-amber-color li::before,ol.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#ffffff;background-color:#fcb900}ul.vk-has-light-green-cyan-color li::before,ol.vk-has-light-green-cyan-color li::before{color:#7bdcb5}ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#ffffff;background-color:#7bdcb5}ul.vk-has-vivid-green-cyan-color li::before,ol.vk-has-vivid-green-cyan-color li::before{color:#00d084}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#ffffff;background-color:#00d084}ul.vk-has-pale-cyan-blue-color li::before,ol.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#ffffff;background-color:#8ed1fc}ul.vk-has-vivid-cyan-blue-color li::before,ol.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#ffffff;background-color:#0693e3}ul.vk-has-vivid-purple-color li::before,ol.vk-has-vivid-purple-color li::before{color:#9b51e0}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#ffffff;background-color:#9b51e0}ul.vk-has-very-light-gray-color li::before,ol.vk-has-very-light-gray-color li::before{color:#eee}ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#ffffff;background-color:#eee}ul.vk-has-cyan-bluish-gray-color li::before,ol.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#ffffff;background-color:#abb8c3}ul.vk-has-very-dark-gray-color li::before,ol.vk-has-very-dark-gray-color li::before{color:#313131}ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#ffffff;background-color:#313131}.wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid h2,.wp-block-group.is-style-vk-group-solid h3,.wp-block-group.is-style-vk-group-solid h4,.wp-block-group.is-style-vk-group-solid h5,.wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid ul,.wp-block-group.is-style-vk-group-solid ol{margin-top:0}.wp-block-group.is-style-vk-group-solid ul li:last-child,.wp-block-group.is-style-vk-group-solid ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid-roundcorner h2,.wp-block-group.is-style-vk-group-solid-roundcorner h3,.wp-block-group.is-style-vk-group-solid-roundcorner h4,.wp-block-group.is-style-vk-group-solid-roundcorner h5,.wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid-roundcorner ul,.wp-block-group.is-style-vk-group-solid-roundcorner ol{margin-top:0}.wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child,.wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dotted h2,.wp-block-group.is-style-vk-group-dotted h3,.wp-block-group.is-style-vk-group-dotted h4,.wp-block-group.is-style-vk-group-dotted h5,.wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dotted ul,.wp-block-group.is-style-vk-group-dotted ol{margin-top:0}.wp-block-group.is-style-vk-group-dotted ul li:last-child,.wp-block-group.is-style-vk-group-dotted ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dashed h2,.wp-block-group.is-style-vk-group-dashed h3,.wp-block-group.is-style-vk-group-dashed h4,.wp-block-group.is-style-vk-group-dashed h5,.wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dashed ul,.wp-block-group.is-style-vk-group-dashed ol{margin-top:0}.wp-block-group.is-style-vk-group-dashed ul li:last-child,.wp-block-group.is-style-vk-group-dashed ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-double h2,.wp-block-group.is-style-vk-group-double h3,.wp-block-group.is-style-vk-group-double h4,.wp-block-group.is-style-vk-group-double h5,.wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-double ul,.wp-block-group.is-style-vk-group-double ol{margin-top:0}.wp-block-group.is-style-vk-group-double ul li:last-child,.wp-block-group.is-style-vk-group-double ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:0.5em;border-radius:8px}.wp-block-group.is-style-vk-group-stitch h2,.wp-block-group.is-style-vk-group-stitch h3,.wp-block-group.is-style-vk-group-stitch h4,.wp-block-group.is-style-vk-group-stitch h5,.wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-stitch ul,.wp-block-group.is-style-vk-group-stitch ol{margin-top:0}.wp-block-group.is-style-vk-group-stitch ul li:last-child,.wp-block-group.is-style-vk-group-stitch ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.wp-block-group.is-style-vk-group-top-bottom-border h2,.wp-block-group.is-style-vk-group-top-bottom-border h3,.wp-block-group.is-style-vk-group-top-bottom-border h4,.wp-block-group.is-style-vk-group-top-bottom-border h5,.wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-top-bottom-border ul,.wp-block-group.is-style-vk-group-top-bottom-border ol{margin-top:0}.wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child,.wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-shadow h2,.wp-block-group.is-style-vk-group-shadow h3,.wp-block-group.is-style-vk-group-shadow h4,.wp-block-group.is-style-vk-group-shadow h5,.wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-shadow ul,.wp-block-group.is-style-vk-group-shadow ol{margin-top:0}.wp-block-group.is-style-vk-group-shadow ul li:last-child,.wp-block-group.is-style-vk-group-shadow ol li:last-child{margin-bottom:0}.wp-block-group h3:first-child,.wp-block-group h4:first-child{margin-top:0}.wp-block-group p:last-child,.wp-block-group ul:last-child,.wp-block-group ol:last-child,.wp-block-group dl:last-child,.wp-block-group table:last-child,.wp-block-group .wp-block-columns:last-child{margin-bottom:0}.wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}
|
20 |
+
|
21 |
.vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width: 576px){.vk_prContent{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_prContent .col-sm-6{width:50%}.vk_prContent-layout-imageLeft{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.vk_prContent_colTxt{vertical-align:top}.vk_prContent_colTxt_title{background-color:transparent;font-weight:bold;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:0.8em}@media (max-width: 575.98px){.vk_prContent_colTxt_title:first-child{margin-top:30px}}.vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width: 992px){.vk_prContent_colTxt_btn.btn{font-size:16px}}.vk_prContent_colImg_image{max-width:100%;height:auto}.vk_prContent_colImg .components-button.button{margin:1em}.vk_prContent_colImg .components-button.image-button{margin:0}
|
22 |
|
23 |
@media (max-width: 575.98px){.vk_table-col-mobile1 th,.vk_table-col-mobile1 td{display:block}.vk_table-col-mobile1 th{background-color:rgba(0,0,0,0.05)}.vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.vk_simpleTable-edit .editor-inner-blocks,.vk_simpleTable-edit .editor-block-list__layout,.vk_simpleTable-edit .editor-block-list__block,.vk_simpleTable-edit .editor-rich-text__editable,.vk_simpleTable-edit .editor-block-list__block-edit{padding:0;margin:0;width:100%}.vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.vk_simpleTable-edit .editor-block-list__block-edit:before{right:-0px;left:-0px;top:-0px;bottom:-0px}.vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_simpleTable-edit .editor-inner-blocks th,.vk_simpleTable-edit .editor-inner-blocks td{padding:0;display:block;width:100%;border:none}.vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable,.vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable{padding:14px}.vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}
|
inc/vk-blocks/package/build/block-build.js
CHANGED
@@ -11,10 +11,9 @@
|
|
11 |
*
|
12 |
* This source code is licensed under the MIT license found in the
|
13 |
* LICENSE file in the root directory of this source tree.
|
14 |
-
*/var o=n(3),r="function"==typeof Symbol&&Symbol.for,a=r?Symbol.for("react.element"):60103,l=r?Symbol.for("react.portal"):60106,c=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,m=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.forward_ref"):60112,f=r?Symbol.for("react.suspense"):60113;r&&Symbol.for("react.suspense_list");var b=r?Symbol.for("react.memo"):60115,k=r?Symbol.for("react.lazy"):60116;r&&Symbol.for("react.fundamental"),r&&Symbol.for("react.responder"),r&&Symbol.for("react.scope");var v="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var _={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function d(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||_}function h(){}function E(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||_}d.prototype.isReactComponent={},d.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(g(85));this.updater.enqueueSetState(this,e,t,"setState")},d.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},h.prototype=d.prototype;var C=E.prototype=new h;C.constructor=E,o(C,d.prototype),C.isPureReactComponent=!0;var w={current:null},N={current:null},x=Object.prototype.hasOwnProperty,
|
15 |
/*
|
16 |
object-assign
|
17 |
(c) Sindre Sorhus
|
18 |
@license MIT
|
19 |
-
*/var o=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function l(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,c,i=l(e),s=1;s<arguments.length;s++){for(var u in n=Object(arguments[s]))r.call(n,u)&&(i[u]=n[u]);if(o){c=o(n);for(var m=0;m<c.length;m++)a.call(n,c[m])&&(i[c[m]]=n[c[m]])}}return i}},function(e,t){var n=wp.i18n.__,o=wp.blocks.registerBlockType,r=wp.components,a=(r.RangeControl,r.RadioControl),l=r.PanelBody,c=r.Button,i=wp.element.Fragment,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.RichText,m=s.InspectorControls,p=s.MediaUpload,f=s.ColorPalette,b=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M544 450.583c0 22.75 13.014 42.454 32 52.092v7.969c-5.313 0.727-10.736 1.112-16.25 1.112-34.004 0-64.674-14.264-86.361-37.132-13.111 3.491-27.001 5.376-41.389 5.376-79.529 0-144-57.308-144-128s64.471-128 144-128c79.529 0 144 57.308 144 128 0 27.674-9.882 53.296-26.678 74.233-3.412 7.412-5.322 15.656-5.322 24.35zM115.339 110.593c-33.107 26.899-51.339 61.492-51.339 97.407 0 20.149 5.594 39.689 16.626 58.075 11.376 18.96 28.491 36.293 49.494 50.126 15.178 9.996 25.39 25.974 28.088 43.947 0.9 5.992 1.464 12.044 1.685 18.062 3.735-3.097 7.375-6.423 10.94-9.988 12.077-12.076 28.39-18.745 45.251-18.745 2.684 0 5.381 0.168 8.078 0.512 10.474 1.331 21.172 2.008 31.797 2.010v64c-13.564-0.001-26.877-0.869-39.871-2.521-54.989 54.989-120.625 64.85-184.088 66.298v-13.458c34.268-16.789 64-47.37 64-82.318 0-4.877-0.379-9.665-1.082-14.348-57.898-38.132-94.918-96.377-94.918-161.652 0-114.875 114.615-208 256-208 139.229 0 252.496 90.307 255.918 202.76-20.548-9.158-42.92-14.711-66.131-16.289-5.765-28.034-22.701-54.408-49.126-75.878-17.661-14.349-38.458-25.695-61.814-33.722-24.853-8.54-51.38-12.871-78.847-12.871s-53.994 4.331-78.847 12.871c-23.356 8.027-44.153 19.372-61.814 33.722z"}));o("vk-blocks/balloon",{title:n("Ballon","vk-blocks"),icon:b,category:"vk-blocks-cat",attributes:{content:{source:"html",selector:"p"},balloonName:{source:"html",selector:"figcaption"},balloonType:{type:"string",default:"type-serif"},balloonBgColor:{type:"string"},balloonAlign:{type:"string",default:"position-left"},IconImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,o=e.className,r=e.setAttributes,s=t.content,b=t.balloonName,k=t.balloonType,v=t.balloonBgColor,g=t.balloonAlign,_=t.IconImage;return React.createElement(i,null,React.createElement(m,null,React.createElement(l,{title:n("Balloon setting","vk-blocks")},React.createElement(a,{label:n("Position","vk-blocks"),help:n("Please specify the layout of the balloon.","vk-blocks"),selected:g,options:[{label:n("Left","vk-blocks"),value:"position-left"},{label:n("Right","vk-blocks"),value:"position-right"}],onChange:function(e){return r({balloonAlign:e})}}),React.createElement(a,{label:n("Type","vk-blocks"),help:n("Please select the type of balloon.","vk-blocks"),selected:k,options:[{label:n("Serif","vk-blocks"),value:"type-serif"},{label:n("Thinking","vk-blocks"),value:"type-think"}],onChange:function(e){return r({balloonType:e})}}),React.createElement(f,{value:v,onChange:function(e){return r({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(o," vk_balloon vk_balloon-").concat(g," vk_balloon-").concat(k)},React.createElement("div",{className:"vk_balloon_icon"},function(e){if(e&&-1===e.indexOf("{"))return React.createElement(p,{onSelect:function(e){return r({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:e,render:function(t){var o=t.open;return React.createElement(c,{onClick:o,className:e?"image-button":"button button-large"},e?React.createElement("img",{className:"vk_balloon_icon_image",src:e,alt:""}):n("Select image","vk-blocks"))}});var t=JSON.parse(e);return React.createElement(p,{onSelect:function(e){return r({IconImage:JSON.stringify(e)})},type:"image",className:"vk_balloon_icon_image",value:e,render:function(o){var r=o.open;return React.createElement(c,{onClick:r,className:e?"image-button":"button button-large"},e?React.createElement("img",{className:"vk_balloon_icon_image",src:t.sizes.full.url,alt:t.alt}):n("Select image","vk-blocks"))}})}(_),React.createElement(u,{tagName:"figcaption",className:"vk_balloon_icon_name",onChange:function(e){return r({balloonName:e})},value:b,placeholder:n("Icon Name","vk-blocks")})),React.createElement(u,{style:{background:v,border:v},tagName:"p",className:"vk_balloon_content",onChange:function(e){return r({content:e})},value:s,placeholder:n("Input text","vk-blocks")})))},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.balloonName,r=t.balloonType,a=t.balloonBgColor,l=t.balloonAlign,c=t.IconImage;return React.createElement("div",{className:"vk_balloon vk_balloon-".concat(l," vk_balloon-").concat(r)},React.createElement("div",{className:"vk_balloon_icon"},c?React.createElement("figure",null,-1===c.indexOf("{")?React.createElement("img",{className:"vk_balloon_icon_image",src:c,alt:""}):React.createElement("img",{className:"vk_balloon_icon_image",src:JSON.parse(c).sizes.full.url,alt:JSON.parse(c).alt}),React.createElement(u.Content,{tagName:"figcaption",className:"vk_balloon_icon_name",value:o})):""),React.createElement(u.Content,{className:"vk_balloon_content",style:{background:a,border:a},tagName:"p",value:n}))}})},function(e,t){var n=wp.i18n.__;wp.blocks.registerBlockStyle("core/image",[{name:"vk-image-border",label:n("Border","vk-blocks")},{name:"vk-image-photoFrame",label:n("Photo frame","vk-blocks")}])},function(e,t,n){"use strict";n.r(t);var o=function(e){switch(e){case"#f78da7":return"vk-has-pale-pink-color";case"#cf2e2e":return"vk-has-vivid-red-color";case"#ff6900":return"vk-has-luminous-vivid-orange-color";case"#fcb900":return"vk-has-luminous-vivid-amber-color";case"#7bdcb5":return"vk-has-light-green-cyan-color";case"#00d084":return"vk-has-vivid-green-cyan-color";case"#8ed1fc":return"vk-has-pale-cyan-blue-color";case"#0693e3":return"vk-has-vivid-cyan-blue-color";case"#9b51e0":return"vk-has-vivid-purple-color";case"#eee":return"vk-has-very-light-gray-color";case"#abb8c3":return"vk-has-cyan-bluish-gray-color";case"#313131":return"vk-has-very-dark-gray-color"}},r=lodash.assign,a=wp.i18n.__,l=wp.element.Fragment,c=wp.hooks.addFilter,i=wp.components.PanelBody,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.InspectorControls,m=s.ColorPalette,p=wp.compose.createHigherOrderComponent,f=function(e){return["core/group"].includes(e)};c("blocks.registerBlockType","vk-blocks/group-style",(function(e){return f(e.name)&&(e.attributes=r(e.attributes,{color:{type:"string"}})),e})),c("editor.BlockEdit","vk-blocks/group-style",p((function(e){var t="";return function(n){return f(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(l,null,React.createElement(e,n),React.createElement(u,null,React.createElement(i,{title:a("Border Color","vk-blocks"),initialOpen:!1,className:"group-border-color-controle"},React.createElement(m,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/group",[{name:"vk-group-solid",label:a("Solid","vk-blocks")},{name:"vk-group-solid-roundcorner",label:a("Solid Roundcorner","vk-blocks")},{name:"vk-group-dotted",label:a("Dotted","vk-blocks")},{name:"vk-group-dashed",label:a("Dashed","vk-blocks")},{name:"vk-group-double",label:a("Double","vk-blocks")},{name:"vk-group-stitch",label:a("Stitch","vk-blocks")},{name:"vk-group-top-bottom-border",label:a("Border Top Bottom","vk-blocks")},{name:"vk-group-shadow",label:a("Shadow","vk-blocks")}]);var b=lodash.assign,k=wp.i18n.__,v=wp.element.Fragment,g=wp.hooks.addFilter,_=wp.components.PanelBody,y=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,d=y.InspectorControls,h=y.ColorPalette,E=wp.compose.createHigherOrderComponent,C=function(e){return["core/list"].includes(e)};function w(e,t){var n=e.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i),o=null;return n&&(o=n.slice(1,4).map((function(e){return parseInt(e,16)}))),(n=e.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(o=n.slice(1,4).map((function(e){return 17*parseInt(e,16)}))),o?"rgba(".concat(o[0],", ").concat(o[1],", ").concat(o[2],", ").concat(t,")"):null}g("blocks.registerBlockType","vk-blocks/list-style",(function(e){return C(e.name)&&(e.attributes=b(e.attributes,{color:{type:"string"}})),e})),g("editor.BlockEdit","vk-blocks/list-style",E((function(e){var t="";return function(n){return C(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(v,null,React.createElement(e,n),React.createElement(d,null,React.createElement(_,{title:k("List Icon Color","vk-blocks"),initialOpen:!1,className:"list-color-controle"},React.createElement(h,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/list",[{name:"vk-default",label:k("Default","vk-blocks"),isDefault:!0},{name:"vk-arrow-mark",label:k("Arrow","vk-blocks")},{name:"vk-triangle-mark",label:k("Triangle","vk-blocks")},{name:"vk-check-mark",label:k("Check","vk-blocks")},{name:"vk-check-square-mark",label:k("Check Square","vk-blocks")},{name:"vk-check-circle-mark",label:k("Check Circle","vk-blocks")},{name:"vk-handpoint-mark",label:k("Handpoint","vk-blocks")},{name:"vk-pencil-mark",label:k("Pencil","vk-blocks")},{name:"vk-smile-mark",label:k("Smile","vk-blocks")},{name:"vk-frown-mark",label:k("Frown","vk-blocks")},{name:"vk-numbered-circle-mark",label:k("Numbered Circle","vk-blocks")},{name:"vk-numbered-square-mark",label:k("Numbered Square","vk-blocks")}]);var N=wp.i18n.__,x=window.wp.richText,S=x.registerFormatType,B=x.toggleFormat,T=x.applyFormat,O=x.removeFormat,I=x.getActiveFormat,A=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,R=A.RichTextToolbarButton,j=A.RichTextShortcut,P=A.InspectorControls,z=A.PanelColorSettings,M=(A.getColorObjectByColorValue,wp.element.Fragment),F="vk-blocks/highlighter",L=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M26.9,462.2l104.7,39.6l34-34l-73.2-73.2L26.9,462.2z M146.5,231.8c-10.3,9.1-14.4,23.4-10.4,36.6l12.5,41.1l-48.9,48.9 L201,459.6l48.8-48.8l41,12.6c13.2,4,27.5,0,36.6-10.3l27.3-29.1L175.5,204.6L146.5,231.8L146.5,231.8z M533.7,122.3L437,25.7 C417.4,6,385.8,5,364.9,23.4L201,186.6l171.8,171.8l163.1-163.9C554.3,173.6,553.3,142,533.7,122.3L533.7,122.3z"}));S(F,{title:N("Highlighter","vk-blocks"),tagName:"span",className:"vk_highlighter",attributes:{data:"data-color",style:"style"},edit:function(e){var t,n=e.value,o=e.isActive,r=e.onChange;if(o){var a=I(n,F);t=a.attributes.data}var l=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(B(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}))};return React.createElement(M,null,React.createElement(P,null,React.createElement(z,{title:N("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?T(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}):O(n,F))},label:N("Highlight Color","vk-blocks")}]})),React.createElement(j,{type:"primary",character:"h",onUse:function(){return l(t)}}),React.createElement(R,{icon:L,title:N("Highlighter","vk-blocks"),onClick:function(){return l(t)},isActive:o,shortcutType:"primary",shortcutCharacter:"h"}))}});var U=n(0),H=n.n(U);function V(e){return(V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function D(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function $(e,t){return!t||"object"!==V(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function q(e){return(q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function J(e,t){return(J=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var W=wp.i18n.__,Y=wp.editor,G=Y.RichText,Q=Y.MediaUpload,K=wp.components.Button,X=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),$(this,q(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&J(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.vk_staff_text_name,n=e.vk_staff_text_caption,o=e.vk_staff_text_role,r=e.vk_staff_text_profileTitle,a=e.vk_staff_text_profileText,l=e.vk_staff_photo_image,c=e.vk_staff_photo_image_alt,i=e.vk_staff_layout,s=e.vk_staff_nameColor,u=e.vk_staff_captionColor,m=e.vk_staff_positionColor,p=e.vk_staff_profileTitleColor,f=e.vk_staff_profileTextColor,b=e.vk_staff_photoBorder,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_="";return"edit"===g?_=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(G,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:W("Your Name","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:W("Caption","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_role",style:{color:m},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:W("Role position","vk-blocks")}),H.a.createElement(G,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:W("Profile title","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},onChange:function(e){return k({vk_staff_text_profileText:e})},value:a,placeholder:W("Profile text","vk-blocks")})),H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement(Q,{onSelect:function(e){return k({vk_staff_photo_image:e.sizes.full.url})},type:"image",className:"vk_staff_photo_image",value:l,render:function(e){var t=e.open;return H.a.createElement(K,{onClick:t,className:l?"image-button":"button button-large"},l?H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:W(c,"vk-blocks")}):W("Select image","vk-blocks"))}}))):"save"===g&&(_=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(G.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:m},value:o}),H.a.createElement(G.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},value:r}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},value:a})),l?H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:c?W(c,"vk-blocks"):""})):"")),_}}])&&D(n.prototype,o),r&&D(n,r),t}(H.a.Component),Z=wp.i18n.__,ee=wp.blocks.registerBlockType,te=wp.components,ne=te.TextControl,oe=te.PanelBody,re=te.BaseControl,ae=te.SelectControl,le=wp.element.Fragment,ce=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ie=ce.InspectorControls,se=ce.ColorPalette,ue=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("path",{d:"M528,34H48C21.5,34,0,55.5,0,82v352c0,26.5,21.5,48,48,48h480c26.5,0,48-21.5,48-48V82C576,55.5,554.5,34,528,34z M528,434 H48V82h480V434z"}),H.a.createElement("path",{d:"M407.6,241.9c30.9,0,55.9-25.1,55.9-55.9S438.5,130,407.6,130s-55.9,25.1-55.9,55.9S376.8,241.9,407.6,241.9z"}),H.a.createElement("path",{d:"M329.3,353.8h156.6c10.8,0,19.6-7.5,19.6-16.8v-16.8c0-27.8-26.3-50.3-58.7-50.3c-9.4,0-16.3,7-39.2,7 c-23.5,0-29.2-7-39.2-7c-32.4,0-58.7,22.6-58.7,50.3V337C309.7,346.2,318.5,353.8,329.3,353.8z"}),H.a.createElement("path",{d:"M96.2,395h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4C89,391.7,92.3,395,96.2,395 z"}),H.a.createElement("path",{d:"M96.2,339.2h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2V332 C89,336,92.3,339.2,96.2,339.2z"}),H.a.createElement("path",{d:"M96.2,283.4h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4 C89,280.2,92.3,283.4,96.2,283.4z"}),H.a.createElement("path",{d:"M92.9,219.1h166.3c2.1,0,3.9-1.8,3.9-3.9v-7.8c0-2.1-1.8-3.9-3.9-3.9H92.9c-2.1,0-3.9,1.8-3.9,3.9v7.8 C89,217.4,90.8,219.1,92.9,219.1z"}),H.a.createElement("path",{d:"M99.7,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H99.7c-5.9,0-10.7,4.8-10.7,10.7v21.4 C89,172.8,93.8,177.6,99.7,177.6z"}),H.a.createElement("path",{d:"M157,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H157c-5.9,0-10.7,4.8-10.7,10.7v21.4 C146.3,172.8,151.1,177.6,157,177.6z"}),H.a.createElement("path",{d:"M214.2,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C203.5,172.8,208.4,177.6,214.2,177.6z"}),H.a.createElement("path",{d:"M271.5,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C260.8,172.8,265.6,177.6,271.5,177.6z"}));ee("vk-blocks/staff",{title:Z("Staff","vk-blocks"),icon:ue,category:"vk-blocks-cat",attributes:{vk_staff_text_name:{type:"string",source:"html",selector:"h3"},vk_staff_text_caption:{type:"string",source:"html",selector:"p.vk_staff_text_caption"},vk_staff_text_role:{type:"string",source:"html",selector:"p.vk_staff_text_role"},vk_staff_text_profileTitle:{type:"string",source:"html",selector:"h4"},vk_staff_text_profileText:{type:"string",source:"html",selector:"p.vk_staff_text_profileText"},vk_staff_photo_image:{type:"string",default:""},vk_staff_photo_image_alt:{type:"string",default:"Profile Picture"},vk_staff_layout:{type:"string",default:"default"},vk_staff_nameColor:{type:"string",default:"inherit"},vk_staff_captionColor:{type:"string",default:"inherit"},vk_staff_positionColor:{type:"string",default:"inherit"},vk_staff_profileTitleColor:{type:"string",default:"inherit"},vk_staff_profileTextColor:{type:"string",default:"inherit"},vk_staff_photoBorder:{type:"string",default:"default"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.vk_staff_photo_image_alt,a=t.vk_staff_layout,l=t.vk_staff_nameColor,c=t.vk_staff_captionColor,i=t.vk_staff_positionColor,s=t.vk_staff_profileTitleColor,u=t.vk_staff_profileTextColor,m=t.vk_staff_photoBorder;return H.a.createElement(le,null,H.a.createElement(ie,null,H.a.createElement(oe,{title:Z("Layout","vk-blocks")},H.a.createElement(ae,{value:a,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"imageLeft",label:Z("Image left","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Image border","vk-blocks")},H.a.createElement(ae,{value:m,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"none",label:Z("None","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Alt text","vk-blocks")},H.a.createElement(re,{help:Z("Set the alt text for profile image","vk-blocks")},H.a.createElement(ne,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),H.a.createElement(oe,{title:Z("Color","vk-blocks")},H.a.createElement(re,{label:Z("Staff name","vk-blocks")},H.a.createElement(se,{value:l,onChange:function(e){return n({vk_staff_nameColor:e})}})),H.a.createElement(re,{label:Z("Name caption","vk-blocks")},H.a.createElement(se,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),H.a.createElement(re,{label:Z("Role position","vk-blocks")},H.a.createElement(se,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),H.a.createElement(re,{label:Z("Profile title","vk-blocks")},H.a.createElement(se,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),H.a.createElement(re,{label:Z("Profile text","vk-blocks")},H.a.createElement(se,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),H.a.createElement(X,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return H.a.createElement(X,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var me=n(1),pe=n.n(me);function fe(e){return(fe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function be(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function ke(e,t){return!t||"object"!==fe(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function ve(e){return(ve=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ge(e,t){return(ge=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var _e=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),ke(this,ve(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ge(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.anchor,n=e.unit,o=e.pc,r=e.tablet,a=e.mobile,l=this.props.className;return H.a.createElement("div",{id:t,className:pe()("vk_spacer",l)},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:o+n}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:r+n}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:a+n}}))}}])&&be(n.prototype,o),r&&be(n,r),t}(H.a.Component);function ye(e){return(ye="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function de(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function he(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Ee(e,t,n){return t&&he(e.prototype,t),n&&he(e,n),e}function Ce(e,t){return!t||"object"!==ye(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function we(e){return(we=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ne(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&xe(e,t)}function xe(e,t){return(xe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Se=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile;return H.a.createElement("div",{className:"vk_spacer"},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Be=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile,a=this.props.className;return H.a.createElement("div",{className:"".concat(a," vk_spacer")},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Te={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},Oe=(wp.editor.RichText,[{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Be,{attributes:t})}},{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Se,{attributes:t})}}]),Ie=wp.i18n.__,Ae=wp.blocks.registerBlockType,Re=wp.components,je=Re.RangeControl,Pe=Re.PanelBody,ze=Re.BaseControl,Me=Re.SelectControl,Fe=wp.element.Fragment,Le=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Ue=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("rect",{x:"108.8",y:"18.7",width:"358.5",height:"40"}),H.a.createElement("rect",{x:"108.8",y:"453.3",width:"358.5",height:"40"}),H.a.createElement("polygon",{points:"171.4,253.2 131.4,253.2 131.4,412.6 290.8,412.6 290.8,372.6 199.7,372.6 404.6,167.7 404.6,258.8 444.6,258.8 444.6,99.4 285.2,99.4 285.2,139.4 376.3,139.4 171.4,344.3 \t"})));Ae("vk-blocks/spacer",{title:Ie("Responsive Spacer","vk-blocks"),icon:Ue,category:"vk-blocks-cat-layout",attributes:{anchor:{type:"string",default:null},unit:{type:"string",default:"px"},pc:{type:"number",default:40},tablet:{type:"number",default:30},mobile:{type:"number",default:20}},supports:{className:!1,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=(t.anchor,t.unit),a=t.pc,l=t.tablet,c=t.mobile;return H.a.createElement(Fe,null,H.a.createElement(Le,null,H.a.createElement(Pe,null,H.a.createElement(Me,{label:Ie("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:Ie("px","vk-blocks")},{value:"em",label:Ie("em","vk-blocks")},{value:"rem",label:Ie("rem","vk-blocks")},{value:"vw",label:Ie("vw","vk-blocks")}]}),H.a.createElement(ze,{label:Ie("Height for each device.","vk-blocks")},H.a.createElement(je,{label:Ie("PC","vk-blocks"),value:a,onChange:function(e){return n({pc:e})},step:.1}),H.a.createElement(je,{label:Ie("Tablet","vk-blocks"),value:l,onChange:function(e){return n({tablet:e})},step:.1}),H.a.createElement(je,{label:Ie("Mobile","vk-blocks"),value:c,onChange:function(e){return n({mobile:e})},step:.1})))),H.a.createElement(_e,{attributes:t,className:o}))},save:function(e){var t=e.attributes;return H.a.createElement(_e,{attributes:t})},deprecated:Oe});function He(e){return(He="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ve(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function De(e,t){return!t||"object"!==He(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function $e(e){return($e=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function qe(e,t){return(qe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Je=window.lodash.range,We=wp.i18n,Ye=We.__,Ge=We.sprintf,Qe=wp.element.Component,Ke=wp.components.Toolbar,Xe=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),De(this,$e(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qe(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){return{icon:"heading",title:Ge(Ye("Heading %d"),e),isActive:e===t,onClick:function(){return n(e)},subscript:String(e)}}},{key:"render",value:function(){var e=this,t=this.props,n=t.minLevel,o=t.maxLevel,r=t.selectedLevel,a=t.onChange;return H.a.createElement(Ke,{controls:Je(n,o).map((function(t){return e.createLevelControl(t,r,a)}))})}}])&&Ve(n.prototype,o),r&&Ve(n,r),t}(Qe);function Ze(e){return(Ze="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function et(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function tt(e,t){return!t||"object"!==Ze(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function nt(e){return(nt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ot(e,t){return(ot=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rt=wp.editor.RichText,at=wp.i18n.__,lt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tt(this,nt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ot(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,a=n.title,l=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,m=n.subTextSize,p=n.titleStyle,f=n.titleMarginBottom,b=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_=pe()(v,"vk_heading vk_heading-style-".concat(p)),y="h"+o;return null!=b&&(e={marginBottom:b+"rem"}),t=null!=f?{color:l,fontSize:c+"rem",marginBottom:f+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},"edit"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:at("Input sub text…","vk-blocks")})}()):"save"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt.Content,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:at("Input sub text…","vk-blocks")})}()):void 0}}])&&et(n.prototype,o),r&&et(n,r),t}(H.a.Component);function ct(e){throw new Error('"'+e+'" is read-only')}var it=wp.element.Fragment,st=wp.editor,ut=st.RichText;st.InspectorControls,st.ColorPalette,st.BlockControls,st.AlignmentToolbar;var mt=[{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number"},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number"},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}())}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("article",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(g||(ct("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(_||(ct("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:f?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(y||(ct("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number",default:null},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement(it,null,null==f?H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m)},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()):H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()))}}],pt=wp.i18n.__,ft=wp.blocks.registerBlockType,bt=wp.components,kt=bt.RangeControl,vt=bt.PanelBody,gt=bt.RadioControl,_t=bt.SelectControl,yt=wp.element.Fragment,dt=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ht=dt.InspectorControls,Et=dt.ColorPalette,Ct=dt.BlockControls,wt=dt.AlignmentToolbar,Nt=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("path",{d:"M242.1,366.7l0-281.4l-212.6,0l0-77.1l516.6,0v77.1l-213.2,0l0,281.4H242.1z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M33,467.3l30.8-1.9c0.7,5,2,8.8,4.1,11.4c3.3,4.2,8.1,6.4,14.3,6.4c4.6,0,8.2-1.1,10.7-3.3c2.5-2.2,3.8-4.7,3.8-7.5 c0-2.7-1.2-5.1-3.6-7.3c-2.4-2.1-7.9-4.2-16.6-6.1c-14.2-3.2-24.3-7.4-30.4-12.7c-6.1-5.3-9.1-12-9.1-20.2 c0-5.4,1.6-10.5,4.7-15.3c3.1-4.8,7.8-8.6,14.1-11.3c6.3-2.7,14.8-4.1,25.8-4.1c13.4,0,23.6,2.5,30.6,7.5c7,5,11.2,12.9,12.5,23.8 l-30.5,1.8c-0.8-4.7-2.5-8.1-5.1-10.3c-2.6-2.1-6.2-3.2-10.8-3.2c-3.8,0-6.6,0.8-8.5,2.4c-1.9,1.6-2.9,3.5-2.9,5.8 c0,1.7,0.8,3.2,2.4,4.5c1.5,1.4,5.1,2.7,10.9,3.9c14.1,3,24.3,6.1,30.4,9.3c6.1,3.1,10.6,7,13.4,11.6c2.8,4.6,4.2,9.8,4.2,15.5 c0,6.7-1.9,12.9-5.6,18.6c-3.7,5.7-8.9,10-15.6,12.9c-6.7,2.9-15.1,4.4-25.2,4.4c-17.8,0-30.2-3.4-37-10.3 C37.8,486.6,33.9,477.8,33,467.3z"}),H.a.createElement("path",{d:"M215,501.9h-27.2v-12.3c-4,5-8.1,8.6-12.3,10.8c-4.1,2.1-9.2,3.2-15.2,3.2c-8,0-14.3-2.4-18.8-7.2 c-4.5-4.8-6.8-12.2-6.8-22.1V426H164v41.7c0,4.8,0.9,8.1,2.6,10.1c1.8,2,4.2,3,7.4,3c3.5,0,6.3-1.3,8.5-4 c2.2-2.7,3.3-7.5,3.3-14.4V426H215V501.9z"}),H.a.createElement("path",{d:"M225.5,397.2h29.4v36.3c2.9-3,6.2-5.3,9.9-6.9c3.7-1.5,7.8-2.3,12.3-2.3c9.2,0,16.9,3.3,22.9,10 c6.1,6.6,9.1,16.2,9.1,28.6c0,8.3-1.4,15.6-4.1,21.9c-2.8,6.3-6.6,11-11.5,14.1c-4.9,3.1-10.3,4.7-16.3,4.7c-5.1,0-9.8-1.1-14-3.3 c-3.2-1.7-6.7-4.9-10.4-9.6v11.2h-27.2V397.2z M254.6,463.8c0,6.5,1.2,11.3,3.7,14.2c2.5,2.9,5.6,4.4,9.3,4.4 c3.5,0,6.4-1.4,8.8-4.3c2.4-2.9,3.5-7.7,3.5-14.5c0-6-1.2-10.4-3.5-13.2c-2.3-2.8-5.1-4.2-8.4-4.2c-4,0-7.2,1.5-9.7,4.4 C255.9,453.4,254.6,457.8,254.6,463.8z"}),H.a.createElement("path",{d:"M304.4,397.2h98.4V423h-33v78.9h-32.4V423h-33V397.2z"}),H.a.createElement("path",{d:"M395.8,426h34.5l12,21.2l14-21.2h32.1l-25.9,36.2l27.7,39.7h-33.9l-14-24.4l-16.5,24.4h-31.5l27.6-39.7L395.8,426z"}),H.a.createElement("path",{d:"M530.6,397.2V426h16v21.3h-16v26.9c0,3.2,0.3,5.4,0.9,6.4c1,1.6,2.6,2.4,5,2.4c2.1,0,5.1-0.6,9-1.9l2.1,20.1 c-7.2,1.6-13.9,2.4-20.1,2.4c-7.2,0-12.6-0.9-16-2.8c-3.4-1.9-6-4.7-7.6-8.5s-2.5-9.9-2.5-18.4v-26.7h-10.7V426h10.7v-13.9 L530.6,397.2z"}))));ft("vk-blocks/heading",{title:pt("Heading","vk-blocks"),icon:Nt,category:"vk-blocks-cat",attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},supports:{className:!0,customClassName:!0,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.level,a=t.align,l=(t.title,t.titleColor),c=t.titleSize,i=(t.subText,t.subTextFlag),s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b=function(e){switch(n({level:e}),e){case 1:n({titleSize:3.6});break;case 2:n({titleSize:2.8});break;case 3:n({titleSize:2.2});break;case 4:n({titleSize:2});break;case 5:n({titleSize:1.8});break;case 6:n({titleSize:1.6})}};return H.a.createElement(yt,null,H.a.createElement(Ct,null,H.a.createElement(Xe,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:b})),H.a.createElement(ht,null,H.a.createElement(vt,{title:pt("Style Settings","vk-blocks")},H.a.createElement(_t,{label:pt("Heading style","vk-blocks"),value:m,onChange:function(e){return n({titleStyle:e})},options:[{label:pt("Default","vk-blocks"),value:"default"},{label:pt("Plain","vk-blocks"),value:"plain"}]}),H.a.createElement("label",null,pt("Margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:f,onChange:function(e){n({outerMarginBottom:e})},min:-1,max:8,step:.1})),H.a.createElement(vt,{title:pt("Heading Settings","vk-blocks")},H.a.createElement("label",null,pt("Level","vk-blocks")),H.a.createElement(Xe,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:b}),H.a.createElement("p",null,pt("Text Alignment")),H.a.createElement(wt,{value:a,onChange:function(e){n({align:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:c,onChange:function(e){n({titleSize:e})},min:.5,max:4,step:.1}),H.a.createElement("label",null,pt("Heading margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:p,onChange:function(e){n({titleMarginBottom:e})},min:-1,max:3,step:.1}),H.a.createElement(Et,{value:l,onChange:function(e){return n({titleColor:e})}})),H.a.createElement(vt,{title:pt("Sub Text Settings","vk-blocks")},H.a.createElement(gt,{label:pt("Position","vk-blocks"),selected:i,options:[{label:pt("Display","vk-blocks"),value:"on"},{label:pt("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:u,onChange:function(e){n({subTextSize:e})},min:.5,max:3,step:.1}),H.a.createElement(Et,{value:s,onChange:function(e){return n({subTextColor:e})}}))),H.a.createElement(lt,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(lt,{attributes:t,className:n,for_:"save"})},deprecated:mt});var xt=wp.editor.RichText,St=[{attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},save:function(e){var t=e.attributes,n=t.style,o=t.content;return H.a.createElement("div",{className:"alert alert-".concat(n)},H.a.createElement(xt.Content,{tagName:"p",value:o}))}}],Bt=wp.i18n.__,Tt=wp.blocks.registerBlockType,Ot=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText;Tt("vk-blocks/alert",{title:Bt("Alert","vk-blocks"),icon:"info",category:"vk-blocks-cat",attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.style,a=t.content;return React.createElement("div",{className:"".concat(o," alert alert-").concat(r)},React.createElement("select",{onChange:function(e){n({style:e.target.value})}},React.createElement("option",{value:"success",selected:"success"===r},"Success"),React.createElement("option",{value:"info",selected:"info"===r},"Info"),React.createElement("option",{value:"warning",selected:"warning"===r},"Warning"),React.createElement("option",{value:"danger",selected:"danger"===r},"Danger")),React.createElement(Ot,{tagName:"p",onChange:function(e){n({content:e})},value:a}))},save:function(e){var t=e.attributes,n=e.className,o=t.style,r=t.content;return React.createElement("div",{className:"".concat(n," alert alert-").concat(o)},React.createElement(Ot.Content,{tagName:"p",value:r}))},deprecated:St});n(4);function It(e){return(It="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function At(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Rt(e,t){return!t||"object"!==It(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function jt(e){return(jt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Pt(e,t){return(Pt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Rt(this,jt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",style:p,className:m,role:"button","aria-pressed":!0,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&At(n.prototype,o),r&&At(n,r),t}(H.a.Component);function Mt(e){return(Mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ft(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Lt(e,t){return!t||"object"!==Mt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Ut(e){return(Ut=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ht(e,t){return(Ht=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lt(this,Ut(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",f="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,f)}}])&&Ft(n.prototype,o),r&&Ft(n,r),t}(H.a.Component);function Dt(e){return(Dt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function $t(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function qt(e,t){return!t||"object"!==Dt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Jt(e){return(Jt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Wt(e,t){return(Wt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Yt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),qt(this,Jt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Wt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",f="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,f)}}])&&$t(n.prototype,o),r&&$t(n,r),t}(H.a.Component);function Gt(e){return(Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Qt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Kt(e,t){return!t||"object"!==Gt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Xt(e){return(Xt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Zt(e,t){return(Zt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var en=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Kt(this,Xt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Zt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&Qt(n.prototype,o),r&&Qt(n,r),t}(H.a.Component);function tn(e){return(tn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function nn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function on(e,t){return!t||"object"!==tn(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function rn(e){return(rn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function an(e,t){return(an=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ln=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),on(this,rn(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&an(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&nn(n.prototype,o),r&&nn(n,r),t}(H.a.Component),cn=wp.editor.RichText,sn=[{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(Vt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(Yt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(en,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(ln,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],un=wp.i18n.__,mn=wp.blocks.registerBlockType,pn=wp.components,fn=pn.RadioControl,bn=pn.PanelBody,kn=pn.BaseControl,vn=pn.CheckboxControl,gn=pn.TextControl,_n=pn.Dashicon,yn=pn.IconButton,dn=wp.element.Fragment,hn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,En=hn.RichText,Cn=hn.InspectorControls,wn=hn.ColorPalette,Nn=hn.URLInput,xn=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M506,185v142H70V185H506 M526.4,137H49.6C34.4,137,22,149.4,22,164.6v182.8c0,15.2,12.4,27.6,27.6,27.6h476.8 c15.2,0,27.6-12.4,27.6-27.6V164.6C554,149.4,541.6,137,526.4,137L526.4,137z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M83.8,206.9h55.9c9.3,0,16.5,2.3,21.5,6.9c5,4.6,7.5,10.3,7.5,17.1c0,5.7-1.8,10.6-5.3,14.7c-2.4,2.7-5.8,4.9-10.4,6.5 c6.9,1.7,12.1,4.5,15.3,8.6c3.3,4.1,4.9,9.2,4.9,15.3c0,5-1.2,9.5-3.5,13.5c-2.3,4-5.5,7.2-9.6,9.5c-2.5,1.5-6.3,2.5-11.3,3.2 c-6.7,0.9-11.2,1.3-13.4,1.3H83.8V206.9z M113.9,244.8h13c4.7,0,7.9-0.8,9.7-2.4c1.8-1.6,2.7-3.9,2.7-7c0-2.8-0.9-5-2.7-6.6 c-1.8-1.6-5-2.4-9.5-2.4h-13.2V244.8z M113.9,282.8h15.2c5.1,0,8.8-0.9,10.9-2.7s3.2-4.3,3.2-7.4c0-2.9-1-5.2-3.1-6.9 c-2.1-1.7-5.7-2.6-11-2.6h-15.2V282.8z"}),H.a.createElement("path",{d:"M245.9,303.5h-25.1v-11.3c-3.7,4.7-7.5,8-11.3,10c-3.8,2-8.5,3-14,3c-7.4,0-13.2-2.2-17.4-6.6c-4.2-4.4-6.3-11.2-6.3-20.4 v-44.6h27V272c0,4.4,0.8,7.5,2.4,9.4c1.6,1.8,3.9,2.8,6.9,2.8c3.2,0,5.8-1.2,7.9-3.7s3.1-6.9,3.1-13.3v-33.7h26.8V303.5z"}),H.a.createElement("path",{d:"M282.4,206.9v26.6h14.8v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L282.4,206.9z"}),H.a.createElement("path",{d:"M330.2,206.9v26.6H345v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L330.2,206.9z"}),H.a.createElement("path",{d:"M339.6,268.7c0-10.7,3.6-19.5,10.8-26.4s16.9-10.4,29.2-10.4c14,0,24.6,4.1,31.8,12.2c5.8,6.6,8.6,14.6,8.6,24.2 c0,10.8-3.6,19.6-10.7,26.5c-7.1,6.9-17,10.3-29.6,10.3c-11.3,0-20.4-2.9-27.3-8.6C343.9,289.5,339.6,280.2,339.6,268.7z M366.5,268.7c0,6.2,1.3,10.9,3.8,13.8c2.5,3,5.7,4.5,9.5,4.5c3.9,0,7-1.5,9.5-4.4c2.5-2.9,3.7-7.7,3.7-14.2 c0-6.1-1.3-10.6-3.8-13.6s-5.6-4.5-9.3-4.5c-3.9,0-7.1,1.5-9.7,4.5C367.8,257.9,366.5,262.5,366.5,268.7z"}),H.a.createElement("path",{d:"M418.2,233.5h25v11.4c3.7-4.7,7.5-8,11.3-10c3.8-2,8.5-3,14-3c7.4,0,13.2,2.2,17.4,6.6c4.2,4.4,6.3,11.2,6.3,20.5v44.5h-27 V265c0-4.4-0.8-7.5-2.4-9.3c-1.6-1.8-3.9-2.7-6.9-2.7c-3.3,0-5.9,1.2-7.9,3.7c-2,2.5-3,6.9-3,13.3v33.6h-26.8V233.5z"})));mn("vk-blocks/button",{title:un("Button","vk-blocks"),icon:xn,category:"vk-blocks-cat",attributes:{content:{type:"string",source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:"undefined"},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},edit:function(e){var t,n=e.attributes,o=e.className,r=e.setAttributes,a=e.isSelected,l=n.content,c=n.subCaption,i=n.buttonUrl,s=n.buttonTarget,u=n.buttonSize,m=n.buttonType,p=n.buttonColor,f=n.buttonColorCustom,b=n.buttonAlign,k=n.fontAwesomeIconBefore,v=n.fontAwesomeIconAfter;return t=f?"vk_button vk_button-align-".concat(b," vk_button-color-custom"):"vk_button vk_button-align-".concat(b),t=o?"".concat(o," vk_button vk_button-align-").concat(b," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(b),H.a.createElement(dn,null,H.a.createElement(Cn,null,H.a.createElement(bn,{title:un("Button setting","vk-blocks")},H.a.createElement(gn,{label:un("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),H.a.createElement(vn,{label:un("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),H.a.createElement(fn,{label:un("Button Size:","vk-blocks"),selected:u,options:[{label:un("Large","vk-blocks"),value:"lg"},{label:un("normal","vk-blocks"),value:"md"},{label:un("Small","vk-blocks"),value:"sm"}],onChange:function(e){return r({buttonSize:e})}}),H.a.createElement(fn,{label:un("Button Position:","vk-blocks"),selected:b,options:[{label:un("Left","vk-blocks"),value:"left"},{label:un("Center","vk-blocks"),value:"center"},{label:un("Right","vk-blocks"),value:"right"},{label:un("Block","vk-blocks"),value:"block"}],onChange:function(e){return r({buttonAlign:e})}}),H.a.createElement(fn,{label:un("Button Style:","vk-blocks"),selected:m,options:[{label:un("Solid color","vk-blocks"),value:"0"},{label:un("No background","vk-blocks"),value:"1"}],help:un('If you select "No background", that you need to select a Custom Color.',"vk-blocks"),onChange:function(e){return r({buttonType:e})}}),H.a.createElement(fn,{label:un("Default Color:","vk-blocks"),selected:p,options:[{label:un("Primary","vk-blocks"),value:"primary"},{label:un("Secondary","vk-blocks"),value:"secondary"},{label:un("Success","vk-blocks"),value:"success"},{label:un("Info","vk-blocks"),value:"info"},{label:un("Warning","vk-blocks"),value:"warning"},{label:un("Danger","vk-blocks"),value:"danger"},{label:un("Light","vk-blocks"),value:"light"},{label:un("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),H.a.createElement(kn,{label:un("Custom Color","vk-blocks"),help:un("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},H.a.createElement(wn,{value:f,onChange:function(e){return r({buttonColorCustom:e})}})),H.a.createElement(kn,{label:un("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},un("Font Awesome icon list","vk-blocks"))},H.a.createElement(gn,{label:un("Before text","vk-blocks"),help:un("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:k,onChange:function(e){return r({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(gn,{label:un("After text","vk-blocks"),help:un("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:v,onChange:function(e){return r({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"})))),H.a.createElement("div",{className:t},H.a.createElement(zt,{lbColorCustom:f,lbColor:p,lbType:m,lbAlign:b,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:v,lbsubCaption:c,lbRichtext:H.a.createElement(En,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:l,placeholder:un("Input text","vk-blocks"),formattingControls:["bold","italic","strikethrough"],isSelected:!0})}),a&&H.a.createElement("form",{className:"block-library-button__inline-link",onSubmit:function(e){return e.preventDefault()}},H.a.createElement(_n,{icon:"admin-links"}),H.a.createElement(Nn,{value:i,onChange:function(e){return r({buttonUrl:e})}}),H.a.createElement(yn,{icon:"editor-break",label:un("Apply","vk-blocks"),type:"submit"}))))},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(En.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:sn});var Sn=wp.editor.RichText,Bn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},save:function(e){var t=e.attributes,n=t.heading,o=t.content;return H.a.createElement("dl",{className:"vk_faq"},H.a.createElement(Sn.Content,{tagName:"dt",className:"vk_faq_title",value:n}),H.a.createElement(Sn.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Tn=wp.i18n.__,On=wp.blocks.registerBlockType,In=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText,An=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M178.9,191.6c7.2,5,12,8.2,14.2,9.4c3.3,1.9,7.8,4,13.4,6.5l-16.1,32.4c-8.1-3.9-16.1-8.6-24-14 c-7.9-5.4-13.4-9.5-16.6-12.2c-12.8,5.5-28.8,8.3-48,8.3c-28.4,0-50.9-7.4-67.3-22.2c-19.4-17.5-29.1-42.2-29.1-73.9 c0-30.8,8.5-54.7,25.5-71.8c17-17.1,40.7-25.6,71.2-25.6c31.1,0,55,8.3,71.9,25c16.9,16.7,25.3,40.6,25.3,71.6 C199.3,152.8,192.5,175,178.9,191.6z M134.6,161.9c4.6-8.3,6.9-20.6,6.9-37c0-18.9-3.5-32.4-10.5-40.5c-7-8.1-16.7-12.1-29-12.1 c-11.5,0-20.8,4.1-28,12.4c-7.1,8.3-10.7,21.2-10.7,38.7c0,20.4,3.5,34.8,10.5,43c7,8.3,16.6,12.4,28.7,12.4 c3.9,0,7.6-0.4,11.1-1.1c-4.9-4.7-12.5-9.1-23-13.3l9.1-20.8c5.1,0.9,9.1,2.1,11.9,3.4c2.9,1.4,8.4,4.9,16.7,10.7 C130.1,159.1,132.3,160.5,134.6,161.9z"}),React.createElement("path",{d:"M137.9,452.6H72.2l-9.1,30.9l-59,0l70.3-187.2h63.1l70.3,187.2h-60.6L137.9,452.6z M125.9,412.1l-20.7-67.3l-20.4,67.3 H125.9z"}),React.createElement("path",{d:"M553.9,239.9h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,231.8,563.9,239.9,553.9,239.9z"}),React.createElement("path",{d:"M553.9,483.5h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,475.4,563.9,483.5,553.9,483.5z"}));On("vk-blocks/faq",{title:Tn("FAQ","vk-blocks"),icon:An,category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content;return React.createElement("dl",{className:"".concat(o," vk_faq")},React.createElement(In,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Tn("Please enter a question.","vk-blocks")}),React.createElement(In,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:a,placeholder:Tn("Please enter a answer.","vk-blocks")}))},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content;return React.createElement("dl",{className:"".concat(n," vk_faq")},React.createElement(In.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(In.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:Bn});var Rn=wp.editor.RichText,jn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.heading,o=t.content,r=t.insertImage,a=t.arrowFlag;return H.a.createElement("div",{className:"".concat(a," vk_flow")},H.a.createElement("div",{className:"vk_flow_frame"},H.a.createElement("dl",{className:"vk_flow_frame_text"},H.a.createElement(Rn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),H.a.createElement(Rn.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:o})),r?H.a.createElement("div",{className:"vk_flow_frame_image"},H.a.createElement("img",{src:r,alt:""})):""))}}],Pn=wp.i18n.__,zn=wp.blocks.registerBlockType,Mn=wp.components,Fn=Mn.RadioControl,Ln=Mn.PanelBody,Un=Mn.Button,Hn=wp.element.Fragment,Vn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Dn=Vn.RichText,$n=Vn.InspectorControls,qn=Vn.MediaUpload;function Jn(e){return(Jn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Wn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Yn(e,t){return!t||"object"!==Jn(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Gn(e){return(Gn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Qn(e,t){return(Qn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}zn("vk-blocks/flow",{title:Pn("Flow","vk-blocks"),icon:"arrow-down",category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content,l=t.insertImage,c=t.arrowFlag;return[React.createElement(Hn,null,React.createElement($n,null,React.createElement(Ln,{title:Pn("Display of arrow","vk-blocks")},React.createElement(Fn,{selected:c,options:[{label:Pn("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:Pn("Arrow hidden","vk-blocks"),value:"vk_flow-arrow-off"}],onChange:function(e){return n({arrowFlag:e})}}))),React.createElement("div",{className:"".concat(o," ").concat(c," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Dn,{tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Pn("Input title","vk-blocks")}),React.createElement(Dn,{tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:Pn("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(qn,{onSelect:function(e){return n({insertImage:e.url})},type:"image",className:"vk_flow_frame_image",value:l,render:function(e){var t=e.open;return React.createElement(Un,{onClick:t,className:l?"image-button":"button button-large"},l?React.createElement("img",{className:"icon-image",src:l,alt:Pn("Upload image","vk-blocks")}):Pn("Select image","vk-blocks"))}})))))]},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content,a=t.insertImage,l=t.arrowFlag;return React.createElement("div",{className:"".concat(n," ").concat(l," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Dn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(Dn.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:r})),a?React.createElement("div",{className:"vk_flow_frame_image"},React.createElement("img",{src:a,alt:""})):""))},deprecated:jn});var Kn=wp.i18n.__,Xn=wp.editor.RichText,Zn=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Yn(this,Gn(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Qn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,S=this.props.blockNum,B=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=z[B]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[B],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:z[B],alt:""})):(j[B]||(j[B]="#0693e3"),"0"===P[B]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[B],border:"1px solid ".concat(j[B])}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[B]}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:j[B]}})));return"edit"===x?1===S?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:Kn("Input Content","vk-blocks")})):2===S?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:Kn("Input Content","vk-blocks")})):3===S&&(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Kn("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h1",value:T[B]}),F=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[B]})),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[B],target:A[B]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,M,F))}}])&&Wn(n.prototype,o),r&&Wn(n,r),t}(H.a.Component);function eo(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var to=wp.components,no=(to.RadioControl,to.PanelBody,to.Button,to.BaseControl,to.CheckboxControl,to.TextControl,wp.element.Fragment,wp.editor),oo=no.RichText;no.InspectorControls,no.MediaUpload,no.ColorPalette;var ro=[{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h3.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(g||(eo("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(_||(eo("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:f?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(y||(eo("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement(Zn,{attributes:t,blockNum:1,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:2,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:3,for_:"save"}))}}];function ao(e){return(ao="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var lo=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==ao(e)||Array.isArray(e)};function co(e){return(co="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function io(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function so(e,t){return!t||"object"!==co(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function uo(e){return(uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function mo(e,t){return(mo=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var po=wp.i18n.__,fo=wp.editor.RichText,bo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),so(this,uo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&mo(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,S=this.props.blockNum,B=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=function(e){var t=e[B];if(lo(t))return{backgroundImage:"url(".concat(t,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"};var n=JSON.parse(t);return{backgroundImage:"url(".concat(n.sizes.full.url,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},U=z[B]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(lo(e))return H.a.createElement("img",{src:e,alt:""});var t=JSON.parse(e);return H.a.createElement("img",{src:t.sizes.full.url,alt:t.alt})}(z[B])):(j[B]||(j[B]="#0693e3"),"0"===P[B]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[B],border:"1px solid ".concat(j[B])}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[B]}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:j[B]}})));return"edit"===x?1===S?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:po("Input Content","vk-blocks")})):2===S?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:po("Input Content","vk-blocks")})):3===S&&(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:po("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h3",value:T[B]}),F=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[B]})),I[B]&&"save"===x?H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[B],className:"vk_prBlocks_item_link",target:A[B]?"_blank":"_self",rel:"noopener noreferrer"},U,M,F)):H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,M,F)}}])&&io(n.prototype,o),r&&io(n,r),t}(H.a.Component),ko=wp.i18n.__,vo=wp.blocks.registerBlockType,go=wp.components,_o=go.RadioControl,yo=go.PanelBody,ho=go.Button,Eo=go.BaseControl,Co=go.CheckboxControl,wo=go.TextControl,No=wp.element.Fragment,xo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,So=xo.InspectorControls,Bo=xo.MediaUpload,To=xo.ColorPalette,Oo=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("circle",{cx:"288",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"213.5",y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"74.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"501.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"427",y:"278.8",width:"149",height:"107"}))));vo("vk-blocks/pr-blocks",{title:ko("PR Blocks","vk-blocks"),icon:Oo,category:"vk-blocks-cat",attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:".vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),edit:function(e){var t,n=e.attributes,o=e.setAttributes,r=e.className,a=(n.heading1,n.heading2,n.heading3,n.content1,n.content2,n.content3,n.url1),l=n.url2,c=n.url3,i=n.urlOpenType1,s=n.urlOpenType2,u=n.urlOpenType3,m=n.icon1,p=n.icon2,f=n.icon3,b=n.color1,k=n.color2,v=n.color3,g=n.bgType1,_=n.bgType2,y=n.bgType3,d=n.insertImage1,h=n.insertImage2,E=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var C=function(e){if(lo(e))return e?H.a.createElement("img",{className:"icon-image",src:e,alt:ko("Upload image","vk-blocks")}):ko("Select image","vk-blocks");var t=JSON.parse(e);return e?H.a.createElement("img",{className:"icon-image",src:t.sizes.full.url,alt:t.alt}):ko("Select image","vk-blocks")};return[H.a.createElement(No,null,H.a.createElement(So,null,H.a.createElement(yo,{title:ko("PR Block1 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:a,onChange:function(e){return o({url1:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),H.a.createElement(Eo,{label:ko("Icon 1","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:m,onChange:function(e){return o({icon1:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:b,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:g,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),H.a.createElement(Eo,{label:ko("PR Image 1","vk-blocks"),help:ko("When you have an image. Image is displayed with priority","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:d,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:d?"image-button":"button button-large"},C(d))}}))),H.a.createElement(yo,{title:ko("PR Block2 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:l,onChange:function(e){return o({url2:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),H.a.createElement(Eo,{label:ko("Icon 2","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:p,onChange:function(e){return o({icon2:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:_,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),H.a.createElement(Eo,{label:ko("PR Image 2","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(e)?o({insertImage2:e.url}):o({insertImage2:JSON.stringify(e)})},type:"image",value:h,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:h?"image-button":"button button-large"},C(h))}}))),H.a.createElement(yo,{title:ko("PR Block3 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:c,onChange:function(e){return o({url3:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),H.a.createElement(Eo,{label:ko("Icon 3","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:f,onChange:function(e){return o({icon3:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:v,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:y,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),H.a.createElement(Eo,{label:ko("PR Image 3","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(e)?o({insertImage3:e.url}):o({insertImage3:JSON.stringify(e)})},type:"image",value:E,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:E?"image-button":"button button-large"},C(E))}})))),H.a.createElement("div",{className:t},H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:3,for_:"edit"})))]},save:function(e){var t,n=e.attributes,o=e.className;return t=o?"".concat(o," vk_prBlocks row"):"vk_prBlocks row",H.a.createElement("div",{className:t},H.a.createElement(bo,{attributes:n,blockNum:1,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:2,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:3,for_:"save"}))},deprecated:ro});function Io(e){return(Io="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ao(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Ro(e,t){return!t||"object"!==Io(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function jo(e){return(jo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Po(e,t){return(Po=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Ro(this,jo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Po(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&Ao(n.prototype,o),r&&Ao(n,r),t}(H.a.Component);function Mo(e){return(Mo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Fo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Lo(e,t){return!t||"object"!==Mo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Uo(e){return(Uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ho(e,t){return(Ho=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vo=wp.i18n.__,Do=wp.components.Button,$o=wp.editor.MediaUpload,qo=wp.editor.RichText,Jo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lo(this,Uo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ho(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="none";g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=p?"1px solid ".concat(p):"none";var E=function(e){e&&b({Image:JSON.stringify(e)})};return H.a.createElement("div",{className:g},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},function(e){if("edit"===e){if(m&&-1===m.indexOf("{"))return H.a.createElement($o,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(Do,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}}):Vo("Select image","vk-blocks"))}});var t=JSON.parse(m);return H.a.createElement($o,{onSelect:E,type:" image",value:m,render:function(e){var n=e.open;return H.a.createElement(Do,{onClick:n,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:t.sizes.full.url,alt:t.alt,style:{border:h}}):Vo("Select image","vk-blocks"))}})}if("save"===e){if(m){if(m&&-1===m.indexOf("{"))return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(m);return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:n.sizes.full.url,alt:n.alt,style:{border:h}})}return Vo("Select image","vk-blocks")}}(v)),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(qo,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:Vo("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(qo,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:Vo("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(qo.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(qo.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(zo,{attributes:e})))}()))}}])&&Fo(n.prototype,o),r&&Fo(n,r),t}(H.a.Component);function Wo(e){return(Wo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Yo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Go(e,t){return!t||"object"!==Wo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Qo(e){return(Qo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ko(e,t){return(Ko=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Xo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Go(this,Qo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ko(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&Yo(n.prototype,o),r&&Yo(n,r),t}(H.a.Component);function Zo(e){return(Zo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function er(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function tr(e,t){return!t||"object"!==Zo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function nr(e){return(nr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function or(e,t){return(or=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rr=wp.i18n.__,ar=wp.components.Button,lr=wp.editor.MediaUpload,cr=wp.editor.RichText,ir=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tr(this,nr(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&or(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,v="vk_prContent",g="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={};return v="".concat(v,"right"===f?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(g="".concat(g," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===l?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(_="".concat(_," btn-").concat(c),y=null):"1"===l&&(_="".concat(_," btn-outline-").concat(c),y=null)),H.a.createElement("div",{className:v},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?H.a.createElement(lr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(ar,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===k?H.a.createElement(H.a.Fragment,null,H.a.createElement(cr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:rr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(cr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:rr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(cr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(cr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:g},H.a.createElement("a",{href:a,className:_,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&er(n.prototype,o),r&&er(n,r),t}(H.a.Component);function sr(e){return(sr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function ur(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function mr(e,t){return!t||"object"!==sr(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function pr(e){return(pr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function fr(e,t){return(fr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var br=wp.i18n.__,kr=wp.components.Button,vr=wp.editor.MediaUpload,gr=wp.editor.RichText,_r=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),mr(this,pr(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&fr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="";return g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=null==p?"none":"1px solid ".concat(p),H.a.createElement("div",{className:g},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===v?H.a.createElement(vr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(kr,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(gr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:br("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(gr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:br("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(gr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(gr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&ur(n.prototype,o),r&&ur(n,r),t}(H.a.Component),yr=[{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes;e.className;return H.a.createElement(ir,{attributes:t,for_:"save"})}},{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(_r,{attributes:t,className:n,for_:"save"})}}],dr=wp.i18n.__,hr=wp.blocks.registerBlockType,Er=wp.components,Cr=Er.RadioControl,wr=Er.PanelBody,Nr=Er.BaseControl,xr=Er.CheckboxControl,Sr=Er.TextControl,Br=wp.element.Fragment,Tr=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Or=Tr.InspectorControls,Ir=Tr.ColorPalette,Ar=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M291.7,133.3l0,245.3l-273.1,0l0-245.3L291.7,133.3 M307.2,117.8l-304.2,0l0,276.4l304.2,0L307.2,117.8L307.2,117.8z"}),H.a.createElement("path",{d:"M560.7,218.8l-213.1,0c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,213.8,566.8,218.8,560.7,218.8z"}),H.a.createElement("path",{d:"M560.7,265.4l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,260.5,566.8,265.4,560.7,265.4z"}),H.a.createElement("path",{d:"M560.7,312.1l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,307.1,566.8,312.1,560.7,312.1z"}),H.a.createElement("polygon",{points:"278.4,365.4 31.9,365.4 31.9,287.4 113,182.2 184.4,264.4 229.9,226.5 278.4,290.6 \t"}),H.a.createElement("path",{d:"M360.6,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C351.9,137.2,355.8,133.3,360.6,133.3 M360.6,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C384.9,128.7,374,117.8,360.6,117.8L360.6,117.8z"}),H.a.createElement("path",{d:"M423.3,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C414.6,137.2,418.5,133.3,423.3,133.3 M423.3,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2s24.2-10.9,24.2-24.2C447.6,128.7,436.7,117.8,423.3,117.8 L423.3,117.8z"}),H.a.createElement("path",{d:"M486,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C477.3,137.2,481.2,133.3,486,133.3 M486,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C510.2,128.7,499.4,117.8,486,117.8L486,117.8z"}),H.a.createElement("path",{d:"M548.7,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7s-8.7-3.9-8.7-8.7C540,137.2,543.9,133.3,548.7,133.3 M548.7,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C572.9,128.7,562.1,117.8,548.7,117.8L548.7,117.8z"}),H.a.createElement("path",{d:"M566.3,347.6l-224.3,0c-3.1,0-5.6,2.5-5.6,5.6l0,35.5c0,3.1,2.5,5.6,5.6,5.6l224.3,0c3.1,0,5.6-2.5,5.6-5.6v-35.5 C571.8,350.1,569.3,347.6,566.3,347.6z M547.1,379.2v-16.6l9.8,8.3L547.1,379.2z"})));hr("vk-blocks/pr-content",{title:dr("PR Content","vk-blocks"),icon:Ar,category:"vk-blocks-cat",attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},edit:function(e){var t=e.attributes,n=e.className,o=e.setAttributes,r=t.titleColor,a=t.contentColor,l=t.url,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonText,m=t.buttonTarget,p=t.ImageBorderColor,f=t.layout,b=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return H.a.createElement(Br,null,H.a.createElement(Or,null,H.a.createElement(wr,{title:dr("Color Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Title Color","vk-blocks")},H.a.createElement(Ir,{value:r,onChange:function(e){return o({titleColor:e})}})),H.a.createElement(Nr,{label:dr("Content Color","vk-blocks")},H.a.createElement(Ir,{value:a,onChange:function(e){return o({contentColor:e})}})),H.a.createElement(Nr,{label:dr("Image Border Color","vk-blocks")},H.a.createElement(Ir,{value:p,onChange:function(e){return o({ImageBorderColor:e})}}))),H.a.createElement(wr,{title:dr("Button Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Button Text","vk-blocks")},H.a.createElement(Sr,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),H.a.createElement(Nr,{label:dr("Link URL","vk-blocks")},H.a.createElement(Sr,{value:l,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),H.a.createElement(xr,{label:dr("Open link new tab.","vk-blocks"),checked:m,onChange:function(e){return o({buttonTarget:e})}}),H.a.createElement(Nr,{label:dr("Button Type","vk-blocks")},H.a.createElement(Cr,{selected:c,options:[{label:dr("Solid","vk-blocks"),value:"0"},{label:dr("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),H.a.createElement(Cr,{label:dr("Default Color:","vk-blocks"),selected:i,options:[{label:dr("Primary","vk-blocks"),value:"primary"},{label:dr("Secondary","vk-blocks"),value:"secondary"},{label:dr("Success","vk-blocks"),value:"success"},{label:dr("Info","vk-blocks"),value:"info"},{label:dr("Warning","vk-blocks"),value:"warning"},{label:dr("Danger","vk-blocks"),value:"danger"},{label:dr("Light","vk-blocks"),value:"light"},{label:dr("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),H.a.createElement(Nr,{label:dr("Button Color","vk-blocks")},H.a.createElement(Ir,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),H.a.createElement(Nr,{label:dr("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},dr("Font Awesome icon list","vk-blocks"))},H.a.createElement(Sr,{label:dr("Before text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:b,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Sr,{label:dr("After text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:k,onChange:function(e){return o({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"}))),H.a.createElement(wr,{title:dr("Layout Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Cr,{label:dr("Layout Type","vk-blocks"),selected:f,options:[{label:dr("Right","vk-blocks"),value:"right"},{label:dr("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),H.a.createElement(Jo,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Jo,{attributes:t,className:n,for_:"save"})},deprecated:yr});var Rr=lodash.assign,jr=wp.i18n.__,Pr=wp.hooks.addFilter;Pr("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=Rr(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:jr("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:jr("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:jr("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:jr("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:jr("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:jr("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:jr("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:jr("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:jr("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:jr("Brackets black","vk-blocks")}]);n(5)}]);
|
20 |
-
//# sourceMappingURL=block-build.js.map
|
11 |
*
|
12 |
* This source code is licensed under the MIT license found in the
|
13 |
* LICENSE file in the root directory of this source tree.
|
14 |
+
*/var o=n(3),r="function"==typeof Symbol&&Symbol.for,a=r?Symbol.for("react.element"):60103,l=r?Symbol.for("react.portal"):60106,c=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,m=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.forward_ref"):60112,f=r?Symbol.for("react.suspense"):60113;r&&Symbol.for("react.suspense_list");var b=r?Symbol.for("react.memo"):60115,k=r?Symbol.for("react.lazy"):60116;r&&Symbol.for("react.fundamental"),r&&Symbol.for("react.responder"),r&&Symbol.for("react.scope");var v="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var _={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function d(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||_}function h(){}function E(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||_}d.prototype.isReactComponent={},d.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(g(85));this.updater.enqueueSetState(this,e,t,"setState")},d.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},h.prototype=d.prototype;var C=E.prototype=new h;C.constructor=E,o(C,d.prototype),C.isPureReactComponent=!0;var w={current:null},N={current:null},x=Object.prototype.hasOwnProperty,B={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var o,r={},l=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(l=""+t.key),t)x.call(t,o)&&!B.hasOwnProperty(o)&&(r[o]=t[o]);var i=arguments.length-2;if(1===i)r.children=n;else if(1<i){for(var s=Array(i),u=0;u<i;u++)s[u]=arguments[u+2];r.children=s}if(e&&e.defaultProps)for(o in i=e.defaultProps)void 0===r[o]&&(r[o]=i[o]);return{$$typeof:a,type:e,key:l,ref:c,props:r,_owner:N.current}}function T(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var O=/\/+/g,I=[];function A(e,t,n,o){if(I.length){var r=I.pop();return r.result=e,r.keyPrefix=t,r.func=n,r.context=o,r.count=0,r}return{result:e,keyPrefix:t,func:n,context:o,count:0}}function R(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>I.length&&I.push(e)}function j(e,t,n){return null==e?0:function e(t,n,o,r){var c=typeof t;"undefined"!==c&&"boolean"!==c||(t=null);var i=!1;if(null===t)i=!0;else switch(c){case"string":case"number":i=!0;break;case"object":switch(t.$$typeof){case a:case l:i=!0}}if(i)return o(r,t,""===n?"."+P(t,0):n),1;if(i=0,n=""===n?".":n+":",Array.isArray(t))for(var s=0;s<t.length;s++){var u=n+P(c=t[s],s);i+=e(c,u,o,r)}else if(null===t||"object"!=typeof t?u=null:u="function"==typeof(u=v&&t[v]||t["@@iterator"])?u:null,"function"==typeof u)for(t=u.call(t),s=0;!(c=t.next()).done;)i+=e(c=c.value,u=n+P(c,s++),o,r);else if("object"===c)throw o=""+t,Error(g(31,"[object Object]"===o?"object with keys {"+Object.keys(t).join(", ")+"}":o,""));return i}(e,"",t,n)}function P(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function z(e,t){e.func.call(e.context,t,e.count++)}function M(e,t,n){var o=e.result,r=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?F(e,o,n,(function(e){return e})):null!=e&&(T(e)&&(e=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,r+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(O,"$&/")+"/")+n)),o.push(e))}function F(e,t,n,o,r){var a="";null!=n&&(a=(""+n).replace(O,"$&/")+"/"),j(e,M,t=A(t,a,o,r)),R(t)}function L(){var e=w.current;if(null===e)throw Error(g(321));return e}var U={Children:{map:function(e,t,n){if(null==e)return e;var o=[];return F(e,o,null,t,n),o},forEach:function(e,t,n){if(null==e)return e;j(e,z,t=A(null,null,t,n)),R(t)},count:function(e){return j(e,(function(){return null}),null)},toArray:function(e){var t=[];return F(e,t,null,(function(e){return e})),t},only:function(e){if(!T(e))throw Error(g(143));return e}},createRef:function(){return{current:null}},Component:d,PureComponent:E,createContext:function(e,t){return void 0===t&&(t=null),(e={$$typeof:m,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:u,_context:e},e.Consumer=e},forwardRef:function(e){return{$$typeof:p,render:e}},lazy:function(e){return{$$typeof:k,_ctor:e,_status:-1,_result:null}},memo:function(e,t){return{$$typeof:b,type:e,compare:void 0===t?null:t}},useCallback:function(e,t){return L().useCallback(e,t)},useContext:function(e,t){return L().useContext(e,t)},useEffect:function(e,t){return L().useEffect(e,t)},useImperativeHandle:function(e,t,n){return L().useImperativeHandle(e,t,n)},useDebugValue:function(){},useLayoutEffect:function(e,t){return L().useLayoutEffect(e,t)},useMemo:function(e,t){return L().useMemo(e,t)},useReducer:function(e,t,n){return L().useReducer(e,t,n)},useRef:function(e){return L().useRef(e)},useState:function(e){return L().useState(e)},Fragment:c,Profiler:s,StrictMode:i,Suspense:f,createElement:S,cloneElement:function(e,t,n){if(null==e)throw Error(g(267,e));var r=o({},e.props),l=e.key,c=e.ref,i=e._owner;if(null!=t){if(void 0!==t.ref&&(c=t.ref,i=N.current),void 0!==t.key&&(l=""+t.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(u in t)x.call(t,u)&&!B.hasOwnProperty(u)&&(r[u]=void 0===t[u]&&void 0!==s?s[u]:t[u])}var u=arguments.length-2;if(1===u)r.children=n;else if(1<u){s=Array(u);for(var m=0;m<u;m++)s[m]=arguments[m+2];r.children=s}return{$$typeof:a,type:e.type,key:l,ref:c,props:r,_owner:i}},createFactory:function(e){var t=S.bind(null,e);return t.type=e,t},isValidElement:T,version:"16.12.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:w,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:N,IsSomeRendererActing:{current:!1},assign:o}},H={default:U},V=H&&U||H;e.exports=V.default||V},function(e,t,n){"use strict";
|
15 |
/*
|
16 |
object-assign
|
17 |
(c) Sindre Sorhus
|
18 |
@license MIT
|
19 |
+
*/var o=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function l(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,c,i=l(e),s=1;s<arguments.length;s++){for(var u in n=Object(arguments[s]))r.call(n,u)&&(i[u]=n[u]);if(o){c=o(n);for(var m=0;m<c.length;m++)a.call(n,c[m])&&(i[c[m]]=n[c[m]])}}return i}},function(e,t){var n=wp.i18n.__,o=wp.blocks.registerBlockType,r=wp.components,a=(r.RangeControl,r.RadioControl),l=r.PanelBody,c=r.Button,i=wp.element.Fragment,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.RichText,m=s.InspectorControls,p=s.MediaUpload,f=s.ColorPalette,b=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M544 450.583c0 22.75 13.014 42.454 32 52.092v7.969c-5.313 0.727-10.736 1.112-16.25 1.112-34.004 0-64.674-14.264-86.361-37.132-13.111 3.491-27.001 5.376-41.389 5.376-79.529 0-144-57.308-144-128s64.471-128 144-128c79.529 0 144 57.308 144 128 0 27.674-9.882 53.296-26.678 74.233-3.412 7.412-5.322 15.656-5.322 24.35zM115.339 110.593c-33.107 26.899-51.339 61.492-51.339 97.407 0 20.149 5.594 39.689 16.626 58.075 11.376 18.96 28.491 36.293 49.494 50.126 15.178 9.996 25.39 25.974 28.088 43.947 0.9 5.992 1.464 12.044 1.685 18.062 3.735-3.097 7.375-6.423 10.94-9.988 12.077-12.076 28.39-18.745 45.251-18.745 2.684 0 5.381 0.168 8.078 0.512 10.474 1.331 21.172 2.008 31.797 2.010v64c-13.564-0.001-26.877-0.869-39.871-2.521-54.989 54.989-120.625 64.85-184.088 66.298v-13.458c34.268-16.789 64-47.37 64-82.318 0-4.877-0.379-9.665-1.082-14.348-57.898-38.132-94.918-96.377-94.918-161.652 0-114.875 114.615-208 256-208 139.229 0 252.496 90.307 255.918 202.76-20.548-9.158-42.92-14.711-66.131-16.289-5.765-28.034-22.701-54.408-49.126-75.878-17.661-14.349-38.458-25.695-61.814-33.722-24.853-8.54-51.38-12.871-78.847-12.871s-53.994 4.331-78.847 12.871c-23.356 8.027-44.153 19.372-61.814 33.722z"}));o("vk-blocks/balloon",{title:n("Ballon","vk-blocks"),icon:b,category:"vk-blocks-cat",attributes:{content:{source:"html",selector:"p"},balloonName:{source:"html",selector:"figcaption"},balloonType:{type:"string",default:"type-serif"},balloonBgColor:{type:"string"},balloonAlign:{type:"string",default:"position-left"},IconImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,o=e.className,r=e.setAttributes,s=t.content,b=t.balloonName,k=t.balloonType,v=t.balloonBgColor,g=t.balloonAlign,_=t.IconImage;return React.createElement(i,null,React.createElement(m,null,React.createElement(l,{title:n("Balloon setting","vk-blocks")},React.createElement(a,{label:n("Position","vk-blocks"),help:n("Please specify the layout of the balloon.","vk-blocks"),selected:g,options:[{label:n("Left","vk-blocks"),value:"position-left"},{label:n("Right","vk-blocks"),value:"position-right"}],onChange:function(e){return r({balloonAlign:e})}}),React.createElement(a,{label:n("Type","vk-blocks"),help:n("Please select the type of balloon.","vk-blocks"),selected:k,options:[{label:n("Serif","vk-blocks"),value:"type-serif"},{label:n("Thinking","vk-blocks"),value:"type-think"}],onChange:function(e){return r({balloonType:e})}}),React.createElement(f,{value:v,onChange:function(e){return r({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(o," vk_balloon vk_balloon-").concat(g," vk_balloon-").concat(k)},React.createElement("div",{className:"vk_balloon_icon"},React.createElement(p,{onSelect:function(e){return r({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:_,render:function(e){var t=e.open;return React.createElement(c,{onClick:t,className:_?"image-button":"button button-large"},_?React.createElement("img",{className:"vk_balloon_icon_image",src:_,alt:n("Upload image","vk-blocks")}):n("Select image","vk-blocks"))}}),React.createElement(u,{tagName:"figcaption",className:"vk_balloon_icon_name",onChange:function(e){return r({balloonName:e})},value:b,placeholder:n("Icon Name","vk-blocks")})),React.createElement(u,{style:{background:v,border:v},tagName:"p",className:"vk_balloon_content",onChange:function(e){return r({content:e})},value:s,placeholder:n("Input text","vk-blocks")})))},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.balloonName,r=t.balloonType,a=t.balloonBgColor,l=t.balloonAlign,c=t.IconImage;return React.createElement("div",{className:"vk_balloon vk_balloon-".concat(l," vk_balloon-").concat(r)},React.createElement("div",{className:"vk_balloon_icon"},c?React.createElement("figure",null,React.createElement("img",{className:"vk_balloon_icon_image",src:c,alt:""}),React.createElement(u.Content,{tagName:"figcaption",className:"vk_balloon_icon_name",value:o})):""),React.createElement(u.Content,{className:"vk_balloon_content",style:{background:a,border:a},tagName:"p",value:n}))}})},function(e,t){var n=wp.i18n.__;wp.blocks.registerBlockStyle("core/image",[{name:"vk-image-border",label:n("Border","vk-blocks")},{name:"vk-image-photoFrame",label:n("Photo frame","vk-blocks")}])},function(e,t,n){"use strict";n.r(t);var o=function(e){switch(e){case"#f78da7":return"vk-has-pale-pink-color";case"#cf2e2e":return"vk-has-vivid-red-color";case"#ff6900":return"vk-has-luminous-vivid-orange-color";case"#fcb900":return"vk-has-luminous-vivid-amber-color";case"#7bdcb5":return"vk-has-light-green-cyan-color";case"#00d084":return"vk-has-vivid-green-cyan-color";case"#8ed1fc":return"vk-has-pale-cyan-blue-color";case"#0693e3":return"vk-has-vivid-cyan-blue-color";case"#9b51e0":return"vk-has-vivid-purple-color";case"#eee":return"vk-has-very-light-gray-color";case"#abb8c3":return"vk-has-cyan-bluish-gray-color";case"#313131":return"vk-has-very-dark-gray-color"}},r=lodash.assign,a=wp.i18n.__,l=wp.element.Fragment,c=wp.hooks.addFilter,i=wp.components.PanelBody,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.InspectorControls,m=s.ColorPalette,p=wp.compose.createHigherOrderComponent,f=function(e){return["core/group"].includes(e)};c("blocks.registerBlockType","vk-blocks/group-style",(function(e){return f(e.name)&&(e.attributes=r(e.attributes,{color:{type:"string"}})),e})),c("editor.BlockEdit","vk-blocks/group-style",p((function(e){var t="";return function(n){return f(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(l,null,React.createElement(e,n),React.createElement(u,null,React.createElement(i,{title:a("Border Color","vk-blocks"),initialOpen:!1,className:"group-border-color-controle"},React.createElement(m,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/group",[{name:"vk-group-solid",label:a("Solid","vk-blocks")},{name:"vk-group-solid-roundcorner",label:a("Solid Roundcorner","vk-blocks")},{name:"vk-group-dotted",label:a("Dotted","vk-blocks")},{name:"vk-group-dashed",label:a("Dashed","vk-blocks")},{name:"vk-group-double",label:a("Double","vk-blocks")},{name:"vk-group-stitch",label:a("Stitch","vk-blocks")},{name:"vk-group-top-bottom-border",label:a("Border Top Bottom","vk-blocks")},{name:"vk-group-shadow",label:a("Shadow","vk-blocks")}]);var b=lodash.assign,k=wp.i18n.__,v=wp.element.Fragment,g=wp.hooks.addFilter,_=wp.components.PanelBody,y=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,d=y.InspectorControls,h=y.ColorPalette,E=wp.compose.createHigherOrderComponent,C=function(e){return["core/list"].includes(e)};function w(e,t){var n=e.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i),o=null;return n&&(o=n.slice(1,4).map((function(e){return parseInt(e,16)}))),(n=e.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(o=n.slice(1,4).map((function(e){return 17*parseInt(e,16)}))),o?"rgba(".concat(o[0],", ").concat(o[1],", ").concat(o[2],", ").concat(t,")"):null}g("blocks.registerBlockType","vk-blocks/list-style",(function(e){return C(e.name)&&(e.attributes=b(e.attributes,{color:{type:"string"}})),e})),g("editor.BlockEdit","vk-blocks/list-style",E((function(e){var t="";return function(n){return C(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(v,null,React.createElement(e,n),React.createElement(d,null,React.createElement(_,{title:k("List Icon Color","vk-blocks"),initialOpen:!1,className:"list-color-controle"},React.createElement(h,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/list",[{name:"vk-default",label:k("Default","vk-blocks"),isDefault:!0},{name:"vk-arrow-mark",label:k("Arrow","vk-blocks")},{name:"vk-triangle-mark",label:k("Triangle","vk-blocks")},{name:"vk-check-mark",label:k("Check","vk-blocks")},{name:"vk-check-square-mark",label:k("Check Square","vk-blocks")},{name:"vk-check-circle-mark",label:k("Check Circle","vk-blocks")},{name:"vk-handpoint-mark",label:k("Handpoint","vk-blocks")},{name:"vk-pencil-mark",label:k("Pencil","vk-blocks")},{name:"vk-smile-mark",label:k("Smile","vk-blocks")},{name:"vk-frown-mark",label:k("Frown","vk-blocks")},{name:"vk-numbered-circle-mark",label:k("Numbered Circle","vk-blocks")},{name:"vk-numbered-square-mark",label:k("Numbered Square","vk-blocks")}]);var N=wp.i18n.__,x=window.wp.richText,B=x.registerFormatType,S=x.toggleFormat,T=x.applyFormat,O=x.removeFormat,I=x.getActiveFormat,A=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,R=A.RichTextToolbarButton,j=A.RichTextShortcut,P=A.InspectorControls,z=A.PanelColorSettings,M=(A.getColorObjectByColorValue,wp.element.Fragment),F="vk-blocks/highlighter",L=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M26.9,462.2l104.7,39.6l34-34l-73.2-73.2L26.9,462.2z M146.5,231.8c-10.3,9.1-14.4,23.4-10.4,36.6l12.5,41.1l-48.9,48.9 L201,459.6l48.8-48.8l41,12.6c13.2,4,27.5,0,36.6-10.3l27.3-29.1L175.5,204.6L146.5,231.8L146.5,231.8z M533.7,122.3L437,25.7 C417.4,6,385.8,5,364.9,23.4L201,186.6l171.8,171.8l163.1-163.9C554.3,173.6,553.3,142,533.7,122.3L533.7,122.3z"}));B(F,{title:N("Highlighter","vk-blocks"),tagName:"span",className:"vk_highlighter",attributes:{data:"data-color",style:"style"},edit:function(e){var t,n=e.value,o=e.isActive,r=e.onChange;if(o){var a=I(n,F);t=a.attributes.data}var l=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(S(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}))};return React.createElement(M,null,React.createElement(P,null,React.createElement(z,{title:N("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?T(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}):O(n,F))},label:N("Highlight Color","vk-blocks")}]})),React.createElement(j,{type:"primary",character:"h",onUse:function(){return l(t)}}),React.createElement(R,{icon:L,title:N("Highlighter","vk-blocks"),onClick:function(){return l(t)},isActive:o,shortcutType:"primary",shortcutCharacter:"h"}))}});var U=n(0),H=n.n(U);function V(e){return(V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function D(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function $(e,t){return!t||"object"!==V(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function q(e){return(q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function J(e,t){return(J=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var W=wp.i18n.__,Y=wp.editor,G=Y.RichText,Q=Y.MediaUpload,K=wp.components.Button,X=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),$(this,q(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&J(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.vk_staff_text_name,n=e.vk_staff_text_caption,o=e.vk_staff_text_role,r=e.vk_staff_text_profileTitle,a=e.vk_staff_text_profileText,l=e.vk_staff_photo_image,c=e.vk_staff_photo_image_alt,i=e.vk_staff_layout,s=e.vk_staff_nameColor,u=e.vk_staff_captionColor,m=e.vk_staff_positionColor,p=e.vk_staff_profileTitleColor,f=e.vk_staff_profileTextColor,b=e.vk_staff_photoBorder,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_="";return"edit"===g?_=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(G,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:W("Your Name","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:W("Caption","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_role",style:{color:m},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:W("Role position","vk-blocks")}),H.a.createElement(G,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:W("Profile title","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},onChange:function(e){return k({vk_staff_text_profileText:e})},value:a,placeholder:W("Profile text","vk-blocks")})),H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement(Q,{onSelect:function(e){return k({vk_staff_photo_image:e.sizes.full.url})},type:"image",className:"vk_staff_photo_image",value:l,render:function(e){var t=e.open;return H.a.createElement(K,{onClick:t,className:l?"image-button":"button button-large"},l?H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:W(c,"vk-blocks")}):W("Select image","vk-blocks"))}}))):"save"===g&&(_=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(G.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:m},value:o}),H.a.createElement(G.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},value:r}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},value:a})),l?H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:c?W(c,"vk-blocks"):""})):"")),_}}])&&D(n.prototype,o),r&&D(n,r),t}(H.a.Component),Z=wp.i18n.__,ee=wp.blocks.registerBlockType,te=wp.components,ne=te.TextControl,oe=te.PanelBody,re=te.BaseControl,ae=te.SelectControl,le=wp.element.Fragment,ce=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ie=ce.InspectorControls,se=ce.ColorPalette,ue=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("path",{d:"M528,34H48C21.5,34,0,55.5,0,82v352c0,26.5,21.5,48,48,48h480c26.5,0,48-21.5,48-48V82C576,55.5,554.5,34,528,34z M528,434 H48V82h480V434z"}),H.a.createElement("path",{d:"M407.6,241.9c30.9,0,55.9-25.1,55.9-55.9S438.5,130,407.6,130s-55.9,25.1-55.9,55.9S376.8,241.9,407.6,241.9z"}),H.a.createElement("path",{d:"M329.3,353.8h156.6c10.8,0,19.6-7.5,19.6-16.8v-16.8c0-27.8-26.3-50.3-58.7-50.3c-9.4,0-16.3,7-39.2,7 c-23.5,0-29.2-7-39.2-7c-32.4,0-58.7,22.6-58.7,50.3V337C309.7,346.2,318.5,353.8,329.3,353.8z"}),H.a.createElement("path",{d:"M96.2,395h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4C89,391.7,92.3,395,96.2,395 z"}),H.a.createElement("path",{d:"M96.2,339.2h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2V332 C89,336,92.3,339.2,96.2,339.2z"}),H.a.createElement("path",{d:"M96.2,283.4h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4 C89,280.2,92.3,283.4,96.2,283.4z"}),H.a.createElement("path",{d:"M92.9,219.1h166.3c2.1,0,3.9-1.8,3.9-3.9v-7.8c0-2.1-1.8-3.9-3.9-3.9H92.9c-2.1,0-3.9,1.8-3.9,3.9v7.8 C89,217.4,90.8,219.1,92.9,219.1z"}),H.a.createElement("path",{d:"M99.7,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H99.7c-5.9,0-10.7,4.8-10.7,10.7v21.4 C89,172.8,93.8,177.6,99.7,177.6z"}),H.a.createElement("path",{d:"M157,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H157c-5.9,0-10.7,4.8-10.7,10.7v21.4 C146.3,172.8,151.1,177.6,157,177.6z"}),H.a.createElement("path",{d:"M214.2,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C203.5,172.8,208.4,177.6,214.2,177.6z"}),H.a.createElement("path",{d:"M271.5,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C260.8,172.8,265.6,177.6,271.5,177.6z"}));ee("vk-blocks/staff",{title:Z("Staff","vk-blocks"),icon:ue,category:"vk-blocks-cat",attributes:{vk_staff_text_name:{type:"string",source:"html",selector:"h3"},vk_staff_text_caption:{type:"string",source:"html",selector:"p.vk_staff_text_caption"},vk_staff_text_role:{type:"string",source:"html",selector:"p.vk_staff_text_role"},vk_staff_text_profileTitle:{type:"string",source:"html",selector:"h4"},vk_staff_text_profileText:{type:"string",source:"html",selector:"p.vk_staff_text_profileText"},vk_staff_photo_image:{type:"string",default:""},vk_staff_photo_image_alt:{type:"string",default:"Profile Picture"},vk_staff_layout:{type:"string",default:"default"},vk_staff_nameColor:{type:"string",default:"inherit"},vk_staff_captionColor:{type:"string",default:"inherit"},vk_staff_positionColor:{type:"string",default:"inherit"},vk_staff_profileTitleColor:{type:"string",default:"inherit"},vk_staff_profileTextColor:{type:"string",default:"inherit"},vk_staff_photoBorder:{type:"string",default:"default"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.vk_staff_photo_image_alt,a=t.vk_staff_layout,l=t.vk_staff_nameColor,c=t.vk_staff_captionColor,i=t.vk_staff_positionColor,s=t.vk_staff_profileTitleColor,u=t.vk_staff_profileTextColor,m=t.vk_staff_photoBorder;return H.a.createElement(le,null,H.a.createElement(ie,null,H.a.createElement(oe,{title:Z("Layout","vk-blocks")},H.a.createElement(ae,{value:a,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"imageLeft",label:Z("Image left","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Image border","vk-blocks")},H.a.createElement(ae,{value:m,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"none",label:Z("None","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Alt text","vk-blocks")},H.a.createElement(re,{help:Z("Set the alt text for profile image","vk-blocks")},H.a.createElement(ne,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),H.a.createElement(oe,{title:Z("Color","vk-blocks")},H.a.createElement(re,{label:Z("Staff name","vk-blocks")},H.a.createElement(se,{value:l,onChange:function(e){return n({vk_staff_nameColor:e})}})),H.a.createElement(re,{label:Z("Name caption","vk-blocks")},H.a.createElement(se,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),H.a.createElement(re,{label:Z("Role position","vk-blocks")},H.a.createElement(se,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),H.a.createElement(re,{label:Z("Profile title","vk-blocks")},H.a.createElement(se,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),H.a.createElement(re,{label:Z("Profile text","vk-blocks")},H.a.createElement(se,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),H.a.createElement(X,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return H.a.createElement(X,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var me=n(1),pe=n.n(me);function fe(e){return(fe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function be(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function ke(e,t){return!t||"object"!==fe(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function ve(e){return(ve=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ge(e,t){return(ge=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var _e=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),ke(this,ve(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ge(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.anchor,n=e.unit,o=e.pc,r=e.tablet,a=e.mobile,l=this.props.className;return H.a.createElement("div",{id:t,className:pe()("vk_spacer",l)},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:o+n}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:r+n}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:a+n}}))}}])&&be(n.prototype,o),r&&be(n,r),t}(H.a.Component);function ye(e){return(ye="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function de(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function he(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Ee(e,t,n){return t&&he(e.prototype,t),n&&he(e,n),e}function Ce(e,t){return!t||"object"!==ye(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function we(e){return(we=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ne(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&xe(e,t)}function xe(e,t){return(xe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Be=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile;return H.a.createElement("div",{className:"vk_spacer"},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Se=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile,a=this.props.className;return H.a.createElement("div",{className:"".concat(a," vk_spacer")},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Te={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},Oe=(wp.editor.RichText,[{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Se,{attributes:t})}},{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Be,{attributes:t})}}]),Ie=wp.i18n.__,Ae=wp.blocks.registerBlockType,Re=wp.components,je=Re.RangeControl,Pe=Re.PanelBody,ze=Re.BaseControl,Me=Re.SelectControl,Fe=wp.element.Fragment,Le=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Ue=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("rect",{x:"108.8",y:"18.7",width:"358.5",height:"40"}),H.a.createElement("rect",{x:"108.8",y:"453.3",width:"358.5",height:"40"}),H.a.createElement("polygon",{points:"171.4,253.2 131.4,253.2 131.4,412.6 290.8,412.6 290.8,372.6 199.7,372.6 404.6,167.7 404.6,258.8 444.6,258.8 444.6,99.4 285.2,99.4 285.2,139.4 376.3,139.4 171.4,344.3 \t"})));Ae("vk-blocks/spacer",{title:Ie("Responsive Spacer","vk-blocks"),icon:Ue,category:"vk-blocks-cat-layout",attributes:{anchor:{type:"string",default:null},unit:{type:"string",default:"px"},pc:{type:"number",default:40},tablet:{type:"number",default:30},mobile:{type:"number",default:20}},supports:{className:!1,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=(t.anchor,t.unit),a=t.pc,l=t.tablet,c=t.mobile;return H.a.createElement(Fe,null,H.a.createElement(Le,null,H.a.createElement(Pe,null,H.a.createElement(Me,{label:Ie("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:Ie("px","vk-blocks")},{value:"em",label:Ie("em","vk-blocks")},{value:"rem",label:Ie("rem","vk-blocks")},{value:"vw",label:Ie("vw","vk-blocks")}]}),H.a.createElement(ze,{label:Ie("Height for each device.","vk-blocks")},H.a.createElement(je,{label:Ie("PC","vk-blocks"),value:a,onChange:function(e){return n({pc:e})},step:.1}),H.a.createElement(je,{label:Ie("Tablet","vk-blocks"),value:l,onChange:function(e){return n({tablet:e})},step:.1}),H.a.createElement(je,{label:Ie("Mobile","vk-blocks"),value:c,onChange:function(e){return n({mobile:e})},step:.1})))),H.a.createElement(_e,{attributes:t,className:o}))},save:function(e){var t=e.attributes;return H.a.createElement(_e,{attributes:t})},deprecated:Oe});function He(e){return(He="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ve(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function De(e,t){return!t||"object"!==He(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function $e(e){return($e=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function qe(e,t){return(qe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Je=window.lodash.range,We=wp.i18n,Ye=We.__,Ge=We.sprintf,Qe=wp.element.Component,Ke=wp.components.Toolbar,Xe=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),De(this,$e(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qe(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){return{icon:"heading",title:Ge(Ye("Heading %d"),e),isActive:e===t,onClick:function(){return n(e)},subscript:String(e)}}},{key:"render",value:function(){var e=this,t=this.props,n=t.minLevel,o=t.maxLevel,r=t.selectedLevel,a=t.onChange;return H.a.createElement(Ke,{controls:Je(n,o).map((function(t){return e.createLevelControl(t,r,a)}))})}}])&&Ve(n.prototype,o),r&&Ve(n,r),t}(Qe);function Ze(e){return(Ze="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function et(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function tt(e,t){return!t||"object"!==Ze(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function nt(e){return(nt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ot(e,t){return(ot=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rt=wp.editor.RichText,at=wp.i18n.__,lt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tt(this,nt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ot(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,a=n.title,l=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,m=n.subTextSize,p=n.titleStyle,f=n.titleMarginBottom,b=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_=pe()(v,"vk_heading vk_heading-style-".concat(p)),y="h"+o;return null!=b&&(e={marginBottom:b+"rem"}),t=null!=f?{color:l,fontSize:c+"rem",marginBottom:f+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},"edit"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:at("Input sub text…","vk-blocks")})}()):"save"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt.Content,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:at("Input sub text…","vk-blocks")})}()):void 0}}])&&et(n.prototype,o),r&&et(n,r),t}(H.a.Component);function ct(e){throw new Error('"'+e+'" is read-only')}var it=wp.element.Fragment,st=wp.editor,ut=st.RichText;st.InspectorControls,st.ColorPalette,st.BlockControls,st.AlignmentToolbar;var mt=[{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number"},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number"},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}())}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("article",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(g||(ct("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(_||(ct("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:f?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(y||(ct("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number",default:null},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement(it,null,null==f?H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m)},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()):H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()))}}],pt=wp.i18n.__,ft=wp.blocks.registerBlockType,bt=wp.components,kt=bt.RangeControl,vt=bt.PanelBody,gt=bt.RadioControl,_t=bt.SelectControl,yt=wp.element.Fragment,dt=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ht=dt.InspectorControls,Et=dt.ColorPalette,Ct=dt.BlockControls,wt=dt.AlignmentToolbar,Nt=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("path",{d:"M242.1,366.7l0-281.4l-212.6,0l0-77.1l516.6,0v77.1l-213.2,0l0,281.4H242.1z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M33,467.3l30.8-1.9c0.7,5,2,8.8,4.1,11.4c3.3,4.2,8.1,6.4,14.3,6.4c4.6,0,8.2-1.1,10.7-3.3c2.5-2.2,3.8-4.7,3.8-7.5 c0-2.7-1.2-5.1-3.6-7.3c-2.4-2.1-7.9-4.2-16.6-6.1c-14.2-3.2-24.3-7.4-30.4-12.7c-6.1-5.3-9.1-12-9.1-20.2 c0-5.4,1.6-10.5,4.7-15.3c3.1-4.8,7.8-8.6,14.1-11.3c6.3-2.7,14.8-4.1,25.8-4.1c13.4,0,23.6,2.5,30.6,7.5c7,5,11.2,12.9,12.5,23.8 l-30.5,1.8c-0.8-4.7-2.5-8.1-5.1-10.3c-2.6-2.1-6.2-3.2-10.8-3.2c-3.8,0-6.6,0.8-8.5,2.4c-1.9,1.6-2.9,3.5-2.9,5.8 c0,1.7,0.8,3.2,2.4,4.5c1.5,1.4,5.1,2.7,10.9,3.9c14.1,3,24.3,6.1,30.4,9.3c6.1,3.1,10.6,7,13.4,11.6c2.8,4.6,4.2,9.8,4.2,15.5 c0,6.7-1.9,12.9-5.6,18.6c-3.7,5.7-8.9,10-15.6,12.9c-6.7,2.9-15.1,4.4-25.2,4.4c-17.8,0-30.2-3.4-37-10.3 C37.8,486.6,33.9,477.8,33,467.3z"}),H.a.createElement("path",{d:"M215,501.9h-27.2v-12.3c-4,5-8.1,8.6-12.3,10.8c-4.1,2.1-9.2,3.2-15.2,3.2c-8,0-14.3-2.4-18.8-7.2 c-4.5-4.8-6.8-12.2-6.8-22.1V426H164v41.7c0,4.8,0.9,8.1,2.6,10.1c1.8,2,4.2,3,7.4,3c3.5,0,6.3-1.3,8.5-4 c2.2-2.7,3.3-7.5,3.3-14.4V426H215V501.9z"}),H.a.createElement("path",{d:"M225.5,397.2h29.4v36.3c2.9-3,6.2-5.3,9.9-6.9c3.7-1.5,7.8-2.3,12.3-2.3c9.2,0,16.9,3.3,22.9,10 c6.1,6.6,9.1,16.2,9.1,28.6c0,8.3-1.4,15.6-4.1,21.9c-2.8,6.3-6.6,11-11.5,14.1c-4.9,3.1-10.3,4.7-16.3,4.7c-5.1,0-9.8-1.1-14-3.3 c-3.2-1.7-6.7-4.9-10.4-9.6v11.2h-27.2V397.2z M254.6,463.8c0,6.5,1.2,11.3,3.7,14.2c2.5,2.9,5.6,4.4,9.3,4.4 c3.5,0,6.4-1.4,8.8-4.3c2.4-2.9,3.5-7.7,3.5-14.5c0-6-1.2-10.4-3.5-13.2c-2.3-2.8-5.1-4.2-8.4-4.2c-4,0-7.2,1.5-9.7,4.4 C255.9,453.4,254.6,457.8,254.6,463.8z"}),H.a.createElement("path",{d:"M304.4,397.2h98.4V423h-33v78.9h-32.4V423h-33V397.2z"}),H.a.createElement("path",{d:"M395.8,426h34.5l12,21.2l14-21.2h32.1l-25.9,36.2l27.7,39.7h-33.9l-14-24.4l-16.5,24.4h-31.5l27.6-39.7L395.8,426z"}),H.a.createElement("path",{d:"M530.6,397.2V426h16v21.3h-16v26.9c0,3.2,0.3,5.4,0.9,6.4c1,1.6,2.6,2.4,5,2.4c2.1,0,5.1-0.6,9-1.9l2.1,20.1 c-7.2,1.6-13.9,2.4-20.1,2.4c-7.2,0-12.6-0.9-16-2.8c-3.4-1.9-6-4.7-7.6-8.5s-2.5-9.9-2.5-18.4v-26.7h-10.7V426h10.7v-13.9 L530.6,397.2z"}))));ft("vk-blocks/heading",{title:pt("Heading","vk-blocks"),icon:Nt,category:"vk-blocks-cat",attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},supports:{className:!0,customClassName:!0,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.level,a=t.align,l=(t.title,t.titleColor),c=t.titleSize,i=(t.subText,t.subTextFlag),s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,f=t.outerMarginBottom,b=function(e){switch(n({level:e}),e){case 1:n({titleSize:3.6});break;case 2:n({titleSize:2.8});break;case 3:n({titleSize:2.2});break;case 4:n({titleSize:2});break;case 5:n({titleSize:1.8});break;case 6:n({titleSize:1.6})}};return H.a.createElement(yt,null,H.a.createElement(Ct,null,H.a.createElement(Xe,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:b})),H.a.createElement(ht,null,H.a.createElement(vt,{title:pt("Style Settings","vk-blocks")},H.a.createElement(_t,{label:pt("Heading style","vk-blocks"),value:m,onChange:function(e){return n({titleStyle:e})},options:[{label:pt("Default","vk-blocks"),value:"default"},{label:pt("Plain","vk-blocks"),value:"plain"}]}),H.a.createElement("label",null,pt("Margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:f,onChange:function(e){n({outerMarginBottom:e})},min:-1,max:8,step:.1})),H.a.createElement(vt,{title:pt("Heading Settings","vk-blocks")},H.a.createElement("label",null,pt("Level","vk-blocks")),H.a.createElement(Xe,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:b}),H.a.createElement("p",null,pt("Text Alignment")),H.a.createElement(wt,{value:a,onChange:function(e){n({align:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:c,onChange:function(e){n({titleSize:e})},min:.5,max:4,step:.1}),H.a.createElement("label",null,pt("Heading margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:p,onChange:function(e){n({titleMarginBottom:e})},min:-1,max:3,step:.1}),H.a.createElement(Et,{value:l,onChange:function(e){return n({titleColor:e})}})),H.a.createElement(vt,{title:pt("Sub Text Settings","vk-blocks")},H.a.createElement(gt,{label:pt("Position","vk-blocks"),selected:i,options:[{label:pt("Display","vk-blocks"),value:"on"},{label:pt("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:u,onChange:function(e){n({subTextSize:e})},min:.5,max:3,step:.1}),H.a.createElement(Et,{value:s,onChange:function(e){return n({subTextColor:e})}}))),H.a.createElement(lt,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(lt,{attributes:t,className:n,for_:"save"})},deprecated:mt});var xt=wp.editor.RichText,Bt=[{attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},save:function(e){var t=e.attributes,n=t.style,o=t.content;return H.a.createElement("div",{className:"alert alert-".concat(n)},H.a.createElement(xt.Content,{tagName:"p",value:o}))}}],St=wp.i18n.__,Tt=wp.blocks.registerBlockType,Ot=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText;Tt("vk-blocks/alert",{title:St("Alert","vk-blocks"),icon:"info",category:"vk-blocks-cat",attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.style,a=t.content;return React.createElement("div",{className:"".concat(o," alert alert-").concat(r)},React.createElement("select",{onChange:function(e){n({style:e.target.value})}},React.createElement("option",{value:"success",selected:"success"===r},"Success"),React.createElement("option",{value:"info",selected:"info"===r},"Info"),React.createElement("option",{value:"warning",selected:"warning"===r},"Warning"),React.createElement("option",{value:"danger",selected:"danger"===r},"Danger")),React.createElement(Ot,{tagName:"p",onChange:function(e){n({content:e})},value:a}))},save:function(e){var t=e.attributes,n=e.className,o=t.style,r=t.content;return React.createElement("div",{className:"".concat(n," alert alert-").concat(o)},React.createElement(Ot.Content,{tagName:"p",value:r}))},deprecated:Bt});n(4);function It(e){return(It="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function At(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Rt(e,t){return!t||"object"!==It(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function jt(e){return(jt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Pt(e,t){return(Pt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Rt(this,jt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",style:p,className:m,role:"button","aria-pressed":!0,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&At(n.prototype,o),r&&At(n,r),t}(H.a.Component);function Mt(e){return(Mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ft(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Lt(e,t){return!t||"object"!==Mt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Ut(e){return(Ut=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ht(e,t){return(Ht=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lt(this,Ut(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",f="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,f)}}])&&Ft(n.prototype,o),r&&Ft(n,r),t}(H.a.Component);function Dt(e){return(Dt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function $t(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function qt(e,t){return!t||"object"!==Dt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Jt(e){return(Jt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Wt(e,t){return(Wt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Yt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),qt(this,Jt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Wt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",f="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,f)}}])&&$t(n.prototype,o),r&&$t(n,r),t}(H.a.Component);function Gt(e){return(Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Qt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Kt(e,t){return!t||"object"!==Gt(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Xt(e){return(Xt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Zt(e,t){return(Zt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var en=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Kt(this,Xt(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Zt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&Qt(n.prototype,o),r&&Qt(n,r),t}(H.a.Component);function tn(e){return(tn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function nn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function on(e,t){return!t||"object"!==tn(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function rn(e){return(rn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function an(e,t){return(an=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ln=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),on(this,rn(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&an(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},f="",b="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(f=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&nn(n.prototype,o),r&&nn(n,r),t}(H.a.Component),cn=wp.editor.RichText,sn=[{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(Vt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(Yt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(en,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(ln,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],un=wp.i18n.__,mn=wp.blocks.registerBlockType,pn=wp.components,fn=pn.RadioControl,bn=pn.PanelBody,kn=pn.BaseControl,vn=pn.CheckboxControl,gn=pn.TextControl,_n=pn.Dashicon,yn=pn.IconButton,dn=wp.element.Fragment,hn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,En=hn.RichText,Cn=hn.InspectorControls,wn=hn.ColorPalette,Nn=hn.URLInput,xn=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M506,185v142H70V185H506 M526.4,137H49.6C34.4,137,22,149.4,22,164.6v182.8c0,15.2,12.4,27.6,27.6,27.6h476.8 c15.2,0,27.6-12.4,27.6-27.6V164.6C554,149.4,541.6,137,526.4,137L526.4,137z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M83.8,206.9h55.9c9.3,0,16.5,2.3,21.5,6.9c5,4.6,7.5,10.3,7.5,17.1c0,5.7-1.8,10.6-5.3,14.7c-2.4,2.7-5.8,4.9-10.4,6.5 c6.9,1.7,12.1,4.5,15.3,8.6c3.3,4.1,4.9,9.2,4.9,15.3c0,5-1.2,9.5-3.5,13.5c-2.3,4-5.5,7.2-9.6,9.5c-2.5,1.5-6.3,2.5-11.3,3.2 c-6.7,0.9-11.2,1.3-13.4,1.3H83.8V206.9z M113.9,244.8h13c4.7,0,7.9-0.8,9.7-2.4c1.8-1.6,2.7-3.9,2.7-7c0-2.8-0.9-5-2.7-6.6 c-1.8-1.6-5-2.4-9.5-2.4h-13.2V244.8z M113.9,282.8h15.2c5.1,0,8.8-0.9,10.9-2.7s3.2-4.3,3.2-7.4c0-2.9-1-5.2-3.1-6.9 c-2.1-1.7-5.7-2.6-11-2.6h-15.2V282.8z"}),H.a.createElement("path",{d:"M245.9,303.5h-25.1v-11.3c-3.7,4.7-7.5,8-11.3,10c-3.8,2-8.5,3-14,3c-7.4,0-13.2-2.2-17.4-6.6c-4.2-4.4-6.3-11.2-6.3-20.4 v-44.6h27V272c0,4.4,0.8,7.5,2.4,9.4c1.6,1.8,3.9,2.8,6.9,2.8c3.2,0,5.8-1.2,7.9-3.7s3.1-6.9,3.1-13.3v-33.7h26.8V303.5z"}),H.a.createElement("path",{d:"M282.4,206.9v26.6h14.8v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L282.4,206.9z"}),H.a.createElement("path",{d:"M330.2,206.9v26.6H345v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L330.2,206.9z"}),H.a.createElement("path",{d:"M339.6,268.7c0-10.7,3.6-19.5,10.8-26.4s16.9-10.4,29.2-10.4c14,0,24.6,4.1,31.8,12.2c5.8,6.6,8.6,14.6,8.6,24.2 c0,10.8-3.6,19.6-10.7,26.5c-7.1,6.9-17,10.3-29.6,10.3c-11.3,0-20.4-2.9-27.3-8.6C343.9,289.5,339.6,280.2,339.6,268.7z M366.5,268.7c0,6.2,1.3,10.9,3.8,13.8c2.5,3,5.7,4.5,9.5,4.5c3.9,0,7-1.5,9.5-4.4c2.5-2.9,3.7-7.7,3.7-14.2 c0-6.1-1.3-10.6-3.8-13.6s-5.6-4.5-9.3-4.5c-3.9,0-7.1,1.5-9.7,4.5C367.8,257.9,366.5,262.5,366.5,268.7z"}),H.a.createElement("path",{d:"M418.2,233.5h25v11.4c3.7-4.7,7.5-8,11.3-10c3.8-2,8.5-3,14-3c7.4,0,13.2,2.2,17.4,6.6c4.2,4.4,6.3,11.2,6.3,20.5v44.5h-27 V265c0-4.4-0.8-7.5-2.4-9.3c-1.6-1.8-3.9-2.7-6.9-2.7c-3.3,0-5.9,1.2-7.9,3.7c-2,2.5-3,6.9-3,13.3v33.6h-26.8V233.5z"})));mn("vk-blocks/button",{title:un("Button","vk-blocks"),icon:xn,category:"vk-blocks-cat",attributes:{content:{type:"string",source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:"undefined"},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},edit:function(e){var t,n=e.attributes,o=e.className,r=e.setAttributes,a=e.isSelected,l=n.content,c=n.subCaption,i=n.buttonUrl,s=n.buttonTarget,u=n.buttonSize,m=n.buttonType,p=n.buttonColor,f=n.buttonColorCustom,b=n.buttonAlign,k=n.fontAwesomeIconBefore,v=n.fontAwesomeIconAfter;return t=f?"vk_button vk_button-align-".concat(b," vk_button-color-custom"):"vk_button vk_button-align-".concat(b),t=o?"".concat(o," vk_button vk_button-align-").concat(b," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(b),H.a.createElement(dn,null,H.a.createElement(Cn,null,H.a.createElement(bn,{title:un("Button setting","vk-blocks")},H.a.createElement(gn,{label:un("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),H.a.createElement(vn,{label:un("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),H.a.createElement(fn,{label:un("Button Size:","vk-blocks"),selected:u,options:[{label:un("Large","vk-blocks"),value:"lg"},{label:un("normal","vk-blocks"),value:"md"},{label:un("Small","vk-blocks"),value:"sm"}],onChange:function(e){return r({buttonSize:e})}}),H.a.createElement(fn,{label:un("Button Position:","vk-blocks"),selected:b,options:[{label:un("Left","vk-blocks"),value:"left"},{label:un("Center","vk-blocks"),value:"center"},{label:un("Right","vk-blocks"),value:"right"},{label:un("Block","vk-blocks"),value:"block"}],onChange:function(e){return r({buttonAlign:e})}}),H.a.createElement(fn,{label:un("Button Style:","vk-blocks"),selected:m,options:[{label:un("Solid color","vk-blocks"),value:"0"},{label:un("No background","vk-blocks"),value:"1"}],help:un('If you select "No background", that you need to select a Custom Color.',"vk-blocks"),onChange:function(e){return r({buttonType:e})}}),H.a.createElement(fn,{label:un("Default Color:","vk-blocks"),selected:p,options:[{label:un("Primary","vk-blocks"),value:"primary"},{label:un("Secondary","vk-blocks"),value:"secondary"},{label:un("Success","vk-blocks"),value:"success"},{label:un("Info","vk-blocks"),value:"info"},{label:un("Warning","vk-blocks"),value:"warning"},{label:un("Danger","vk-blocks"),value:"danger"},{label:un("Light","vk-blocks"),value:"light"},{label:un("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),H.a.createElement(kn,{label:un("Custom Color","vk-blocks"),help:un("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},H.a.createElement(wn,{value:f,onChange:function(e){return r({buttonColorCustom:e})}})),H.a.createElement(kn,{label:un("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},un("Font Awesome icon list","vk-blocks"))},H.a.createElement(gn,{label:un("Before text","vk-blocks"),help:un("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:k,onChange:function(e){return r({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(gn,{label:un("After text","vk-blocks"),help:un("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:v,onChange:function(e){return r({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"})))),H.a.createElement("div",{className:t},H.a.createElement(zt,{lbColorCustom:f,lbColor:p,lbType:m,lbAlign:b,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:v,lbsubCaption:c,lbRichtext:H.a.createElement(En,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:l,placeholder:un("Input text","vk-blocks"),formattingControls:["bold","italic","strikethrough"],isSelected:!0})}),a&&H.a.createElement("form",{className:"block-library-button__inline-link",onSubmit:function(e){return e.preventDefault()}},H.a.createElement(_n,{icon:"admin-links"}),H.a.createElement(Nn,{value:i,onChange:function(e){return r({buttonUrl:e})}}),H.a.createElement(yn,{icon:"editor-break",label:un("Apply","vk-blocks"),type:"submit"}))))},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(En.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:sn});var Bn=wp.editor.RichText,Sn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},save:function(e){var t=e.attributes,n=t.heading,o=t.content;return H.a.createElement("dl",{className:"vk_faq"},H.a.createElement(Bn.Content,{tagName:"dt",className:"vk_faq_title",value:n}),H.a.createElement(Bn.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Tn=wp.i18n.__,On=wp.blocks.registerBlockType,In=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText,An=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M178.9,191.6c7.2,5,12,8.2,14.2,9.4c3.3,1.9,7.8,4,13.4,6.5l-16.1,32.4c-8.1-3.9-16.1-8.6-24-14 c-7.9-5.4-13.4-9.5-16.6-12.2c-12.8,5.5-28.8,8.3-48,8.3c-28.4,0-50.9-7.4-67.3-22.2c-19.4-17.5-29.1-42.2-29.1-73.9 c0-30.8,8.5-54.7,25.5-71.8c17-17.1,40.7-25.6,71.2-25.6c31.1,0,55,8.3,71.9,25c16.9,16.7,25.3,40.6,25.3,71.6 C199.3,152.8,192.5,175,178.9,191.6z M134.6,161.9c4.6-8.3,6.9-20.6,6.9-37c0-18.9-3.5-32.4-10.5-40.5c-7-8.1-16.7-12.1-29-12.1 c-11.5,0-20.8,4.1-28,12.4c-7.1,8.3-10.7,21.2-10.7,38.7c0,20.4,3.5,34.8,10.5,43c7,8.3,16.6,12.4,28.7,12.4 c3.9,0,7.6-0.4,11.1-1.1c-4.9-4.7-12.5-9.1-23-13.3l9.1-20.8c5.1,0.9,9.1,2.1,11.9,3.4c2.9,1.4,8.4,4.9,16.7,10.7 C130.1,159.1,132.3,160.5,134.6,161.9z"}),React.createElement("path",{d:"M137.9,452.6H72.2l-9.1,30.9l-59,0l70.3-187.2h63.1l70.3,187.2h-60.6L137.9,452.6z M125.9,412.1l-20.7-67.3l-20.4,67.3 H125.9z"}),React.createElement("path",{d:"M553.9,239.9h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,231.8,563.9,239.9,553.9,239.9z"}),React.createElement("path",{d:"M553.9,483.5h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,475.4,563.9,483.5,553.9,483.5z"}));On("vk-blocks/faq",{title:Tn("FAQ","vk-blocks"),icon:An,category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},supports:{anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content;return React.createElement("dl",{className:"".concat(o," vk_faq")},React.createElement(In,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Tn("Please enter a question.","vk-blocks")}),React.createElement(In,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:a,placeholder:Tn("Please enter a answer.","vk-blocks")}))},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content;return React.createElement("dl",{className:"".concat(n," vk_faq")},React.createElement(In.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(In.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:Sn});var Rn=wp.editor.RichText,jn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.heading,o=t.content,r=t.insertImage,a=t.arrowFlag;return H.a.createElement("div",{className:"".concat(a," vk_flow")},H.a.createElement("div",{className:"vk_flow_frame"},H.a.createElement("dl",{className:"vk_flow_frame_text"},H.a.createElement(Rn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),H.a.createElement(Rn.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:o})),r?H.a.createElement("div",{className:"vk_flow_frame_image"},H.a.createElement("img",{src:r,alt:""})):""))}}],Pn=wp.i18n.__,zn=wp.blocks.registerBlockType,Mn=wp.components,Fn=Mn.RadioControl,Ln=Mn.PanelBody,Un=Mn.Button,Hn=wp.element.Fragment,Vn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Dn=Vn.RichText,$n=Vn.InspectorControls,qn=Vn.MediaUpload;function Jn(e){return(Jn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Wn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Yn(e,t){return!t||"object"!==Jn(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Gn(e){return(Gn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Qn(e,t){return(Qn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}zn("vk-blocks/flow",{title:Pn("Flow","vk-blocks"),icon:"arrow-down",category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content,l=t.insertImage,c=t.arrowFlag;return[React.createElement(Hn,null,React.createElement($n,null,React.createElement(Ln,{title:Pn("Display of arrow","vk-blocks")},React.createElement(Fn,{selected:c,options:[{label:Pn("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:Pn("Arrow hidden","vk-blocks"),value:"vk_flow-arrow-off"}],onChange:function(e){return n({arrowFlag:e})}}))),React.createElement("div",{className:"".concat(o," ").concat(c," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Dn,{tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Pn("Input title","vk-blocks")}),React.createElement(Dn,{tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:Pn("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(qn,{onSelect:function(e){return n({insertImage:e.url})},type:"image",className:"vk_flow_frame_image",value:l,render:function(e){var t=e.open;return React.createElement(Un,{onClick:t,className:l?"image-button":"button button-large"},l?React.createElement("img",{className:"icon-image",src:l,alt:Pn("Upload image","vk-blocks")}):Pn("Select image","vk-blocks"))}})))))]},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content,a=t.insertImage,l=t.arrowFlag;return React.createElement("div",{className:"".concat(n," ").concat(l," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Dn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(Dn.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:r})),a?React.createElement("div",{className:"vk_flow_frame_image"},React.createElement("img",{src:a,alt:""})):""))},deprecated:jn});var Kn=wp.i18n.__,Xn=wp.editor.RichText,Zn=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Yn(this,Gn(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Qn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,B=this.props.blockNum,S=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=z[S]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[S],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:z[S],alt:""})):(j[S]||(j[S]="#0693e3"),"0"===P[S]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===x?1===B?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:Kn("Input Content","vk-blocks")})):2===B?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:Kn("Input Content","vk-blocks")})):3===B&&(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Kn("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(B),tagName:"h1",value:T[S]}),F=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(B),tagName:"p",value:O[S]})),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[S],target:A[S]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,M,F))}}])&&Wn(n.prototype,o),r&&Wn(n,r),t}(H.a.Component);function eo(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var to=wp.components,no=(to.RadioControl,to.PanelBody,to.Button,to.BaseControl,to.CheckboxControl,to.TextControl,wp.element.Fragment,wp.editor),oo=no.RichText;no.InspectorControls,no.MediaUpload,no.ColorPalette;var ro=[{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h3.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(g||(eo("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(_||(eo("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:f?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(y||(eo("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement(Zn,{attributes:t,blockNum:1,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:2,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:3,for_:"save"}))}}];function ao(e){return(ao="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var lo=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==ao(e)||Array.isArray(e)};function co(e){return(co="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function io(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function so(e,t){return!t||"object"!==co(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function uo(e){return(uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function mo(e,t){return(mo=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var po=wp.i18n.__,fo=wp.editor.RichText,bo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),so(this,uo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&mo(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,B=this.props.blockNum,S=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=function(e){var t=e[S];if(lo(t))return{backgroundImage:"url(".concat(t,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"};var n=JSON.parse(t);return{backgroundImage:"url(".concat(n.sizes.full.url,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},U=z[S]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(lo(e))return H.a.createElement("img",{src:e,alt:""});var t=JSON.parse(e);return H.a.createElement("img",{src:t.sizes.full.url,alt:t.alt})}(z[S])):(j[S]||(j[S]="#0693e3"),"0"===P[S]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===x?1===B?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:po("Input Content","vk-blocks")})):2===B?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:po("Input Content","vk-blocks")})):3===B&&(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:po("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(B),tagName:"h3",value:T[S]}),F=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(B),tagName:"p",value:O[S]})),I[S]&&"save"===x?H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[S],className:"vk_prBlocks_item_link",target:A[S]?"_blank":"_self",rel:"noopener noreferrer"},U,M,F)):H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,M,F)}}])&&io(n.prototype,o),r&&io(n,r),t}(H.a.Component),ko=wp.i18n.__,vo=wp.blocks.registerBlockType,go=wp.components,_o=go.RadioControl,yo=go.PanelBody,ho=go.Button,Eo=go.BaseControl,Co=go.CheckboxControl,wo=go.TextControl,No=wp.element.Fragment,xo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Bo=xo.InspectorControls,So=xo.MediaUpload,To=xo.ColorPalette,Oo=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("circle",{cx:"288",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"213.5",y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"74.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"501.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"427",y:"278.8",width:"149",height:"107"}))));vo("vk-blocks/pr-blocks",{title:ko("PR Blocks","vk-blocks"),icon:Oo,category:"vk-blocks-cat",attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:".vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),edit:function(e){var t,n=e.attributes,o=e.setAttributes,r=e.className,a=(n.heading1,n.heading2,n.heading3,n.content1,n.content2,n.content3,n.url1),l=n.url2,c=n.url3,i=n.urlOpenType1,s=n.urlOpenType2,u=n.urlOpenType3,m=n.icon1,p=n.icon2,f=n.icon3,b=n.color1,k=n.color2,v=n.color3,g=n.bgType1,_=n.bgType2,y=n.bgType3,d=n.insertImage1,h=n.insertImage2,E=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var C=function(e){if(lo(e))return e?H.a.createElement("img",{className:"icon-image",src:e,alt:ko("Upload image","vk-blocks")}):ko("Select image","vk-blocks");var t=JSON.parse(e);return e?H.a.createElement("img",{className:"icon-image",src:t.sizes.full.url,alt:t.alt}):ko("Select image","vk-blocks")};return[H.a.createElement(No,null,H.a.createElement(Bo,null,H.a.createElement(yo,{title:ko("PR Block1 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:a,onChange:function(e){return o({url1:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),H.a.createElement(Eo,{label:ko("Icon 1","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:m,onChange:function(e){return o({icon1:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:b,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:g,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),H.a.createElement(Eo,{label:ko("PR Image 1","vk-blocks"),help:ko("When you have an image. Image is displayed with priority","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:d,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:d?"image-button":"button button-large"},C(d))}}))),H.a.createElement(yo,{title:ko("PR Block2 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:l,onChange:function(e){return o({url2:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),H.a.createElement(Eo,{label:ko("Icon 2","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:p,onChange:function(e){return o({icon2:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:_,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),H.a.createElement(Eo,{label:ko("PR Image 2","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(e)?o({insertImage2:e.url}):o({insertImage2:JSON.stringify(e)})},type:"image",value:h,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:h?"image-button":"button button-large"},C(h))}}))),H.a.createElement(yo,{title:ko("PR Block3 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:c,onChange:function(e){return o({url3:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),H.a.createElement(Eo,{label:ko("Icon 3","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:f,onChange:function(e){return o({icon3:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:v,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:y,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),H.a.createElement(Eo,{label:ko("PR Image 3","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(e)?o({insertImage3:e.url}):o({insertImage3:JSON.stringify(e)})},type:"image",value:E,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:E?"image-button":"button button-large"},C(E))}})))),H.a.createElement("div",{className:t},H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:3,for_:"edit"})))]},save:function(e){var t,n=e.attributes,o=e.className;return t=o?"".concat(o," vk_prBlocks row"):"vk_prBlocks row",H.a.createElement("div",{className:t},H.a.createElement(bo,{attributes:n,blockNum:1,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:2,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:3,for_:"save"}))},deprecated:ro});function Io(e){return(Io="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ao(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Ro(e,t){return!t||"object"!==Io(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function jo(e){return(jo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Po(e,t){return(Po=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Ro(this,jo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Po(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&Ao(n.prototype,o),r&&Ao(n,r),t}(H.a.Component);function Mo(e){return(Mo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Fo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Lo(e,t){return!t||"object"!==Mo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Uo(e){return(Uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ho(e,t){return(Ho=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vo=wp.i18n.__,Do=wp.components.Button,$o=wp.editor.MediaUpload,qo=wp.editor.RichText,Jo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lo(this,Uo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ho(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="none";g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=p?"1px solid ".concat(p):"none";var E=function(e){e&&b({Image:JSON.stringify(e)})};return H.a.createElement("div",{className:g},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},function(e){if("edit"===e){if(m&&-1===m.indexOf("{"))return H.a.createElement($o,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(Do,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}}):Vo("Select image","vk-blocks"))}});var t=JSON.parse(m);return void 0!==t.sizes?H.a.createElement($o,{onSelect:E,type:" image",value:m,render:function(e){var n=e.open;return H.a.createElement(Do,{onClick:n,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:t.sizes.full.url,alt:t.alt,style:{border:h}}):Vo("Select image","vk-blocks"))}}):H.a.createElement("div",null,Vo("Something wrong with your image. Please insert it again.","vk-blocks"))}if("save"===e){if(m){if(m&&-1===m.indexOf("{"))return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(m);return void 0!==n.sizes?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:n.sizes.full.url,alt:n.alt,style:{border:h}}):""}return Vo("Select image","vk-blocks")}}(v)),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(qo,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:Vo("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(qo,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:Vo("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(qo.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(qo.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(zo,{attributes:e})))}()))}}])&&Fo(n.prototype,o),r&&Fo(n,r),t}(H.a.Component);function Wo(e){return(Wo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Yo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Go(e,t){return!t||"object"!==Wo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function Qo(e){return(Qo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ko(e,t){return(Ko=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Xo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Go(this,Qo(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ko(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&Yo(n.prototype,o),r&&Yo(n,r),t}(H.a.Component);function Zo(e){return(Zo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function er(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function tr(e,t){return!t||"object"!==Zo(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function nr(e){return(nr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function or(e,t){return(or=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rr=wp.i18n.__,ar=wp.components.Button,lr=wp.editor.MediaUpload,cr=wp.editor.RichText,ir=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tr(this,nr(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&or(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,v="vk_prContent",g="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={};return v="".concat(v,"right"===f?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(g="".concat(g," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===l?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(_="".concat(_," btn-").concat(c),y=null):"1"===l&&(_="".concat(_," btn-outline-").concat(c),y=null)),H.a.createElement("div",{className:v},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?H.a.createElement(lr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(ar,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===k?H.a.createElement(H.a.Fragment,null,H.a.createElement(cr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:rr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(cr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:rr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(cr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(cr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:g},H.a.createElement("a",{href:a,className:_,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&er(n.prototype,o),r&&er(n,r),t}(H.a.Component);function sr(e){return(sr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function ur(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function mr(e,t){return!t||"object"!==sr(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function pr(e){return(pr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function fr(e,t){return(fr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var br=wp.i18n.__,kr=wp.components.Button,vr=wp.editor.MediaUpload,gr=wp.editor.RichText,_r=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),mr(this,pr(t).apply(this,arguments))}var n,o,r;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&fr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="";return g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=null==p?"none":"1px solid ".concat(p),H.a.createElement("div",{className:g},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===v?H.a.createElement(vr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(kr,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(gr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:br("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(gr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:br("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(gr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(gr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&ur(n.prototype,o),r&&ur(n,r),t}(H.a.Component),yr=[{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes;e.className;return H.a.createElement(ir,{attributes:t,for_:"save"})}},{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(_r,{attributes:t,className:n,for_:"save"})}}],dr=wp.i18n.__,hr=wp.blocks.registerBlockType,Er=wp.components,Cr=Er.RadioControl,wr=Er.PanelBody,Nr=Er.BaseControl,xr=Er.CheckboxControl,Br=Er.TextControl,Sr=wp.element.Fragment,Tr=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Or=Tr.InspectorControls,Ir=Tr.ColorPalette,Ar=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M291.7,133.3l0,245.3l-273.1,0l0-245.3L291.7,133.3 M307.2,117.8l-304.2,0l0,276.4l304.2,0L307.2,117.8L307.2,117.8z"}),H.a.createElement("path",{d:"M560.7,218.8l-213.1,0c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,213.8,566.8,218.8,560.7,218.8z"}),H.a.createElement("path",{d:"M560.7,265.4l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,260.5,566.8,265.4,560.7,265.4z"}),H.a.createElement("path",{d:"M560.7,312.1l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,307.1,566.8,312.1,560.7,312.1z"}),H.a.createElement("polygon",{points:"278.4,365.4 31.9,365.4 31.9,287.4 113,182.2 184.4,264.4 229.9,226.5 278.4,290.6 \t"}),H.a.createElement("path",{d:"M360.6,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C351.9,137.2,355.8,133.3,360.6,133.3 M360.6,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C384.9,128.7,374,117.8,360.6,117.8L360.6,117.8z"}),H.a.createElement("path",{d:"M423.3,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C414.6,137.2,418.5,133.3,423.3,133.3 M423.3,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2s24.2-10.9,24.2-24.2C447.6,128.7,436.7,117.8,423.3,117.8 L423.3,117.8z"}),H.a.createElement("path",{d:"M486,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C477.3,137.2,481.2,133.3,486,133.3 M486,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C510.2,128.7,499.4,117.8,486,117.8L486,117.8z"}),H.a.createElement("path",{d:"M548.7,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7s-8.7-3.9-8.7-8.7C540,137.2,543.9,133.3,548.7,133.3 M548.7,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C572.9,128.7,562.1,117.8,548.7,117.8L548.7,117.8z"}),H.a.createElement("path",{d:"M566.3,347.6l-224.3,0c-3.1,0-5.6,2.5-5.6,5.6l0,35.5c0,3.1,2.5,5.6,5.6,5.6l224.3,0c3.1,0,5.6-2.5,5.6-5.6v-35.5 C571.8,350.1,569.3,347.6,566.3,347.6z M547.1,379.2v-16.6l9.8,8.3L547.1,379.2z"})));hr("vk-blocks/pr-content",{title:dr("PR Content","vk-blocks"),icon:Ar,category:"vk-blocks-cat",attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},edit:function(e){var t=e.attributes,n=e.className,o=e.setAttributes,r=t.titleColor,a=t.contentColor,l=t.url,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonText,m=t.buttonTarget,p=t.ImageBorderColor,f=t.layout,b=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return H.a.createElement(Sr,null,H.a.createElement(Or,null,H.a.createElement(wr,{title:dr("Color Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Title Color","vk-blocks")},H.a.createElement(Ir,{value:r,onChange:function(e){return o({titleColor:e})}})),H.a.createElement(Nr,{label:dr("Content Color","vk-blocks")},H.a.createElement(Ir,{value:a,onChange:function(e){return o({contentColor:e})}})),H.a.createElement(Nr,{label:dr("Image Border Color","vk-blocks")},H.a.createElement(Ir,{value:p,onChange:function(e){return o({ImageBorderColor:e})}}))),H.a.createElement(wr,{title:dr("Button Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Button Text","vk-blocks")},H.a.createElement(Br,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),H.a.createElement(Nr,{label:dr("Link URL","vk-blocks")},H.a.createElement(Br,{value:l,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),H.a.createElement(xr,{label:dr("Open link new tab.","vk-blocks"),checked:m,onChange:function(e){return o({buttonTarget:e})}}),H.a.createElement(Nr,{label:dr("Button Type","vk-blocks")},H.a.createElement(Cr,{selected:c,options:[{label:dr("Solid","vk-blocks"),value:"0"},{label:dr("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),H.a.createElement(Cr,{label:dr("Default Color:","vk-blocks"),selected:i,options:[{label:dr("Primary","vk-blocks"),value:"primary"},{label:dr("Secondary","vk-blocks"),value:"secondary"},{label:dr("Success","vk-blocks"),value:"success"},{label:dr("Info","vk-blocks"),value:"info"},{label:dr("Warning","vk-blocks"),value:"warning"},{label:dr("Danger","vk-blocks"),value:"danger"},{label:dr("Light","vk-blocks"),value:"light"},{label:dr("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),H.a.createElement(Nr,{label:dr("Button Color","vk-blocks")},H.a.createElement(Ir,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),H.a.createElement(Nr,{label:dr("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},dr("Font Awesome icon list","vk-blocks"))},H.a.createElement(Br,{label:dr("Before text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:b,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Br,{label:dr("After text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:k,onChange:function(e){return o({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"}))),H.a.createElement(wr,{title:dr("Layout Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Cr,{label:dr("Layout Type","vk-blocks"),selected:f,options:[{label:dr("Right","vk-blocks"),value:"right"},{label:dr("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),H.a.createElement(Jo,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Jo,{attributes:t,className:n,for_:"save"})},deprecated:yr});var Rr=lodash.assign,jr=wp.i18n.__,Pr=wp.hooks.addFilter;Pr("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=Rr(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:jr("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:jr("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:jr("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:jr("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:jr("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:jr("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:jr("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:jr("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:jr("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:jr("Brackets black","vk-blocks")}]);n(5)}]);
|
|
inc/vk-blocks/package/build/languages/vk-blocks-ja-vk-blocks-build-js.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"FontAwesome":["Font Awesome:"],"Enter Font Awesome Class. Ex) fas fa-arrow-circle-right ":["Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"
|
1 |
+
{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Align":["表示位置"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"FontAwesome":["Font Awesome:"],"Enter Font Awesome Class. Ex) fas fa-arrow-circle-right ":["Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"Filter by PostTypes":["投稿タイプ"],"Filter by Taxonomy Terms":["分類"],"Number of Posts":["表示件数"],"Exsist Already Page":[""],"Current Page":[""],"Display conditions":["表示条件"],"Parent":["親ページ"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Card ( No border )":["カード(線なし)"],"Display type":["表示タイプ"],"Card":["カード"],"Card Horizontal":["カード(水平)"],"Media":["メディア"],"Term name":["分類名"],"Excerpt":["抜粋"],"Date":["日付"],"New mark":["新着表示"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Left":["左"],"Center":["中央"],"Right":["右"],"Display item":["表示要素"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Card Item":["カードアイテム"],"URL":[""],"https://www.vektor-inc.co.jp/":[""],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":[""],"Title":["タイトルを入力"],"Select image":["画像を選択"],"Child page list":["子ページリスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, clear background color or set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリアするか、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image":["背景画像"],"Upload image":["画像をアップロード"],"Background image Position":["背景画像の位置"],"normal":["標準"],"Fixed":["固定"],"Parallax (It will not work in preview)":["パララックス(編集画面では反映されません)"],"Layout Setting":["レイアウト設定"],"Outer width":["アウターの幅"],"Normal":["標準"],"Full Wide":["全幅"],"Contents area padding (left and right)":["コンテンツエリアの余白 (左右)"],"Do not use padding":["余白なし"],"Use padding":["余白あり"],"Padding (top and bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding (Set it yourself using a spacer block etc.).":["標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Outer":["Outer"],"Post list":["投稿リスト"],"Outlined":["アウトライン"],"Default":["標準"],"Step Item":["ステップ要素"],"Step Mark":["ステップマーク"],"If FontAwesome class entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"Ex,6:00AM":["例) 午前 6:00"],"Color":["色"],"Style":["スタイル"],"First Dot Number":["ステップの開始番号"],"Step":["ステップ"],"Table of Contents":["目次"],"No frame":["枠無し"],"Timeline Item":["タイムライン要素"],"label":["ラベル"],"Timeline":["タイムライン"],"Alert":["アラート"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Serif":["セリフ"],"Thinking":["吹き出し"],"Icon Name":["アイコンの名前"],"Input text":["文字を入力"],"Ballon":["フキダシ"],"Balloon setting":["フキダシ設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Block":["ブロック(全幅)"],"Button Style:":["ボタンスタイル:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Default Color:":["標準色:"],"Primary":["Primary"],"Secondary":["Secondary"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"This custom color overrides the default color. If you want to use the default color, click the clear button.":["このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Font Awesome:":["Font Awesome:"],"Before text":["文字の前"],"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right":["Font Awesome の class 名を入力してください。このアイコンは文字の前に表示されます。 例) fas fa-arrow-circle-right"],"After text":["文字の後"],"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt":["Font Awesome の class 名を入力してください。このアイコンは文字の後に表示されます。 例) fas fa-external-link-alt"],"Apply":[""],"Please enter a answer.":["回答を入力してください。"],"FAQ":["質問と解答"],"Please enter a question.":["質問を入力してください。"],"Flow":["フロー"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Stitch":["スティッチ"],"Border Top Bottom":["直線 上下"],"Shadow":["シャドウ"],"Border Color":["線の色"],"Solid Roundcorner":["直線 角丸"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Plain":["装飾無し"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Style Settings":["スタイル設定"],"Heading style":["見出しスタイル"],"Margin bottom size (rem)":["下部の余白"],"Heading Settings":["見出し設定"],"Level":["レベル"],"Text Alignment":["テキストの水平位置"],"Heading margin bottom size (rem)":["見出し下部の余白 (rem)"],"Sub Text Settings":["サブテキスト設定"],"Display":["表示"],"Hide":["非表示"],"Text size (rem)":["文字サイズ (rem)"],"Heading":["見出し"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading %d":["見出し %d"],"Highlight Color":["ハイライトカラー"],"Highlighter":["蛍光マーカー"],"Photo frame":["フォトフレーム"],"Border":["枠線"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック-四角"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"List Icon Color":["リストアイコンの色"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"PR Image 1":["PR 画像 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Link URL:":["リンクURL:"],"Icon 3":["アイコン 3"],"Class name of the Font Awesome icon font you want to use:":["アイコンを使う場合は Font Awesome のアイコンのclass名:"],"Icon Background:":["アイコン背景:"],"PR Image 3":["PR 画像 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Blocks":["PR Blocks"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Link URL":["リンクURL"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"PR Content":["PR Content"],"Title Color":["見出しの色"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Responsive Spacer":["レスポンシブスペーサー"],"Unit Type":["単位"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Height for each device.":["デバイス毎の高さ"],"PC":["PC"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Staff":["スタッフ"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Your Name":["名前"],"Caption":["キャプション"]}}}
|
inc/vk-blocks/package/build/languages/vk-blocks-ja.mo
CHANGED
Binary file
|
inc/vk-blocks/package/build/languages/vk-blocks-ja.po
CHANGED
@@ -15,6 +15,22 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
#: src/_helper/font-awesome.js:21
|
19 |
msgid "FontAwesome"
|
20 |
msgstr "Font Awesome:"
|
@@ -24,148 +40,205 @@ msgid "Enter Font Awesome Class. Ex) fas fa-arrow-circle-right "
|
|
24 |
msgstr ""
|
25 |
"Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"
|
26 |
|
27 |
-
#: src/_helper/font-awesome.js:25 src/button/block.js:
|
28 |
-
#: src/pr-blocks/block.js:
|
29 |
msgid "Font Awesome icon list"
|
30 |
msgstr "Font Awesome アイコンリスト"
|
31 |
|
32 |
-
#: src/_helper/post-list.js:
|
33 |
-
msgid "Display conditions"
|
34 |
-
msgstr "表示条件"
|
35 |
-
|
36 |
-
#: src/_helper/post-list.js:179
|
37 |
msgid "Filter by PostTypes"
|
38 |
msgstr "投稿タイプ"
|
39 |
|
40 |
-
#: src/_helper/post-list.js:
|
41 |
msgid "Filter by Taxonomy Terms"
|
42 |
msgstr "分類"
|
43 |
|
44 |
-
#: src/_helper/post-list.js:
|
45 |
msgid "Number of Posts"
|
46 |
msgstr "表示件数"
|
47 |
|
48 |
-
#: src/_helper/post-list.js:
|
49 |
-
|
50 |
-
|
51 |
-
msgid "None"
|
52 |
-
msgstr "なし"
|
53 |
-
|
54 |
-
#: src/_helper/post-list.js:230
|
55 |
-
msgid "Display type and columns"
|
56 |
-
msgstr "表示タイプとカラム"
|
57 |
|
58 |
-
#: src/_helper/post-list.js:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#: src/_helper/post-list.js:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#: src/_helper/post-list.js:
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#: src/_helper/post-list.js:
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#: src/_helper/post-list.js:
|
75 |
msgid "Column ( Screen size : Extra small )"
|
76 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
77 |
|
78 |
-
#: src/_helper/post-list.js:
|
79 |
msgid "Column ( Screen size : Small )"
|
80 |
msgstr "カラム ( 画面サイズ : Small )"
|
81 |
|
82 |
-
#: src/_helper/post-list.js:
|
83 |
msgid "Column ( Screen size : Medium )"
|
84 |
msgstr "カラム ( 画面サイズ : Medium )"
|
85 |
|
86 |
-
#: src/_helper/post-list.js:
|
87 |
msgid "Column ( Screen size : Large )"
|
88 |
msgstr "カラム ( 画面サイズ : Large )"
|
89 |
|
90 |
-
#: src/_helper/post-list.js:
|
91 |
msgid "Column ( Screen size : Extra large )"
|
92 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
93 |
|
94 |
-
#: src/_helper/post-list.js:
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#: src/_helper/post-list.js:
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
-
#: src/_helper/post-list.js:
|
103 |
msgid "Term name"
|
104 |
msgstr "分類名"
|
105 |
|
106 |
-
#: src/_helper/post-list.js:
|
107 |
msgid "Excerpt"
|
108 |
msgstr "抜粋"
|
109 |
|
110 |
-
#: src/_helper/post-list.js:
|
111 |
msgid "Date"
|
112 |
msgstr "日付"
|
113 |
|
114 |
-
#: src/_helper/post-list.js:
|
115 |
msgid "New mark"
|
116 |
msgstr "新着表示"
|
117 |
|
118 |
-
#: src/_helper/post-list.js:
|
119 |
-
msgid "Button"
|
120 |
-
msgstr "ボタン"
|
121 |
-
|
122 |
-
#: src/_helper/post-list.js:344
|
123 |
msgid "New mark option"
|
124 |
msgstr "新着表示オプション"
|
125 |
|
126 |
-
#: src/_helper/post-list.js:
|
127 |
msgid "Number of days to display the new post mark"
|
128 |
msgstr "新着表示日数"
|
129 |
|
130 |
-
#: src/_helper/post-list.js:
|
131 |
msgid "New post mark"
|
132 |
msgstr "新着表示"
|
133 |
|
134 |
-
#: src/_helper/post-list.js:
|
135 |
-
msgid "Button option"
|
136 |
-
msgstr "ボタンオプション"
|
137 |
-
|
138 |
-
#: src/_helper/post-list.js:359
|
139 |
-
msgid "Button text"
|
140 |
-
msgstr "ボタンの文字"
|
141 |
-
|
142 |
-
#: src/_helper/post-list.js:365
|
143 |
msgid "Button align"
|
144 |
msgstr "ボタンの位置"
|
145 |
|
146 |
-
#: src/_helper/post-list.js:
|
147 |
-
#: src/pr-content/block.js:
|
148 |
msgid "Left"
|
149 |
msgstr "左"
|
150 |
|
151 |
-
#: src/_helper/post-list.js:
|
152 |
msgid "Center"
|
153 |
msgstr "中央"
|
154 |
|
155 |
-
#: src/_helper/post-list.js:
|
156 |
-
#: src/pr-content/block.js:
|
157 |
msgid "Right"
|
158 |
msgstr "右"
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#: src/_pro/child-page/block.js:37
|
161 |
msgid "Child page list"
|
162 |
msgstr "子ページリスト"
|
163 |
|
164 |
-
#: src/_pro/outer/block.js:
|
|
|
|
|
|
|
|
|
165 |
msgid "Color Setting"
|
166 |
msgstr "色設定"
|
167 |
|
168 |
-
#: src/_pro/outer/block.js:
|
169 |
msgid ""
|
170 |
"Color will overcome background image. If you want to display image, clear "
|
171 |
"background color or set opacity 0."
|
@@ -173,182 +246,173 @@ msgstr ""
|
|
173 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
174 |
"するか、不透明度を0に設定します。"
|
175 |
|
176 |
-
#: src/_pro/outer/block.js:
|
177 |
msgid "Opacity Setting"
|
178 |
msgstr "透過設定"
|
179 |
|
180 |
-
#: src/_pro/outer/block.js:
|
181 |
msgid "Background Image"
|
182 |
msgstr "背景画像"
|
183 |
|
184 |
-
#: src/_pro/outer/block.js:
|
185 |
-
#: src/pr-blocks/block.js:
|
186 |
-
#: src/pr-content/deprecated/component-deprecated.js:102
|
187 |
-
#: src/staff/component.js:88
|
188 |
-
msgid "Select image"
|
189 |
-
msgstr "画像を選択"
|
190 |
-
|
191 |
-
#: src/_pro/outer/block.js:137 src/balloon/block.js:122 src/flow/block.js:113
|
192 |
-
#: src/pr-blocks/block.js:345 src/pr-content/component.js:120
|
193 |
#: src/pr-content/deprecated/component-deprecated.js:106
|
|
|
194 |
msgid "Upload image"
|
195 |
msgstr "画像をアップロード"
|
196 |
|
197 |
-
#: src/_pro/outer/block.js:
|
198 |
msgid "Background image Position"
|
199 |
msgstr "背景画像の位置"
|
200 |
|
201 |
-
#: src/_pro/outer/block.js:
|
202 |
msgid "normal"
|
203 |
msgstr "標準"
|
204 |
|
205 |
-
#: src/_pro/outer/block.js:
|
206 |
msgid "Fixed"
|
207 |
msgstr "固定"
|
208 |
|
209 |
-
#: src/_pro/outer/block.js:
|
210 |
msgid "Parallax (It will not work in preview)"
|
211 |
msgstr "パララックス(編集画面では反映されません)"
|
212 |
|
213 |
-
#: src/_pro/outer/block.js:
|
214 |
msgid "Layout Setting"
|
215 |
msgstr "レイアウト設定"
|
216 |
|
217 |
-
#: src/_pro/outer/block.js:
|
218 |
msgid "Outer width"
|
219 |
msgstr "アウターの幅"
|
220 |
|
221 |
-
#: src/_pro/outer/block.js:
|
222 |
msgid "Normal"
|
223 |
msgstr "標準"
|
224 |
|
225 |
-
#: src/_pro/outer/block.js:
|
226 |
msgid "Full Wide"
|
227 |
msgstr "全幅"
|
228 |
|
229 |
-
#: src/_pro/outer/block.js:
|
230 |
msgid "Contents area padding (left and right)"
|
231 |
msgstr "コンテンツエリアの余白 (左右)"
|
232 |
|
233 |
-
#: src/_pro/outer/block.js:
|
234 |
msgid "Do not use padding"
|
235 |
msgstr "余白なし"
|
236 |
|
237 |
-
#: src/_pro/outer/block.js:
|
238 |
msgid "Use padding"
|
239 |
msgstr "余白あり"
|
240 |
|
241 |
-
#: src/_pro/outer/block.js:
|
242 |
msgid "Padding (top and bottom)"
|
243 |
msgstr "余白 (上下)"
|
244 |
|
245 |
-
#: src/_pro/outer/block.js:
|
246 |
msgid "Use default padding"
|
247 |
msgstr "標準の余白を使用"
|
248 |
|
249 |
-
#: src/_pro/outer/block.js:
|
250 |
msgid "Do not use default padding (Set it yourself using a spacer block etc.)."
|
251 |
msgstr "標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"
|
252 |
|
253 |
-
#: src/_pro/outer/block.js:
|
254 |
msgid "Divider Setting"
|
255 |
msgstr "区切りの設定"
|
256 |
|
257 |
-
#: src/_pro/outer/block.js:
|
258 |
msgid "Type"
|
259 |
msgstr "タイプ"
|
260 |
|
261 |
-
#: src/_pro/outer/block.js:
|
262 |
msgid "Tilt"
|
263 |
msgstr "傾斜"
|
264 |
|
265 |
-
#: src/_pro/outer/block.js:
|
266 |
msgid "Curve"
|
267 |
msgstr "カーブ"
|
268 |
|
269 |
-
#: src/_pro/outer/block.js:
|
270 |
msgid "Wave"
|
271 |
msgstr "波状"
|
272 |
|
273 |
-
#: src/_pro/outer/block.js:
|
274 |
msgid "Triangle"
|
275 |
msgstr "三角"
|
276 |
|
277 |
-
#: src/_pro/outer/block.js:
|
278 |
msgid "Upper Divider Level"
|
279 |
msgstr "上部区切りレベル"
|
280 |
|
281 |
-
#: src/_pro/outer/block.js:
|
282 |
msgid "Lower Divider Level"
|
283 |
msgstr "下部区切りレベル"
|
284 |
|
285 |
-
#: src/_pro/outer/block.js:
|
286 |
msgid "Border Setting"
|
287 |
msgstr "枠線の設定"
|
288 |
|
289 |
-
#: src/_pro/outer/block.js:
|
290 |
msgid "Border will disappear when divider effect is applied."
|
291 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
292 |
|
293 |
-
#: src/_pro/outer/block.js:
|
294 |
msgid "Border type"
|
295 |
msgstr "枠線の種類"
|
296 |
|
297 |
-
#: src/_pro/outer/block.js:
|
|
|
|
|
|
|
|
|
|
|
298 |
#: src/_pro/timeline-item/block.js:84 src/group-style/block.js:95
|
299 |
-
#: src/pr-content/block.js:
|
300 |
msgid "Solid"
|
301 |
msgstr "直線"
|
302 |
|
303 |
-
#: src/_pro/outer/block.js:
|
304 |
msgid "Dotted"
|
305 |
msgstr "点線"
|
306 |
|
307 |
-
#: src/_pro/outer/block.js:
|
308 |
msgid "Dashed"
|
309 |
msgstr "Dashed"
|
310 |
|
311 |
-
#: src/_pro/outer/block.js:
|
312 |
msgid "Double"
|
313 |
msgstr "二重線"
|
314 |
|
315 |
-
#: src/_pro/outer/block.js:
|
316 |
msgid "Groove"
|
317 |
msgstr "Groove"
|
318 |
|
319 |
-
#: src/_pro/outer/block.js:
|
320 |
msgid "Ridge"
|
321 |
msgstr "Ridge"
|
322 |
|
323 |
-
#: src/_pro/outer/block.js:
|
324 |
msgid "Inset"
|
325 |
msgstr "Inset"
|
326 |
|
327 |
-
#: src/_pro/outer/block.js:
|
328 |
msgid "Outset"
|
329 |
msgstr "Outset"
|
330 |
|
331 |
-
#: src/_pro/outer/block.js:
|
332 |
msgid "Border width"
|
333 |
msgstr "枠線の幅"
|
334 |
|
335 |
-
#: src/_pro/outer/block.js:
|
336 |
msgid "Border radius"
|
337 |
msgstr "枠線のRの大きさ"
|
338 |
|
339 |
-
#: src/_pro/outer/block.js:
|
340 |
-
msgid "This block is only for users who bought Lightning Pro."
|
341 |
-
msgstr "このブロックは Lightning Pro 専用です。"
|
342 |
-
|
343 |
-
#: src/_pro/outer/block.js:44
|
344 |
msgid "Outer"
|
345 |
msgstr "Outer"
|
346 |
|
347 |
-
#: src/_pro/
|
348 |
-
msgid "Background Setting"
|
349 |
-
msgstr "背景設定"
|
350 |
-
|
351 |
-
#: src/_pro/post-list/block.js:35
|
352 |
msgid "Post list"
|
353 |
msgstr "投稿リスト"
|
354 |
|
@@ -356,7 +420,7 @@ msgstr "投稿リスト"
|
|
356 |
msgid "Outlined"
|
357 |
msgstr "アウトライン"
|
358 |
|
359 |
-
#: src/_pro/step-item/block.js:116 src/_pro/table-of-contents/block.js:
|
360 |
#: src/_pro/timeline-item/block.js:99 src/heading-style/block.js:33
|
361 |
#: src/heading/block.js:124 src/list-style/block.js:104 src/staff/block.js:105
|
362 |
msgid "Default"
|
@@ -383,12 +447,12 @@ msgstr "例) 午前 6:00"
|
|
383 |
msgid "Color"
|
384 |
msgstr "色"
|
385 |
|
386 |
-
#: src/_pro/step-item/block.js:86 src/_pro/table-of-contents/block.js:
|
387 |
#: src/_pro/timeline-item/block.js:69
|
388 |
msgid "Style"
|
389 |
msgstr "スタイル"
|
390 |
|
391 |
-
#: src/_pro/step/block.js:
|
392 |
msgid "First Dot Number"
|
393 |
msgstr "ステップの開始番号"
|
394 |
|
@@ -396,12 +460,12 @@ msgstr "ステップの開始番号"
|
|
396 |
msgid "Step"
|
397 |
msgstr "ステップ"
|
398 |
|
399 |
-
#: src/_pro/table-of-contents/TableOfContents.js:
|
400 |
-
#: src/_pro/table-of-contents/block.js:
|
401 |
msgid "Table of Contents"
|
402 |
msgstr "目次"
|
403 |
|
404 |
-
#: src/_pro/table-of-contents/block.js:
|
405 |
msgid "No frame"
|
406 |
msgstr "枠無し"
|
407 |
|
@@ -421,133 +485,133 @@ msgstr "タイムライン"
|
|
421 |
msgid "Alert"
|
422 |
msgstr "アラート"
|
423 |
|
424 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgid "Icon Name"
|
426 |
msgstr "アイコンの名前"
|
427 |
|
428 |
-
#: src/balloon/block.js:
|
429 |
msgid "Input text"
|
430 |
msgstr "文字を入力"
|
431 |
|
432 |
-
#: src/balloon/block.js:
|
433 |
msgid "Ballon"
|
434 |
msgstr "フキダシ"
|
435 |
|
436 |
-
#: src/balloon/block.js:
|
437 |
msgid "Balloon setting"
|
438 |
msgstr "フキダシ設定"
|
439 |
|
440 |
-
#: src/balloon/block.js:
|
441 |
msgid "Position"
|
442 |
msgstr "位置"
|
443 |
|
444 |
-
#: src/balloon/block.js:
|
445 |
msgid "Please specify the layout of the balloon."
|
446 |
msgstr "吹き出しの配置を指定してください。"
|
447 |
|
448 |
-
#: src/
|
449 |
-
msgid "Please select the type of balloon."
|
450 |
-
msgstr "吹き出しのタイプを指定してください。"
|
451 |
-
|
452 |
-
#: src/balloon/block.js:98
|
453 |
-
msgid "Serif"
|
454 |
-
msgstr "セリフ"
|
455 |
-
|
456 |
-
#: src/balloon/block.js:99
|
457 |
-
msgid "Thinking"
|
458 |
-
msgstr "吹き出し"
|
459 |
-
|
460 |
-
#: src/button/block.js:148
|
461 |
msgid "Button setting"
|
462 |
msgstr "ボタン設定"
|
463 |
|
464 |
-
#: src/button/block.js:
|
465 |
msgid "Sub Caption"
|
466 |
msgstr "サブテキスト"
|
467 |
|
468 |
-
#: src/button/block.js:
|
469 |
-
#: src/pr-content/block.js:
|
470 |
msgid "Open link new tab."
|
471 |
msgstr "リンクを別ウィンドウで開く"
|
472 |
|
473 |
-
#: src/button/block.js:
|
474 |
msgid "Button Size:"
|
475 |
msgstr "ボタンサイズ:"
|
476 |
|
477 |
-
#: src/button/block.js:
|
478 |
msgid "Large"
|
479 |
msgstr "大"
|
480 |
|
481 |
-
#: src/button/block.js:
|
482 |
msgid "Small"
|
483 |
msgstr "小"
|
484 |
|
485 |
-
#: src/button/block.js:
|
486 |
msgid "Button Position:"
|
487 |
msgstr "ボタンの位置:"
|
488 |
|
489 |
-
#: src/button/block.js:
|
490 |
msgid "Block"
|
491 |
msgstr "ブロック(全幅)"
|
492 |
|
493 |
-
#: src/button/block.js:
|
494 |
msgid "Button Style:"
|
495 |
msgstr "ボタンスタイル:"
|
496 |
|
497 |
-
#: src/button/block.js:
|
498 |
msgid "Solid color"
|
499 |
msgstr "ベタ塗り"
|
500 |
|
501 |
-
#: src/button/block.js:
|
502 |
msgid "No background"
|
503 |
msgstr "背景なし"
|
504 |
|
505 |
-
#: src/button/block.js:
|
506 |
msgid ""
|
507 |
"If you select \"No background\", that you need to select a Custom Color."
|
508 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
509 |
|
510 |
-
#: src/button/block.js:
|
511 |
msgid "Default Color:"
|
512 |
msgstr "標準色:"
|
513 |
|
514 |
-
#: src/button/block.js:
|
515 |
msgid "Primary"
|
516 |
msgstr "Primary"
|
517 |
|
518 |
-
#: src/button/block.js:
|
519 |
msgid "Secondary"
|
520 |
msgstr "Secondary"
|
521 |
|
522 |
-
#: src/button/block.js:
|
523 |
msgid "Success"
|
524 |
msgstr "Success"
|
525 |
|
526 |
-
#: src/button/block.js:
|
527 |
msgid "Info"
|
528 |
msgstr "Info"
|
529 |
|
530 |
-
#: src/button/block.js:
|
531 |
msgid "Warning"
|
532 |
msgstr "Warning"
|
533 |
|
534 |
-
#: src/button/block.js:
|
535 |
msgid "Danger"
|
536 |
msgstr "Danger"
|
537 |
|
538 |
-
#: src/button/block.js:
|
539 |
msgid "Light"
|
540 |
msgstr "Light"
|
541 |
|
542 |
-
#: src/button/block.js:
|
543 |
msgid "Dark"
|
544 |
msgstr "Dark"
|
545 |
|
546 |
-
#: src/button/block.js:
|
547 |
msgid "Custom Color"
|
548 |
msgstr "カスタムカラー"
|
549 |
|
550 |
-
#: src/button/block.js:
|
551 |
msgid ""
|
552 |
"This custom color overrides the default color. If you want to use the "
|
553 |
"default color, click the clear button."
|
@@ -555,15 +619,15 @@ msgstr ""
|
|
555 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
556 |
"たい場合は、クリアボタンをクリックしてください。"
|
557 |
|
558 |
-
#: src/button/block.js:
|
559 |
msgid "Font Awesome:"
|
560 |
msgstr "Font Awesome:"
|
561 |
|
562 |
-
#: src/button/block.js:
|
563 |
msgid "Before text"
|
564 |
msgstr "文字の前"
|
565 |
|
566 |
-
#: src/button/block.js:
|
567 |
msgid ""
|
568 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
569 |
"circle-right"
|
@@ -571,11 +635,11 @@ msgstr ""
|
|
571 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
572 |
"ます。 例) fas fa-arrow-circle-right"
|
573 |
|
574 |
-
#: src/button/block.js:
|
575 |
msgid "After text"
|
576 |
msgstr "文字の後"
|
577 |
|
578 |
-
#: src/button/block.js:
|
579 |
msgid ""
|
580 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
581 |
"external-link-alt"
|
@@ -583,22 +647,22 @@ msgstr ""
|
|
583 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
584 |
"ます。 例) fas fa-external-link-alt"
|
585 |
|
586 |
-
#: src/button/block.js:
|
587 |
msgid "Apply"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: src/faq/block.js:
|
|
|
|
|
|
|
|
|
591 |
msgid "FAQ"
|
592 |
msgstr "質問と解答"
|
593 |
|
594 |
-
#: src/faq/block.js:
|
595 |
msgid "Please enter a question."
|
596 |
msgstr "質問を入力してください。"
|
597 |
|
598 |
-
#: src/faq/block.js:86
|
599 |
-
msgid "Please enter a answer."
|
600 |
-
msgstr "回答を入力してください。"
|
601 |
-
|
602 |
#: src/flow/block.js:28
|
603 |
msgid "Flow"
|
604 |
msgstr "フロー"
|
@@ -801,127 +865,129 @@ msgstr "数字-四角"
|
|
801 |
msgid "List Icon Color"
|
802 |
msgstr "リストアイコンの色"
|
803 |
|
804 |
-
#: src/pr-blocks/block.js:
|
805 |
msgid "PR Block1 Setting"
|
806 |
msgstr "PR Block1 設定"
|
807 |
|
808 |
-
#: src/pr-blocks/block.js:
|
809 |
msgid "Icon 1"
|
810 |
msgstr "アイコン 1"
|
811 |
|
812 |
-
#: src/pr-blocks/block.js:
|
813 |
msgid "PR Image 1"
|
814 |
msgstr "PR 画像 1"
|
815 |
|
816 |
-
#: src/pr-blocks/block.js:
|
817 |
msgid "When you have an image. Image is displayed with priority"
|
818 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
819 |
|
820 |
-
#: src/pr-blocks/block.js:
|
821 |
msgid "PR Block2 Setting"
|
822 |
msgstr "PR Block2 設定"
|
823 |
|
824 |
-
#: src/pr-blocks/block.js:
|
825 |
msgid "Icon 2"
|
826 |
msgstr "アイコン 2"
|
827 |
|
828 |
-
#: src/pr-blocks/block.js:
|
829 |
msgid "PR Image 2"
|
830 |
msgstr "PR 画像 2"
|
831 |
|
832 |
-
#: src/pr-blocks/block.js:
|
833 |
msgid "PR Block3 Setting"
|
834 |
msgstr "PR Block3 設定"
|
835 |
|
836 |
-
#: src/pr-blocks/block.js:
|
837 |
msgid "Link URL:"
|
838 |
msgstr "リンクURL:"
|
839 |
|
840 |
-
#: src/pr-blocks/block.js:
|
841 |
msgid "Icon 3"
|
842 |
msgstr "アイコン 3"
|
843 |
|
844 |
-
#: src/pr-blocks/block.js:
|
845 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
846 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
847 |
|
848 |
-
#: src/pr-blocks/block.js:
|
849 |
msgid "Icon Background:"
|
850 |
msgstr "アイコン背景:"
|
851 |
|
852 |
-
#: src/pr-blocks/block.js:
|
853 |
msgid "PR Image 3"
|
854 |
msgstr "PR 画像 3"
|
855 |
|
856 |
-
#: src/pr-blocks/block.js:
|
857 |
msgid "When you have an image. Image is displayed with priority."
|
858 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
859 |
|
860 |
-
#: src/pr-blocks/block.js:
|
861 |
msgid "PR Blocks"
|
862 |
msgstr "PR Blocks"
|
863 |
|
864 |
-
#: src/pr-blocks/component-block.js:
|
865 |
#: src/pr-blocks/deprecated/component-block.js:144
|
866 |
msgid "Input Title"
|
867 |
msgstr "タイトルを入力"
|
868 |
|
869 |
-
#: src/pr-blocks/component-block.js:
|
870 |
#: src/pr-blocks/deprecated/component-block.js:151
|
871 |
msgid "Input Content"
|
872 |
msgstr "文章を入力してください"
|
873 |
|
874 |
-
#: src/pr-content/block.js:
|
|
|
|
|
|
|
|
|
875 |
msgid "Image Border Color"
|
876 |
msgstr "画像の線の色"
|
877 |
|
878 |
-
#: src/pr-content/block.js:
|
879 |
msgid "Button Setting"
|
880 |
msgstr "ボタン設定"
|
881 |
|
882 |
-
#: src/pr-content/block.js:
|
883 |
msgid "Button Text"
|
884 |
msgstr "ボタンの文字"
|
885 |
|
886 |
-
#: src/pr-content/block.js:
|
887 |
msgid "Link URL"
|
888 |
msgstr "リンクURL"
|
889 |
|
890 |
-
#: src/pr-content/block.js:
|
891 |
msgid "Button Type"
|
892 |
msgstr "ボタンタイプ"
|
893 |
|
894 |
-
#: src/pr-content/block.js:
|
895 |
msgid "Ghost"
|
896 |
msgstr "ゴーストボタン"
|
897 |
|
898 |
-
#: src/pr-content/block.js:
|
899 |
msgid "Button Color"
|
900 |
msgstr "ボタンの色"
|
901 |
|
902 |
-
#: src/pr-content/block.js:
|
903 |
msgid "Layout Type"
|
904 |
msgstr "レイアウトタイプ"
|
905 |
|
906 |
-
#: src/pr-content/block.js:
|
907 |
msgid "PR Content"
|
908 |
msgstr "PR Content"
|
909 |
|
910 |
-
#: src/pr-content/block.js:
|
911 |
msgid "Title Color"
|
912 |
msgstr "見出しの色"
|
913 |
|
914 |
-
#: src/pr-content/
|
915 |
-
msgid "Content Color"
|
916 |
-
msgstr "本文の色"
|
917 |
-
|
918 |
-
#: src/pr-content/component.js:136
|
919 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
|
|
920 |
msgid "Input title."
|
921 |
msgstr "タイトルを入力してください。"
|
922 |
|
923 |
-
#: src/pr-content/component.js:
|
924 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
|
|
925 |
msgid "Input content."
|
926 |
msgstr "本文を入力してください。"
|
927 |
|
@@ -1017,6 +1083,14 @@ msgstr "名前"
|
|
1017 |
msgid "Caption"
|
1018 |
msgstr "キャプション"
|
1019 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1020 |
#~ msgid "top-bottom-border"
|
1021 |
#~ msgstr "上下線"
|
1022 |
|
@@ -1086,9 +1160,6 @@ msgstr "キャプション"
|
|
1086 |
#~ msgid "Label"
|
1087 |
#~ msgstr "ラベル"
|
1088 |
|
1089 |
-
#~ msgid "Icon setting"
|
1090 |
-
#~ msgstr "アイコン設定"
|
1091 |
-
|
1092 |
#, fuzzy
|
1093 |
#~| msgid "Button Style:"
|
1094 |
#~ msgid "Icon Style:"
|
@@ -1155,9 +1226,6 @@ msgstr "キャプション"
|
|
1155 |
#~ msgid "Use contents area default padding"
|
1156 |
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1157 |
|
1158 |
-
#~ msgid "Link target"
|
1159 |
-
#~ msgstr "リンクターゲット"
|
1160 |
-
|
1161 |
#~ msgid "Open url in new window"
|
1162 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1163 |
|
@@ -1176,6 +1244,3 @@ msgstr "キャプション"
|
|
1176 |
|
1177 |
#~ msgid "Width Setting"
|
1178 |
#~ msgstr "幅設定"
|
1179 |
-
|
1180 |
-
#~ msgid "Link url"
|
1181 |
-
#~ msgstr "リンクURL"
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: components/card-align-control/index.js:22
|
19 |
+
msgid "Align"
|
20 |
+
msgstr "表示位置"
|
21 |
+
|
22 |
+
#: components/link-control/index.js:37
|
23 |
+
msgid "Link target"
|
24 |
+
msgstr "リンクターゲット"
|
25 |
+
|
26 |
+
#: components/link-control/index.js:41
|
27 |
+
msgid "Open in new tab"
|
28 |
+
msgstr "リンクを別ウィンドウで開く"
|
29 |
+
|
30 |
+
#: components/link-control/index.js:46
|
31 |
+
msgid "Link rel"
|
32 |
+
msgstr "rel属性"
|
33 |
+
|
34 |
#: src/_helper/font-awesome.js:21
|
35 |
msgid "FontAwesome"
|
36 |
msgstr "Font Awesome:"
|
40 |
msgstr ""
|
41 |
"Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"
|
42 |
|
43 |
+
#: src/_helper/font-awesome.js:25 src/button/block.js:218
|
44 |
+
#: src/pr-blocks/block.js:344 src/pr-content/block.js:175
|
45 |
msgid "Font Awesome icon list"
|
46 |
msgstr "Font Awesome アイコンリスト"
|
47 |
|
48 |
+
#: src/_helper/post-list.js:192
|
|
|
|
|
|
|
|
|
49 |
msgid "Filter by PostTypes"
|
50 |
msgstr "投稿タイプ"
|
51 |
|
52 |
+
#: src/_helper/post-list.js:195
|
53 |
msgid "Filter by Taxonomy Terms"
|
54 |
msgstr "分類"
|
55 |
|
56 |
+
#: src/_helper/post-list.js:198
|
57 |
msgid "Number of Posts"
|
58 |
msgstr "表示件数"
|
59 |
|
60 |
+
#: src/_helper/post-list.js:270
|
61 |
+
msgid "Exsist Already Page"
|
62 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
+
#: src/_helper/post-list.js:289
|
65 |
+
msgid "Current Page"
|
66 |
+
msgstr ""
|
67 |
|
68 |
+
#: src/_helper/post-list.js:301
|
69 |
+
msgid "Display conditions"
|
70 |
+
msgstr "表示条件"
|
71 |
|
72 |
+
#: src/_helper/post-list.js:304
|
73 |
+
msgid "Parent"
|
74 |
+
msgstr "親ページ"
|
75 |
|
76 |
+
#: src/_helper/post-list.js:320
|
77 |
+
msgid "Display type and columns"
|
78 |
+
msgstr "表示タイプとカラム"
|
79 |
|
80 |
+
#: src/_helper/post-list.js:325
|
81 |
msgid "Column ( Screen size : Extra small )"
|
82 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
83 |
|
84 |
+
#: src/_helper/post-list.js:335
|
85 |
msgid "Column ( Screen size : Small )"
|
86 |
msgstr "カラム ( 画面サイズ : Small )"
|
87 |
|
88 |
+
#: src/_helper/post-list.js:345
|
89 |
msgid "Column ( Screen size : Medium )"
|
90 |
msgstr "カラム ( 画面サイズ : Medium )"
|
91 |
|
92 |
+
#: src/_helper/post-list.js:355
|
93 |
msgid "Column ( Screen size : Large )"
|
94 |
msgstr "カラム ( 画面サイズ : Large )"
|
95 |
|
96 |
+
#: src/_helper/post-list.js:365
|
97 |
msgid "Column ( Screen size : Extra large )"
|
98 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
99 |
|
100 |
+
#: src/_helper/post-list.js:392
|
101 |
+
msgid "Card ( No border )"
|
102 |
+
msgstr "カード(線なし)"
|
103 |
|
104 |
+
#: src/_helper/post-list.js:400
|
105 |
+
msgid "Display type"
|
106 |
+
msgstr "表示タイプ"
|
107 |
+
|
108 |
+
#: src/_helper/post-list.js:407 src/_pro/card/block.js:51
|
109 |
+
msgid "Card"
|
110 |
+
msgstr "カード"
|
111 |
+
|
112 |
+
#: src/_helper/post-list.js:411
|
113 |
+
msgid "Card Horizontal"
|
114 |
+
msgstr "カード(水平)"
|
115 |
+
|
116 |
+
#: src/_helper/post-list.js:415
|
117 |
+
msgid "Media"
|
118 |
+
msgstr "メディア"
|
119 |
|
120 |
+
#: src/_helper/post-list.js:433
|
121 |
msgid "Term name"
|
122 |
msgstr "分類名"
|
123 |
|
124 |
+
#: src/_helper/post-list.js:440
|
125 |
msgid "Excerpt"
|
126 |
msgstr "抜粋"
|
127 |
|
128 |
+
#: src/_helper/post-list.js:445
|
129 |
msgid "Date"
|
130 |
msgstr "日付"
|
131 |
|
132 |
+
#: src/_helper/post-list.js:451
|
133 |
msgid "New mark"
|
134 |
msgstr "新着表示"
|
135 |
|
136 |
+
#: src/_helper/post-list.js:461
|
|
|
|
|
|
|
|
|
137 |
msgid "New mark option"
|
138 |
msgstr "新着表示オプション"
|
139 |
|
140 |
+
#: src/_helper/post-list.js:463
|
141 |
msgid "Number of days to display the new post mark"
|
142 |
msgstr "新着表示日数"
|
143 |
|
144 |
+
#: src/_helper/post-list.js:471
|
145 |
msgid "New post mark"
|
146 |
msgstr "新着表示"
|
147 |
|
148 |
+
#: src/_helper/post-list.js:491
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgid "Button align"
|
150 |
msgstr "ボタンの位置"
|
151 |
|
152 |
+
#: src/_helper/post-list.js:498 src/balloon/block.js:97 src/button/block.js:175
|
153 |
+
#: src/pr-content/block.js:202
|
154 |
msgid "Left"
|
155 |
msgstr "左"
|
156 |
|
157 |
+
#: src/_helper/post-list.js:502 src/button/block.js:176
|
158 |
msgid "Center"
|
159 |
msgstr "中央"
|
160 |
|
161 |
+
#: src/_helper/post-list.js:506 src/balloon/block.js:98 src/button/block.js:177
|
162 |
+
#: src/pr-content/block.js:201
|
163 |
msgid "Right"
|
164 |
msgstr "右"
|
165 |
|
166 |
+
#: src/_helper/post-list.js:517
|
167 |
+
msgid "Display item"
|
168 |
+
msgstr "表示要素"
|
169 |
+
|
170 |
+
#: src/_helper/post-list.js:519
|
171 |
+
msgid "Image"
|
172 |
+
msgstr "画像"
|
173 |
+
|
174 |
+
#: src/_helper/post-list.js:524 src/button/block.js:59
|
175 |
+
msgid "Button"
|
176 |
+
msgstr "ボタン"
|
177 |
+
|
178 |
+
#: src/_helper/post-list.js:529
|
179 |
+
msgid "Button option"
|
180 |
+
msgstr "ボタンオプション"
|
181 |
+
|
182 |
+
#: src/_helper/post-list.js:532
|
183 |
+
msgid ""
|
184 |
+
"Click each card block to set the target url. You can find the url form at "
|
185 |
+
"it's sidebar."
|
186 |
+
msgstr ""
|
187 |
+
"ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォー"
|
188 |
+
"ムが表示されます。"
|
189 |
+
|
190 |
+
#: src/_helper/post-list.js:538
|
191 |
+
msgid "Button text"
|
192 |
+
msgstr "ボタンの文字"
|
193 |
+
|
194 |
+
#: src/_pro/card-item/block.js:34
|
195 |
+
msgid "Card Item"
|
196 |
+
msgstr "カードアイテム"
|
197 |
+
|
198 |
+
#: src/_pro/card-item/block.js:49
|
199 |
+
msgid "URL"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: src/_pro/card-item/block.js:54
|
203 |
+
msgid "https://www.vektor-inc.co.jp/"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: src/_pro/card-item/component.js:103
|
207 |
+
msgid "Delete Image"
|
208 |
+
msgstr "画像を削除"
|
209 |
+
|
210 |
+
#: src/_pro/card-item/component.js:157
|
211 |
+
msgid ""
|
212 |
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
|
213 |
+
"tempor incididunt ut labore et dolore magna aliqua. "
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: src/_pro/card-item/component.js:199
|
217 |
+
msgid "Title"
|
218 |
+
msgstr "タイトルを入力"
|
219 |
+
|
220 |
+
#: src/_pro/card-item/component.js:90 src/_pro/outer/block.js:154
|
221 |
+
#: src/balloon/block.js:136 src/flow/block.js:112 src/pr-blocks/block.js:179
|
222 |
+
#: src/pr-content/component.js:155
|
223 |
+
#: src/pr-content/deprecated/component-deprecated.js:102
|
224 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
225 |
+
#: src/staff/component.js:88
|
226 |
+
msgid "Select image"
|
227 |
+
msgstr "画像を選択"
|
228 |
+
|
229 |
#: src/_pro/child-page/block.js:37
|
230 |
msgid "Child page list"
|
231 |
msgstr "子ページリスト"
|
232 |
|
233 |
+
#: src/_pro/outer/block.js:116
|
234 |
+
msgid "Background Setting"
|
235 |
+
msgstr "背景設定"
|
236 |
+
|
237 |
+
#: src/_pro/outer/block.js:120 src/pr-content/block.js:91
|
238 |
msgid "Color Setting"
|
239 |
msgstr "色設定"
|
240 |
|
241 |
+
#: src/_pro/outer/block.js:121
|
242 |
msgid ""
|
243 |
"Color will overcome background image. If you want to display image, clear "
|
244 |
"background color or set opacity 0."
|
246 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
247 |
"するか、不透明度を0に設定します。"
|
248 |
|
249 |
+
#: src/_pro/outer/block.js:132
|
250 |
msgid "Opacity Setting"
|
251 |
msgstr "透過設定"
|
252 |
|
253 |
+
#: src/_pro/outer/block.js:143
|
254 |
msgid "Background Image"
|
255 |
msgstr "背景画像"
|
256 |
|
257 |
+
#: src/_pro/outer/block.js:159 src/balloon/block.js:141 src/flow/block.js:113
|
258 |
+
#: src/pr-blocks/block.js:175 src/pr-content/component.js:162
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
#: src/pr-content/deprecated/component-deprecated.js:106
|
260 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
261 |
msgid "Upload image"
|
262 |
msgstr "画像をアップロード"
|
263 |
|
264 |
+
#: src/_pro/outer/block.js:168
|
265 |
msgid "Background image Position"
|
266 |
msgstr "背景画像の位置"
|
267 |
|
268 |
+
#: src/_pro/outer/block.js:175 src/button/block.js:166
|
269 |
msgid "normal"
|
270 |
msgstr "標準"
|
271 |
|
272 |
+
#: src/_pro/outer/block.js:176
|
273 |
msgid "Fixed"
|
274 |
msgstr "固定"
|
275 |
|
276 |
+
#: src/_pro/outer/block.js:178
|
277 |
msgid "Parallax (It will not work in preview)"
|
278 |
msgstr "パララックス(編集画面では反映されません)"
|
279 |
|
280 |
+
#: src/_pro/outer/block.js:191 src/pr-content/block.js:194
|
281 |
msgid "Layout Setting"
|
282 |
msgstr "レイアウト設定"
|
283 |
|
284 |
+
#: src/_pro/outer/block.js:196
|
285 |
msgid "Outer width"
|
286 |
msgstr "アウターの幅"
|
287 |
|
288 |
+
#: src/_pro/outer/block.js:199
|
289 |
msgid "Normal"
|
290 |
msgstr "標準"
|
291 |
|
292 |
+
#: src/_pro/outer/block.js:200
|
293 |
msgid "Full Wide"
|
294 |
msgstr "全幅"
|
295 |
|
296 |
+
#: src/_pro/outer/block.js:205
|
297 |
msgid "Contents area padding (left and right)"
|
298 |
msgstr "コンテンツエリアの余白 (左右)"
|
299 |
|
300 |
+
#: src/_pro/outer/block.js:212
|
301 |
msgid "Do not use padding"
|
302 |
msgstr "余白なし"
|
303 |
|
304 |
+
#: src/_pro/outer/block.js:216
|
305 |
msgid "Use padding"
|
306 |
msgstr "余白あり"
|
307 |
|
308 |
+
#: src/_pro/outer/block.js:225
|
309 |
msgid "Padding (top and bottom)"
|
310 |
msgstr "余白 (上下)"
|
311 |
|
312 |
+
#: src/_pro/outer/block.js:228
|
313 |
msgid "Use default padding"
|
314 |
msgstr "標準の余白を使用"
|
315 |
|
316 |
+
#: src/_pro/outer/block.js:230
|
317 |
msgid "Do not use default padding (Set it yourself using a spacer block etc.)."
|
318 |
msgstr "標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"
|
319 |
|
320 |
+
#: src/_pro/outer/block.js:244
|
321 |
msgid "Divider Setting"
|
322 |
msgstr "区切りの設定"
|
323 |
|
324 |
+
#: src/_pro/outer/block.js:249 src/balloon/block.js:103
|
325 |
msgid "Type"
|
326 |
msgstr "タイプ"
|
327 |
|
328 |
+
#: src/_pro/outer/block.js:255
|
329 |
msgid "Tilt"
|
330 |
msgstr "傾斜"
|
331 |
|
332 |
+
#: src/_pro/outer/block.js:259
|
333 |
msgid "Curve"
|
334 |
msgstr "カーブ"
|
335 |
|
336 |
+
#: src/_pro/outer/block.js:263
|
337 |
msgid "Wave"
|
338 |
msgstr "波状"
|
339 |
|
340 |
+
#: src/_pro/outer/block.js:267 src/list-style/block.js:113
|
341 |
msgid "Triangle"
|
342 |
msgstr "三角"
|
343 |
|
344 |
+
#: src/_pro/outer/block.js:272
|
345 |
msgid "Upper Divider Level"
|
346 |
msgstr "上部区切りレベル"
|
347 |
|
348 |
+
#: src/_pro/outer/block.js:290
|
349 |
msgid "Lower Divider Level"
|
350 |
msgstr "下部区切りレベル"
|
351 |
|
352 |
+
#: src/_pro/outer/block.js:310
|
353 |
msgid "Border Setting"
|
354 |
msgstr "枠線の設定"
|
355 |
|
356 |
+
#: src/_pro/outer/block.js:317
|
357 |
msgid "Border will disappear when divider effect is applied."
|
358 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
359 |
|
360 |
+
#: src/_pro/outer/block.js:323
|
361 |
msgid "Border type"
|
362 |
msgstr "枠線の種類"
|
363 |
|
364 |
+
#: src/_pro/outer/block.js:329 src/_pro/step-item/block.js:120
|
365 |
+
#: src/_pro/timeline-item/block.js:103 src/staff/block.js:109
|
366 |
+
msgid "None"
|
367 |
+
msgstr "なし"
|
368 |
+
|
369 |
+
#: src/_pro/outer/block.js:333 src/_pro/step-item/block.js:97
|
370 |
#: src/_pro/timeline-item/block.js:84 src/group-style/block.js:95
|
371 |
+
#: src/pr-content/block.js:146
|
372 |
msgid "Solid"
|
373 |
msgstr "直線"
|
374 |
|
375 |
+
#: src/_pro/outer/block.js:337 src/group-style/block.js:103
|
376 |
msgid "Dotted"
|
377 |
msgstr "点線"
|
378 |
|
379 |
+
#: src/_pro/outer/block.js:341 src/group-style/block.js:107
|
380 |
msgid "Dashed"
|
381 |
msgstr "Dashed"
|
382 |
|
383 |
+
#: src/_pro/outer/block.js:345 src/group-style/block.js:111
|
384 |
msgid "Double"
|
385 |
msgstr "二重線"
|
386 |
|
387 |
+
#: src/_pro/outer/block.js:349
|
388 |
msgid "Groove"
|
389 |
msgstr "Groove"
|
390 |
|
391 |
+
#: src/_pro/outer/block.js:353
|
392 |
msgid "Ridge"
|
393 |
msgstr "Ridge"
|
394 |
|
395 |
+
#: src/_pro/outer/block.js:357
|
396 |
msgid "Inset"
|
397 |
msgstr "Inset"
|
398 |
|
399 |
+
#: src/_pro/outer/block.js:361
|
400 |
msgid "Outset"
|
401 |
msgstr "Outset"
|
402 |
|
403 |
+
#: src/_pro/outer/block.js:372
|
404 |
msgid "Border width"
|
405 |
msgstr "枠線の幅"
|
406 |
|
407 |
+
#: src/_pro/outer/block.js:379
|
408 |
msgid "Border radius"
|
409 |
msgstr "枠線のRの大きさ"
|
410 |
|
411 |
+
#: src/_pro/outer/block.js:63
|
|
|
|
|
|
|
|
|
412 |
msgid "Outer"
|
413 |
msgstr "Outer"
|
414 |
|
415 |
+
#: src/_pro/post-list/block.js:53
|
|
|
|
|
|
|
|
|
416 |
msgid "Post list"
|
417 |
msgstr "投稿リスト"
|
418 |
|
420 |
msgid "Outlined"
|
421 |
msgstr "アウトライン"
|
422 |
|
423 |
+
#: src/_pro/step-item/block.js:116 src/_pro/table-of-contents/block.js:159
|
424 |
#: src/_pro/timeline-item/block.js:99 src/heading-style/block.js:33
|
425 |
#: src/heading/block.js:124 src/list-style/block.js:104 src/staff/block.js:105
|
426 |
msgid "Default"
|
447 |
msgid "Color"
|
448 |
msgstr "色"
|
449 |
|
450 |
+
#: src/_pro/step-item/block.js:86 src/_pro/table-of-contents/block.js:152
|
451 |
#: src/_pro/timeline-item/block.js:69
|
452 |
msgid "Style"
|
453 |
msgstr "スタイル"
|
454 |
|
455 |
+
#: src/_pro/step/block.js:124
|
456 |
msgid "First Dot Number"
|
457 |
msgstr "ステップの開始番号"
|
458 |
|
460 |
msgid "Step"
|
461 |
msgstr "ステップ"
|
462 |
|
463 |
+
#: src/_pro/table-of-contents/TableOfContents.js:175
|
464 |
+
#: src/_pro/table-of-contents/block.js:80
|
465 |
msgid "Table of Contents"
|
466 |
msgstr "目次"
|
467 |
|
468 |
+
#: src/_pro/table-of-contents/block.js:163
|
469 |
msgid "No frame"
|
470 |
msgstr "枠無し"
|
471 |
|
485 |
msgid "Alert"
|
486 |
msgstr "アラート"
|
487 |
|
488 |
+
#: src/balloon/block.js:104
|
489 |
+
msgid "Please select the type of balloon."
|
490 |
+
msgstr "吹き出しのタイプを指定してください。"
|
491 |
+
|
492 |
+
#: src/balloon/block.js:107
|
493 |
+
msgid "Serif"
|
494 |
+
msgstr "セリフ"
|
495 |
+
|
496 |
+
#: src/balloon/block.js:108
|
497 |
+
msgid "Thinking"
|
498 |
+
msgstr "吹き出し"
|
499 |
+
|
500 |
+
#: src/balloon/block.js:152
|
501 |
msgid "Icon Name"
|
502 |
msgstr "アイコンの名前"
|
503 |
|
504 |
+
#: src/balloon/block.js:161 src/button/block.js:250
|
505 |
msgid "Input text"
|
506 |
msgstr "文字を入力"
|
507 |
|
508 |
+
#: src/balloon/block.js:38
|
509 |
msgid "Ballon"
|
510 |
msgstr "フキダシ"
|
511 |
|
512 |
+
#: src/balloon/block.js:88
|
513 |
msgid "Balloon setting"
|
514 |
msgstr "フキダシ設定"
|
515 |
|
516 |
+
#: src/balloon/block.js:90 src/heading/block.js:176
|
517 |
msgid "Position"
|
518 |
msgstr "位置"
|
519 |
|
520 |
+
#: src/balloon/block.js:91
|
521 |
msgid "Please specify the layout of the balloon."
|
522 |
msgstr "吹き出しの配置を指定してください。"
|
523 |
|
524 |
+
#: src/button/block.js:149
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
msgid "Button setting"
|
526 |
msgstr "ボタン設定"
|
527 |
|
528 |
+
#: src/button/block.js:151
|
529 |
msgid "Sub Caption"
|
530 |
msgstr "サブテキスト"
|
531 |
|
532 |
+
#: src/button/block.js:157 src/pr-blocks/block.js:330
|
533 |
+
#: src/pr-content/block.js:138
|
534 |
msgid "Open link new tab."
|
535 |
msgstr "リンクを別ウィンドウで開く"
|
536 |
|
537 |
+
#: src/button/block.js:162
|
538 |
msgid "Button Size:"
|
539 |
msgstr "ボタンサイズ:"
|
540 |
|
541 |
+
#: src/button/block.js:165
|
542 |
msgid "Large"
|
543 |
msgstr "大"
|
544 |
|
545 |
+
#: src/button/block.js:167
|
546 |
msgid "Small"
|
547 |
msgstr "小"
|
548 |
|
549 |
+
#: src/button/block.js:172
|
550 |
msgid "Button Position:"
|
551 |
msgstr "ボタンの位置:"
|
552 |
|
553 |
+
#: src/button/block.js:178
|
554 |
msgid "Block"
|
555 |
msgstr "ブロック(全幅)"
|
556 |
|
557 |
+
#: src/button/block.js:183
|
558 |
msgid "Button Style:"
|
559 |
msgstr "ボタンスタイル:"
|
560 |
|
561 |
+
#: src/button/block.js:186 src/pr-blocks/block.js:361
|
562 |
msgid "Solid color"
|
563 |
msgstr "ベタ塗り"
|
564 |
|
565 |
+
#: src/button/block.js:187 src/pr-blocks/block.js:362
|
566 |
msgid "No background"
|
567 |
msgstr "背景なし"
|
568 |
|
569 |
+
#: src/button/block.js:189
|
570 |
msgid ""
|
571 |
"If you select \"No background\", that you need to select a Custom Color."
|
572 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
573 |
|
574 |
+
#: src/button/block.js:193 src/pr-content/block.js:153
|
575 |
msgid "Default Color:"
|
576 |
msgstr "標準色:"
|
577 |
|
578 |
+
#: src/button/block.js:196 src/pr-content/block.js:156
|
579 |
msgid "Primary"
|
580 |
msgstr "Primary"
|
581 |
|
582 |
+
#: src/button/block.js:197 src/pr-content/block.js:157
|
583 |
msgid "Secondary"
|
584 |
msgstr "Secondary"
|
585 |
|
586 |
+
#: src/button/block.js:198 src/pr-content/block.js:158
|
587 |
msgid "Success"
|
588 |
msgstr "Success"
|
589 |
|
590 |
+
#: src/button/block.js:199 src/pr-content/block.js:159
|
591 |
msgid "Info"
|
592 |
msgstr "Info"
|
593 |
|
594 |
+
#: src/button/block.js:200 src/pr-content/block.js:160
|
595 |
msgid "Warning"
|
596 |
msgstr "Warning"
|
597 |
|
598 |
+
#: src/button/block.js:201 src/pr-content/block.js:161
|
599 |
msgid "Danger"
|
600 |
msgstr "Danger"
|
601 |
|
602 |
+
#: src/button/block.js:202 src/pr-content/block.js:162
|
603 |
msgid "Light"
|
604 |
msgstr "Light"
|
605 |
|
606 |
+
#: src/button/block.js:203 src/pr-content/block.js:163
|
607 |
msgid "Dark"
|
608 |
msgstr "Dark"
|
609 |
|
610 |
+
#: src/button/block.js:208
|
611 |
msgid "Custom Color"
|
612 |
msgstr "カスタムカラー"
|
613 |
|
614 |
+
#: src/button/block.js:209
|
615 |
msgid ""
|
616 |
"This custom color overrides the default color. If you want to use the "
|
617 |
"default color, click the clear button."
|
619 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
620 |
"たい場合は、クリアボタンをクリックしてください。"
|
621 |
|
622 |
+
#: src/button/block.js:217 src/pr-content/block.js:174
|
623 |
msgid "Font Awesome:"
|
624 |
msgstr "Font Awesome:"
|
625 |
|
626 |
+
#: src/button/block.js:221 src/pr-content/block.js:178
|
627 |
msgid "Before text"
|
628 |
msgstr "文字の前"
|
629 |
|
630 |
+
#: src/button/block.js:222 src/pr-content/block.js:179
|
631 |
msgid ""
|
632 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
633 |
"circle-right"
|
635 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
636 |
"ます。 例) fas fa-arrow-circle-right"
|
637 |
|
638 |
+
#: src/button/block.js:228 src/pr-content/block.js:185
|
639 |
msgid "After text"
|
640 |
msgstr "文字の後"
|
641 |
|
642 |
+
#: src/button/block.js:229 src/pr-content/block.js:186
|
643 |
msgid ""
|
644 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
645 |
"external-link-alt"
|
647 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
648 |
"ます。 例) fas fa-external-link-alt"
|
649 |
|
650 |
+
#: src/button/block.js:264
|
651 |
msgid "Apply"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: src/faq/block.js:100
|
655 |
+
msgid "Please enter a answer."
|
656 |
+
msgstr "回答を入力してください。"
|
657 |
+
|
658 |
+
#: src/faq/block.js:56
|
659 |
msgid "FAQ"
|
660 |
msgstr "質問と解答"
|
661 |
|
662 |
+
#: src/faq/block.js:93
|
663 |
msgid "Please enter a question."
|
664 |
msgstr "質問を入力してください。"
|
665 |
|
|
|
|
|
|
|
|
|
666 |
#: src/flow/block.js:28
|
667 |
msgid "Flow"
|
668 |
msgstr "フロー"
|
865 |
msgid "List Icon Color"
|
866 |
msgstr "リストアイコンの色"
|
867 |
|
868 |
+
#: src/pr-blocks/block.js:190
|
869 |
msgid "PR Block1 Setting"
|
870 |
msgstr "PR Block1 設定"
|
871 |
|
872 |
+
#: src/pr-blocks/block.js:205
|
873 |
msgid "Icon 1"
|
874 |
msgstr "アイコン 1"
|
875 |
|
876 |
+
#: src/pr-blocks/block.js:238
|
877 |
msgid "PR Image 1"
|
878 |
msgstr "PR 画像 1"
|
879 |
|
880 |
+
#: src/pr-blocks/block.js:239
|
881 |
msgid "When you have an image. Image is displayed with priority"
|
882 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
883 |
|
884 |
+
#: src/pr-blocks/block.js:256
|
885 |
msgid "PR Block2 Setting"
|
886 |
msgstr "PR Block2 設定"
|
887 |
|
888 |
+
#: src/pr-blocks/block.js:271
|
889 |
msgid "Icon 2"
|
890 |
msgstr "アイコン 2"
|
891 |
|
892 |
+
#: src/pr-blocks/block.js:303
|
893 |
msgid "PR Image 2"
|
894 |
msgstr "PR 画像 2"
|
895 |
|
896 |
+
#: src/pr-blocks/block.js:321
|
897 |
msgid "PR Block3 Setting"
|
898 |
msgstr "PR Block3 設定"
|
899 |
|
900 |
+
#: src/pr-blocks/block.js:323
|
901 |
msgid "Link URL:"
|
902 |
msgstr "リンクURL:"
|
903 |
|
904 |
+
#: src/pr-blocks/block.js:336
|
905 |
msgid "Icon 3"
|
906 |
msgstr "アイコン 3"
|
907 |
|
908 |
+
#: src/pr-blocks/block.js:339
|
909 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
910 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
911 |
|
912 |
+
#: src/pr-blocks/block.js:358
|
913 |
msgid "Icon Background:"
|
914 |
msgstr "アイコン背景:"
|
915 |
|
916 |
+
#: src/pr-blocks/block.js:368
|
917 |
msgid "PR Image 3"
|
918 |
msgstr "PR 画像 3"
|
919 |
|
920 |
+
#: src/pr-blocks/block.js:369
|
921 |
msgid "When you have an image. Image is displayed with priority."
|
922 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
923 |
|
924 |
+
#: src/pr-blocks/block.js:95
|
925 |
msgid "PR Blocks"
|
926 |
msgstr "PR Blocks"
|
927 |
|
928 |
+
#: src/pr-blocks/component-block.js:164
|
929 |
#: src/pr-blocks/deprecated/component-block.js:144
|
930 |
msgid "Input Title"
|
931 |
msgstr "タイトルを入力"
|
932 |
|
933 |
+
#: src/pr-blocks/component-block.js:171
|
934 |
#: src/pr-blocks/deprecated/component-block.js:151
|
935 |
msgid "Input Content"
|
936 |
msgstr "文章を入力してください"
|
937 |
|
938 |
+
#: src/pr-content/block.js:100
|
939 |
+
msgid "Content Color"
|
940 |
+
msgstr "本文の色"
|
941 |
+
|
942 |
+
#: src/pr-content/block.js:107
|
943 |
msgid "Image Border Color"
|
944 |
msgstr "画像の線の色"
|
945 |
|
946 |
+
#: src/pr-content/block.js:116
|
947 |
msgid "Button Setting"
|
948 |
msgstr "ボタン設定"
|
949 |
|
950 |
+
#: src/pr-content/block.js:120
|
951 |
msgid "Button Text"
|
952 |
msgstr "ボタンの文字"
|
953 |
|
954 |
+
#: src/pr-content/block.js:129
|
955 |
msgid "Link URL"
|
956 |
msgstr "リンクURL"
|
957 |
|
958 |
+
#: src/pr-content/block.js:142
|
959 |
msgid "Button Type"
|
960 |
msgstr "ボタンタイプ"
|
961 |
|
962 |
+
#: src/pr-content/block.js:147
|
963 |
msgid "Ghost"
|
964 |
msgstr "ゴーストボタン"
|
965 |
|
966 |
+
#: src/pr-content/block.js:167
|
967 |
msgid "Button Color"
|
968 |
msgstr "ボタンの色"
|
969 |
|
970 |
+
#: src/pr-content/block.js:198
|
971 |
msgid "Layout Type"
|
972 |
msgstr "レイアウトタイプ"
|
973 |
|
974 |
+
#: src/pr-content/block.js:59
|
975 |
msgid "PR Content"
|
976 |
msgstr "PR Content"
|
977 |
|
978 |
+
#: src/pr-content/block.js:94
|
979 |
msgid "Title Color"
|
980 |
msgstr "見出しの色"
|
981 |
|
982 |
+
#: src/pr-content/component.js:194
|
|
|
|
|
|
|
|
|
983 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
984 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
985 |
msgid "Input title."
|
986 |
msgstr "タイトルを入力してください。"
|
987 |
|
988 |
+
#: src/pr-content/component.js:202
|
989 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
990 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
991 |
msgid "Input content."
|
992 |
msgstr "本文を入力してください。"
|
993 |
|
1083 |
msgid "Caption"
|
1084 |
msgstr "キャプション"
|
1085 |
|
1086 |
+
#, fuzzy
|
1087 |
+
#~| msgid "Icon setting"
|
1088 |
+
#~ msgid "Link settings"
|
1089 |
+
#~ msgstr "アイコン設定"
|
1090 |
+
|
1091 |
+
#~ msgid "This block is only for users who bought Lightning Pro."
|
1092 |
+
#~ msgstr "このブロックは Lightning Pro 専用です。"
|
1093 |
+
|
1094 |
#~ msgid "top-bottom-border"
|
1095 |
#~ msgstr "上下線"
|
1096 |
|
1160 |
#~ msgid "Label"
|
1161 |
#~ msgstr "ラベル"
|
1162 |
|
|
|
|
|
|
|
1163 |
#, fuzzy
|
1164 |
#~| msgid "Button Style:"
|
1165 |
#~ msgid "Icon Style:"
|
1226 |
#~ msgid "Use contents area default padding"
|
1227 |
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1228 |
|
|
|
|
|
|
|
1229 |
#~ msgid "Open url in new window"
|
1230 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1231 |
|
1244 |
|
1245 |
#~ msgid "Width Setting"
|
1246 |
#~ msgstr "幅設定"
|
|
|
|
|
|
inc/vk-blocks/package/build/languages/vk-blocks.pot
CHANGED
@@ -7,70 +7,79 @@ msgstr ""
|
|
7 |
msgid "Alert"
|
8 |
msgstr ""
|
9 |
|
10 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
#: src/flow/block.js:112
|
12 |
#: src/pr-blocks/block.js:179
|
13 |
-
#: src/pr-content/component.js:
|
14 |
#: src/pr-content/deprecated/component-deprecated.js:102
|
15 |
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
16 |
#: src/staff/component.js:88
|
17 |
msgid "Select image"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Balloon setting"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: src/balloon/block.js:
|
25 |
#: src/heading/block.js:176
|
26 |
msgid "Position"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: src/balloon/block.js:
|
30 |
msgid "Please specify the layout of the balloon."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: src/balloon/block.js:
|
34 |
#: src/button/block.js:175
|
35 |
#: src/pr-content/block.js:202
|
36 |
msgid "Left"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: src/balloon/block.js:
|
40 |
#: src/button/block.js:177
|
41 |
#: src/pr-content/block.js:201
|
42 |
msgid "Right"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: src/balloon/block.js:135
|
46 |
-
msgid "Type"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: src/balloon/block.js:136
|
50 |
-
msgid "Please select the type of balloon."
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: src/balloon/block.js:139
|
54 |
-
msgid "Serif"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: src/balloon/block.js:140
|
58 |
-
msgid "Thinking"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: src/balloon/block.js:161
|
62 |
-
msgid "Icon Name"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: src/balloon/block.js:170
|
66 |
-
#: src/button/block.js:250
|
67 |
-
msgid "Input text"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: src/balloon/block.js:32
|
71 |
-
msgid "Ballon"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
#: src/button/block.js:149
|
75 |
msgid "Button setting"
|
76 |
msgstr ""
|
@@ -229,24 +238,16 @@ msgstr ""
|
|
229 |
msgid "Button"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/faq/block.js:
|
233 |
-
msgid "
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: src/faq/block.js:79
|
237 |
-
msgid "Please enter a question."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/faq/block.js:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/
|
245 |
-
|
246 |
-
#: src/pr-content/component.js:149
|
247 |
-
#: src/pr-content/deprecated/component-deprecated.js:106
|
248 |
-
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
249 |
-
msgid "Upload image"
|
250 |
msgstr ""
|
251 |
|
252 |
#: src/flow/block.js:28
|
@@ -601,13 +602,17 @@ msgstr ""
|
|
601 |
msgid "Title Color"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: src/pr-content/component.js:
|
|
|
|
|
|
|
|
|
605 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
606 |
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
607 |
msgid "Input title."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: src/pr-content/component.js:
|
611 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
612 |
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
613 |
msgid "Input content."
|
7 |
msgid "Alert"
|
8 |
msgstr ""
|
9 |
|
10 |
+
#: src/balloon/block.js:103
|
11 |
+
msgid "Type"
|
12 |
+
msgstr ""
|
13 |
+
|
14 |
+
#: src/balloon/block.js:104
|
15 |
+
msgid "Please select the type of balloon."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/balloon/block.js:107
|
19 |
+
msgid "Serif"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/balloon/block.js:108
|
23 |
+
msgid "Thinking"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/balloon/block.js:136
|
27 |
#: src/flow/block.js:112
|
28 |
#: src/pr-blocks/block.js:179
|
29 |
+
#: src/pr-content/component.js:166
|
30 |
#: src/pr-content/deprecated/component-deprecated.js:102
|
31 |
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
32 |
#: src/staff/component.js:88
|
33 |
msgid "Select image"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: src/balloon/block.js:141
|
37 |
+
#: src/flow/block.js:113
|
38 |
+
#: src/pr-blocks/block.js:175
|
39 |
+
#: src/pr-content/component.js:173
|
40 |
+
#: src/pr-content/deprecated/component-deprecated.js:106
|
41 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
42 |
+
msgid "Upload image"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: src/balloon/block.js:152
|
46 |
+
msgid "Icon Name"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: src/balloon/block.js:161
|
50 |
+
#: src/button/block.js:250
|
51 |
+
msgid "Input text"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/balloon/block.js:38
|
55 |
+
msgid "Ballon"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: src/balloon/block.js:88
|
59 |
msgid "Balloon setting"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: src/balloon/block.js:90
|
63 |
#: src/heading/block.js:176
|
64 |
msgid "Position"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: src/balloon/block.js:91
|
68 |
msgid "Please specify the layout of the balloon."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: src/balloon/block.js:97
|
72 |
#: src/button/block.js:175
|
73 |
#: src/pr-content/block.js:202
|
74 |
msgid "Left"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: src/balloon/block.js:98
|
78 |
#: src/button/block.js:177
|
79 |
#: src/pr-content/block.js:201
|
80 |
msgid "Right"
|
81 |
msgstr ""
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
#: src/button/block.js:149
|
84 |
msgid "Button setting"
|
85 |
msgstr ""
|
238 |
msgid "Button"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: src/faq/block.js:100
|
242 |
+
msgid "Please enter a answer."
|
|
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: src/faq/block.js:56
|
246 |
+
msgid "FAQ"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: src/faq/block.js:93
|
250 |
+
msgid "Please enter a question."
|
|
|
|
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
#: src/flow/block.js:28
|
602 |
msgid "Title Color"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: src/pr-content/component.js:156
|
606 |
+
msgid "Something wrong with your image. Please insert it again."
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: src/pr-content/component.js:209
|
610 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
611 |
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
612 |
msgid "Input title."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: src/pr-content/component.js:217
|
616 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
617 |
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
618 |
msgid "Input content."
|
inc/vk-blocks/package/load-vk-components.php
CHANGED
@@ -2,6 +2,12 @@
|
|
2 |
// Boostrapの読み込み
|
3 |
function vkblocks_load_vk_components( $hook_suffix ) {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
wp_register_style( 'vk-components-style', VK_BLOCKS_URL . '/build/vk-components.css', false );
|
6 |
|
7 |
// 管理画面
|
2 |
// Boostrapの読み込み
|
3 |
function vkblocks_load_vk_components( $hook_suffix ) {
|
4 |
|
5 |
+
$template = wp_get_theme()->Template;
|
6 |
+
// lightning 系(ベクトル)の場合 vk-components はテーマなどで読み込むので必要ない
|
7 |
+
if ( $template == 'lightning' || $template == 'lightning-pro' ) {
|
8 |
+
return;
|
9 |
+
}
|
10 |
+
|
11 |
wp_register_style( 'vk-components-style', VK_BLOCKS_URL . '/build/vk-components.css', false );
|
12 |
|
13 |
// 管理画面
|
inc/vk-blocks/package/view/post-list.php
CHANGED
@@ -12,21 +12,20 @@ class VkBlocksPostList {
|
|
12 |
*/
|
13 |
public function render_post_list( $attributes ) {
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
$name = 'vk-blocks/post-list';
|
18 |
-
} else {
|
19 |
$name = esc_html( $attributes['name'] );
|
20 |
-
|
|
|
21 |
|
22 |
-
|
|
|
|
|
|
|
23 |
$wp_query = $this->get_loop_query( $attributes );
|
24 |
-
} elseif ( $name === 'vk-blocks/child-page' ) {
|
25 |
-
$wp_query = $this->get_loop_query_child( $attributes );
|
26 |
-
|
27 |
}
|
28 |
|
29 |
-
if ( $wp_query === false || $wp_query->posts === array() ) {
|
30 |
return $this->renderNoPost();
|
31 |
}
|
32 |
|
@@ -45,14 +44,20 @@ class VkBlocksPostList {
|
|
45 |
'new_date' => esc_html( $attributes['new_date'] ),
|
46 |
'btn_text' => esc_html( $attributes['btn_text'] ),
|
47 |
'btn_align' => esc_html( $attributes['btn_align'] ),
|
48 |
-
'class_outer' =>
|
49 |
'class_title' => '',
|
50 |
'body_prepend' => '',
|
51 |
'body_append' => '',
|
52 |
);
|
53 |
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
wp_reset_query();
|
58 |
wp_reset_postdata();
|
@@ -111,7 +116,7 @@ class VkBlocksPostList {
|
|
111 |
public function get_loop_query_child( $attributes ) {
|
112 |
|
113 |
// ParentIdを指定
|
114 |
-
if ( isset( $attributes['selectId'] ) ) {
|
115 |
$args = array(
|
116 |
'post_type' => 'page',
|
117 |
'paged' => 0,
|
12 |
*/
|
13 |
public function render_post_list( $attributes ) {
|
14 |
|
15 |
+
if ( isset( $attributes['name'] ) ) {
|
16 |
+
|
|
|
|
|
17 |
$name = esc_html( $attributes['name'] );
|
18 |
+
if ( $name === 'vk-blocks/child-page' ) {
|
19 |
+
$wp_query = $this->get_loop_query_child( $attributes );
|
20 |
|
21 |
+
} elseif ( $name === 'vk-blocks/post-list' ) {
|
22 |
+
$wp_query = $this->get_loop_query( $attributes );
|
23 |
+
}
|
24 |
+
} else {
|
25 |
$wp_query = $this->get_loop_query( $attributes );
|
|
|
|
|
|
|
26 |
}
|
27 |
|
28 |
+
if ( $wp_query === false || $wp_query === 'false' || $wp_query->posts === array() ) {
|
29 |
return $this->renderNoPost();
|
30 |
}
|
31 |
|
44 |
'new_date' => esc_html( $attributes['new_date'] ),
|
45 |
'btn_text' => esc_html( $attributes['btn_text'] ),
|
46 |
'btn_align' => esc_html( $attributes['btn_align'] ),
|
47 |
+
'class_outer' => VK_Component_Posts::get_col_size_classes( $attributes ),
|
48 |
'class_title' => '',
|
49 |
'body_prepend' => '',
|
50 |
'body_append' => '',
|
51 |
);
|
52 |
|
53 |
+
if ( $name === 'vk-blocks/child-page' ) {
|
54 |
+
$options_loop = array( 'class_loop_outer' => 'vk_childPage' );
|
55 |
+
|
56 |
+
} elseif ( $name === 'vk-blocks/post-list' ) {
|
57 |
+
$options_loop = array( 'class_loop_outer' => 'vk_postList' );
|
58 |
+
}
|
59 |
+
|
60 |
+
$elm = VK_Component_Posts::get_loop( $wp_query, $options, $options_loop );
|
61 |
|
62 |
wp_reset_query();
|
63 |
wp_reset_postdata();
|
116 |
public function get_loop_query_child( $attributes ) {
|
117 |
|
118 |
// ParentIdを指定
|
119 |
+
if ( isset( $attributes['selectId'] ) && $attributes['selectId'] !== 'false' ) {
|
120 |
$args = array(
|
121 |
'post_type' => 'page',
|
122 |
'paged' => 0,
|
inc/vk-blocks/package/vk-blocks-functions.php
CHANGED
@@ -1,13 +1,25 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
require_once
|
5 |
|
6 |
function vkblocks_active() {
|
7 |
return true;
|
8 |
}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
function vkblocks_blocks_assets() {
|
|
|
11 |
wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION );
|
12 |
wp_register_style( 'vk-blocks-build-editor-css', VK_BLOCKS_URL . 'build/block-build-editor.css', array(), VK_BLOCKS_VERSION );
|
13 |
|
@@ -29,7 +41,11 @@ function vkblocks_blocks_assets() {
|
|
29 |
);
|
30 |
}
|
31 |
wp_register_script(
|
32 |
-
'vk-blocks-build-js',
|
|
|
|
|
|
|
|
|
33 |
);
|
34 |
|
35 |
if ( function_exists( 'wp_set_script_translations' ) ) {
|
@@ -49,27 +65,28 @@ function vkblocks_blocks_assets() {
|
|
49 |
|
50 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
51 |
|
52 |
-
$arr = array( 'alert', 'balloon', 'button', 'faq', 'flow', 'pr-blocks', 'pr-content', 'spacer', 'heading', 'staff', 'highlighter', 'list-style', 'group-style'
|
53 |
|
54 |
foreach ( $arr as $value ) {
|
55 |
|
56 |
if ( $value === 'table-of-contents' ) {
|
57 |
|
58 |
register_block_type(
|
59 |
-
'vk-blocks/' . $value,
|
60 |
-
|
|
|
61 |
'editor_style' => 'vk-blocks-build-editor-css',
|
62 |
'editor_script' => 'vk-blocks-build-js',
|
63 |
-
'attributes' =>
|
64 |
-
'style' =>
|
65 |
'type' => 'string',
|
66 |
'default' => '',
|
67 |
-
|
68 |
-
'renderHtml' =>
|
69 |
'type' => 'string',
|
70 |
'default' => '',
|
71 |
-
|
72 |
-
|
73 |
'render_callback' => function ( $attributes ) {
|
74 |
return $attributes['renderHtml'];
|
75 |
},
|
@@ -82,10 +99,11 @@ function vkblocks_blocks_assets() {
|
|
82 |
} elseif ( $value == 'post-list' ) {
|
83 |
|
84 |
register_block_type(
|
85 |
-
'vk-blocks/' . $value,
|
|
|
86 |
'attributes' => array(
|
87 |
-
'name'
|
88 |
-
'type'
|
89 |
),
|
90 |
'layout' => array(
|
91 |
'type' => 'string',
|
@@ -121,11 +139,11 @@ function vkblocks_blocks_assets() {
|
|
121 |
),
|
122 |
'display_excerpt' => array(
|
123 |
'type' => 'boolean',
|
124 |
-
'default' =>
|
125 |
),
|
126 |
'display_date' => array(
|
127 |
'type' => 'boolean',
|
128 |
-
'default' =>
|
129 |
),
|
130 |
'display_new' => array(
|
131 |
'type' => 'boolean',
|
@@ -168,7 +186,7 @@ function vkblocks_blocks_assets() {
|
|
168 |
'default' => '[]',
|
169 |
),
|
170 |
),
|
171 |
-
'style' => 'vk-blocks-build-css',
|
172 |
'editor_style' => 'vk-blocks-build-editor-css',
|
173 |
'editor_script' => 'vk-blocks-build-js',
|
174 |
'render_callback' => 'vk_blocks_render_post_list',
|
@@ -177,39 +195,41 @@ function vkblocks_blocks_assets() {
|
|
177 |
} elseif ( $value == 'child-page' ) {
|
178 |
|
179 |
register_block_type(
|
180 |
-
'vk-blocks/' . $value,
|
|
|
181 |
'attributes' => array(
|
182 |
-
'selectId'
|
183 |
-
'type'
|
184 |
),
|
185 |
-
'name'
|
186 |
'type' => 'string',
|
|
|
187 |
),
|
188 |
-
'layout'
|
189 |
'type' => 'string',
|
190 |
-
'default' => 'card',
|
191 |
),
|
192 |
-
'col_xs'
|
193 |
'type' => 'number',
|
194 |
'default' => 1,
|
195 |
),
|
196 |
-
'col_sm'
|
197 |
'type' => 'number',
|
198 |
'default' => 2,
|
199 |
),
|
200 |
-
'col_md'
|
201 |
'type' => 'number',
|
202 |
-
'default' =>
|
203 |
),
|
204 |
-
'col_lg'
|
205 |
'type' => 'number',
|
206 |
-
'default' =>
|
207 |
),
|
208 |
-
'col_xl'
|
209 |
'type' => 'number',
|
210 |
-
'default' =>
|
211 |
),
|
212 |
-
'display_image'
|
213 |
'type' => 'boolean',
|
214 |
'default' => true,
|
215 |
),
|
@@ -217,56 +237,56 @@ function vkblocks_blocks_assets() {
|
|
217 |
'type' => 'boolean',
|
218 |
'default' => true,
|
219 |
),
|
220 |
-
'display_excerpt'
|
221 |
'type' => 'boolean',
|
222 |
'default' => true,
|
223 |
),
|
224 |
-
'display_date'
|
225 |
'type' => 'boolean',
|
226 |
'default' => false,
|
227 |
),
|
228 |
-
'display_new'
|
229 |
'type' => 'boolean',
|
230 |
-
'default' =>
|
231 |
),
|
232 |
-
'display_btn'
|
233 |
'type' => 'boolean',
|
234 |
'default' => true,
|
235 |
),
|
236 |
-
'new_date'
|
237 |
'type' => 'number',
|
238 |
'default' => 7,
|
239 |
),
|
240 |
-
'new_text'
|
241 |
'type' => 'string',
|
242 |
'default' => 'New!!',
|
243 |
),
|
244 |
-
'btn_text'
|
245 |
'type' => 'string',
|
246 |
'default' => 'Read more',
|
247 |
),
|
248 |
-
'btn_align'
|
249 |
'type' => 'string',
|
250 |
'default' => 'text-right',
|
251 |
),
|
252 |
-
'numberPosts'
|
253 |
'type' => 'number',
|
254 |
'default' => 6,
|
255 |
),
|
256 |
-
'isCheckedPostType'
|
257 |
'type' => 'string',
|
258 |
'default' => '["post"]',
|
259 |
),
|
260 |
-
'coreTerms'
|
261 |
'type' => 'string',
|
262 |
'default' => '{}',
|
263 |
),
|
264 |
-
'isCheckedTerms'
|
265 |
'type' => 'string',
|
266 |
'default' => '[]',
|
267 |
),
|
268 |
),
|
269 |
-
'style' => 'vk-blocks-build-css',
|
270 |
'editor_style' => 'vk-blocks-build-editor-css',
|
271 |
'editor_script' => 'vk-blocks-build-js',
|
272 |
'render_callback' => 'vk_blocks_render_post_list',
|
@@ -275,8 +295,9 @@ function vkblocks_blocks_assets() {
|
|
275 |
} else {
|
276 |
|
277 |
register_block_type(
|
278 |
-
'vk-blocks/' . $value,
|
279 |
-
|
|
|
280 |
'editor_style' => 'vk-blocks-build-editor-css',
|
281 |
'editor_script' => 'vk-blocks-build-js',
|
282 |
)
|
1 |
<?php
|
2 |
|
3 |
+
// サーバーサイドレンダリングスクリプトを読み込み。
|
4 |
+
require_once dirname( __FILE__ ) . '/view/post-list.php';
|
5 |
|
6 |
function vkblocks_active() {
|
7 |
return true;
|
8 |
}
|
9 |
|
10 |
+
/*
|
11 |
+
Load css
|
12 |
+
---------------------------------------------------------- */
|
13 |
+
// Load css at footer
|
14 |
+
if ( ! function_exists( 'vkblocks_add_footer_styles' ) ) {
|
15 |
+
function vkblocks_add_footer_styles() {
|
16 |
+
wp_enqueue_style( 'vk-blocks-build-css' );
|
17 |
+
};
|
18 |
+
}
|
19 |
+
add_action( 'wp_footer', 'vkblocks_add_footer_styles' );
|
20 |
+
|
21 |
function vkblocks_blocks_assets() {
|
22 |
+
|
23 |
wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION );
|
24 |
wp_register_style( 'vk-blocks-build-editor-css', VK_BLOCKS_URL . 'build/block-build-editor.css', array(), VK_BLOCKS_VERSION );
|
25 |
|
41 |
);
|
42 |
}
|
43 |
wp_register_script(
|
44 |
+
'vk-blocks-build-js',
|
45 |
+
VK_BLOCKS_URL . 'build/block-build.js',
|
46 |
+
$dependency,
|
47 |
+
VK_BLOCKS_VERSION,
|
48 |
+
true
|
49 |
);
|
50 |
|
51 |
if ( function_exists( 'wp_set_script_translations' ) ) {
|
65 |
|
66 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
67 |
|
68 |
+
$arr = array( 'alert', 'balloon', 'button', 'faq', 'flow', 'pr-blocks', 'pr-content', 'spacer', 'heading', 'staff', 'highlighter', 'list-style', 'group-style' );// REPLACE-FLAG : このコメントは削除しないで下さい。wp-create-gurten-template.shで削除する基準として左の[//REPLACE-FLAG]を使っています。
|
69 |
|
70 |
foreach ( $arr as $value ) {
|
71 |
|
72 |
if ( $value === 'table-of-contents' ) {
|
73 |
|
74 |
register_block_type(
|
75 |
+
'vk-blocks/' . $value,
|
76 |
+
array(
|
77 |
+
// 'style' => 'vk-blocks-build-css',
|
78 |
'editor_style' => 'vk-blocks-build-editor-css',
|
79 |
'editor_script' => 'vk-blocks-build-js',
|
80 |
+
'attributes' => array(
|
81 |
+
'style' => array(
|
82 |
'type' => 'string',
|
83 |
'default' => '',
|
84 |
+
),
|
85 |
+
'renderHtml' => array(
|
86 |
'type' => 'string',
|
87 |
'default' => '',
|
88 |
+
),
|
89 |
+
),
|
90 |
'render_callback' => function ( $attributes ) {
|
91 |
return $attributes['renderHtml'];
|
92 |
},
|
99 |
} elseif ( $value == 'post-list' ) {
|
100 |
|
101 |
register_block_type(
|
102 |
+
'vk-blocks/' . $value,
|
103 |
+
array(
|
104 |
'attributes' => array(
|
105 |
+
'name' => array(
|
106 |
+
'type' => 'string',
|
107 |
),
|
108 |
'layout' => array(
|
109 |
'type' => 'string',
|
139 |
),
|
140 |
'display_excerpt' => array(
|
141 |
'type' => 'boolean',
|
142 |
+
'default' => false,
|
143 |
),
|
144 |
'display_date' => array(
|
145 |
'type' => 'boolean',
|
146 |
+
'default' => true,
|
147 |
),
|
148 |
'display_new' => array(
|
149 |
'type' => 'boolean',
|
186 |
'default' => '[]',
|
187 |
),
|
188 |
),
|
189 |
+
// 'style' => 'vk-blocks-build-css',
|
190 |
'editor_style' => 'vk-blocks-build-editor-css',
|
191 |
'editor_script' => 'vk-blocks-build-js',
|
192 |
'render_callback' => 'vk_blocks_render_post_list',
|
195 |
} elseif ( $value == 'child-page' ) {
|
196 |
|
197 |
register_block_type(
|
198 |
+
'vk-blocks/' . $value,
|
199 |
+
array(
|
200 |
'attributes' => array(
|
201 |
+
'selectId' => array(
|
202 |
+
'type' => 'number',
|
203 |
),
|
204 |
+
'name' => array(
|
205 |
'type' => 'string',
|
206 |
+
'default' => '',
|
207 |
),
|
208 |
+
'layout' => array(
|
209 |
'type' => 'string',
|
210 |
+
'default' => 'card-horizontal',
|
211 |
),
|
212 |
+
'col_xs' => array(
|
213 |
'type' => 'number',
|
214 |
'default' => 1,
|
215 |
),
|
216 |
+
'col_sm' => array(
|
217 |
'type' => 'number',
|
218 |
'default' => 2,
|
219 |
),
|
220 |
+
'col_md' => array(
|
221 |
'type' => 'number',
|
222 |
+
'default' => 2,
|
223 |
),
|
224 |
+
'col_lg' => array(
|
225 |
'type' => 'number',
|
226 |
+
'default' => 2,
|
227 |
),
|
228 |
+
'col_xl' => array(
|
229 |
'type' => 'number',
|
230 |
+
'default' => 2,
|
231 |
),
|
232 |
+
'display_image' => array(
|
233 |
'type' => 'boolean',
|
234 |
'default' => true,
|
235 |
),
|
237 |
'type' => 'boolean',
|
238 |
'default' => true,
|
239 |
),
|
240 |
+
'display_excerpt' => array(
|
241 |
'type' => 'boolean',
|
242 |
'default' => true,
|
243 |
),
|
244 |
+
'display_date' => array(
|
245 |
'type' => 'boolean',
|
246 |
'default' => false,
|
247 |
),
|
248 |
+
'display_new' => array(
|
249 |
'type' => 'boolean',
|
250 |
+
'default' => false,
|
251 |
),
|
252 |
+
'display_btn' => array(
|
253 |
'type' => 'boolean',
|
254 |
'default' => true,
|
255 |
),
|
256 |
+
'new_date' => array(
|
257 |
'type' => 'number',
|
258 |
'default' => 7,
|
259 |
),
|
260 |
+
'new_text' => array(
|
261 |
'type' => 'string',
|
262 |
'default' => 'New!!',
|
263 |
),
|
264 |
+
'btn_text' => array(
|
265 |
'type' => 'string',
|
266 |
'default' => 'Read more',
|
267 |
),
|
268 |
+
'btn_align' => array(
|
269 |
'type' => 'string',
|
270 |
'default' => 'text-right',
|
271 |
),
|
272 |
+
'numberPosts' => array(
|
273 |
'type' => 'number',
|
274 |
'default' => 6,
|
275 |
),
|
276 |
+
'isCheckedPostType' => array(
|
277 |
'type' => 'string',
|
278 |
'default' => '["post"]',
|
279 |
),
|
280 |
+
'coreTerms' => array(
|
281 |
'type' => 'string',
|
282 |
'default' => '{}',
|
283 |
),
|
284 |
+
'isCheckedTerms' => array(
|
285 |
'type' => 'string',
|
286 |
'default' => '[]',
|
287 |
),
|
288 |
),
|
289 |
+
// 'style' => 'vk-blocks-build-css',
|
290 |
'editor_style' => 'vk-blocks-build-editor-css',
|
291 |
'editor_script' => 'vk-blocks-build-js',
|
292 |
'render_callback' => 'vk_blocks_render_post_list',
|
295 |
} else {
|
296 |
|
297 |
register_block_type(
|
298 |
+
'vk-blocks/' . $value,
|
299 |
+
array(
|
300 |
+
// 'style' => 'vk-blocks-build-css',
|
301 |
'editor_style' => 'vk-blocks-build-editor-css',
|
302 |
'editor_script' => 'vk-blocks-build-js',
|
303 |
)
|
inc/vk-blocks/vk-blocks-config.php
CHANGED
@@ -7,7 +7,7 @@ if ( ! function_exists( 'vkblocks_active' ) ) {
|
|
7 |
// Set asset URL.
|
8 |
define( 'VK_BLOCKS_URL', plugin_dir_url( __FILE__ ) . 'package/' );
|
9 |
// Set version number.
|
10 |
-
define( 'VK_BLOCKS_VERSION', '0.
|
11 |
|
12 |
global $vk_blocks_prefix;
|
13 |
$vk_blocks_prefix = veu_get_prefix();
|
7 |
// Set asset URL.
|
8 |
define( 'VK_BLOCKS_URL', plugin_dir_url( __FILE__ ) . 'package/' );
|
9 |
// Set version number.
|
10 |
+
define( 'VK_BLOCKS_VERSION', '0.22.0' );
|
11 |
|
12 |
global $vk_blocks_prefix;
|
13 |
$vk_blocks_prefix = veu_get_prefix();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.1.0
|
6 |
Tested up to: 5.3.0
|
7 |
-
Stable tag: 9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -93,6 +93,11 @@ e.g.
|
|
93 |
|
94 |
== Changelog ==
|
95 |
|
|
|
|
|
|
|
|
|
|
|
96 |
= 9.8.3.0 =
|
97 |
[ Design Tuning ] Add margin bottom of Related Posts
|
98 |
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.1.0
|
6 |
Tested up to: 5.3.0
|
7 |
+
Stable tag: 9.9.0.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 9.9.0.0 =
|
97 |
+
|
98 |
+
[ Specification change ] load block css awesome on footer from header
|
99 |
+
[ Specification change ] load font awesome on footer from header
|
100 |
+
|
101 |
= 9.8.3.0 =
|
102 |
[ Design Tuning ] Add margin bottom of Related Posts
|
103 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
* Version: 9.
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
@@ -14,7 +14,7 @@
|
|
14 |
*/
|
15 |
|
16 |
/*
|
17 |
-
Copyright 2015-
|
18 |
|
19 |
This program is free software; you can redistribute it and/or modify
|
20 |
it under the terms of the GNU General Public License, version 2, as
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
* Version: 9.9.0.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
14 |
*/
|
15 |
|
16 |
/*
|
17 |
+
Copyright 2015-2020 Vektor,Inc. ( email : kurudrive@gmail.com )
|
18 |
|
19 |
This program is free software; you can redistribute it and/or modify
|
20 |
it under the terms of the GNU General Public License, version 2, as
|