VK Blocks - Version 1.17.0

Version Description

[ Add Block ][ Button Outer(Pro) ]

Download this release

Release Info

Developer vektor-inc
Plugin Icon 128x128 VK Blocks
Version 1.17.0
Comparing to
See all releases

Code changes from version 1.16.11 to 1.17.0

editor-css/_editor_before.scss CHANGED
@@ -9,6 +9,7 @@
9
  .editor-block-list-item-vk-blocks-accordion:after,
10
  .editor-block-list-item-vk-blocks-slider:after,
11
  .editor-block-list-item-vk-blocks-animation:after,
 
12
  .editor-block-list-item-vk-blocks-card:after,
13
  .editor-block-list-item-vk-blocks-child-page:after,
14
  .editor-block-list-item-vk-blocks-timeline:after,
@@ -103,6 +104,8 @@ button.image-button:not(.button-delete) {
103
  @import "./editor_before_icon";
104
  // アイコン横並び編集用CSS
105
  @import "./editor_before_icons";
 
 
106
 
107
  // VK Outer 編集パネル
108
  $color-danger: #dd3333;
@@ -348,7 +351,7 @@ $color-danger: #b52727;
348
  margin:unset;
349
  padding:unset;
350
  }
351
-
352
  }
353
  }
354
 
@@ -356,7 +359,7 @@ $color-danger: #b52727;
356
 
357
  // ↓↓↓↓↓↓↓↓ これがないと wp-group に width:auto; 指定などがあって負けてしまうので、
358
  // カードブロックなどが編集画面で崩れる
359
-
360
  // .block-list-appender.wp-block はアイテム追加のインサーターのdiv
361
  .vk_posts .vk_posts-edit {
362
  &-col-xs-2 .editor-block-list__block,
9
  .editor-block-list-item-vk-blocks-accordion:after,
10
  .editor-block-list-item-vk-blocks-slider:after,
11
  .editor-block-list-item-vk-blocks-animation:after,
12
+ .editor-block-list-item-vk-blocks-button-outer:after,
13
  .editor-block-list-item-vk-blocks-card:after,
14
  .editor-block-list-item-vk-blocks-child-page:after,
15
  .editor-block-list-item-vk-blocks-timeline:after,
104
  @import "./editor_before_icon";
105
  // アイコン横並び編集用CSS
106
  @import "./editor_before_icons";
107
+ // ボタン横並び編集用CSS
108
+ @import "./editor_before_button-outer";
109
 
110
  // VK Outer 編集パネル
111
  $color-danger: #dd3333;
351
  margin:unset;
352
  padding:unset;
353
  }
354
+
355
  }
356
  }
357
 
359
 
360
  // ↓↓↓↓↓↓↓↓ これがないと wp-group に width:auto; 指定などがあって負けてしまうので、
361
  // カードブロックなどが編集画面で崩れる
362
+
363
  // .block-list-appender.wp-block はアイテム追加のインサーターのdiv
364
  .vk_posts .vk_posts-edit {
365
  &-col-xs-2 .editor-block-list__block,
editor-css/_editor_before_button-outer.scss ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // button横並びブロック
2
+ .vk_buttons {
3
+ .block-editor-inner-blocks {
4
+ width: 100%;
5
+ }
6
+
7
+ .vk_buttons_col {
8
+ display: block;
9
+ margin-left: 0;
10
+
11
+ .block-editor-block-list__layout {
12
+ display: flex;
13
+ flex-wrap: wrap;
14
+ clear: both; // To be cope with inline image float and so on.
15
+ margin-left: -8px;
16
+
17
+ .vk_button {
18
+ margin: 4px 0 4px 8px;
19
+ }
20
+ }
21
+
22
+ &-justify-left {
23
+ .block-editor-block-list__layout {
24
+ justify-content: flex-start;
25
+ }
26
+ }
27
+
28
+ &-justify-center {
29
+ .block-editor-block-list__layout {
30
+ justify-content: center;
31
+ }
32
+ }
33
+
34
+ &-justify-right {
35
+ .block-editor-block-list__layout {
36
+ justify-content: flex-end;
37
+ }
38
+ }
39
+
40
+ &-justify-space-between {
41
+ .block-editor-block-list__layout {
42
+ justify-content: space-between;
43
+ }
44
+ }
45
+ }
46
+ }
editor-css/editor-block-build-marge.scss CHANGED
@@ -34,6 +34,7 @@
34
  .editor-block-list-item-vk-blocks-accordion:after,
35
  .editor-block-list-item-vk-blocks-slider:after,
36
  .editor-block-list-item-vk-blocks-animation:after,
 
37
  .editor-block-list-item-vk-blocks-card:after,
38
  .editor-block-list-item-vk-blocks-child-page:after,
39
  .editor-block-list-item-vk-blocks-timeline:after,
@@ -128,6 +129,8 @@ button.image-button:not(.button-delete) {
128
  @import "./editor_before_icon";
129
  // アイコン横並び編集用CSS
130
  @import "./editor_before_icons";
 
 
131
 
132
  // VK Outer 編集パネル
133
  $color-danger: #dd3333;
@@ -373,7 +376,7 @@ $color-danger: #b52727;
373
  margin:unset;
374
  padding:unset;
375
  }
376
-
377
  }
378
  }
379
 
@@ -381,7 +384,7 @@ $color-danger: #b52727;
381
 
382
  // ↓↓↓↓↓↓↓↓ これがないと wp-group に width:auto; 指定などがあって負けてしまうので、
383
  // カードブロックなどが編集画面で崩れる
384
-
385
  // .block-list-appender.wp-block はアイテム追加のインサーターのdiv
386
  .vk_posts .vk_posts-edit {
387
  &-col-xs-2 .editor-block-list__block,
34
  .editor-block-list-item-vk-blocks-accordion:after,
35
  .editor-block-list-item-vk-blocks-slider:after,
36
  .editor-block-list-item-vk-blocks-animation:after,
37
+ .editor-block-list-item-vk-blocks-button-outer:after,
38
  .editor-block-list-item-vk-blocks-card:after,
39
  .editor-block-list-item-vk-blocks-child-page:after,
40
  .editor-block-list-item-vk-blocks-timeline:after,
129
  @import "./editor_before_icon";
130
  // アイコン横並び編集用CSS
131
  @import "./editor_before_icons";
132
+ // ボタン横並び編集用CSS
133
+ @import "./editor_before_button-outer";
134
 
135
  // VK Outer 編集パネル
136
  $color-danger: #dd3333;
376
  margin:unset;
377
  padding:unset;
378
  }
379
+
380
  }
381
  }
382
 
384
 
385
  // ↓↓↓↓↓↓↓↓ これがないと wp-group に width:auto; 指定などがあって負けてしまうので、
386
  // カードブロックなどが編集画面で崩れる
387
+
388
  // .block-list-appender.wp-block はアイテム追加のインサーターのdiv
389
  .vk_posts .vk_posts-edit {
390
  &-col-xs-2 .editor-block-list__block,
inc/vk-blocks/build/block-build-editor.css CHANGED
@@ -3,4 +3,4 @@
3
  * Copyright 2011-2020 The Bootstrap Authors
4
  * Copyright 2011-2020 Twitter, Inc.
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
- */.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-accordion:after,.editor-block-list-item-vk-blocks-animation:after,.editor-block-list-item-vk-blocks-card:after,.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-grid-column:after,.editor-block-list-item-vk-blocks-icon-card:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-select-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-slider:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents-new: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}.block-prop-title{font-weight:700}.components-panel__body .components-base-control__label{display:block}.components-button.block-editor-block-switcher__toggle{overflow:hidden}input[type=range]{margin:1px}button.image-button:not(.button-delete){height:100%}.components-base-control__title{padding-bottom:3px;border-bottom:1px solid #ccc;margin-bottom:1em;display:block}.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}.editor-url-input input[type=text]{width:100%}.vkb-menu__template-part .block-editor-block-preview__content{left:50%!important;margin-left:-50%!important}.vkb-menu__template-part__button{padding:0;width:100%;height:auto}.vkb-menu__template-part .vkb-menu__template-part__card__container{width:100%;height:100%;display:flex;align-items:center;justify-content:center;max-width:none}.vkb-menu__template-part .vkb-menu__template-part__card__container div[class*=vk_outer-bgPosition-]{background-attachment:unset!important}.vkb-menu__template-part .vkb-menu__template-part__card{position:relative;display:flex;justify-content:center;border:none;margin:0 0 .5em;cursor:pointer;width:90%;padding:0;background:#fff;transition:all .35s ease;border:none}.vkb-menu__template-part .vkb-menu__template-part__card .editor-styles-wrapper .block-editor-block-list__block{margin-top:0;margin-bottom:0}.vkb-menu__template-part .vkb-menu__template-part__card .content{width:100%;max-width:100%}.vkb-menu__template-part .vkb-menu__template-part__card .content h6{color:#666;font-weight:600;text-transform:uppercase;margin:0 0 1em;letter-spacing:2px;text-align:center}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content{overflow:auto;border-radius:5px;border:1px solid #e5e5e5}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content div.inner{color:#6e6e70;line-height:1.4em;overflow:hidden}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content .edit-post-visual-editor{position:initial;padding-top:0}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content:hover{border:1px solid #007cba}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content .block-editor-block-preview__content{width:720px!important;transform:scale(.35)!important}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .logo{margin-bottom:.5em}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .hover_content{max-height:none;height:100%;transform:none}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .hover_content .inner{width:100%;height:auto}.vkb-menu__template-part__button #vkb-menu__template-part__card0 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card1 .inner{height:50px}.vkb-menu__template-part__button #vkb-menu__template-part__card2 .inner{height:120px}.vkb-menu__template-part__button #vkb-menu__template-part__card3 .inner{height:92px}.vkb-menu__template-part__button #vkb-menu__template-part__card4 .inner{height:73px}.vkb-menu__template-part__button #vkb-menu__template-part__card5 .inner{height:95px}.vkb-menu__template-part__button #vkb-menu__template-part__card6 .inner{height:115px}.vkb-menu__template-part__button #vkb-menu__template-part__card7 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card8 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card9 .inner{height:75px}.vkb-menu__template-part__button #vkb-menu__template-part__card10 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card11 .inner{height:65px}.vk-blocks-advanced-popover-control .components-popover__content{min-width:260px;margin-left:-46px!important;padding:20px 15px}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list{margin-top:5px}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field{display:flex;flex-wrap:wrap}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option{border:1px solid #666;width:38px;height:38px;border-radius:3px;margin-right:7px;position:relative}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option input{display:none}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option .svg-inline--fa,.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option i{font-size:1.5em;position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.wp-block[data-type="vk-blocks/balloon"]::after{content:"";display:block;clear:both}.vk_balloon figure,.vk_balloon p.wp-block{width:100%}.vk_balloon_icon button.image-button{height:auto}.icon-image-list{display:flex;flex-wrap:wrap}.icon-image-list div{width:calc((100% - (10px * 4))/ 5);margin:5px}.icon-image-list div:nth-child(5n+1){margin-left:0}.icon-image-list div:nth-child(5n){margin-right:0}.wp-core-ui .icon-image-list .button.button-large{padding:0;margin:0;width:40px;height:40px;object-fit:cover;border-radius:50%}.wp-core-ui .icon-image-list .button.button-large img{width:38px;height:38px;object-fit:cover;border-radius:50%}.wp-block-vk-blocks-button.block-editor-block-list__block.wp-block.vk_button.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button .btn.has-vk-color-primary-background-color{background-color:var(--vk-color-primary)}.vk_button .btn.has-vk-color-secondary-background-color{background-color:#6c757d}.vk_button .btn.has-vk-color-success-background-color{background-color:#28a745}.vk_button .btn.has-vk-color-info-background-color{background-color:#17a2b8}.vk_button .btn.has-vk-color-warning-background-color{background-color:#ffc107}.vk_button .btn.has-vk-color-danger-background-color{background-color:#dc3545}.vk_button .btn.has-vk-color-light-background-color{background-color:#f8f9fa}.vk_button .btn.has-vk-color-dark-background-color{background-color:#343a40}.vk_button .btn.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .btn.has-vk-color-secondary-color{color:#6c757d}.vk_button .btn.has-vk-color-success-color{color:#28a745}.vk_button .btn.has-vk-color-info-color{color:#17a2b8}.vk_button .btn.has-vk-color-warning-color{color:#ffc107}.vk_button .btn.has-vk-color-danger-color{color:#dc3545}.vk_button .btn.has-vk-color-light-color{color:#f8f9fa}.vk_button .btn.has-vk-color-dark-color{color:#343a40}.vk_button .btn.has-background{color:#fff}.vk_button .btn.has-background.has-vk-color-light-background-color,.vk_button .btn.has-background.has-white-background-color{color:#212529}.editor-styles-wrapper .wp-block-table tfoot{border-top:1px solid var(--vk-color-border-hr)}.vk_borderBox_body>.block-editor-inner-blocks>.block-editor-block-list__layout>:first-child{margin-top:0}.vk_borderBox_body>.block-editor-inner-blocks>.block-editor-block-list__layout>:last-child{margin-bottom:0}.vk_icon.wp-block{margin-top:0;margin-bottom:0}.components-panel__body .vk_icon_custombox{display:inline-flex;justify-content:flex-start;align-items:flex-start;width:100%}.components-panel__body .vk_icon_custombox_number{flex:1 1 0%;margin-left:8px;height:30px}.components-panel__body .vk_icon_custombox_number input{height:30px;min-height:30px}.components-panel__body .vk_icon_custombox_unit{width:64px!important;margin-left:8px}.components-panel__body .vk_icon_custombox_reset.is-secondary{height:30px;margin-left:8px}.vk_icons .block-editor-inner-blocks{width:100%}.vk_icons .vk_icons_col{display:block;margin-left:0}.vk_icons .vk_icons_col .block-editor-block-list__layout{display:flex;flex-wrap:wrap;clear:both;margin-left:-8px}.vk_icons .vk_icons_col .block-editor-block-list__layout .vk_icon{margin:4px 0 4px 8px}.vk_icons .vk_icons_col-justify-left .block-editor-block-list__layout{justify-content:flex-start}.vk_icons .vk_icons_col-justify-center .block-editor-block-list__layout{justify-content:center}.vk_icons .vk_icons_col-justify-right .block-editor-block-list__layout{justify-content:flex-end}.vk_icons .vk_icons_col-justify-space-between .block-editor-block-list__layout{justify-content:space-between}.vk_outer_sidebar_bgImage{position:relative}.vk_outer_sidebar_bgImage .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.vk_outer_sidebar_bgImage .button-delete{opacity:0;border:1px solid #d33;color:#d33;transition:all 1s}.vk_outer_sidebar_bgImage .button-delete:hover{background-color:#d33;border:1px solid #b72a2a;color:#fff}.vk_outer_sidebar_bgImage:hover .button-delete{transition:all 1s;opacity:1}.vk_slider_item_sidebar_bgImage_button_container img{min-width:248px}.mb-2+div.components-toolbar{margin-top:0!important}.components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block,.edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block{max-width:100%}.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"],.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"]{max-width:100%}.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-use .wp-block,.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-zero .wp-block,.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-use .wp-block,.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-zero .wp-block{max-width:100%}.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use,.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero{margin-left:calc(50% - 50vw + 140px);margin-right:calc(50% - 50vw + 140px)}.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block{max-width:100%}.is-sidebar-opened .components-tab-panel__tab-content .vk_slider.vk_width-full,.is-sidebar-opened .edit-post-visual-editor .vk_slider.vk_width-full{margin-left:calc(50% - 50vw + 140px);margin-right:calc(50% - 50vw + 140px);padding-right:0;padding-left:0;width:calc(100vw - 280px)}.components-tab-panel__tab-content .vk_animation,.components-tab-panel__tab-content .vk_slider,.components-tab-panel__tab-content .vk_slider_item,.components-tab-panel__tab-content .vk_spacer,.edit-post-visual-editor .vk_animation,.edit-post-visual-editor .vk_slider,.edit-post-visual-editor .vk_slider_item,.edit-post-visual-editor .vk_spacer{border:1px dotted #ccc}.components-tab-panel__tab-content .vk_slider_item,.edit-post-visual-editor .vk_slider_item{min-height:3em}.components-tab-panel__tab-content .vk_slider_item .block-editor-inner-blocks,.edit-post-visual-editor .vk_slider_item .block-editor-inner-blocks{width:100%}.components-tab-panel__tab-content div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent,.edit-post-visual-editor div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent{border:1px dotted #ccc;opacity:.5}.components-tab-panel__tab-content div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent_editBtn,.edit-post-visual-editor div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent_editBtn{position:absolute;z-index:9999;top:-3em;right:0}.components-tab-panel__tab-content .vk_selectPostList-edit .block-editor-inner-blocks,.edit-post-visual-editor .vk_selectPostList-edit .block-editor-inner-blocks{width:100%}.components-tab-panel__tab-content .vk_selectPostList-edit .block-editor-block-list__layout,.edit-post-visual-editor .vk_selectPostList-edit .block-editor-block-list__layout{margin-left:-15px;margin-right:-15px;display:flex;flex-wrap:wrap;clear:both}.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block,.edit-post-visual-editor .vk_selectPostList-edit .wp-block{margin-left:15px;margin-right:15px}.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block .vk_post,.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block>div,.edit-post-visual-editor .vk_selectPostList-edit .wp-block .vk_post,.edit-post-visual-editor .vk_selectPostList-edit .wp-block>div{width:100%;margin:0;height:100%}.components-tab-panel__tab-content .vk_selectPostList-edit .block-list-appender.wp-block,.edit-post-visual-editor .vk_selectPostList-edit .block-list-appender.wp-block{border:1px solid #ccc;min-height:4em}.components-tab-panel__tab-content .vk_selectPostList-edit .block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_selectPostList-edit .block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .vk_selectPostList-edit-col-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-2 .wp-block{width:calc(16.6667% - 30px)}@media (min-width:576px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:768px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:992px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:1400px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-2 .wp-block{width:calc(16.6667% - 30px)}}.components-tab-panel__tab-content .vk_animation,.edit-post-visual-editor .vk_animation{border:1px dashed #ccc;min-height:3em}.components-tab-panel__tab-content .vk_animation.wp-block-vk-blocks-animation,.edit-post-visual-editor .vk_animation.wp-block-vk-blocks-animation{opacity:1}.components-tab-panel__tab-content .vk_animation:before,.edit-post-visual-editor .vk_animation:before{position:absolute;right:0;top:0;font-size:10px;background:#eee;padding:.2em .6em;z-index:1000}.components-tab-panel__tab-content .vk_animation.vk_animation-fade-in,.edit-post-visual-editor .vk_animation.vk_animation-fade-in{left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-fade-in:before,.edit-post-visual-editor .vk_animation.vk_animation-fade-in:before{content:'Fade in'}.components-tab-panel__tab-content .vk_animation.vk_animation-up-down,.edit-post-visual-editor .vk_animation.vk_animation-up-down{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-up-down:before,.edit-post-visual-editor .vk_animation.vk_animation-up-down:before{content:'Up Down'}.components-tab-panel__tab-content .vk_animation.vk_animation-left-right,.edit-post-visual-editor .vk_animation.vk_animation-left-right{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-left-right:before,.edit-post-visual-editor .vk_animation.vk_animation-left-right:before{content:'Left Right'}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-x,.edit-post-visual-editor .vk_animation.vk_animation-trembling-x{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-x:before,.edit-post-visual-editor .vk_animation.vk_animation-trembling-x:before{content:'Trembring X'}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-y,.edit-post-visual-editor .vk_animation.vk_animation-trembling-y{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-y:before,.edit-post-visual-editor .vk_animation.vk_animation-trembling-y:before{content:'Trembring Y'}.components-tab-panel__tab-content .vk_animation.vk_animation-pounding,.edit-post-visual-editor .vk_animation.vk_animation-pounding{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-pounding:before,.edit-post-visual-editor .vk_animation.vk_animation-pounding:before{content:'Pounding'}.components-tab-panel__tab-content .vk_animation.vk_animation-shaking,.edit-post-visual-editor .vk_animation.vk_animation-shaking{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-shaking:before,.edit-post-visual-editor .vk_animation.vk_animation-shaking:before{content:'Shaking'}.components-tab-panel__tab-content .vk_animation.vk_animation-slow-shaking,.edit-post-visual-editor .vk_animation.vk_animation-slow-shaking{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slow-shaking:before,.edit-post-visual-editor .vk_animation.vk_animation-slow-shaking:before{content:'Slow Shaking'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-short{right:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-short:before{content:'Slide left'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-short{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-short:before{content:'Slide right'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-short{top:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-short:before{content:'Slide up'}.components-tab-panel__tab-content .wp-block-vk-blocks-icon-card .vk_icon-card_item_title,.edit-post-visual-editor .wp-block-vk-blocks-icon-card .vk_icon-card_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;font-size:21px;line-height:1.4em;border:none;border-radius:unset;padding:0;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;display:block}.components-tab-panel__tab-content .wp-block-vk-blocks-icon-card .vk_icon-card_item_title a,.edit-post-visual-editor .wp-block-vk-blocks-icon-card .vk_icon-card_item_title a{color:var(--vk-color-text-body)}.components-tab-panel__tab-content h1:first-child.vk_prBlocks_item_title,.edit-post-visual-editor h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.components-tab-panel__tab-content .vk_prContent_colTxt_title,.edit-post-visual-editor .vk_prContent_colTxt_title{border:none}.components-tab-panel__tab-content .vk_prContent_colTxt_title::after,.edit-post-visual-editor .vk_prContent_colTxt_title::after{display:none}.components-tab-panel__tab-content .postList_itemCard_button-option,.edit-post-visual-editor .postList_itemCard_button-option{margin-bottom:5px}.components-tab-panel__tab-content .vk_post_imgOuter,.edit-post-visual-editor .vk_post_imgOuter{position:relative}.components-tab-panel__tab-content .vk_post_imgOuter .components-button,.edit-post-visual-editor .vk_post_imgOuter .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.components-tab-panel__tab-content .vk_post_imgOuter .button-delete,.edit-post-visual-editor .vk_post_imgOuter .button-delete{opacity:0;border:1px solid #b52727;color:#b52727;transition:all 1s}.components-tab-panel__tab-content .vk_post_imgOuter .button-delete:hover,.edit-post-visual-editor .vk_post_imgOuter .button-delete:hover{background-color:#b52727;color:#fff}.components-tab-panel__tab-content .vk_post_imgOuter:hover .button-delete,.edit-post-visual-editor .vk_post_imgOuter:hover .button-delete{transition:all 1s;opacity:1}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit{width:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__layout,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__layout{display:flex;flex-wrap:wrap;padding:0;width:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block{margin:0 15px 30px;padding:0}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block.has-background,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block.has-background,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block.has-background,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block.has-background{padding:1.25em 2.375em}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit{margin:0;height:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block],.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block]{margin:0;height:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block>.vk_post,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block>.vk_post,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block>.vk_post,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block>.vk_post{width:100%;height:100%;margin-top:0}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block{border:1px dashed #ccc;margin:0 15px 30px;padding:0;min-height:100px}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block:hover,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block:hover,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block:hover,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block:hover{border-style:solid;border-color:#007cba}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block{border:unset;border-radius:unset;margin:unset;padding:unset}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block{width:calc(100% - 30px)}@media (min-width:576px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:768px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:992px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .editor-block-list__block{width:calc(100% - 30px)}}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout{border:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-list-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-list-appender{height:100px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout{display:unset;flex-direction:unset;flex-wrap:unset}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout.wp-block-social-links,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout.wp-block-social-links{display:flex;flex-direction:row;flex-wrap:wrap}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block{flex:inherit;margin:0 15px 15px;padding:0;outline:1px dashed #ccc;transition:1s}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:active,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:focus,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:hover,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:active,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:focus,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:hover{outline:1px solid #555d66}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block .wp-block-vk-blocks-grid-column-item,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block .wp-block-vk-blocks-grid-column-item{padding:0;width:100%}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}@media (min-width:576px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:768px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:992px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:1200px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:1200px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block{border:1px dashed #ccc;margin:0 15px 15px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block:hover,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block:hover{border-style:solid;border-color:#007cba}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-list-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-list-appender{width:100%}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column div[data-type="vk-blocks/grid-column-item"],.edit-post-visual-editor .wp-block-vk-blocks-grid-column div[data-type="vk-blocks/grid-column-item"]{min-height:30px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .block-editor-block-list__layout{margin-left:0;margin-right:0}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=left],.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=right],.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=left],.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=right]{height:auto}.components-tab-panel__tab-content .vk_edit_hidden_warning,.edit-post-visual-editor .vk_edit_hidden_warning{opacity:.4}.components-tab-panel__tab-content .vk_edit_hidden_all,.edit-post-visual-editor .vk_edit_hidden_all{opacity:.2}.components-tab-panel__tab-content .vk_icon-card_item_title,.edit-post-visual-editor .vk_icon-card_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;font-size:21px;line-height:1.4em;border:none;border-radius:unset;padding:0;outline:unset;outline-offset:unset;box-shadow:unset;color:inherit;display:block}.components-tab-panel__tab-content .vk_icon-card_item_title::before,.edit-post-visual-editor .vk_icon-card_item_title::before{content:none}.components-tab-panel__tab-content .vk_icon-card_item_title::after,.edit-post-visual-editor .vk_icon-card_item_title::after{border:none}.components-tab-panel__tab-content .wp-block.vk_posts,.components-tab-panel__tab-content .wp-block.vk_prBlocks,.edit-post-visual-editor .wp-block.vk_posts,.edit-post-visual-editor .wp-block.vk_prBlocks{margin-left:auto;margin-right:auto}.components-tab-panel__tab-content .vk_tableOfContents_openCloseBtn,.edit-post-visual-editor .vk_tableOfContents_openCloseBtn{display:block}.components-tab-panel__tab-content .vk_hidden,.edit-post-visual-editor .vk_hidden{display:block!important;color:var(--blue)}.components-tab-panel__tab-content .vk_hidden.vk_posts,.edit-post-visual-editor .vk_hidden.vk_posts{display:flex!important}@media (max-width:575.98px){.components-tab-panel__tab-content .vk_hidden-xs,.edit-post-visual-editor .vk_hidden-xs{display:block!important}.components-tab-panel__tab-content .vk_hidden-xs.vk_posts,.edit-post-visual-editor .vk_hidden-xs.vk_posts{display:flex!important}}@media (min-width:576px) and (max-width:767.98px){.components-tab-panel__tab-content .vk_hidden-sm,.edit-post-visual-editor .vk_hidden-sm{display:block!important}.components-tab-panel__tab-content .vk_hidden-sm.vk_posts,.edit-post-visual-editor .vk_hidden-sm.vk_posts{display:flex!important}}@media (min-width:768px) and (max-width:991.98px){.components-tab-panel__tab-content .vk_hidden-md,.edit-post-visual-editor .vk_hidden-md{display:block!important}.components-tab-panel__tab-content .vk_hidden-md.vk_posts,.edit-post-visual-editor .vk_hidden-md.vk_posts{display:flex!important}}@media (min-width:992px) and (max-width:1199.98px){.components-tab-panel__tab-content .vk_hidden-lg,.edit-post-visual-editor .vk_hidden-lg{display:block!important}.components-tab-panel__tab-content .vk_hidden-lg.vk_posts,.edit-post-visual-editor .vk_hidden-lg.vk_posts{display:flex!important}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_hidden-xl,.edit-post-visual-editor .vk_hidden-xl{display:block!important}.components-tab-panel__tab-content .vk_hidden-xl.vk_posts,.edit-post-visual-editor .vk_hidden-xl.vk_posts{display:flex!important}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_hidden-xxl,.edit-post-visual-editor .vk_hidden-xxl{display:block!important}.components-tab-panel__tab-content .vk_hidden-xxl.vk_posts,.edit-post-visual-editor .vk_hidden-xxl.vk_posts{display:flex!important}}
3
  * Copyright 2011-2020 The Bootstrap Authors
4
  * Copyright 2011-2020 Twitter, Inc.
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-accordion:after,.editor-block-list-item-vk-blocks-animation:after,.editor-block-list-item-vk-blocks-button-outer:after,.editor-block-list-item-vk-blocks-card:after,.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-grid-column:after,.editor-block-list-item-vk-blocks-icon-card:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-select-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-slider:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents-new: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}.block-prop-title{font-weight:700}.components-panel__body .components-base-control__label{display:block}.components-button.block-editor-block-switcher__toggle{overflow:hidden}input[type=range]{margin:1px}button.image-button:not(.button-delete){height:100%}.components-base-control__title{padding-bottom:3px;border-bottom:1px solid #ccc;margin-bottom:1em;display:block}.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}.editor-url-input input[type=text]{width:100%}.vkb-menu__template-part .block-editor-block-preview__content{left:50%!important;margin-left:-50%!important}.vkb-menu__template-part__button{padding:0;width:100%;height:auto}.vkb-menu__template-part .vkb-menu__template-part__card__container{width:100%;height:100%;display:flex;align-items:center;justify-content:center;max-width:none}.vkb-menu__template-part .vkb-menu__template-part__card__container div[class*=vk_outer-bgPosition-]{background-attachment:unset!important}.vkb-menu__template-part .vkb-menu__template-part__card{position:relative;display:flex;justify-content:center;border:none;margin:0 0 .5em;cursor:pointer;width:90%;padding:0;background:#fff;transition:all .35s ease;border:none}.vkb-menu__template-part .vkb-menu__template-part__card .editor-styles-wrapper .block-editor-block-list__block{margin-top:0;margin-bottom:0}.vkb-menu__template-part .vkb-menu__template-part__card .content{width:100%;max-width:100%}.vkb-menu__template-part .vkb-menu__template-part__card .content h6{color:#666;font-weight:600;text-transform:uppercase;margin:0 0 1em;letter-spacing:2px;text-align:center}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content{overflow:auto;border-radius:5px;border:1px solid #e5e5e5}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content div.inner{color:#6e6e70;line-height:1.4em;overflow:hidden}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content .edit-post-visual-editor{position:initial;padding-top:0}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content:hover{border:1px solid #007cba}.vkb-menu__template-part .vkb-menu__template-part__card .content .hover_content .block-editor-block-preview__content{width:720px!important;transform:scale(.35)!important}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .logo{margin-bottom:.5em}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .hover_content{max-height:none;height:100%;transform:none}.vkb-menu__template-part .vkb-menu__template-part__card .content:hover .hover_content .inner{width:100%;height:auto}.vkb-menu__template-part__button #vkb-menu__template-part__card0 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card1 .inner{height:50px}.vkb-menu__template-part__button #vkb-menu__template-part__card2 .inner{height:120px}.vkb-menu__template-part__button #vkb-menu__template-part__card3 .inner{height:92px}.vkb-menu__template-part__button #vkb-menu__template-part__card4 .inner{height:73px}.vkb-menu__template-part__button #vkb-menu__template-part__card5 .inner{height:95px}.vkb-menu__template-part__button #vkb-menu__template-part__card6 .inner{height:115px}.vkb-menu__template-part__button #vkb-menu__template-part__card7 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card8 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card9 .inner{height:75px}.vkb-menu__template-part__button #vkb-menu__template-part__card10 .inner{height:100px}.vkb-menu__template-part__button #vkb-menu__template-part__card11 .inner{height:65px}.vk-blocks-advanced-popover-control .components-popover__content{min-width:260px;margin-left:-46px!important;padding:20px 15px}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list{margin-top:5px}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field{display:flex;flex-wrap:wrap}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option{border:1px solid #666;width:38px;height:38px;border-radius:3px;margin-right:7px;position:relative}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option input{display:none}.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option .svg-inline--fa,.vk-blocks-advanced-popover-control .components-popover__content .vk_icon_list .components-base-control__field .components-radio-control__option i{font-size:1.5em;position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.wp-block[data-type="vk-blocks/balloon"]::after{content:"";display:block;clear:both}.vk_balloon figure,.vk_balloon p.wp-block{width:100%}.vk_balloon_icon button.image-button{height:auto}.icon-image-list{display:flex;flex-wrap:wrap}.icon-image-list div{width:calc((100% - (10px * 4))/ 5);margin:5px}.icon-image-list div:nth-child(5n+1){margin-left:0}.icon-image-list div:nth-child(5n){margin-right:0}.wp-core-ui .icon-image-list .button.button-large{padding:0;margin:0;width:40px;height:40px;object-fit:cover;border-radius:50%}.wp-core-ui .icon-image-list .button.button-large img{width:38px;height:38px;object-fit:cover;border-radius:50%}.wp-block-vk-blocks-button.block-editor-block-list__block.wp-block.vk_button.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button .btn.has-vk-color-primary-background-color{background-color:var(--vk-color-primary)}.vk_button .btn.has-vk-color-secondary-background-color{background-color:#6c757d}.vk_button .btn.has-vk-color-success-background-color{background-color:#28a745}.vk_button .btn.has-vk-color-info-background-color{background-color:#17a2b8}.vk_button .btn.has-vk-color-warning-background-color{background-color:#ffc107}.vk_button .btn.has-vk-color-danger-background-color{background-color:#dc3545}.vk_button .btn.has-vk-color-light-background-color{background-color:#f8f9fa}.vk_button .btn.has-vk-color-dark-background-color{background-color:#343a40}.vk_button .btn.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .btn.has-vk-color-secondary-color{color:#6c757d}.vk_button .btn.has-vk-color-success-color{color:#28a745}.vk_button .btn.has-vk-color-info-color{color:#17a2b8}.vk_button .btn.has-vk-color-warning-color{color:#ffc107}.vk_button .btn.has-vk-color-danger-color{color:#dc3545}.vk_button .btn.has-vk-color-light-color{color:#f8f9fa}.vk_button .btn.has-vk-color-dark-color{color:#343a40}.vk_button .btn.has-background{color:#fff}.vk_button .btn.has-background.has-vk-color-light-background-color,.vk_button .btn.has-background.has-white-background-color{color:#212529}.editor-styles-wrapper .wp-block-table tfoot{border-top:1px solid var(--vk-color-border-hr)}.vk_borderBox_body>.block-editor-inner-blocks>.block-editor-block-list__layout>:first-child{margin-top:0}.vk_borderBox_body>.block-editor-inner-blocks>.block-editor-block-list__layout>:last-child{margin-bottom:0}.vk_icon.wp-block{margin-top:0;margin-bottom:0}.components-panel__body .vk_icon_custombox{display:inline-flex;justify-content:flex-start;align-items:flex-start;width:100%}.components-panel__body .vk_icon_custombox_number{flex:1 1 0%;margin-left:8px;height:30px}.components-panel__body .vk_icon_custombox_number input{height:30px;min-height:30px}.components-panel__body .vk_icon_custombox_unit{width:64px!important;margin-left:8px}.components-panel__body .vk_icon_custombox_reset.is-secondary{height:30px;margin-left:8px}.vk_icons .block-editor-inner-blocks{width:100%}.vk_icons .vk_icons_col{display:block;margin-left:0}.vk_icons .vk_icons_col .block-editor-block-list__layout{display:flex;flex-wrap:wrap;clear:both;margin-left:-8px}.vk_icons .vk_icons_col .block-editor-block-list__layout .vk_icon{margin:4px 0 4px 8px}.vk_icons .vk_icons_col-justify-left .block-editor-block-list__layout{justify-content:flex-start}.vk_icons .vk_icons_col-justify-center .block-editor-block-list__layout{justify-content:center}.vk_icons .vk_icons_col-justify-right .block-editor-block-list__layout{justify-content:flex-end}.vk_icons .vk_icons_col-justify-space-between .block-editor-block-list__layout{justify-content:space-between}.vk_buttons .block-editor-inner-blocks{width:100%}.vk_buttons .vk_buttons_col{display:block;margin-left:0}.vk_buttons .vk_buttons_col .block-editor-block-list__layout{display:flex;flex-wrap:wrap;clear:both;margin-left:-8px}.vk_buttons .vk_buttons_col .block-editor-block-list__layout .vk_button{margin:4px 0 4px 8px}.vk_buttons .vk_buttons_col-justify-left .block-editor-block-list__layout{justify-content:flex-start}.vk_buttons .vk_buttons_col-justify-center .block-editor-block-list__layout{justify-content:center}.vk_buttons .vk_buttons_col-justify-right .block-editor-block-list__layout{justify-content:flex-end}.vk_buttons .vk_buttons_col-justify-space-between .block-editor-block-list__layout{justify-content:space-between}.vk_outer_sidebar_bgImage{position:relative}.vk_outer_sidebar_bgImage .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.vk_outer_sidebar_bgImage .button-delete{opacity:0;border:1px solid #d33;color:#d33;transition:all 1s}.vk_outer_sidebar_bgImage .button-delete:hover{background-color:#d33;border:1px solid #b72a2a;color:#fff}.vk_outer_sidebar_bgImage:hover .button-delete{transition:all 1s;opacity:1}.vk_slider_item_sidebar_bgImage_button_container img{min-width:248px}.mb-2+div.components-toolbar{margin-top:0!important}.components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block,.edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block{max-width:100%}.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"],.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"]{max-width:100%}.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-use .wp-block,.components-tab-panel__tab-content .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-zero .wp-block,.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-use .wp-block,.edit-post-visual-editor .vk_width-full div[data-type="vk-blocks/slider-item"] .vk_slider_item-paddingLR-zero .wp-block{max-width:100%}.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use,.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero{margin-left:calc(50% - 50vw + 140px);margin-right:calc(50% - 50vw + 140px)}.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.is-sidebar-opened .components-tab-panel__tab-content .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-use .wp-block,.is-sidebar-opened .edit-post-visual-editor .vk_outer-width-full.vk_outer-paddingLR-zero .wp-block{max-width:100%}.is-sidebar-opened .components-tab-panel__tab-content .vk_slider.vk_width-full,.is-sidebar-opened .edit-post-visual-editor .vk_slider.vk_width-full{margin-left:calc(50% - 50vw + 140px);margin-right:calc(50% - 50vw + 140px);padding-right:0;padding-left:0;width:calc(100vw - 280px)}.components-tab-panel__tab-content .vk_animation,.components-tab-panel__tab-content .vk_slider,.components-tab-panel__tab-content .vk_slider_item,.components-tab-panel__tab-content .vk_spacer,.edit-post-visual-editor .vk_animation,.edit-post-visual-editor .vk_slider,.edit-post-visual-editor .vk_slider_item,.edit-post-visual-editor .vk_spacer{border:1px dotted #ccc}.components-tab-panel__tab-content .vk_slider_item,.edit-post-visual-editor .vk_slider_item{min-height:3em}.components-tab-panel__tab-content .vk_slider_item .block-editor-inner-blocks,.edit-post-visual-editor .vk_slider_item .block-editor-inner-blocks{width:100%}.components-tab-panel__tab-content div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent,.edit-post-visual-editor div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent{border:1px dotted #ccc;opacity:.5}.components-tab-panel__tab-content div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent_editBtn,.edit-post-visual-editor div[data-type="vk-blocks/page-content"].is-selected .vk_pageContent_editBtn{position:absolute;z-index:9999;top:-3em;right:0}.components-tab-panel__tab-content .vk_selectPostList-edit .block-editor-inner-blocks,.edit-post-visual-editor .vk_selectPostList-edit .block-editor-inner-blocks{width:100%}.components-tab-panel__tab-content .vk_selectPostList-edit .block-editor-block-list__layout,.edit-post-visual-editor .vk_selectPostList-edit .block-editor-block-list__layout{margin-left:-15px;margin-right:-15px;display:flex;flex-wrap:wrap;clear:both}.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block,.edit-post-visual-editor .vk_selectPostList-edit .wp-block{margin-left:15px;margin-right:15px}.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block .vk_post,.components-tab-panel__tab-content .vk_selectPostList-edit .wp-block>div,.edit-post-visual-editor .vk_selectPostList-edit .wp-block .vk_post,.edit-post-visual-editor .vk_selectPostList-edit .wp-block>div{width:100%;margin:0;height:100%}.components-tab-panel__tab-content .vk_selectPostList-edit .block-list-appender.wp-block,.edit-post-visual-editor .vk_selectPostList-edit .block-list-appender.wp-block{border:1px solid #ccc;min-height:4em}.components-tab-panel__tab-content .vk_selectPostList-edit .block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_selectPostList-edit .block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .vk_selectPostList-edit-col-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-2 .wp-block{width:calc(16.6667% - 30px)}@media (min-width:576px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-sm-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-sm-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:768px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-md-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-md-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:992px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-lg-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-lg-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xl-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xl-2 .wp-block{width:calc(16.6667% - 30px)}}@media (min-width:1400px){.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-12 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-12 .wp-block{width:calc(100% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-6 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-6 .wp-block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-4 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-4 .wp-block{width:calc(33.3333% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-3 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-3 .wp-block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_selectPostList-edit-col-xxl-2 .wp-block,.edit-post-visual-editor .vk_selectPostList-edit-col-xxl-2 .wp-block{width:calc(16.6667% - 30px)}}.components-tab-panel__tab-content .vk_animation,.edit-post-visual-editor .vk_animation{border:1px dashed #ccc;min-height:3em}.components-tab-panel__tab-content .vk_animation.wp-block-vk-blocks-animation,.edit-post-visual-editor .vk_animation.wp-block-vk-blocks-animation{opacity:1}.components-tab-panel__tab-content .vk_animation:before,.edit-post-visual-editor .vk_animation:before{position:absolute;right:0;top:0;font-size:10px;background:#eee;padding:.2em .6em;z-index:1000}.components-tab-panel__tab-content .vk_animation.vk_animation-fade-in,.edit-post-visual-editor .vk_animation.vk_animation-fade-in{left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-fade-in:before,.edit-post-visual-editor .vk_animation.vk_animation-fade-in:before{content:'Fade in'}.components-tab-panel__tab-content .vk_animation.vk_animation-up-down,.edit-post-visual-editor .vk_animation.vk_animation-up-down{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-up-down:before,.edit-post-visual-editor .vk_animation.vk_animation-up-down:before{content:'Up Down'}.components-tab-panel__tab-content .vk_animation.vk_animation-left-right,.edit-post-visual-editor .vk_animation.vk_animation-left-right{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-left-right:before,.edit-post-visual-editor .vk_animation.vk_animation-left-right:before{content:'Left Right'}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-x,.edit-post-visual-editor .vk_animation.vk_animation-trembling-x{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-x:before,.edit-post-visual-editor .vk_animation.vk_animation-trembling-x:before{content:'Trembring X'}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-y,.edit-post-visual-editor .vk_animation.vk_animation-trembling-y{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-trembling-y:before,.edit-post-visual-editor .vk_animation.vk_animation-trembling-y:before{content:'Trembring Y'}.components-tab-panel__tab-content .vk_animation.vk_animation-pounding,.edit-post-visual-editor .vk_animation.vk_animation-pounding{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-pounding:before,.edit-post-visual-editor .vk_animation.vk_animation-pounding:before{content:'Pounding'}.components-tab-panel__tab-content .vk_animation.vk_animation-shaking,.edit-post-visual-editor .vk_animation.vk_animation-shaking{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-shaking:before,.edit-post-visual-editor .vk_animation.vk_animation-shaking:before{content:'Shaking'}.components-tab-panel__tab-content .vk_animation.vk_animation-slow-shaking,.edit-post-visual-editor .vk_animation.vk_animation-slow-shaking{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slow-shaking:before,.edit-post-visual-editor .vk_animation.vk_animation-slow-shaking:before{content:'Slow Shaking'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-short{right:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-left.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-left.vk_animation-range-short:before{content:'Slide left'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-short{right:0;left:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-right.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-right.vk_animation-range-short:before{content:'Slide right'}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-long,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-normal,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-short,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-long,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-normal,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-short{top:0}.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-long:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-normal:before,.components-tab-panel__tab-content .vk_animation.vk_animation-slide-up.vk_animation-range-short:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-long:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-normal:before,.edit-post-visual-editor .vk_animation.vk_animation-slide-up.vk_animation-range-short:before{content:'Slide up'}.components-tab-panel__tab-content .wp-block-vk-blocks-icon-card .vk_icon-card_item_title,.edit-post-visual-editor .wp-block-vk-blocks-icon-card .vk_icon-card_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;font-size:21px;line-height:1.4em;border:none;border-radius:unset;padding:0;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;display:block}.components-tab-panel__tab-content .wp-block-vk-blocks-icon-card .vk_icon-card_item_title a,.edit-post-visual-editor .wp-block-vk-blocks-icon-card .vk_icon-card_item_title a{color:var(--vk-color-text-body)}.components-tab-panel__tab-content h1:first-child.vk_prBlocks_item_title,.edit-post-visual-editor h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.components-tab-panel__tab-content .vk_prContent_colTxt_title,.edit-post-visual-editor .vk_prContent_colTxt_title{border:none}.components-tab-panel__tab-content .vk_prContent_colTxt_title::after,.edit-post-visual-editor .vk_prContent_colTxt_title::after{display:none}.components-tab-panel__tab-content .postList_itemCard_button-option,.edit-post-visual-editor .postList_itemCard_button-option{margin-bottom:5px}.components-tab-panel__tab-content .vk_post_imgOuter,.edit-post-visual-editor .vk_post_imgOuter{position:relative}.components-tab-panel__tab-content .vk_post_imgOuter .components-button,.edit-post-visual-editor .vk_post_imgOuter .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.components-tab-panel__tab-content .vk_post_imgOuter .button-delete,.edit-post-visual-editor .vk_post_imgOuter .button-delete{opacity:0;border:1px solid #b52727;color:#b52727;transition:all 1s}.components-tab-panel__tab-content .vk_post_imgOuter .button-delete:hover,.edit-post-visual-editor .vk_post_imgOuter .button-delete:hover{background-color:#b52727;color:#fff}.components-tab-panel__tab-content .vk_post_imgOuter:hover .button-delete,.edit-post-visual-editor .vk_post_imgOuter:hover .button-delete{transition:all 1s;opacity:1}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit{width:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__layout,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__layout{display:flex;flex-wrap:wrap;padding:0;width:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block{margin:0 15px 30px;padding:0}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block.has-background,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block.has-background,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block.has-background,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block.has-background{padding:1.25em 2.375em}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit{margin:0;height:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block],.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block]{margin:0;height:100%}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block>.vk_post,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block>.vk_post,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block>.vk_post,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block>.vk_post{width:100%;height:100%;margin-top:0}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block{border:1px dashed #ccc;margin:0 15px 30px;padding:0;min-height:100px}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block:hover,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block:hover,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block:hover,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block:hover{border-style:solid;border-color:#007cba}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .block-editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block,.edit-post-visual-editor .vk_posts>.vk_posts-edit .editor-block-list__block+.block-list-appender.wp-block .block-editor-inner-blocks .block-list-appender.wp-block{border:unset;border-radius:unset;margin:unset;padding:unset}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block{width:calc(100% - 30px)}@media (min-width:576px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:768px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:992px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-lg-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-lg-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xl-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xl-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-2 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-2 .editor-block-list__block{width:calc(16.66% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-3 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-3 .editor-block-list__block{width:calc(25% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-4 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-4 .editor-block-list__block{width:calc(33.3% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-6 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-6 .editor-block-list__block{width:calc(50% - 30px)}.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.components-tab-panel__tab-content .vk_posts .vk_posts-edit-col-xxl-12 .editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .block-editor-block-list__block+.block-list-appender.wp-block,.edit-post-visual-editor .vk_posts .vk_posts-edit-col-xxl-12 .editor-block-list__block{width:calc(100% - 30px)}}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout{border:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-list-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-list-appender{height:100px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout{display:unset;flex-direction:unset;flex-wrap:unset}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout.wp-block-social-links,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .block-editor-inner-blocks .block-editor-block-list__layout.wp-block-social-links{display:flex;flex-direction:row;flex-wrap:wrap}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block{flex:inherit;margin:0 15px 15px;padding:0;outline:1px dashed #ccc;transition:1s}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:active,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:focus,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:hover,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:active,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:focus,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block:hover{outline:1px solid #555d66}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block .wp-block-vk-blocks-grid-column-item,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout div[class*=col-].block-editor-block-list__block .wp-block-vk-blocks-grid-column-item{padding:0;width:100%}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xs-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}@media (min-width:576px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-sm-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:768px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-md-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:992px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-lg-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:1200px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xl-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}@media (min-width:1200px){.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-2+.block-list-appender.wp-block{width:calc(16.66% - 30px);max-width:var(--vk-width-couter-col-2)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-3+.block-list-appender.wp-block{width:calc(25% - 30px);max-width:var(--vk-width-couter-col-3)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-4+.block-list-appender.wp-block{width:calc(33.3% - 30px);max-width:var(--vk-width-couter-col-4)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-6+.block-list-appender.wp-block{width:calc(50% - 30px);max-width:var(--vk-width-couter-col-6)}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12,.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout>.col-xxl-12+.block-list-appender.wp-block{width:calc(100% - 30px);max-width:var(--vk-width-couter-col-12)}}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block{border:1px dashed #ccc;margin:0 15px 15px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block:hover,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block:hover{border-style:solid;border-color:#007cba}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block .block-editor-button-block-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-vk-blocks-grid-column-item+.block-list-appender.wp-block .block-editor-button-block-appender{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .block-list-appender,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .block-list-appender{width:100%}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column div[data-type="vk-blocks/grid-column-item"],.edit-post-visual-editor .wp-block-vk-blocks-grid-column div[data-type="vk-blocks/grid-column-item"]{min-height:30px}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .block-editor-block-list__layout,.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .block-editor-block-list__layout{margin-left:0;margin-right:0}.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=left],.components-tab-panel__tab-content .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=right],.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=left],.edit-post-visual-editor .wp-block-vk-blocks-grid-column .wp-block-vk-blocks-grid-column-item .wp-block[data-align=right]{height:auto}.components-tab-panel__tab-content .vk_edit_hidden_warning,.edit-post-visual-editor .vk_edit_hidden_warning{opacity:.4}.components-tab-panel__tab-content .vk_edit_hidden_all,.edit-post-visual-editor .vk_edit_hidden_all{opacity:.2}.components-tab-panel__tab-content .vk_icon-card_item_title,.edit-post-visual-editor .vk_icon-card_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;font-size:21px;line-height:1.4em;border:none;border-radius:unset;padding:0;outline:unset;outline-offset:unset;box-shadow:unset;color:inherit;display:block}.components-tab-panel__tab-content .vk_icon-card_item_title::before,.edit-post-visual-editor .vk_icon-card_item_title::before{content:none}.components-tab-panel__tab-content .vk_icon-card_item_title::after,.edit-post-visual-editor .vk_icon-card_item_title::after{border:none}.components-tab-panel__tab-content .wp-block.vk_posts,.components-tab-panel__tab-content .wp-block.vk_prBlocks,.edit-post-visual-editor .wp-block.vk_posts,.edit-post-visual-editor .wp-block.vk_prBlocks{margin-left:auto;margin-right:auto}.components-tab-panel__tab-content .vk_tableOfContents_openCloseBtn,.edit-post-visual-editor .vk_tableOfContents_openCloseBtn{display:block}.components-tab-panel__tab-content .vk_hidden,.edit-post-visual-editor .vk_hidden{display:block!important;color:var(--blue)}.components-tab-panel__tab-content .vk_hidden.vk_posts,.edit-post-visual-editor .vk_hidden.vk_posts{display:flex!important}@media (max-width:575.98px){.components-tab-panel__tab-content .vk_hidden-xs,.edit-post-visual-editor .vk_hidden-xs{display:block!important}.components-tab-panel__tab-content .vk_hidden-xs.vk_posts,.edit-post-visual-editor .vk_hidden-xs.vk_posts{display:flex!important}}@media (min-width:576px) and (max-width:767.98px){.components-tab-panel__tab-content .vk_hidden-sm,.edit-post-visual-editor .vk_hidden-sm{display:block!important}.components-tab-panel__tab-content .vk_hidden-sm.vk_posts,.edit-post-visual-editor .vk_hidden-sm.vk_posts{display:flex!important}}@media (min-width:768px) and (max-width:991.98px){.components-tab-panel__tab-content .vk_hidden-md,.edit-post-visual-editor .vk_hidden-md{display:block!important}.components-tab-panel__tab-content .vk_hidden-md.vk_posts,.edit-post-visual-editor .vk_hidden-md.vk_posts{display:flex!important}}@media (min-width:992px) and (max-width:1199.98px){.components-tab-panel__tab-content .vk_hidden-lg,.edit-post-visual-editor .vk_hidden-lg{display:block!important}.components-tab-panel__tab-content .vk_hidden-lg.vk_posts,.edit-post-visual-editor .vk_hidden-lg.vk_posts{display:flex!important}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_hidden-xl,.edit-post-visual-editor .vk_hidden-xl{display:block!important}.components-tab-panel__tab-content .vk_hidden-xl.vk_posts,.edit-post-visual-editor .vk_hidden-xl.vk_posts{display:flex!important}}@media (min-width:1200px){.components-tab-panel__tab-content .vk_hidden-xxl,.edit-post-visual-editor .vk_hidden-xxl{display:block!important}.components-tab-panel__tab-content .vk_hidden-xxl.vk_posts,.edit-post-visual-editor .vk_hidden-xxl.vk_posts{display:flex!important}}
inc/vk-blocks/build/block-build.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-rich-text', 'wp-server-side-render'), 'version' => '25093332656d52cb2db367bfbf843aeb');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-rich-text', 'wp-server-side-render'), 'version' => 'e2be2359ddd8da753b20f5e7283b13fe');
inc/vk-blocks/build/block-build.css CHANGED
@@ -6,7 +6,7 @@
6
 
7
  :root{--vk-color-border-red: #dc3545;--vk-color-background-red: #dc3545;--vk-color-border-orange: #ffa536;--vk-color-background-orange: #ffa536;--vk-color-border-blue: #4267b2;--vk-color-background-blue: #4267b2;--vk-color-border-green: #28a745;--vk-color-background-green: #28a745;--vk-color-border-black: #222;--vk-color-background-black: #222}.vk_borderBox-color-red{border-color:var(--vk-color-border-red);background-color:var(--vk-color-background-red)}.vk_borderBox-color-orange{border-color:var(--vk-color-border-orange);background-color:var(--vk-color-background-orange)}.vk_borderBox-color-blue{border-color:var(--vk-color-border-blue);background-color:var(--vk-color-background-blue)}.vk_borderBox-color-green{border-color:var(--vk-color-border-green);background-color:var(--vk-color-background-green)}.vk_borderBox-color-black{border-color:var(--vk-color-border-black);background-color:var(--vk-color-background-black)}.vk_borderBox-background-transparent .vk_borderBox_body{background-color:transparent}.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox{background-color:transparent}.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{background-color:transparent}.vk_borderBox-background-white .vk_borderBox_body{background-color:#fff}.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox{background-color:#fff}.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{background-color:#fff}.vk_borderBox{margin:0 auto 2em;position:relative}.vk_borderBox .vk_borderBox_title_container{margin:0;font-size:1em;line-height:1.4;padding:0.5em 1.5em 0.4em;font-weight:bold}.vk_borderBox .vk_borderBox_title_container i:first-child,.vk_borderBox .vk_borderBox_title_container .svg-inline--fa{margin-right:5px}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{display:inline;font-weight:bold;font-size:1em;color:inherit;background:none;padding:0;border:none;outline:none}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title::before{content:none}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title::after{content:none}.vk_borderBox .vk_borderBox_body{padding:1.5em;border-width:2px;border-style:solid}@media (min-width: 992px){.vk_borderBox .vk_borderBox_body{padding:2.1875em 2em 2em}}.vk_borderBox .vk_borderBox_body>*:first-child{margin-top:0}.vk_borderBox .vk_borderBox_body>*:last-child{margin-bottom:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{display:inline-block}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{border-radius:8px 8px 0 0}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_body{border-radius:0 8px 8px 8px}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature{background-color:transparent;border-width:2px;border-style:solid}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{padding:1.5em 1.5em 1em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_body{border:none;padding-top:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{position:relative;padding-top:2.2em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container::after{content:"";position:absolute;top:-32%;left:1.5em;padding:1.4em;border-radius:50%;border:solid 2px #fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.svg-inline--fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fab,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fas,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.far,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fal,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fad{position:absolute;font-size:1.3em;margin-right:0;z-index:100;top:0%;left:2.3em;transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%)}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container{position:relative;top:-1.2em;left:1em;z-index:1;display:inline-block;padding:0.5em 0.5em;background:#fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-banner{border:none;background-color:transparent}.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{color:#fff}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_body{border-color:var(--vk-color-border-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_body{border-color:var(--vk-color-border-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_body{border-color:var(--vk-color-border-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_body{border-color:var(--vk-color-border-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container{background-color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_body{border-color:var(--vk-color-border-black)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container{color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container{color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container{color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container{color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container{color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .fas{color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container::after{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-orange);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container::after{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-blue);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container::after{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-green);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container::after{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-black);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container::after{background-color:var(--vk-color-background-black)}
8
 
9
- :root .has-vk-color-primary-background-color{background-color:var(--vk-color-primary)}:root .has-vk-color-secondary-background-color{background-color:#6c757d}:root .has-vk-color-success-background-color{background-color:#28a745}:root .has-vk-color-info-background-color{background-color:#17a2b8}:root .has-vk-color-warning-background-color{background-color:#ffc107}:root .has-vk-color-danger-background-color{background-color:#dc3545}:root .has-vk-color-light-background-color{background-color:#f8f9fa}:root .has-vk-color-dark-background-color{background-color:#343a40}:root .has-vk-color-primary-color{color:var(--vk-color-primary)}:root .has-vk-color-secondary-color{color:#6c757d}:root .has-vk-color-success-color{color:#28a745}:root .has-vk-color-info-color{color:#17a2b8}:root .has-vk-color-warning-color{color:#ffc107}:root .has-vk-color-danger-color{color:#dc3545}:root .has-vk-color-light-color{color:#f8f9fa}:root .has-vk-color-dark-color{color:#343a40}.vk_button{margin:0 auto 5px;text-align:center}.vk_button-color-custom a:hover{opacity:0.8;-webkit-box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25);box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25)}.vk_button .has-background{color:#fff}.vk_button .has-background.has-vk-color-light-background-color,.vk_button .has-background.has-white-background-color{color:#212529}.vk_button .has-text-color.is-style-outline{background-color:transparent;border:1px solid currentColor}.vk_button .has-text-color.is-style-outline:hover{background-color:currentColor;border:1px solid currentColor}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-secondary-color{color:#6c757d}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-success-color{color:#28a745}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-info-color{color:#17a2b8}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-warning-color{color:#ffc107}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-danger-color{color:#dc3545}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-light-color{color:#f8f9fa}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-dark-color{color:#343a40}.vk_button .has-text-color.is-style-outline:hover.has-black-color{color:#000000}.vk_button .has-text-color.is-style-outline:hover.has-cyan-bluish-gray-color{color:#abb8c3}.vk_button .has-text-color.is-style-outline:hover.has-white-color{color:#ffffff}.vk_button .has-text-color.is-style-outline:hover.has-pale-pink-color{color:#f78da7}.vk_button .has-text-color.is-style-outline:hover.has-vivid-red-color{color:#cf2e2e}.vk_button .has-text-color.is-style-outline:hover.has-luminous-vivid-orange-color{color:#ff6900}.vk_button .has-text-color.is-style-outline:hover.has-luminous-vivid-amber-color{color:#fcb900}.vk_button .has-text-color.is-style-outline:hover.has-light-green-cyan-color{color:#7bdcb5}.vk_button .has-text-color.is-style-outline:hover.has-vivid-green-cyan-color{color:#00d084}.vk_button .has-text-color.is-style-outline:hover.has-pale-cyan-blue-color{color:#8ed1fc}.vk_button .has-text-color.is-style-outline:hover.has-vivid-cyan-blue-color{color:#0693e3}.vk_button .has-text-color.is-style-outline:hover.has-vivid-purple-color{color:#9b51e0}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-primary-dark-color{color:var(--vk-color-primary-dark)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-primary-vivid-color{color:var(--vk-color-primary-vivid)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-custom-1-color{color:var(--vk-color-custom-1)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-custom-2-color{color:var(--vk-color-custom-2)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-custom-3-color{color:var(--vk-color-custom-3)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-custom-4-color{color:var(--vk-color-custom-4)}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-custom-5-color{color:var(--vk-color-custom-5)}.vk_button .has-text-color.is-style-outline:hover .vk_button_link_before,.vk_button .has-text-color.is-style-outline:hover .vk_button_link_txt,.vk_button .has-text-color.is-style-outline:hover .vk_button_link_after,.vk_button .has-text-color.is-style-outline:hover .vk_button_link_subCaption{color:#fff}.vk_button .has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_before,.vk_button .has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_txt,.vk_button .has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_after,.vk_button .has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_subCaption,.vk_button .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_before,.vk_button .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_txt,.vk_button .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_after,.vk_button .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_subCaption{color:#212529}.vk_button .has-text-color.vk_button_link-type-text:hover{background-color:currentColor}.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption{color:#fff}.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_subCaption,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_subCaption{color:#212529}.vk_button.vk_button-align-left{text-align:left}.vk_button.vk_button-align-center{text-align:center}.vk_button.vk_button-align-right{text-align:right}.vk_button.vk_button-align-block{display:block}.vk_button.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button.vk_button-align-wide .vk_button_btn,.vk_button.vk_button-align-wide .btn{display:block}.vk_button .vk_button_link{min-width:100px;min-height:30px}.vk_button .vk_button_link-type-text{-webkit-box-shadow:none;box-shadow:none;padding:0}.vk_button .vk_button_link-type-text:hover{background:none;-webkit-box-shadow:none;box-shadow:none}.vk_button .vk_button_link.btn{padding-top:0.6em;padding-bottom:0.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;text-decoration:none;font-size:calc( var(--vk-size-text) * 1)}.vk_button .vk_button_link.btn-lg{font-size:calc( var(--vk-size-text) * 1.25)}.vk_button .vk_button_link.btn-sm{font-size:calc( var(--vk-size-text) * .875)}.vk_button .vk_button_link_before{margin-right:0.7rem}.vk_button .vk_button_link_after{margin-left:0.7rem}.vk_button .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.vk_button .editor-rich-text{display:inline-block}.vk_button-color-custom .vk_button_link-type-text:hover{-webkit-box-shadow:none;box-shadow:none}
10
 
11
  :root{--vk-color-border: rgba(0,0,0,.12)}.is-style-vk_faq-normal .vk_faq_title:before{color:#e50000}.is-style-vk_faq-normal .vk_faq_content:before{color:#337ab7}.is-style-vk_faq-bgfill-circle .vk_faq_title:before,.is-style-vk_faq-bgfill-square .vk_faq_title:before,.is-style-vk_faq-bgfill-rounded .vk_faq_title:before{background-color:#e50000;color:#fff !important}.is-style-vk_faq-bgfill-circle .vk_faq_content:before,.is-style-vk_faq-bgfill-square .vk_faq_content:before,.is-style-vk_faq-bgfill-rounded .vk_faq_content:before{background-color:#337ab7;color:#fff !important}.is-style-vk_faq-bgfill-circle .vk_faq_title:before,.is-style-vk_faq-bgfill-circle .vk_faq_content:before,.is-style-vk_faq-border-circle .vk_faq_title:before,.is-style-vk_faq-border-circle .vk_faq_content:before{border-radius:50%}.is-style-vk_faq-bgfill-rounded .vk_faq_title:before,.is-style-vk_faq-bgfill-rounded .vk_faq_content:before,.is-style-vk_faq-border-rounded .vk_faq_title:before,.is-style-vk_faq-border-rounded .vk_faq_content:before{border-radius:4px}.is-style-vk_faq-border-circle .vk_faq_title:before,.is-style-vk_faq-border-square .vk_faq_title:before,.is-style-vk_faq-border-rounded .vk_faq_title:before{border:1px solid #e50000;color:#e50000}.is-style-vk_faq-border-circle .vk_faq_content:before,.is-style-vk_faq-border-square .vk_faq_content:before,.is-style-vk_faq-border-rounded .vk_faq_content:before{border:1px solid #337ab7;color:#337ab7}.vk_faq{display:block;overflow:hidden;border-bottom:1px solid var(--vk-color-border);padding:0px 0px 1rem;margin:0 auto 1rem auto;width:100%;position:relative}.vk_faq .vk_faq_title{border:none;padding:0.8rem 0.8rem 0.8rem 3rem;margin:0;position:relative;font-weight:bold;font-size:16px;border-bottom:1px dotted var(--vk-color-border)}.vk_faq .vk_faq_title:before{position:absolute;left:0;top:0.7rem;font-weight:500;font-size:22px;line-height:105%;width:2.1rem;height:2.1rem;line-height:2.1rem;text-align:center;position:absolute;font-family:"areal"}.vk_faq .vk_faq_title p:first-of-type{margin-top:0}.vk_faq .vk_faq_title p:last-child{margin-bottom:0}.vk_faq .vk_faq_title:before{content:"Q";color:#e50000;font-weight:500}.vk_faq .vk_faq_title p{line-height:1.7}@media (min-width: 768px){.vk_faq .vk_faq_title{font-size:18px}}.vk_faq .vk_faq_content{border:none;padding:0.8rem 0.8rem 0.8rem 3rem;margin:0;position:relative;font-weight:normal;-webkit-transition:.25s;transition:.25s}.vk_faq .vk_faq_content:before{position:absolute;left:0;top:0.7rem;font-weight:500;font-size:22px;line-height:105%;width:2.1rem;height:2.1rem;line-height:2.1rem;text-align:center;position:absolute;font-family:"areal"}.vk_faq .vk_faq_content p:first-of-type{margin-top:0}.vk_faq .vk_faq_content p:last-child{margin-bottom:0}.vk_faq .vk_faq_content:before{content:"A";color:#337ab7}.vk_faq.vk_faq-accordion-close,.vk_faq.vk_faq-accordion-open{padding-bottom:0;margin-bottom:0}.vk_faq.vk_faq-accordion-close .vk_faq-body,.vk_faq.vk_faq-accordion-open .vk_faq-body{margin-top:0;margin-bottom:0}.vk_faq.vk_faq-accordion-close .vk_faq_title,.vk_faq.vk_faq-accordion-open .vk_faq_title{padding-right:2rem}@media (min-width: 768px){.vk_faq.vk_faq-accordion-close .vk_faq_title,.vk_faq.vk_faq-accordion-open .vk_faq_title{padding-right:2.5rem}}.vk_faq.vk_faq-accordion-close .vk_faq_title::after,.vk_faq.vk_faq-accordion-open .vk_faq_title::after{position:absolute;top:50%;right:unset;right:2.5rem;content:"";width:8px;height:8px;border-right:1px solid #222;border-top:1px solid #222;transition:border-color .3s ease,-webkit-transform .6s ease;-webkit-transition:border-color .3s ease,-webkit-transform .6s ease;transition:border-color .3s ease,transform .6s ease;transition:border-color .3s ease,transform .6s ease,-webkit-transform .6s ease}.vk_faq.vk_faq-accordion-close .vk_faq_title{border-bottom:none}.vk_faq.vk_faq-accordion-close .vk_faq_title::after{-webkit-transform:translate(32px, -5px) rotate(135deg);transform:translate(32px, -5px) rotate(135deg)}.vk_faq.vk_faq-accordion-open .vk_faq_title::after{-webkit-transform:translate(32px, -2px) rotate(-45deg);transform:translate(32px, -2px) rotate(-45deg)}.vk_faq.vk_faq-accordion .vk_faq_title{cursor:pointer}.vk_faq .vk_faq_content-accordion-open{height:auto;overflow:hidden;opacity:1;-webkit-transition:.25s;transition:.25s;margin-bottom:10px}.vk_faq .vk_faq_content-accordion-close{padding-top:0;padding-bottom:0;height:0;opacity:0;overflow:hidden}.editor-styles-wrapper .vk_faq .block-editor-inner-blocks div.block-editor-block-list__block:not(.is_hovered){margin-top:0;margin-bottom:0}.editor-styles-wrapper .vk_faq .block-editor-inner-blocks .wp-block:not(.is_hovered){width:100%}
12
 
6
 
7
  :root{--vk-color-border-red: #dc3545;--vk-color-background-red: #dc3545;--vk-color-border-orange: #ffa536;--vk-color-background-orange: #ffa536;--vk-color-border-blue: #4267b2;--vk-color-background-blue: #4267b2;--vk-color-border-green: #28a745;--vk-color-background-green: #28a745;--vk-color-border-black: #222;--vk-color-background-black: #222}.vk_borderBox-color-red{border-color:var(--vk-color-border-red);background-color:var(--vk-color-background-red)}.vk_borderBox-color-orange{border-color:var(--vk-color-border-orange);background-color:var(--vk-color-background-orange)}.vk_borderBox-color-blue{border-color:var(--vk-color-border-blue);background-color:var(--vk-color-background-blue)}.vk_borderBox-color-green{border-color:var(--vk-color-border-green);background-color:var(--vk-color-background-green)}.vk_borderBox-color-black{border-color:var(--vk-color-border-black);background-color:var(--vk-color-background-black)}.vk_borderBox-background-transparent .vk_borderBox_body{background-color:transparent}.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox{background-color:transparent}.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox-background-transparent.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{background-color:transparent}.vk_borderBox-background-white .vk_borderBox_body{background-color:#fff}.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox{background-color:#fff}.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox-background-white.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{background-color:#fff}.vk_borderBox{margin:0 auto 2em;position:relative}.vk_borderBox .vk_borderBox_title_container{margin:0;font-size:1em;line-height:1.4;padding:0.5em 1.5em 0.4em;font-weight:bold}.vk_borderBox .vk_borderBox_title_container i:first-child,.vk_borderBox .vk_borderBox_title_container .svg-inline--fa{margin-right:5px}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{display:inline;font-weight:bold;font-size:1em;color:inherit;background:none;padding:0;border:none;outline:none}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title::before{content:none}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title::after{content:none}.vk_borderBox .vk_borderBox_body{padding:1.5em;border-width:2px;border-style:solid}@media (min-width: 992px){.vk_borderBox .vk_borderBox_body{padding:2.1875em 2em 2em}}.vk_borderBox .vk_borderBox_body>*:first-child{margin-top:0}.vk_borderBox .vk_borderBox_body>*:last-child{margin-bottom:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{display:inline-block}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{border-radius:8px 8px 0 0}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_body{border-radius:0 8px 8px 8px}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature{background-color:transparent;border-width:2px;border-style:solid}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{padding:1.5em 1.5em 1em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_body{border:none;padding-top:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{position:relative;padding-top:2.2em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container::after{content:"";position:absolute;top:-32%;left:1.5em;padding:1.4em;border-radius:50%;border:solid 2px #fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.svg-inline--fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fab,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fas,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.far,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fal,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container>.fad{position:absolute;font-size:1.3em;margin-right:0;z-index:100;top:0%;left:2.3em;transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%)}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container{position:relative;top:-1.2em;left:1em;z-index:1;display:inline-block;padding:0.5em 0.5em;background:#fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-banner{border:none;background-color:transparent}.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{color:#fff}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_body{border-color:var(--vk-color-border-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_body{border-color:var(--vk-color-border-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_body{border-color:var(--vk-color-border-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_body{border-color:var(--vk-color-border-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container{background-color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_body{border-color:var(--vk-color-border-black)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container{color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container{color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container{color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container{color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container{color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .fas{color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container::after{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-orange);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container::after{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-blue);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container::after{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-green);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container::after{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-black);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container::after{background-color:var(--vk-color-background-black)}
8
 
9
+ :root .has-vk-color-primary-background-color,:root .editor-styles-wrapper .has-vk-color-primary-background-color{background-color:var(--vk-color-primary)}:root .has-vk-color-secondary-background-color,:root .editor-styles-wrapper .has-vk-color-secondary-background-color{background-color:#6c757d}:root .has-vk-color-success-background-color,:root .editor-styles-wrapper .has-vk-color-success-background-color{background-color:#28a745}:root .has-vk-color-info-background-color,:root .editor-styles-wrapper .has-vk-color-info-background-color{background-color:#17a2b8}:root .has-vk-color-warning-background-color,:root .editor-styles-wrapper .has-vk-color-warning-background-color{background-color:#ffc107}:root .has-vk-color-danger-background-color,:root .editor-styles-wrapper .has-vk-color-danger-background-color{background-color:#dc3545}:root .has-vk-color-light-background-color,:root .editor-styles-wrapper .has-vk-color-light-background-color{background-color:#f8f9fa}:root .has-vk-color-dark-background-color,:root .editor-styles-wrapper .has-vk-color-dark-background-color{background-color:#343a40}:root .has-vk-color-primary-color,:root .editor-styles-wrapper .has-vk-color-primary-color{color:var(--vk-color-primary)}:root .has-vk-color-secondary-color,:root .editor-styles-wrapper .has-vk-color-secondary-color{color:#6c757d}:root .has-vk-color-success-color,:root .editor-styles-wrapper .has-vk-color-success-color{color:#28a745}:root .has-vk-color-info-color,:root .editor-styles-wrapper .has-vk-color-info-color{color:#17a2b8}:root .has-vk-color-warning-color,:root .editor-styles-wrapper .has-vk-color-warning-color{color:#ffc107}:root .has-vk-color-danger-color,:root .editor-styles-wrapper .has-vk-color-danger-color{color:#dc3545}:root .has-vk-color-light-color,:root .editor-styles-wrapper .has-vk-color-light-color{color:#f8f9fa}:root .has-vk-color-dark-color,:root .editor-styles-wrapper .has-vk-color-dark-color{color:#343a40}.vk_button,.editor-styles-wrapper .vk_button{margin:0 auto 5px;text-align:center}.vk_button-color-custom a:hover,.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:0.8;-webkit-box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25);box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25)}.vk_button-color-custom .vk_button_link-type-text:hover,.editor-styles-wrapper .vk_button-color-custom .vk_button_link-type-text:hover{-webkit-box-shadow:none;box-shadow:none}.vk_button .btn.has-background,.editor-styles-wrapper .vk_button .btn.has-background{color:#fff}.vk_button .btn.has-background.has-vk-color-light-background-color,.vk_button .btn.has-background.has-white-background-color,.editor-styles-wrapper .vk_button .btn.has-background.has-vk-color-light-background-color,.editor-styles-wrapper .vk_button .btn.has-background.has-white-background-color{color:#212529}.vk_button .btn.has-text-color.is-style-outline,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline{background-color:transparent;border:1px solid currentColor}.vk_button .btn.has-text-color.is-style-outline:hover,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover{background-color:currentColor;border:1px solid currentColor}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-secondary-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-secondary-color{color:#6c757d}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-success-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-success-color{color:#28a745}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-info-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-info-color{color:#17a2b8}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-warning-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-warning-color{color:#ffc107}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-danger-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-danger-color{color:#dc3545}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color{color:#f8f9fa}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-dark-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-dark-color{color:#343a40}.vk_button .btn.has-text-color.is-style-outline:hover.has-black-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-black-color{color:#000000}.vk_button .btn.has-text-color.is-style-outline:hover.has-cyan-bluish-gray-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-cyan-bluish-gray-color{color:#abb8c3}.vk_button .btn.has-text-color.is-style-outline:hover.has-white-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-white-color{color:#ffffff}.vk_button .btn.has-text-color.is-style-outline:hover.has-pale-pink-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-pale-pink-color{color:#f78da7}.vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-red-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-red-color{color:#cf2e2e}.vk_button .btn.has-text-color.is-style-outline:hover.has-luminous-vivid-orange-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-luminous-vivid-orange-color{color:#ff6900}.vk_button .btn.has-text-color.is-style-outline:hover.has-luminous-vivid-amber-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-luminous-vivid-amber-color{color:#fcb900}.vk_button .btn.has-text-color.is-style-outline:hover.has-light-green-cyan-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-light-green-cyan-color{color:#7bdcb5}.vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-green-cyan-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-green-cyan-color{color:#00d084}.vk_button .btn.has-text-color.is-style-outline:hover.has-pale-cyan-blue-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-pale-cyan-blue-color{color:#8ed1fc}.vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-cyan-blue-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-cyan-blue-color{color:#0693e3}.vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-purple-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vivid-purple-color{color:#9b51e0}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-color{color:var(--vk-color-primary)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-dark-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-dark-color{color:var(--vk-color-primary-dark)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-vivid-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-primary-vivid-color{color:var(--vk-color-primary-vivid)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-1-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-1-color{color:var(--vk-color-custom-1)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-2-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-2-color{color:var(--vk-color-custom-2)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-3-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-3-color{color:var(--vk-color-custom-3)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-4-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-4-color{color:var(--vk-color-custom-4)}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-5-color,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-custom-5-color{color:var(--vk-color-custom-5)}.vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_before,.vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_txt,.vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_after,.vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_before,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_txt,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_after,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover .vk_button_link_subCaption{color:#fff}.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_before,.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_txt,.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_after,.vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_subCaption,.vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_before,.vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_txt,.vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_after,.vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_before,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_txt,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_after,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-vk-color-light-color .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_before,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_txt,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_after,.editor-styles-wrapper .vk_button .btn.has-text-color.is-style-outline:hover.has-white-color .vk_button_link_subCaption{color:#212529}.vk_button .has-text-color.vk_button_link-type-text:hover,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover{background-color:currentColor}.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_before,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_after,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption{color:#fff}.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_subCaption,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_before,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_txt,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_after,.vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_before,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_txt,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_after,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-vk-color-light-background-color .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_before,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_txt,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_after,.editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover.has-white-color .vk_button_link_subCaption{color:#212529}.vk_button.vk_button-align-left,.editor-styles-wrapper .vk_button.vk_button-align-left{text-align:left}.vk_button.vk_button-align-center,.editor-styles-wrapper .vk_button.vk_button-align-center{text-align:center}.vk_button.vk_button-align-right,.editor-styles-wrapper .vk_button.vk_button-align-right{text-align:right}.vk_button.vk_button-align-block,.editor-styles-wrapper .vk_button.vk_button-align-block{display:block}.vk_button.vk_button-align-wide,.editor-styles-wrapper .vk_button.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button.vk_button-align-wide .vk_button_btn,.vk_button.vk_button-align-wide .btn,.editor-styles-wrapper .vk_button.vk_button-align-wide .vk_button_btn,.editor-styles-wrapper .vk_button.vk_button-align-wide .btn{display:block}.vk_button .vk_button_link,.editor-styles-wrapper .vk_button .vk_button_link{min-width:100px;min-height:30px}.vk_button .vk_button_link-type-text,.editor-styles-wrapper .vk_button .vk_button_link-type-text{-webkit-box-shadow:none;box-shadow:none;padding:0}.vk_button .vk_button_link-type-text:hover,.editor-styles-wrapper .vk_button .vk_button_link-type-text:hover{background:none;-webkit-box-shadow:none;box-shadow:none}.vk_button .vk_button_link.btn,.editor-styles-wrapper .vk_button .vk_button_link.btn{padding-top:0.6em;padding-bottom:0.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;text-decoration:none;font-size:calc( var(--vk-size-text) * 1)}.vk_button .vk_button_link.btn-lg,.editor-styles-wrapper .vk_button .vk_button_link.btn-lg{font-size:calc( var(--vk-size-text) * 1.25)}.vk_button .vk_button_link.btn-sm,.editor-styles-wrapper .vk_button .vk_button_link.btn-sm{font-size:calc( var(--vk-size-text) * .875)}.vk_button .vk_button_link_before,.editor-styles-wrapper .vk_button .vk_button_link_before{margin-right:0.7rem}.vk_button .vk_button_link_after,.editor-styles-wrapper .vk_button .vk_button_link_after{margin-left:0.7rem}.vk_button .vk_button_link_subCaption,.editor-styles-wrapper .vk_button .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.vk_button .editor-rich-text,.editor-styles-wrapper .vk_button .editor-rich-text{display:inline-block}
10
 
11
  :root{--vk-color-border: rgba(0,0,0,.12)}.is-style-vk_faq-normal .vk_faq_title:before{color:#e50000}.is-style-vk_faq-normal .vk_faq_content:before{color:#337ab7}.is-style-vk_faq-bgfill-circle .vk_faq_title:before,.is-style-vk_faq-bgfill-square .vk_faq_title:before,.is-style-vk_faq-bgfill-rounded .vk_faq_title:before{background-color:#e50000;color:#fff !important}.is-style-vk_faq-bgfill-circle .vk_faq_content:before,.is-style-vk_faq-bgfill-square .vk_faq_content:before,.is-style-vk_faq-bgfill-rounded .vk_faq_content:before{background-color:#337ab7;color:#fff !important}.is-style-vk_faq-bgfill-circle .vk_faq_title:before,.is-style-vk_faq-bgfill-circle .vk_faq_content:before,.is-style-vk_faq-border-circle .vk_faq_title:before,.is-style-vk_faq-border-circle .vk_faq_content:before{border-radius:50%}.is-style-vk_faq-bgfill-rounded .vk_faq_title:before,.is-style-vk_faq-bgfill-rounded .vk_faq_content:before,.is-style-vk_faq-border-rounded .vk_faq_title:before,.is-style-vk_faq-border-rounded .vk_faq_content:before{border-radius:4px}.is-style-vk_faq-border-circle .vk_faq_title:before,.is-style-vk_faq-border-square .vk_faq_title:before,.is-style-vk_faq-border-rounded .vk_faq_title:before{border:1px solid #e50000;color:#e50000}.is-style-vk_faq-border-circle .vk_faq_content:before,.is-style-vk_faq-border-square .vk_faq_content:before,.is-style-vk_faq-border-rounded .vk_faq_content:before{border:1px solid #337ab7;color:#337ab7}.vk_faq{display:block;overflow:hidden;border-bottom:1px solid var(--vk-color-border);padding:0px 0px 1rem;margin:0 auto 1rem auto;width:100%;position:relative}.vk_faq .vk_faq_title{border:none;padding:0.8rem 0.8rem 0.8rem 3rem;margin:0;position:relative;font-weight:bold;font-size:16px;border-bottom:1px dotted var(--vk-color-border)}.vk_faq .vk_faq_title:before{position:absolute;left:0;top:0.7rem;font-weight:500;font-size:22px;line-height:105%;width:2.1rem;height:2.1rem;line-height:2.1rem;text-align:center;position:absolute;font-family:"areal"}.vk_faq .vk_faq_title p:first-of-type{margin-top:0}.vk_faq .vk_faq_title p:last-child{margin-bottom:0}.vk_faq .vk_faq_title:before{content:"Q";color:#e50000;font-weight:500}.vk_faq .vk_faq_title p{line-height:1.7}@media (min-width: 768px){.vk_faq .vk_faq_title{font-size:18px}}.vk_faq .vk_faq_content{border:none;padding:0.8rem 0.8rem 0.8rem 3rem;margin:0;position:relative;font-weight:normal;-webkit-transition:.25s;transition:.25s}.vk_faq .vk_faq_content:before{position:absolute;left:0;top:0.7rem;font-weight:500;font-size:22px;line-height:105%;width:2.1rem;height:2.1rem;line-height:2.1rem;text-align:center;position:absolute;font-family:"areal"}.vk_faq .vk_faq_content p:first-of-type{margin-top:0}.vk_faq .vk_faq_content p:last-child{margin-bottom:0}.vk_faq .vk_faq_content:before{content:"A";color:#337ab7}.vk_faq.vk_faq-accordion-close,.vk_faq.vk_faq-accordion-open{padding-bottom:0;margin-bottom:0}.vk_faq.vk_faq-accordion-close .vk_faq-body,.vk_faq.vk_faq-accordion-open .vk_faq-body{margin-top:0;margin-bottom:0}.vk_faq.vk_faq-accordion-close .vk_faq_title,.vk_faq.vk_faq-accordion-open .vk_faq_title{padding-right:2rem}@media (min-width: 768px){.vk_faq.vk_faq-accordion-close .vk_faq_title,.vk_faq.vk_faq-accordion-open .vk_faq_title{padding-right:2.5rem}}.vk_faq.vk_faq-accordion-close .vk_faq_title::after,.vk_faq.vk_faq-accordion-open .vk_faq_title::after{position:absolute;top:50%;right:unset;right:2.5rem;content:"";width:8px;height:8px;border-right:1px solid #222;border-top:1px solid #222;transition:border-color .3s ease,-webkit-transform .6s ease;-webkit-transition:border-color .3s ease,-webkit-transform .6s ease;transition:border-color .3s ease,transform .6s ease;transition:border-color .3s ease,transform .6s ease,-webkit-transform .6s ease}.vk_faq.vk_faq-accordion-close .vk_faq_title{border-bottom:none}.vk_faq.vk_faq-accordion-close .vk_faq_title::after{-webkit-transform:translate(32px, -5px) rotate(135deg);transform:translate(32px, -5px) rotate(135deg)}.vk_faq.vk_faq-accordion-open .vk_faq_title::after{-webkit-transform:translate(32px, -2px) rotate(-45deg);transform:translate(32px, -2px) rotate(-45deg)}.vk_faq.vk_faq-accordion .vk_faq_title{cursor:pointer}.vk_faq .vk_faq_content-accordion-open{height:auto;overflow:hidden;opacity:1;-webkit-transition:.25s;transition:.25s;margin-bottom:10px}.vk_faq .vk_faq_content-accordion-close{padding-top:0;padding-bottom:0;height:0;opacity:0;overflow:hidden}.editor-styles-wrapper .vk_faq .block-editor-inner-blocks div.block-editor-block-list__block:not(.is_hovered){margin-top:0;margin-bottom:0}.editor-styles-wrapper .vk_faq .block-editor-inner-blocks .wp-block:not(.is_hovered){width:100%}
12
 
inc/vk-blocks/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"},"Accordion Target":["アコーディオンコンテンツ"],"Accordion Trigger":["アコーディオンタイトル"],"Accordion":["アコーディオン"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Slow":["遅い"],"Animation":["アニメーション"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Card Item":["カードアイテム"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"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":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"Card":["カード"],"Current page":["現在のページ"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Child page list":["子ページリスト"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Bottom)":["余白 (下)"],"Grid Column Item":["グリッドカラムアイテム"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"Grid Column":["グリッドカラム"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Icon ( Font Awesome )":["アイコン ( Font Awesome )"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Icon Card Setting":["アイコンカード設定"],"Link URL:":["リンク URL:"],"Icon Card Item":["アイコンカードアイテム"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Icon Card":["アイコンカード"],"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 PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Full Wide":["全幅"],"Padding (Left and Right)":["余白 (左右)"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"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の大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Mobile":["モバイル"],"Tablet":["タブレット"],"PC":["PC"],"Unit Type":["単位"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Color Settings":["色設定"],"Outer":["Outer"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Number of Posts":["表示件数"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Post list":["投稿リスト"],"Submit":["送信"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Unlink":["リンクを解除する"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Selected Post List Item":["選択投稿リストアイテム"],"Selected Post List":["選択投稿リスト"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Slider Item":["スライダーアイテム"],"Multi-image Display Setting":["複数の表示設定"],"Display Multi Images per View":["画像を複数枚表示する"],"Images per View":["1度に表示する画像の枚数"],"Move Images per Slide":["1度の動作で動かす枚数"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Hide":["非表示"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Slider":["スライダー"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"Ex,6:00AM":["例) 午前 6:00"],"Color":["色"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Item":["ステップ要素"],"First Dot Number":["ステップの開始番号"],"Step":["ステップ"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"label":["ラベル"],"Timeline Item":["タイムライン要素"],"Timeline":["タイムライン"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert":["アラート"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Border":["枠線"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Ballon":["吹き出し"],"Please enter a title.":["見出しを入力してください。"],"Transparent":["透過"],"White":["白"],"Icon":["アイコン"],"Margin":["余白"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Border Color":["線の色"],"Red":["赤"],"Orange":["オレンジ"],"Blue":["青"],"Green":["緑"],"Black":["黒"],"Background Color":["背景色"],"Border Box":["枠線ボックス"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["Block"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Default Color:":["標準色:"],"Primary":["Primary"],"Secondary":["Secondary"],"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.":["このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Input text":["文字を入力"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button URL":["ボタン URL"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Classic FAQ":["旧 FAQ"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"FAQ Answer":["FAQ 回答"],"FAQ Question":["FAQ 質問"],"New FAQ":["新 FAQ"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Flow":["フロー"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin Setting":["余白設定"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Text Color":["文字の色"],"Font Awesome Icon Settings":["Font Awesome アイコン設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Display":["表示"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Heading":["見出し"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Link URL":["リンクURL"],"Icon Setting":["アイコン設定"],"Size":["サイズ"],"Icon Outer":["横並びアイコン"],"Icon Common Setting":["アイコン共通設定"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"Page Content":["固定ページ本文"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"PR Blocks":["PR Blocks"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"PR Content":["PR Content"],"height":["height"],"margin-top":["margin-top"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Medium":["中"],"Responsive Spacer":["レスポンシブスペーサー"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Layout":["レイアウト"],"Image left":["画像 左"],"Staff":["スタッフ"],"Card (Image Round)":["カード(画像丸抜き)"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Hidden Settings":["非表示設定"],"Hidden at screel size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Apply":["適用"],"Inline font size":["インライン文字サイズ"],"Big":["大"],"Extra big":["特大"],"Inline Font Size":["インライン文字サイズ"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Border Top Bottom":["直線 上下"],"Shadow":["シャドウ"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"List Icon Color":["リストアイコンの色"],"Border / Stripes":["枠線 / ストライプ"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) <i class=\"fas fa-arrow-circle-right\"></i>":["例) <i class=“fas fa-arrow-circle-right”></i>"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Gutenberg's blocks.":["Gutenbergのブロックを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Not recommended":["非推奨"],"Ex ) ":["例) "],"Font Awesome":["Font Awesome:"],"Font Awesome Version":["Font Awesome バージョン"],"4.7 will be abolished in the near future.":["4.7は将来的に廃止されます。"],"Author: %s":["投稿者: %s"],"Archives":["アーカイブ"],"About %s":["%s について"],"Page of %s":["%sのページ"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This theme requires the following plugin: %1$s.":["このプラグインは下記プラグインを推奨しています:%1$s。"],"This theme recommends the following plugin: %1$s.<br>Many additional functions are available for free.":["このテーマは下記プラグインを必要としています:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"Sorry, there is no post":["申し訳ありませんが投稿がありません。"],"Vektor WordPress Information":["Vektor WordPress Information"],"VK Blocks Template":["VK Blocks テンプレート"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open ":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close ":["アコーディオン有効 / 初期状態で閉じる"],"FAQ Block Setting":["FAQ Blocks 設定"],"FAQ Setting":["FAQ ブロックの設定"],"Full Wide Title Set":["全幅見出しセット"],"Searvice":[""],"About":["About"],"Icon Card Set":["アイコンカードセット"],"Information ( Text )":[""],"Information ( Card )":[""],"Call To Action":["Call To Action"],"Contact":[""],"Step set":["ステップセット"],"Border box":["枠線ボックス"],"Slider Template":["スライダーテンプレート"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"Balloon Image Setting":["吹き出し画像設定"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"If you change image or name that please click Save Changes button.":["画像を変更したら「変更を保存」ボタンをクリックしてください。"],"Select":["選択"],"Delete":["削除"],"Balloon Image Name":["吹き出し画像の名前"],"Display Block Template Setting":["ブロックテンプレート表示設定"],"WordPress Block Template":["WordPress ブロックテンプレート"],"Nothing to do":["何もしない"],"Optimize VK Blocks CSS ( Tree Shaking )":["VK Blocks のCSSを最適化する(Tree Shaking)"],"CSS Optimize Setting":["CSS最適化設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Edit this area":["このエリアを編集"],"VK Blocks Bootstrap Setting":["VK Blocks Bootstrapの設定"],"Loading Bootstrap4":["Bootstrap4の読み込み"],"Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, uncheck here.":["Bootstrap4を読み込む場合はここにチェックを入れてください。テーマやプラグインがBootstrap4を読み込む場合は、ここのチェックを外してください。"],"No Post is selected":["投稿が選択されていません"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Read more":["続きを読む"],"New!!":["New!!"],"Card Noborder":["カード(線なし)"],"Card Horizontal":["カード(水平)"],"CSS Optimize ( Speed up ) Settings":["CSS最適化(高速化)設定"],"Tree shaking":["Tree shaking"],"Tree shaking activation settings":["Tree shaking 有効化設定"],"Output only the main CSS of the page inline":["主要なCSSのみインラインで出力します"],"Active Tree shaking (Recomend)":["Tree shakingを有効化(推奨)"],"Exclude class of Tree shaking":["CSSの軽量化から除外するCSSのclass名"],"If you choose \"Active Tree shaking\" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled":["Tree shaking を有効にしている場合、使用していないCSSは削除されます。もし使用している動的クラスがある場合はクラス名を入力してください。 例)btn-active,slide-active,scrolled"],"Preload CSS":["Preload CSS"],"Preload CSS activation settings":["Preload CSS 有効化設定"],"Preload css except for critical css":["クリティカルなCSSを除いてCSSをプリロードします"],"Active Preload CSS (Recomend)":["Preload CSS を有効化(推奨)"],"Exclude class of Preload CSS":["Preload CSSから除外するハンドル名"],"If you choose \"Active Preload CSS\" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css":["もし「Preload CSS を有効」に設定した場合、CSSの読み込みタイミングが変更されます。プリロードしたくないファイルがある場合は、ハンドル名(id)を入力してください。 例)pluginname_a-style,pluginname_b-css"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"yearly archives date format\u0004Y":["Y年"],"monthly archives date format\u0004F Y":["Y年n月"],"daily archives date format\u0004F j, Y":["Y年n月j日"],"Yearly archive description\u0004Article of %s.":["%s の記事."],"Archive description\u0004Article of %s.":["%s の記事."],"label in admin menu\u0004Blocks":["Blocks"],"post list type\u0004Text 1 Column":["テキスト 1 カラム"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon.":["画像,アイコンの配置ができるPRブロックです。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004One item in a grit column block.":["グリットカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}}
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Accordion Target":["アコーディオンコンテンツ"],"Accordion Trigger":["アコーディオンタイトル"],"Accordion":["アコーディオン"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Slow":["遅い"],"Animation":["アニメーション"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Card Item":["カードアイテム"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"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":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"Card":["カード"],"Current page":["現在のページ"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Child page list":["子ページリスト"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"Unit":["単位"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Color Settings":["色設定"],"Text Color":["文字の色"],"Background Color":["背景色"],"Grid Column Item":["グリッドカラムアイテム"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"Grid Column":["グリッドカラム"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Icon ( Font Awesome )":["アイコン ( Font Awesome )"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Icon Card Setting":["アイコンカード設定"],"Link URL:":["リンク URL:"],"Icon Card Item":["アイコンカードアイテム"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Icon Card":["アイコンカード"],"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 PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Full Wide":["全幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"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の大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Mobile":["モバイル"],"Tablet":["タブレット"],"PC":["PC"],"Unit Type":["単位"],"Outer":["Outer"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Number of Posts":["表示件数"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Post list":["投稿リスト"],"Submit":["送信"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Unlink":["リンクを解除する"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Selected Post List Item":["選択投稿リストアイテム"],"Selected Post List":["選択投稿リスト"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Slider Item":["スライダーアイテム"],"Multi-image Display Setting":["複数の表示設定"],"Display Multi Images per View":["画像を複数枚表示する"],"Images per View":["1度に表示する画像の枚数"],"Move Images per Slide":["1度の動作で動かす枚数"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Hide":["非表示"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Slider":["スライダー"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"Ex,6:00AM":["例) 午前 6:00"],"Color":["色"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Item":["ステップ要素"],"First Dot Number":["ステップの開始番号"],"Step":["ステップ"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"label":["ラベル"],"Timeline Item":["タイムライン要素"],"Timeline":["タイムライン"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert":["アラート"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Border":["枠線"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Ballon":["吹き出し"],"Please enter a title.":["見出しを入力してください。"],"Transparent":["透過"],"White":["白"],"Icon":["アイコン"],"Margin":["余白"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Border Color":["線の色"],"Red":["赤"],"Orange":["オレンジ"],"Blue":["青"],"Green":["緑"],"Black":["黒"],"Border Box":["枠線ボックス"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button Outer":["横並びボタン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button URL":["ボタン URL"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["Block"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Default Color:":["標準色:"],"Primary":["Primary"],"Secondary":["Secondary"],"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.":["このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Classic FAQ":["旧 FAQ"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"FAQ Answer":["FAQ 回答"],"FAQ Question":["FAQ 質問"],"New FAQ":["新 FAQ"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Flow":["フロー"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin Setting":["余白設定"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Font Awesome Icon Settings":["Font Awesome アイコン設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Display":["表示"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Heading":["見出し"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Size":["サイズ"],"Icon Outer":["横並びアイコン"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"Page Content":["固定ページ本文"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"PR Blocks":["PR Blocks"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"PR Content":["PR Content"],"height":["height"],"margin-top":["margin-top"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["「設定」→「VKブロック」で各共通マージンサイズを変更することができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Medium":["中"],"Responsive Spacer":["レスポンシブスペーサー"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Layout":["レイアウト"],"Image left":["画像 左"],"Staff":["スタッフ"],"Card (Image Round)":["カード(画像丸抜き)"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Hidden Settings":["非表示設定"],"Hidden at screel size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Apply":["適用"],"Inline font size":["インライン文字サイズ"],"Big":["大"],"Extra big":["特大"],"Inline Font Size":["インライン文字サイズ"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Border Top Bottom":["直線 上下"],"Shadow":["シャドウ"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"List Icon Color":["リストアイコンの色"],"Border / Stripes":["枠線 / ストライプ"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) <i class=\"fas fa-arrow-circle-right\"></i>":["例) <i class=“fas fa-arrow-circle-right”></i>"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Gutenberg's blocks.":["Gutenbergのブロックを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Not recommended":["非推奨"],"Ex ) ":["例) "],"Font Awesome":["Font Awesome:"],"Font Awesome Version":["Font Awesome バージョン"],"4.7 will be abolished in the near future.":["4.7は将来的に廃止されます。"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"Sorry, there is no post":["申し訳ありませんが投稿がありません。"],"Vektor WordPress Information":["Vektor WordPress Information"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open ":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close ":["アコーディオン有効 / 初期状態で閉じる"],"FAQ Block Setting":["FAQ Blocks 設定"],"FAQ Setting":["FAQ ブロックの設定"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"Balloon Image Setting":["吹き出し画像設定"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"If you change image or name that please click Save Changes button.":["画像を変更したら「変更を保存」ボタンをクリックしてください。"],"Select":["選択"],"Delete":["削除"],"Balloon Image Name":["吹き出し画像の名前"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"VK Blocks Bootstrap Setting":["VK Blocks Bootstrapの設定"],"Loading Bootstrap4":["Bootstrap4の読み込み"],"Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, uncheck here.":["Bootstrap4を読み込む場合はここにチェックを入れてください。テーマやプラグインがBootstrap4を読み込む場合は、ここのチェックを外してください。"],"Setting":["設定"],"No Post is selected":["投稿が選択されていません"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Read more":["続きを読む"],"New!!":["New!!"],"Page":["ページ"],"Card Noborder":["カード(線なし)"],"Card Horizontal":["カード(水平)"],"CSS Optimize ( Speed up ) Settings":["CSS最適化(高速化)設定"],"Tree shaking":["Tree shaking"],"Tree shaking activation settings":["Tree shaking 有効化設定"],"Output only the main CSS of the page inline":["主要なCSSのみインラインで出力します"],"Nothing to do":["何もしない"],"Active Tree shaking (Recomend)":["Tree shakingを有効化(推奨)"],"Exclude class of Tree shaking":["CSSの軽量化から除外するCSSのclass名"],"If you choose \"Active Tree shaking\" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled":["Tree shaking を有効にしている場合、使用していないCSSは削除されます。もし使用している動的クラスがある場合はクラス名を入力してください。 例)btn-active,slide-active,scrolled"],"Preload CSS":["Preload CSS"],"Preload CSS activation settings":["Preload CSS 有効化設定"],"Preload css except for critical css":["クリティカルなCSSを除いてCSSをプリロードします"],"Active Preload CSS (Recomend)":["Preload CSS を有効化(推奨)"],"Exclude class of Preload CSS":["Preload CSSから除外するハンドル名"],"If you choose \"Active Preload CSS\" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css":["もし「Preload CSS を有効」に設定した場合、CSSの読み込みタイミングが変更されます。プリロードしたくないファイルがある場合は、ハンドル名(id)を入力してください。 例)pluginname_a-style,pluginname_b-css"],"Edit this area":["このエリアを編集"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"Posts navigation":["投稿ナビゲーション"],"Posts":["投稿"],"Card Intext":["カードインテキスト"],"label in admin menu\u0004Blocks":["Blocks"],"post list type\u0004Text 1 Column":["テキスト 1 カラム"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon.":["画像,アイコンの配置ができるPRブロックです。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004One item in a grit column block.":["グリットカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block title\u0004Button Outer":["横並びボタン"]}}}
inc/vk-blocks/languages/vk-blocks-ja.mo CHANGED
Binary file
inc/vk-blocks/languages/vk-blocks-ja.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: VK Blocks Pro\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n"
5
- "POT-Creation-Date: 2021-08-11T17:15:59+00:00\n"
6
- "PO-Revision-Date: 2021-09-14 12:49+0900\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: ja\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.1\n"
14
  "X-Poedit-Basepath: ../../..\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
@@ -77,7 +77,7 @@ msgstr "短い"
77
 
78
  #: src/blocks/_pro/animation/edit.js:123 src/blocks/_pro/outer/edit.js:303
79
  #: src/blocks/_pro/slider/edit.js:193 src/blocks/balloon/edit.js:276
80
- #: src/blocks/button/edit.js:95 src/blocks/faq/index.js:27
81
  #: src/blocks/faq2/index.js:22
82
  #: src/extensions/common/inline-font-size/index.js:56
83
  msgid "Normal"
@@ -242,7 +242,7 @@ msgstr "注意!この項目を非表示にすると入力されていた内容
242
  msgid "Image"
243
  msgstr "画像"
244
 
245
- #: src/blocks/_pro/card/edit.js:156 src/blocks/button/index.js:18
246
  #: src/components/display-items-control/index.js:78
247
  msgid "Button"
248
  msgstr "ボタン"
@@ -276,8 +276,8 @@ msgstr "デバイス毎の高さ"
276
 
277
  #: src/blocks/_pro/card/index.js:25
278
  #: src/components/column-layout-control/index.js:26
279
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:446
280
- #: inc/vk-components/package/class-vk-component-posts.php:490
281
  msgid "Card"
282
  msgstr "カード"
283
 
@@ -309,23 +309,76 @@ msgstr "アイテム内の余白設定"
309
  msgid "Padding (Top)"
310
  msgstr "余白 (上)"
311
 
 
 
 
 
 
312
  #: src/blocks/_pro/grid-column-item/edit.js:140
313
  msgid "Padding (Bottom)"
314
  msgstr "余白 (下)"
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #: src/blocks/_pro/grid-column-item/index.js:18
317
  msgid "Grid Column Item"
318
  msgstr "グリッドカラムアイテム"
319
 
320
- #: src/blocks/_pro/grid-column/edit.js:51
321
  msgid "Layout Columns"
322
  msgstr "カラムレイアウト"
323
 
324
- #: src/blocks/_pro/grid-column/edit.js:57
325
  msgid "Column Margin Bottom Setting"
326
  msgstr "カラム下部余白設定"
327
 
328
- #: src/blocks/_pro/grid-column/edit.js:61
329
  msgid "Margin Bottom"
330
  msgstr "下部の余白"
331
 
@@ -357,15 +410,15 @@ msgstr "タイトルを入力"
357
  msgid "Input Content"
358
  msgstr "文章を入力してください"
359
 
360
- #: src/blocks/_pro/icon-card-item/edit.js:100 src/blocks/button/edit.js:70
361
- #: src/blocks/icon/edit.js:210 src/blocks/pr-blocks/edit.js:271
362
  #: src/blocks/pr-content/edit.js:130
363
  msgid "Open link new tab."
364
  msgstr "リンクを別ウィンドウで開く"
365
 
366
  #: src/blocks/_pro/icon-card-item/edit.js:108
367
  #: src/blocks/_pro/step-item/edit.js:57 src/blocks/border-box/edit.js:122
368
- #: src/blocks/button/edit.js:258 src/blocks/icon/edit.js:60
369
  #: src/blocks/pr-content/edit.js:196
370
  msgid "Icon ( Font Awesome )"
371
  msgstr "アイコン ( Font Awesome )"
@@ -374,12 +427,13 @@ msgstr "アイコン ( Font Awesome )"
374
  msgid "Icon Background:"
375
  msgstr "アイコン背景:"
376
 
377
- #: src/blocks/_pro/icon-card-item/edit.js:130 src/blocks/button/edit.js:173
378
- #: src/blocks/icon/edit.js:184 src/blocks/pr-blocks/edit.js:299
 
379
  msgid "Solid color"
380
  msgstr "ベタ塗り"
381
 
382
- #: src/blocks/_pro/icon-card-item/edit.js:134 src/blocks/button/edit.js:181
383
  #: src/blocks/pr-blocks/edit.js:303
384
  msgid "No background"
385
  msgstr "背景なし"
@@ -455,7 +509,6 @@ msgid "Repeat"
455
  msgstr "リピート"
456
 
457
  #: src/blocks/_pro/outer/edit.js:263
458
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:22
459
  msgid "Cover"
460
  msgstr "カバー"
461
 
@@ -480,10 +533,6 @@ msgstr "幅"
480
  msgid "Full Wide"
481
  msgstr "全幅"
482
 
483
- #: src/blocks/_pro/outer/edit.js:318 src/blocks/_pro/slider-item/edit.js:78
484
- msgid "Padding (Left and Right)"
485
- msgstr "余白 (左右)"
486
-
487
  #: src/blocks/_pro/outer/edit.js:322
488
  msgid "Fit to the Content area"
489
  msgstr "コンテンツエリアに合わせる"
@@ -604,7 +653,8 @@ msgstr "Outset"
604
  msgid "Border width"
605
  msgstr "枠線の幅"
606
 
607
- #: src/blocks/_pro/outer/edit.js:543 src/blocks/icon/edit.js:160
 
608
  msgid "Border radius"
609
  msgstr "枠線のRの大きさ"
610
 
@@ -614,16 +664,22 @@ msgstr "コンテナ内側のスペース設定"
614
 
615
  #: src/blocks/_pro/outer/edit.js:566 src/blocks/_pro/slider/edit.js:238
616
  #: src/components/advanced-viewport-control/index.js:39
 
 
617
  msgid "Mobile"
618
  msgstr "モバイル"
619
 
620
  #: src/blocks/_pro/outer/edit.js:581 src/blocks/_pro/slider/edit.js:227
621
  #: src/components/advanced-viewport-control/index.js:31
 
 
622
  msgid "Tablet"
623
  msgstr "タブレット"
624
 
625
  #: src/blocks/_pro/outer/edit.js:596 src/blocks/_pro/slider/edit.js:216
626
  #: src/components/advanced-viewport-control/index.js:25
 
 
627
  msgid "PC"
628
  msgstr "PC"
629
 
@@ -632,33 +688,6 @@ msgstr "PC"
632
  msgid "Unit Type"
633
  msgstr "単位"
634
 
635
- #: src/blocks/_pro/outer/edit.js:617 src/blocks/icon/edit.js:131
636
- #: src/components/advanced-unit-control/index.js:18
637
- #: inc/vk-blocks/admin/admin-margin.php:7
638
- msgid "px"
639
- msgstr "px"
640
-
641
- #: src/blocks/_pro/outer/edit.js:621 src/blocks/icon/edit.js:135
642
- #: src/components/advanced-unit-control/index.js:22
643
- #: inc/vk-blocks/admin/admin-margin.php:11
644
- msgid "em"
645
- msgstr "em"
646
-
647
- #: src/blocks/_pro/outer/edit.js:625 src/blocks/icon/edit.js:139
648
- #: src/components/advanced-unit-control/index.js:26
649
- #: inc/vk-blocks/admin/admin-margin.php:15
650
- msgid "rem"
651
- msgstr "rem"
652
-
653
- #: src/blocks/_pro/outer/edit.js:629 src/blocks/icon/edit.js:143
654
- #: src/components/advanced-unit-control/index.js:30
655
- msgid "vw"
656
- msgstr "vw"
657
-
658
- #: src/blocks/_pro/grid-column-item/edit.js:81
659
- msgid "Color Settings"
660
- msgstr "色設定"
661
-
662
  #: src/blocks/_pro/outer/index.js:20
663
  msgid "Outer"
664
  msgstr "Outer"
@@ -846,12 +875,10 @@ msgid "Navigation Position"
846
  msgstr "ナビゲーションの位置"
847
 
848
  #: src/blocks/_pro/slider/edit.js:366 src/blocks/heading/edit.js:344
849
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-block-patterns.php:10
850
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-block-patterns.php:11
851
  msgid "Hide"
852
  msgstr "非表示"
853
 
854
- #: src/blocks/_pro/slider/edit.js:370 src/blocks/button/edit.js:129
855
  #: src/components/display-items-control/index.js:125
856
  msgid "Center"
857
  msgstr "中央"
@@ -879,7 +906,7 @@ msgstr "例) 午前 6:00"
879
 
880
  #: src/blocks/_pro/step-item/edit.js:76
881
  #: src/blocks/_pro/timeline-item/edit.js:53 src/blocks/border-box/edit.js:63
882
- #: src/blocks/icon/edit.js:217 src/blocks/staff/edit.js:139
883
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:41
884
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:56
885
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:130
@@ -891,7 +918,8 @@ msgstr "色"
891
 
892
  #: src/blocks/_pro/step-item/edit.js:82
893
  #: src/blocks/_pro/table-of-contents-new/edit.js:135
894
- #: src/blocks/_pro/timeline-item/edit.js:63 src/blocks/icon/edit.js:176
 
895
  msgid "Style"
896
  msgstr "スタイル"
897
 
@@ -967,22 +995,22 @@ msgstr "タイムライン"
967
  msgid "Style Settings"
968
  msgstr "スタイル設定"
969
 
970
- #: src/blocks/alert/edit.js:25 src/blocks/button/edit.js:212
971
  #: src/blocks/pr-content/edit.js:164 src/extensions/core/group/style.js:138
972
  msgid "Success"
973
  msgstr "Success"
974
 
975
- #: src/blocks/alert/edit.js:28 src/blocks/button/edit.js:216
976
  #: src/blocks/pr-content/edit.js:167 src/extensions/core/group/style.js:134
977
  msgid "Info"
978
  msgstr "Info"
979
 
980
- #: src/blocks/alert/edit.js:30 src/blocks/button/edit.js:220
981
  #: src/blocks/pr-content/edit.js:169 src/extensions/core/group/style.js:142
982
  msgid "Warning"
983
  msgstr "Warning"
984
 
985
- #: src/blocks/alert/edit.js:34 src/blocks/button/edit.js:224
986
  #: src/blocks/pr-content/edit.js:173 src/extensions/core/group/style.js:146
987
  msgid "Danger"
988
  msgstr "Danger"
@@ -1028,13 +1056,13 @@ msgstr "位置"
1028
  msgid "Please specify the layout of the balloon."
1029
  msgstr "吹き出しの配置を指定してください。"
1030
 
1031
- #: src/blocks/balloon/edit.js:219 src/blocks/button/edit.js:119
1032
  #: src/blocks/pr-content/edit.js:233
1033
  #: src/components/display-items-control/index.js:121
1034
  msgid "Left"
1035
  msgstr "左"
1036
 
1037
- #: src/blocks/balloon/edit.js:231 src/blocks/button/edit.js:139
1038
  #: src/blocks/pr-content/edit.js:232
1039
  #: src/components/display-items-control/index.js:129
1040
  msgid "Right"
@@ -1131,8 +1159,10 @@ msgstr "白"
1131
  msgid "Icon"
1132
  msgstr "アイコン"
1133
 
1134
- #: src/blocks/border-box/edit.js:51 src/blocks/icon/edit.js:112
1135
- #: inc/vk-blocks/admin/admin-margin.php:49
 
 
1136
  msgid "Margin"
1137
  msgstr "余白"
1138
 
@@ -1171,10 +1201,6 @@ msgstr "緑"
1171
  msgid "Black"
1172
  msgstr "黒"
1173
 
1174
- #: src/blocks/border-box/edit.js:99
1175
- msgid "Background Color"
1176
- msgstr "背景色"
1177
-
1178
  #: src/blocks/border-box/index.js:19
1179
  msgid "Border Box"
1180
  msgstr "枠線ボックス"
@@ -1203,62 +1229,89 @@ msgstr "直線 ピン角 内側"
1203
  msgid "Solid Angle iconFeature"
1204
  msgstr "直線 ピン角 アイコン"
1205
 
1206
- #: src/blocks/button/edit.js:103 src/blocks/spacer/edit.js:87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1207
  #: src/extensions/common/inline-font-size/index.js:51
1208
- #: inc/vk-blocks/vk-blocks-functions.php:15
 
1209
  msgid "Small"
1210
  msgstr "小"
1211
 
1212
- #: src/blocks/button/edit.js:108
1213
  msgid "Button Position:"
1214
  msgstr "ボタンの位置:"
1215
 
1216
- #: src/blocks/button/edit.js:149
1217
  msgid "Wide"
1218
  msgstr "幅広"
1219
 
1220
- #: src/blocks/button/edit.js:159
1221
  msgid "Block"
1222
  msgstr "Block"
1223
 
1224
- #: src/blocks/button/edit.js:164
1225
  msgid "Button Style:"
1226
  msgstr "ボタンスタイル:"
1227
 
1228
- #: src/blocks/button/edit.js:189
1229
  msgid "Text only"
1230
  msgstr "テキストのみ"
1231
 
1232
- #: src/blocks/button/edit.js:193
1233
  msgid ""
1234
  "If you select \"No background\", that you need to select a Custom Color."
1235
  msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
1236
 
1237
- #: src/blocks/button/edit.js:200 src/blocks/pr-content/edit.js:152
1238
  msgid "Default Color:"
1239
  msgstr "標準色:"
1240
 
1241
- #: src/blocks/button/edit.js:204 src/blocks/pr-content/edit.js:156
1242
  msgid "Primary"
1243
  msgstr "Primary"
1244
 
1245
- #: src/blocks/button/edit.js:208 src/blocks/pr-content/edit.js:160
1246
  msgid "Secondary"
1247
  msgstr "Secondary"
1248
 
1249
- #: src/blocks/button/edit.js:228 src/blocks/pr-content/edit.js:176
1250
  msgid "Light"
1251
  msgstr "Light"
1252
 
1253
- #: src/blocks/button/edit.js:232 src/blocks/pr-content/edit.js:177
1254
  msgid "Dark"
1255
  msgstr "Dark"
1256
 
1257
- #: src/blocks/button/edit.js:242
1258
  msgid "Custom Color"
1259
  msgstr "カスタムカラー"
1260
 
1261
- #: src/blocks/button/edit.js:243
1262
  msgid ""
1263
  "This custom color overrides the default color. If you want to use the "
1264
  "default color, click the clear button."
@@ -1266,41 +1319,20 @@ msgstr ""
1266
  "このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
1267
  "たい場合は、クリアボタンをクリックしてください。"
1268
 
1269
- #: src/blocks/button/edit.js:262 src/blocks/heading/edit.js:303
1270
  #: src/blocks/pr-content/edit.js:200
1271
  msgid "Before text"
1272
  msgstr "文字の前"
1273
 
1274
- #: src/blocks/button/edit.js:271 src/blocks/heading/edit.js:312
1275
  #: src/blocks/pr-content/edit.js:212
1276
  msgid "After text"
1277
  msgstr "文字の後"
1278
 
1279
- #: src/blocks/button/edit.js:299
1280
  msgid "Input text"
1281
  msgstr "文字を入力"
1282
 
1283
- #: src/blocks/button/edit.js:50
1284
- msgid "Button setting"
1285
- msgstr "ボタン設定"
1286
-
1287
- #: src/blocks/button/edit.js:52
1288
- msgid "Sub Caption"
1289
- msgstr "サブテキスト"
1290
-
1291
- #: src/blocks/button/edit.js:61
1292
- msgid "Button URL"
1293
- msgstr "ボタン URL"
1294
-
1295
- #: src/blocks/button/edit.js:78
1296
- msgid "Button Size:"
1297
- msgstr "ボタンサイズ:"
1298
-
1299
- #: src/blocks/button/edit.js:87 src/blocks/spacer/edit.js:107
1300
- #: inc/vk-blocks/vk-blocks-functions.php:23
1301
- msgid "Large"
1302
- msgstr "大"
1303
-
1304
  #: src/blocks/faq/edit.js:14 src/blocks/faq2/edit.js:21
1305
  msgid ""
1306
  "If you want to be collapsing this block, you can set it at Setting > VK "
@@ -1435,10 +1467,6 @@ msgstr "このブロック全体の下部の余白 (rem)"
1435
  msgid "Heading Settings"
1436
  msgstr "見出し設定"
1437
 
1438
- #: src/blocks/heading/edit.js:288
1439
- msgid "Text Color"
1440
- msgstr "文字の色"
1441
-
1442
  #: src/blocks/heading/edit.js:300
1443
  msgid "Font Awesome Icon Settings"
1444
  msgstr "Font Awesome アイコン設定"
@@ -1452,8 +1480,6 @@ msgid "Sub Text Settings"
1452
  msgstr "サブテキスト設定"
1453
 
1454
  #: src/blocks/heading/edit.js:340
1455
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-block-patterns.php:11
1456
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-block-patterns.php:12
1457
  msgid "Display"
1458
  msgstr "表示"
1459
 
@@ -1475,27 +1501,23 @@ msgstr "見出し %d"
1475
  msgid "Heading"
1476
  msgstr "見出し"
1477
 
1478
- #: src/blocks/icon/edit.js:156
1479
  msgid "Reset"
1480
  msgstr "リセット"
1481
 
1482
- #: src/blocks/icon/edit.js:192
1483
  msgid "Icon & Frame"
1484
  msgstr "アイコンと枠"
1485
 
1486
- #: src/blocks/icon/edit.js:200
1487
  msgid "Icon only"
1488
  msgstr "アイコンのみ"
1489
 
1490
- #: src/blocks/icon/edit.js:205 src/blocks/pr-content/edit.js:121
1491
- msgid "Link URL"
1492
- msgstr "リンクURL"
1493
-
1494
- #: src/blocks/icon/edit.js:58
1495
- msgid "Icon Setting"
1496
- msgstr "アイコン設定"
1497
 
1498
- #: src/blocks/icon/edit.js:65
1499
  msgid "Size"
1500
  msgstr "サイズ"
1501
 
@@ -1503,9 +1525,13 @@ msgstr "サイズ"
1503
  msgid "Icon Outer"
1504
  msgstr "横並びアイコン"
1505
 
1506
- #: src/blocks/icon-outer/edit.js:84
1507
- msgid "Icon Common Setting"
1508
- msgstr "アイコン共通設定"
 
 
 
 
1509
 
1510
  #: src/blocks/page-content/edit.js:10 src/blocks/staff/edit.js:216
1511
  msgid "Unspecified"
@@ -1654,19 +1680,26 @@ msgstr "margin-top"
1654
  msgid "Space Type"
1655
  msgstr "余白タイプ"
1656
 
1657
- #: src/blocks/spacer/edit.js:117
1658
  msgid "Custom"
1659
  msgstr "カスタム"
1660
 
1661
- #: src/blocks/spacer/edit.js:58
 
 
 
 
 
1662
  msgid "Height for each device."
1663
  msgstr "デバイス毎の高さ"
1664
 
1665
- #: src/blocks/spacer/edit.js:77
1666
  msgid "Spacer Settings"
1667
  msgstr "余白の設定"
1668
 
1669
- #: src/blocks/spacer/edit.js:97 inc/vk-blocks/vk-blocks-functions.php:19
 
 
1670
  msgid "Medium"
1671
  msgstr "中"
1672
 
@@ -1760,8 +1793,8 @@ msgid "Card (Horizontal)"
1760
  msgstr "カード(水平)"
1761
 
1762
  #: src/components/column-layout-control/index.js:42
1763
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:458
1764
- #: inc/vk-components/package/class-vk-component-posts.php:502
1765
  msgid "Media"
1766
  msgstr "メディア"
1767
 
@@ -1950,8 +1983,7 @@ msgstr "スティッチ"
1950
  msgid "Border Top Bottom"
1951
  msgstr "直線 上下"
1952
 
1953
- #: src/extensions/core/group/style.js:130
1954
- #: src/extensions/core/image/style.js:31
1955
  msgid "Shadow"
1956
  msgstr "シャドウ"
1957
 
@@ -2112,7 +2144,6 @@ msgid "Select Icon"
2112
  msgstr "アイコンを選択"
2113
 
2114
  #. Plugin Name of the plugin
2115
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:15
2116
  msgid "VK Blocks Pro"
2117
  msgstr "VK Blocks Pro"
2118
 
@@ -2132,12 +2163,12 @@ msgstr "Vektor,Inc."
2132
  msgid "https://vektor-inc.co.jp"
2133
  msgstr "https://vektor-inc.co.jp"
2134
 
2135
- #: dist/vk-blocks-pro/inc/admin-notices.php:24 inc/admin-notices.php:24
2136
  msgid "We've released VK Blocks Pro!"
2137
  msgstr "VK Blocks Pro を公開しました!"
2138
 
2139
  #. translators: 1: opening a tag, 2: closing a tag
2140
- #: dist/vk-blocks-pro/inc/admin-notices.php:31 inc/admin-notices.php:31
2141
  msgid ""
2142
  "Thank you for using VK Blocks. We've released VK Blocks Pro. It has more "
2143
  "custom blocks to build web site more easily. If you are interested in VK "
@@ -2148,17 +2179,17 @@ msgstr ""
2148
  "れています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみ"
2149
  "てください。"
2150
 
2151
- #: dist/vk-blocks-pro/inc/admin-notices.php:35
2152
- #: dist/vk-blocks-pro/inc/admin-notices.php:41 inc/admin-notices.php:35
2153
- #: inc/admin-notices.php:41
2154
  msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"
2155
  msgstr "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"
2156
 
2157
- #: dist/vk-blocks-pro/inc/admin-notices.php:42 inc/admin-notices.php:42
2158
  msgid "See more"
2159
  msgstr "続きを見る"
2160
 
2161
- #: dist/vk-blocks-pro/inc/admin-notices.php:45 inc/admin-notices.php:45
2162
  msgid "Dismiss this notice"
2163
  msgstr "通知を無視"
2164
 
@@ -2191,113 +2222,50 @@ msgstr "Font Awesome バージョン"
2191
  msgid "4.7 will be abolished in the near future."
2192
  msgstr "4.7は将来的に廃止されます。"
2193
 
2194
- #. translators:
2195
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:147
2196
- #: inc/template-tags/package/template-tags.php:147
2197
- msgid "Author: %s"
2198
- msgstr "投稿者: %s"
2199
-
2200
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:149
2201
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:232
2202
- #: inc/template-tags/package/template-tags.php:149
2203
- #: inc/template-tags/package/template-tags.php:232
2204
- msgctxt "yearly archives date format"
2205
- msgid "Y"
2206
- msgstr "Y年"
2207
-
2208
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:151
2209
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:237
2210
- #: inc/template-tags/package/template-tags.php:151
2211
- #: inc/template-tags/package/template-tags.php:237
2212
- msgctxt "monthly archives date format"
2213
- msgid "F Y"
2214
- msgstr "Y年n月"
2215
-
2216
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:153
2217
- #: inc/template-tags/package/template-tags.php:153
2218
- msgctxt "daily archives date format"
2219
- msgid "F j, Y"
2220
- msgstr "Y年n月j日"
2221
-
2222
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:188
2223
- #: inc/template-tags/package/template-tags.php:188
2224
- msgid "Archives"
2225
- msgstr "アーカイブ"
2226
-
2227
- #. translators:
2228
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:220
2229
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:228
2230
- #: inc/template-tags/package/template-tags.php:220
2231
- #: inc/template-tags/package/template-tags.php:228
2232
- msgid "About %s"
2233
- msgstr "%s について"
2234
-
2235
- #. translators:
2236
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:234
2237
- #: inc/template-tags/package/template-tags.php:234
2238
- msgctxt "Yearly archive description"
2239
- msgid "Article of %s."
2240
- msgstr "%s の記事."
2241
-
2242
- #. translators:
2243
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:239
2244
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:245
2245
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:250
2246
- #: inc/template-tags/package/template-tags.php:239
2247
- #: inc/template-tags/package/template-tags.php:245
2248
- #: inc/template-tags/package/template-tags.php:250
2249
- msgctxt "Archive description"
2250
- msgid "Article of %s."
2251
- msgstr "%s の記事."
2252
-
2253
- #. translators:
2254
- #: dist/vk-blocks-pro/inc/template-tags/package/template-tags.php:268
2255
- #: inc/template-tags/package/template-tags.php:268
2256
- msgid "Page of %s"
2257
- msgstr "%sのページ"
2258
-
2259
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:77
2260
  #: inc/tgm-plugin-activation/tgm-config.php:77
2261
  msgid "Install Required Plugins"
2262
  msgstr "必須プラグインのインストール"
2263
 
2264
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:78
2265
  #: inc/tgm-plugin-activation/tgm-config.php:78
2266
  msgid "Install Plugins"
2267
  msgstr "プラグインのインストール"
2268
 
2269
  #. translators: %s = plugin name.
2270
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:80
2271
  #: inc/tgm-plugin-activation/tgm-config.php:80
2272
  msgid "Installing Plugin: %s"
2273
  msgstr "プラグイン %s をインストール中"
2274
 
2275
  #. translators: %s = plugin name.
2276
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:81
2277
  #: inc/tgm-plugin-activation/tgm-config.php:81
2278
  msgid "Something went wrong with the plugin API."
2279
  msgstr "プラグイン API で問題が発生しました。"
2280
 
2281
  #. translators:
2282
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:83
2283
- msgid "This theme requires the following plugin: %1$s."
2284
- msgid_plural "This theme requires the following plugins: %1$s."
2285
- msgstr[0] "このプラグインは下記プラグインを推奨しています:%1$s"
 
2286
 
2287
  #. translators: %s = plugin name.
2288
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:89
 
2289
  msgid ""
2290
- "This theme recommends the following plugin: %1$s.<br>Many additional "
2291
  "functions are available for free."
2292
  msgid_plural ""
2293
- "This theme recommends the following plugins: %1$s.<br>Many additional "
2294
  "functions are available for free."
2295
  msgstr[0] ""
2296
- "このテーマは下記プラグインを必要としています:%1$s。<br>これらのプラグインは"
2297
- "無償で利用可能です。"
2298
 
2299
  #. translators: %s = plugin name.
2300
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:95
2301
  #: inc/tgm-plugin-activation/tgm-config.php:95
2302
  msgid ""
2303
  "Sorry, but you do not have the correct permissions to install the %1$s "
@@ -2308,33 +2276,27 @@ msgid_plural ""
2308
  msgstr[0] "%1$sプラグインをインストールするための適切な権限がありません。"
2309
 
2310
  #. translators: %s = plugin name.
2311
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:101
2312
- #, fuzzy
2313
- #| msgid ""
2314
- #| "The following plugin needs to be updated to its latest version to ensure "
2315
- #| "maximum compatibility with this plugin: %1$s."
2316
- #| msgid_plural ""
2317
- #| "The following plugins need to be updated to their latest version to "
2318
- #| "ensure maximum compatibility with this plugin: %1$s."
2319
  msgid ""
2320
  "The following plugin needs to be updated to its latest version to ensure "
2321
- "maximum compatibility with this theme: %1$s."
2322
  msgid_plural ""
2323
  "The following plugins need to be updated to their latest version to ensure "
2324
- "maximum compatibility with this theme: %1$s."
2325
  msgstr[0] ""
2326
- "このテーマとの最大の互換性を確保するには、次のプラグインを最新バージョンに更"
2327
- "新する必要があります: %1$s。"
2328
 
2329
  #. translators: %s = plugin name.
2330
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:107
2331
  #: inc/tgm-plugin-activation/tgm-config.php:107
2332
  msgid "There is an update available for: %1$s."
2333
  msgid_plural "There are updates available for the following plugins: %1$s."
2334
  msgstr[0] "次のプラグインの更新が利用可能です:%1$s。"
2335
 
2336
  #. translators: %s = plugin name.
2337
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:113
2338
  #: inc/tgm-plugin-activation/tgm-config.php:113
2339
  msgid ""
2340
  "Sorry, but you do not have the correct permissions to update the %1$s plugin."
@@ -2344,21 +2306,21 @@ msgid_plural ""
2344
  msgstr[0] "%1$sプラグインを更新するための適切な権限がありません。"
2345
 
2346
  #. translators: %s = plugin name.
2347
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:119
2348
  #: inc/tgm-plugin-activation/tgm-config.php:119
2349
  msgid "The following required plugin is currently inactive: %1$s."
2350
  msgid_plural "The following required plugins are currently inactive: %1$s."
2351
  msgstr[0] "必須プラグインが現在有効化されていません: %1$s。"
2352
 
2353
  #. translators: %s = plugin name.
2354
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:125
2355
  #: inc/tgm-plugin-activation/tgm-config.php:125
2356
  msgid "The following recommended plugin is currently inactive: %1$s."
2357
  msgid_plural "The following recommended plugins are currently inactive: %1$s."
2358
  msgstr[0] "推奨プラグインが現在有効化されていません: %1$s。"
2359
 
2360
  #. translators: %s = plugin name.
2361
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:131
2362
  #: inc/tgm-plugin-activation/tgm-config.php:131
2363
  msgid ""
2364
  "Sorry, but you do not have the correct permissions to activate the %1$s "
@@ -2369,47 +2331,47 @@ msgid_plural ""
2369
  msgstr[0] "%1$sプラグインを有効化するための適切な権限がありません。"
2370
 
2371
  #. translators: %s = plugin name.
2372
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:137
2373
  #: inc/tgm-plugin-activation/tgm-config.php:137
2374
  msgid "Begin installing plugin"
2375
  msgid_plural "Begin installing plugins"
2376
  msgstr[0] "プラグインのインストールを開始"
2377
 
2378
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:142
2379
  #: inc/tgm-plugin-activation/tgm-config.php:142
2380
  msgid "Begin updating plugin"
2381
  msgid_plural "Begin updating plugins"
2382
  msgstr[0] "プラグインの更新を開始する"
2383
 
2384
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:147
2385
  #: inc/tgm-plugin-activation/tgm-config.php:147
2386
  msgid "Begin activating plugin"
2387
  msgid_plural "Begin activating plugins"
2388
  msgstr[0] "プラグインの有効化を開始"
2389
 
2390
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:152
2391
  #: inc/tgm-plugin-activation/tgm-config.php:152
2392
  msgid "Return to Required Plugins Installer"
2393
  msgstr "必須プラグインのインストール画面に戻る"
2394
 
2395
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:153
2396
  #: inc/tgm-plugin-activation/tgm-config.php:153
2397
  msgid "Plugin activated successfully."
2398
  msgstr "プラグインを有効化しました。"
2399
 
2400
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:154
2401
  #: inc/tgm-plugin-activation/tgm-config.php:154
2402
  msgid "The following plugin was activated successfully:"
2403
  msgstr "次のプラグインを有効化しました:"
2404
 
2405
  #. translators: %s = plugin name.
2406
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:156
2407
  #: inc/tgm-plugin-activation/tgm-config.php:156
2408
  msgid "No action taken. Plugin %1$s was already active."
2409
  msgstr "操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"
2410
 
2411
  #. translators: %s = plugin name.
2412
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:158
2413
  #: inc/tgm-plugin-activation/tgm-config.php:158
2414
  msgid ""
2415
  "Plugin not activated. A higher version of %s is needed for this theme. "
@@ -2419,209 +2381,139 @@ msgstr ""
2419
  "ジョンをサポートしていません。プラグインを更新してください。"
2420
 
2421
  #. translators: %s = plugin name.
2422
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:160
2423
  #: inc/tgm-plugin-activation/tgm-config.php:160
2424
  msgid "All plugins installed and activated successfully. %1$s"
2425
  msgstr "すべてのプラグインを正常にインストールし、有効化しました。 %1$s"
2426
 
2427
  #. translators: %s = dashboard link.
2428
- #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:162
2429
  #: inc/tgm-plugin-activation/tgm-config.php:162
2430
  msgid "Please contact the administrator of this site for help."
2431
  msgstr "ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"
2432
 
2433
- #: dist/vk-blocks-pro/inc/vk-admin/package/class-vk-admin.php:340
2434
  #: inc/vk-admin/package/class-vk-admin.php:316
2435
  msgid "Sorry, there is no post"
2436
  msgstr "申し訳ありませんが投稿がありません。"
2437
 
2438
- #: dist/vk-blocks-pro/inc/vk-admin/package/class-vk-admin.php:394
2439
  #: inc/vk-admin/package/class-vk-admin.php:370
2440
  msgid "Vektor WordPress Information"
2441
  msgstr "Vektor WordPress Information"
2442
 
2443
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-block-patterns.php:7
2444
- msgid "VK Blocks Template"
2445
- msgstr "VK Blocks テンプレート"
2446
-
2447
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:7
2448
- #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:7
2449
  msgid "Disable accordion"
2450
  msgstr "アコーディオン無効"
2451
 
2452
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:11
2453
- #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:11
2454
  msgid "Enable accordion and default open "
2455
  msgstr "アコーディオン有効 / 初期状態で開く"
2456
 
2457
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:15
2458
- #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:15
2459
  msgid "Enable accordion and default close "
2460
  msgstr "アコーディオン有効 / 初期状態で閉じる"
2461
 
2462
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:23
2463
- #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:23
2464
  msgid "FAQ Block Setting"
2465
  msgstr "FAQ Blocks 設定"
2466
 
2467
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:20
2468
- #: inc/vk-blocks-pro/admin-pro/admin-pro.php:20
2469
  msgid "FAQ Setting"
2470
  msgstr "FAQ ブロックの設定"
2471
 
2472
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:32
2473
- msgid "Full Wide Title Set"
2474
- msgstr "全幅見出しセット"
2475
-
2476
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:42
2477
- msgid "Searvice"
2478
- msgstr ""
2479
-
2480
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:52
2481
- msgid "About"
2482
- msgstr "About"
2483
-
2484
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:62
2485
- msgid "Icon Card Set"
2486
- msgstr "アイコンカードセット"
2487
-
2488
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:72
2489
- msgid "Information ( Text )"
2490
- msgstr ""
2491
-
2492
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:82
2493
- msgid "Information ( Card )"
2494
- msgstr ""
2495
-
2496
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:92
2497
- #, fuzzy
2498
- #| msgid "Latest Posts"
2499
- msgid "Feature Posts"
2500
- msgstr "新着記事"
2501
-
2502
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:102
2503
- msgid "Call To Action"
2504
- msgstr "Call To Action"
2505
-
2506
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:112
2507
- msgid "Contact"
2508
- msgstr ""
2509
-
2510
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:122
2511
- msgid "Step set"
2512
- msgstr "ステップセット"
2513
-
2514
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:132
2515
- msgid "Border box"
2516
- msgstr "枠線ボックス"
2517
-
2518
- #: dist/vk-blocks-pro/inc/vk-blocks-pro/vk-blocks-pro-template.php:142
2519
- msgid "Slider Template"
2520
- msgstr "スライダーテンプレート"
2521
-
2522
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:4
2523
- #: inc/vk-blocks/admin/admin-balloon.php:4
2524
  msgid "Balloon Setting"
2525
  msgstr "吹き出しブロック設定"
2526
 
2527
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:5
2528
- #: inc/vk-blocks/admin/admin-balloon.php:5
2529
  msgid "Balloon Border Width Setting"
2530
  msgstr "吹き出しの線幅の設定"
2531
 
2532
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:15
2533
- #: inc/vk-blocks/admin/admin-balloon.php:15
2534
  msgid "Balloon Image Setting"
2535
  msgstr "吹き出し画像設定"
2536
 
2537
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:82
2538
- #: inc/vk-blocks/admin/admin-balloon.php:82
2539
  msgid "You can register frequently used icon images for speech bubble blocks."
2540
  msgstr "よく使う吹き出し用のアイコン画像を登録する事ができます。"
2541
 
2542
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:83
2543
- #: inc/vk-blocks/admin/admin-balloon.php:83
2544
  msgid "If you change image or name that please click Save Changes button."
2545
  msgstr "画像を変更したら「変更を保存」ボタンをクリックしてください。"
2546
 
2547
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:109
2548
- #: inc/vk-blocks/admin/admin-balloon.php:109
2549
  msgid "Select"
2550
  msgstr "選択"
2551
 
2552
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:112
2553
- #: inc/vk-blocks/admin/admin-balloon.php:112
2554
  msgid "Delete"
2555
  msgstr "削除"
2556
 
2557
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:117
2558
- #: inc/vk-blocks/admin/admin-balloon.php:117
2559
  msgid "Balloon Image Name"
2560
  msgstr "吹き出し画像の名前"
2561
 
2562
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-block-patterns.php:5
2563
- msgid "Display Block Template Setting"
2564
- msgstr "ブロックテンプレート表示設定"
2565
-
2566
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-block-patterns.php:8
2567
- msgid "WordPress Block Template"
2568
- msgstr "WordPress ブロックテンプレート"
2569
-
2570
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-css-optimize.php:4
2571
- #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:93
2572
- #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:159
2573
- #: inc/vk-css-optimize/package/class-vk-css-optimize.php:93
2574
- #: inc/vk-css-optimize/package/class-vk-css-optimize.php:159
2575
- msgid "Nothing to do"
2576
- msgstr "何もしない"
2577
-
2578
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-css-optimize.php:8
2579
- msgid "Optimize VK Blocks CSS ( Tree Shaking )"
2580
- msgstr "VK Blocks のCSSを最適化する(Tree Shaking)"
2581
 
2582
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-css-optimize.php:22
2583
- msgid "CSS Optimize Setting"
2584
- msgstr "CSS最適化設定"
 
 
 
 
2585
 
2586
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:31
2587
- #: inc/vk-blocks/admin/admin.php:32
2588
  msgid "Blocks setting"
2589
  msgstr "Blocks 設定"
2590
 
2591
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:32
2592
- #: inc/vk-blocks/admin/admin.php:33
2593
  msgctxt "label in admin menu"
2594
  msgid "Blocks"
2595
  msgstr "Blocks"
2596
 
2597
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:48
2598
- #: inc/vk-blocks/admin/admin.php:49
2599
  msgid "Blocks Setting"
2600
  msgstr "Blocks 設定"
2601
 
2602
- #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:54
2603
- #: inc/vk-blocks/admin/admin.php:55
2604
  msgid "Balloon Block Setting"
2605
  msgstr "吹き出しブロック設定"
2606
 
2607
- #: dist/vk-blocks-pro/inc/vk-blocks/blocks/page-content/class-vk-page-content-block.php:122
2608
- #: dist/vk-blocks-pro/src/blocks/page-content/index.php:118
2609
- #: src/blocks/page-content/index.php:118
2610
- msgid "Edit this area"
2611
- msgstr "このエリアを編集"
2612
-
2613
- #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:49
2614
- #: inc/vk-blocks/load-bootstrap.php:49
2615
  msgid "VK Blocks Bootstrap Setting"
2616
  msgstr "VK Blocks Bootstrapの設定"
2617
 
2618
- #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:66
2619
- #: inc/vk-blocks/load-bootstrap.php:66
2620
  msgid "Loading Bootstrap4"
2621
  msgstr "Bootstrap4の読み込み"
2622
 
2623
- #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:67
2624
- #: inc/vk-blocks/load-bootstrap.php:67
2625
  msgid ""
2626
  "Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, "
2627
  "uncheck here."
@@ -2629,43 +2521,53 @@ msgstr ""
2629
  "Bootstrap4を読み込む場合はここにチェックを入れてください。テーマやプラグイン"
2630
  "がBootstrap4を読み込む場合は、ここのチェックを外してください。"
2631
 
2632
- #: dist/vk-blocks-pro/inc/vk-blocks/view/post-list.php:164
2633
- #: inc/vk-blocks/view/post-list.php:164
 
 
 
 
 
2634
  msgid "No Post is selected"
2635
  msgstr "投稿が選択されていません"
2636
 
2637
- #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:239
2638
- #: inc/vk-blocks/vk-blocks-functions.php:296
2639
  msgid "Blocks"
2640
  msgstr "Blocks"
2641
 
2642
- #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:249
2643
- #: inc/vk-blocks/vk-blocks-functions.php:306
2644
  msgid "Blocks Layout"
2645
  msgstr "ブロックレイアウト"
2646
 
2647
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:35
2648
- #: inc/vk-components/package/class-vk-component-posts.php:50
2649
  msgid "Read more"
2650
  msgstr "続きを読む"
2651
 
2652
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:37
2653
- #: inc/vk-components/package/class-vk-component-posts.php:52
2654
  msgid "New!!"
2655
  msgstr "New!!"
2656
 
2657
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:450
2658
- #: inc/vk-components/package/class-vk-component-posts.php:494
 
 
 
 
 
2659
  msgid "Card Noborder"
2660
  msgstr "カード(線なし)"
2661
 
2662
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:454
2663
- #: inc/vk-components/package/class-vk-component-posts.php:498
2664
  msgid "Card Horizontal"
2665
  msgstr "カード(水平)"
2666
 
2667
- #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:462
2668
- #: inc/vk-components/package/class-vk-component-posts.php:506
2669
  msgctxt "post list type"
2670
  msgid "Text 1 Column"
2671
  msgstr "テキスト 1 カラム"
@@ -2690,6 +2592,13 @@ msgstr "Tree shaking 有効化設定"
2690
  msgid "Output only the main CSS of the page inline"
2691
  msgstr "主要なCSSのみインラインで出力します"
2692
 
 
 
 
 
 
 
 
2693
  #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:94
2694
  #: inc/vk-css-optimize/package/class-vk-css-optimize.php:94
2695
  msgid "Active Tree shaking (Recomend)"
@@ -2747,7 +2656,12 @@ msgstr ""
2747
  "す。プリロードしたくないファイルがある場合は、ハンドル名(id)を入力してくだ"
2748
  "さい。 例)pluginname_a-style,pluginname_b-css"
2749
 
2750
- #: dist/vk-blocks-pro/vk-blocks.php:81 vk-blocks.php:81
 
 
 
 
 
2751
  msgid ""
2752
  "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks "
2753
  "Plugin running."
@@ -2755,87 +2669,56 @@ msgstr ""
2755
  "VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しまし"
2756
  "た。"
2757
 
2758
- #. translators:
2759
- #: inc/tgm-plugin-activation/tgm-config.php:83
2760
- msgid "This plugin requires the following plugin: %1$s."
2761
- msgid_plural "This plugin requires the following plugins: %1$s."
2762
- msgstr[0] "このプラグインは下記プラグインを必要としています:%1$s。"
2763
-
2764
- #. translators: %s = plugin name.
2765
- #: inc/tgm-plugin-activation/tgm-config.php:89
2766
- msgid ""
2767
- "This plugin recommends the following plugin: %1$s.<br>Many additional "
2768
- "functions are available for free."
2769
- msgid_plural ""
2770
- "This plugin recommends the following plugins: %1$s.<br>Many additional "
2771
- "functions are available for free."
2772
- msgstr[0] ""
2773
- "このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>こ"
2774
- "れらのプラグインは無償で利用可能です。"
2775
-
2776
- #. translators: %s = plugin name.
2777
- #: inc/tgm-plugin-activation/tgm-config.php:101
2778
- msgid ""
2779
- "The following plugin needs to be updated to its latest version to ensure "
2780
- "maximum compatibility with this plugin: %1$s."
2781
- msgid_plural ""
2782
- "The following plugins need to be updated to their latest version to ensure "
2783
- "maximum compatibility with this plugin: %1$s."
2784
- msgstr[0] ""
2785
- "このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョン"
2786
- "に更新する必要があります: %1$s。"
2787
-
2788
- #: inc/vk-blocks/admin/admin-margin.php:25 inc/vk-blocks/admin/admin.php:56
2789
- msgid "Common Margin Setting"
2790
- msgstr "共通余白設定"
2791
 
2792
- #: inc/vk-blocks/admin/admin-margin.php:26
2793
- msgid ""
2794
- "Please specify the size of the common margin used for responsive spacers, "
2795
- "etc."
2796
- msgstr ""
2797
- "レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"
2798
 
2799
- #: inc/vk-blocks/admin/admin-margin.php:29
2800
- msgid "Unit"
2801
- msgstr "単位"
2802
 
2803
- #: src/blocks/alert/block.json
2804
  msgctxt "block description"
2805
  msgid "A colored box with four statuses, including annotations and alerts."
2806
  msgstr "注釈や注意など4つのステータスがある色付きのボックスです。"
2807
 
 
2808
  #: src/blocks/balloon/block.json
2809
  msgctxt "block description"
2810
  msgid "These speech balloons are perfect for recreating conversations."
2811
  msgstr "会話の再現などに最適な吹き出しです。"
2812
 
 
2813
  #: src/blocks/border-box/block.json
2814
  msgctxt "block description"
2815
  msgid "This is a border box where you can place headings to attract attention."
2816
  msgstr "見出しを配置でき注目されやすい枠線ボックスです。"
2817
 
2818
- #: src/blocks/button/block.json
2819
  msgctxt "block description"
2820
  msgid "A button link that can display icons before and after."
2821
  msgstr "前後にアイコンを表示できるボタンリンクです。"
2822
 
2823
- #: src/blocks/faq/block.json
2824
  msgctxt "block description"
2825
  msgid "Displays a combination of questions and answers."
2826
  msgstr "質問と回答を組み合わせて表示します。"
2827
 
2828
- #: src/blocks/faq2-a/block.json
2829
  msgctxt "block description"
2830
  msgid "Answer area where you can add blocks freely."
2831
  msgstr "自由にブロックを追加できる回答エリアです。"
2832
 
2833
- #: src/blocks/faq2-q/block.json
2834
  msgctxt "block description"
2835
  msgid "Question area where you can freely add blocks."
2836
  msgstr "自由にブロックを追加できる質問エリアです。"
2837
 
2838
- #: src/blocks/faq2/block.json
2839
  msgctxt "block description"
2840
  msgid ""
2841
  "It displays a combination of questions and answers. You can freely add "
@@ -2844,11 +2727,12 @@ msgstr ""
2844
  "質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できま"
2845
  "す。"
2846
 
2847
- #: src/blocks/flow/block.json
2848
  msgctxt "block description"
2849
  msgid "Displays a sequential description in time series."
2850
  msgstr "時系列で順を追った説明を表示します。"
2851
 
 
2852
  #: src/blocks/heading/block.json
2853
  msgctxt "block description"
2854
  msgid ""
@@ -2856,106 +2740,123 @@ msgid ""
2856
  "margin."
2857
  msgstr "文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"
2858
 
2859
- #: src/blocks/icon/block.json
2860
- msgctxt "block description"
2861
- msgid "Display icons with Font Awesome."
2862
- msgstr "Font Awesome のアイコンフォントを表示します"
2863
-
2864
  #: src/blocks/icon-outer/block.json
2865
  msgctxt "block description"
2866
  msgid "Display the Font Awesome icons horizontally."
2867
  msgstr "Font Awesome のアイコンフォントを横並びに表示します"
2868
 
 
 
 
 
 
 
2869
  #: src/blocks/page-content/block.json
2870
  msgctxt "block description"
2871
  msgid "Displays the body content of the specified parent page."
2872
  msgstr "指定した基準ページの本文内容を表示します。"
2873
 
 
2874
  #: src/blocks/pr-blocks/block.json
2875
  msgctxt "block description"
2876
  msgid "This is a PR block where you can place images and icon."
2877
  msgstr "画像,アイコンの配置ができるPRブロックです。"
2878
 
 
2879
  #: src/blocks/pr-content/block.json
2880
  msgctxt "block description"
2881
  msgid ""
2882
  "This is PR content where you can place images, headlines, text, and buttons."
2883
  msgstr "画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"
2884
 
2885
- #: src/blocks/spacer/block.json
2886
  msgctxt "block description"
2887
  msgid "Use responsive spacers to get the margins right."
2888
  msgstr "レスポンシブに対応したスペーサーで余白を適切に取ります。"
2889
 
2890
- #: src/blocks/staff/block.json
2891
  msgctxt "block description"
2892
  msgid ""
2893
  "Used for staff introduction, company introduction, school introduction, "
2894
  "menu, etc."
2895
  msgstr "スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"
2896
 
 
2897
  #: src/blocks/_pro/accordion-target/block.json
2898
  msgctxt "block description"
2899
  msgid "This is the content area where you can add blocks freely."
2900
  msgstr "コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"
2901
 
 
2902
  #: src/blocks/_pro/accordion-trigger/block.json
2903
  msgctxt "block description"
2904
  msgid "This is the title area where you can freely add blocks."
2905
  msgstr "自由にブロックを追加できるタイトルエリアです。"
2906
 
 
2907
  #: src/blocks/_pro/accordion/block.json
2908
  msgctxt "block description"
2909
  msgid "Collapses and hides content when the content is long."
2910
  msgstr "自由にブロックを追加できるコンテンツエリアです。"
2911
 
 
2912
  #: src/blocks/_pro/animation/block.json
2913
  msgctxt "block description"
2914
  msgid "Add animation to elements when scrolling the page."
2915
  msgstr "ページをスクロールした時に要素に動きを加えます。"
2916
 
 
2917
  #: src/blocks/_pro/card-item/block.json
2918
  msgctxt "block description"
2919
  msgid "A single item in a card block."
2920
  msgstr "アイコンカード内の1つのアイテムです。"
2921
 
 
2922
  #: src/blocks/_pro/card/block.json
2923
  msgctxt "block description"
2924
  msgid "A card where you can place images, headings, text, and links."
2925
  msgstr "画像,見出し,テキスト,リンクが配置できるカードです。"
2926
 
 
2927
  #: src/blocks/_pro/child-page/block.json
2928
  msgctxt "block description"
2929
  msgid ""
2930
  "When a parent page is specified, a list of its child pages will be displayed."
2931
  msgstr "親となる固定ページを指定するとその子ページの一覧を表示します。"
2932
 
 
2933
  #: src/blocks/_pro/grid-column-item/block.json
2934
  msgctxt "block description"
2935
  msgid "One item in a grit column block."
2936
  msgstr "グリットカラムブロック内の1つのアイテムです。"
2937
 
 
2938
  #: src/blocks/_pro/grid-column/block.json
2939
  msgctxt "block description"
2940
  msgid "Set the number of columns to be displayed for each screen size."
2941
  msgstr "画面サイズ毎にカラム数を設定して表示させます。"
2942
 
 
2943
  #: src/blocks/_pro/icon-card-item/block.json
2944
  msgctxt "block description"
2945
  msgid "This is one item in an icon card."
2946
  msgstr "アイコンカード内の1つのアイテムです。"
2947
 
 
2948
  #: src/blocks/_pro/icon-card/block.json
2949
  msgctxt "block description"
2950
  msgid "Display card with icons, headings, text, and links."
2951
  msgstr "アイコン,見出し,テキスト,リンクを設定してカードを表示します。"
2952
 
 
2953
  #: src/blocks/_pro/outer/block.json
2954
  msgctxt "block description"
2955
  msgid ""
2956
  "Set the background image, color, and border to show the layout and divisions."
2957
  msgstr "背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"
2958
 
 
2959
  #: src/blocks/_pro/post-list/block.json
2960
  msgctxt "block description"
2961
  msgid ""
@@ -2963,22 +2864,26 @@ msgid ""
2963
  "number of posts to display."
2964
  msgstr "投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"
2965
 
 
2966
  #: src/blocks/_pro/select-post-list-item/block.json
2967
  msgctxt "block description"
2968
  msgid "A single item in the select post list."
2969
  msgstr "選択投稿リスト内の1つのアイテムです。"
2970
 
 
2971
  #: src/blocks/_pro/select-post-list/block.json
2972
  msgctxt "block description"
2973
  msgid ""
2974
  "Displays an arbitrarily specified page with the layout of the posting list."
2975
  msgstr "任意に指定したページを投稿リストのレイアウトで表示します。"
2976
 
 
2977
  #: src/blocks/_pro/slider-item/block.json
2978
  msgctxt "block description"
2979
  msgid "This is one item in the slider."
2980
  msgstr "スライダー内の1つのアイテムです。"
2981
 
 
2982
  #: src/blocks/_pro/slider/block.json
2983
  msgctxt "block description"
2984
  msgid ""
@@ -2988,16 +2893,19 @@ msgstr ""
2988
  "様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面で"
2989
  "プレビューしてください。"
2990
 
 
2991
  #: src/blocks/_pro/step-item/block.json
2992
  msgctxt "block description"
2993
  msgid "This element sets the icon, color, and style of the step mark."
2994
  msgstr "ステップマークのアイコン、色、スタイルを設定する要素です。"
2995
 
 
2996
  #: src/blocks/_pro/step/block.json
2997
  msgctxt "block description"
2998
  msgid "Set and display step marks, which are useful when explaining the order."
2999
  msgstr "順番を説明する時に便利でステップマークを設定し表示します。"
3000
 
 
3001
  #: src/blocks/_pro/table-of-contents-new/block.json
3002
  msgctxt "block description"
3003
  msgid ""
@@ -3005,11 +2913,13 @@ msgid ""
3005
  "headings when added."
3006
  msgstr "追加すると見出しに合わせて自動で生成される目次です。"
3007
 
 
3008
  #: src/blocks/_pro/timeline-item/block.json
3009
  msgctxt "block description"
3010
  msgid "This element sets the label, color, and style of the timeline."
3011
  msgstr "タイムラインのラベル、色、スタイルを設定する要素です。"
3012
 
 
3013
  #: src/blocks/_pro/timeline/block.json
3014
  msgctxt "block description"
3015
  msgid ""
@@ -3017,6 +2927,120 @@ msgid ""
3017
  "explaining the order."
3018
  msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。"
3019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3020
  #~ msgid "Slider is do not move in edit screen."
3021
  #~ msgstr ""
3022
  #~ "スライダーは編集画面では動きません。公開画面でプレビューしてください。"
@@ -3343,9 +3367,6 @@ msgstr "順番を説明する時に便利でシンプルなスケジュールな
3343
  #~ msgid "Balloon: Default Icons"
3344
  #~ msgstr "吹き出しブロック:デフォルトアイコン設定"
3345
 
3346
- #~ msgid "Setting"
3347
- #~ msgstr "設定"
3348
-
3349
  #~ msgid "Enter Font Awesome Class."
3350
  #~ msgstr "Font Awesome の class 名を入力してください。"
3351
 
@@ -3383,9 +3404,6 @@ msgstr "順番を説明する時に便利でシンプルなスケジュールな
3383
  #~ msgid "normal"
3384
  #~ msgstr "標準"
3385
 
3386
- #~ msgid "This Page"
3387
- #~ msgstr "このページ"
3388
-
3389
  #~ msgid "FAQ"
3390
  #~ msgstr "質問と解答"
3391
 
2
  msgstr ""
3
  "Project-Id-Version: VK Blocks Pro\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n"
5
+ "POT-Creation-Date: 2021-10-22T06:54:54+00:00\n"
6
+ "PO-Revision-Date: 2021-10-22 15:55+0900\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: ja\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 3.0\n"
14
  "X-Poedit-Basepath: ../../..\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
77
 
78
  #: src/blocks/_pro/animation/edit.js:123 src/blocks/_pro/outer/edit.js:303
79
  #: src/blocks/_pro/slider/edit.js:193 src/blocks/balloon/edit.js:276
80
+ #: src/blocks/button/edit.js:172 src/blocks/faq/index.js:27
81
  #: src/blocks/faq2/index.js:22
82
  #: src/extensions/common/inline-font-size/index.js:56
83
  msgid "Normal"
242
  msgid "Image"
243
  msgstr "画像"
244
 
245
+ #: src/blocks/_pro/card/edit.js:156 src/blocks/button/index.js:22
246
  #: src/components/display-items-control/index.js:78
247
  msgid "Button"
248
  msgstr "ボタン"
276
 
277
  #: src/blocks/_pro/card/index.js:25
278
  #: src/components/column-layout-control/index.js:26
279
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:670
280
+ #: inc/vk-components/package/class-vk-component-posts.php:671
281
  msgid "Card"
282
  msgstr "カード"
283
 
309
  msgid "Padding (Top)"
310
  msgstr "余白 (上)"
311
 
312
+ #: src/blocks/_pro/grid-column-item/edit.js:125
313
+ #: src/blocks/_pro/outer/edit.js:318 src/blocks/_pro/slider-item/edit.js:78
314
+ msgid "Padding (Left and Right)"
315
+ msgstr "余白 (左右)"
316
+
317
  #: src/blocks/_pro/grid-column-item/edit.js:140
318
  msgid "Padding (Bottom)"
319
  msgstr "余白 (下)"
320
 
321
+ #: src/blocks/_pro/grid-column-item/edit.js:155
322
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:31
323
+ #: inc/vk-blocks/admin/admin-margin.php:31
324
+ msgid "Unit"
325
+ msgstr "単位"
326
+
327
+ #: src/blocks/_pro/grid-column-item/edit.js:163
328
+ #: src/blocks/_pro/outer/edit.js:617 src/blocks/icon-outer/edit.js:151
329
+ #: src/blocks/icon/edit.js:140 src/components/advanced-unit-control/index.js:18
330
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:10
331
+ #: inc/vk-blocks/admin/admin-margin.php:10
332
+ msgid "px"
333
+ msgstr "px"
334
+
335
+ #: src/blocks/_pro/grid-column-item/edit.js:167
336
+ #: src/blocks/_pro/outer/edit.js:621 src/blocks/icon-outer/edit.js:155
337
+ #: src/blocks/icon/edit.js:144 src/components/advanced-unit-control/index.js:22
338
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:14
339
+ #: inc/vk-blocks/admin/admin-margin.php:14
340
+ msgid "em"
341
+ msgstr "em"
342
+
343
+ #: src/blocks/_pro/grid-column-item/edit.js:171
344
+ #: src/blocks/_pro/outer/edit.js:625 src/blocks/icon-outer/edit.js:159
345
+ #: src/blocks/icon/edit.js:148 src/components/advanced-unit-control/index.js:26
346
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:18
347
+ #: inc/vk-blocks/admin/admin-margin.php:18
348
+ msgid "rem"
349
+ msgstr "rem"
350
+
351
+ #: src/blocks/_pro/grid-column-item/edit.js:175
352
+ #: src/blocks/_pro/outer/edit.js:629 src/blocks/icon-outer/edit.js:163
353
+ #: src/blocks/icon/edit.js:152 src/components/advanced-unit-control/index.js:30
354
+ msgid "vw"
355
+ msgstr "vw"
356
+
357
+ #: src/blocks/_pro/grid-column-item/edit.js:81
358
+ msgid "Color Settings"
359
+ msgstr "色設定"
360
+
361
+ #: src/blocks/_pro/grid-column-item/edit.js:83 src/blocks/heading/edit.js:288
362
+ msgid "Text Color"
363
+ msgstr "文字の色"
364
+
365
+ #: src/blocks/_pro/grid-column-item/edit.js:94 src/blocks/border-box/edit.js:99
366
+ msgid "Background Color"
367
+ msgstr "背景色"
368
+
369
  #: src/blocks/_pro/grid-column-item/index.js:18
370
  msgid "Grid Column Item"
371
  msgstr "グリッドカラムアイテム"
372
 
373
+ #: src/blocks/_pro/grid-column/edit.js:53
374
  msgid "Layout Columns"
375
  msgstr "カラムレイアウト"
376
 
377
+ #: src/blocks/_pro/grid-column/edit.js:59
378
  msgid "Column Margin Bottom Setting"
379
  msgstr "カラム下部余白設定"
380
 
381
+ #: src/blocks/_pro/grid-column/edit.js:63
382
  msgid "Margin Bottom"
383
  msgstr "下部の余白"
384
 
410
  msgid "Input Content"
411
  msgstr "文章を入力してください"
412
 
413
+ #: src/blocks/_pro/icon-card-item/edit.js:100 src/blocks/button/edit.js:147
414
+ #: src/blocks/icon/edit.js:249 src/blocks/pr-blocks/edit.js:271
415
  #: src/blocks/pr-content/edit.js:130
416
  msgid "Open link new tab."
417
  msgstr "リンクを別ウィンドウで開く"
418
 
419
  #: src/blocks/_pro/icon-card-item/edit.js:108
420
  #: src/blocks/_pro/step-item/edit.js:57 src/blocks/border-box/edit.js:122
421
+ #: src/blocks/button/edit.js:339 src/blocks/icon/edit.js:237
422
  #: src/blocks/pr-content/edit.js:196
423
  msgid "Icon ( Font Awesome )"
424
  msgstr "アイコン ( Font Awesome )"
427
  msgid "Icon Background:"
428
  msgstr "アイコン背景:"
429
 
430
+ #: src/blocks/_pro/icon-card-item/edit.js:130 src/blocks/button/edit.js:250
431
+ #: src/blocks/icon-outer/edit.js:204 src/blocks/icon/edit.js:192
432
+ #: src/blocks/pr-blocks/edit.js:299
433
  msgid "Solid color"
434
  msgstr "ベタ塗り"
435
 
436
+ #: src/blocks/_pro/icon-card-item/edit.js:134 src/blocks/button/edit.js:258
437
  #: src/blocks/pr-blocks/edit.js:303
438
  msgid "No background"
439
  msgstr "背景なし"
509
  msgstr "リピート"
510
 
511
  #: src/blocks/_pro/outer/edit.js:263
 
512
  msgid "Cover"
513
  msgstr "カバー"
514
 
533
  msgid "Full Wide"
534
  msgstr "全幅"
535
 
 
 
 
 
536
  #: src/blocks/_pro/outer/edit.js:322
537
  msgid "Fit to the Content area"
538
  msgstr "コンテンツエリアに合わせる"
653
  msgid "Border width"
654
  msgstr "枠線の幅"
655
 
656
+ #: src/blocks/_pro/outer/edit.js:543 src/blocks/icon-outer/edit.js:180
657
+ #: src/blocks/icon/edit.js:169
658
  msgid "Border radius"
659
  msgstr "枠線のRの大きさ"
660
 
664
 
665
  #: src/blocks/_pro/outer/edit.js:566 src/blocks/_pro/slider/edit.js:238
666
  #: src/components/advanced-viewport-control/index.js:39
667
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:62
668
+ #: inc/vk-blocks/admin/admin-margin.php:62
669
  msgid "Mobile"
670
  msgstr "モバイル"
671
 
672
  #: src/blocks/_pro/outer/edit.js:581 src/blocks/_pro/slider/edit.js:227
673
  #: src/components/advanced-viewport-control/index.js:31
674
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:61
675
+ #: inc/vk-blocks/admin/admin-margin.php:61
676
  msgid "Tablet"
677
  msgstr "タブレット"
678
 
679
  #: src/blocks/_pro/outer/edit.js:596 src/blocks/_pro/slider/edit.js:216
680
  #: src/components/advanced-viewport-control/index.js:25
681
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:60
682
+ #: inc/vk-blocks/admin/admin-margin.php:60
683
  msgid "PC"
684
  msgstr "PC"
685
 
688
  msgid "Unit Type"
689
  msgstr "単位"
690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  #: src/blocks/_pro/outer/index.js:20
692
  msgid "Outer"
693
  msgstr "Outer"
875
  msgstr "ナビゲーションの位置"
876
 
877
  #: src/blocks/_pro/slider/edit.js:366 src/blocks/heading/edit.js:344
 
 
878
  msgid "Hide"
879
  msgstr "非表示"
880
 
881
+ #: src/blocks/_pro/slider/edit.js:370 src/blocks/button/edit.js:206
882
  #: src/components/display-items-control/index.js:125
883
  msgid "Center"
884
  msgstr "中央"
906
 
907
  #: src/blocks/_pro/step-item/edit.js:76
908
  #: src/blocks/_pro/timeline-item/edit.js:53 src/blocks/border-box/edit.js:63
909
+ #: src/blocks/icon/edit.js:256 src/blocks/staff/edit.js:139
910
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:41
911
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:56
912
  #: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:130
918
 
919
  #: src/blocks/_pro/step-item/edit.js:82
920
  #: src/blocks/_pro/table-of-contents-new/edit.js:135
921
+ #: src/blocks/_pro/timeline-item/edit.js:63 src/blocks/icon-outer/edit.js:196
922
+ #: src/blocks/icon/edit.js:184
923
  msgid "Style"
924
  msgstr "スタイル"
925
 
995
  msgid "Style Settings"
996
  msgstr "スタイル設定"
997
 
998
+ #: src/blocks/alert/edit.js:25 src/blocks/button/edit.js:289
999
  #: src/blocks/pr-content/edit.js:164 src/extensions/core/group/style.js:138
1000
  msgid "Success"
1001
  msgstr "Success"
1002
 
1003
+ #: src/blocks/alert/edit.js:28 src/blocks/button/edit.js:293
1004
  #: src/blocks/pr-content/edit.js:167 src/extensions/core/group/style.js:134
1005
  msgid "Info"
1006
  msgstr "Info"
1007
 
1008
+ #: src/blocks/alert/edit.js:30 src/blocks/button/edit.js:297
1009
  #: src/blocks/pr-content/edit.js:169 src/extensions/core/group/style.js:142
1010
  msgid "Warning"
1011
  msgstr "Warning"
1012
 
1013
+ #: src/blocks/alert/edit.js:34 src/blocks/button/edit.js:301
1014
  #: src/blocks/pr-content/edit.js:173 src/extensions/core/group/style.js:146
1015
  msgid "Danger"
1016
  msgstr "Danger"
1056
  msgid "Please specify the layout of the balloon."
1057
  msgstr "吹き出しの配置を指定してください。"
1058
 
1059
+ #: src/blocks/balloon/edit.js:219 src/blocks/button/edit.js:196
1060
  #: src/blocks/pr-content/edit.js:233
1061
  #: src/components/display-items-control/index.js:121
1062
  msgid "Left"
1063
  msgstr "左"
1064
 
1065
+ #: src/blocks/balloon/edit.js:231 src/blocks/button/edit.js:216
1066
  #: src/blocks/pr-content/edit.js:232
1067
  #: src/components/display-items-control/index.js:129
1068
  msgid "Right"
1159
  msgid "Icon"
1160
  msgstr "アイコン"
1161
 
1162
+ #: src/blocks/border-box/edit.js:51 src/blocks/icon-outer/edit.js:132
1163
+ #: src/blocks/icon/edit.js:121
1164
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:57
1165
+ #: inc/vk-blocks/admin/admin-margin.php:57
1166
  msgid "Margin"
1167
  msgstr "余白"
1168
 
1201
  msgid "Black"
1202
  msgstr "黒"
1203
 
 
 
 
 
1204
  #: src/blocks/border-box/index.js:19
1205
  msgid "Border Box"
1206
  msgstr "枠線ボックス"
1229
  msgid "Solid Angle iconFeature"
1230
  msgstr "直線 ピン角 アイコン"
1231
 
1232
+ #: src/blocks/button-outer/index.js:18
1233
+ msgid "Button Outer"
1234
+ msgstr "横並びボタン"
1235
+
1236
+ #: src/blocks/button/edit.js:127
1237
+ msgid "Button setting"
1238
+ msgstr "ボタン設定"
1239
+
1240
+ #: src/blocks/button/edit.js:129
1241
+ msgid "Sub Caption"
1242
+ msgstr "サブテキスト"
1243
+
1244
+ #: src/blocks/button/edit.js:138
1245
+ msgid "Button URL"
1246
+ msgstr "ボタン URL"
1247
+
1248
+ #: src/blocks/button/edit.js:155
1249
+ msgid "Button Size:"
1250
+ msgstr "ボタンサイズ:"
1251
+
1252
+ #: src/blocks/button/edit.js:164 src/blocks/spacer/edit.js:105
1253
+ #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:30
1254
+ #: inc/vk-blocks/vk-blocks-functions.php:30
1255
+ msgid "Large"
1256
+ msgstr "大"
1257
+
1258
+ #: src/blocks/button/edit.js:180 src/blocks/spacer/edit.js:85
1259
  #: src/extensions/common/inline-font-size/index.js:51
1260
+ #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:22
1261
+ #: inc/vk-blocks/vk-blocks-functions.php:22
1262
  msgid "Small"
1263
  msgstr "小"
1264
 
1265
+ #: src/blocks/button/edit.js:185
1266
  msgid "Button Position:"
1267
  msgstr "ボタンの位置:"
1268
 
1269
+ #: src/blocks/button/edit.js:226
1270
  msgid "Wide"
1271
  msgstr "幅広"
1272
 
1273
+ #: src/blocks/button/edit.js:236
1274
  msgid "Block"
1275
  msgstr "Block"
1276
 
1277
+ #: src/blocks/button/edit.js:241
1278
  msgid "Button Style:"
1279
  msgstr "ボタンスタイル:"
1280
 
1281
+ #: src/blocks/button/edit.js:266
1282
  msgid "Text only"
1283
  msgstr "テキストのみ"
1284
 
1285
+ #: src/blocks/button/edit.js:270
1286
  msgid ""
1287
  "If you select \"No background\", that you need to select a Custom Color."
1288
  msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
1289
 
1290
+ #: src/blocks/button/edit.js:277 src/blocks/pr-content/edit.js:152
1291
  msgid "Default Color:"
1292
  msgstr "標準色:"
1293
 
1294
+ #: src/blocks/button/edit.js:281 src/blocks/pr-content/edit.js:156
1295
  msgid "Primary"
1296
  msgstr "Primary"
1297
 
1298
+ #: src/blocks/button/edit.js:285 src/blocks/pr-content/edit.js:160
1299
  msgid "Secondary"
1300
  msgstr "Secondary"
1301
 
1302
+ #: src/blocks/button/edit.js:305 src/blocks/pr-content/edit.js:176
1303
  msgid "Light"
1304
  msgstr "Light"
1305
 
1306
+ #: src/blocks/button/edit.js:309 src/blocks/pr-content/edit.js:177
1307
  msgid "Dark"
1308
  msgstr "Dark"
1309
 
1310
+ #: src/blocks/button/edit.js:323
1311
  msgid "Custom Color"
1312
  msgstr "カスタムカラー"
1313
 
1314
+ #: src/blocks/button/edit.js:324
1315
  msgid ""
1316
  "This custom color overrides the default color. If you want to use the "
1317
  "default color, click the clear button."
1319
  "このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
1320
  "たい場合は、クリアボタンをクリックしてください。"
1321
 
1322
+ #: src/blocks/button/edit.js:343 src/blocks/heading/edit.js:303
1323
  #: src/blocks/pr-content/edit.js:200
1324
  msgid "Before text"
1325
  msgstr "文字の前"
1326
 
1327
+ #: src/blocks/button/edit.js:352 src/blocks/heading/edit.js:312
1328
  #: src/blocks/pr-content/edit.js:212
1329
  msgid "After text"
1330
  msgstr "文字の後"
1331
 
1332
+ #: src/blocks/button/edit.js:380
1333
  msgid "Input text"
1334
  msgstr "文字を入力"
1335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1336
  #: src/blocks/faq/edit.js:14 src/blocks/faq2/edit.js:21
1337
  msgid ""
1338
  "If you want to be collapsing this block, you can set it at Setting > VK "
1467
  msgid "Heading Settings"
1468
  msgstr "見出し設定"
1469
 
 
 
 
 
1470
  #: src/blocks/heading/edit.js:300
1471
  msgid "Font Awesome Icon Settings"
1472
  msgstr "Font Awesome アイコン設定"
1480
  msgstr "サブテキスト設定"
1481
 
1482
  #: src/blocks/heading/edit.js:340
 
 
1483
  msgid "Display"
1484
  msgstr "表示"
1485
 
1501
  msgid "Heading"
1502
  msgstr "見出し"
1503
 
1504
+ #: src/blocks/icon-outer/edit.js:176 src/blocks/icon/edit.js:165
1505
  msgid "Reset"
1506
  msgstr "リセット"
1507
 
1508
+ #: src/blocks/icon-outer/edit.js:212 src/blocks/icon/edit.js:200
1509
  msgid "Icon & Frame"
1510
  msgstr "アイコンと枠"
1511
 
1512
+ #: src/blocks/icon-outer/edit.js:220 src/blocks/icon/edit.js:208
1513
  msgid "Icon only"
1514
  msgstr "アイコンのみ"
1515
 
1516
+ #: src/blocks/icon-outer/edit.js:84
1517
+ msgid "Icon Common Setting"
1518
+ msgstr "アイコン共通設定"
 
 
 
 
1519
 
1520
+ #: src/blocks/icon-outer/edit.js:85 src/blocks/icon/edit.js:74
1521
  msgid "Size"
1522
  msgstr "サイズ"
1523
 
1525
  msgid "Icon Outer"
1526
  msgstr "横並びアイコン"
1527
 
1528
+ #: src/blocks/icon/edit.js:235
1529
+ msgid "Icon Setting"
1530
+ msgstr "アイコン設定"
1531
+
1532
+ #: src/blocks/icon/edit.js:244 src/blocks/pr-content/edit.js:121
1533
+ msgid "Link URL"
1534
+ msgstr "リンクURL"
1535
 
1536
  #: src/blocks/page-content/edit.js:10 src/blocks/staff/edit.js:216
1537
  msgid "Unspecified"
1680
  msgid "Space Type"
1681
  msgstr "余白タイプ"
1682
 
1683
+ #: src/blocks/spacer/edit.js:115
1684
  msgid "Custom"
1685
  msgstr "カスタム"
1686
 
1687
+ #: src/blocks/spacer/edit.js:119
1688
+ msgid "You can change each common margin size from Setting > VK Blocks"
1689
+ msgstr ""
1690
+ "「設定」→「VKブロック」で各共通マージンサイズを変更することができます。"
1691
+
1692
+ #: src/blocks/spacer/edit.js:56
1693
  msgid "Height for each device."
1694
  msgstr "デバイス毎の高さ"
1695
 
1696
+ #: src/blocks/spacer/edit.js:75
1697
  msgid "Spacer Settings"
1698
  msgstr "余白の設定"
1699
 
1700
+ #: src/blocks/spacer/edit.js:95
1701
+ #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:26
1702
+ #: inc/vk-blocks/vk-blocks-functions.php:26
1703
  msgid "Medium"
1704
  msgstr "中"
1705
 
1793
  msgstr "カード(水平)"
1794
 
1795
  #: src/components/column-layout-control/index.js:42
1796
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:682
1797
+ #: inc/vk-components/package/class-vk-component-posts.php:687
1798
  msgid "Media"
1799
  msgstr "メディア"
1800
 
1983
  msgid "Border Top Bottom"
1984
  msgstr "直線 上下"
1985
 
1986
+ #: src/extensions/core/group/style.js:130 src/extensions/core/image/style.js:31
 
1987
  msgid "Shadow"
1988
  msgstr "シャドウ"
1989
 
2144
  msgstr "アイコンを選択"
2145
 
2146
  #. Plugin Name of the plugin
 
2147
  msgid "VK Blocks Pro"
2148
  msgstr "VK Blocks Pro"
2149
 
2163
  msgid "https://vektor-inc.co.jp"
2164
  msgstr "https://vektor-inc.co.jp"
2165
 
2166
+ #: dist/vk-blocks-pro/inc/admin-notices.php:28 inc/admin-notices.php:28
2167
  msgid "We've released VK Blocks Pro!"
2168
  msgstr "VK Blocks Pro を公開しました!"
2169
 
2170
  #. translators: 1: opening a tag, 2: closing a tag
2171
+ #: dist/vk-blocks-pro/inc/admin-notices.php:35 inc/admin-notices.php:35
2172
  msgid ""
2173
  "Thank you for using VK Blocks. We've released VK Blocks Pro. It has more "
2174
  "custom blocks to build web site more easily. If you are interested in VK "
2179
  "れています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみ"
2180
  "てください。"
2181
 
2182
+ #: dist/vk-blocks-pro/inc/admin-notices.php:39
2183
+ #: dist/vk-blocks-pro/inc/admin-notices.php:45 inc/admin-notices.php:39
2184
+ #: inc/admin-notices.php:45
2185
  msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"
2186
  msgstr "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"
2187
 
2188
+ #: dist/vk-blocks-pro/inc/admin-notices.php:46 inc/admin-notices.php:46
2189
  msgid "See more"
2190
  msgstr "続きを見る"
2191
 
2192
+ #: dist/vk-blocks-pro/inc/admin-notices.php:49 inc/admin-notices.php:49
2193
  msgid "Dismiss this notice"
2194
  msgstr "通知を無視"
2195
 
2222
  msgid "4.7 will be abolished in the near future."
2223
  msgstr "4.7は将来的に廃止されます。"
2224
 
2225
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2226
  #: inc/tgm-plugin-activation/tgm-config.php:77
2227
  msgid "Install Required Plugins"
2228
  msgstr "必須プラグインのインストール"
2229
 
2230
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:73
2231
  #: inc/tgm-plugin-activation/tgm-config.php:78
2232
  msgid "Install Plugins"
2233
  msgstr "プラグインのインストール"
2234
 
2235
  #. translators: %s = plugin name.
2236
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:75
2237
  #: inc/tgm-plugin-activation/tgm-config.php:80
2238
  msgid "Installing Plugin: %s"
2239
  msgstr "プラグイン %s をインストール中"
2240
 
2241
  #. translators: %s = plugin name.
2242
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:76
2243
  #: inc/tgm-plugin-activation/tgm-config.php:81
2244
  msgid "Something went wrong with the plugin API."
2245
  msgstr "プラグイン API で問題が発生しました。"
2246
 
2247
  #. translators:
2248
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:78
2249
+ #: inc/tgm-plugin-activation/tgm-config.php:83
2250
+ msgid "This plugin requires the following plugin: %1$s."
2251
+ msgid_plural "This plugin requires the following plugins: %1$s."
2252
+ msgstr[0] "このプラグインは下記プラグインを必要としています:%1$s。"
2253
 
2254
  #. translators: %s = plugin name.
2255
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:84
2256
+ #: inc/tgm-plugin-activation/tgm-config.php:89
2257
  msgid ""
2258
+ "This plugin recommends the following plugin: %1$s.<br>Many additional "
2259
  "functions are available for free."
2260
  msgid_plural ""
2261
+ "This plugin recommends the following plugins: %1$s.<br>Many additional "
2262
  "functions are available for free."
2263
  msgstr[0] ""
2264
+ "このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>こ"
2265
+ "れらのプラグインは無償で利用可能です。"
2266
 
2267
  #. translators: %s = plugin name.
2268
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:90
2269
  #: inc/tgm-plugin-activation/tgm-config.php:95
2270
  msgid ""
2271
  "Sorry, but you do not have the correct permissions to install the %1$s "
2276
  msgstr[0] "%1$sプラグインをインストールするための適切な権限がありません。"
2277
 
2278
  #. translators: %s = plugin name.
2279
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:96
2280
+ #: inc/tgm-plugin-activation/tgm-config.php:101
 
 
 
 
 
 
2281
  msgid ""
2282
  "The following plugin needs to be updated to its latest version to ensure "
2283
+ "maximum compatibility with this plugin: %1$s."
2284
  msgid_plural ""
2285
  "The following plugins need to be updated to their latest version to ensure "
2286
+ "maximum compatibility with this plugin: %1$s."
2287
  msgstr[0] ""
2288
+ "このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョン"
2289
+ "に更新する必要があります: %1$s。"
2290
 
2291
  #. translators: %s = plugin name.
2292
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:102
2293
  #: inc/tgm-plugin-activation/tgm-config.php:107
2294
  msgid "There is an update available for: %1$s."
2295
  msgid_plural "There are updates available for the following plugins: %1$s."
2296
  msgstr[0] "次のプラグインの更新が利用可能です:%1$s。"
2297
 
2298
  #. translators: %s = plugin name.
2299
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:108
2300
  #: inc/tgm-plugin-activation/tgm-config.php:113
2301
  msgid ""
2302
  "Sorry, but you do not have the correct permissions to update the %1$s plugin."
2306
  msgstr[0] "%1$sプラグインを更新するための適切な権限がありません。"
2307
 
2308
  #. translators: %s = plugin name.
2309
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:114
2310
  #: inc/tgm-plugin-activation/tgm-config.php:119
2311
  msgid "The following required plugin is currently inactive: %1$s."
2312
  msgid_plural "The following required plugins are currently inactive: %1$s."
2313
  msgstr[0] "必須プラグインが現在有効化されていません: %1$s。"
2314
 
2315
  #. translators: %s = plugin name.
2316
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:120
2317
  #: inc/tgm-plugin-activation/tgm-config.php:125
2318
  msgid "The following recommended plugin is currently inactive: %1$s."
2319
  msgid_plural "The following recommended plugins are currently inactive: %1$s."
2320
  msgstr[0] "推奨プラグインが現在有効化されていません: %1$s。"
2321
 
2322
  #. translators: %s = plugin name.
2323
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:126
2324
  #: inc/tgm-plugin-activation/tgm-config.php:131
2325
  msgid ""
2326
  "Sorry, but you do not have the correct permissions to activate the %1$s "
2331
  msgstr[0] "%1$sプラグインを有効化するための適切な権限がありません。"
2332
 
2333
  #. translators: %s = plugin name.
2334
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:132
2335
  #: inc/tgm-plugin-activation/tgm-config.php:137
2336
  msgid "Begin installing plugin"
2337
  msgid_plural "Begin installing plugins"
2338
  msgstr[0] "プラグインのインストールを開始"
2339
 
2340
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:137
2341
  #: inc/tgm-plugin-activation/tgm-config.php:142
2342
  msgid "Begin updating plugin"
2343
  msgid_plural "Begin updating plugins"
2344
  msgstr[0] "プラグインの更新を開始する"
2345
 
2346
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:142
2347
  #: inc/tgm-plugin-activation/tgm-config.php:147
2348
  msgid "Begin activating plugin"
2349
  msgid_plural "Begin activating plugins"
2350
  msgstr[0] "プラグインの有効化を開始"
2351
 
2352
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:147
2353
  #: inc/tgm-plugin-activation/tgm-config.php:152
2354
  msgid "Return to Required Plugins Installer"
2355
  msgstr "必須プラグインのインストール画面に戻る"
2356
 
2357
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:148
2358
  #: inc/tgm-plugin-activation/tgm-config.php:153
2359
  msgid "Plugin activated successfully."
2360
  msgstr "プラグインを有効化しました。"
2361
 
2362
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:149
2363
  #: inc/tgm-plugin-activation/tgm-config.php:154
2364
  msgid "The following plugin was activated successfully:"
2365
  msgstr "次のプラグインを有効化しました:"
2366
 
2367
  #. translators: %s = plugin name.
2368
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:151
2369
  #: inc/tgm-plugin-activation/tgm-config.php:156
2370
  msgid "No action taken. Plugin %1$s was already active."
2371
  msgstr "操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"
2372
 
2373
  #. translators: %s = plugin name.
2374
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:153
2375
  #: inc/tgm-plugin-activation/tgm-config.php:158
2376
  msgid ""
2377
  "Plugin not activated. A higher version of %s is needed for this theme. "
2381
  "ジョンをサポートしていません。プラグインを更新してください。"
2382
 
2383
  #. translators: %s = plugin name.
2384
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:155
2385
  #: inc/tgm-plugin-activation/tgm-config.php:160
2386
  msgid "All plugins installed and activated successfully. %1$s"
2387
  msgstr "すべてのプラグインを正常にインストールし、有効化しました。 %1$s"
2388
 
2389
  #. translators: %s = dashboard link.
2390
+ #: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:157
2391
  #: inc/tgm-plugin-activation/tgm-config.php:162
2392
  msgid "Please contact the administrator of this site for help."
2393
  msgstr "ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"
2394
 
2395
+ #: dist/vk-blocks-pro/inc/vk-admin/package/class-vk-admin.php:316
2396
  #: inc/vk-admin/package/class-vk-admin.php:316
2397
  msgid "Sorry, there is no post"
2398
  msgstr "申し訳ありませんが投稿がありません。"
2399
 
2400
+ #: dist/vk-blocks-pro/inc/vk-admin/package/class-vk-admin.php:370
2401
  #: inc/vk-admin/package/class-vk-admin.php:370
2402
  msgid "Vektor WordPress Information"
2403
  msgstr "Vektor WordPress Information"
2404
 
2405
+ #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:13
2406
+ #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:13
 
 
 
 
2407
  msgid "Disable accordion"
2408
  msgstr "アコーディオン無効"
2409
 
2410
+ #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:17
2411
+ #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:17
2412
  msgid "Enable accordion and default open "
2413
  msgstr "アコーディオン有効 / 初期状態で開く"
2414
 
2415
+ #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:21
2416
+ #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:21
2417
  msgid "Enable accordion and default close "
2418
  msgstr "アコーディオン有効 / 初期状態で閉じる"
2419
 
2420
+ #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-new-faq.php:29
2421
+ #: inc/vk-blocks-pro/admin-pro/admin-new-faq.php:29
2422
  msgid "FAQ Block Setting"
2423
  msgstr "FAQ Blocks 設定"
2424
 
2425
+ #: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:22
2426
+ #: inc/vk-blocks-pro/admin-pro/admin-pro.php:22
2427
  msgid "FAQ Setting"
2428
  msgstr "FAQ ブロックの設定"
2429
 
2430
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:11
2431
+ #: inc/vk-blocks/admin/admin-balloon.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2432
  msgid "Balloon Setting"
2433
  msgstr "吹き出しブロック設定"
2434
 
2435
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:12
2436
+ #: inc/vk-blocks/admin/admin-balloon.php:12
2437
  msgid "Balloon Border Width Setting"
2438
  msgstr "吹き出しの線幅の設定"
2439
 
2440
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:22
2441
+ #: inc/vk-blocks/admin/admin-balloon.php:22
2442
  msgid "Balloon Image Setting"
2443
  msgstr "吹き出し画像設定"
2444
 
2445
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:89
2446
+ #: inc/vk-blocks/admin/admin-balloon.php:89
2447
  msgid "You can register frequently used icon images for speech bubble blocks."
2448
  msgstr "よく使う吹き出し用のアイコン画像を登録する事ができます。"
2449
 
2450
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:90
2451
+ #: inc/vk-blocks/admin/admin-balloon.php:90
2452
  msgid "If you change image or name that please click Save Changes button."
2453
  msgstr "画像を変更したら「変更を保存」ボタンをクリックしてください。"
2454
 
2455
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:116
2456
+ #: inc/vk-blocks/admin/admin-balloon.php:116
2457
  msgid "Select"
2458
  msgstr "選択"
2459
 
2460
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:119
2461
+ #: inc/vk-blocks/admin/admin-balloon.php:119
2462
  msgid "Delete"
2463
  msgstr "削除"
2464
 
2465
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-balloon.php:124
2466
+ #: inc/vk-blocks/admin/admin-balloon.php:124
2467
  msgid "Balloon Image Name"
2468
  msgstr "吹き出し画像の名前"
2469
 
2470
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:27
2471
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:71
2472
+ #: inc/vk-blocks/admin/admin-margin.php:27 inc/vk-blocks/admin/admin.php:71
2473
+ msgid "Common Margin Setting"
2474
+ msgstr "共通余白設定"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2475
 
2476
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin-margin.php:28
2477
+ #: inc/vk-blocks/admin/admin-margin.php:28
2478
+ msgid ""
2479
+ "Please specify the size of the common margin used for responsive spacers, "
2480
+ "etc."
2481
+ msgstr ""
2482
+ "レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"
2483
 
2484
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:47
2485
+ #: inc/vk-blocks/admin/admin.php:47
2486
  msgid "Blocks setting"
2487
  msgstr "Blocks 設定"
2488
 
2489
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:48
2490
+ #: inc/vk-blocks/admin/admin.php:48
2491
  msgctxt "label in admin menu"
2492
  msgid "Blocks"
2493
  msgstr "Blocks"
2494
 
2495
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:64
2496
+ #: inc/vk-blocks/admin/admin.php:64
2497
  msgid "Blocks Setting"
2498
  msgstr "Blocks 設定"
2499
 
2500
+ #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:70
2501
+ #: inc/vk-blocks/admin/admin.php:70
2502
  msgid "Balloon Block Setting"
2503
  msgstr "吹き出しブロック設定"
2504
 
2505
+ #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:61
2506
+ #: inc/vk-blocks/load-bootstrap.php:61
 
 
 
 
 
 
2507
  msgid "VK Blocks Bootstrap Setting"
2508
  msgstr "VK Blocks Bootstrapの設定"
2509
 
2510
+ #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:81
2511
+ #: inc/vk-blocks/load-bootstrap.php:81
2512
  msgid "Loading Bootstrap4"
2513
  msgstr "Bootstrap4の読み込み"
2514
 
2515
+ #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:82
2516
+ #: inc/vk-blocks/load-bootstrap.php:82
2517
  msgid ""
2518
  "Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, "
2519
  "uncheck here."
2521
  "Bootstrap4を読み込む場合はここにチェックを入れてください。テーマやプラグイン"
2522
  "がBootstrap4を読み込む場合は、ここのチェックを外してください。"
2523
 
2524
+ #: dist/vk-blocks-pro/inc/vk-blocks/load-bootstrap.php:102
2525
+ #: inc/vk-blocks/load-bootstrap.php:102
2526
+ msgid "Setting"
2527
+ msgstr "設定"
2528
+
2529
+ #: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:186
2530
+ #: inc/vk-blocks/view/class-vk-blocks-postlist.php:186
2531
  msgid "No Post is selected"
2532
  msgstr "投稿が選択されていません"
2533
 
2534
+ #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:319
2535
+ #: inc/vk-blocks/vk-blocks-functions.php:320
2536
  msgid "Blocks"
2537
  msgstr "Blocks"
2538
 
2539
+ #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:332
2540
+ #: inc/vk-blocks/vk-blocks-functions.php:333
2541
  msgid "Blocks Layout"
2542
  msgstr "ブロックレイアウト"
2543
 
2544
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:53
2545
+ #: inc/vk-components/package/class-vk-component-posts.php:53
2546
  msgid "Read more"
2547
  msgstr "続きを読む"
2548
 
2549
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:55
2550
+ #: inc/vk-components/package/class-vk-component-posts.php:55
2551
  msgid "New!!"
2552
  msgstr "New!!"
2553
 
2554
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:241
2555
+ #: inc/vk-components/package/class-vk-component-posts.php:241
2556
+ msgid "Page"
2557
+ msgstr "ページ"
2558
+
2559
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:674
2560
+ #: inc/vk-components/package/class-vk-component-posts.php:675
2561
  msgid "Card Noborder"
2562
  msgstr "カード(線なし)"
2563
 
2564
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:678
2565
+ #: inc/vk-components/package/class-vk-component-posts.php:683
2566
  msgid "Card Horizontal"
2567
  msgstr "カード(水平)"
2568
 
2569
+ #: dist/vk-blocks-pro/inc/vk-components/package/class-vk-component-posts.php:686
2570
+ #: inc/vk-components/package/class-vk-component-posts.php:691
2571
  msgctxt "post list type"
2572
  msgid "Text 1 Column"
2573
  msgstr "テキスト 1 カラム"
2592
  msgid "Output only the main CSS of the page inline"
2593
  msgstr "主要なCSSのみインラインで出力します"
2594
 
2595
+ #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:93
2596
+ #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:159
2597
+ #: inc/vk-css-optimize/package/class-vk-css-optimize.php:93
2598
+ #: inc/vk-css-optimize/package/class-vk-css-optimize.php:159
2599
+ msgid "Nothing to do"
2600
+ msgstr "何もしない"
2601
+
2602
  #: dist/vk-blocks-pro/inc/vk-css-optimize/package/class-vk-css-optimize.php:94
2603
  #: inc/vk-css-optimize/package/class-vk-css-optimize.php:94
2604
  msgid "Active Tree shaking (Recomend)"
2656
  "す。プリロードしたくないファイルがある場合は、ハンドル名(id)を入力してくだ"
2657
  "さい。 例)pluginname_a-style,pluginname_b-css"
2658
 
2659
+ #: dist/vk-blocks-pro/src/blocks/page-content/index.php:121
2660
+ #: src/blocks/page-content/index.php:121
2661
+ msgid "Edit this area"
2662
+ msgstr "このエリアを編集"
2663
+
2664
+ #: dist/vk-blocks-pro/vk-blocks.php:93 vk-blocks.php:90
2665
  msgid ""
2666
  "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks "
2667
  "Plugin running."
2669
  "VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しまし"
2670
  "た。"
2671
 
2672
+ #: inc/vk-components/package/class-vk-component-posts.php:238
2673
+ msgid "Posts navigation"
2674
+ msgstr "投稿ナビゲーション"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2675
 
2676
+ #: inc/vk-components/package/class-vk-component-posts.php:239
2677
+ msgid "Posts"
2678
+ msgstr "投稿"
 
 
 
2679
 
2680
+ #: inc/vk-components/package/class-vk-component-posts.php:679
2681
+ msgid "Card Intext"
2682
+ msgstr "カードインテキスト"
2683
 
2684
+ #: dist/vk-blocks-pro/src/blocks/alert/block.json src/blocks/alert/block.json
2685
  msgctxt "block description"
2686
  msgid "A colored box with four statuses, including annotations and alerts."
2687
  msgstr "注釈や注意など4つのステータスがある色付きのボックスです。"
2688
 
2689
+ #: dist/vk-blocks-pro/src/blocks/balloon/block.json
2690
  #: src/blocks/balloon/block.json
2691
  msgctxt "block description"
2692
  msgid "These speech balloons are perfect for recreating conversations."
2693
  msgstr "会話の再現などに最適な吹き出しです。"
2694
 
2695
+ #: dist/vk-blocks-pro/src/blocks/border-box/block.json
2696
  #: src/blocks/border-box/block.json
2697
  msgctxt "block description"
2698
  msgid "This is a border box where you can place headings to attract attention."
2699
  msgstr "見出しを配置でき注目されやすい枠線ボックスです。"
2700
 
2701
+ #: dist/vk-blocks-pro/src/blocks/button/block.json src/blocks/button/block.json
2702
  msgctxt "block description"
2703
  msgid "A button link that can display icons before and after."
2704
  msgstr "前後にアイコンを表示できるボタンリンクです。"
2705
 
2706
+ #: dist/vk-blocks-pro/src/blocks/faq/block.json src/blocks/faq/block.json
2707
  msgctxt "block description"
2708
  msgid "Displays a combination of questions and answers."
2709
  msgstr "質問と回答を組み合わせて表示します。"
2710
 
2711
+ #: dist/vk-blocks-pro/src/blocks/faq2-a/block.json src/blocks/faq2-a/block.json
2712
  msgctxt "block description"
2713
  msgid "Answer area where you can add blocks freely."
2714
  msgstr "自由にブロックを追加できる回答エリアです。"
2715
 
2716
+ #: dist/vk-blocks-pro/src/blocks/faq2-q/block.json src/blocks/faq2-q/block.json
2717
  msgctxt "block description"
2718
  msgid "Question area where you can freely add blocks."
2719
  msgstr "自由にブロックを追加できる質問エリアです。"
2720
 
2721
+ #: dist/vk-blocks-pro/src/blocks/faq2/block.json src/blocks/faq2/block.json
2722
  msgctxt "block description"
2723
  msgid ""
2724
  "It displays a combination of questions and answers. You can freely add "
2727
  "質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できま"
2728
  "す。"
2729
 
2730
+ #: dist/vk-blocks-pro/src/blocks/flow/block.json src/blocks/flow/block.json
2731
  msgctxt "block description"
2732
  msgid "Displays a sequential description in time series."
2733
  msgstr "時系列で順を追った説明を表示します。"
2734
 
2735
+ #: dist/vk-blocks-pro/src/blocks/heading/block.json
2736
  #: src/blocks/heading/block.json
2737
  msgctxt "block description"
2738
  msgid ""
2740
  "margin."
2741
  msgstr "文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"
2742
 
2743
+ #: dist/vk-blocks-pro/src/blocks/icon-outer/block.json
 
 
 
 
2744
  #: src/blocks/icon-outer/block.json
2745
  msgctxt "block description"
2746
  msgid "Display the Font Awesome icons horizontally."
2747
  msgstr "Font Awesome のアイコンフォントを横並びに表示します"
2748
 
2749
+ #: dist/vk-blocks-pro/src/blocks/icon/block.json src/blocks/icon/block.json
2750
+ msgctxt "block description"
2751
+ msgid "Display icons with Font Awesome."
2752
+ msgstr "Font Awesome のアイコンフォントを表示します"
2753
+
2754
+ #: dist/vk-blocks-pro/src/blocks/page-content/block.json
2755
  #: src/blocks/page-content/block.json
2756
  msgctxt "block description"
2757
  msgid "Displays the body content of the specified parent page."
2758
  msgstr "指定した基準ページの本文内容を表示します。"
2759
 
2760
+ #: dist/vk-blocks-pro/src/blocks/pr-blocks/block.json
2761
  #: src/blocks/pr-blocks/block.json
2762
  msgctxt "block description"
2763
  msgid "This is a PR block where you can place images and icon."
2764
  msgstr "画像,アイコンの配置ができるPRブロックです。"
2765
 
2766
+ #: dist/vk-blocks-pro/src/blocks/pr-content/block.json
2767
  #: src/blocks/pr-content/block.json
2768
  msgctxt "block description"
2769
  msgid ""
2770
  "This is PR content where you can place images, headlines, text, and buttons."
2771
  msgstr "画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"
2772
 
2773
+ #: dist/vk-blocks-pro/src/blocks/spacer/block.json src/blocks/spacer/block.json
2774
  msgctxt "block description"
2775
  msgid "Use responsive spacers to get the margins right."
2776
  msgstr "レスポンシブに対応したスペーサーで余白を適切に取ります。"
2777
 
2778
+ #: dist/vk-blocks-pro/src/blocks/staff/block.json src/blocks/staff/block.json
2779
  msgctxt "block description"
2780
  msgid ""
2781
  "Used for staff introduction, company introduction, school introduction, "
2782
  "menu, etc."
2783
  msgstr "スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"
2784
 
2785
+ #: dist/vk-blocks-pro/src/blocks/_pro/accordion-target/block.json
2786
  #: src/blocks/_pro/accordion-target/block.json
2787
  msgctxt "block description"
2788
  msgid "This is the content area where you can add blocks freely."
2789
  msgstr "コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"
2790
 
2791
+ #: dist/vk-blocks-pro/src/blocks/_pro/accordion-trigger/block.json
2792
  #: src/blocks/_pro/accordion-trigger/block.json
2793
  msgctxt "block description"
2794
  msgid "This is the title area where you can freely add blocks."
2795
  msgstr "自由にブロックを追加できるタイトルエリアです。"
2796
 
2797
+ #: dist/vk-blocks-pro/src/blocks/_pro/accordion/block.json
2798
  #: src/blocks/_pro/accordion/block.json
2799
  msgctxt "block description"
2800
  msgid "Collapses and hides content when the content is long."
2801
  msgstr "自由にブロックを追加できるコンテンツエリアです。"
2802
 
2803
+ #: dist/vk-blocks-pro/src/blocks/_pro/animation/block.json
2804
  #: src/blocks/_pro/animation/block.json
2805
  msgctxt "block description"
2806
  msgid "Add animation to elements when scrolling the page."
2807
  msgstr "ページをスクロールした時に要素に動きを加えます。"
2808
 
2809
+ #: dist/vk-blocks-pro/src/blocks/_pro/card-item/block.json
2810
  #: src/blocks/_pro/card-item/block.json
2811
  msgctxt "block description"
2812
  msgid "A single item in a card block."
2813
  msgstr "アイコンカード内の1つのアイテムです。"
2814
 
2815
+ #: dist/vk-blocks-pro/src/blocks/_pro/card/block.json
2816
  #: src/blocks/_pro/card/block.json
2817
  msgctxt "block description"
2818
  msgid "A card where you can place images, headings, text, and links."
2819
  msgstr "画像,見出し,テキスト,リンクが配置できるカードです。"
2820
 
2821
+ #: dist/vk-blocks-pro/src/blocks/_pro/child-page/block.json
2822
  #: src/blocks/_pro/child-page/block.json
2823
  msgctxt "block description"
2824
  msgid ""
2825
  "When a parent page is specified, a list of its child pages will be displayed."
2826
  msgstr "親となる固定ページを指定するとその子ページの一覧を表示します。"
2827
 
2828
+ #: dist/vk-blocks-pro/src/blocks/_pro/grid-column-item/block.json
2829
  #: src/blocks/_pro/grid-column-item/block.json
2830
  msgctxt "block description"
2831
  msgid "One item in a grit column block."
2832
  msgstr "グリットカラムブロック内の1つのアイテムです。"
2833
 
2834
+ #: dist/vk-blocks-pro/src/blocks/_pro/grid-column/block.json
2835
  #: src/blocks/_pro/grid-column/block.json
2836
  msgctxt "block description"
2837
  msgid "Set the number of columns to be displayed for each screen size."
2838
  msgstr "画面サイズ毎にカラム数を設定して表示させます。"
2839
 
2840
+ #: dist/vk-blocks-pro/src/blocks/_pro/icon-card-item/block.json
2841
  #: src/blocks/_pro/icon-card-item/block.json
2842
  msgctxt "block description"
2843
  msgid "This is one item in an icon card."
2844
  msgstr "アイコンカード内の1つのアイテムです。"
2845
 
2846
+ #: dist/vk-blocks-pro/src/blocks/_pro/icon-card/block.json
2847
  #: src/blocks/_pro/icon-card/block.json
2848
  msgctxt "block description"
2849
  msgid "Display card with icons, headings, text, and links."
2850
  msgstr "アイコン,見出し,テキスト,リンクを設定してカードを表示します。"
2851
 
2852
+ #: dist/vk-blocks-pro/src/blocks/_pro/outer/block.json
2853
  #: src/blocks/_pro/outer/block.json
2854
  msgctxt "block description"
2855
  msgid ""
2856
  "Set the background image, color, and border to show the layout and divisions."
2857
  msgstr "背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"
2858
 
2859
+ #: dist/vk-blocks-pro/src/blocks/_pro/post-list/block.json
2860
  #: src/blocks/_pro/post-list/block.json
2861
  msgctxt "block description"
2862
  msgid ""
2864
  "number of posts to display."
2865
  msgstr "投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"
2866
 
2867
+ #: dist/vk-blocks-pro/src/blocks/_pro/select-post-list-item/block.json
2868
  #: src/blocks/_pro/select-post-list-item/block.json
2869
  msgctxt "block description"
2870
  msgid "A single item in the select post list."
2871
  msgstr "選択投稿リスト内の1つのアイテムです。"
2872
 
2873
+ #: dist/vk-blocks-pro/src/blocks/_pro/select-post-list/block.json
2874
  #: src/blocks/_pro/select-post-list/block.json
2875
  msgctxt "block description"
2876
  msgid ""
2877
  "Displays an arbitrarily specified page with the layout of the posting list."
2878
  msgstr "任意に指定したページを投稿リストのレイアウトで表示します。"
2879
 
2880
+ #: dist/vk-blocks-pro/src/blocks/_pro/slider-item/block.json
2881
  #: src/blocks/_pro/slider-item/block.json
2882
  msgctxt "block description"
2883
  msgid "This is one item in the slider."
2884
  msgstr "スライダー内の1つのアイテムです。"
2885
 
2886
+ #: dist/vk-blocks-pro/src/blocks/_pro/slider/block.json
2887
  #: src/blocks/_pro/slider/block.json
2888
  msgctxt "block description"
2889
  msgid ""
2893
  "様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面で"
2894
  "プレビューしてください。"
2895
 
2896
+ #: dist/vk-blocks-pro/src/blocks/_pro/step-item/block.json
2897
  #: src/blocks/_pro/step-item/block.json
2898
  msgctxt "block description"
2899
  msgid "This element sets the icon, color, and style of the step mark."
2900
  msgstr "ステップマークのアイコン、色、スタイルを設定する要素です。"
2901
 
2902
+ #: dist/vk-blocks-pro/src/blocks/_pro/step/block.json
2903
  #: src/blocks/_pro/step/block.json
2904
  msgctxt "block description"
2905
  msgid "Set and display step marks, which are useful when explaining the order."
2906
  msgstr "順番を説明する時に便利でステップマークを設定し表示します。"
2907
 
2908
+ #: dist/vk-blocks-pro/src/blocks/_pro/table-of-contents-new/block.json
2909
  #: src/blocks/_pro/table-of-contents-new/block.json
2910
  msgctxt "block description"
2911
  msgid ""
2913
  "headings when added."
2914
  msgstr "追加すると見出しに合わせて自動で生成される目次です。"
2915
 
2916
+ #: dist/vk-blocks-pro/src/blocks/_pro/timeline-item/block.json
2917
  #: src/blocks/_pro/timeline-item/block.json
2918
  msgctxt "block description"
2919
  msgid "This element sets the label, color, and style of the timeline."
2920
  msgstr "タイムラインのラベル、色、スタイルを設定する要素です。"
2921
 
2922
+ #: dist/vk-blocks-pro/src/blocks/_pro/timeline/block.json
2923
  #: src/blocks/_pro/timeline/block.json
2924
  msgctxt "block description"
2925
  msgid ""
2927
  "explaining the order."
2928
  msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。"
2929
 
2930
+ #: src/blocks/button-outer/block.json
2931
+ msgctxt "block title"
2932
+ msgid "Button Outer"
2933
+ msgstr "横並びボタン"
2934
+
2935
+ #: src/blocks/button-outer/block.json
2936
+ msgctxt "block description"
2937
+ msgid "Display the VK Button block horizontally."
2938
+ msgstr "VK ボタンブロックを横並びに表示します"
2939
+
2940
+ #~ msgid "Author: %s"
2941
+ #~ msgstr "投稿者: %s"
2942
+
2943
+ #~ msgctxt "yearly archives date format"
2944
+ #~ msgid "Y"
2945
+ #~ msgstr "Y年"
2946
+
2947
+ #~ msgctxt "monthly archives date format"
2948
+ #~ msgid "F Y"
2949
+ #~ msgstr "Y年n月"
2950
+
2951
+ #~ msgctxt "daily archives date format"
2952
+ #~ msgid "F j, Y"
2953
+ #~ msgstr "Y年n月j日"
2954
+
2955
+ #~ msgid "Archives"
2956
+ #~ msgstr "アーカイブ"
2957
+
2958
+ #~ msgid "About %s"
2959
+ #~ msgstr "%s について"
2960
+
2961
+ #~ msgctxt "Yearly archive description"
2962
+ #~ msgid "Article of %s."
2963
+ #~ msgstr "%s の記事."
2964
+
2965
+ #~ msgctxt "Archive description"
2966
+ #~ msgid "Article of %s."
2967
+ #~ msgstr "%s の記事."
2968
+
2969
+ #~ msgid "Page of %s"
2970
+ #~ msgstr "%sのページ"
2971
+
2972
+ #~ msgid "This theme requires the following plugin: %1$s."
2973
+ #~ msgid_plural "This theme requires the following plugins: %1$s."
2974
+ #~ msgstr[0] "このプラグインは下記プラグインを推奨しています:%1$s。"
2975
+
2976
+ #~ msgid ""
2977
+ #~ "This theme recommends the following plugin: %1$s.<br>Many additional "
2978
+ #~ "functions are available for free."
2979
+ #~ msgid_plural ""
2980
+ #~ "This theme recommends the following plugins: %1$s.<br>Many additional "
2981
+ #~ "functions are available for free."
2982
+ #~ msgstr[0] ""
2983
+ #~ "このテーマは下記プラグインを必要としています:%1$s。<br>これらのプラグイン"
2984
+ #~ "は無償で利用可能です。"
2985
+
2986
+ #, fuzzy
2987
+ #~| msgid ""
2988
+ #~| "The following plugin needs to be updated to its latest version to ensure "
2989
+ #~| "maximum compatibility with this plugin: %1$s."
2990
+ #~| msgid_plural ""
2991
+ #~| "The following plugins need to be updated to their latest version to "
2992
+ #~| "ensure maximum compatibility with this plugin: %1$s."
2993
+ #~ msgid ""
2994
+ #~ "The following plugin needs to be updated to its latest version to ensure "
2995
+ #~ "maximum compatibility with this theme: %1$s."
2996
+ #~ msgid_plural ""
2997
+ #~ "The following plugins need to be updated to their latest version to "
2998
+ #~ "ensure maximum compatibility with this theme: %1$s."
2999
+ #~ msgstr[0] ""
3000
+ #~ "このテーマとの最大の互換性を確保するには、次のプラグインを最新バージョンに"
3001
+ #~ "更新する必要があります: %1$s。"
3002
+
3003
+ #~ msgid "VK Blocks Template"
3004
+ #~ msgstr "VK Blocks テンプレート"
3005
+
3006
+ #~ msgid "Full Wide Title Set"
3007
+ #~ msgstr "全幅見出しセット"
3008
+
3009
+ #~ msgid "About"
3010
+ #~ msgstr "About"
3011
+
3012
+ #~ msgid "Icon Card Set"
3013
+ #~ msgstr "アイコンカードセット"
3014
+
3015
+ #, fuzzy
3016
+ #~| msgid "Latest Posts"
3017
+ #~ msgid "Feature Posts"
3018
+ #~ msgstr "新着記事"
3019
+
3020
+ #~ msgid "Call To Action"
3021
+ #~ msgstr "Call To Action"
3022
+
3023
+ #~ msgid "Step set"
3024
+ #~ msgstr "ステップセット"
3025
+
3026
+ #~ msgid "Border box"
3027
+ #~ msgstr "枠線ボックス"
3028
+
3029
+ #~ msgid "Slider Template"
3030
+ #~ msgstr "スライダーテンプレート"
3031
+
3032
+ #~ msgid "Display Block Template Setting"
3033
+ #~ msgstr "ブロックテンプレート表示設定"
3034
+
3035
+ #~ msgid "WordPress Block Template"
3036
+ #~ msgstr "WordPress ブロックテンプレート"
3037
+
3038
+ #~ msgid "Optimize VK Blocks CSS ( Tree Shaking )"
3039
+ #~ msgstr "VK Blocks のCSSを最適化する(Tree Shaking)"
3040
+
3041
+ #~ msgid "CSS Optimize Setting"
3042
+ #~ msgstr "CSS最適化設定"
3043
+
3044
  #~ msgid "Slider is do not move in edit screen."
3045
  #~ msgstr ""
3046
  #~ "スライダーは編集画面では動きません。公開画面でプレビューしてください。"
3367
  #~ msgid "Balloon: Default Icons"
3368
  #~ msgstr "吹き出しブロック:デフォルトアイコン設定"
3369
 
 
 
 
3370
  #~ msgid "Enter Font Awesome Class."
3371
  #~ msgstr "Font Awesome の class 名を入力してください。"
3372
 
3404
  #~ msgid "normal"
3405
  #~ msgstr "標準"
3406
 
 
 
 
3407
  #~ msgid "FAQ"
3408
  #~ msgstr "質問と解答"
3409
 
inc/vk-blocks/languages/vk-blocks.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the VK Blocks Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: VK Blocks Pro 1.16.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-10-22T04:10:07+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: vk-blocks\n"
@@ -148,6 +148,10 @@ msgstr ""
148
  msgid "Animation"
149
  msgstr ""
150
 
 
 
 
 
151
  #: src/blocks/_pro/card-item/deprecated/0.20.2/component.js:149
152
  #: src/blocks/_pro/card-item/deprecated/0.20.3/component.js:151
153
  #: src/blocks/_pro/card-item/deprecated/0.20.4/component.js:156
@@ -2557,12 +2561,12 @@ msgid "No Post is selected"
2557
  msgstr ""
2558
 
2559
  #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:319
2560
- #: inc/vk-blocks/vk-blocks-functions.php:319
2561
  msgid "Blocks"
2562
  msgstr ""
2563
 
2564
  #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:332
2565
- #: inc/vk-blocks/vk-blocks-functions.php:332
2566
  msgid "Blocks Layout"
2567
  msgstr ""
2568
 
@@ -2924,3 +2928,13 @@ msgstr ""
2924
  msgctxt "block description"
2925
  msgid "Displays a simple schedule and other information that is useful for explaining the order."
2926
  msgstr ""
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the VK Blocks Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: VK Blocks Pro 1.16.11\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-28T00:05:40+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: vk-blocks\n"
148
  msgid "Animation"
149
  msgstr ""
150
 
151
+ #: src/blocks/_pro/button-outer/index.js:18
152
+ msgid "Button Outer"
153
+ msgstr ""
154
+
155
  #: src/blocks/_pro/card-item/deprecated/0.20.2/component.js:149
156
  #: src/blocks/_pro/card-item/deprecated/0.20.3/component.js:151
157
  #: src/blocks/_pro/card-item/deprecated/0.20.4/component.js:156
2561
  msgstr ""
2562
 
2563
  #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:319
2564
+ #: inc/vk-blocks/vk-blocks-functions.php:320
2565
  msgid "Blocks"
2566
  msgstr ""
2567
 
2568
  #: dist/vk-blocks-pro/inc/vk-blocks/vk-blocks-functions.php:332
2569
+ #: inc/vk-blocks/vk-blocks-functions.php:333
2570
  msgid "Blocks Layout"
2571
  msgstr ""
2572
 
2928
  msgctxt "block description"
2929
  msgid "Displays a simple schedule and other information that is useful for explaining the order."
2930
  msgstr ""
2931
+
2932
+ #: src/blocks/_pro/button-outer/block.json
2933
+ msgctxt "block title"
2934
+ msgid "Button Outer"
2935
+ msgstr ""
2936
+
2937
+ #: src/blocks/_pro/button-outer/block.json
2938
+ msgctxt "block description"
2939
+ msgid "Display the VK Button block horizontally."
2940
+ msgstr ""
inc/vk-blocks/vk-blocks-functions.php CHANGED
@@ -205,6 +205,7 @@ function vk_blocks_blocks_assets() {
205
  'accordion-target',
206
  'accordion-trigger',
207
  'animation',
 
208
  'card',
209
  'card-item',
210
  'child-page',
205
  'accordion-target',
206
  'accordion-trigger',
207
  'animation',
208
+ 'button-outer',
209
  'card',
210
  'card-item',
211
  'child-page',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Gutenberg,FAQ,alert
5
  Requires at least: 5.7
6
  Tested up to: 5.8.1
7
- Stable tag: 1.16.11
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -63,6 +63,9 @@ e.g.
63
 
64
  == Changelog ==
65
 
 
 
 
66
  = 1.16.11 =
67
  [ Bug fix ][ Button ] Fix color on katawara
68
 
4
  Tags: Gutenberg,FAQ,alert
5
  Requires at least: 5.7
6
  Tested up to: 5.8.1
7
+ Stable tag: 1.17.0
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
63
 
64
  == Changelog ==
65
 
66
+ = 1.17.0 =
67
+ [ Add Block ][ Button Outer(Pro) ]
68
+
69
  = 1.16.11 =
70
  [ Bug fix ][ Button ] Fix color on katawara
71
 
src/blocks/button/style.scss CHANGED
@@ -6,7 +6,8 @@ $vk-color-danger: #dc3545;
6
  $vk-color-light:#f8f9fa;
7
  $vk-color-dark:#343a40;
8
 
9
- :root {
 
10
  .has-vk-color-primary-background-color {
11
  background-color: var(--vk-color-primary);
12
  }
@@ -58,7 +59,8 @@ $vk-color-dark:#343a40;
58
  }
59
 
60
 
61
- .vk_button {
 
62
  margin: 0 auto 5px; /* 他テーマで0だと左寄せになる場合があるのでautoに変更 */
63
  text-align: center; /* テキストのみの時のセンター揃え */
64
  &-color-custom {
@@ -66,10 +68,13 @@ $vk-color-dark:#343a40;
66
  opacity: 0.8;
67
  box-shadow: 0 0 0 0.2rem rgba(171, 184, 195, 0.25);
68
  }
 
 
 
69
  }
70
 
71
  // 塗り
72
- .has-background {
73
  color: #fff;
74
  /* 白っぽい色に対する対策 */
75
  &.has-vk-color-light-background-color,
@@ -79,7 +84,7 @@ $vk-color-dark:#343a40;
79
  }
80
 
81
  // 背景なし
82
- .has-text-color.is-style-outline {
83
  background-color: transparent;
84
  border: 1px solid currentColor;
85
  &:hover {
@@ -294,9 +299,3 @@ $vk-color-dark:#343a40;
294
  }
295
  }
296
 
297
- .vk_button-color-custom {
298
- .vk_button_link-type-text:hover {
299
- box-shadow: none;
300
- }
301
- }
302
-
6
  $vk-color-light:#f8f9fa;
7
  $vk-color-dark:#343a40;
8
 
9
+ :root,
10
+ :root .editor-styles-wrapper {
11
  .has-vk-color-primary-background-color {
12
  background-color: var(--vk-color-primary);
13
  }
59
  }
60
 
61
 
62
+ .vk_button,
63
+ .editor-styles-wrapper .vk_button {
64
  margin: 0 auto 5px; /* 他テーマで0だと左寄せになる場合があるのでautoに変更 */
65
  text-align: center; /* テキストのみの時のセンター揃え */
66
  &-color-custom {
68
  opacity: 0.8;
69
  box-shadow: 0 0 0 0.2rem rgba(171, 184, 195, 0.25);
70
  }
71
+ .vk_button_link-type-text:hover {
72
+ box-shadow: none;
73
+ }
74
  }
75
 
76
  // 塗り
77
+ .btn.has-background {
78
  color: #fff;
79
  /* 白っぽい色に対する対策 */
80
  &.has-vk-color-light-background-color,
84
  }
85
 
86
  // 背景なし
87
+ .btn.has-text-color.is-style-outline {
88
  background-color: transparent;
89
  border: 1px solid currentColor;
90
  &:hover {
299
  }
300
  }
301
 
 
 
 
 
 
 
src/blocks/icon-outer/index.js CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * Accordion Outer Block
3
  */
4
  import { ReactComponent as Icon } from './icon.svg';
5
  import { __ } from '@wordpress/i18n';
1
  /**
2
+ * Icon Outer Block
3
  */
4
  import { ReactComponent as Icon } from './icon.svg';
5
  import { __ } from '@wordpress/i18n';
src/blocks/icon-outer/index.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * Registers the `vk-blocks/icon_outer` block.
4
  *
5
  * @package vk-blocks
6
  */
1
  <?php
2
  /**
3
+ * Registers the `vk-blocks/icon-outer` block.
4
  *
5
  * @package vk-blocks
6
  */
vk-blocks.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK Blocks
4
  * Plugin URI: https://github.com/vektor-inc/vk-blocks
5
  * Description: This is a plugin that extends Gutenberg's blocks.
6
- * Version: 1.16.11
7
  * Requires at least: 5.7
8
  * Author: Vektor,Inc.
9
  * Author URI: https://vektor-inc.co.jp
3
  * Plugin Name: VK Blocks
4
  * Plugin URI: https://github.com/vektor-inc/vk-blocks
5
  * Description: This is a plugin that extends Gutenberg's blocks.
6
+ * Version: 1.17.0
7
  * Requires at least: 5.7
8
  * Author: Vektor,Inc.
9
  * Author URI: https://vektor-inc.co.jp