Coming Soon Page and Maintenance Mode for WordPress Block Editor - Version 1.2.0

Version Description

Download this release

Release Info

Developer heldervilela
Plugin Icon 128x128 Coming Soon Page and Maintenance Mode for WordPress Block Editor
Version 1.2.0
Comparing to
See all releases

Code changes from version 1.1.0 to 1.2.0

Files changed (78) hide show
  1. admin/Toolbar.php +3 -1
  2. admin/api/UnlockPage.php +2 -2
  3. admin/api/UpdatePost.php +100 -0
  4. admin/blocks/Init.php +1 -1
  5. admin/blocks/_available/temp-01/render.php +1 -1
  6. admin/blocks/_available/temp-01/styles/editor.scss +0 -10
  7. admin/blocks/_available/temp-01/styles/style.scss +0 -173
  8. admin/blocks/_available/temp-02/styles/editor.scss +0 -10
  9. admin/blocks/_available/temp-02/styles/style.scss +0 -80
  10. admin/blocks/_available/temp-03/render.php +1 -1
  11. admin/blocks/_available/temp-03/styles/editor.scss +0 -10
  12. admin/blocks/_available/temp-03/styles/style.scss +0 -114
  13. admin/blocks/_available/temp-04/styles/editor.scss +0 -8
  14. admin/blocks/_available/temp-04/styles/style.scss +0 -109
  15. admin/blocks/_available/temp-05/styles/editor.scss +0 -8
  16. admin/blocks/_available/temp-05/styles/style.scss +0 -112
  17. admin/blocks/_available/temp-06/attributes.php +78 -0
  18. admin/blocks/_available/temp-06/media/thumb.jpg +0 -0
  19. admin/blocks/_available/temp-06/render.php +88 -0
  20. admin/blocks/_available/temp-07/attributes.php +90 -0
  21. admin/blocks/_available/temp-07/media/thumb.jpg +0 -0
  22. admin/blocks/_available/temp-07/render.php +100 -0
  23. admin/blocks/_available/temp-08/attributes.php +90 -0
  24. admin/blocks/_available/temp-08/media/thumb.jpg +0 -0
  25. admin/blocks/_available/temp-08/render.php +97 -0
  26. admin/blocks/available-blocks.json +40 -10
  27. admin/blocks/sidebar/templates/editor.scss +1 -0
  28. admin/blocks/styles/_vendor/easings.scss +0 -25
  29. admin/blocks/styles/_vendor/mix.scss +0 -121
  30. admin/blocks/styles/_vendor/socicon.scss +0 -801
  31. admin/blocks/styles/components/block-background.scss +0 -162
  32. admin/blocks/styles/components/editor/_sidebar.scss +0 -60
  33. admin/blocks/styles/components/editor/background.scss +0 -70
  34. admin/blocks/styles/components/editor/brand-upload.scss +0 -46
  35. admin/blocks/styles/components/editor/font-picker.scss +0 -185
  36. admin/blocks/styles/components/editor/inspector-controls-image-uploader.scss +0 -24
  37. admin/blocks/styles/components/editor/misc-components--sidebar.scss +0 -108
  38. admin/blocks/styles/components/editor/panel-uploader-placeholder.scss +0 -212
  39. admin/blocks/styles/components/plugin-feature.scss +0 -51
  40. admin/blocks/styles/components/social-icons.scss +0 -258
  41. admin/config.settings.php +42 -30
  42. admin/dashboard/Init.php +68 -24
  43. admin/dashboard/styles/dashboard.scss +0 -6
  44. admin/dashboard/styles/dashboard/all-pages.scss +0 -60
  45. admin/dashboard/styles/global.scss +0 -14
  46. admin/dashboard/styles/global/admin-menu.scss +0 -59
  47. admin/dashboard/styles/global/toolbar.scss +0 -200
  48. admin/dashboard/template.php +1 -0
  49. coming-soon-blocks.php +4 -3
  50. frontend/components/block-background-overlayer.php +1 -1
  51. frontend/components/block-background.php +1 -1
  52. frontend/components/cookie-notice.php +1 -1
  53. frontend/components/social-icons.php +1 -1
  54. frontend/components/unlock-page.php +1 -1
  55. frontend/init.php +1 -4
  56. frontend/styles/components/cookie-notice.scss +0 -91
  57. frontend/styles/components/unlock-page.scss +0 -289
  58. frontend/styles/frontend.scss +0 -20
  59. frontend/template.php +1 -1
  60. languages/coming-soon-blocks.pot +27 -19
  61. lib/Block_Editor_Checker.php +1 -1
  62. lib/Footer_Text.php +3 -2
  63. lib/Plugin.php +84 -4
  64. lib/Utils.php +26 -8
  65. lib/freemius.php +2 -2
  66. lib/freemius/assets/img/coming-soon-blocks.png +0 -0
  67. lib/freemius/assets/img/mobile-menu.png +0 -0
  68. lib/freemius/templates/powered-by.php +1 -21
  69. public/dist/blocks.bundle.js +7 -7
  70. public/dist/blocks.editor.bundle.css +13 -1322
  71. public/dist/blocks.style.bundle.css +9 -2151
  72. public/dist/dashboard.bundle.css +1 -85
  73. public/dist/dashboard.bundle.js +1 -1
  74. public/dist/frontend.bundle.css +1 -418
  75. public/dist/frontend.bundle.js +9 -18
  76. public/dist/global.bundle.css +1 -252
  77. public/svg/empty-bg.svg +26 -0
  78. readme.txt +14 -3
admin/Toolbar.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
@@ -42,6 +42,8 @@ class Toolbar {
42
  */
43
  function admin_bar_menu( $wp_admin_bar ) {
44
 
 
 
45
  foreach (Plugin::get_settings('toolbar') as $menu) {
46
 
47
  if( Plugin::is_active() ) {
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
42
  */
43
  function admin_bar_menu( $wp_admin_bar ) {
44
 
45
+ if( is_network_admin() ) return;
46
+
47
  foreach (Plugin::get_settings('toolbar') as $menu) {
48
 
49
  if( Plugin::is_active() ) {
admin/api/UnlockPage.php CHANGED
@@ -3,12 +3,12 @@
3
  * Unlock Coming Soon Page
4
  *
5
  * @package coming-soon-blocks
6
- * @version 1.1.0
7
  * @author Helder Vilela from Pixelthrone
8
  * @license GPL-3.0
9
  */
10
 
11
- namespace Pixelthrone\ComingSoon_Blocks\Api\UnlockPage;
12
 
13
  use Pixelthrone\ComingSoon_Blocks\Utils;
14
  use Pixelthrone\ComingSoon_Blocks\Plugin;
3
  * Unlock Coming Soon Page
4
  *
5
  * @package coming-soon-blocks
6
+ * @version 1.2.0
7
  * @author Helder Vilela from Pixelthrone
8
  * @license GPL-3.0
9
  */
10
 
11
+ namespace Pixelthrone\ComingSoon_Blocks\Api;
12
 
13
  use Pixelthrone\ComingSoon_Blocks\Utils;
14
  use Pixelthrone\ComingSoon_Blocks\Plugin;
admin/api/UpdatePost.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Unlock Coming Soon Page
4
+ *
5
+ * @package coming-soon-blocks
6
+ * @version 1.2.0
7
+ * @author Helder Vilela from Pixelthrone
8
+ * @license GPL-3.0
9
+ */
10
+
11
+ namespace Pixelthrone\ComingSoon_Blocks\Api;
12
+
13
+ use Pixelthrone\ComingSoon_Blocks\Utils;
14
+ use Pixelthrone\ComingSoon_Blocks\Plugin;
15
+ use WP_REST_Request;
16
+ use WP_REST_Response;
17
+ use WP_REST_Server;
18
+ use WP_Error;
19
+
20
+ class UpdatePost {
21
+
22
+ /**
23
+ * Endpoint namespace.
24
+ *
25
+ * @var string
26
+ */
27
+ protected $namespace = 'v1/coming-soon-blocks';
28
+
29
+ /**
30
+ * Route base.
31
+ *
32
+ * @var string
33
+ */
34
+ protected $rest_endpoint = 'update-post';
35
+
36
+ public
37
+ function __construct() {
38
+
39
+ add_action( 'rest_api_init', function () {
40
+
41
+ /**
42
+ * Update Post
43
+ *
44
+ * @since 1.0.0
45
+ * @access public
46
+ * @endpoint /wp-json/v1/coming-soon-blocks/update-post/:id (POST)
47
+ *
48
+ * @return object
49
+ */
50
+ register_rest_route( $this->namespace, '/' . $this->rest_endpoint . '/(?P<id>\d+)', [
51
+ 'methods' => WP_REST_Server::CREATABLE,
52
+ 'callback' => [ $this, 'callback' ],
53
+ ] );
54
+
55
+ } );
56
+
57
+ }
58
+
59
+ /**
60
+ * Get cart.
61
+ *
62
+ * @access public
63
+ * @since 1.0.0
64
+ *
65
+ * @param array $data
66
+ *
67
+ * @return WP_REST_Response
68
+ */
69
+ public
70
+ function callback( WP_REST_Request $request ) {
71
+
72
+ if ( ! current_user_can( 'manage_options' ) ) {
73
+ return new WP_Error( 'manage-options', esc_html__( 'User has no permissions to edit the page.', 'coming-soon-blocks' ), [ 'status' => 403 ] );
74
+ }
75
+
76
+ $id = $request->get_param( 'id' );
77
+ $selected_page_id = Plugin::get_option( 'selected_page_id' );
78
+
79
+ $id = ( $id === (int) $selected_page_id ) ? null : $id;
80
+ Plugin::update_option( 'selected_page_id', null, $id );
81
+
82
+ $response = [
83
+ 'code' => 'updated',
84
+ '$id' => $id,
85
+ '$selected_page_id' => $selected_page_id,
86
+ 'data' => [
87
+ 'status' => 200,
88
+ ],
89
+ 'message' => esc_html__( 'Page updated.', 'coming-soon-blocks' )
90
+ ];
91
+
92
+ return new WP_REST_Response( $response, 200 );
93
+
94
+ }
95
+
96
+ }
97
+
98
+ new UpdatePost();
99
+
100
+
admin/blocks/Init.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
admin/blocks/_available/temp-01/render.php CHANGED
@@ -73,4 +73,4 @@ return function( $attributes, $content ) {
73
  </main>
74
  <?php
75
  return ob_get_clean();
76
- };
73
  </main>
74
  <?php
75
  return ob_get_clean();
76
+ };
admin/blocks/_available/temp-01/styles/editor.scss DELETED
@@ -1,10 +0,0 @@
1
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-01"] {
2
-
3
- // Block Wrapper
4
- main[data-block="pixelthrone/comingsoon--temp-01"] {
5
- //margin-top: -17px;
6
- //transform: translateY(3px);
7
- height: calc(100vh - 146px);
8
- }
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-01/styles/style.scss DELETED
@@ -1,173 +0,0 @@
1
- $image-height: 230px;
2
- $max-width: 1170px;
3
- main[data-block="pixelthrone/comingsoon--temp-01"] {
4
- height: 100vh;
5
- width: 100%;
6
- display: flex;
7
- flex-direction: column;
8
- flex-wrap: nowrap;
9
- justify-content: flex-end;
10
- align-items: center;
11
- padding-bottom: 15px;
12
- position: relative;
13
- box-sizing: border-box;
14
-
15
- /**
16
- * Content
17
- */
18
- .content__container {
19
- position: relative;
20
- width: 100%;
21
- max-width: $max-width;
22
- padding: 0 50px;
23
- display: grid;
24
- grid-gap: 10px 40px;
25
- grid-template-rows: auto auto auto;
26
- grid-template-columns: 1fr 2fr 1fr;
27
- z-index: 2;
28
- box-sizing: border-box;
29
-
30
- @include media(tablet-portrait) {
31
- grid-template-rows: auto auto auto;
32
- grid-template-columns: 1fr;
33
- grid-gap: 10px;
34
- }
35
- @include media(mobile) {
36
- padding: 0 30px;
37
- }
38
-
39
- // Brand
40
- .brand__wrapper {
41
- grid-column-start: 1;
42
- grid-row-start: 1;
43
-
44
- @include media(tablet-portrait) {
45
- padding-bottom: 20px;
46
- }
47
-
48
- button {
49
- &.-left-align { margin-right: auto; }
50
- &.-center-align { margin: 0 auto; }
51
- &.-right-align { margin-left: auto; }
52
- }
53
-
54
- img {
55
- max-width: 230px;
56
- &.-left-align { margin-right: auto; }
57
- &.-center-align { margin: 0 auto; }
58
- &.-right-align { margin-left: auto; }
59
-
60
- @include media(tablet-portrait) {
61
- margin: 0 !important;
62
- }
63
- }
64
-
65
- > * {
66
- display: block;
67
- @include media(tablet-portrait) {
68
- margin: 0;
69
- }
70
- }
71
-
72
- }
73
- // Title
74
- .title__wrapper {
75
- grid-column-start: 1;
76
- grid-row-start: 3;
77
-
78
- h1 {
79
- padding: 0;
80
- margin: 0;
81
- color: inherit;
82
- }
83
-
84
- @include media(tablet-portrait) {
85
- grid-column-start: 1;
86
- grid-row-start: 2;
87
-
88
- h1 {
89
- padding-bottom: 5px;
90
- }
91
- }
92
- }
93
- // Subtitle
94
- .subtitle__wrapper {
95
- grid-column-start: 2;
96
- grid-row-start: 2;
97
-
98
- h2 {
99
- padding: 0;
100
- margin: 0;
101
- color: inherit;
102
- }
103
-
104
- @include media(tablet-portrait) {
105
- grid-column-start: 1;
106
- grid-row-start: 3;
107
- }
108
- }
109
- // Description
110
- .description__wrapper {
111
- grid-column-start: 2;
112
- grid-row-start: 3;
113
-
114
- @include media(tablet-portrait) {
115
- grid-column-start: 1;
116
- grid-row-start: 4;
117
- }
118
-
119
- p {
120
- padding: 0;
121
- margin: 0;
122
- @extend %inherit-typography ;
123
-
124
- &.copyright {
125
- margin-top: 30px;
126
- margin-bottom: 30px;
127
- opacity: 0.6;
128
- font-size: 0.8em !important;
129
-
130
- @include media(tablet-portrait) {
131
- margin-top: 15px;
132
- }
133
- @include media(mobile) {
134
- margin-bottom: 15px;
135
- }
136
-
137
- a {
138
- color: inherit;
139
- font-weight: 500;
140
- text-decoration: none;
141
- border-bottom: 1px solid;
142
- padding-bottom: 2px;
143
-
144
- &:hover { border-bottom: none; }
145
- }
146
- }
147
- }
148
-
149
- }
150
- // Social
151
- .social__wrapper {
152
- grid-column-start: 3;
153
- grid-row-start: 3;
154
-
155
- @include media(tablet-portrait) {
156
- grid-column-start: 1;
157
- grid-row-start: 5;
158
- padding-bottom: 10px;
159
- margin-left: -15px;
160
- }
161
-
162
- > div {
163
- margin-left: auto;
164
- justify-content: flex-end;
165
-
166
- @include media(tablet-portrait) {
167
- justify-content: flex-start;
168
- }
169
- }
170
- }
171
- }
172
- }
173
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-02/styles/editor.scss DELETED
@@ -1,10 +0,0 @@
1
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-02"] {
2
-
3
- // Block Wrapper
4
- main[data-block="pixelthrone/comingsoon--temp-02"] {
5
- //margin-top: -17px;
6
- //transform: translateY(3px);
7
- height: calc(100vh - 146px);
8
- }
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-02/styles/style.scss DELETED
@@ -1,80 +0,0 @@
1
- $image-height: 230px;
2
- $max-width: 1170px;
3
- main[data-block="pixelthrone/comingsoon--temp-02"] {
4
- height: 100vh;
5
- width: 100%;
6
- display: flex;
7
- flex-direction: column;
8
- flex-wrap: nowrap;
9
- justify-content: center;
10
- align-items: center;
11
- padding-bottom: 15px;
12
- position: relative;
13
- box-sizing: border-box;
14
-
15
- /**
16
- * Brand
17
- */
18
- .brand__wrapper {
19
- position: relative;
20
- z-index: 10;
21
- > button {
22
- margin: 0 auto 0 auto;
23
- img {
24
- display: inherit;
25
- }
26
- }
27
- > img {
28
- margin: 0 auto 0 auto;
29
- display: inherit;
30
-
31
- @include media(mobile) {
32
- max-width: 80vw !important;
33
- height: auto;
34
- }
35
- }
36
-
37
- .additional-text__wrapper {
38
- display: block;
39
- width: 100%;
40
- padding-top: 30px;
41
- text-align: center;
42
-
43
- @include media(mobile) {
44
- padding: 20px 50px 0 50px;
45
- box-sizing: border-box;
46
- }
47
-
48
- p {
49
- @extend %inherit-typography;
50
- padding: 0;
51
- margin: 0;
52
- font-size: 1.2em !important;
53
- }
54
- }
55
- }
56
-
57
- /**
58
- * Copyright
59
- */
60
- .copyright__wrapper {
61
- position: absolute;
62
- bottom: 30px;
63
- left: 0;
64
- width: 100%;
65
- text-align: center;
66
- padding: 0 30px;
67
- margin: 0;
68
- z-index: 10;
69
- box-sizing: border-box;
70
- p {
71
- padding: 0;
72
- margin: 0;
73
- }
74
- @include media(mobile) {
75
- bottom: 15px;
76
- }
77
- }
78
-
79
- }
80
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-03/render.php CHANGED
@@ -67,4 +67,4 @@ return function( $attributes, $content ) {
67
  </main>
68
  <?php
69
  return ob_get_clean();
70
- };
67
  </main>
68
  <?php
69
  return ob_get_clean();
70
+ };
admin/blocks/_available/temp-03/styles/editor.scss DELETED
@@ -1,10 +0,0 @@
1
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-03"] {
2
-
3
- // Block Wrapper
4
- main[data-block="pixelthrone/comingsoon--temp-03"] {
5
- //margin-top: -17px;
6
- //transform: translateY(3px);
7
- height: calc(100vh - 146px);
8
- }
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-03/styles/style.scss DELETED
@@ -1,114 +0,0 @@
1
- $image-height: 230px;
2
- $max-width: 1170px;
3
- main[data-block="pixelthrone/comingsoon--temp-03"] {
4
- height: 100vh;
5
- width: 100%;
6
- position: relative;
7
- box-sizing: border-box;
8
-
9
- display: flex;
10
- flex-direction: row;
11
- flex-wrap: nowrap;
12
- justify-content: flex-start;
13
- align-items: center;
14
-
15
- @include media(mobile) {
16
- flex-direction: column;
17
- align-items: flex-start;
18
- }
19
-
20
- /**
21
- * Brand
22
- */
23
- .brand__wrapper {
24
- z-index: 10;
25
- position: absolute;
26
- top: 30px;
27
- right: 30px;
28
-
29
- @include media(mobile) {
30
- right: auto;
31
- left: auto;
32
- position: relative;
33
- padding-left: 30px;
34
- margin-bottom: 60px;
35
- }
36
- }
37
-
38
- /**
39
- * Content
40
- */
41
- .content__wrapper {
42
- position: relative;
43
- z-index: 10;
44
- padding-left: 100px;
45
- box-sizing: content-box;
46
-
47
- display: flex;
48
- flex-direction: column;
49
- flex-wrap: nowrap;
50
- justify-content: flex-start;
51
- align-items: flex-start;
52
-
53
- @include media(tablet-portrait) {
54
- padding-left: 60px;
55
- }
56
- @include media(mobile) {
57
- padding-left: 30px;
58
- padding-right: 15px;
59
- flex-grow: 1;
60
-
61
- display: flex;
62
- flex-direction: column;
63
- flex-wrap: wrap;
64
- justify-content: flex-start;
65
- align-items: flex-start;
66
- }
67
-
68
- .social__wrapper {
69
- display: block;
70
- height: 60px;
71
- width: auto;
72
- margin-left: -10px;
73
-
74
- button[data-empty="true"] {
75
- right: -40px;
76
- }
77
- }
78
-
79
- h1 {
80
- padding: 0;
81
- margin: 0;
82
- color: inherit;
83
- width: 100%;
84
- }
85
-
86
- h3 {
87
- padding: 0;
88
- margin: 0;
89
- color: inherit;
90
- margin-top: 10px;
91
- width: 100%;
92
- }
93
-
94
- p {
95
- padding: 0;
96
- margin: 50px 0 0 0;
97
- color: inherit;
98
- width: 100%;
99
-
100
- @include media(mobile) {
101
- padding-bottom: 15px;
102
- flex-grow: 1;
103
- display: flex;
104
- flex-direction: row;
105
- flex-wrap: nowrap;
106
- justify-content: flex-start;
107
- align-items: flex-end;
108
-
109
- }
110
- }
111
- }
112
-
113
- }
114
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-04/styles/editor.scss DELETED
@@ -1,8 +0,0 @@
1
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-04"] {
2
-
3
- // Block Wrapper
4
- main[data-block="pixelthrone/comingsoon--temp-04"] {
5
- height: calc(100vh - 146px);
6
- }
7
-
8
- }
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-04/styles/style.scss DELETED
@@ -1,109 +0,0 @@
1
- $image-height: 230px;
2
- $max-width: 1170px;
3
- main[data-block="pixelthrone/comingsoon--temp-04"] {
4
- height: 100vh;
5
- width: 100%;
6
- position: relative;
7
- box-sizing: border-box;
8
-
9
- display: flex;
10
- flex-direction: column;
11
- flex-wrap: nowrap;
12
- justify-content: space-between;
13
- align-items: center;
14
-
15
- /**
16
- * Middle
17
- */
18
- .middle-content__wrapper {
19
- position: relative;
20
- z-index: 10;
21
- text-align: center;
22
- padding-top: 30px;
23
-
24
- @include media(mobile) {
25
- padding-left: 20px;
26
- padding-right: 20px;
27
- padding-top: 20px;
28
- }
29
-
30
- button {
31
- margin: 0 auto 0 auto;
32
- img {
33
- margin-bottom: 40px;
34
- display: inherit;
35
- }
36
- }
37
- > img {
38
- margin: 0 auto 0 auto;
39
- margin-bottom: 40px;
40
- display: inherit;
41
- }
42
- h3 {
43
- padding: 0;
44
- margin: 0;
45
- color: inherit;
46
- margin-bottom: 5px;
47
- }
48
- h1 {
49
- padding: 0;
50
- margin: 0;
51
- color: inherit;
52
- }
53
- .additional-text__wrapper {
54
- display: block;
55
- width: 100%;
56
- padding-top: 20px;
57
- p {
58
- @extend %inherit-typography;
59
- padding: 0;
60
- margin: 0;
61
- font-size: 1.2em !important;
62
- }
63
- }
64
- }
65
-
66
- /**
67
- * Bottom
68
- */
69
- .bottom-content__wrapper {
70
- position: relative;
71
- z-index: 10;
72
- padding-bottom: 30px;
73
- text-align: center;
74
-
75
- @include media(mobile) {
76
- padding-bottom: 20px;
77
- }
78
-
79
- h3 {
80
- padding: 0;
81
- margin: 0;
82
- color: inherit;
83
- margin-top: 10px;
84
- }
85
-
86
- .social__wrapper {
87
- width: auto;
88
- margin-top: 10px;
89
-
90
- div[data-component="social-icons"] {
91
- justify-content: center;
92
- width: auto;
93
-
94
- button[data-empty="true"] {
95
- right: 40px;
96
- }
97
- }
98
-
99
- }
100
-
101
- p {
102
- padding: 0;
103
- margin: 30px 0 0 0;
104
- color: inherit;
105
- }
106
- }
107
-
108
- }
109
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-05/styles/editor.scss DELETED
@@ -1,8 +0,0 @@
1
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-05"] {
2
-
3
- // Block Wrapper
4
- main[data-block="pixelthrone/comingsoon--temp-05"] {
5
- height: calc(100vh - 146px);
6
- }
7
-
8
- }
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-05/styles/style.scss DELETED
@@ -1,112 +0,0 @@
1
- $image-height: 230px;
2
- $max-width: 1170px;
3
- main[data-block="pixelthrone/comingsoon--temp-05"] {
4
- height: 100vh;
5
- width: 100%;
6
- position: relative;
7
- box-sizing: border-box;
8
-
9
- display: flex;
10
- flex-direction: column;
11
- flex-wrap: nowrap;
12
- justify-content: space-between;
13
- align-items: center;
14
-
15
- @include media(mobile) {
16
- flex-direction: column-reverse;
17
- justify-content: flex-start;
18
- align-items: flex-start;
19
- }
20
-
21
- /**
22
- * Middle
23
- */
24
- .middle-content__wrapper {
25
- position: relative;
26
- z-index: 10;
27
- text-align: center;
28
- box-sizing: border-box;
29
- padding-top: 50px;
30
-
31
- @include media(mobile) {
32
- text-align: left;
33
- padding: 30px 25px 40px 25px;
34
- }
35
-
36
- h1 {
37
- padding: 0;
38
- margin: 0;
39
- }
40
- }
41
-
42
- /**
43
- * Bottom
44
- */
45
- .bottom-content__wrapper {
46
- position: relative;
47
- z-index: 10;
48
- display: flex;
49
- flex-direction: row;
50
- flex-wrap: nowrap;
51
- justify-content: space-between;
52
- align-items: flex-end;
53
- box-sizing: border-box;
54
- width: 100%;
55
- padding: 0 50px;
56
- padding-bottom: 30px;
57
-
58
- @include media(mobile) {
59
- text-align: left;
60
- padding: 30px 25px 0 25px;
61
- flex-grow: 1;
62
-
63
- flex-direction: column;
64
- justify-content: flex-start;
65
- align-items: flex-start;
66
- }
67
-
68
- // Copy
69
- div:nth-of-type(1) {
70
- img {
71
- margin-bottom: 10px;
72
- }
73
- h3 {
74
- padding: 0;
75
- margin: 0;
76
- color: inherit;
77
- margin-top: 10px;
78
- }
79
- p {
80
- padding: 0;
81
- margin: 10px 0 0 0;
82
- color: inherit;
83
- &.contacts_wrapper { margin-top: 10px; }
84
- &.copyright_wrapper { margin-top: 20px; }
85
- }
86
- }
87
-
88
- // Social
89
- div:nth-of-type(2) {
90
- .social__wrapper {
91
- width: auto;
92
- margin-top: 10px;
93
- padding-right: 40px;
94
-
95
- @include media(mobile) {
96
- margin-left: -15px;
97
- }
98
-
99
- div[data-component="social-icons"] {
100
- justify-content: center;
101
- width: auto;
102
- button[data-empty="true"] {
103
- right: -40px;
104
- }
105
- }
106
- }
107
- }
108
-
109
- }
110
-
111
- }
112
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/_available/temp-06/attributes.php ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Plugin;
4
+
5
+ return [
6
+ 'align' => [
7
+ 'type' => 'string',
8
+ 'default' => 'full'
9
+ ],
10
+ 'logo' => [
11
+ 'type' => 'string',
12
+ 'default' => json_encode( [
13
+ 'id' => '',
14
+ 'url' => Plugin::get_cdn_url( 'avatar--01.jpg' ),
15
+ ] ),
16
+ ],
17
+ 'logoMaxWidth' => [
18
+ 'type' => 'number',
19
+ 'default' => 110,
20
+ ],
21
+ 'logoWithMask' => [
22
+ 'type' => 'boolean',
23
+ 'default' => true,
24
+ ],
25
+ 'contentMaxWidth' => [
26
+ 'type' => 'number',
27
+ 'default' => 800,
28
+ ],
29
+ 'titleText' => [
30
+ 'type' => 'string',
31
+ 'default' => 'Hi! I\'m Ana and I’m a travel blogger trying to make the world a better place.'
32
+ ],
33
+ 'subtitleText' => [
34
+ 'type' => 'string',
35
+ 'default' => 'Our website is under construction.<br>Meantime you can follow me on:'
36
+ ],
37
+ 'copyrightText' => [
38
+ 'type' => 'string',
39
+ 'default' => '<strong>© 2018 PixelThrone</strong>— All rights reserved.'
40
+ ],
41
+ 'titleTextColor' => [
42
+ 'type' => 'string',
43
+ 'default' => '#FC596A'
44
+ ],
45
+ 'bodyTextColor' => [
46
+ 'type' => 'string',
47
+ 'default' => '#181723'
48
+ ],
49
+ 'titleTypo' => [
50
+ 'type' => 'string',
51
+ 'default' => '{"fontfamily":"Work Sans","variants":["100","200","300","regular","500","600","700","800","900"],"desktop":{"fontweight":"900","fontsize":48,"lineheight":120,"letterspacing":0.9},"mobile":{"fontweight":"900","fontsize":33,"lineheight":120,"letterspacing":1}}',
52
+ ],
53
+ 'bodyTypo' => [
54
+ 'type' => 'string',
55
+ 'default' => '{"fontfamily":"Montserrat","variants":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"desktop":{"fontweight":"300","fontsize":15,"lineheight":150,"letterspacing":0.2},"mobile":{"fontweight":"regular","fontsize":13,"lineheight":150,"letterspacing":1}}',
56
+ ],
57
+ 'networks' => [
58
+ 'type' => 'string',
59
+ 'default' => '[]',
60
+ ],
61
+ 'overlay' => [
62
+ 'type' => 'string',
63
+ 'default' => json_encode( [
64
+ 'color' => '#000000',
65
+ 'opacity' => 0,
66
+ ] )
67
+ ],
68
+ 'background' => [
69
+ 'type' => 'string',
70
+ 'default' => json_encode( [
71
+ 'type' => 'color',
72
+ 'image' => [],
73
+ 'gallery' => [],
74
+ 'video' => [],
75
+ 'color' => '#FFFFFF'
76
+ ] ),
77
+ ]
78
+ ];
admin/blocks/_available/temp-06/media/thumb.jpg ADDED
Binary file
admin/blocks/_available/temp-06/render.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Utils;
4
+
5
+ /**
6
+ * @param $attributes
7
+ * @param $content
8
+ *
9
+ * @return false|string
10
+ */
11
+ return function ( $attributes, $content ) {
12
+
13
+ // Not render on backend
14
+ if ( is_admin() ) {
15
+ return null;
16
+ }
17
+
18
+ $attributes = (object) $attributes;
19
+
20
+ $blockID = uniqid( 'block__' );
21
+ $attributes->logo = json_decode( $attributes->logo );
22
+ $attributes->overlay = json_decode( $attributes->overlay );
23
+
24
+ /**
25
+ * Body CSS
26
+ */
27
+ $titleTypo = json_decode( $attributes->titleTypo );
28
+ Utils\page_fonts( 'add', $titleTypo );
29
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $titleTypo, 'title__typography' ) );
30
+
31
+ $bodyTypo = json_decode( $attributes->bodyTypo );
32
+ Utils\page_fonts( 'add', $bodyTypo );
33
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $bodyTypo, 'body__typography' ) );
34
+
35
+ /**
36
+ * Output
37
+ */
38
+ ob_start();
39
+ // var_dump($attributes);
40
+ ?>
41
+ <main data-blockid="<?php echo $blockID; ?>"
42
+ data-block="pixelthrone/comingsoon--temp-06"
43
+ style="color:<?php echo esc_attr($attributes->bodyTextColor) ?>;">
44
+
45
+ <div class="top-content__wrapper"></div>
46
+
47
+ <div class="middle-content__wrapper" >
48
+ <div style="max-width:<?php echo esc_attr($attributes->contentMaxWidth) ?>px;">
49
+
50
+ <?php
51
+ if( ! $attributes->logoWithMask ) {
52
+ echo '<img style="max-width: '.esc_attr( $attributes->logoMaxWidth ).'px" src="'.esc_url( $attributes->logo->url ).'">';
53
+ } else {
54
+ echo '<span class="image-add-mask" style="width: '.esc_attr( $attributes->logoMaxWidth ).'px; height: '.esc_attr( $attributes->logoMaxWidth ).'px; background-image: url('.esc_url( $attributes->logo->url ).')"></span>';
55
+ }
56
+ ?>
57
+
58
+
59
+ <?php
60
+ if ( ! empty( $attributes->titleText ) ) {
61
+ echo '<h1 style="color: '.esc_attr($attributes->titleTextColor).';" class="-title__typography">'.Utils\esc_allowed_html( $attributes->titleText ).'</h1>';
62
+ }
63
+ if ( ! empty( $attributes->subtitleText ) ) {
64
+ echo '<p class="-body__typography">'.Utils\esc_allowed_html( $attributes->subtitleText ).'</p>';
65
+ }
66
+ ?>
67
+ <?php if ( ! empty( $attributes->networks ) && $attributes->networks !== '[]' ): ?>
68
+ <div class="social__wrapper">
69
+ <?php Utils\component( 'social-icons', [ 'networks' => $attributes->networks ] ) ?>
70
+ </div>
71
+ <?php endif; ?>
72
+ </div>
73
+ </div>
74
+
75
+ <div class="bottom-content__wrapper -body__typography">
76
+ <?php
77
+ if ( ! empty( $attributes->copyrightText ) ) {
78
+ echo '<p class="copyright_wrapper">' . Utils\esc_allowed_html( $attributes->copyrightText ) . '</p>';
79
+ }
80
+ ?>
81
+ </div>
82
+
83
+ <?php Utils\component( 'block-background-overlayer', [ 'overlayColor' => $attributes->overlay->color, 'overlayOpacity' => $attributes->overlay->opacity ] ) ?>
84
+ <?php Utils\component( 'block-background', [ 'background' => $attributes->background ] ) ?>
85
+ </main>
86
+ <?php
87
+ return ob_get_clean();
88
+ };
admin/blocks/_available/temp-07/attributes.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Plugin;
4
+
5
+ return [
6
+ 'align' => [
7
+ 'type' => 'string',
8
+ 'default' => 'full'
9
+ ],
10
+ 'logo' => [
11
+ 'type' => 'string',
12
+ 'default' => json_encode( [
13
+ 'id' => '',
14
+ 'url' => Plugin::get_cdn_url( 'logo--03.png' ),
15
+ ] ),
16
+ ],
17
+ 'logoMaxWidth' => [
18
+ 'type' => 'number',
19
+ 'default' => 150,
20
+ ],
21
+ 'contentMaxWidth' => [
22
+ 'type' => 'number',
23
+ 'default' => 470,
24
+ ],
25
+ 'titleText' => [
26
+ 'type' => 'string',
27
+ 'default' => 'We are preparing something amazing and exciting for you.'
28
+ ],
29
+ 'subtitleText' => [
30
+ 'type' => 'string',
31
+ 'default' => 'We’re Coming Soon!'
32
+ ],
33
+ 'descriptionText' => [
34
+ 'type' => 'string',
35
+ 'default' => 'Our website is under construction, <br>meantime you can follow me on:'
36
+ ],
37
+ 'copyrightText' => [
38
+ 'type' => 'string',
39
+ 'default' => '<strong>© 2018 PixelThrone</strong> — All rights reserved.'
40
+ ],
41
+ 'titleTextColor' => [
42
+ 'type' => 'string',
43
+ 'default' => '#CF3C86'
44
+ ],
45
+ 'bodyTextColor' => [
46
+ 'type' => 'string',
47
+ 'default' => '#0F1336'
48
+ ],
49
+ 'titleTypo' => [
50
+ 'type' => 'string',
51
+ 'default' => '{"fontfamily":"Work Sans","variants":["100","200","300","regular","500","600","700","800","900"],"desktop":{"fontweight":"900","fontsize":40,"lineheight":120,"letterspacing":1},"mobile":{"fontweight":"700","fontsize":30,"lineheight":110,"letterspacing":1}}',
52
+ ],
53
+ 'subtitleTypo' => [
54
+ 'type' => 'string',
55
+ 'default' => '{"fontfamily":"Vollkorn","variants":["regular","italic","600","600italic","700","700italic","900","900italic"],"desktop":{"fontweight":"italic","fontsize":25,"lineheight":100,"letterspacing":1},"mobile":{"fontweight":"italic","fontsize":25,"lineheight":100,"letterspacing":1}}',
56
+ ],
57
+ 'bodyTypo' => [
58
+ 'type' => 'string',
59
+ 'default' => '{"fontfamily":"Work Sans","variants":["100","200","300","regular","500","600","700","800","900"],"desktop":{"fontweight":"regular","fontsize":16,"lineheight":130,"letterspacing":1},"mobile":{"fontweight":"regular","fontsize":13,"lineheight":150,"letterspacing":1}}',
60
+ ],
61
+ 'networks' => [
62
+ 'type' => 'string',
63
+ 'default' => '[]',
64
+ ],
65
+ 'blockBgColor' => [
66
+ 'type' => 'string',
67
+ 'default' => '#FFFFFF'
68
+ ],
69
+ 'overlay' => [
70
+ 'type' => 'string',
71
+ 'default' => json_encode( [
72
+ 'color' => '#000000',
73
+ 'opacity' => 0,
74
+ ] )
75
+ ],
76
+ 'background' => [
77
+ 'type' => 'string',
78
+ 'default' => json_encode( [
79
+ 'type' => 'image',
80
+ 'image' => [
81
+ 'id' => '',
82
+ 'full' => Plugin::get_cdn_url('temp-07--bg.jpg'),
83
+ 'thumb' => '',
84
+ ],
85
+ 'gallery' => [],
86
+ 'video' => [],
87
+ 'color' => '#000000'
88
+ ] ),
89
+ ]
90
+ ];
admin/blocks/_available/temp-07/media/thumb.jpg ADDED
Binary file
admin/blocks/_available/temp-07/render.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Utils;
4
+
5
+ /**
6
+ * @param $attributes
7
+ * @param $content
8
+ *
9
+ * @return false|string
10
+ */
11
+ return function ( $attributes, $content ) {
12
+
13
+ // Not render on backend
14
+ if ( is_admin() ) {
15
+ return null;
16
+ }
17
+
18
+ $attributes = (object) $attributes;
19
+
20
+ $blockID = uniqid( 'block__' );
21
+ $attributes->logo = json_decode( $attributes->logo );
22
+ $attributes->overlay = json_decode( $attributes->overlay );
23
+
24
+ /**
25
+ * Body CSS
26
+ */
27
+ // Typography
28
+ $titleTypo = json_decode( $attributes->titleTypo );
29
+ Utils\page_fonts( 'add', $titleTypo );
30
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $titleTypo, 'title__typography' ) );
31
+
32
+ $subtitleTypo = json_decode( $attributes->subtitleTypo );
33
+ Utils\page_fonts( 'add', $subtitleTypo );
34
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $subtitleTypo, 'subtitle__typography' ) );
35
+
36
+ $bodyTypo = json_decode( $attributes->bodyTypo );
37
+ Utils\page_fonts( 'add', $bodyTypo );
38
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $bodyTypo, 'body__typography' ) );
39
+
40
+ // Colors
41
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] { color: {$attributes->bodyTextColor}; }" );
42
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] h1 { color: {$attributes->titleTextColor}; }" );
43
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] h2 { color: {$attributes->titleTextColor}; }" );
44
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] .content__wrapper { background-color: {$attributes->blockBgColor}; }" );
45
+
46
+ /**
47
+ * Output
48
+ */
49
+ ob_start();
50
+ // var_dump($attributes);
51
+ ?>
52
+ <main data-blockid="<?php echo $blockID; ?>"
53
+ data-block="pixelthrone/comingsoon--temp-07"
54
+ style="color:<?php echo esc_attr($attributes->textColor) ?>;">
55
+
56
+
57
+ <div class="media__wrapper">
58
+ <img style="max-width: <?php echo esc_attr( $attributes->logoMaxWidth ) ?>px"
59
+ src="<?php echo esc_url( $attributes->logo->url ) ?>">
60
+ </div>
61
+
62
+
63
+ <div class="content__wrapper -body__typography">
64
+ <!-- Content -->
65
+ <div class="the-content" style="max-width: <?php echo esc_attr( $attributes->contentMaxWidth ) ?>px">
66
+ <?php
67
+ if ( ! empty( $attributes->subtitleText ) ) {
68
+ echo '<h2 class="-subtitle__typography">' . Utils\esc_allowed_html( $attributes->subtitleText ) . '</h2>';
69
+ }
70
+ if ( ! empty( $attributes->titleText ) ) {
71
+ echo '<h1 class="-title__typography">' . Utils\esc_allowed_html( $attributes->titleText ) . '</h1>';
72
+ }
73
+ if ( ! empty( $attributes->descriptionText ) ) {
74
+ echo '<p>' . Utils\esc_allowed_html( $attributes->descriptionText ) . '</p>';
75
+ }
76
+ if ( ! empty( $attributes->networks ) && $attributes->networks !== '[]' ) {
77
+ echo '<div class="social__wrapper">';
78
+ Utils\component( 'social-icons', [ 'networks' => $attributes->networks ] );
79
+ echo '</div>';
80
+ }
81
+ ?>
82
+ </div>
83
+
84
+ <!-- Footer -->
85
+ <div class="the-footer">
86
+ <?php
87
+ if ( ! empty( $attributes->copyrightText ) ) {
88
+ echo '<p class="copyright_wrapper">' . Utils\esc_allowed_html( $attributes->copyrightText ) . '</p>';
89
+ }
90
+ ?>
91
+ </div>
92
+ </div>
93
+
94
+
95
+ <?php Utils\component( 'block-background-overlayer', [ 'overlayColor' => $attributes->overlay->color, 'overlayOpacity' => $attributes->overlay->opacity ] ) ?>
96
+ <?php Utils\component( 'block-background', [ 'background' => $attributes->background ] ) ?>
97
+ </main>
98
+ <?php
99
+ return ob_get_clean();
100
+ };
admin/blocks/_available/temp-08/attributes.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Plugin;
4
+
5
+ return [
6
+ 'align' => [
7
+ 'type' => 'string',
8
+ 'default' => 'full'
9
+ ],
10
+ 'logo' => [
11
+ 'type' => 'string',
12
+ 'default' => json_encode( [
13
+ 'id' => '',
14
+ 'url' => Plugin::get_cdn_url( 'logo--03.png' ),
15
+ ] ),
16
+ ],
17
+ 'logoMaxWidth' => [
18
+ 'type' => 'number',
19
+ 'default' => 150,
20
+ ],
21
+ 'contentMaxWidth' => [
22
+ 'type' => 'number',
23
+ 'default' => 470,
24
+ ],
25
+ 'titleText' => [
26
+ 'type' => 'string',
27
+ 'default' => 'Hi! I\'m Ana and I’m a lifestyle blogger. We are preparing something amazing and exciting.'
28
+ ],
29
+ 'subtitleText' => [
30
+ 'type' => 'string',
31
+ 'default' => ''
32
+ ],
33
+ 'descriptionText' => [
34
+ 'type' => 'string',
35
+ 'default' => 'Our website is under construction, <br>meantime you can follow me on:'
36
+ ],
37
+ 'copyrightText' => [
38
+ 'type' => 'string',
39
+ 'default' => '<strong>© 2018 PixelThrone</strong> — All rights reserved.'
40
+ ],
41
+ 'titleTextColor' => [
42
+ 'type' => 'string',
43
+ 'default' => '#FFFFFF'
44
+ ],
45
+ 'bodyTextColor' => [
46
+ 'type' => 'string',
47
+ 'default' => '#FFFFFF'
48
+ ],
49
+ 'titleTypo' => [
50
+ 'type' => 'string',
51
+ 'default' => '{"fontfamily":"Work Sans","variants":["100","200","300","regular","500","600","700","800","900"],"desktop":{"fontweight":"900","fontsize":40,"lineheight":120,"letterspacing":1},"mobile":{"fontweight":"700","fontsize":28,"lineheight":110,"letterspacing":1}}',
52
+ ],
53
+ 'subtitleTypo' => [
54
+ 'type' => 'string',
55
+ 'default' => '{"fontfamily":"Vollkorn","variants":["regular","italic","600","600italic","700","700italic","900","900italic"],"desktop":{"fontweight":"italic","fontsize":25,"lineheight":100,"letterspacing":1},"mobile":{"fontweight":"italic","fontsize":22,"lineheight":100,"letterspacing":1}}',
56
+ ],
57
+ 'bodyTypo' => [
58
+ 'type' => 'string',
59
+ 'default' => '{"fontfamily":"Work Sans","variants":["100","200","300","regular","500","600","700","800","900"],"desktop":{"fontweight":"regular","fontsize":16,"lineheight":130,"letterspacing":1},"mobile":{"fontweight":"regular","fontsize":13,"lineheight":150,"letterspacing":1}}',
60
+ ],
61
+ 'networks' => [
62
+ 'type' => 'string',
63
+ 'default' => '[]',
64
+ ],
65
+ 'blockBgColor' => [
66
+ 'type' => 'string',
67
+ 'default' => '#F72D4F'
68
+ ],
69
+ 'overlay' => [
70
+ 'type' => 'string',
71
+ 'default' => json_encode( [
72
+ 'color' => '#000000',
73
+ 'opacity' => 0,
74
+ ] )
75
+ ],
76
+ 'background' => [
77
+ 'type' => 'string',
78
+ 'default' => json_encode( [
79
+ 'type' => 'image',
80
+ 'image' => [
81
+ 'id' => '',
82
+ 'full' => Plugin::get_cdn_url('temp-08--bg.jpg'),
83
+ 'thumb' => '',
84
+ ],
85
+ 'gallery' => [],
86
+ 'video' => [],
87
+ 'color' => '#000000'
88
+ ] ),
89
+ ]
90
+ ];
admin/blocks/_available/temp-08/media/thumb.jpg ADDED
Binary file
admin/blocks/_available/temp-08/render.php ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Pixelthrone\ComingSoon_Blocks\Utils;
4
+
5
+ /**
6
+ * @param $attributes
7
+ * @param $content
8
+ *
9
+ * @return false|string
10
+ */
11
+ return function ( $attributes, $content ) {
12
+
13
+ // Not render on backend
14
+ if ( is_admin() ) {
15
+ return null;
16
+ }
17
+
18
+ $attributes = (object) $attributes;
19
+
20
+ $blockID = uniqid( 'block__' );
21
+ $attributes->logo = json_decode( $attributes->logo );
22
+ $attributes->overlay = json_decode( $attributes->overlay );
23
+
24
+ /**
25
+ * Body CSS
26
+ */
27
+ // Typography
28
+ $titleTypo = json_decode( $attributes->titleTypo );
29
+ Utils\page_fonts( 'add', $titleTypo );
30
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $titleTypo, 'title__typography' ) );
31
+
32
+ $subtitleTypo = json_decode( $attributes->subtitleTypo );
33
+ Utils\page_fonts( 'add', $subtitleTypo );
34
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $subtitleTypo, 'subtitle__typography' ) );
35
+
36
+ $bodyTypo = json_decode( $attributes->bodyTypo );
37
+ Utils\page_fonts( 'add', $bodyTypo );
38
+ Utils\page_css( 'add', Utils\compile_block_css( $blockID, $bodyTypo, 'body__typography' ) );
39
+
40
+ // Colors
41
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] { color: {$attributes->bodyTextColor}; }" );
42
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] h1 { color: {$attributes->titleTextColor}; }" );
43
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] h2 { color: {$attributes->titleTextColor}; }" );
44
+ Utils\page_css( 'add', "main[data-blockid=\"{$blockID}\"] .content__wrapper { background-color: {$attributes->blockBgColor}; }" );
45
+
46
+ /**
47
+ * Output
48
+ */
49
+ ob_start();
50
+ // var_dump($attributes);
51
+ ?>
52
+ <main data-blockid="<?php echo $blockID; ?>"
53
+ data-block="pixelthrone/comingsoon--temp-08"
54
+ style="color:<?php echo esc_attr($attributes->textColor) ?>;">
55
+
56
+ <div class="content__wrapper -body__typography">
57
+ <!-- Content -->
58
+ <div class="the-content" style="max-width: <?php echo esc_attr( $attributes->contentMaxWidth ) ?>px">
59
+ <?php
60
+ if ( ! empty( $attributes->subtitleText ) ) {
61
+ echo '<h2 class="-subtitle__typography">' . Utils\esc_allowed_html( $attributes->subtitleText ) . '</h2>';
62
+ }
63
+ if ( ! empty( $attributes->titleText ) ) {
64
+ echo '<h1 class="-title__typography">' . Utils\esc_allowed_html( $attributes->titleText ) . '</h1>';
65
+ }
66
+ if ( ! empty( $attributes->descriptionText ) ) {
67
+ echo '<p>' . Utils\esc_allowed_html( $attributes->descriptionText ) . '</p>';
68
+ }
69
+ if ( ! empty( $attributes->networks ) && $attributes->networks !== '[]' ) {
70
+ echo '<div class="social__wrapper">';
71
+ Utils\component( 'social-icons', [ 'networks' => $attributes->networks ] );
72
+ echo '</div>';
73
+ }
74
+ ?>
75
+ </div>
76
+
77
+ <!-- Footer -->
78
+ <div class="the-footer">
79
+ <?php
80
+ if ( ! empty( $attributes->copyrightText ) ) {
81
+ echo '<p class="copyright_wrapper">' . Utils\esc_allowed_html( $attributes->copyrightText ) . '</p>';
82
+ }
83
+ ?>
84
+ </div>
85
+ </div>
86
+
87
+ <div class="media__wrapper">
88
+ <img style="max-width: <?php echo esc_attr( $attributes->logoMaxWidth ) ?>px"
89
+ src="<?php echo esc_url( $attributes->logo->url ) ?>">
90
+ </div>
91
+
92
+ <?php Utils\component( 'block-background-overlayer', [ 'overlayColor' => $attributes->overlay->color, 'overlayOpacity' => $attributes->overlay->opacity ] ) ?>
93
+ <?php Utils\component( 'block-background', [ 'background' => $attributes->background ] ) ?>
94
+ </main>
95
+ <?php
96
+ return ob_get_clean();
97
+ };
admin/blocks/available-blocks.json CHANGED
@@ -1,14 +1,4 @@
1
  [
2
- {
3
- "name" : "pixelthrone/comingsoon--temp-01",
4
- "slug" : "temp-01",
5
- "thumb" : {
6
- "name" : "01",
7
- "img" : "/admin/blocks/_available/temp-01/media/thumb.jpg"
8
- },
9
- "script" : "",
10
- "render_callback" : true
11
- },
12
  {
13
  "name" : "pixelthrone/comingsoon--temp-03",
14
  "slug" : "temp-03",
@@ -39,6 +29,26 @@
39
  "script" : "",
40
  "render_callback" : true
41
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  {
43
  "name" : "pixelthrone/comingsoon--temp-02",
44
  "slug" : "temp-02",
@@ -48,5 +58,25 @@
48
  },
49
  "script" : "",
50
  "render_callback" : true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
  ]
1
  [
 
 
 
 
 
 
 
 
 
 
2
  {
3
  "name" : "pixelthrone/comingsoon--temp-03",
4
  "slug" : "temp-03",
29
  "script" : "",
30
  "render_callback" : true
31
  },
32
+ {
33
+ "name" : "pixelthrone/comingsoon--temp-07",
34
+ "slug" : "temp-07",
35
+ "thumb" : {
36
+ "name" : "07",
37
+ "img" : "/admin/blocks/_available/temp-07/media/thumb.jpg"
38
+ },
39
+ "script" : "",
40
+ "render_callback" : true
41
+ },
42
+ {
43
+ "name" : "pixelthrone/comingsoon--temp-08",
44
+ "slug" : "temp-08",
45
+ "thumb" : {
46
+ "name" : "08",
47
+ "img" : "/admin/blocks/_available/temp-08/media/thumb.jpg"
48
+ },
49
+ "script" : "",
50
+ "render_callback" : true
51
+ },
52
  {
53
  "name" : "pixelthrone/comingsoon--temp-02",
54
  "slug" : "temp-02",
58
  },
59
  "script" : "",
60
  "render_callback" : true
61
+ },
62
+ {
63
+ "name" : "pixelthrone/comingsoon--temp-06",
64
+ "slug" : "temp-06",
65
+ "thumb" : {
66
+ "name" : "06",
67
+ "img" : "/admin/blocks/_available/temp-06/media/thumb.jpg"
68
+ },
69
+ "script" : "",
70
+ "render_callback" : true
71
+ },
72
+ {
73
+ "name" : "pixelthrone/comingsoon--temp-01",
74
+ "slug" : "temp-01",
75
+ "thumb" : {
76
+ "name" : "01",
77
+ "img" : "/admin/blocks/_available/temp-01/media/thumb.jpg"
78
+ },
79
+ "script" : "",
80
+ "render_callback" : true
81
  }
82
  ]
admin/blocks/sidebar/templates/editor.scss CHANGED
@@ -52,6 +52,7 @@
52
  img {
53
  margin: 0 auto;
54
  display: inherit;
 
55
  }
56
  /* ---- hover ---- */
57
  &:hover {
52
  img {
53
  margin: 0 auto;
54
  display: inherit;
55
+ border: 1px solid $color--borders;
56
  }
57
  /* ---- hover ---- */
58
  &:hover {
admin/blocks/styles/_vendor/easings.scss DELETED
@@ -1,25 +0,0 @@
1
- $easeInCubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2
- $easeOutCubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
3
- $easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);
4
- $easeInCirc: cubic-bezier(0.600, 0.040, 0.980, 0.335);
5
- $easeOutCirc: cubic-bezier(0.075, 0.820, 0.165, 1.000);
6
- $easeInOutCirc: cubic-bezier(0.785, 0.135, 0.150, 0.860);
7
- $easeInExpo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
8
- $easeOutExpo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
9
- $easeInOutExpo: cubic-bezier(1.000, 0.000, 0.000, 1.000);
10
- $easeInQuad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
11
- $easeOutQuad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
12
- $easeInOutQuad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
13
- $easeInQuart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
14
- $easeOutQuart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
15
- $easeInOutQuart: cubic-bezier(0.770, 0.000, 0.175, 1.000);
16
- $easeInQuint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
17
- $easeOutQuint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
18
- $easeInOutQuint: cubic-bezier(0.860, 0.000, 0.070, 1.000);
19
- $easeInSine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
20
- $easeOutSine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
21
- $easeInOutSine: cubic-bezier(0.445, 0.050, 0.550, 0.950);
22
- $easeInBack: cubic-bezier(0.600, -0.280, 0.735, 0.045);
23
- $easeOutBack: cubic-bezier(0.175, 0.885, 0.320, 1.275);
24
- $easeInOutBack: cubic-bezier(0.680, -0.550, 0.265, 1.550);
25
- $cubic-bezier: cubic-bezier(0.175, 0.885, 0.320, 1.275);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/_vendor/mix.scss DELETED
@@ -1,121 +0,0 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- @mixin keyframes($animationName) {
8
- @-webkit-keyframes #{$animationName} {
9
- @content;
10
- }
11
- @-moz-keyframes #{$animationName} {
12
- @content;
13
- }
14
- @-o-keyframes #{$animationName} {
15
- @content;
16
- }
17
- @keyframes #{$animationName} {
18
- @content;
19
- }
20
- }
21
-
22
- /**
23
- * Spinner
24
- *
25
- * @since 1.0.0
26
- * @version 1.0.0
27
- */
28
- @mixin spinner($color: white, $w:20px, $bgColor:transparent, $withColor:true) {
29
- transition:all 0.6s $easeOutQuart;
30
-
31
- width: $w;
32
- height: $w;
33
- display: block;
34
- position: absolute;
35
- top:calc(50% - #{$w} / 2);
36
- left:calc(50% - #{$w} / 2);
37
- opacity: 0;
38
- z-index: 2;
39
-
40
- @if $withColor {
41
- border: solid 2px $color;
42
- } @else {
43
- border-width: 3px;
44
- border-style: solid;
45
- }
46
-
47
- border-top-color: $bgColor;
48
- border-left-color: $bgColor;
49
- border-radius: 50%;
50
-
51
- animation: pt_theme__loadingSpinner 0.4s linear infinite;
52
-
53
- &.hidde { display: none; }
54
- }
55
- @include keyframes(pt_theme__loadingSpinner) {
56
- 0% { transform:rotate(0deg); }
57
- 100% { transform:rotate(360deg); }
58
- }
59
-
60
- /**
61
- * Inherit Typography
62
- */
63
- /**
64
- * Media
65
- *
66
- * @since 1.0.0
67
- * @version 1.0.0
68
- */
69
- %inherit-typography {
70
- font-family: inherit !important;
71
- font-size: inherit !important;
72
- font-weight: inherit !important;
73
- font-style: inherit !important;
74
- line-height: inherit !important;
75
- letter-spacing: inherit !important;
76
- }
77
-
78
-
79
- /**
80
- * Media
81
- *
82
- * @since 1.0.0
83
- * @version 1.0.0
84
- */
85
- @mixin media( $res ) {
86
- @if mobile == $res {
87
- @media only screen and (max-width: $breakpoint__mobile) {
88
- @content;
89
- }
90
- }
91
-
92
- @if tablet-portrait == $res {
93
- @media only screen and (max-width: $breakpoint__tablet-portrait) {
94
- @content;
95
- }
96
- }
97
-
98
- @if tablet == $res {
99
- @media only screen and (max-width: $breakpoint__tablet) {
100
- @content;
101
- }
102
- }
103
-
104
- @if laptops == $res {
105
- @media only screen and (max-width: $breakpoint__laptops) {
106
- @content;
107
- }
108
- }
109
-
110
- @if desktop == $res {
111
- @media only screen and (max-width: $breakpoint__laptops) {
112
- @content;
113
- }
114
- }
115
-
116
- @if wide == $res {
117
- @media only screen and (max-width: $breakpoint__wide) {
118
- @content;
119
- }
120
- }
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/_vendor/socicon.scss DELETED
@@ -1,801 +0,0 @@
1
- @font-face {
2
- font-family: 'Socicon';
3
- src: url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg');
4
- src: url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg#iefix') format('embedded-opentype'),
5
- url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff2?cthkrg') format('woff2'),
6
- url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.ttf?cthkrg') format('truetype'),
7
- url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff?cthkrg') format('woff'),
8
- url('https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.svg?cthkrg#Socicon') format('svg');
9
- font-weight: normal;
10
- font-style: normal;
11
- }
12
-
13
- [class^="socicon-"], [class*=" socicon-"] {
14
- /* use !important to prevent issues with browser extensions that change fonts */
15
- font-family: 'Socicon' !important;
16
- speak: none;
17
- font-style: normal;
18
- font-weight: normal;
19
- font-variant: normal;
20
- text-transform: none;
21
- line-height: 1;
22
-
23
- /* Better Font Rendering =========== */
24
- -webkit-font-smoothing: antialiased;
25
- -moz-osx-font-smoothing: grayscale;
26
- }
27
-
28
- .socicon-internet:before {
29
- content: "\e957";
30
- }
31
- .socicon-moddb:before {
32
- content: "\e94b";
33
- }
34
- .socicon-indiedb:before {
35
- content: "\e94c";
36
- }
37
- .socicon-traxsource:before {
38
- content: "\e94d";
39
- }
40
- .socicon-gamefor:before {
41
- content: "\e94e";
42
- }
43
- .socicon-pixiv:before {
44
- content: "\e94f";
45
- }
46
- .socicon-myanimelist:before {
47
- content: "\e950";
48
- }
49
- .socicon-blackberry:before {
50
- content: "\e951";
51
- }
52
- .socicon-wickr:before {
53
- content: "\e952";
54
- }
55
- .socicon-spip:before {
56
- content: "\e953";
57
- }
58
- .socicon-napster:before {
59
- content: "\e954";
60
- }
61
- .socicon-beatport:before {
62
- content: "\e955";
63
- }
64
- .socicon-hackerone:before {
65
- content: "\e956";
66
- }
67
- .socicon-hackernews:before {
68
- content: "\e946";
69
- }
70
- .socicon-smashwords:before {
71
- content: "\e947";
72
- }
73
- .socicon-kobo:before {
74
- content: "\e948";
75
- }
76
- .socicon-bookbub:before {
77
- content: "\e949";
78
- }
79
- .socicon-mailru:before {
80
- content: "\e94a";
81
- }
82
- .socicon-gitlab:before {
83
- content: "\e945";
84
- }
85
- .socicon-instructables:before {
86
- content: "\e944";
87
- }
88
- .socicon-portfolio:before {
89
- content: "\e943";
90
- }
91
- .socicon-codered:before {
92
- content: "\e940";
93
- }
94
- .socicon-origin:before {
95
- content: "\e941";
96
- }
97
- .socicon-nextdoor:before {
98
- content: "\e942";
99
- }
100
- .socicon-udemy:before {
101
- content: "\e93f";
102
- }
103
- .socicon-livemaster:before {
104
- content: "\e93e";
105
- }
106
- .socicon-crunchbase:before {
107
- content: "\e93b";
108
- }
109
- .socicon-homefy:before {
110
- content: "\e93c";
111
- }
112
- .socicon-calendly:before {
113
- content: "\e93d";
114
- }
115
- .socicon-realtor:before {
116
- content: "\e90f";
117
- }
118
- .socicon-tidal:before {
119
- content: "\e910";
120
- }
121
- .socicon-qobuz:before {
122
- content: "\e911";
123
- }
124
- .socicon-natgeo:before {
125
- content: "\e912";
126
- }
127
- .socicon-mastodon:before {
128
- content: "\e913";
129
- }
130
- .socicon-unsplash:before {
131
- content: "\e914";
132
- }
133
- .socicon-homeadvisor:before {
134
- content: "\e915";
135
- }
136
- .socicon-angieslist:before {
137
- content: "\e916";
138
- }
139
- .socicon-codepen:before {
140
- content: "\e917";
141
- }
142
- .socicon-slack:before {
143
- content: "\e918";
144
- }
145
- .socicon-openaigym:before {
146
- content: "\e919";
147
- }
148
- .socicon-logmein:before {
149
- content: "\e91a";
150
- }
151
- .socicon-fiverr:before {
152
- content: "\e91b";
153
- }
154
- .socicon-gotomeeting:before {
155
- content: "\e91c";
156
- }
157
- .socicon-aliexpress:before {
158
- content: "\e91d";
159
- }
160
- .socicon-guru:before {
161
- content: "\e91e";
162
- }
163
- .socicon-appstore:before {
164
- content: "\e91f";
165
- }
166
- .socicon-homes:before {
167
- content: "\e920";
168
- }
169
- .socicon-zoom:before {
170
- content: "\e921";
171
- }
172
- .socicon-alibaba:before {
173
- content: "\e922";
174
- }
175
- .socicon-craigslist:before {
176
- content: "\e923";
177
- }
178
- .socicon-wix:before {
179
- content: "\e924";
180
- }
181
- .socicon-redfin:before {
182
- content: "\e925";
183
- }
184
- .socicon-googlecalendar:before {
185
- content: "\e926";
186
- }
187
- .socicon-shopify:before {
188
- content: "\e927";
189
- }
190
- .socicon-freelancer:before {
191
- content: "\e928";
192
- }
193
- .socicon-seedrs:before {
194
- content: "\e929";
195
- }
196
- .socicon-bing:before {
197
- content: "\e92a";
198
- }
199
- .socicon-doodle:before {
200
- content: "\e92b";
201
- }
202
- .socicon-bonanza:before {
203
- content: "\e92c";
204
- }
205
- .socicon-squarespace:before {
206
- content: "\e92d";
207
- }
208
- .socicon-toptal:before {
209
- content: "\e92e";
210
- }
211
- .socicon-gust:before {
212
- content: "\e92f";
213
- }
214
- .socicon-ask:before {
215
- content: "\e930";
216
- }
217
- .socicon-trulia:before {
218
- content: "\e931";
219
- }
220
- .socicon-loomly:before {
221
- content: "\e932";
222
- }
223
- .socicon-ghost:before {
224
- content: "\e933";
225
- }
226
- .socicon-upwork:before {
227
- content: "\e934";
228
- }
229
- .socicon-fundable:before {
230
- content: "\e935";
231
- }
232
- .socicon-booking:before {
233
- content: "\e936";
234
- }
235
- .socicon-googlemaps:before {
236
- content: "\e937";
237
- }
238
- .socicon-zillow:before {
239
- content: "\e938";
240
- }
241
- .socicon-niconico:before {
242
- content: "\e939";
243
- }
244
- .socicon-toneden:before {
245
- content: "\e93a";
246
- }
247
- .socicon-augment:before {
248
- content: "\e908";
249
- }
250
- .socicon-bitbucket:before {
251
- content: "\e909";
252
- }
253
- .socicon-fyuse:before {
254
- content: "\e90a";
255
- }
256
- .socicon-yt-gaming:before {
257
- content: "\e90b";
258
- }
259
- .socicon-sketchfab:before {
260
- content: "\e90c";
261
- }
262
- .socicon-mobcrush:before {
263
- content: "\e90d";
264
- }
265
- .socicon-microsoft:before {
266
- content: "\e90e";
267
- }
268
- .socicon-pandora:before {
269
- content: "\e907";
270
- }
271
- .socicon-messenger:before {
272
- content: "\e906";
273
- }
274
- .socicon-gamewisp:before {
275
- content: "\e905";
276
- }
277
- .socicon-bloglovin:before {
278
- content: "\e904";
279
- }
280
- .socicon-tunein:before {
281
- content: "\e903";
282
- }
283
- .socicon-gamejolt:before {
284
- content: "\e901";
285
- }
286
- .socicon-trello:before {
287
- content: "\e902";
288
- }
289
- .socicon-spreadshirt:before {
290
- content: "\e900";
291
- }
292
- .socicon-500px:before {
293
- content: "\e000";
294
- }
295
- .socicon-8tracks:before {
296
- content: "\e001";
297
- }
298
- .socicon-airbnb:before {
299
- content: "\e002";
300
- }
301
- .socicon-alliance:before {
302
- content: "\e003";
303
- }
304
- .socicon-amazon:before {
305
- content: "\e004";
306
- }
307
- .socicon-amplement:before {
308
- content: "\e005";
309
- }
310
- .socicon-android:before {
311
- content: "\e006";
312
- }
313
- .socicon-angellist:before {
314
- content: "\e007";
315
- }
316
- .socicon-apple:before {
317
- content: "\e008";
318
- }
319
- .socicon-appnet:before {
320
- content: "\e009";
321
- }
322
- .socicon-baidu:before {
323
- content: "\e00a";
324
- }
325
- .socicon-bandcamp:before {
326
- content: "\e00b";
327
- }
328
- .socicon-battlenet:before {
329
- content: "\e00c";
330
- }
331
- .socicon-mixer:before {
332
- content: "\e00d";
333
- }
334
- .socicon-bebee:before {
335
- content: "\e00e";
336
- }
337
- .socicon-bebo:before {
338
- content: "\e00f";
339
- }
340
- .socicon-behance:before {
341
- content: "\e010";
342
- }
343
- .socicon-blizzard:before {
344
- content: "\e011";
345
- }
346
- .socicon-blogger:before {
347
- content: "\e012";
348
- }
349
- .socicon-buffer:before {
350
- content: "\e013";
351
- }
352
- .socicon-chrome:before {
353
- content: "\e014";
354
- }
355
- .socicon-coderwall:before {
356
- content: "\e015";
357
- }
358
- .socicon-curse:before {
359
- content: "\e016";
360
- }
361
- .socicon-dailymotion:before {
362
- content: "\e017";
363
- }
364
- .socicon-deezer:before {
365
- content: "\e018";
366
- }
367
- .socicon-delicious:before {
368
- content: "\e019";
369
- }
370
- .socicon-deviantart:before {
371
- content: "\e01a";
372
- }
373
- .socicon-diablo:before {
374
- content: "\e01b";
375
- }
376
- .socicon-digg:before {
377
- content: "\e01c";
378
- }
379
- .socicon-discord:before {
380
- content: "\e01d";
381
- }
382
- .socicon-disqus:before {
383
- content: "\e01e";
384
- }
385
- .socicon-douban:before {
386
- content: "\e01f";
387
- }
388
- .socicon-draugiem:before {
389
- content: "\e020";
390
- }
391
- .socicon-dribbble:before {
392
- content: "\e021";
393
- }
394
- .socicon-drupal:before {
395
- content: "\e022";
396
- }
397
- .socicon-ebay:before {
398
- content: "\e023";
399
- }
400
- .socicon-ello:before {
401
- content: "\e024";
402
- }
403
- .socicon-endomodo:before {
404
- content: "\e025";
405
- }
406
- .socicon-envato:before {
407
- content: "\e026";
408
- }
409
- .socicon-etsy:before {
410
- content: "\e027";
411
- }
412
- .socicon-facebook:before {
413
- content: "\e028";
414
- }
415
- .socicon-feedburner:before {
416
- content: "\e029";
417
- }
418
- .socicon-filmweb:before {
419
- content: "\e02a";
420
- }
421
- .socicon-firefox:before {
422
- content: "\e02b";
423
- }
424
- .socicon-flattr:before {
425
- content: "\e02c";
426
- }
427
- .socicon-flickr:before {
428
- content: "\e02d";
429
- }
430
- .socicon-formulr:before {
431
- content: "\e02e";
432
- }
433
- .socicon-forrst:before {
434
- content: "\e02f";
435
- }
436
- .socicon-foursquare:before {
437
- content: "\e030";
438
- }
439
- .socicon-friendfeed:before {
440
- content: "\e031";
441
- }
442
- .socicon-github:before {
443
- content: "\e032";
444
- }
445
- .socicon-goodreads:before {
446
- content: "\e033";
447
- }
448
- .socicon-google:before {
449
- content: "\e034";
450
- }
451
- .socicon-googlescholar:before {
452
- content: "\e035";
453
- }
454
- .socicon-googlegroups:before {
455
- content: "\e036";
456
- }
457
- .socicon-googlephotos:before {
458
- content: "\e037";
459
- }
460
- .socicon-googleplus:before {
461
- content: "\e038";
462
- }
463
- .socicon-grooveshark:before {
464
- content: "\e039";
465
- }
466
- .socicon-hackerrank:before {
467
- content: "\e03a";
468
- }
469
- .socicon-hearthstone:before {
470
- content: "\e03b";
471
- }
472
- .socicon-hellocoton:before {
473
- content: "\e03c";
474
- }
475
- .socicon-heroes:before {
476
- content: "\e03d";
477
- }
478
- .socicon-smashcast:before {
479
- content: "\e03e";
480
- }
481
- .socicon-horde:before {
482
- content: "\e03f";
483
- }
484
- .socicon-houzz:before {
485
- content: "\e040";
486
- }
487
- .socicon-icq:before {
488
- content: "\e041";
489
- }
490
- .socicon-identica:before {
491
- content: "\e042";
492
- }
493
- .socicon-imdb:before {
494
- content: "\e043";
495
- }
496
- .socicon-instagram:before {
497
- content: "\e044";
498
- }
499
- .socicon-issuu:before {
500
- content: "\e045";
501
- }
502
- .socicon-istock:before {
503
- content: "\e046";
504
- }
505
- .socicon-itunes:before {
506
- content: "\e047";
507
- }
508
- .socicon-keybase:before {
509
- content: "\e048";
510
- }
511
- .socicon-lanyrd:before {
512
- content: "\e049";
513
- }
514
- .socicon-lastfm:before {
515
- content: "\e04a";
516
- }
517
- .socicon-line:before {
518
- content: "\e04b";
519
- }
520
- .socicon-linkedin:before {
521
- content: "\e04c";
522
- }
523
- .socicon-livejournal:before {
524
- content: "\e04d";
525
- }
526
- .socicon-lyft:before {
527
- content: "\e04e";
528
- }
529
- .socicon-macos:before {
530
- content: "\e04f";
531
- }
532
- .socicon-mail:before {
533
- content: "\e050";
534
- }
535
- .socicon-medium:before {
536
- content: "\e051";
537
- }
538
- .socicon-meetup:before {
539
- content: "\e052";
540
- }
541
- .socicon-mixcloud:before {
542
- content: "\e053";
543
- }
544
- .socicon-modelmayhem:before {
545
- content: "\e054";
546
- }
547
- .socicon-mumble:before {
548
- content: "\e055";
549
- }
550
- .socicon-myspace:before {
551
- content: "\e056";
552
- }
553
- .socicon-newsvine:before {
554
- content: "\e057";
555
- }
556
- .socicon-nintendo:before {
557
- content: "\e058";
558
- }
559
- .socicon-npm:before {
560
- content: "\e059";
561
- }
562
- .socicon-odnoklassniki:before {
563
- content: "\e05a";
564
- }
565
- .socicon-openid:before {
566
- content: "\e05b";
567
- }
568
- .socicon-opera:before {
569
- content: "\e05c";
570
- }
571
- .socicon-outlook:before {
572
- content: "\e05d";
573
- }
574
- .socicon-overwatch:before {
575
- content: "\e05e";
576
- }
577
- .socicon-patreon:before {
578
- content: "\e05f";
579
- }
580
- .socicon-paypal:before {
581
- content: "\e060";
582
- }
583
- .socicon-periscope:before {
584
- content: "\e061";
585
- }
586
- .socicon-persona:before {
587
- content: "\e062";
588
- }
589
- .socicon-pinterest:before {
590
- content: "\e063";
591
- }
592
- .socicon-play:before {
593
- content: "\e064";
594
- }
595
- .socicon-player:before {
596
- content: "\e065";
597
- }
598
- .socicon-playstation:before {
599
- content: "\e066";
600
- }
601
- .socicon-pocket:before {
602
- content: "\e067";
603
- }
604
- .socicon-qq:before {
605
- content: "\e068";
606
- }
607
- .socicon-quora:before {
608
- content: "\e069";
609
- }
610
- .socicon-raidcall:before {
611
- content: "\e06a";
612
- }
613
- .socicon-ravelry:before {
614
- content: "\e06b";
615
- }
616
- .socicon-reddit:before {
617
- content: "\e06c";
618
- }
619
- .socicon-renren:before {
620
- content: "\e06d";
621
- }
622
- .socicon-researchgate:before {
623
- content: "\e06e";
624
- }
625
- .socicon-residentadvisor:before {
626
- content: "\e06f";
627
- }
628
- .socicon-reverbnation:before {
629
- content: "\e070";
630
- }
631
- .socicon-rss:before {
632
- content: "\e071";
633
- }
634
- .socicon-sharethis:before {
635
- content: "\e072";
636
- }
637
- .socicon-skype:before {
638
- content: "\e073";
639
- }
640
- .socicon-slideshare:before {
641
- content: "\e074";
642
- }
643
- .socicon-smugmug:before {
644
- content: "\e075";
645
- }
646
- .socicon-snapchat:before {
647
- content: "\e076";
648
- }
649
- .socicon-songkick:before {
650
- content: "\e077";
651
- }
652
- .socicon-soundcloud:before {
653
- content: "\e078";
654
- }
655
- .socicon-spotify:before {
656
- content: "\e079";
657
- }
658
- .socicon-stackexchange:before {
659
- content: "\e07a";
660
- }
661
- .socicon-stackoverflow:before {
662
- content: "\e07b";
663
- }
664
- .socicon-starcraft:before {
665
- content: "\e07c";
666
- }
667
- .socicon-stayfriends:before {
668
- content: "\e07d";
669
- }
670
- .socicon-steam:before {
671
- content: "\e07e";
672
- }
673
- .socicon-storehouse:before {
674
- content: "\e07f";
675
- }
676
- .socicon-strava:before {
677
- content: "\e080";
678
- }
679
- .socicon-streamjar:before {
680
- content: "\e081";
681
- }
682
- .socicon-stumbleupon:before {
683
- content: "\e082";
684
- }
685
- .socicon-swarm:before {
686
- content: "\e083";
687
- }
688
- .socicon-teamspeak:before {
689
- content: "\e084";
690
- }
691
- .socicon-teamviewer:before {
692
- content: "\e085";
693
- }
694
- .socicon-technorati:before {
695
- content: "\e086";
696
- }
697
- .socicon-telegram:before {
698
- content: "\e087";
699
- }
700
- .socicon-tripadvisor:before {
701
- content: "\e088";
702
- }
703
- .socicon-tripit:before {
704
- content: "\e089";
705
- }
706
- .socicon-triplej:before {
707
- content: "\e08a";
708
- }
709
- .socicon-tumblr:before {
710
- content: "\e08b";
711
- }
712
- .socicon-twitch:before {
713
- content: "\e08c";
714
- }
715
- .socicon-twitter:before {
716
- content: "\e08d";
717
- }
718
- .socicon-uber:before {
719
- content: "\e08e";
720
- }
721
- .socicon-ventrilo:before {
722
- content: "\e08f";
723
- }
724
- .socicon-viadeo:before {
725
- content: "\e090";
726
- }
727
- .socicon-viber:before {
728
- content: "\e091";
729
- }
730
- .socicon-viewbug:before {
731
- content: "\e092";
732
- }
733
- .socicon-vimeo:before {
734
- content: "\e093";
735
- }
736
- .socicon-vine:before {
737
- content: "\e094";
738
- }
739
- .socicon-vkontakte:before {
740
- content: "\e095";
741
- }
742
- .socicon-warcraft:before {
743
- content: "\e096";
744
- }
745
- .socicon-wechat:before {
746
- content: "\e097";
747
- }
748
- .socicon-weibo:before {
749
- content: "\e098";
750
- }
751
- .socicon-whatsapp:before {
752
- content: "\e099";
753
- }
754
- .socicon-wikipedia:before {
755
- content: "\e09a";
756
- }
757
- .socicon-windows:before {
758
- content: "\e09b";
759
- }
760
- .socicon-wordpress:before {
761
- content: "\e09c";
762
- }
763
- .socicon-wykop:before {
764
- content: "\e09d";
765
- }
766
- .socicon-xbox:before {
767
- content: "\e09e";
768
- }
769
- .socicon-xing:before {
770
- content: "\e09f";
771
- }
772
- .socicon-yahoo:before {
773
- content: "\e0a0";
774
- }
775
- .socicon-yammer:before {
776
- content: "\e0a1";
777
- }
778
- .socicon-yandex:before {
779
- content: "\e0a2";
780
- }
781
- .socicon-yelp:before {
782
- content: "\e0a3";
783
- }
784
- .socicon-younow:before {
785
- content: "\e0a4";
786
- }
787
- .socicon-youtube:before {
788
- content: "\e0a5";
789
- }
790
- .socicon-zapier:before {
791
- content: "\e0a6";
792
- }
793
- .socicon-zerply:before {
794
- content: "\e0a7";
795
- }
796
- .socicon-zomato:before {
797
- content: "\e0a8";
798
- }
799
- .socicon-zynga:before {
800
- content: "\e0a9";
801
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/block-background.scss DELETED
@@ -1,162 +0,0 @@
1
- /**
2
- * Background Types
3
- *
4
- * @since 1.0.0
5
- */
6
- div[data-component="block-background"] {
7
- position: absolute;
8
- top:0;
9
- left: 0;
10
- width: 100%;
11
- height: 100%;
12
- z-index: 0;
13
-
14
- /**
15
- * Color
16
- *
17
- * @since 1.0.0
18
- */
19
- .color-element {
20
- position: absolute;
21
- top:0;
22
- left: 0;
23
- width: 100%;
24
- height: 100%;
25
- z-index: 1;
26
- background-position: center;
27
- background-size: cover;
28
- }
29
-
30
- /**
31
- * Image
32
- *
33
- * @since 1.0.0
34
- */
35
- .image-element {
36
- position: absolute;
37
- top:0;
38
- left: 0;
39
- width: 100%;
40
- height: 100%;
41
- z-index: 1;
42
- background-position: center;
43
- background-size: cover;
44
-
45
- > span {
46
- position: absolute;
47
- top:0;
48
- left: 0;
49
- width: 100%;
50
- height: 100%;
51
- z-index: 2;
52
- background-position: center;
53
- background-size: cover;
54
-
55
- .components-spinner {
56
- background-color: #ffffff;
57
- opacity: 1;
58
- margin: 10px;
59
- &::before { background-color: #555d67; }
60
- }
61
-
62
- &:nth-of-type(2) {
63
- z-index: 1;
64
- }
65
- }
66
- }
67
-
68
- /**
69
- * Gallery.
70
- *
71
- * @since 1.0.0
72
- */
73
- .gallery-element {
74
- position: absolute;
75
- top:0;
76
- left: 0;
77
- width: 100%;
78
- height: 100%;
79
- z-index: 1;
80
- background-position: center;
81
- background-size: cover;
82
-
83
- > div {
84
- width: 100%;
85
- height: 100%;
86
- &:not(.flickity-enabled) {
87
- visibility: hidden;
88
- display: none;
89
- }
90
- .flickity-viewport {
91
- width: 100%;
92
- height: 100% !important;
93
- }
94
- .flickity-slider {
95
- width: 100%;
96
- height: 100% !important;
97
- transform: none !important;
98
- }
99
-
100
- span {
101
- transition: all 2s $easeOutQuart;
102
- width: 100%;
103
- height: 100%;
104
-
105
- left: 0 !important;
106
- opacity: 0;
107
-
108
- &.is-selected{
109
- opacity: 1;
110
- }
111
-
112
- img {
113
- display: inherit;
114
- object-fit: cover;
115
- width: 100%;
116
- height: 100%;
117
- }
118
- }
119
- }
120
- }
121
-
122
- /**
123
- * Video
124
- *
125
- * @since 1.0.0
126
- */
127
- .video-element {
128
- position: absolute;
129
- top:0;
130
- left: 0;
131
- width: 100%;
132
- height: 100%;
133
- z-index: 1;
134
- background-position: center;
135
- background-size: cover;
136
-
137
- video {
138
- position: absolute;
139
- top:0;
140
- left: 0;
141
- width: 100%;
142
- height: 100%;
143
- z-index: 1;
144
- object-fit: cover;
145
- }
146
- }
147
-
148
- }
149
-
150
- /**
151
- * Background Overlayer
152
- *
153
- * @since 1.0.0
154
- */
155
- div[data-component="block-background-overlayer"] {
156
- position: absolute;
157
- top:0;
158
- left: 0;
159
- width: 100%;
160
- height: 100%;
161
- z-index: 1;
162
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/_sidebar.scss DELETED
@@ -1,60 +0,0 @@
1
- body {
2
- // Sidebar
3
- .edit-post-sidebar {
4
- .components-panel {
5
- div[data-component*="sidebar--"] {
6
-
7
- // Painel
8
- .components-panel__body {
9
- .components-panel__row {
10
- flex-wrap: wrap;
11
- .components-base-control {
12
- width: 100%;
13
- margin-bottom: 18px;
14
-
15
- .components-base-control__field {
16
- margin-bottom: 0;
17
-
18
- textarea, input {
19
- display: inherit;
20
- }
21
- }
22
- .components-base-control__help {
23
- opacity: 0.7;
24
- font-size: 12px;
25
- margin-top: 5px;
26
- }
27
- }
28
- }
29
- }
30
-
31
- label {
32
- display: block;
33
- width: 100%;
34
- font-weight: 500;
35
- }
36
-
37
- button:focus { outline: none !important; }
38
-
39
- // Loading state
40
- &[data-loading="true"] {
41
- position: relative;
42
- .components-spinner {
43
- position: absolute;
44
- top: 50%;
45
- left: 50%;
46
- transform: translate(-50%, -50%);
47
- margin: 0;
48
- }
49
- .components-panel__body {
50
- transition: all 0.6s $easeOutQuart;
51
- opacity: 0.3;
52
- pointer-events: none;
53
- }
54
- }
55
-
56
- }
57
- }
58
- }
59
-
60
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/background.scss DELETED
@@ -1,70 +0,0 @@
1
- /**
2
- * Background component
3
- *
4
- * @since 1.0.0
5
- */
6
- div[data-editor-component="background"] {
7
-
8
- // Menu
9
- .tabs-menu {
10
- display: flex;
11
- flex-direction: row;
12
- flex-wrap: nowrap;
13
- justify-content: flex-start;
14
- align-items: center;
15
-
16
- border-bottom: 1px solid $color--line;
17
- padding-bottom: 5px;
18
- margin-bottom: 15px;
19
- margin-top: 5px;
20
-
21
- button {
22
- position: relative;
23
- margin-right: 5px;
24
- overflow: initial;
25
- &::before {
26
- content: " ";
27
- width: 100%;
28
- height: 0;
29
- position: absolute;
30
- left: 0;
31
- bottom: -6px;
32
- background-color: $color--link-hover;
33
- }
34
- svg {
35
- path, rect {
36
- transition: all 0.6s $easeOutQuart;
37
- }
38
- }
39
- &:focus {
40
- box-shadow: none;
41
- outline: none;
42
- }
43
- &[data-active='true'] {
44
- pointer-events: none;
45
- border-color: transparent;
46
-
47
- &::before { height: 2px; }
48
-
49
- svg {
50
- path { fill: $color--link-hover; }
51
- rect { stroke: $color--link-hover; }
52
- }
53
- }
54
- /* ---- hover ---- */
55
- &:hover {
56
- svg {
57
- path { fill: $color--link-hover; }
58
- rect { stroke: $color--link-hover; }
59
- }
60
- }
61
- }
62
-
63
- }
64
-
65
- // Content
66
- .tabs-content {
67
-
68
- }
69
-
70
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/brand-upload.scss DELETED
@@ -1,46 +0,0 @@
1
- $size: 30px;
2
- button[data-editor-component="brand-uploader"] {
3
- position: relative;
4
- display: table;
5
- outline: none;
6
- border: none;
7
- cursor: pointer;
8
- background-color: transparent;
9
-
10
- i {
11
- transition: all 0.8s $easeOutQuart;
12
- position: absolute;
13
- right: -$size / 2;
14
- top: -$size / 2;
15
- width: $size;
16
- height: $size;
17
- border-radius: 50%;
18
- border: 1px solid $color--borders;
19
- background-color: rgba(white, 0.7);
20
- color: $color--icons;
21
- pointer-events: none;
22
-
23
- &::before {
24
- transition: all 0.8s $easeOutQuart;
25
- position: absolute;
26
- top: 50%;
27
- left: 50%;
28
- transform: translate(-50%, -50%);
29
- z-index: 1;
30
- }
31
- }
32
-
33
- img {
34
- display: inherit;
35
- }
36
-
37
- /* ---- hover ---- */
38
- &:hover i {
39
- border: 1px solid rgba($color--icons--hover, 0.5);
40
- background-color: rgba(white, 1);
41
- &::before {
42
- color: $color--icons--hover;
43
- }
44
- }
45
-
46
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/font-picker.scss DELETED
@@ -1,185 +0,0 @@
1
- /**
2
- * Font Picker
3
- *
4
- * @since 1.0.0
5
- */
6
- $dropdown--height: 315px;
7
- $dropdown--width: 440px;
8
- $font-picker--width: 190px;
9
- body {
10
- .editor-component--field-typography-selector {
11
- width: 100%;
12
- margin-bottom: 10px;
13
- button {
14
- transition: all 0.6s $easeOutQuart;
15
- background-color: transparent;
16
- outline: none;
17
- cursor: pointer;
18
- padding: 10px 15px;
19
- border: 1px solid $color--line;
20
- border-radius: 3px;
21
- display: block;
22
- text-align: left;
23
- box-sizing: border-box;
24
- width: 100%;
25
-
26
- // Test
27
- //padding-left: 0;
28
- //padding-right: 0;
29
- //border-left: 0;
30
- //border-right: 0;
31
- //border-radius: 0;
32
- //border-bottom: 0;
33
-
34
- label {
35
- font-weight: normal;
36
- color: $color--text;
37
- }
38
- p {
39
- padding: 0;
40
- margin: 0;
41
- font-size: 25px;
42
- white-space: nowrap;
43
- overflow: hidden;
44
- text-overflow: ellipsis;
45
- max-width: 240px;
46
- }
47
- /* ---- hover ---- */
48
- &:hover {
49
- border-color: $color--link-hover;
50
- }
51
- }
52
- }
53
- .components-popover.editor-component--dropdown-typography-selector {
54
- .components-popover__content {
55
- height: auto;
56
- width: $dropdown--width;
57
- padding: 8px 8px 8px 0;
58
- box-sizing: border-box;
59
- min-height: $dropdown--height;
60
- display: flex;
61
- flex-direction: row;
62
- flex-wrap: nowrap;
63
- justify-content: flex-start;
64
- align-items: flex-start;
65
- /**
66
- * Font Family
67
- */
68
- #font-picker {
69
- box-shadow: none;
70
- border-right: 1px solid $color--line;
71
- width: $font-picker--width;
72
- flex-shrink: 0;
73
- position: relative;
74
-
75
- .components-spinner {
76
- position: absolute;
77
- top: 50%;
78
- left: 50%;
79
- transform: translate(-50%, -50%);
80
- }
81
- > button { display: none; }
82
- ul {
83
- height: $dropdown--height;
84
- max-height: 100%;
85
- box-shadow: none;
86
- position: relative;
87
- background-color: transparent !important;
88
-
89
- li {
90
- margin: 0;
91
- button {
92
- font-size: 16px;
93
- background-color: transparent !important;
94
- padding-left: 15px;
95
- position: relative;
96
- &::before {
97
- transition: all 0.6s $easeOutQuart;
98
- content: " ";
99
- width: 3px;
100
- height: 0;
101
- position: absolute;
102
- left: 0;
103
- top: 50%;
104
- transform: translateY(-50%);
105
- background-color: $color--link-hover;
106
- }
107
- &.active-font {
108
- color: $color--link-hover;
109
- &::before { height: 100%; }
110
- }
111
- &:hover {
112
- color: $color--link-hover;
113
- &::before { height: 70%; }
114
- }
115
- }
116
- }
117
-
118
- }
119
- }
120
-
121
- /**
122
- * Other Options
123
- */
124
- .typography-options__wrapper {
125
- padding: 10px 20px 0 25px;
126
- // Menu
127
- .tabs-menu {
128
- border-bottom: 1px solid $color--line;
129
- padding-bottom: 5px;
130
- margin-bottom: 15px;
131
- margin-top: 5px;
132
-
133
- button {
134
- border: none;
135
- background-color: transparent;
136
- position: relative;
137
- cursor: pointer;
138
- outline: none;
139
- &::before {
140
- content: " ";
141
- width: 100%;
142
- height: 0;
143
- position: absolute;
144
- left: 0;
145
- bottom: -6px;
146
- background-color: $color--link-hover;
147
- }
148
- svg {
149
- path, rect {
150
- transition: all 0.6s $easeOutQuart;
151
- }
152
- }
153
- &[data-mode='active'] {
154
- pointer-events: none;
155
- &::before { height: 2px; }
156
- svg {
157
- path { fill: $color--link-hover; }
158
- rect { stroke: $color--link-hover; }
159
- }
160
- }
161
- /* ---- hover ---- */
162
- &:hover {
163
- svg {
164
- path { fill: $color--link-hover; }
165
- rect { stroke: $color--link-hover; }
166
- }
167
- }
168
-
169
- }
170
- }
171
-
172
- // Content
173
- .tabs-content {
174
- > div {
175
- div:nth-of-type(2) { margin-bottom: 13px; }
176
- .components-range-control {
177
- margin-bottom: 10px;
178
- }
179
- }
180
- }
181
- }
182
- }
183
- }
184
- }
185
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/inspector-controls-image-uploader.scss DELETED
@@ -1,24 +0,0 @@
1
- $size: 30px;
2
- div[data-editor-component="inspector-controls--image-uploader"] {
3
- display: flex;
4
- flex-direction: row;
5
- flex-wrap: wrap;
6
- justify-content: space-between;
7
- align-items: center;
8
-
9
- label {
10
- display: block;
11
- margin-bottom: 8px;
12
- }
13
- img {
14
- border: 1px solid #e2e4e7;
15
- max-width: 100%;
16
- }
17
- span {
18
- display: block;
19
- width: 100%;
20
- }
21
- button {
22
- margin-top: 5px;
23
- }
24
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/misc-components--sidebar.scss DELETED
@@ -1,108 +0,0 @@
1
- /**
2
- * Color palette
3
- *
4
- * @since 1.0.0
5
- */
6
- div[data-editor-component="color-palette-base-control"] {
7
- label {
8
- margin-bottom: 14px;
9
- display: flex !important;
10
- flex-direction: row;
11
- flex-wrap: nowrap;
12
- justify-content: flex-start;
13
- align-items: center;
14
- }
15
- .component-color-indicator {
16
-
17
- }
18
- }
19
-
20
- /**
21
- * Notices
22
- *
23
- * @since 1.0.0
24
- */
25
- *[data-editor-component|="notice"] {
26
- border-left: 4px solid transparent;
27
- padding: 8px 12px;
28
- color: initial;
29
- text-decoration: none;
30
-
31
- &[data-notice="warning"] {
32
- background-color: #fef8ee;
33
- border-left-color: #f0b849;
34
- }
35
- }
36
-
37
- /**
38
- * Date Time Picker
39
- *
40
- * @since 1.0.0
41
- */
42
- .editor-component--dropdown-date-time-picker {
43
- .components-popover__content {
44
- padding: 10px;
45
- }
46
- }
47
- .editor-component--field-date-time-picker {
48
- display: block;
49
- width: 100%;
50
- margin-bottom: 10px;
51
- > div {
52
- display: flex;
53
- flex-direction: row;
54
- flex-wrap: nowrap;
55
- justify-content: flex-start;
56
- align-items: center;
57
- min-height: 24px;
58
-
59
- label {
60
- margin: 0;
61
- padding: 0;
62
- width: auto !important;
63
- flex-grow: 1;
64
- }
65
- button:nth-of-type(1) {
66
- padding: 0;
67
- margin: 0;
68
- text-align: right !important;
69
- margin-right: 10px;
70
- }
71
- }
72
- }
73
-
74
- /**
75
- * Single Label
76
- *
77
- * @since 1.0.0
78
- */
79
- label.single-field-label {
80
- padding: 0;
81
- margin: 0 0 10px 0;
82
- display: block;
83
- color: $color--text;
84
- }
85
-
86
- /**
87
- * Help Notice
88
- *
89
- * @since 1.0.0
90
- */
91
-
92
- *[data-editor-component="help-notice"] {
93
- opacity: 0.7;
94
- font-size: 12px;
95
- padding: 0;
96
- margin-top: 6px !important;
97
- }
98
-
99
- /**
100
- * Panel Titles
101
- *
102
- * @since 1.0.0
103
- */
104
- .components-panel__body.editor-block-inspector__advanced {
105
- .components-panel__body-title button {
106
- text-transform: uppercase;
107
- }
108
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/editor/panel-uploader-placeholder.scss DELETED
@@ -1,212 +0,0 @@
1
- /**
2
- * Background uploader placeholder component
3
- *
4
- * @since 1.0.0
5
- */
6
- $min-height: 140px;
7
- $border-radius: 3px;
8
- $gap: 8px;
9
- button[data-editor-component="panel-uploader-placeholder"],
10
- div[data-editor-component="panel-uploader-placeholder"] {
11
- border:1px solid $color--line !important;
12
- width: 100%;
13
- position: relative;
14
- box-shadow: none !important;
15
- padding: 0;
16
- border-radius: $border-radius;
17
- background-position: center center;
18
- background-size: cover;
19
- overflow: hidden;
20
-
21
- /**
22
- * Upload
23
- *
24
- * @since 1.0.0
25
- */
26
- &[data-mode="upload"] {
27
- min-height: $min-height;
28
- svg {
29
- position: absolute;
30
- top: 50%;
31
- left: 50%;
32
- transform: translate(-50%, -50%);
33
- }
34
-
35
- &::before {
36
- transition: all 0.6s $easeOutQuart;
37
- content: " ";
38
- width: calc( 100% - 15px);
39
- height: calc( 100% - 15px);
40
- background: $color--gray-bg;
41
- position: absolute;
42
- top: 50%;
43
- left: 50%;
44
- transform: translate(-50%, -50%);
45
- border-radius: $border-radius;
46
- }
47
-
48
- &:hover {
49
- svg {
50
- path { fill: $color--link-hover; }
51
- }
52
- &::before {
53
- width: 100%;
54
- height:100%;
55
- }
56
- }
57
- }
58
-
59
- /**
60
- * Replace
61
- *
62
- * @since 1.0.0
63
- */
64
- &[data-mode="replace"] {
65
- border:1px solid $color--line !important;
66
- width: 100%;
67
- height: auto;
68
-
69
- > div {
70
- display: grid;
71
- grid-gap: $gap;
72
- grid-auto-flow: row;
73
- grid-template-columns: 1fr 1fr;
74
- padding: $gap;
75
-
76
- &[data-count="1"] {
77
- grid-template-columns: 1fr;
78
- }
79
- }
80
- video {
81
- object-fit: cover;
82
- height: auto;
83
- }
84
- img {
85
- object-fit: cover;
86
- height: auto;
87
- width: 100%;
88
- }
89
- svg {
90
- transition: all 0.6s $easeOutQuart;
91
- position: absolute;
92
- top: 50%;
93
- left: 50%;
94
- transform: translate(-50%, -50%);
95
- opacity: 0;
96
- }
97
- &::before {
98
- transition: all 0.6s $easeOutQuart;
99
- content: " ";
100
- width: 105%;
101
- height: 105%;
102
- background: white;
103
- position: absolute;
104
- top: 50%;
105
- left: 50%;
106
- transform: translate(-50%, -50%);
107
- border-radius: $border-radius;
108
- opacity: 0;
109
- }
110
-
111
- /* ---- hover ---- */
112
-
113
- &:hover {
114
- svg {
115
- opacity: 1;
116
- }
117
- &::before {
118
- opacity: 0.8;
119
- }
120
- }
121
- }
122
-
123
- /**
124
- * Gallery
125
- *
126
- * @since 1.0.0
127
- */
128
- &[data-mode="gallery"] {
129
- width: 100%;
130
- height: auto;
131
- min-height: auto;
132
- border: none !important;
133
-
134
- > div {
135
- display: grid;
136
- grid-gap: $gap;
137
- grid-auto-flow: row;
138
- grid-template-columns: 1fr 1fr;
139
- padding: $gap;
140
- border:1px solid $color--line !important;
141
-
142
- &[data-count="1"] {
143
- grid-template-columns: 1fr;
144
- }
145
-
146
- span {
147
- position: relative;
148
- img {
149
- display: inherit;
150
- min-height:100%;
151
- min-width: 100%;
152
- object-fit: cover;
153
- }
154
- button {
155
- transition: all 0.4s $easeOutQuart;
156
- position: absolute;
157
- right: 5px;
158
- top: 5px;
159
- z-index: 1;
160
- background-color: white;
161
- padding: 4px;
162
- opacity: 0;
163
-
164
- &:hover {
165
- background-color: $color--link-hover !important;
166
- svg path { fill: white; }
167
- }
168
- }
169
- /* ---- hover ---- */
170
- &:hover button {
171
- opacity: 1;
172
- }
173
- }
174
- }
175
- // Add more
176
- > button {
177
- height: 50px;
178
- min-height: 0;
179
- margin-top: 10px;
180
-
181
- svg {
182
- position: absolute;
183
- top: 50%;
184
- left: 50%;
185
- transform: translate(-50%, -50%);
186
- }
187
-
188
- &::before {
189
- transition: all 0.6s $easeOutQuart;
190
- content: " ";
191
- width: calc( 100% - #{$gap});
192
- height: calc( 100% - #{$gap});
193
- background: $color--gray-bg;
194
- position: absolute;
195
- top: 50%;
196
- left: 50%;
197
- transform: translate(-50%, -50%);
198
- border-radius: $border-radius;
199
- }
200
-
201
- &:hover {
202
- svg {
203
- path { fill: $color--link-hover; }
204
- }
205
- &::before {
206
- width: 100%;
207
- height:100%;
208
- }
209
- }
210
- }
211
- }
212
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/plugin-feature.scss DELETED
@@ -1,51 +0,0 @@
1
- span[data-component="is-premium"] {
2
- cursor: not-allowed;
3
- position: relative;
4
- user-select: none;
5
- width: 100%;
6
- display: block;
7
-
8
- &::after {
9
- transition: all 0.6s $easeOutQuart;
10
- content: " ";
11
- width: 100%;
12
- height: 100%;
13
- position: absolute;
14
- left: 0;
15
- top: 0;
16
- background-color: white;
17
- z-index: 1;
18
- opacity: 0;
19
- }
20
-
21
- // types
22
- &[data-plan] {
23
- p.feature-label-notice {
24
- width: 100%;
25
- height: auto;
26
- z-index: 2;
27
- position: absolute;
28
- top: 50%;
29
- left: 0;
30
- transform: translateY(-50%);
31
- -webkit-backface-visibility: hidden;
32
- color: $color--alert;
33
- font-weight: 500;
34
- font-size: 15px;
35
- text-align: center;
36
- opacity: 0;
37
- i {
38
- text-transform: uppercase;
39
- font-style: normal;
40
- }
41
- }
42
- }
43
-
44
- &:hover {
45
- &::after { opacity: 0.9; };
46
- p.feature-label-notice{
47
- transition: all 0.6s $easeOutQuart 0.05s;
48
- opacity: 1;
49
- };
50
- }
51
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/blocks/styles/components/social-icons.scss DELETED
@@ -1,258 +0,0 @@
1
- $iconWSize: 42px;
2
- $addButtonSize: 30px;
3
-
4
- div[data-component="social-icons"] {
5
- display: flex;
6
- flex-direction: row;
7
- flex-wrap: wrap;
8
- justify-content: flex-start;
9
- align-items: center;
10
- position: relative;
11
-
12
- min-height: 42px;
13
-
14
- // Icon
15
- .-icon {
16
- color: inherit;
17
- position: relative;
18
- width: $iconWSize;
19
- height: $iconWSize;
20
- font-size: 100%;
21
- margin: 0;
22
- line-height: 0;
23
- display: block;
24
- vertical-align: middle;
25
-
26
- i {
27
- transition: all 0.6s $easeOutBack;
28
- color: inherit;
29
- font-size: 24px;
30
- position: absolute;
31
- top: 50%;
32
- left: 50%;
33
- transform: translate(-50%, -50%);
34
- }
35
-
36
- &::before {
37
- transition: all 0.6s $easeOutBack;
38
- content: " ";
39
- position: absolute;
40
- width: 50%;
41
- height: 50%;
42
- top: 50%;
43
- left: 50%;
44
- transform: translate(-50%, -50%);
45
- opacity: 0;
46
- border-radius: 50%;
47
- }
48
-
49
- /* ---- Hover ---- */
50
-
51
- &:hover {
52
- i {
53
- color:white;
54
- }
55
- &::before {
56
- width: 110%;
57
- height: 110%;
58
- opacity: 1;
59
- }
60
- }
61
-
62
- /**
63
- * Add Original Colors
64
- */
65
- &.-modelmayhem::before { background-color: #000000; }
66
- &.-mixcloud::before { background-color: #000000; }
67
- &.-npm::before { background-color: #cb3837; }
68
- &.-drupal::before { background-color: #22a9e0; }
69
- &.-swarm::before { background-color: #ff9a1c; }
70
- &.-istock::before { background-color: #040404; }
71
- &.-yammer::before { background-color: #0073c6; }
72
- &.-ello::before { background-color: #000000; }
73
- &.-stackoverflow::before { background-color: #f47f25; }
74
- &.-triplej::before { background-color: #e73429; }
75
- &.-houzz::before { background-color: #7bc144; }
76
- &.-rss::before { background-color: #fc762b; }
77
- &.-paypal::before { background-color: #009cdd; }
78
- &.-odnoklassniki::before { background-color: #f68222; }
79
- &.-airbnb::before { background-color: #ff5b60; }
80
- &.-periscope::before { background-color: #2ba4c6; }
81
- &.-outlook::before { background-color: #0074c6; }
82
- &.-coderwall::before { background-color: #343131; }
83
- &.-tripadvisor::before { background-color: #1e882f; }
84
- &.-goodreads::before { background-color: #463020; }
85
- &.-tripit::before { background-color: #f38c07; }
86
- &.-lanyrd::before { background-color: #133359; }
87
- &.-slideshare::before { background-color: #007ab5; }
88
- &.-buffer::before { background-color: #333333; }
89
- &.-disqus::before { background-color: #239eff; }
90
- &.-vkontakte::before { background-color: #4b76a3; }
91
- &.-whatsapp::before { background-color: #4dc247; }
92
- &.-patreon::before { background-color: #e8481d; }
93
- &.-storehouse::before { background-color: #231f20; }
94
- &.-pocket::before { background-color: #ee4255; }
95
- &.-mail::before { background-color: #008299; }
96
- &.-blogger::before { background-color: #f89239; }
97
- &.-technorati::before { background-color: #3baf04; }
98
- &.-reddit::before { background-color: #ff4706; }
99
- &.-dribbble::before { background-color: #f36898; }
100
- &.-stumbleupon::before { background-color: #ec4a26; }
101
- &.-digg::before { background-color: #165790; }
102
- &.-envato::before { background-color: #81b342; }
103
- &.-behance::before { background-color: #006aff; }
104
- &.-delicious::before { background-color: #1d96ff; }
105
- &.-deviantart::before { background-color: #04cc48; }
106
- &.-forrst::before { background-color: #4fb54b; }
107
- &.-play::before { background-color: #0070c0; }
108
- &.-zerply::before { background-color: #9dbb7a; }
109
- &.-wikipedia::before { background-color: #333333; }
110
- &.-apple::before { background-color: #aaaaaa; }
111
- &.-flattr::before { background-color: #fdb936; }
112
- &.-github::before { background-color: #323131; }
113
- &.-renren::before { background-color: #005fac; }
114
- &.-friendfeed::before { background-color: #85a9d9; }
115
- &.-newsvine::before { background-color: #005221; }
116
- &.-bebo::before { background-color: #ef1513; }
117
- &.-zynga::before { background-color: #f60b30; }
118
- &.-steam::before { background-color: #010103; }
119
- &.-xbox::before { background-color: #107b10; }
120
- &.-windows::before { background-color: #0078d7; }
121
- &.-qq::before { background-color: #000000; }
122
- &.-douban::before { background-color: #007510; }
123
- &.-meetup::before { background-color: #f10a05; }
124
- &.-playstation::before { background-color: #00338a; }
125
- &.-android::before { background-color: #9acc06; }
126
- &.-snapchat::before { background-color: #fffb0e; }
127
- &.-twitter::before { background-color: #55acee; }
128
- &.-facebook::before { background-color: #3b5998; }
129
- &.-googleplus::before { background-color: #dd4b39; }
130
- &.-pinterest::before { background-color: #cb2027; }
131
- &.-foursquare::before { background-color: #fa4a78; }
132
- &.-yahoo::before { background-color: #3f0690; }
133
- &.-skype::before { background-color: #00b0f0; }
134
- &.-yelp::before { background-color: #bf3126; }
135
- &.-feedburner::before { background-color: #0072c4; }
136
- &.-linkedin::before { background-color: #007bb5; }
137
- &.-viadeo::before { background-color: #f4972c; }
138
- &.-xing::before { background-color: #005d5e; }
139
- &.-myspace::before { background-color: #003499; }
140
- &.-soundcloud::before { background-color: #fb3e0f; }
141
- &.-spotify::before { background-color: #1dd660; }
142
- &.-grooveshark::before { background-color: #f77f07; }
143
- &.-lastfm::before { background-color: #e41a2d; }
144
- &.-youtube::before { background-color: #bb0000; }
145
- &.-vimeo::before { background-color: #06b7ea; }
146
- &.-dailymotion::before { background-color: #0065dc; }
147
- &.-vine::before { background-color: #00b185; }
148
- &.-flickr::before { background-color: #0064db; }
149
- &.-w500px::before { background-color: #009ae5; }
150
- &.-instagram::before { background-color: #125688; }
151
- &.-wordpress::before { background-color: #00749a; }
152
- &.-tumblr::before { background-color: #36465d; }
153
- &.-twitch::before { background-color: #6343a5; }
154
- &.-w8tracks::before { background-color: #0f2c4b; }
155
- &.-amazon::before { background-color: #231f20; }
156
- &.-smugmug::before { background-color: #96c73e; }
157
- &.-ravelry::before { background-color: #c61b4e; }
158
- &.-weibo::before { background-color: #fc1d26; }
159
- &.-baidu::before { background-color: #181fdc; }
160
- &.-angellist::before { background-color: #373435; }
161
- &.-ebay::before { background-color: #e63438; }
162
- &.-imdb::before { background-color: #e4ac3e; }
163
- &.-stayfriends::before { background-color: #ff8d08; }
164
- &.-residentadvisor::before { background-color: #fffe0d; }
165
- &.-google::before { background-color: #0058c6; }
166
- &.-yandex::before { background-color: #e62922; }
167
- &.-sharethis::before { background-color: #1c6e01; }
168
- &.-bandcamp::before { background-color: #609aa9; }
169
- }
170
-
171
- // Empty icon
172
- .-empty {
173
-
174
- text-decoration: none;
175
- position: relative;
176
-
177
- &::after {
178
- content: " ";
179
- width: $addButtonSize;
180
- height: $addButtonSize;
181
- position: absolute;
182
- top: 50%;
183
- left: 50%;
184
- transform: translate(-50%, -50%);
185
- border: 1px dashed $color--borders;
186
- border-radius: 50%;
187
- }
188
-
189
- i {
190
- position: absolute;
191
- top: calc( 50% + 1px );
192
- left: 50%;
193
- transform: translate(-50%, -50%);
194
- font-size: 18px;
195
- }
196
-
197
- &:hover::after {
198
- border: 1px solid $color--borders;
199
- }
200
- }
201
-
202
- /**
203
- * On editor
204
- */
205
- button {
206
- transition: all 0.6s $easeOutQuart;
207
- width: $addButtonSize;
208
- height: $addButtonSize;
209
- box-sizing: border-box;
210
- border-radius: 50%;
211
- border: 1px solid $color--borders;
212
- background-color: rgba(white, 0.7);
213
-
214
- position: absolute;
215
- right: -40px;
216
- top: 5px;
217
-
218
- &[data-empty="true"] {
219
- right: -30px;
220
- }
221
-
222
- svg {
223
- position: absolute;
224
- top: calc( 50% + 1px );
225
- left: 50%;
226
- transform: translate(-50%, -50%);
227
- display: inherit;
228
- path {
229
- transition: all 0.8s $easeOutQuart;
230
- color: $color--icons;
231
- }
232
- }
233
-
234
- /* ---- hover ---- */
235
- &:hover {
236
- border: 1px solid rgba($color--icons--hover, 0.5);
237
- background-color: rgba(white, 1);
238
- svg path {
239
- color: $color--icons--hover;
240
- }
241
- }
242
- }
243
-
244
- }
245
-
246
- /**
247
- * Social icons menu
248
- */
249
- .editor-block-social-icons-menu__content {
250
- .components-popover__content {
251
- padding: 7px;
252
-
253
- .editor-block-settings-menu__separator {
254
- border-top: 1px solid #e2e4e7;
255
- margin: 8px -7px;
256
- }
257
- }
258
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/config.settings.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
@@ -18,14 +18,14 @@ use Pixelthrone\ComingSoon_Blocks\Plugin;
18
  $icon = Plugin::is_active() ? 'dashicons-lock' : 'dashicons-unlock';
19
  $cdnURL = 'https://cdn.pixelthrone.com/';
20
 
21
- return [
22
  /**
23
  * Plugin.
24
  */
25
  'plugin' => [
26
  'slug' => 'coming-soon-blocks',
27
  'name' => 'Coming Soon Blocks',
28
- 'version' => '1.1.0',
29
  'PluginURI' => 'https://pixelthrone.com/coming-soon-blocks',
30
  'wp_org_url' => 'https://wordpress.org/support/plugin/coming-soon-blocks',
31
  'wp_review_url' => 'https://wordpress.org/support/plugin/coming-soon-blocks/reviews/',
@@ -56,6 +56,18 @@ return [
56
  'base' => 'gutenberg/gutenberg.php',
57
  ]
58
  ],
 
 
 
 
 
 
 
 
 
 
 
 
59
  /**
60
  * Post Type.
61
  */
@@ -83,13 +95,14 @@ return [
83
  'show_ui' => true,
84
  'show_in_nav_menus' => false,
85
  'show_in_admin_bar' => true,
86
- 'menu_position' => 20,
87
  'can_export' => true,
88
  'has_archive' => true,
89
  'show_in_rest' => true,
90
  'exclude_from_search' => true,
91
  'publicly_queryable' => true,
92
  'capability_type' => 'page',
 
93
  ],
94
  /**
95
  * toolbar.
@@ -102,12 +115,6 @@ return [
102
  'meta' => [ 'class' => '' ],
103
  'parent' => 'top-secondary',
104
  ],
105
- // [
106
- // 'id' => 'pt_comingsoonblocks_toolbar_status',
107
- // 'title' => esc_html__( 'Coming is active', 'coming-soon-blocks' ),
108
- // 'href' => get_admin_url( null, 'edit.php?post_type=coming-soon-blocks' ),
109
- // 'parent' => 'pt_comingsoonblocks_toolbar_group'
110
- // ],
111
  [
112
  'id' => 'pt_comingsoonblocks_toolbar_add-new',
113
  'title' => sprintf( esc_html__( '%s Add Coming soon', 'coming-soon-blocks' ), '<i class="dashicons-before dashicons-plus"></i>' ),
@@ -120,25 +127,30 @@ return [
120
  'href' => get_admin_url( null, 'edit.php?post_type=coming-soon-blocks' ),
121
  'parent' => 'pt_comingsoonblocks_toolbar_group'
122
  ],
123
- [
124
- 'id' => 'pt_comingsoonblocks_toolbar_contact-us',
125
- 'title' => esc_html__( 'Contact Us', 'coming-soon-blocks' ),
126
- 'href' => csblocks_fs()->contact_url(),
127
- 'parent' => 'pt_comingsoonblocks_toolbar_group',
128
- 'meta' => [ 'target' => '_blank' ]
129
- ],
130
- [
131
- 'id' => 'pt_comingsoonblocks_toolbar_support-forum',
132
- 'title' => esc_html__( 'Support Forum', 'coming-soon-blocks' ),
133
- 'href' => csblocks_fs()->get_support_forum_url(),
134
- 'parent' => 'pt_comingsoonblocks_toolbar_group',
135
- 'meta' => [ 'target' => '_blank' ]
136
- ],
137
- [
138
- 'id' => 'pt_comingsoonblocks_toolbar_upgrade',
139
- 'title' => csblocks_fs()->is_free_plan() ? esc_html__( 'Upgrade', 'coming-soon-blocks' ) : esc_html__( 'Pricing', 'coming-soon-blocks' ),
140
- 'href' => csblocks_fs()->pricing_url(),
141
- 'parent' => 'pt_comingsoonblocks_toolbar_group',
142
- ],
143
  ]
144
  ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
18
  $icon = Plugin::is_active() ? 'dashicons-lock' : 'dashicons-unlock';
19
  $cdnURL = 'https://cdn.pixelthrone.com/';
20
 
21
+ $configArray = [
22
  /**
23
  * Plugin.
24
  */
25
  'plugin' => [
26
  'slug' => 'coming-soon-blocks',
27
  'name' => 'Coming Soon Blocks',
28
+ 'version' => '1.2.0',
29
  'PluginURI' => 'https://pixelthrone.com/coming-soon-blocks',
30
  'wp_org_url' => 'https://wordpress.org/support/plugin/coming-soon-blocks',
31
  'wp_review_url' => 'https://wordpress.org/support/plugin/coming-soon-blocks/reviews/',
56
  'base' => 'gutenberg/gutenberg.php',
57
  ]
58
  ],
59
+ /**
60
+ * Admin Menu.
61
+ */
62
+ 'admin_button' => [
63
+ 'page_title' => esc_html__( 'Coming Soon', 'coming-soon-blocks' ),
64
+ 'menu_title' => esc_html__( 'Coming Soon', 'coming-soon-blocks' ),
65
+ 'capability' => 'manage_options',
66
+ 'menu_slug' => '',
67
+ 'function' => '',
68
+ 'icon_url' => $icon,
69
+ 'position' => 22,
70
+ ],
71
  /**
72
  * Post Type.
73
  */
95
  'show_ui' => true,
96
  'show_in_nav_menus' => false,
97
  'show_in_admin_bar' => true,
98
+ 'menu_position' => false,
99
  'can_export' => true,
100
  'has_archive' => true,
101
  'show_in_rest' => true,
102
  'exclude_from_search' => true,
103
  'publicly_queryable' => true,
104
  'capability_type' => 'page',
105
+ 'show_in_menu' => 'coming-soon-blocks'
106
  ],
107
  /**
108
  * toolbar.
115
  'meta' => [ 'class' => '' ],
116
  'parent' => 'top-secondary',
117
  ],
 
 
 
 
 
 
118
  [
119
  'id' => 'pt_comingsoonblocks_toolbar_add-new',
120
  'title' => sprintf( esc_html__( '%s Add Coming soon', 'coming-soon-blocks' ), '<i class="dashicons-before dashicons-plus"></i>' ),
127
  'href' => get_admin_url( null, 'edit.php?post_type=coming-soon-blocks' ),
128
  'parent' => 'pt_comingsoonblocks_toolbar_group'
129
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  ]
131
  ];
132
+
133
+ if( ! csblocks_fs()->is_network_active() || csblocks_fs()->is_delegated_connection() ) {
134
+ $configArray['toolbar'][] = [
135
+ 'id' => 'pt_comingsoonblocks_toolbar_contact-us',
136
+ 'title' => esc_html__( 'Contact Us', 'coming-soon-blocks' ),
137
+ 'href' => csblocks_fs()->contact_url(),
138
+ 'parent' => 'pt_comingsoonblocks_toolbar_group',
139
+ ];
140
+ $configArray['toolbar'][] = [
141
+ 'id' => 'pt_comingsoonblocks_toolbar_support-forum',
142
+ 'title' => esc_html__( 'Support Forum', 'coming-soon-blocks' ),
143
+ 'href' => csblocks_fs()->get_support_forum_url(),
144
+ 'parent' => 'pt_comingsoonblocks_toolbar_group',
145
+ 'meta' => [ 'target' => '_blank' ]
146
+ ];
147
+ $configArray['toolbar'][] = [
148
+ 'id' => 'pt_comingsoonblocks_toolbar_upgrade',
149
+ 'title' => csblocks_fs()->is_free_plan() ? esc_html__( 'Upgrade', 'coming-soon-blocks' ) : esc_html__( 'Pricing', 'coming-soon-blocks' ),
150
+ 'href' => csblocks_fs()->pricing_url(),
151
+ 'parent' => 'pt_comingsoonblocks_toolbar_group',
152
+ ];
153
+ }
154
+
155
+
156
+ return $configArray;
admin/dashboard/Init.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
@@ -52,13 +52,6 @@ class Init {
52
  */
53
  private $settings;
54
 
55
- /**
56
- * Blocks manifest.
57
- *
58
- * @var array
59
- */
60
- private $blocks;
61
-
62
  /**
63
  * Constructor.
64
  *
@@ -67,26 +60,25 @@ class Init {
67
  */
68
  public
69
  function __construct() {
70
- global $pagenow;
71
-
72
  $this->slug = Plugin::get_slug();
73
  $this->url = Plugin::get_plugin_url();
74
  $this->version = Plugin::get_version();
75
  $this->settings = Plugin::get_settings();
76
 
77
- if ( Plugin::has_gutenberg() && Utils\is_post_type_page( Plugin::get_slug() ) && $pagenow === 'edit.php' ) {
 
 
 
78
 
79
 
80
- add_action( 'admin_footer', function () {
81
- // echo '<div id="plugin-dashboard"></div>';
82
- } );
83
-
84
- add_action( 'enqueue_block_editor_assets', [ $this, 'localization' ] );
85
- add_action( 'admin_init', [ $this, 'load_dashboard_assets' ] );
86
- }
87
 
 
88
  add_action( 'init', [ $this, 'init' ], 100 );
89
- //add_action( 'admin_menu', [ $this, 'admin_menu' ] );
 
 
90
  }
91
 
92
  /**
@@ -100,6 +92,7 @@ class Init {
100
  * Register post type.
101
  */
102
  register_post_type( $this->slug, $this->settings['post_type'] );
 
103
  /**
104
  * Enqueue global assets.
105
  */
@@ -112,7 +105,31 @@ class Init {
112
  * @access public
113
  */
114
  public
115
- function admin_menu() {}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
  /**
118
  * Enqueue dashboard assets.
@@ -121,23 +138,27 @@ class Init {
121
  */
122
  public
123
  function load_dashboard_assets() {
 
 
 
 
124
  wp_enqueue_style( 'wp-components' );
125
  wp_enqueue_style( 'wp-editor' );
126
  wp_enqueue_style( $this->slug . '-dashboard', $this->url . '/public/dist/dashboard.bundle.css', [
127
  'wp-components',
128
- 'wp-editor'
129
  ], $this->version );
130
 
131
  wp_enqueue_script( 'wp-components' );
132
- wp_enqueue_script( 'wp-editor' );
133
  wp_enqueue_script( 'wp-i18n' );
134
  wp_enqueue_script( 'wp-api' );
135
  wp_enqueue_script( $this->slug . '-dashboard', $this->url . '/public/dist/dashboard.bundle.js', [
136
  'wp-i18n',
137
  'wp-components',
138
- 'wp-editor',
139
  'wp-api',
140
  ], $this->version, true );
 
 
141
  }
142
 
143
  /**
@@ -146,7 +167,30 @@ class Init {
146
  * @access public
147
  */
148
  public
149
- function localization() {}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
 
152
  new Init();
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
52
  */
53
  private $settings;
54
 
 
 
 
 
 
 
 
55
  /**
56
  * Constructor.
57
  *
60
  */
61
  public
62
  function __construct() {
 
 
63
  $this->slug = Plugin::get_slug();
64
  $this->url = Plugin::get_plugin_url();
65
  $this->version = Plugin::get_version();
66
  $this->settings = Plugin::get_settings();
67
 
68
+ // Disable yoast seo on custom post type
69
+ add_action('add_meta_boxes', function() {
70
+ remove_meta_box('wpseo_meta', $this->slug, 'normal');
71
+ }, 100);
72
 
73
 
74
+ // Load Scripts
75
+ add_action( 'admin_enqueue_scripts', [ $this, 'load_dashboard_assets' ] );
 
 
 
 
 
76
 
77
+ // Global options
78
  add_action( 'init', [ $this, 'init' ], 100 );
79
+
80
+ // Left menu options
81
+ add_action( 'admin_menu', [ $this, 'admin_menu' ] );
82
  }
83
 
84
  /**
92
  * Register post type.
93
  */
94
  register_post_type( $this->slug, $this->settings['post_type'] );
95
+
96
  /**
97
  * Enqueue global assets.
98
  */
105
  * @access public
106
  */
107
  public
108
+ function admin_menu() {
109
+ global $submenu;
110
+
111
+ /**
112
+ * Add Admin menu
113
+ */
114
+ $arg = $this->settings['admin_button'];
115
+ $arg['menu_slug'] = $this->slug;
116
+ $arg['function'] = [$this, 'dashboard_template'];
117
+
118
+ add_menu_page( $arg['page_title'], $arg['menu_title'], $arg['capability'], $arg['menu_slug'], $arg['function'], $arg['icon_url'], $arg['position'] );
119
+ unset( $submenu['coming-soon-blocks'] );
120
+ }
121
+
122
+ /**
123
+ * Admin dashboard template.
124
+ *
125
+ * @access public
126
+ */
127
+ public
128
+ function dashboard_template() {
129
+ if ( current_user_can( 'manage_options' ) ) {
130
+ include_once( Plugin::get_plugin_dir().'/admin/dashboard/template.php' );
131
+ }
132
+ }
133
 
134
  /**
135
  * Enqueue dashboard assets.
138
  */
139
  public
140
  function load_dashboard_assets() {
141
+
142
+ $screen = get_current_screen();
143
+ if( $screen->base !== 'toplevel_page_coming-soon-blocks' ) return;
144
+
145
  wp_enqueue_style( 'wp-components' );
146
  wp_enqueue_style( 'wp-editor' );
147
  wp_enqueue_style( $this->slug . '-dashboard', $this->url . '/public/dist/dashboard.bundle.css', [
148
  'wp-components',
149
+ 'wp-editor',
150
  ], $this->version );
151
 
152
  wp_enqueue_script( 'wp-components' );
 
153
  wp_enqueue_script( 'wp-i18n' );
154
  wp_enqueue_script( 'wp-api' );
155
  wp_enqueue_script( $this->slug . '-dashboard', $this->url . '/public/dist/dashboard.bundle.js', [
156
  'wp-i18n',
157
  'wp-components',
 
158
  'wp-api',
159
  ], $this->version, true );
160
+
161
+ $this->localization();
162
  }
163
 
164
  /**
167
  * @access public
168
  */
169
  public
170
+ function localization() {
171
+ /**
172
+ * Check if active page exist.
173
+ *
174
+ * @since 1.1.0
175
+ */
176
+ Plugin::check_if_active_page_exist();
177
+
178
+ /**
179
+ * Share page data with javascript.
180
+ *
181
+ * @since 1.0.0
182
+ */
183
+ $ptPlugin = Plugin::get_dashboard_data();
184
+ $ptPlugin = json_encode( $ptPlugin );
185
+ $content = [
186
+ 'const csblocks_dashboard=' . $ptPlugin . ';'
187
+ ];
188
+
189
+ wp_script_add_data( $this->slug . '-dashboard', 'data', implode( $content, ' ' ) );
190
+ wp_set_script_translations( $this->slug . '-dashboard', 'coming-soon-blocks' );
191
+ }
192
+
193
+
194
  }
195
 
196
  new Init();
admin/dashboard/styles/dashboard.scss DELETED
@@ -1,6 +0,0 @@
1
- /**
2
- * Toolbar.
3
- *
4
- * @since 1.0.0
5
- */
6
- @import './dashboard/all-pages.scss';
 
 
 
 
 
 
admin/dashboard/styles/dashboard/all-pages.scss DELETED
@@ -1,60 +0,0 @@
1
- body.post-type-coming-soon-blocks {
2
-
3
- .wrap {
4
- #split-page-title-action {
5
- .expander { display: none; }
6
- }
7
- }
8
-
9
- #wpbody-content {
10
- // Top Buttons
11
- .subsubsub {
12
- margin-bottom: 10px;
13
- }
14
-
15
- // Form
16
- #posts-filter {
17
-
18
- .search-box { display: none; }
19
- .tablenav.top { display: none; }
20
-
21
- // List
22
- .wp-list-table {
23
-
24
- thead {
25
- .check-column { display: none; }
26
- }
27
- // Body
28
- tbody {
29
- .check-column {
30
- display: none;
31
- }
32
- .column-title {
33
- .post-state { display: none; }
34
- .row-actions {
35
- .edit, .classic, .inline {
36
- display: none;
37
- }
38
- }
39
- }
40
- }
41
-
42
- tfoot {
43
- .check-column { display: none; }
44
- }
45
-
46
- }
47
-
48
- }
49
- }
50
-
51
- // Wrapper
52
- #plugin-dashboard {
53
- margin-left: 36px;
54
-
55
- background-color: red;
56
- padding: 30px;
57
- }
58
- }
59
-
60
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/dashboard/styles/global.scss DELETED
@@ -1,14 +0,0 @@
1
- /**
2
- * Toolbar.
3
- *
4
- * @since 1.0.0
5
- */
6
- @import './global/toolbar.scss';
7
-
8
- /**
9
- * Admin menu.
10
- *
11
- * @since 1.0.0
12
- */
13
- @import './global/admin-menu.scss';
14
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/dashboard/styles/global/admin-menu.scss DELETED
@@ -1,59 +0,0 @@
1
- body {
2
- #adminmenuwrap > ul {
3
- // Plugin menu
4
- #menu-posts-coming-soon-blocks {
5
- ul {
6
- li > a[href*='account']:not(.current),
7
- li:nth-last-child(3) a:not(.current),
8
- li:nth-last-child(2) a:not(.current) {
9
- opacity: 0.6;
10
- &:hover {
11
- opacity: 1;
12
- }
13
- }
14
- li:nth-of-type(7) {
15
- a { color: inherit; font-weight: bold; }
16
- }
17
- }
18
- }
19
- }
20
-
21
-
22
-
23
- /**
24
- * Color Scheme
25
- *
26
- * @since 1.0.0
27
- */
28
- // Default
29
- $bg-featured: #00A0D2;
30
- &.admin-color-fresh #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
31
-
32
- // Light
33
- $bg-featured: #04A4CB;
34
- &.admin-color-light #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
35
-
36
- // Blue
37
- $bg-featured: #096484;
38
- &.admin-color-blue #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
39
-
40
- // Coffee
41
- $bg-featured: #C7A589;
42
- &.admin-color-coffee #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
43
-
44
- // Coffee
45
- $bg-featured: #A3B745;
46
- &.admin-color-ectoplasm #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
47
-
48
- // Midnight
49
- $bg-featured: #E14D43;
50
- &.admin-color-midnight #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
51
-
52
- // Ocean
53
- $bg-featured: #9EBAA0;
54
- &.admin-color-ocean #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
55
-
56
- // Sunrise
57
- $bg-featured: #F6D308;
58
- &.admin-color-sunrise #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing { color: $bg-featured; }
59
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/dashboard/styles/global/toolbar.scss DELETED
@@ -1,200 +0,0 @@
1
- body {
2
-
3
- #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
4
- /**
5
- * Buttons
6
- *
7
- * @since 1.0.0
8
- */
9
- $size: 5px;
10
- > a {
11
- position: relative;
12
- &::after {
13
- content: " ";
14
- width: $size;
15
- height: $size;
16
- border-radius: 50%;
17
- position: absolute;
18
- right: 6px;
19
- bottom: 4px;
20
- border: 2px solid transparent;
21
- display: none;
22
- }
23
- i::before {
24
- vertical-align: sub;
25
- transform: translateY(1px);
26
- }
27
- }
28
-
29
- // Submenu
30
- .ab-submenu {
31
- padding-bottom: 0;
32
- li {
33
- a {
34
- i::before {
35
- margin-top: 7px;
36
- font-size: 18px;
37
- }
38
- }
39
-
40
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
41
- margin-top: 13px;
42
- padding-top: 6px;
43
- background-color: #32373C;
44
- }
45
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {}
46
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
47
- padding-bottom: 6px;
48
- a { color: inherit; }
49
- }
50
- }
51
- }
52
-
53
- /**
54
- * Enabled mode
55
- *
56
- * @since 1.0.0
57
- */
58
- &.-coming-soon-enabled {
59
- > a::after { display: block; }
60
- }
61
- }
62
-
63
- /**
64
- * Color Scheme
65
- *
66
- * @since 1.0.0
67
- */
68
- // Default
69
- $bg-color: #23282C;
70
- $bg-lighten-color: lighten($bg-color, 10%);
71
- $bg-featured: #00A0D2;
72
- &.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
73
- > a::after { border-color: $bg-color; background-color: $bg-featured; }
74
- .ab-submenu li {
75
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
76
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
77
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
78
- }
79
- &.hover > a::after { border-color: #32373C; }
80
- }
81
-
82
- // Light
83
- $bg-color: #32373C;
84
- $bg-lighten-color: #E5E5E5;
85
- $bg-featured: #04A4CB;
86
- &.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
87
- > a {
88
- color: #999999;
89
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
90
- }
91
- .ab-submenu li {
92
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
93
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
94
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
95
- }
96
- &.hover > a::after { border-color: #FFFFFF; }
97
- }
98
-
99
- // Blue
100
- $bg-color: #52ACCC;
101
- $bg-lighten-color: #52ACCC;
102
- $bg-featured: #096484;
103
- &.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
104
- > a {
105
- color: #E5F8FF;
106
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
107
- }
108
- .ab-submenu li {
109
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
110
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
111
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
112
- }
113
- &.hover > a::after { border-color: #4796B3; }
114
- }
115
-
116
- // Coffee
117
- $bg-color: #59524D;
118
- $bg-lighten-color: #59524D;
119
- $bg-featured: #C7A589;
120
- &.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
121
- > a {
122
- color: #E5F8FF;
123
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
124
- }
125
- .ab-submenu li {
126
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
127
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
128
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
129
- }
130
- &.hover > a::after { border-color: #46403C; }
131
- }
132
-
133
- // Coffee
134
- $bg-color: #523F6D;
135
- $bg-lighten-color: #523F6D;
136
- $bg-featured: #A3B745;
137
- &.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
138
- > a {
139
- color: #ECE6F6;
140
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
141
- }
142
- .ab-submenu li {
143
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
144
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
145
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
146
- }
147
- &.hover > a::after { border-color: #413257; }
148
- }
149
-
150
- // Midnight
151
- $bg-color: #363B3F;
152
- $bg-lighten-color: #363B3F;
153
- $bg-featured: #E14D43;
154
- &.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
155
- > a {
156
- color: #ECE6F6;
157
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
158
- }
159
- .ab-submenu li {
160
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
161
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
162
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
163
- }
164
- &.hover > a::after { border-color: #26292B; }
165
- }
166
-
167
- // Ocean
168
- $bg-color: #738E96;
169
- $bg-lighten-color: #738E96;
170
- $bg-featured: #9EBAA0;
171
- &.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
172
- > a {
173
- color: #F2FCFF;
174
- &::after { border-color: $bg-lighten-color; background-color: #76d27d; }
175
- }
176
- .ab-submenu li {
177
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
178
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
179
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
180
- }
181
- &.hover > a::after { border-color: #627C84; }
182
- }
183
-
184
- // Sunrise
185
- $bg-color: #CF4844;
186
- $bg-lighten-color: #CF4944;
187
- $bg-featured: #F6D308;
188
- &.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
189
- > a {
190
- color: #F3F1F1;
191
- &::after { border-color: $bg-lighten-color; background-color: $bg-featured; }
192
- }
193
- .ab-submenu li {
194
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us { background-color: $bg-lighten-color; }
195
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum { background-color: $bg-lighten-color; }
196
- &#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade { color: $bg-featured; background-color: $bg-lighten-color; }
197
- }
198
- &.hover > a::after { border-color: #CD4843; }
199
- }
200
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/dashboard/template.php ADDED
@@ -0,0 +1 @@
 
1
+ <div id="coming-soon-blocks--dashboard"></div>
coming-soon-blocks.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Plugin Name: Coming Soon Blocks
4
  * Plugin URI: https://pixelthrone.com/coming-soon-blocks
5
- * Description: Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress + Gutenberg
6
  * Author: Helder Vilela from Pixelthrone
7
  * Author URI: https://heldervilela.com
8
  * Tags: gutenberg, editor, block, layout, coming Soon, under Construction, maintenance
9
- * Version: 1.1.0
10
  * Text Domain: coming-soon-blocks
11
  * Domain Path: languages
12
  * Tested up to: 5.0.0
@@ -19,7 +19,7 @@
19
  * You should have received a copy of the GNU General Public License
20
  * along with Coming Soon Blocks. If not, see <http://www.gnu.org/licenses/>.
21
  *
22
- * @package @@pkg.package
23
  * @author Helder Vilela from Pixelthrone
24
  * @license GPL-3.0
25
  */
@@ -65,6 +65,7 @@ class Initialize {
65
  'admin/Toolbar.php',
66
  'admin/blocks/Init.php',
67
  'admin/api/UnlockPage.php',
 
68
  'frontend/init.php',
69
  ];
70
 
2
  /**
3
  * Plugin Name: Coming Soon Blocks
4
  * Plugin URI: https://pixelthrone.com/coming-soon-blocks
5
+ * Description: Create an coming soon page for your startups easily and fast while your website is not built.
6
  * Author: Helder Vilela from Pixelthrone
7
  * Author URI: https://heldervilela.com
8
  * Tags: gutenberg, editor, block, layout, coming Soon, under Construction, maintenance
9
+ * Version: 1.2.0
10
  * Text Domain: coming-soon-blocks
11
  * Domain Path: languages
12
  * Tested up to: 5.0.0
19
  * You should have received a copy of the GNU General Public License
20
  * along with Coming Soon Blocks. If not, see <http://www.gnu.org/licenses/>.
21
  *
22
+ * @package coming-soon-blocks
23
  * @author Helder Vilela from Pixelthrone
24
  * @license GPL-3.0
25
  */
65
  'admin/Toolbar.php',
66
  'admin/blocks/Init.php',
67
  'admin/api/UnlockPage.php',
68
+ 'admin/api/UpdatePost.php',
69
  'frontend/init.php',
70
  ];
71
 
frontend/components/block-background-overlayer.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
frontend/components/block-background.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
  use Pixelthrone\ComingSoon_Blocks\Utils;
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
  use Pixelthrone\ComingSoon_Blocks\Utils;
frontend/components/cookie-notice.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
frontend/components/social-icons.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
  if( empty($networks)) {
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
  if( empty($networks)) {
frontend/components/unlock-page.php CHANGED
@@ -6,7 +6,7 @@
6
  *
7
  * @package Coming Soon Blocks
8
  * @author Helder Vilela from Pixelthrone
9
- * @link Helder Vilela from Pixelthrone_uri
10
  * @license GPL-3.0
11
  */
12
  use Pixelthrone\ComingSoon_Blocks\Utils;
6
  *
7
  * @package Coming Soon Blocks
8
  * @author Helder Vilela from Pixelthrone
9
+ * @link htts://pixelthrone.com
10
  * @license GPL-3.0
11
  */
12
  use Pixelthrone\ComingSoon_Blocks\Utils;
frontend/init.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * @package Coming Soon Blocks
7
  * @author Helder Vilela from Pixelthrone
8
- * @link Helder Vilela from Pixelthrone_uri
9
  * @license GPL-3.0
10
  */
11
  namespace Pixelthrone\ComingSoon_Blocks\Frontend;
@@ -58,9 +58,6 @@ class Init
58
  $pageSettings = Plugin::get_frontend_settings();
59
  // Check if page exist
60
  $post = get_post( $pageSettings->selected_page_id );
61
- // print_r( "<pre>" );
62
- // print_r( $pageSettings );
63
- // print_r( "</pre>" );
64
  /**
65
  * Verify if the page has the correct status.
66
  *
5
  *
6
  * @package Coming Soon Blocks
7
  * @author Helder Vilela from Pixelthrone
8
+ * @link htts://pixelthrone.com
9
  * @license GPL-3.0
10
  */
11
  namespace Pixelthrone\ComingSoon_Blocks\Frontend;
58
  $pageSettings = Plugin::get_frontend_settings();
59
  // Check if page exist
60
  $post = get_post( $pageSettings->selected_page_id );
 
 
 
61
  /**
62
  * Verify if the page has the correct status.
63
  *
frontend/styles/components/cookie-notice.scss DELETED
@@ -1,91 +0,0 @@
1
- $browser-margins:20px;
2
- $browser-margins-width-button:20px;
3
- $button-bg-color: white;
4
- $border-radius: 50px;
5
- $text-color: #555D67;
6
- div[data-component="cookie-notice"] {
7
- transition: all 0.8s $easeInOutBack;
8
- position: fixed;
9
- bottom: $browser-margins;
10
- right: $browser-margins;
11
- background-color: $button-bg-color;
12
- border-radius: $border-radius;
13
- z-index: 10;
14
- min-height: 60px;
15
- padding: 5px 10px;
16
- box-sizing: border-box;
17
-
18
- display: flex;
19
- flex-direction: row;
20
- flex-wrap: nowrap;
21
- justify-content: flex-start;
22
- align-items: center;
23
- box-shadow: 0 7px 14px rgba(50,50,93,.05), 0 3px 6px rgba(0,0,0,.08);
24
-
25
- @include media(tablet-portrait) {
26
- max-width: 660px;
27
- }
28
-
29
- @include media(mobile) {
30
- flex-direction: column;
31
- justify-content: flex-start;
32
- align-items: flex-start;
33
- padding: 20px 20px 10px 20px;
34
- border-radius: 20px;
35
- max-width: calc( 100vw - 90px);
36
- right: $browser-margins + 55px !important;
37
- bottom: $browser-margins - 10px !important;
38
- }
39
-
40
- &.-not-alone {
41
- right: $browser-margins + 60px + 10px;
42
- }
43
-
44
- &.-leave {
45
- bottom: -100px;
46
- }
47
-
48
- p {
49
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
50
- font-size: 14px;
51
- color: $text-color;
52
- padding: 0 30px 0 20px;
53
- margin: 0;
54
- @include media(mobile) {
55
- padding: 0;
56
- }
57
-
58
- @include media(tablet-portrait) {
59
- font-size: 13px;
60
- br { display: none; }
61
- }
62
- }
63
-
64
- button {
65
- transition: all 0.8s $easeOutQuart;
66
- background-color: rgba(black, 0.1);
67
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
68
- font-size: 14px;
69
- border-radius: $border-radius;
70
- padding: 12px 25px;
71
- text-decoration: none;
72
- color: $text-color;
73
- font-weight: 500;
74
- border:none;
75
- cursor: pointer;
76
- outline: none;
77
-
78
- @include media(mobile) {
79
- margin-top: 15px;
80
- width: 100%;
81
- }
82
-
83
- /* ---- hover ---- */
84
-
85
- &:hover {
86
- background-color: rgba(black, 0.18);
87
- }
88
- }
89
-
90
- }
91
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
frontend/styles/components/unlock-page.scss DELETED
@@ -1,289 +0,0 @@
1
- $browser-margins:20px;
2
- $button-size:60px;
3
- $button-bg-color: #282A2F;
4
- $modal-width: 300px;
5
- $border-radius: 10px;
6
- $text-color: #555D67;
7
- div[data-component="unlock-page"] {
8
- transition: all 0.6s $easeInOutExpo;
9
- position: fixed;
10
- bottom: $browser-margins;
11
- right: $browser-margins;
12
- z-index: 100;
13
-
14
- @include media(mobile) {
15
- bottom: $browser-margins - 10px;
16
- right: $browser-margins - 10px;
17
- }
18
-
19
- * {
20
- box-sizing: border-box;
21
- }
22
-
23
- .button {
24
- width: $button-size;
25
- height: $button-size;
26
- position: relative;
27
- display: block;
28
- z-index: 2;
29
-
30
- @include media(mobile) {
31
- width: $button-size - 6px;
32
- height: $button-size - 6px;
33
- }
34
-
35
- svg {
36
- position: absolute;
37
- top: 50%;
38
- left: 50%;
39
- transform: translate(-50%, -50%);
40
- z-index: 2;
41
- path:nth-of-type(1) {
42
- transition: all 0.6s $easeInOutExpo;
43
- }
44
- @include media(mobile) {
45
-
46
-
47
- }
48
- }
49
- i {
50
- @include spinner();
51
- opacity: 0;
52
- }
53
- span {
54
- transition: all 0.6s $easeInOutQuart;
55
- position: absolute;
56
- top: 50%;
57
- left: 50%;
58
- transform: translate(-50%, -50%);
59
- width: 100%;
60
- height: 100%;
61
- background-color: $button-bg-color;
62
- border-radius: 50%;
63
- z-index: 1;
64
- }
65
- }
66
- .content__wrapper {
67
- transition: all 0.6s $easeOutQuart;
68
- z-index: 1;
69
- padding: 10px 30px 10px 15px;
70
- position: absolute;
71
- bottom: -15px;
72
- right: $button-size / 2;
73
- width: $modal-width;
74
- padding-right: 60px;
75
- box-sizing: border-box;
76
- overflow: hidden;
77
- border-radius: $border-radius;
78
-
79
- @include media(mobile) {
80
- max-width: calc( 100vw - 55px);
81
- padding-right: 40px;
82
- bottom: -22px;
83
- }
84
-
85
- // Message
86
- span {
87
- padding: 15px;
88
- position: absolute;
89
- top:0;
90
- left: 0;
91
- background-color: white;
92
- width: 100%;
93
- height: 100%;
94
-
95
- display: flex;
96
- flex-direction: row;
97
- flex-wrap: nowrap;
98
- justify-content: flex-start;
99
- align-items: center;
100
- opacity: 0;
101
- pointer-events: none;
102
-
103
- p {
104
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
105
- font-size: 14px;
106
- color: $text-color;
107
- line-height: 140%;
108
- padding: 0;
109
- margin: 0;
110
- &.-error {
111
- color: $color--error;
112
- }
113
-
114
- @include media(mobile) {
115
- font-size: 13px;
116
- }
117
- }
118
- }
119
-
120
- // Label
121
- > p {
122
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
123
- font-size: 14px;
124
- color: #555D67;
125
- line-height: 140%;
126
- padding: 0;
127
- margin: 0 0 10px 0;
128
-
129
- @include media(mobile) {
130
- font-size: 13px;
131
- }
132
- }
133
-
134
- // Input
135
- input {
136
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
137
- background-color: #E8EBEE;
138
- border-radius: 50px;
139
- width: 100%;
140
- padding: 5px 10px 7px 10px;
141
- outline: none;
142
- box-sizing: border-box;
143
- font-size: 14px;
144
- border: 1px solid transparent;
145
-
146
- &.-error {
147
- border-color: $color--error;
148
- }
149
- &:focus, &:hover {
150
- background-color: darken(#E8EBEE, 5%);
151
- }
152
- }
153
-
154
- // Background
155
- i {
156
- background-color: white;
157
- position: absolute;
158
- bottom: 0;
159
- right: 0;
160
- width: 100%;
161
- height: 100%;
162
- z-index: -1;
163
- }
164
- }
165
- .page-overlayer {
166
- position: fixed;
167
- transition: all 1s linear;
168
- width: 100%;
169
- height: 100%;
170
- bottom: 0;
171
- right: 0;
172
- opacity: 0;
173
- pointer-events: none;
174
- background: rgb(2,0,36);
175
- background: linear-gradient(152deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.9) 100%);
176
- }
177
-
178
- /**
179
- * Loading
180
- */
181
- &[data-loading="true"] {
182
- .button {
183
- pointer-events: none;
184
- svg {
185
- opacity: 0;
186
- }
187
- i {
188
- opacity: 1;
189
- }
190
- }
191
-
192
- }
193
-
194
- /**
195
- * Message
196
- */
197
- &[data-message="true"] {
198
- .button {
199
- pointer-events: none;
200
- }
201
- .content__wrapper {
202
- padding-top: 0;
203
- padding-bottom: 0;
204
- bottom: -8px;
205
- transition-duration: 0.4s;
206
- span {
207
- opacity: 1;
208
- pointer-events: auto;
209
- }
210
- @include media(mobile) {
211
- bottom: -12px;
212
- }
213
- }
214
- }
215
-
216
- /**
217
- * Modes
218
- */
219
- &[data-mode="close"] {
220
- .button:hover {
221
- svg path:nth-of-type(1) {
222
- transform: translateY(-2px);
223
- }
224
- span {
225
- width: 110%;
226
- height: 110%;
227
- box-shadow: 0 5px 10px 0 rgba(0,0,0,.2);
228
- }
229
- }
230
- .content__wrapper {
231
- pointer-events: none;
232
- > p {
233
- opacity: 0;
234
- transform: translateY(10px);
235
- }
236
- input {
237
- opacity: 0;
238
- transform: translateY(10px);
239
- }
240
- i {
241
- width: 0;
242
- }
243
- }
244
- .page-overlayer {
245
- transition-duration: 0.6s;
246
- }
247
- }
248
- &[data-mode="open"] {
249
- bottom: $browser-margins * 2 ;
250
- .button {
251
- span {
252
- transition: all 0.6s $easeInOutExpo;
253
- border-radius:$border-radius;
254
- }
255
- svg path:nth-of-type(1) {
256
- transform: translateY(-2px);
257
- }
258
- /* ---- hover ---- */
259
- &:hover {
260
- span { height: 120%}
261
- svg path:nth-of-type(1) {
262
- transform: translateY(-5px);
263
- }
264
- }
265
- }
266
- .content__wrapper {
267
- pointer-events: auto;
268
- > p {
269
- transition: all 0.6s $easeOutQuart 0.5s;
270
- opacity: 1;
271
- }
272
- input {
273
- transition: all 0.6s $easeOutQuart 0.6s;
274
- opacity: 1;
275
- }
276
- i {
277
- transition: all 0.6s $easeInOutExpo;
278
- width: 100%;
279
- }
280
- }
281
- .page-overlayer {
282
- opacity: 1;
283
- transition-duration: 1s;
284
- pointer-events: auto;
285
- }
286
- }
287
-
288
- }
289
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
frontend/styles/frontend.scss DELETED
@@ -1,20 +0,0 @@
1
- html {
2
- width: 100%;
3
- height: 100%;
4
- padding: 0;
5
- margin: 0;
6
- }
7
- body {
8
- width: 100%;
9
- height: 100%;
10
- padding: 0;
11
- margin: 0;
12
-
13
- @import './components/unlock-page.scss';
14
- @import './components/cookie-notice.scss';
15
-
16
- main {
17
- transition: all 0.6s $easeInOutExpo;
18
- }
19
-
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
frontend/template.php CHANGED
@@ -125,7 +125,7 @@ $pageFonts = Utils\page_fonts( 'get' );
125
  if ( !empty($pageFonts) ) {
126
  foreach ( $pageFonts as $font => $variants ) {
127
  $font = str_replace( " ", "+", $font );
128
- $variants = implode( $variants, ',' );
129
  echo "<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family={$font}:{$variants}\" id=\"font-preview-acme\">" ;
130
  }
131
  }
125
  if ( !empty($pageFonts) ) {
126
  foreach ( $pageFonts as $font => $variants ) {
127
  $font = str_replace( " ", "+", $font );
128
+ $variants = Utils\get_font_variants( $variants, $font );
129
  echo "<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family={$font}:{$variants}\" id=\"font-preview-acme\">" ;
130
  }
131
  }
languages/coming-soon-blocks.pot CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language-Team: PixelThrone\n"
10
  "Last-Translator: Helder Vilela from Pixelthrone\n"
11
- "Report-Msgid-Bugs-To: support@pixelthrone.com\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
14
  "X-Poedit-SearchPath-0: .\n"
@@ -16,75 +16,75 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: coming-soon-blocks.php:190, coming-soon-blocks.php:203
20
  msgid "Cheatin&#8217; huh?"
21
  msgstr ""
22
 
23
- #: admin/config.settings.php:64, admin/config.settings.php:66, admin/config.settings.php:68
24
  msgid "Coming Soon"
25
  msgstr ""
26
 
27
- #: admin/config.settings.php:67, admin/config.settings.php:69
28
  msgid "Page"
29
  msgstr ""
30
 
31
- #: admin/config.settings.php:70
32
  msgid "All Pages"
33
  msgstr ""
34
 
35
- #: admin/config.settings.php:71
36
  msgid "View Pages"
37
  msgstr ""
38
 
39
- #: admin/config.settings.php:72, admin/config.settings.php:73
40
  msgid "Add new"
41
  msgstr ""
42
 
43
- #: admin/config.settings.php:74
44
  msgid "Edit Pages"
45
  msgstr ""
46
 
47
- #: admin/config.settings.php:75
48
  msgid "Update"
49
  msgstr ""
50
 
51
- #: admin/config.settings.php:76
52
  msgid "Search pages"
53
  msgstr ""
54
 
55
- #: admin/config.settings.php:77
56
  msgid "No pages found"
57
  msgstr ""
58
 
59
- #: admin/config.settings.php:78
60
  msgid "No pages found in Trash"
61
  msgstr ""
62
 
63
- #: admin/config.settings.php:113
64
  msgid "%s Add Coming soon"
65
  msgstr ""
66
 
67
- #: admin/config.settings.php:119
68
  msgid "%s Settings"
69
  msgstr ""
70
 
71
- #: admin/config.settings.php:125
72
  msgid "Contact Us"
73
  msgstr ""
74
 
75
- #: admin/config.settings.php:132
76
  msgid "Support Forum"
77
  msgstr ""
78
 
79
- #: admin/config.settings.php:139
80
  msgid "Upgrade"
81
  msgstr ""
82
 
83
- #: admin/config.settings.php:139
84
  msgid "Pricing"
85
  msgstr ""
86
 
87
- #: frontend/init.php:228
88
  msgid "Only authenticated users can access the REST API."
89
  msgstr ""
90
 
@@ -120,6 +120,14 @@ msgstr ""
120
  msgid "The password is not correct."
121
  msgstr ""
122
 
 
 
 
 
 
 
 
 
123
  #: admin/blocks/Init.php:328
124
  msgid "Oops, we're in the wrong editor."
125
  msgstr ""
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language-Team: PixelThrone\n"
10
  "Last-Translator: Helder Vilela from Pixelthrone\n"
11
+ "Report-Msgid-Bugs-To: htts://pixelthrone.com\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
14
  "X-Poedit-SearchPath-0: .\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
+ #: coming-soon-blocks.php:191, coming-soon-blocks.php:204
20
  msgid "Cheatin&#8217; huh?"
21
  msgstr ""
22
 
23
+ #: admin/config.settings.php:63, admin/config.settings.php:64, admin/config.settings.php:76, admin/config.settings.php:78, admin/config.settings.php:80
24
  msgid "Coming Soon"
25
  msgstr ""
26
 
27
+ #: admin/config.settings.php:79, admin/config.settings.php:81
28
  msgid "Page"
29
  msgstr ""
30
 
31
+ #: admin/config.settings.php:82
32
  msgid "All Pages"
33
  msgstr ""
34
 
35
+ #: admin/config.settings.php:83
36
  msgid "View Pages"
37
  msgstr ""
38
 
39
+ #: admin/config.settings.php:84, admin/config.settings.php:85
40
  msgid "Add new"
41
  msgstr ""
42
 
43
+ #: admin/config.settings.php:86
44
  msgid "Edit Pages"
45
  msgstr ""
46
 
47
+ #: admin/config.settings.php:87
48
  msgid "Update"
49
  msgstr ""
50
 
51
+ #: admin/config.settings.php:88
52
  msgid "Search pages"
53
  msgstr ""
54
 
55
+ #: admin/config.settings.php:89
56
  msgid "No pages found"
57
  msgstr ""
58
 
59
+ #: admin/config.settings.php:90
60
  msgid "No pages found in Trash"
61
  msgstr ""
62
 
63
+ #: admin/config.settings.php:120
64
  msgid "%s Add Coming soon"
65
  msgstr ""
66
 
67
+ #: admin/config.settings.php:126
68
  msgid "%s Settings"
69
  msgstr ""
70
 
71
+ #: admin/config.settings.php:136
72
  msgid "Contact Us"
73
  msgstr ""
74
 
75
+ #: admin/config.settings.php:142
76
  msgid "Support Forum"
77
  msgstr ""
78
 
79
+ #: admin/config.settings.php:149
80
  msgid "Upgrade"
81
  msgstr ""
82
 
83
+ #: admin/config.settings.php:149
84
  msgid "Pricing"
85
  msgstr ""
86
 
87
+ #: frontend/init.php:224
88
  msgid "Only authenticated users can access the REST API."
89
  msgstr ""
90
 
120
  msgid "The password is not correct."
121
  msgstr ""
122
 
123
+ #: admin/api/UpdatePost.php:73
124
+ msgid "User has no permissions to edit the page."
125
+ msgstr ""
126
+
127
+ #: admin/api/UpdatePost.php:89
128
+ msgid "Page updated."
129
+ msgstr ""
130
+
131
  #: admin/blocks/Init.php:328
132
  msgid "Oops, we're in the wrong editor."
133
  msgstr ""
lib/Block_Editor_Checker.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
  namespace Pixelthrone\ComingSoon_Blocks\Lib;
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
  namespace Pixelthrone\ComingSoon_Blocks\Lib;
lib/Footer_Text.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
  namespace Pixelthrone\ComingSoon_Blocks\Lib;
@@ -39,8 +39,9 @@ class Footer_Text {
39
  */
40
  public function admin_footer_text( $footer_text ) {
41
  global $pagenow, $post_type;
 
42
 
43
- if ( ! in_array( $pagenow, array( 'edit.php' ), true ) ) {
44
  return $footer_text;
45
  }
46
 
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
  namespace Pixelthrone\ComingSoon_Blocks\Lib;
39
  */
40
  public function admin_footer_text( $footer_text ) {
41
  global $pagenow, $post_type;
42
+ $screen = get_current_screen();
43
 
44
+ if ( $screen->base !== 'toplevel_page_coming-soon-blocks' && $screen->post_type !== 'edit' ) {
45
  return $footer_text;
46
  }
47
 
lib/Plugin.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
- * @link Helder Vilela from Pixelthrone_uri
8
  * @license GPL-3.0
9
  */
10
 
@@ -330,17 +330,97 @@ class Plugin {
330
  $seo = static::get_option( 'seo', get_the_ID() );
331
  $lookandfeel = static::get_option( 'lookandfeel', get_the_ID() );
332
  $settings = static::get_option( 'settings', get_the_ID() );
 
 
 
 
 
 
333
 
334
- if( ! empty($settings) ) $settings->status = ( $selected_page_id === get_the_ID() ) ? true : false;
 
 
335
 
336
  return [
337
  'baseURL' => static::get_plugin_url(),
338
  'time_format' => get_option( 'time_format' ),
339
  'settings' => $settings,
340
  'seo' => $seo,
341
- 'lookandfeel' => $lookandfeel
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
  ];
 
 
 
 
 
 
 
 
 
343
  }
344
  }
345
 
346
- new Plugin();
4
  *
5
  * @package Coming Soon Blocks
6
  * @author Helder Vilela from Pixelthrone
7
+ * @link htts://pixelthrone.com
8
  * @license GPL-3.0
9
  */
10
 
330
  $seo = static::get_option( 'seo', get_the_ID() );
331
  $lookandfeel = static::get_option( 'lookandfeel', get_the_ID() );
332
  $settings = static::get_option( 'settings', get_the_ID() );
333
+ $license = [
334
+ 'plan' => csblocks_fs()->get_plan_name(),
335
+ 'can_use_premium_code' => csblocks_fs()->can_use_premium_code(),
336
+ 'is_trial' => csblocks_fs()->is_trial(),
337
+ 'is_free' => csblocks_fs()->is_not_paying(),
338
+ ];
339
 
340
+ if ( ! empty( $settings ) ) {
341
+ $settings->status = ( (int) $selected_page_id === get_the_ID() ) ? true : false;
342
+ }
343
 
344
  return [
345
  'baseURL' => static::get_plugin_url(),
346
  'time_format' => get_option( 'time_format' ),
347
  'settings' => $settings,
348
  'seo' => $seo,
349
+ 'lookandfeel' => $lookandfeel,
350
+ 'license' => $license
351
+ ];
352
+ }
353
+
354
+ /**
355
+ * Get all pages created
356
+ *
357
+ * @return array
358
+ */
359
+ public static
360
+ function get_all_pages( $post_status = [ 'publish', 'draft' ] ) {
361
+
362
+ $filter = function ( $post ) {
363
+ return [
364
+ 'id' => $post->ID,
365
+ 'title' => $post->post_title,
366
+ 'status' => $post->post_status,
367
+ 'date' => get_the_date( '', $post->ID ),
368
+ 'edit_link' => get_edit_post_link( $post->ID ),
369
+ 'delete_link' => get_delete_post_link( $post->ID )
370
+ ];
371
+ };
372
+
373
+ $getPages = get_posts( [
374
+ 'numberposts' => 500,
375
+ 'post_status' => $post_status,
376
+ 'post_type' => static::$PLUGIN_SLUG,
377
+ 'fields' => 'id'
378
+ ] );
379
+
380
+ $pages = array_map( $filter, $getPages );
381
+
382
+ return $pages;
383
+ }
384
+
385
+ /**
386
+ * Check if active page exist
387
+ *
388
+ * @return void
389
+ */
390
+ public static
391
+ function check_if_active_page_exist() {
392
+ $selected_page_id = static::get_option( 'selected_page_id' );
393
+ if( $selected_page_id ) {
394
+ $post = get_post( $selected_page_id );
395
+ if( $post === null ) {
396
+ static::update_option( 'selected_page_id',null,null );
397
+ }
398
+ }
399
+ }
400
+
401
+ /**
402
+ * Get dashboard data
403
+ *
404
+ * @return array
405
+ */
406
+ public static
407
+ function get_dashboard_data() {
408
+ $license = [
409
+ 'plan' => csblocks_fs()->get_plan_name(),
410
+ 'can_use_premium_code' => csblocks_fs()->can_use_premium_code(),
411
+ 'is_trial' => csblocks_fs()->is_trial(),
412
+ 'is_free' => csblocks_fs()->is_not_paying(),
413
  ];
414
+
415
+ $DATA = [
416
+ 'all_pages' => static::get_all_pages(),
417
+ 'selected_page' => static::get_option( 'selected_page_id' ),
418
+ 'new_post_link' => get_admin_url( null, 'post-new.php?post_type=' . static::$PLUGIN_SLUG ),
419
+ 'license' => $license,
420
+ ];
421
+
422
+ return $DATA;
423
  }
424
  }
425
 
426
+ new Plugin();
lib/Utils.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin utilities functions.
4
  *
5
  * @package coming-soon-blocks
6
- * @version 1.1.0
7
  * @author Helder Vilela from Pixelthrone
8
  * @license GPL-3.0
9
  */
@@ -252,27 +252,28 @@ function compile_block_css( $blockID, $typo, $className ) {
252
  if (strpos($fontweight, 'regular') !== false) {
253
  $fontweight = 'normal';
254
  }
255
- return $fontweight;
256
  };
257
 
258
- $fontweight = $get_fontWeight( $typo->desktop->fontweight);
 
259
 
260
  $CSS[] = "main[data-blockid=\"{$blockID}\"] .-{$className} {
261
  font-family: {$typo->fontfamily};
262
  font-size: {$typo->desktop->fontsize}px;
263
- font-weight: {$fontweight};
264
- font-style: {$fontStyle};
265
  line-height: {$typo->desktop->lineheight}%;
266
  letter-spacing: {$typo->desktop->letterspacing}px;
267
  }";
268
 
269
- $fontweight = $get_fontWeight( $typo->mobile->fontweight);
270
 
271
  $CSS[] = "@media only screen and (max-width: 767px) {
272
  main[data-blockid=\"{$blockID}\"] .-{$className} {
273
  font-size: {$typo->mobile->fontsize}px;
274
- font-weight: {$fontweight};
275
- font-style: {$fontStyle};
276
  line-height: {$typo->mobile->lineheight}%;
277
  letter-spacing: {$typo->mobile->letterspacing}px;
278
  }
@@ -300,6 +301,23 @@ function page_css( $action, $CSS=null) {
300
  }
301
  }
302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  /**
304
  * Add page CSS
305
  *
3
  * Plugin utilities functions.
4
  *
5
  * @package coming-soon-blocks
6
+ * @version 1.2.0
7
  * @author Helder Vilela from Pixelthrone
8
  * @license GPL-3.0
9
  */
252
  if (strpos($fontweight, 'regular') !== false) {
253
  $fontweight = 'normal';
254
  }
255
+ return ['weight' => $fontweight, 'style' => $fontStyle];
256
  };
257
 
258
+
259
+ $fontStyle = $get_fontWeight( $typo->desktop->fontweight);
260
 
261
  $CSS[] = "main[data-blockid=\"{$blockID}\"] .-{$className} {
262
  font-family: {$typo->fontfamily};
263
  font-size: {$typo->desktop->fontsize}px;
264
+ font-weight: {$fontStyle['weight']};
265
+ font-style: {$fontStyle['style']};
266
  line-height: {$typo->desktop->lineheight}%;
267
  letter-spacing: {$typo->desktop->letterspacing}px;
268
  }";
269
 
270
+ $fontStyle = $get_fontWeight( $typo->mobile->fontweight);
271
 
272
  $CSS[] = "@media only screen and (max-width: 767px) {
273
  main[data-blockid=\"{$blockID}\"] .-{$className} {
274
  font-size: {$typo->mobile->fontsize}px;
275
+ font-weight: {$fontStyle['weight']};
276
+ font-style: {$fontStyle['style']};
277
  line-height: {$typo->mobile->lineheight}%;
278
  letter-spacing: {$typo->mobile->letterspacing}px;
279
  }
301
  }
302
  }
303
 
304
+ /**
305
+ * Get font variants
306
+ *
307
+ * @since 1.0.0
308
+ * @version 1.0
309
+ *
310
+ * @param $font
311
+ * @param $variants
312
+ *
313
+ * @return array
314
+ */
315
+ function get_font_variants( $variants, $font ) {
316
+ $variants = implode($variants, ',');
317
+ return $variants;
318
+ }
319
+
320
+
321
  /**
322
  * Add page CSS
323
  *
lib/freemius.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * @package Coming Soon Blocks
7
  * @author Helder Vilela from Pixelthrone
8
- * @link Helder Vilela from Pixelthrone_uri
9
  * @license GPL-3.0
10
  */
11
  // Create a helper function for easy SDK access.
@@ -35,7 +35,7 @@ if ( !function_exists( 'csblocks_fs' ) ) {
35
  'is_require_payment' => true,
36
  ),
37
  'menu' => array(
38
- 'slug' => 'edit.php?post_type=coming-soon-blocks',
39
  ),
40
  'is_live' => true,
41
  ) );
5
  *
6
  * @package Coming Soon Blocks
7
  * @author Helder Vilela from Pixelthrone
8
+ * @link htts://pixelthrone.com
9
  * @license GPL-3.0
10
  */
11
  // Create a helper function for easy SDK access.
35
  'is_require_payment' => true,
36
  ),
37
  'menu' => array(
38
+ 'slug' => 'coming-soon-blocks',
39
  ),
40
  'is_live' => true,
41
  ) );
lib/freemius/assets/img/coming-soon-blocks.png CHANGED
Binary file
lib/freemius/assets/img/mobile-menu.png DELETED
Binary file
lib/freemius/templates/powered-by.php CHANGED
@@ -35,24 +35,4 @@
35
  wp_enqueue_script( 'json2' );
36
  fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' );
37
  fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' );
38
- ?>
39
-
40
- <div id="pframe"></div>
41
- <script type="text/javascript">
42
- (function ($) {
43
- $(function () {
44
- var
45
- base_url = '<?php echo WP_FS__ADDRESS ?>',
46
- pframe = $('<i' + 'frame id="fs_promo_tab" src="' + base_url + '/promotional-tab/?<?php echo http_build_query($VARS) ?>#' + encodeURIComponent(document.location.href) + '" height="350" width="60" frameborder="0" style=" background: transparent; position: fixed; top: 20%; right: 0;" scrolling="no"></i' + 'frame>')
47
- .appendTo('#pframe');
48
-
49
- FS.PostMessage.init(base_url);
50
- FS.PostMessage.receive('state', function (state) {
51
- if ('closed' === state)
52
- $('#fs_promo_tab').css('width', '60px');
53
- else
54
- $('#fs_promo_tab').css('width', '345px');
55
- });
56
- });
57
- })(jQuery);
58
- </script>
35
  wp_enqueue_script( 'json2' );
36
  fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' );
37
  fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' );
38
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/dist/blocks.bundle.js CHANGED
@@ -1,9 +1,9 @@
1
- !function(t){var e={};function i(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)i.d(n,o,function(e){return t[e]}.bind(null,o));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=30)}([function(t,e){t.exports=React},function(t,e,i){var n,o;!function(a,s){n=[i(9)],void 0===(o=function(t){return function(t,e){"use strict";var i={extend:function(t,e){for(var i in e)t[i]=e[i];return t},modulo:function(t,e){return(t%e+e)%e}},n=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?n.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){var o=[];return(t=i.makeArray(t)).forEach(function(t){if(t instanceof HTMLElement)if(n){e(t,n)&&o.push(t);for(var i=t.querySelectorAll(n),a=0;a<i.length;a++)o.push(i[a])}else o.push(t)}),o},i.debounceMethod=function(t,e,i){i=i||100;var n=t.prototype[e],o=e+"Timeout";t.prototype[e]=function(){var t=this[o];clearTimeout(t);var e=arguments,a=this;this[o]=setTimeout(function(){n.apply(a,e),delete a[o]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var o=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var a=i.toDashed(n),s="data-"+a,r=document.querySelectorAll("["+s+"]"),l=document.querySelectorAll(".js-"+a),c=i.makeArray(r).concat(i.makeArray(l)),d=s+"-options",p=t.jQuery;c.forEach(function(t){var i,a=t.getAttribute(s)||t.getAttribute(d);try{i=a&&JSON.parse(a)}catch(e){return void(o&&o.error("Error parsing "+s+" on "+t.className+": "+e))}var r=new e(t,i);p&&p.data(t,n,r)})})},i}(a,t)}.apply(e,n))||(t.exports=o)}(window)},function(t,e,i){var n,o;!function(a,s){n=[i(3),i(4),i(1),i(10),i(11),i(12)],void 0===(o=function(t,e,i,n,o,s){return function(t,e,i,n,o,a,s){"use strict";var r=t.jQuery,l=t.getComputedStyle,c=t.console;function d(t,e){for(t=n.makeArray(t);t.length;)e.appendChild(t.shift())}var p=0,h={};function u(t,e){var i=n.getQueryElement(t);if(i){if(this.element=i,this.element.flickityGUID){var o=h[this.element.flickityGUID];return o.option(e),o}r&&(this.$element=r(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e),this._create()}else c&&c.error("Bad element for Flickity: "+(i||t))}u.defaults={accessibility:!0,cellAlign:"center",freeScrollFriction:.075,friction:.28,namespaceJQueryEvents:!0,percentPosition:!0,resize:!0,selectedAttraction:.025,setGallerySize:!0},u.createMethods=[];var m=u.prototype;n.extend(m,e.prototype),m._create=function(){var e=this.guid=++p;for(var i in this.element.flickityGUID=e,h[e]=this,this.selectedIndex=0,this.restingFrames=0,this.x=0,this.velocity=0,this.originSide=this.options.rightToLeft?"right":"left",this.viewport=document.createElement("div"),this.viewport.className="flickity-viewport",this._createSlider(),(this.options.resize||this.options.watchCSS)&&t.addEventListener("resize",this),this.options.on){var n=this.options.on[i];this.on(i,n)}u.createMethods.forEach(function(t){this[t]()},this),this.options.watchCSS?this.watchCSS():this.activate()},m.option=function(t){n.extend(this.options,t)},m.activate=function(){if(!this.isActive){this.isActive=!0,this.element.classList.add("flickity-enabled"),this.options.rightToLeft&&this.element.classList.add("flickity-rtl"),this.getSize();var t,e=this._filterFindCellElements(this.element.children);d(e,this.slider),this.viewport.appendChild(this.slider),this.element.appendChild(this.viewport),this.reloadCells(),this.options.accessibility&&(this.element.tabIndex=0,this.element.addEventListener("keydown",this)),this.emitEvent("activate");var i=this.options.initialIndex;t=this.isInitActivated?this.selectedIndex:void 0!==i&&this.cells[i]?i:0,this.select(t,!1,!0),this.isInitActivated=!0,this.dispatchEvent("ready")}},m._createSlider=function(){var t=document.createElement("div");t.className="flickity-slider",t.style[this.originSide]=0,this.slider=t},m._filterFindCellElements=function(t){return n.filterFindElements(t,this.options.cellSelector)},m.reloadCells=function(){this.cells=this._makeCells(this.slider.children),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize()},m._makeCells=function(t){var e=this._filterFindCellElements(t),i=e.map(function(t){return new o(t,this)},this);return i},m.getLastCell=function(){return this.cells[this.cells.length-1]},m.getLastSlide=function(){return this.slides[this.slides.length-1]},m.positionCells=function(){this._sizeCells(this.cells),this._positionCells(0)},m._positionCells=function(t){t=t||0,this.maxCellHeight=t&&this.maxCellHeight||0;var e=0;if(t>0){var i=this.cells[t-1];e=i.x+i.size.outerWidth}for(var n=this.cells.length,o=t;o<n;o++){var a=this.cells[o];a.setPosition(e),e+=a.size.outerWidth,this.maxCellHeight=Math.max(a.size.outerHeight,this.maxCellHeight)}this.slideableWidth=e,this.updateSlides(),this._containSlides(),this.slidesWidth=n?this.getLastSlide().target-this.slides[0].target:0},m._sizeCells=function(t){t.forEach(function(t){t.getSize()})},m.updateSlides=function(){if(this.slides=[],this.cells.length){var t=new a(this);this.slides.push(t);var e="left"==this.originSide,i=e?"marginRight":"marginLeft",n=this._getCanCellFit();this.cells.forEach(function(e,o){if(t.cells.length){var s=t.outerWidth-t.firstMargin+(e.size.outerWidth-e.size[i]);n.call(this,o,s)?t.addCell(e):(t.updateTarget(),t=new a(this),this.slides.push(t),t.addCell(e))}else t.addCell(e)},this),t.updateTarget(),this.updateSelectedSlide()}},m._getCanCellFit=function(){var t=this.options.groupCells;if(!t)return function(){return!1};if("number"==typeof t){var e=parseInt(t,10);return function(t){return t%e!=0}}var i="string"==typeof t&&t.match(/^(\d+)%$/),n=i?parseInt(i[1],10)/100:1;return function(t,e){return e<=(this.size.innerWidth+1)*n}},m._init=m.reposition=function(){this.positionCells(),this.positionSliderAtSelected()},m.getSize=function(){this.size=i(this.element),this.setCellAlign(),this.cursorPosition=this.size.innerWidth*this.cellAlign};var g={center:{left:.5,right:.5},left:{left:0,right:1},right:{right:0,left:1}};m.setCellAlign=function(){var t=g[this.options.cellAlign];this.cellAlign=t?t[this.originSide]:this.options.cellAlign},m.setGallerySize=function(){if(this.options.setGallerySize){var t=this.options.adaptiveHeight&&this.selectedSlide?this.selectedSlide.height:this.maxCellHeight;this.viewport.style.height=t+"px"}},m._getWrapShiftCells=function(){if(this.options.wrapAround){this._unshiftCells(this.beforeShiftCells),this._unshiftCells(this.afterShiftCells);var t=this.cursorPosition,e=this.cells.length-1;this.beforeShiftCells=this._getGapCells(t,e,-1),t=this.size.innerWidth-this.cursorPosition,this.afterShiftCells=this._getGapCells(t,0,1)}},m._getGapCells=function(t,e,i){for(var n=[];t>0;){var o=this.cells[e];if(!o)break;n.push(o),e+=i,t-=o.size.outerWidth}return n},m._containSlides=function(){if(this.options.contain&&!this.options.wrapAround&&this.cells.length){var t=this.options.rightToLeft,e=t?"marginRight":"marginLeft",i=t?"marginLeft":"marginRight",n=this.slideableWidth-this.getLastCell().size[i],o=n<this.size.innerWidth,a=this.cursorPosition+this.cells[0].size[e],s=n-this.size.innerWidth*(1-this.cellAlign);this.slides.forEach(function(t){o?t.target=n*this.cellAlign:(t.target=Math.max(t.target,a),t.target=Math.min(t.target,s))},this)}},m.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),r&&this.$element){var o=t+=this.options.namespaceJQueryEvents?".flickity":"";if(e){var a=r.Event(e);a.type=t,o=a}this.$element.trigger(o,i)}},m.select=function(t,e,i){if(this.isActive&&(t=parseInt(t,10),this._wrapSelect(t),(this.options.wrapAround||e)&&(t=n.modulo(t,this.slides.length)),this.slides[t])){var o=this.selectedIndex;this.selectedIndex=t,this.updateSelectedSlide(),i?this.positionSliderAtSelected():this.startAnimation(),this.options.adaptiveHeight&&this.setGallerySize(),this.dispatchEvent("select",null,[t]),t!=o&&this.dispatchEvent("change",null,[t]),this.dispatchEvent("cellSelect")}},m._wrapSelect=function(t){var e=this.slides.length;if(!(this.options.wrapAround&&e>1))return t;var i=n.modulo(t,e),o=Math.abs(i-this.selectedIndex),a=Math.abs(i+e-this.selectedIndex),s=Math.abs(i-e-this.selectedIndex);!this.isDragSelect&&a<o?t+=e:!this.isDragSelect&&s<o&&(t-=e),t<0?this.x-=this.slideableWidth:t>=e&&(this.x+=this.slideableWidth)},m.previous=function(t,e){this.select(this.selectedIndex-1,t,e)},m.next=function(t,e){this.select(this.selectedIndex+1,t,e)},m.updateSelectedSlide=function(){var t=this.slides[this.selectedIndex];t&&(this.unselectSelectedSlide(),this.selectedSlide=t,t.select(),this.selectedCells=t.cells,this.selectedElements=t.getCellElements(),this.selectedCell=t.cells[0],this.selectedElement=this.selectedElements[0])},m.unselectSelectedSlide=function(){this.selectedSlide&&this.selectedSlide.unselect()},m.selectCell=function(t,e,i){var n=this.queryCell(t);if(n){var o=this.getCellSlideIndex(n);this.select(o,e,i)}},m.getCellSlideIndex=function(t){for(var e=0;e<this.slides.length;e++)if(-1!=this.slides[e].cells.indexOf(t))return e},m.getCell=function(t){for(var e=0;e<this.cells.length;e++){var i=this.cells[e];if(i.element==t)return i}},m.getCells=function(t){var e=[];return(t=n.makeArray(t)).forEach(function(t){var i=this.getCell(t);i&&e.push(i)},this),e},m.getCellElements=function(){return this.cells.map(function(t){return t.element})},m.getParentCell=function(t){var e=this.getCell(t);return e||(t=n.getParent(t,".flickity-slider > *"),this.getCell(t))},m.getAdjacentCellElements=function(t,e){if(!t)return this.selectedSlide.getCellElements();e=void 0===e?this.selectedIndex:e;var i=this.slides.length;if(1+2*t>=i)return this.getCellElements();for(var o=[],a=e-t;a<=e+t;a++){var s=this.options.wrapAround?n.modulo(a,i):a,r=this.slides[s];r&&(o=o.concat(r.getCellElements()))}return o},m.queryCell=function(t){return"number"==typeof t?this.cells[t]:("string"==typeof t&&(t=this.element.querySelector(t)),this.getCell(t))},m.uiChange=function(){this.emitEvent("uiChange")},m.childUIPointerDown=function(t){this.emitEvent("childUIPointerDown",[t])},m.onresize=function(){this.watchCSS(),this.resize()},n.debounceMethod(u,"onresize",150),m.resize=function(){if(this.isActive){this.getSize(),this.options.wrapAround&&(this.x=n.modulo(this.x,this.slideableWidth)),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize(),this.emitEvent("resize");var t=this.selectedElements&&this.selectedElements[0];this.selectCell(t,!1,!0)}},m.watchCSS=function(){this.options.watchCSS&&(-1!=l(this.element,":after").content.indexOf("flickity")?this.activate():this.deactivate())},m.onkeydown=function(t){var e=document.activeElement&&document.activeElement!=this.element;if(this.options.accessibility&&!e){var i=u.keyboardHandlers[t.keyCode];i&&i.call(this)}},u.keyboardHandlers={37:function(){var t=this.options.rightToLeft?"next":"previous";this.uiChange(),this[t]()},39:function(){var t=this.options.rightToLeft?"previous":"next";this.uiChange(),this[t]()}},m.focus=function(){var e=t.pageYOffset;this.element.focus({preventScroll:!0}),t.pageYOffset!=e&&t.scrollTo(t.pageXOffset,e)},m.deactivate=function(){this.isActive&&(this.element.classList.remove("flickity-enabled"),this.element.classList.remove("flickity-rtl"),this.unselectSelectedSlide(),this.cells.forEach(function(t){t.destroy()}),this.element.removeChild(this.viewport),d(this.slider.children,this.element),this.options.accessibility&&(this.element.removeAttribute("tabIndex"),this.element.removeEventListener("keydown",this)),this.isActive=!1,this.emitEvent("deactivate"))},m.destroy=function(){this.deactivate(),t.removeEventListener("resize",this),this.emitEvent("destroy"),r&&this.$element&&r.removeData(this.element,"flickity"),delete this.element.flickityGUID,delete h[this.guid]},n.extend(m,s),u.data=function(t){var e=(t=n.getQueryElement(t))&&t.flickityGUID;return e&&h[e]},n.htmlInit(u,"flickity"),r&&r.bridget&&r.bridget("flickity",u);return u.setJQuery=function(t){r=t},u.Cell=o,u}(a,t,e,i,n,o,s)}.apply(e,n))||(t.exports=o)}(window)},function(t,e,i){var n,o;"undefined"!=typeof window&&window,void 0===(o="function"==typeof(n=function(){"use strict";function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{};return(i[t]=i[t]||{})[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var n=this._onceEvents&&this._onceEvents[t],o=0;o<i.length;o++){var a=i[o];n&&n[a]&&(this.off(t,a),delete n[a]),a.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t})?n.call(e,i,e,t):n)||(t.exports=o)},function(t,e,i){var n,o;
2
  /*!
3
  * getSize v2.0.3
4
  * measure size of elements
5
  * MIT license
6
- */window,void 0===(o="function"==typeof(n=function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}var e="undefined"==typeof console?function(){}:function(t){console.error(t)},i=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],n=i.length;function o(t){var i=getComputedStyle(t);return i||e("Style returned "+i+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),i}var a,s=!1;function r(e){if(function(){if(!s){s=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=o(e);a=200==Math.round(t(n.width)),r.isBoxSizeOuter=a,i.removeChild(e)}}(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var l=o(e);if("none"==l.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<n;e++){var o=i[e];t[o]=0}return t}();var c={};c.width=e.offsetWidth,c.height=e.offsetHeight;for(var d=c.isBorderBox="border-box"==l.boxSizing,p=0;p<n;p++){var h=i[p],u=l[h],m=parseFloat(u);c[h]=isNaN(m)?0:m}var g=c.paddingLeft+c.paddingRight,f=c.paddingTop+c.paddingBottom,v=c.marginLeft+c.marginRight,y=c.marginTop+c.marginBottom,b=c.borderLeftWidth+c.borderRightWidth,E=c.borderTopWidth+c.borderBottomWidth,k=d&&a,x=t(l.width);!1!==x&&(c.width=x+(k?0:g+b));var w=t(l.height);return!1!==w&&(c.height=w+(k?0:f+E)),c.innerWidth=c.width-(g+b),c.innerHeight=c.height-(f+E),c.outerWidth=c.width+v,c.outerHeight=c.height+y,c}}return r})?n.call(e,i,e,t):n)||(t.exports=o)},function(t,e,i){var n,o;
7
  /*!
8
  * Unipointer v2.3.0
9
  * base class for doing one thing with pointer event
@@ -14,7 +14,7 @@
14
  * base class for doing one thing with pointer event
15
  * MIT license
16
  */
17
- !function(a,s){n=[i(3)],void 0===(o=function(t){return function(t,e){"use strict";function i(){}var n=i.prototype=Object.create(e.prototype);n.bindStartEvent=function(t){this._bindStartEvent(t,!0)},n.unbindStartEvent=function(t){this._bindStartEvent(t,!1)},n._bindStartEvent=function(e,i){var n=(i=void 0===i||i)?"addEventListener":"removeEventListener",o="mousedown";t.PointerEvent?o="pointerdown":"ontouchstart"in t&&(o="touchstart"),e[n](o,this)},n.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},n.getTouch=function(t){for(var e=0;e<t.length;e++){var i=t[e];if(i.identifier==this.pointerIdentifier)return i}},n.onmousedown=function(t){var e=t.button;e&&0!==e&&1!==e||this._pointerDown(t,t)},n.ontouchstart=function(t){this._pointerDown(t,t.changedTouches[0])},n.onpointerdown=function(t){this._pointerDown(t,t)},n._pointerDown=function(t,e){t.button||this.isPointerDown||(this.isPointerDown=!0,this.pointerIdentifier=void 0!==e.pointerId?e.pointerId:e.identifier,this.pointerDown(t,e))},n.pointerDown=function(t,e){this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e])};var o={mousedown:["mousemove","mouseup"],touchstart:["touchmove","touchend","touchcancel"],pointerdown:["pointermove","pointerup","pointercancel"]};return n._bindPostStartEvents=function(e){if(e){var i=o[e.type];i.forEach(function(e){t.addEventListener(e,this)},this),this._boundPointerEvents=i}},n._unbindPostStartEvents=function(){this._boundPointerEvents&&(this._boundPointerEvents.forEach(function(e){t.removeEventListener(e,this)},this),delete this._boundPointerEvents)},n.onmousemove=function(t){this._pointerMove(t,t)},n.onpointermove=function(t){t.pointerId==this.pointerIdentifier&&this._pointerMove(t,t)},n.ontouchmove=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerMove(t,e)},n._pointerMove=function(t,e){this.pointerMove(t,e)},n.pointerMove=function(t,e){this.emitEvent("pointerMove",[t,e])},n.onmouseup=function(t){this._pointerUp(t,t)},n.onpointerup=function(t){t.pointerId==this.pointerIdentifier&&this._pointerUp(t,t)},n.ontouchend=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerUp(t,e)},n._pointerUp=function(t,e){this._pointerDone(),this.pointerUp(t,e)},n.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e])},n._pointerDone=function(){this._pointerReset(),this._unbindPostStartEvents(),this.pointerDone()},n._pointerReset=function(){this.isPointerDown=!1,delete this.pointerIdentifier},n.pointerDone=function(){},n.onpointercancel=function(t){t.pointerId==this.pointerIdentifier&&this._pointerCancel(t,t)},n.ontouchcancel=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerCancel(t,e)},n._pointerCancel=function(t,e){this._pointerDone(),this.pointerCancel(t,e)},n.pointerCancel=function(t,e){this.emitEvent("pointerCancel",[t,e])},i.getPointerPoint=function(t){return{x:t.pageX,y:t.pageY}},i}(a,t)}.apply(e,n))||(t.exports=o)}(window)},function(t,e,i){var n,o;
18
  /*!
19
  * Tap listener v2.0.0
20
  * listens to taps
@@ -25,7 +25,7 @@
25
  * listens to taps
26
  * MIT license
27
  */
28
- !function(a,s){n=[i(5)],void 0===(o=function(t){return function(t,e){"use strict";function i(t){this.bindTap(t)}var n=i.prototype=Object.create(e.prototype);return n.bindTap=function(t){t&&(this.unbindTap(),this.tapElement=t,this._bindStartEvent(t,!0))},n.unbindTap=function(){this.tapElement&&(this._bindStartEvent(this.tapElement,!0),delete this.tapElement)},n.pointerUp=function(i,n){if(!this.isIgnoringMouseUp||"mouseup"!=i.type){var o=e.getPointerPoint(n),a=this.tapElement.getBoundingClientRect(),s=t.pageXOffset,r=t.pageYOffset;if(o.x>=a.left+s&&o.x<=a.right+s&&o.y>=a.top+r&&o.y<=a.bottom+r&&this.emitEvent("tap",[i,n]),"mouseup"!=i.type){this.isIgnoringMouseUp=!0;var l=this;setTimeout(function(){delete l.isIgnoringMouseUp},400)}}},n.destroy=function(){this.pointerDone(),this.unbindTap()},i}(a,t)}.apply(e,n))||(t.exports=o)}(window)},function(t){t.exports=[{name:"pixelthrone/comingsoon--temp-01",slug:"temp-01",thumb:{name:"01",img:"/admin/blocks/_available/temp-01/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-03",slug:"temp-03",thumb:{name:"03",img:"/admin/blocks/_available/temp-03/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-04",slug:"temp-04",thumb:{name:"04",img:"/admin/blocks/_available/temp-04/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-05",slug:"temp-05",thumb:{name:"05",img:"/admin/blocks/_available/temp-05/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-02",slug:"temp-02",thumb:{name:"02",img:"/admin/blocks/_available/temp-02/media/thumb.jpg"},script:"",render_callback:!0}]},function(t,e,i){var n,o,a;
29
  /*!
30
  * Flickity v2.1.2
31
  * Touch, responsive, flickable carousels
@@ -35,7 +35,7 @@
35
  *
36
  * https://flickity.metafizzy.co
37
  * Copyright 2015-2018 Metafizzy
38
- */window,o=[i(2),i(13),i(15),i(16),i(17),i(18),i(19)],void 0===(a="function"==typeof(n=function(t){return t})?n.apply(e,o):n)||(t.exports=a)},function(t,e,i){var n,o;!function(a,s){"use strict";void 0===(o="function"==typeof(n=s)?n.call(e,i,e,t):n)||(t.exports=o)}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i]+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}})},function(t,e,i){var n,o;window,n=[i(4)],void 0===(o=function(t){return function(t,e){"use strict";function i(t,e){this.element=t,this.parent=e,this.create()}var n=i.prototype;return n.create=function(){this.element.style.position="absolute",this.element.setAttribute("aria-selected","false"),this.x=0,this.shift=0},n.destroy=function(){this.element.style.position="";var t=this.parent.originSide;this.element.removeAttribute("aria-selected"),this.element.style[t]=""},n.getSize=function(){this.size=e(this.element)},n.setPosition=function(t){this.x=t,this.updateTarget(),this.renderPosition(t)},n.updateTarget=n.setDefaultTarget=function(){var t="left"==this.parent.originSide?"marginLeft":"marginRight";this.target=this.x+this.size[t]+this.size.width*this.parent.cellAlign},n.renderPosition=function(t){var e=this.parent.originSide;this.element.style[e]=this.parent.getPositionValue(t)},n.wrapShift=function(t){this.shift=t,this.renderPosition(this.x+this.parent.slideableWidth*t)},n.remove=function(){this.element.parentNode.removeChild(this.element)},i}(0,t)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;window,void 0===(o="function"==typeof(n=function(){"use strict";function t(t){this.parent=t,this.isOriginLeft="left"==t.originSide,this.cells=[],this.outerWidth=0,this.height=0}var e=t.prototype;return e.addCell=function(t){if(this.cells.push(t),this.outerWidth+=t.size.outerWidth,this.height=Math.max(t.size.outerHeight,this.height),1==this.cells.length){this.x=t.x;var e=this.isOriginLeft?"marginLeft":"marginRight";this.firstMargin=t.size[e]}},e.updateTarget=function(){var t=this.isOriginLeft?"marginRight":"marginLeft",e=this.getLastCell(),i=e?e.size[t]:0,n=this.outerWidth-(this.firstMargin+i);this.target=this.x+this.firstMargin+n*this.parent.cellAlign},e.getLastCell=function(){return this.cells[this.cells.length-1]},e.select=function(){this.changeSelected(!0)},e.unselect=function(){this.changeSelected(!1)},e.changeSelected=function(t){var e=t?"add":"remove";this.cells.forEach(function(i){i.element.classList[e]("is-selected"),i.element.setAttribute("aria-selected",t.toString())})},e.getCellElements=function(){return this.cells.map(function(t){return t.element})},t})?n.call(e,i,e,t):n)||(t.exports=o)},function(t,e,i){var n,o;window,n=[i(1)],void 0===(o=function(t){return function(t,e){"use strict";var i={startAnimation:function(){this.isAnimating||(this.isAnimating=!0,this.restingFrames=0,this.animate())},animate:function(){this.applyDragForce(),this.applySelectedAttraction();var t=this.x;if(this.integratePhysics(),this.positionSlider(),this.settle(t),this.isAnimating){var e=this;requestAnimationFrame(function(){e.animate()})}},positionSlider:function(){var t=this.x;this.options.wrapAround&&this.cells.length>1&&(t=e.modulo(t,this.slideableWidth),t-=this.slideableWidth,this.shiftWrapCells(t)),t+=this.cursorPosition,t=this.options.rightToLeft?-t:t;var i=this.getPositionValue(t);this.slider.style.transform=this.isAnimating?"translate3d("+i+",0,0)":"translateX("+i+")";var n=this.slides[0];if(n){var o=-this.x-n.target,a=o/this.slidesWidth;this.dispatchEvent("scroll",null,[a,o])}},positionSliderAtSelected:function(){this.cells.length&&(this.x=-this.selectedSlide.target,this.velocity=0,this.positionSlider())},getPositionValue:function(t){return this.options.percentPosition?.01*Math.round(t/this.size.innerWidth*1e4)+"%":Math.round(t)+"px"},settle:function(t){this.isPointerDown||Math.round(100*this.x)!=Math.round(100*t)||this.restingFrames++,this.restingFrames>2&&(this.isAnimating=!1,delete this.isFreeScrolling,this.positionSlider(),this.dispatchEvent("settle",null,[this.selectedIndex]))},shiftWrapCells:function(t){var e=this.cursorPosition+t;this._shiftCells(this.beforeShiftCells,e,-1);var i=this.size.innerWidth-(t+this.slideableWidth+this.cursorPosition);this._shiftCells(this.afterShiftCells,i,1)},_shiftCells:function(t,e,i){for(var n=0;n<t.length;n++){var o=t[n],a=e>0?i:0;o.wrapShift(a),e-=o.size.outerWidth}},_unshiftCells:function(t){if(t&&t.length)for(var e=0;e<t.length;e++)t[e].wrapShift(0)},integratePhysics:function(){this.x+=this.velocity,this.velocity*=this.getFrictionFactor()},applyForce:function(t){this.velocity+=t},getFrictionFactor:function(){return 1-this.options[this.isFreeScrolling?"freeScrollFriction":"friction"]},getRestingPosition:function(){return this.x+this.velocity/(1-this.getFrictionFactor())},applyDragForce:function(){if(this.isDraggable&&this.isPointerDown){var t=this.dragX-this.x-this.velocity;this.applyForce(t)}},applySelectedAttraction:function(){if((!this.isDraggable||!this.isPointerDown)&&!this.isFreeScrolling&&this.slides.length){var t=(-1*this.selectedSlide.target-this.x)*this.options.selectedAttraction;this.applyForce(t)}}};return i}(0,t)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;!function(a,s){n=[i(2),i(14),i(1)],void 0===(o=function(t,e,i){return function(t,e,i,n){"use strict";n.extend(e.defaults,{draggable:">1",dragThreshold:3}),e.createMethods.push("_createDrag");var o=e.prototype;n.extend(o,i.prototype),o._touchActionValue="pan-y";var a="createTouch"in document,s=!1;o._createDrag=function(){this.on("activate",this.onActivateDrag),this.on("uiChange",this._uiChangeDrag),this.on("childUIPointerDown",this._childUIPointerDownDrag),this.on("deactivate",this.onDeactivateDrag),this.on("cellChange",this.updateDraggable),a&&!s&&(t.addEventListener("touchmove",function(){}),s=!0)},o.onActivateDrag=function(){this.handles=[this.viewport],this.bindHandles(),this.updateDraggable()},o.onDeactivateDrag=function(){this.unbindHandles(),this.element.classList.remove("is-draggable")},o.updateDraggable=function(){">1"==this.options.draggable?this.isDraggable=this.slides.length>1:this.isDraggable=this.options.draggable,this.isDraggable?this.element.classList.add("is-draggable"):this.element.classList.remove("is-draggable")},o.bindDrag=function(){this.options.draggable=!0,this.updateDraggable()},o.unbindDrag=function(){this.options.draggable=!1,this.updateDraggable()},o._uiChangeDrag=function(){delete this.isFreeScrolling},o._childUIPointerDownDrag=function(t){t.preventDefault(),this.pointerDownFocus(t)},o.pointerDown=function(e,i){if(this.isDraggable){var n=this.okayPointerDown(e);n&&(this._pointerDownPreventDefault(e),this.pointerDownFocus(e),document.activeElement!=this.element&&this.pointerDownBlur(),this.dragX=this.x,this.viewport.classList.add("is-pointer-down"),this.pointerDownScroll=l(),t.addEventListener("scroll",this),this._pointerDownDefault(e,i))}else this._pointerDownDefault(e,i)},o._pointerDownDefault=function(t,e){this.pointerDownPointer=e,this._bindPostStartEvents(t),this.dispatchEvent("pointerDown",t,[e])};var r={INPUT:!0,TEXTAREA:!0,SELECT:!0};function l(){return{x:t.pageXOffset,y:t.pageYOffset}}return o.pointerDownFocus=function(t){r[t.target.nodeName]||this.focus()},o._pointerDownPreventDefault=function(t){var e="touchstart"==t.type,i="touch"==t.pointerType,n=r[t.target.nodeName];e||i||n||t.preventDefault()},o.hasDragStarted=function(t){return Math.abs(t.x)>this.options.dragThreshold},o.pointerUp=function(t,e){delete this.isTouchScrolling,this.viewport.classList.remove("is-pointer-down"),this.dispatchEvent("pointerUp",t,[e]),this._dragPointerUp(t,e)},o.pointerDone=function(){t.removeEventListener("scroll",this),delete this.pointerDownScroll},o.dragStart=function(e,i){this.isDraggable&&(this.dragStartPosition=this.x,this.startAnimation(),t.removeEventListener("scroll",this),this.dispatchEvent("dragStart",e,[i]))},o.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.dispatchEvent("pointerMove",t,[e,i]),this._dragMove(t,e,i)},o.dragMove=function(t,e,i){if(this.isDraggable){t.preventDefault(),this.previousDragX=this.dragX;var n=this.options.rightToLeft?-1:1;this.options.wrapAround&&(i.x=i.x%this.slideableWidth);var o=this.dragStartPosition+i.x*n;if(!this.options.wrapAround&&this.slides.length){var a=Math.max(-this.slides[0].target,this.dragStartPosition);o=o>a?.5*(o+a):o;var s=Math.min(-this.getLastSlide().target,this.dragStartPosition);o=o<s?.5*(o+s):o}this.dragX=o,this.dragMoveTime=new Date,this.dispatchEvent("dragMove",t,[e,i])}},o.dragEnd=function(t,e){if(this.isDraggable){this.options.freeScroll&&(this.isFreeScrolling=!0);var i=this.dragEndRestingSelect();if(this.options.freeScroll&&!this.options.wrapAround){var n=this.getRestingPosition();this.isFreeScrolling=-n>this.slides[0].target&&-n<this.getLastSlide().target}else this.options.freeScroll||i!=this.selectedIndex||(i+=this.dragEndBoostSelect());delete this.previousDragX,this.isDragSelect=this.options.wrapAround,this.select(i),delete this.isDragSelect,this.dispatchEvent("dragEnd",t,[e])}},o.dragEndRestingSelect=function(){var t=this.getRestingPosition(),e=Math.abs(this.getSlideDistance(-t,this.selectedIndex)),i=this._getClosestResting(t,e,1),n=this._getClosestResting(t,e,-1);return i.distance<n.distance?i.index:n.index},o._getClosestResting=function(t,e,i){for(var n=this.selectedIndex,o=1/0,a=this.options.contain&&!this.options.wrapAround?function(t,e){return t<=e}:function(t,e){return t<e};a(e,o)&&(n+=i,o=e,null!==(e=this.getSlideDistance(-t,n)));)e=Math.abs(e);return{distance:o,index:n-i}},o.getSlideDistance=function(t,e){var i=this.slides.length,o=this.options.wrapAround&&i>1,a=o?n.modulo(e,i):e,s=this.slides[a];if(!s)return null;var r=o?this.slideableWidth*Math.floor(e/i):0;return t-(s.target+r)},o.dragEndBoostSelect=function(){if(void 0===this.previousDragX||!this.dragMoveTime||new Date-this.dragMoveTime>100)return 0;var t=this.getSlideDistance(-this.dragX,this.selectedIndex),e=this.previousDragX-this.dragX;return t>0&&e>0?1:t<0&&e<0?-1:0},o.staticClick=function(t,e){var i=this.getParentCell(t.target),n=i&&i.element,o=i&&this.cells.indexOf(i);this.dispatchEvent("staticClick",t,[e,n,o])},o.onscroll=function(){var t=l(),e=this.pointerDownScroll.x-t.x,i=this.pointerDownScroll.y-t.y;(Math.abs(e)>3||Math.abs(i)>3)&&this._pointerDone()},e}(a,t,e,i)}.apply(e,n))||(t.exports=o)}(window)},function(t,e,i){var n,o;
39
  /*!
40
  * Unidragger v2.3.0
41
  * Draggable base class
@@ -46,7 +46,7 @@
46
  * Draggable base class
47
  * MIT license
48
  */
49
- !function(a,s){n=[i(5)],void 0===(o=function(t){return function(t,e){"use strict";function i(){}var n=i.prototype=Object.create(e.prototype);n.bindHandles=function(){this._bindHandles(!0)},n.unbindHandles=function(){this._bindHandles(!1)},n._bindHandles=function(e){for(var i=(e=void 0===e||e)?"addEventListener":"removeEventListener",n=e?this._touchActionValue:"",o=0;o<this.handles.length;o++){var a=this.handles[o];this._bindStartEvent(a,e),a[i]("click",this),t.PointerEvent&&(a.style.touchAction=n)}},n._touchActionValue="none",n.pointerDown=function(t,e){var i=this.okayPointerDown(t);i&&(this.pointerDownPointer=e,t.preventDefault(),this.pointerDownBlur(),this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e]))};var o={TEXTAREA:!0,INPUT:!0,SELECT:!0,OPTION:!0},a={radio:!0,checkbox:!0,button:!0,submit:!0,image:!0,file:!0};return n.okayPointerDown=function(t){var e=o[t.target.nodeName],i=a[t.target.type],n=!e||i;return n||this._pointerReset(),n},n.pointerDownBlur=function(){var t=document.activeElement;t&&t.blur&&t!=document.body&&t.blur()},n.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.emitEvent("pointerMove",[t,e,i]),this._dragMove(t,e,i)},n._dragPointerMove=function(t,e){var i={x:e.pageX-this.pointerDownPointer.pageX,y:e.pageY-this.pointerDownPointer.pageY};return!this.isDragging&&this.hasDragStarted(i)&&this._dragStart(t,e),i},n.hasDragStarted=function(t){return Math.abs(t.x)>3||Math.abs(t.y)>3},n.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e]),this._dragPointerUp(t,e)},n._dragPointerUp=function(t,e){this.isDragging?this._dragEnd(t,e):this._staticClick(t,e)},n._dragStart=function(t,e){this.isDragging=!0,this.isPreventingClicks=!0,this.dragStart(t,e)},n.dragStart=function(t,e){this.emitEvent("dragStart",[t,e])},n._dragMove=function(t,e,i){this.isDragging&&this.dragMove(t,e,i)},n.dragMove=function(t,e,i){t.preventDefault(),this.emitEvent("dragMove",[t,e,i])},n._dragEnd=function(t,e){this.isDragging=!1,setTimeout(function(){delete this.isPreventingClicks}.bind(this)),this.dragEnd(t,e)},n.dragEnd=function(t,e){this.emitEvent("dragEnd",[t,e])},n.onclick=function(t){this.isPreventingClicks&&t.preventDefault()},n._staticClick=function(t,e){this.isIgnoringMouseUp&&"mouseup"==t.type||(this.staticClick(t,e),"mouseup"!=t.type&&(this.isIgnoringMouseUp=!0,setTimeout(function(){delete this.isIgnoringMouseUp}.bind(this),400)))},n.staticClick=function(t,e){this.emitEvent("staticClick",[t,e])},i.getPointerPoint=e.getPointerPoint,i}(a,t)}.apply(e,n))||(t.exports=o)}(window)},function(t,e,i){var n,o;window,n=[i(2),i(6),i(1)],void 0===(o=function(t,e,i){return function(t,e,i,n){"use strict";var o="http://www.w3.org/2000/svg";function a(t,e){this.direction=t,this.parent=e,this._create()}a.prototype=Object.create(i.prototype),a.prototype._create=function(){this.isEnabled=!0,this.isPrevious=-1==this.direction;var t=this.parent.options.rightToLeft?1:-1;this.isLeft=this.direction==t;var e=this.element=document.createElement("button");e.className="flickity-button flickity-prev-next-button",e.className+=this.isPrevious?" previous":" next",e.setAttribute("type","button"),this.disable(),e.setAttribute("aria-label",this.isPrevious?"Previous":"Next");var i=this.createSVG();e.appendChild(i),this.on("tap",this.onTap),this.parent.on("select",this.update.bind(this)),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},a.prototype.activate=function(){this.bindTap(this.element),this.element.addEventListener("click",this),this.parent.element.appendChild(this.element)},a.prototype.deactivate=function(){this.parent.element.removeChild(this.element),i.prototype.destroy.call(this),this.element.removeEventListener("click",this)},a.prototype.createSVG=function(){var t=document.createElementNS(o,"svg");t.setAttribute("class","flickity-button-icon"),t.setAttribute("viewBox","0 0 100 100");var e=document.createElementNS(o,"path"),i=function(t){return"string"==typeof t?t:"M "+t.x0+",50 L "+t.x1+","+(t.y1+50)+" L "+t.x2+","+(t.y2+50)+" L "+t.x3+",50 L "+t.x2+","+(50-t.y2)+" L "+t.x1+","+(50-t.y1)+" Z"}(this.parent.options.arrowShape);return e.setAttribute("d",i),e.setAttribute("class","arrow"),this.isLeft||e.setAttribute("transform","translate(100, 100) rotate(180) "),t.appendChild(e),t},a.prototype.onTap=function(){if(this.isEnabled){this.parent.uiChange();var t=this.isPrevious?"previous":"next";this.parent[t]()}},a.prototype.handleEvent=n.handleEvent,a.prototype.onclick=function(t){var e=document.activeElement;e&&e==this.element&&this.onTap(t,t)},a.prototype.enable=function(){this.isEnabled||(this.element.disabled=!1,this.isEnabled=!0)},a.prototype.disable=function(){this.isEnabled&&(this.element.disabled=!0,this.isEnabled=!1)},a.prototype.update=function(){var t=this.parent.slides;if(this.parent.options.wrapAround&&t.length>1)this.enable();else{var e=t.length?t.length-1:0,i=this.isPrevious?0:e,n=this.parent.selectedIndex==i?"disable":"enable";this[n]()}},a.prototype.destroy=function(){this.deactivate()},n.extend(e.defaults,{prevNextButtons:!0,arrowShape:{x0:10,x1:60,y1:50,x2:70,y2:40,x3:30}}),e.createMethods.push("_createPrevNextButtons");var s=e.prototype;return s._createPrevNextButtons=function(){this.options.prevNextButtons&&(this.prevButton=new a(-1,this),this.nextButton=new a(1,this),this.on("activate",this.activatePrevNextButtons))},s.activatePrevNextButtons=function(){this.prevButton.activate(),this.nextButton.activate(),this.on("deactivate",this.deactivatePrevNextButtons)},s.deactivatePrevNextButtons=function(){this.prevButton.deactivate(),this.nextButton.deactivate(),this.off("deactivate",this.deactivatePrevNextButtons)},e.PrevNextButton=a,e}(0,t,e,i)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;window,n=[i(2),i(6),i(1)],void 0===(o=function(t,e,i){return function(t,e,i,n){"use strict";function o(t){this.parent=t,this._create()}o.prototype=new i,o.prototype._create=function(){this.holder=document.createElement("ol"),this.holder.className="flickity-page-dots",this.dots=[],this.on("tap",this.onTap),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},o.prototype.activate=function(){this.setDots(),this.bindTap(this.holder),this.parent.element.appendChild(this.holder)},o.prototype.deactivate=function(){this.parent.element.removeChild(this.holder),i.prototype.destroy.call(this)},o.prototype.setDots=function(){var t=this.parent.slides.length-this.dots.length;t>0?this.addDots(t):t<0&&this.removeDots(-t)},o.prototype.addDots=function(t){for(var e=document.createDocumentFragment(),i=[],n=this.dots.length,o=n+t,a=n;a<o;a++){var s=document.createElement("li");s.className="dot",s.setAttribute("aria-label","Page dot "+(a+1)),e.appendChild(s),i.push(s)}this.holder.appendChild(e),this.dots=this.dots.concat(i)},o.prototype.removeDots=function(t){var e=this.dots.splice(this.dots.length-t,t);e.forEach(function(t){this.holder.removeChild(t)},this)},o.prototype.updateSelected=function(){this.selectedDot&&(this.selectedDot.className="dot",this.selectedDot.removeAttribute("aria-current")),this.dots.length&&(this.selectedDot=this.dots[this.parent.selectedIndex],this.selectedDot.className="dot is-selected",this.selectedDot.setAttribute("aria-current","step"))},o.prototype.onTap=function(t){var e=t.target;if("LI"==e.nodeName){this.parent.uiChange();var i=this.dots.indexOf(e);this.parent.select(i)}},o.prototype.destroy=function(){this.deactivate()},e.PageDots=o,n.extend(e.defaults,{pageDots:!0}),e.createMethods.push("_createPageDots");var a=e.prototype;return a._createPageDots=function(){this.options.pageDots&&(this.pageDots=new o(this),this.on("activate",this.activatePageDots),this.on("select",this.updateSelectedPageDots),this.on("cellChange",this.updatePageDots),this.on("resize",this.updatePageDots),this.on("deactivate",this.deactivatePageDots))},a.activatePageDots=function(){this.pageDots.activate()},a.updateSelectedPageDots=function(){this.pageDots.updateSelected()},a.updatePageDots=function(){this.pageDots.setDots()},a.deactivatePageDots=function(){this.pageDots.deactivate()},e.PageDots=o,e}(0,t,e,i)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;window,n=[i(3),i(1),i(2)],void 0===(o=function(t,e,i){return function(t,e,i){"use strict";function n(t){this.parent=t,this.state="stopped",this.onVisibilityChange=this.visibilityChange.bind(this),this.onVisibilityPlay=this.visibilityPlay.bind(this)}n.prototype=Object.create(t.prototype),n.prototype.play=function(){if("playing"!=this.state){var t=document.hidden;t?document.addEventListener("visibilitychange",this.onVisibilityPlay):(this.state="playing",document.addEventListener("visibilitychange",this.onVisibilityChange),this.tick())}},n.prototype.tick=function(){if("playing"==this.state){var t=this.parent.options.autoPlay;t="number"==typeof t?t:3e3;var e=this;this.clear(),this.timeout=setTimeout(function(){e.parent.next(!0),e.tick()},t)}},n.prototype.stop=function(){this.state="stopped",this.clear(),document.removeEventListener("visibilitychange",this.onVisibilityChange)},n.prototype.clear=function(){clearTimeout(this.timeout)},n.prototype.pause=function(){"playing"==this.state&&(this.state="paused",this.clear())},n.prototype.unpause=function(){"paused"==this.state&&this.play()},n.prototype.visibilityChange=function(){var t=document.hidden;this[t?"pause":"unpause"]()},n.prototype.visibilityPlay=function(){this.play(),document.removeEventListener("visibilitychange",this.onVisibilityPlay)},e.extend(i.defaults,{pauseAutoPlayOnHover:!0}),i.createMethods.push("_createPlayer");var o=i.prototype;return o._createPlayer=function(){this.player=new n(this),this.on("activate",this.activatePlayer),this.on("uiChange",this.stopPlayer),this.on("pointerDown",this.stopPlayer),this.on("deactivate",this.deactivatePlayer)},o.activatePlayer=function(){this.options.autoPlay&&(this.player.play(),this.element.addEventListener("mouseenter",this))},o.playPlayer=function(){this.player.play()},o.stopPlayer=function(){this.player.stop()},o.pausePlayer=function(){this.player.pause()},o.unpausePlayer=function(){this.player.unpause()},o.deactivatePlayer=function(){this.player.stop(),this.element.removeEventListener("mouseenter",this)},o.onmouseenter=function(){this.options.pauseAutoPlayOnHover&&(this.player.pause(),this.element.addEventListener("mouseleave",this))},o.onmouseleave=function(){this.player.unpause(),this.element.removeEventListener("mouseleave",this)},i.Player=n,i}(t,e,i)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;window,n=[i(2),i(1)],void 0===(o=function(t,e){return function(t,e,i){"use strict";var n=e.prototype;return n.insert=function(t,e){var i=this._makeCells(t);if(i&&i.length){var n=this.cells.length;e=void 0===e?n:e;var o=function(t){var e=document.createDocumentFragment();return t.forEach(function(t){e.appendChild(t.element)}),e}(i),a=e==n;if(a)this.slider.appendChild(o);else{var s=this.cells[e].element;this.slider.insertBefore(o,s)}if(0===e)this.cells=i.concat(this.cells);else if(a)this.cells=this.cells.concat(i);else{var r=this.cells.splice(e,n-e);this.cells=this.cells.concat(i).concat(r)}this._sizeCells(i),this.cellChange(e,!0)}},n.append=function(t){this.insert(t,this.cells.length)},n.prepend=function(t){this.insert(t,0)},n.remove=function(t){var e=this.getCells(t);if(e&&e.length){var n=this.cells.length-1;e.forEach(function(t){t.remove();var e=this.cells.indexOf(t);n=Math.min(e,n),i.removeFrom(this.cells,t)},this),this.cellChange(n,!0)}},n.cellSizeChange=function(t){var e=this.getCell(t);if(e){e.getSize();var i=this.cells.indexOf(e);this.cellChange(i)}},n.cellChange=function(t,e){var i=this.selectedElement;this._positionCells(t),this._getWrapShiftCells(),this.setGallerySize();var n=this.getCell(i);n&&(this.selectedIndex=this.getCellSlideIndex(n)),this.selectedIndex=Math.min(this.slides.length-1,this.selectedIndex),this.emitEvent("cellChange",[t]),this.select(this.selectedIndex),e&&this.positionSliderAtSelected()},e}(0,t,e)}.apply(e,n))||(t.exports=o)},function(t,e,i){var n,o;window,n=[i(2),i(1)],void 0===(o=function(t,e){return function(t,e,i){"use strict";e.createMethods.push("_createLazyload");var n=e.prototype;function o(t,e){this.img=t,this.flickity=e,this.load()}return n._createLazyload=function(){this.on("select",this.lazyLoad)},n.lazyLoad=function(){var t=this.options.lazyLoad;if(t){var e="number"==typeof t?t:0,n=[];this.getAdjacentCellElements(e).forEach(function(t){var e=function(t){if("IMG"==t.nodeName){var e=t.getAttribute("data-flickity-lazyload"),n=t.getAttribute("data-flickity-lazyload-src"),o=t.getAttribute("data-flickity-lazyload-srcset");if(e||n||o)return[t]}var a=t.querySelectorAll("img[data-flickity-lazyload], img[data-flickity-lazyload-src], img[data-flickity-lazyload-srcset]");return i.makeArray(a)}(t);n=n.concat(e)}),n.forEach(function(t){new o(t,this)},this)}},o.prototype.handleEvent=i.handleEvent,o.prototype.load=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this);var t=this.img.getAttribute("data-flickity-lazyload")||this.img.getAttribute("data-flickity-lazyload-src"),e=this.img.getAttribute("data-flickity-lazyload-srcset");this.img.src=t,e&&this.img.setAttribute("srcset",e),this.img.removeAttribute("data-flickity-lazyload"),this.img.removeAttribute("data-flickity-lazyload-src"),this.img.removeAttribute("data-flickity-lazyload-srcset")},o.prototype.onload=function(t){this.complete(t,"flickity-lazyloaded")},o.prototype.onerror=function(t){this.complete(t,"flickity-lazyerror")},o.prototype.complete=function(t,e){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this);var i=this.flickity.getParentCell(this.img),n=i&&i.element;this.flickity.cellSizeChange(n),this.img.classList.add(e),this.flickity.dispatchEvent("lazyLoad",t,n)},e.LazyLoader=o,e}(0,t,e)}.apply(e,n))||(t.exports=o)},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,i,n){return i&&t(e.prototype,i),n&&t(e,n),e}}(),o=i(0),a=p(o),s=i(22),r=p(i(8)),l=p(i(23)),c=i(24),d=p(i(25));function p(t){return t&&t.__esModule?t:{default:t}}var h=function(t){function e(t){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var i=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return i.state={flickityReady:!1},i.carousel=null,i.flkty=null,i}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,o.Component),n(e,[{key:"componentDidUpdate",value:function(t,e){var i=this.props,n=i.children,o=i.options,a=o.draggable,s=o.initialIndex,r=i.reloadOnUpdate,l=this.state.flickityReady;r||!e.flickityReady&&l?(this.flkty.deactivate(),this.flkty.selectedIndex=s||0,this.flkty.options.draggable=void 0===a?!!n&&n.length>1:a,this.flkty.activate()):this.flkty.reloadCells()}},{key:"componentDidMount",value:function(){var t=this;if(!c.canUseDOM)return null;var e=this.props,i=e.disableImagesLoaded,n=e.flickityRef,o=e.options,a=this.carousel;this.flkty=new r.default(a,o);var s=function(){return t.setState({flickityReady:!0})};i?s():(0,l.default)(a,s),n&&n(this.flkty)}},{key:"renderPortal",value:function(){if(!this.carousel)return null;var t=this.carousel.querySelector(".flickity-slider");return t?(0,s.createPortal)(this.props.children,t):void 0}},{key:"render",value:function(){var t=this;return a.default.createElement(this.props.elementType,{className:this.props.className,ref:function(e){t.carousel=e}},this.renderPortal())}}]),e}();h.propTypes={disableImagesLoaded:d.default.bool,reloadOnUpdate:d.default.bool,options:d.default.object,className:d.default.string,elementType:d.default.string,children:d.default.array,flickityRef:d.default.func},h.defaultProps={disableImagesLoaded:!1,reloadOnUpdate:!1,options:{},className:"",elementType:"div"},e.default=h,t.exports=e.default},function(t,e){const{unregisterPlugin:i,getPlugins:n}=wp.plugins,o=["edit-post","pixelthrone--comingsoonblocks-templates","pixelthrone--comingsoonblocks-seo","pixelthrone--comingsoonblocks-settings","pixelthrone--comingsoonblocks-look-and-feel"];window.onload=function(){n().forEach(function(t){-1===o.indexOf(t.name)&&i(t.name)})}},function(t,e){t.exports=ReactDOM},function(t,e,i){var n,o;
50
  /*!
51
  * imagesLoaded v4.1.4
52
  * JavaScript is all like "You images are done yet or what?"
@@ -57,4 +57,4 @@
57
  * JavaScript is all like "You images are done yet or what?"
58
  * MIT License
59
  */
60
- !function(a,s){"use strict";n=[i(3)],void 0===(o=function(t){return function(t,e){var i=t.jQuery,n=t.console;function o(t,e){for(var i in e)t[i]=e[i];return t}var a=Array.prototype.slice;function s(t,e,r){if(!(this instanceof s))return new s(t,e,r);var l=t;"string"==typeof t&&(l=document.querySelectorAll(t)),l?(this.elements=function(t){if(Array.isArray(t))return t;if("object"==typeof t&&"number"==typeof t.length)return a.call(t);return[t]}(l),this.options=o({},this.options),"function"==typeof e?r=e:o(this.options,e),r&&this.on("always",r),this.getImages(),i&&(this.jqDeferred=new i.Deferred),setTimeout(this.check.bind(this))):n.error("Bad element for imagesLoaded "+(l||t))}s.prototype=Object.create(e.prototype),s.prototype.options={},s.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},s.prototype.addElementImages=function(t){"IMG"==t.nodeName&&this.addImage(t),!0===this.options.background&&this.addElementBackgroundImages(t);var e=t.nodeType;if(e&&r[e]){for(var i=t.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background){var a=t.querySelectorAll(this.options.background);for(n=0;n<a.length;n++){var s=a[n];this.addElementBackgroundImages(s)}}}};var r={1:!0,9:!0,11:!0};function l(t){this.img=t}function c(t,e){this.url=t,this.element=e,this.img=new Image}return s.prototype.addElementBackgroundImages=function(t){var e=getComputedStyle(t);if(e)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(e.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,t),n=i.exec(e.backgroundImage)}},s.prototype.addImage=function(t){var e=new l(t);this.images.push(e)},s.prototype.addBackground=function(t,e){var i=new c(t,e);this.images.push(i)},s.prototype.check=function(){var t=this;function e(e,i,n){setTimeout(function(){t.progress(e,i,n)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(t){t.once("progress",e),t.check()}):this.complete()},s.prototype.progress=function(t,e,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!t.isLoaded,this.emitEvent("progress",[this,t,e]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,t),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&n&&n.log("progress: "+i,t,e)},s.prototype.complete=function(){var t=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(t,[this]),this.emitEvent("always",[this]),this.jqDeferred){var e=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[e](this)}},l.prototype=Object.create(e.prototype),l.prototype.check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},l.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},l.prototype.confirm=function(t,e){this.isLoaded=t,this.emitEvent("progress",[this,this.img,e])},l.prototype.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},l.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},l.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},l.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype=Object.create(l.prototype),c.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},c.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype.confirm=function(t,e){this.isLoaded=t,this.emitEvent("progress",[this,this.element,e])},s.makeJQueryPlugin=function(e){(e=e||t.jQuery)&&((i=e).fn.imagesLoaded=function(t,e){return new s(this,t,e).jqDeferred.promise(i(this))})},s.makeJQueryPlugin(),s}(a,t)}.apply(e,n))||(t.exports=o)}("undefined"!=typeof window?window:this)},function(t,e,i){"use strict";var n=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:n,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:n&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:n&&!!window.screen,isInWorker:!n};t.exports=o},function(t,e,i){t.exports=i(26)()},function(t,e,i){"use strict";var n=i(27);function o(){}t.exports=function(){function t(t,e,i,o,a,s){if(s!==n){var r=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw r.name="Invariant Violation",r}}function e(){return t}t.isRequired=t;var i={array:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e};return i.checkPropTypes=o,i.PropTypes=i,i}},function(t,e,i){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},,,function(t,e,i){"use strict";i.r(e);i(32),i(33);var n=i(7);const{getBlockTypes:o,unregisterBlockType:a}=wp.blocks;let s=n.map(t=>t.name);document.addEventListener("DOMContentLoaded",()=>{o().forEach(function(t){-1===s.indexOf(t.name)&&a(t.name)})},!1);i(21),i(34),i(35);const{MediaUpload:r}=wp.editor;var l=({onSelect:t,allowedMediaTypes:e,logoAttrs:i,style:n,align:o})=>React.createElement(r,{onSelect:t,allowedTypes:e,value:i.id,render:({open:t})=>React.createElement("button",{"data-editor-component":"brand-uploader",onClick:t,className:`-${o}-align`},React.createElement("i",{className:"dashicons dashicons-edit"}),React.createElement("img",{style:n,src:i.url}))});const c="AIzaSyD2YQ4A9FpunpkJ0FqxYueSsi7f2SYpmBg",d=[{name:"Color",color:"#FFFFFF"},{name:"Color",color:"#E3E3E3"},{name:"Color",color:"#7F8688"},{name:"Color",color:"#929D9E"},{name:"Color",color:"#0A0A0A"},{name:"Color",color:"#18181E"},{name:"Color",color:"#32064A"},{name:"Color",color:"#DEC79B"},{name:"Color",color:"#FDD935"},{name:"Color",color:"#B3E3B5"},{name:"Color",color:"#7ED5EA"},{name:"Color",color:"#FB8122"},{name:"Color",color:"#FB9985"}],p=[{label:"Select",value:""},{label:"Facebook",value:"facebook"},{label:"digg",value:"digg"},{label:"Dribbble",value:"dribbble"},{label:"Envato",value:"envato"},{label:"Etsy",value:"etsy"},{label:"Friendfeed",value:"friendfeed"},{label:"Github",value:"github"},{label:"Google Plus",value:"googleplus"},{label:"Instagram",value:"instagram"},{label:"LinkedIn",value:"linkedin"},{label:"Mail",value:"mail"},{label:"Medium",value:"medium"},{label:"Meetup",value:"meetup"},{label:"Mixcloud",value:"mixcloud"},{label:"npm",value:"npm"},{label:"Pinterest",value:"pinterest"},{label:"PayPal",value:"paypal"},{label:"Reddit",value:"reddit"},{label:"RSS",value:"rss"},{label:"TripAdvisor",value:"tripadvisor"},{label:"Twitch",value:"twitch"},{label:"Twitter",value:"twitter"},{label:"Vimeo",value:"vimeo"},{label:"WhatSapp",value:"whatsapp"},{label:"WordPress",value:"wordpress"},{label:"Youtube",value:"youtube"},{label:"Messenger",value:"messenger"},{label:"Bitbucket",value:"bitbucket"},{label:"Google Maps",value:"googlemaps"},{label:"Codepen",value:"codepen"}],h={PLAN_NAME:0,starter:1,professional:2,business:3},u=csblocks.license;function m(t,e){if(""===t||void 0===t||!1===t)return e;("string"==typeof t||t instanceof String)&&(t=JSON.parse(t));for(const i in e)t.hasOwnProperty(i)||(t[i]=e[i]);return t}function g(t){return h[u.plan]>=h[t]}function f(t){return"array"==typeof t?0===t.length:!t||0===Object.keys(t).length}const{__:v}=wp.i18n,{Component:y}=wp.element,{IconButton:b,MenuItem:E,Dropdown:k,SelectControl:x}=wp.components;var w=class extends y{constructor({attributes:t}){super(...arguments),this.update=this.update.bind(this),this.addIcon=this.addIcon.bind(this),this.removeIcon=this.removeIcon.bind(this);let e=[];JSON.parse(this.props.networks).filter(t=>{t&&e.push(t)}),this.state={networks:e}}update(t,e,i){let n=this.state.networks;"icon"===i?n[t].icon=e:n[t].url=e,this.setState(t=>({networks:n})),this.props.setNetworks(JSON.stringify(n))}addIcon(t){t.preventDefault();let e=this.state.networks;e.push({url:"https://",icon:""}),this.setState(t=>({networks:e}))}removeIcon(t){t.preventDefault();const e=t.currentTarget.dataset.index;let i=[];this.state.networks.filter((t,n)=>{Number(e)!==Number(n)&&i.push(t)}),this.setState(t=>({networks:i})),this.props.setNetworks(JSON.stringify(i))}render(){const{networks:t}=this.state,{position:e}=this.props;return React.createElement("div",{"data-component":"social-icons"},t&&t.map(({url:t,icon:i},n)=>React.createElement(k,{key:n,className:"editor-block-social-icons-menu__control",contentClassName:"editor-block-social-icons-menu__content",position:e,renderToggle:({isOpen:t,onToggle:e})=>React.createElement("a",{href:"#",onClick:e,className:`-icon -${i||"empty"} -isOpen--${t}`},i?React.createElement("i",{className:`socicon-${i}`}):React.createElement("i",{className:"dashicons dashicons-edit"})),renderContent:()=>React.createElement("div",null,React.createElement(x,{label:v("Network","coming-soon-blocks"),value:i,onChange:t=>this.update(n,t,"icon"),options:p}),React.createElement("label",{className:"components-base-control__label"},v("Link","coming-soon-blocks")),React.createElement("input",{className:"components-text-control__input",type:"text",defaultValue:t,placeholder:"https://",onBlur:t=>this.update(n,t.currentTarget.value,"url")}),React.createElement("div",{className:"editor-block-settings-menu__separator"}),React.createElement(E,{className:"editor-block-settings-menu__control","data-index":n,onClick:this.removeIcon,icon:"trash"},v("Remove","coming-soon-blocks")))})),React.createElement(b,{icon:"plus",label:v("Add Button","coming-soon-blocks"),onClick:this.addIcon,"data-empty":f(t)}))}};const{__:S,sprintf:C}=wp.i18n;var T=({children:t,plan:e})=>{if(g(e))return t;{const i=C(S("This is a %s feature","coming-soon-blocks"),`<i>${e}</i>`);return React.createElement("span",{"data-component":"is-premium","data-plan":e},React.createElement("p",{className:"feature-label-notice",dangerouslySetInnerHTML:{__html:i}}),t)}};const{__:_}=wp.i18n,{Component:P,Fragment:R}=wp.element,{MediaUpload:N}=wp.editor,{IconButton:D,ColorPalette:O,ColorIndicator:A}=wp.components;var I=class extends P{constructor({attributes:t}){super(...arguments),this.state=JSON.parse(this.props.attributes),this.uploadBgImage=this.uploadBgImage.bind(this),this.uploadBgGallery=this.uploadBgGallery.bind(this),this.uploadBgVideo=this.uploadBgVideo.bind(this),this.uploadBgColor=this.uploadBgColor.bind(this),this.updateTab=this.updateTab.bind(this)}uploadBgImage(t){const{updateAttributes:e}=this.props;let i=this.state;i.image={id:t.id,full:t.sizes.full.url,thumb:t.sizes.medium.url},this.setState(i),e(JSON.stringify(i))}uploadBgGallery(t){const{updateAttributes:e}=this.props;let i=this.state;const n=t.map(t=>({id:t.id,full:t.sizes.full.url,thumb:t.sizes.medium.url}));i.gallery=n,this.setState(i),e(JSON.stringify(i))}uploadBgVideo(t){const{updateAttributes:e}=this.props;let i=this.state;i.video={id:t.id,url:t.url,filename:t.filename},this.setState(i),e(JSON.stringify(i))}uploadBgColor(t){const{updateAttributes:e}=this.props;let i=this.state;i.color=t,this.setState(i),e(JSON.stringify(i))}updateTab(t){const{updateAttributes:e}=this.props;let i=this.state;i.type=t,this.setState(i),e(JSON.stringify(i))}render(){const{gallery:t,color:e,type:i,image:n,video:o}=this.state,a=!!t.length&&t.map(({id:t})=>t);return React.createElement("div",{"data-editor-component":"background"},React.createElement("label",null,_("Background","coming-soon-blocks")),React.createElement("div",{className:"tabs-menu"},React.createElement(D,{icon:"admin-customizer",label:_("Solid Color","coming-soon-blocks"),"data-active":"color"===i?"true":"",onClick:t=>this.updateTab("color")}),React.createElement(D,{icon:"format-image",label:_("Image","coming-soon-blocks"),"data-active":"image"===i?"true":"",onClick:t=>this.updateTab("image")}),React.createElement(D,{icon:"format-gallery",label:_("Gallery","coming-soon-blocks"),"data-active":"gallery"===i?"true":"",onClick:t=>this.updateTab("gallery")}),React.createElement(D,{icon:"format-video",label:_("Video","coming-soon-blocks"),"data-active":"video"===i?"true":"",onClick:t=>this.updateTab("video")})),React.createElement("div",{className:"tabs-content"},"color"===i&&React.createElement(R,null,React.createElement("label",{className:"single-field-label"},_("Color","coming-soon-blocks")," ",React.createElement(A,{colorValue:e})),React.createElement(O,{colors:d,value:e,onChange:this.uploadBgColor})),"image"===i&&React.createElement(N,{onSelect:this.uploadBgImage,allowedTypes:["image"],value:n.id,render:({open:t})=>React.createElement(R,null,React.createElement("label",{className:"single-field-label"},_("Image","coming-soon-blocks")),f(n)||""===n.id?null:React.createElement(R,null,React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:_("Change Image","coming-soon-blocks"),onClick:t},React.createElement("img",{src:n.thumb}))),f(n)||""===n.id?React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:_("Upload Image","coming-soon-blocks"),onClick:t}):null)}),"gallery"===i&&React.createElement(T,{plan:"starter"},React.createElement(N,{onSelect:this.uploadBgGallery,multiple:!0,gallery:!0,allowedTypes:["image"],value:a,render:({open:e})=>React.createElement(R,null,React.createElement("label",{className:"single-field-label"},_("Gallery","coming-soon-blocks")),a.length?React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:_("Change Gallery","coming-soon-blocks"),onClick:e},React.createElement("div",{"data-count":t.length},t.map(({thumb:t,id:e})=>React.createElement("span",null,React.createElement("img",{src:t}))))):null,a.length?null:React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:_("Upload Image","coming-soon-blocks"),onClick:e}))})),"video"===i&&React.createElement(T,{plan:"starter"},React.createElement(N,{onSelect:this.uploadBgVideo,allowedTypes:["video/mp4","video/ogg","video/webm"],value:o.length?o.id:"",render:({open:t})=>React.createElement(R,null,React.createElement("label",{className:"single-field-label"},_("Video")," ",o.id&&`(${o.filename})`),o.id&&React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:_("Change Video","coming-soon-blocks"),onClick:t},React.createElement("video",{muted:!0,src:o.url})),!o.id&&React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:_("Upload Video","coming-soon-blocks"),onClick:t}))}),React.createElement("br",null),React.createElement(N,{onSelect:this.uploadBgImage,allowedTypes:["image"],value:n.id,render:({open:t})=>React.createElement(R,null,React.createElement("label",{className:"single-field-label"},_("Poster","coming-soon-blocks")),f(n)||""===n.id?null:React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:_("Change Image","coming-soon-blocks"),onClick:t},React.createElement("img",{src:n.thumb})),f(n)||""===n.id?React.createElement(D,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:_("Upload Image","coming-soon-blocks"),onClick:t}):null)}),React.createElement("p",{"data-editor-component":"help-notice"},_("Specifies an image to be shown while the video is downloading, or until the user hits the play button.","coming-soon-blocks")))))}},L=i(0),M=i.n(L);function B(t){return(B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function z(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function F(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function W(t,e,i){return e&&F(t.prototype,e),i&&F(t,i),t}function $(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var i=[],n=!0,o=!1,a=void 0;try{for(var s,r=t[Symbol.iterator]();!(n=(s=r.next()).done)&&(i.push(s.value),!e||i.length!==e);n=!0);}catch(t){o=!0,a=t}finally{try{n||null==r.return||r.return()}finally{if(o)throw a}}return i}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function U(t){return t.family.replace(/\s+/g,"-").toLowerCase()}function J(t,e,i){var n="https://fonts.googleapis.com/css?family=";n+=t.family.replace(/ /g,"+"),n+=":".concat(e[0]);for(var o=1;o<e.length;o+=1)n+=",".concat(e[o]);if(!0===i){var a=t.family;a=(a=a.replace(/\s+/g,"")).split("").filter(function(t,e,i){return i.indexOf(t)===e}).join(""),n+="&text=".concat(a)}return n}function j(t,e,i,n){var o=J(t,i,!1),a=document.createElement("link");a.rel="stylesheet",a.href=o,a.id="font-full-".concat(e),n&&(a.onload=function(){n(t)}),document.head.appendChild(a)}function H(t,e,i){var n=U(t);document.getElementById("font-preview-".concat(n))?(document.getElementById("font-preview-".concat(n)).outerHTML="",j(t,n,e,i)):document.getElementById("font-full-".concat(n))?i&&i(t):j(t,n,e,i)}function V(t,e){var i=U(t);document.getElementById("font-full-".concat(i))||function(t,e,i){var n=J(t,i,!0),o=document.createElement("link");o.rel="stylesheet",o.href=n,o.id="font-preview-".concat(e),document.head.appendChild(o)}(t,i,e)}var G=function(){function t(e,i,n){z(this,t),this.pickerSuffix=""!==e?"-".concat(e):"",this.stylesheetId="font-selectors".concat(this.pickerSuffix),this.determineFontVariants(n);var o=document.getElementById(this.stylesheetId);o?this.stylesheet=o:this.initStylesheet(i)}return W(t,[{key:"determineFontVariants",value:function(t){var e=t[0].split(/(\d+)/).filter(Boolean);if(1===e.length)if("regular"===e[0]||"italic"===e[0]){var i=$(e,1);this.fontStyle=i[0],this.fontWeight="400"}else{this.fontStyle="regular";var n=$(e,1);this.fontWeight=n[0]}else if(2===e.length){var o=$(e,2);this.fontWeight=o[0],this.fontStyle=o[1]}}},{key:"initStylesheet",value:function(t){this.stylesheet=document.createElement("style"),this.stylesheet.id=this.stylesheetId,this.stylesheet.rel="stylesheet",this.stylesheet.type="text/css";var e="\n\t\t\t.apply-font".concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'";\n\t\t\t\tfont-style: ').concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.appendChild(document.createTextNode(e)),document.head.appendChild(this.stylesheet)}},{key:"applyPreviewStyle",value:function(t){var e=t.family.replace(/\s+/g,"-").toLowerCase(),i="\n\t\t\t.font-".concat(e).concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'";\n\t\t\t\tfont-style: ').concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.appendChild(document.createTextNode(i))}},{key:"changeActiveStyle",value:function(t,e){var i="handwriting"===t.category?"cursive":t.category,n="\n\t\t\t.apply-font".concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'", "').concat(e,'", ').concat(i,";\n\t\t\t\tfont-style: ").concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.replaceChild(document.createTextNode(n),this.stylesheet.childNodes[0])}}]),t}(),q=function(){function t(e,i){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=arguments.length>3?arguments[3]:void 0;z(this,t),t.validateParameters(e,i,n,o);var a=i||"Open Sans",s=t.setDefaultOptions(n);this.apiKey=e,this.onChange=o,this.options=s,this.activeFont={family:a,variants:"regular"},this.fonts=[],this.previewIndex=0,H(this.activeFont,this.options.variants),this.styleManager=new G(this.options.name,this.activeFont,this.options.variants)}return W(t,null,[{key:"validateParameters",value:function(t,e,i,n){if(!t||"string"!=typeof t)throw Error("apiKey parameter is not a string or missing");if(e&&"string"!=typeof e)throw Error("defaultFont parameter is not a string");if("object"!==B(i))throw Error("options parameter is not an object");if(i.name){if("string"!=typeof i.name)throw Error("options.name parameter is not a string");if(i.name.match(/[^0-9a-z]/i))throw Error("options.name may only contain letters and digits")}if(i.families&&!(i.families instanceof Array))throw Error("options.families parameter is not an array");if(i.categories&&!(i.categories instanceof Array))throw Error("options.categories parameter is not an array");if(i.variants&&!(i.variants instanceof Array))throw Error("options.variants parameter is not an array");if(i.limit&&"number"!=typeof i.limit)throw Error("options.limit parameter is not a number");if(i.sort&&"string"!=typeof i.sort)throw Error("options.sort parameter is not a string");if(n&&"function"!=typeof n)throw Error("onChange is not a function")}},{key:"setDefaultOptions",value:function(t){var e=t;return t.name||(e.name=""),t.limit||(e.limit=100),t.variants||(e.variants=["regular"]),t.sort||(e.sort="alphabetical"),e}}]),W(t,[{key:"init",value:function(){var t=this;return function(t){return new Promise(function(e,i){var n="https://www.googleapis.com/webfonts/v1/webfonts?sort=popularity&key=".concat(t),o=new XMLHttpRequest;o.overrideMimeType("application/json"),o.open("GET",n,!0),o.onreadystatechange=function(){if(4===o.readyState){if(200!==o.status)return i(new Error("Response has status code ".concat(o.status)));var t=JSON.parse(o.responseText);return e(t.items)}},o.send()})}(this.apiKey).then(function(e){t.fonts=function(t,e,i){var n=t;return i.families&&(n=n.filter(function(t){return i.families.includes(t.family)})),i.categories&&(n=n.filter(function(t){return i.categories.includes(t.category)})),i.variants&&(n=n.filter(function(t){for(var e=0;e<i.variants.length;e+=1)if(-1===t.variants.indexOf(i.variants[e]))return!1;return!0})),i.limit&&(n=n.slice(0,i.limit)),0===n.filter(function(t){return t.family===e.family}).length&&(n.unshift(e),i.limit&&n.pop()),"alphabetical"===i.sort&&(n=n.sort(function(t,e){return t.family.localeCompare(e.family)})),n}(e,t.activeFont,t.options),t.downloadPreviews(10)})}},{key:"downloadPreviews",value:function(t){var e;e=t>this.fonts.length?this.fonts.length:t;for(var i=this.previewIndex;i<e;i+=1)this.styleManager.applyPreviewStyle(this.fonts[i]),V(this.fonts[i],this.options.variants);e>this.previewIndex&&(this.previewIndex=e)}},{key:"setActiveFont",value:function(t){var e=this.fonts.findIndex(function(e){return e.family===t});if(-1===e)return console.error('Cannot update activeFont: The font "'.concat(t,'" is not in the font list')),-1;var i=this.activeFont.family;return this.activeFont=this.fonts[e],this.styleManager.changeActiveStyle(this.activeFont,i),H(this.activeFont,this.options.variants,this.onChange),e}}]),t}();!function(t,e){void 0===e&&(e={});var i=e.insertAt;if(t&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css","top"===i&&n.firstChild?n.insertBefore(o,n.firstChild):n.appendChild(o),o.styleSheet?o.styleSheet.cssText=t:o.appendChild(document.createTextNode(t))}}('@charset "UTF-8";\ndiv[id^="font-picker"] {\n position: relative;\n display: inline-block;\n width: 200px;\n box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }\n div[id^="font-picker"] * {\n box-sizing: border-box; }\n div[id^="font-picker"] p {\n margin: 0;\n padding: 0; }\n div[id^="font-picker"] button {\n background: none;\n border: 0;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n outline: none; }\n div[id^="font-picker"] .dropdown-button {\n height: 35px;\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0 10px;\n background: #CBCBCB; }\n div[id^="font-picker"] .dropdown-button:hover, div[id^="font-picker"] .dropdown-button.expanded, div[id^="font-picker"] .dropdown-button:focus {\n background: #bebebe; }\n div[id^="font-picker"] .dropdown-button .dropdown-font-name {\n overflow: hidden;\n white-space: nowrap; }\n div[id^="font-picker"] .dropdown-icon {\n margin-left: 10px; }\n\n@-webkit-keyframes spinner {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes spinner {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n div[id^="font-picker"] .dropdown-icon.loading:before {\n content: \'\';\n display: block;\n height: 10px;\n width: 10px;\n border-radius: 50%;\n border: 2px solid #b2b2b2;\n border-top-color: black;\n -webkit-animation: spinner 0.6s linear infinite;\n animation: spinner 0.6s linear infinite; }\n div[id^="font-picker"] .dropdown-icon.finished:before {\n content: \'\';\n display: block;\n height: 0;\n width: 0;\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n border-top: 6px solid black;\n transition: -webkit-transform 0.3s;\n transition: transform 0.3s;\n transition: transform 0.3s, -webkit-transform 0.3s;\n margin: 0 2px; }\n div[id^="font-picker"] .dropdown-icon.error:before {\n content: \'⚠\'; }\n div[id^="font-picker"] .dropdown-button.expanded .dropdown-icon.finished:before {\n -webkit-transform: rotate(-180deg);\n transform: rotate(-180deg); }\n div[id^="font-picker"] ul {\n position: absolute;\n z-index: 1;\n max-height: 0;\n width: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n margin: 0;\n padding: 0;\n background: #EAEAEA;\n box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);\n transition: 0.3s; }\n div[id^="font-picker"] ul.expanded {\n max-height: 200px; }\n div[id^="font-picker"] ul li {\n height: 35px;\n list-style: none; }\n div[id^="font-picker"] ul li button {\n height: 100%;\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0 10px;\n white-space: nowrap; }\n div[id^="font-picker"] ul li button:hover, div[id^="font-picker"] ul li button:focus {\n background: #dddddd; }\n div[id^="font-picker"] ul li button.active-font {\n background: #d1d1d1; }\n');const{Spinner:Y}=wp.components;function X(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function K(t){return(K=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Q(t,e){return(Q=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Z(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var tt=function(t){function e(t){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(i=function(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?Z(t):e}(this,K(e).call(this,t))).state={activeFont:i.props.activeFont,errorText:"",expanded:!1,loadingStatus:"loading"},i.props.options&&i.props.options.name?i.pickerSuffix="-".concat(i.props.options.name):i.pickerSuffix="",i.fontManager=new q(i.props.apiKey,i.props.activeFont,i.props.options),i.fontManager.init().then(function(){i.setState({errorText:"",loadingStatus:"finished"})}).catch(function(t){i.setState({errorText:"Error trying to fetch the list of available fonts",loadingStatus:"error"}),console.error(i.state.errorText),console.error(t)}),i.setActiveFont=i.setActiveFont.bind(Z(Z(i))),i.onClose=i.onClose.bind(Z(Z(i))),i.onScroll=i.onScroll.bind(Z(Z(i))),i.toggleExpanded=i.toggleExpanded.bind(Z(Z(i))),i}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Q(t,e)}(e,L["Component"]),function(t,e,i){e&&X(t.prototype,e),i&&X(t,i)}(e,[{key:"componentDidUpdate",value:function(){this.state.activeFont!==this.props.activeFont&&this.setActiveFont(this.props.activeFont)}},{key:"onClose",value:function(t){var e=t.target;do{if(e===document.getElementById("font-picker"))return;e=e.parentNode}while(e);this.toggleExpanded()}},{key:"onScroll",value:function(t){var e=t.target.scrollHeight/this.fontManager.fonts.length,i=Math.ceil((t.target.scrollTop+t.target.clientHeight)/e);this.fontManager.downloadPreviews(i+5)}},{key:"setActiveFont",value:function(t){-1===this.fontManager.setActiveFont(t)?(this.setState({activeFont:t,errorText:'Cannot update activeFont: The font "'.concat(t,'" is not in the font list'),loadingStatus:"error"}),console.error(this.state.errorText)):this.setState({activeFont:t,errorText:"",loadingStatus:"finished"})}},{key:"toggleExpanded",value:function(){this.state.expanded?(this.setState({expanded:!1}),document.removeEventListener("click",this.onClose)):(this.setState({expanded:!0}),document.addEventListener("click",this.onClose))}},{key:"render",value:function(){var t,e=this;return t=M.a.createElement("ul",{className:this.state.expanded?"expanded":"",onScroll:this.onScroll},this.fontManager.fonts.map(function(t){var i=t.family===e.state.activeFont,n=t.family.replace(/\s+/g,"-").toLowerCase();return M.a.createElement("li",{key:t.family},M.a.createElement("button",{type:"button",className:"font-".concat(n).concat(e.pickerSuffix," ").concat(i?"active-font":""),onClick:function(){e.props.onChange(t)},onKeyPress:function(){e.props.onChange(t)}},t.family))})),M.a.createElement("div",{id:"font-picker"},"loading"===this.state.loadingStatus&&M.a.createElement(Y,null),t)}}]),e}();const{__:et}=wp.i18n,{Component:it,Fragment:nt}=wp.element,{Button:ot,Dropdown:at,RangeControl:st,SelectControl:rt}=wp.components;var lt=function(t){return M.a.createElement("svg",t,M.a.createElement("g",{fill:"#555D67",fillRule:"evenodd"},M.a.createElement("path",{d:"M2 2v9h12V2H2zm0-2h12a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z",fillRule:"nonzero"}),M.a.createElement("path",{d:"M6 14v-1h4v1h3v2H3v-2h3z"})))};lt.defaultProps={width:"16",height:"16",viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg"};var ct=function(t){return M.a.createElement("svg",t,M.a.createElement("g",{fill:"none",fillRule:"evenodd"},M.a.createElement("rect",{stroke:"#555D67",strokeWidth:"2",x:"1",y:"1",width:"10",height:"14",rx:"1"}),M.a.createElement("path",{fill:"#555D67",d:"M5 10h2v2H5z"})))};ct.defaultProps={width:"12",height:"16",viewBox:"0 0 12 16",xmlns:"http://www.w3.org/2000/svg"};const dt={100:et("Thin"),200:et("Extra-Light"),"200italic":et("Extra-Light Italic"),300:et("Light"),"300italic":et("Light Italic"),400:et("Regular"),regular:et("Regular"),italic:et("Regular Italic"),500:et("Medium"),"500italic":et("Medium Italic"),600:et("Semi-Bold"),"600italic":et("Semi-Bold Italic"),700:et("Bold"),"700italic":et("Bold Italic"),800:et("Extra-Bold"),"800italic":et("Extra-Bold Italic"),900:et("Black"),"900italic":et("Black Italic")};function pt(t){const e=t.fontfamily,i=function(t,e,i){let n="https://fonts.googleapis.com/css?family=";n+=t.replace(/ /g,"+"),n+=":".concat(e[0]);for(let t=1;t<e.length;t+=1)n+=",".concat(e[t]);if(!0===i){let e=t;e=(e=e.replace(/\s+/g,"")).split("").filter(function(t,e,i){return i.indexOf(t)===e}).join(""),n+="&text=".concat(e)}return n}(e,[t.desktop.fontweight],!1),n=document.createElement("link");n.rel="stylesheet",n.href=i,n.id="font-full-".concat(e);const o=document.getElementById(n.id);o?o.href.includes(t.desktop.fontweight)||(o.href=o.href+","+t.desktop.fontweight):document.head.appendChild(n)}class ht extends it{constructor({attributes:t}){super(...arguments),this.state={tab:"desktop",typography:this.props.typography},this.updateParam=this.updateParam.bind(this),this.getVariantsList=this.getVariantsList.bind(this)}getVariantsList(t){let e=[];return e=Object.keys(t).map((e,i)=>({label:dt.hasOwnProperty(t[e])?dt[t[e]]:t[e],value:t[e]}))}updateParam(t,e,i){if(!g("professional"))return;const{typography:n}=this.state,{updated:o}=this.props;let a=n;if("desktop"===i)switch(e){case"fontsize":case"lineheight":case"letterspacing":case"fontweight":a.desktop[e]=t}else if("mobile"===i)switch(e){case"fontsize":case"lineheight":case"letterspacing":case"fontweight":a.mobile[e]=t}else switch(e){case"fontfamily":a.fontfamily=t.family,a.variants=t.variants,a.desktop.fontweight=t.variants[0],a.mobile.fontweight=t.variants[0]}o(a),this.setState(t=>({...t,typography:a})),pt(a)}render(){const{typography:t,tab:e}=this.state,{title:i}=this.props,n={fontFamily:t.fontfamily,fontWeight:t.desktop.fontweight};return M.a.createElement(at,{className:"editor-component--field-typography-selector",contentClassName:"editor-component--dropdown-typography-selector",position:"bottom right",renderToggle:({isOpen:e,onToggle:o})=>M.a.createElement(ot,{onClick:o,"aria-expanded":e},M.a.createElement("label",null,i),M.a.createElement("p",{style:n},t.fontfamily)),renderContent:()=>M.a.createElement(nt,null,M.a.createElement(tt,{apiKey:c,activeFont:t.fontfamily,onChange:t=>this.updateParam(t,"fontfamily","global")}),M.a.createElement("div",{className:"typography-options__wrapper"},M.a.createElement("div",{className:"tabs-menu"},M.a.createElement("button",{"data-mode":"desktop"===e?"active":"",onClick:t=>this.setState(t=>({...t,tab:"desktop"}))},M.a.createElement(lt,null)),M.a.createElement("button",{"data-mode":"mobile"===e?"active":"",onClick:t=>this.setState(t=>({...t,tab:"mobile"}))},M.a.createElement(ct,null))),M.a.createElement("div",{className:"tabs-content"},"desktop"===e&&M.a.createElement("div",{className:"tab--desktop"},M.a.createElement(st,{label:et("Font Size (px)"),value:t.desktop.fontsize,onChange:t=>this.updateParam(t,"fontsize","desktop"),min:12,max:100}),M.a.createElement(rt,{label:et("Font Weight"),value:t.desktop.fontweight,options:this.getVariantsList(t.variants),onChange:t=>this.updateParam(t,"fontweight","desktop")}),M.a.createElement(st,{label:et("Line Height (%)"),value:t.desktop.lineheight,onChange:t=>this.updateParam(t,"lineheight","desktop"),min:100,max:200,step:5}),M.a.createElement(st,{label:et("Letter Spacing (px)"),value:t.desktop.letterspacing,onChange:t=>this.updateParam(t,"letterspacing","desktop"),min:-1,max:5,step:.1})),"mobile"===e&&M.a.createElement("div",{className:"tab--mobile"},M.a.createElement(st,{label:et("Font Size (px)"),value:t.mobile.fontsize,onChange:t=>this.updateParam(t,"fontsize","mobile"),min:12,max:50}),M.a.createElement(rt,{label:et("Font Weight"),value:t.mobile.fontweight,options:this.getVariantsList(t.variants),onChange:t=>this.updateParam(t,"fontweight","mobile")}),M.a.createElement(st,{label:et("Line Height (%)"),value:t.mobile.lineheight,onChange:t=>this.updateParam(t,"lineheight","mobile"),min:100,max:200,step:5}),M.a.createElement(st,{label:et("Letter Spacing (px)"),value:t.mobile.letterspacing,onChange:t=>this.updateParam(t,"letterspacing","mobile"),min:-1,max:5,step:.1})))))})}}var ut=i(20),mt=i.n(ut);const{__:gt}=wp.i18n,{Component:ft,Fragment:vt}=wp.element,{Spinner:yt}=wp.components,bt=({attrs:t})=>0!==t.opacity&&React.createElement("div",{"data-component":"block-background-overlayer",style:{background:`${t.color}`,opacity:t.opacity/100}}),Et={autoPlay:5e3,pageDots:!1,prevNextButtons:!1,draggable:!1,wrapAround:!0},kt=({background:t})=>{const e=JSON.parse(t);let i="";switch(e.type){case"color":i=e.color&&React.createElement("div",{className:"color-element",style:{backgroundColor:e.color}});break;case"image":i=e.image.full&&React.createElement("div",{className:"image-element"},React.createElement("span",{style:{backgroundImage:`url(${e.image.full})`}}),React.createElement("span",{style:{backgroundImage:`url(${e.image.thumb})`}},React.createElement(yt,null)));break;case"gallery":i=React.createElement("div",{className:"gallery-element"},React.createElement(mt.a,{elementType:"div",options:Et,disableImagesLoaded:!1,reloadOnUpdate:!0},e.gallery.map(({full:t,id:e})=>React.createElement("span",null,React.createElement("img",{src:t})))));break;case"video":i=e.video.url&&React.createElement("div",{className:"video-element"},React.createElement("video",{playsinline:!0,autoPlay:!0,loop:!0,muted:!0,src:e.video.url,poster:e.image.full}))}return React.createElement("div",{"data-component":"block-background"},i)},{__:xt}=wp.i18n,{Component:wt,Fragment:St}=wp.element,{ColorPalette:Ct,ColorIndicator:Tt}=wp.components;var _t=({label:t,colorValue:e,onChange:i})=>React.createElement("div",{"data-editor-component":"color-palette-base-control"},React.createElement("label",null,t," ",React.createElement(Tt,{colorValue:e})),React.createElement(Ct,{colors:d,value:e,onChange:i}));const{__:Pt}=wp.i18n,{Component:Rt,Fragment:Nt}=wp.element,{RangeControl:Dt}=wp.components;var Ot=class extends Rt{constructor({attributes:t}){super(...arguments);const e="string"==typeof this.props.attrs||this.props.attrs instanceof String?JSON.parse(this.props.attrs):this.props.attrs;this.state=e,this.update=this.update.bind(this)}update(t,e){this.setState(t=>({...t,typography:i}));let i=this.state;i[t]=e,this.setState(t=>i),this.props.updateAttribute(i)}render(){const{color:t,opacity:e}=this.state;return React.createElement(Nt,null,React.createElement(_t,{label:Pt("Overlayer color","coming-soon-blocks"),colorValue:t,onChange:t=>this.update("color",t)}),React.createElement(Dt,{label:Pt("Overlayer Opacity","coming-soon-blocks"),value:e,onChange:t=>this.update("opacity",t),min:0,max:100,step:5}))}};const{__:At}=wp.i18n,It="pixelthrone/comingsoon--temp-01",Lt=At("Template 1","coming-soon-blocks"),Mt=[At("Conteudo","coming-soon-blocks")],Bt=["image"],{__:zt}=wp.i18n,{Component:Ft,Fragment:Wt}=wp.element,{RichText:$t,InspectorControls:Ut,PanelColorSettings:Jt}=wp.editor,{RangeControl:jt,DropZone:Ht,PanelBody:Vt,SelectControl:Gt}=wp.components;var qt=class extends Ft{constructor({attributes:t}){super(...arguments),this.state={overlay:{color:this.props.attributes.overlayColor,opacity:this.props.attributes.overlayOpacity},bodyTypo:JSON.parse(this.props.attributes.bodyTypo),titleTypo:JSON.parse(this.props.attributes.titleTypo),subtitleTypo:JSON.parse(this.props.attributes.subtitleTypo)},pt(this.state.bodyTypo),pt(this.state.titleTypo),pt(this.state.subtitleTypo),this.editorCssStylePrint=this.editorCssStylePrint.bind(this)}editorCssStylePrint(){const{bodyTypo:t,titleTypo:e,subtitleTypo:i}=this.state,{clientId:n}=this.props,o=(t,e)=>{let i="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",i="italic"),o.includes("regular")&&(o="normal"),`div[data-block="${n}"] main .-${e} {\n\t\t\t\t\t\tfont-family: ${t.fontfamily};\n\t\t\t\t\t\tfont-size: ${t.desktop.fontsize}px;\n\t\t\t\t\t\tfont-weight: ${o};\n\t\t\t\t\t\tfont-style: ${i};\n\t\t\t\t\t\tline-height: ${t.desktop.lineheight}%;\n\t\t\t\t\t\tletter-spacing: ${t.desktop.letterspacing}px;\n\t\t\t\t\t}`};return React.createElement("div",{id:`block-style--${n}`,dangerouslySetInnerHTML:{__html:`\n\t\t\t\t<style>\n\t\t\t\t${o(t,"body__typography")}\n\t\t\t\t${o(e,"title__typography")}\n\t\t\t\t${o(i,"subtitle__typography")}\n\t\t\t\t</style>\n\t\t\t\t`}})}render(){const{bodyTypo:t,titleTypo:e,subtitleTypo:i}=this.state,{attributes:{titleText:n,subTitleText:o,descriptionText:a,copyrightText:s,logoID:r,logoURL:c,logoMaxWidth:p,logoAlign:h,textColor:u,overlayColor:m,overlayOpacity:g,networks:f,background:v},className:y,setAttributes:b}=this.props;return React.createElement(Wt,null,React.createElement(Ut,null,React.createElement(Vt,{title:zt("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Ot,{attrs:{color:m,opacity:g},updateAttribute:t=>{this.setState(e=>({...e,overlay:{color:t.color,opacity:t.opacity}})),b({overlayColor:t.color,overlayOpacity:t.opacity})}}),React.createElement(I,{attributes:v,updateAttributes:t=>{b({background:t})}})),React.createElement(Vt,{title:zt("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(jt,{label:zt("Max Logo Width (px)","coming-soon-blocks"),value:p,onChange:t=>b({logoMaxWidth:t}),min:30,max:500,step:5}),React.createElement(Gt,{label:zt("Alignment:","coming-soon-blocks"),value:h,onChange:t=>b({logoAlign:t}),options:[{value:"left",label:zt("Left","coming-soon-blocks")},{value:"center",label:zt("Center","coming-soon-blocks")},{value:"right",label:zt("Right","coming-soon-blocks")}]})),React.createElement(Jt,{title:zt("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:u,colors:d,onChange:t=>b({textColor:t}),label:zt("Text color","coming-soon-blocks")}]},React.createElement("label",{className:"single-field-label"},zt("Fonts","coming-soon-blocks")),React.createElement(T,{plan:"professional"},React.createElement(ht,{title:zt("Title","coming-soon-blocks"),typography:e,updated:t=>{this.setState(e=>({...e,titleTypo:t})),b({titleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:zt("Subtitle","coming-soon-blocks"),typography:i,updated:t=>{this.setState(e=>({...e,subtitleTypo:t})),b({subtitleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:zt("Body","coming-soon-blocks"),typography:t,updated:t=>{this.setState(e=>({...e,bodyTypo:t})),b({bodyTypo:JSON.stringify(t)})}})))),React.createElement("main",{"data-block":It,className:y},React.createElement("div",{className:"content__container",style:{color:u}},React.createElement("div",{className:"brand__wrapper"},React.createElement(l,{onSelect:t=>{b({logoURL:t.url,logoID:t.id})},allowedMediaTypes:Bt,logoAttrs:{id:r,url:c},style:{maxWidth:`${p}px`},align:h})),React.createElement("div",{className:"title__wrapper"},React.createElement($t,{tagName:"h1",className:"-title__typography",value:n,placeholder:zt("Title","coming-soon-blocks"),onChange:t=>b({titleText:t})})),React.createElement("div",{className:"subtitle__wrapper"},React.createElement($t,{tagName:"h2",className:"-subtitle__typography",value:o,placeholder:zt("Subtitle","coming-soon-blocks"),onChange:t=>b({subTitleText:t})})),React.createElement("div",{className:"description__wrapper -body__typography"},React.createElement($t,{tagName:"p",value:a,placeholder:zt("Description","coming-soon-blocks"),onChange:t=>b({descriptionText:t})}),React.createElement($t,{tagName:"p",value:s,className:"copyright",placeholder:zt("Copyright","coming-soon-blocks"),onChange:t=>b({copyrightText:t})})),React.createElement("div",{className:"social__wrapper"},React.createElement(w,{networks:f,setNetworks:t=>b({networks:t}),position:"top left"}))),React.createElement(bt,{attrs:this.state.overlay}),React.createElement(kt,{background:v})),this.editorCssStylePrint())}};const{registerBlockType:Yt}=wp.blocks;Yt(It,{title:Lt,icon:"admin-generic",keywords:Mt,category:"layout",supports:{align:["full"]},edit:qt,save:()=>null});i(36),i(37);const{__:Xt}=wp.i18n,Kt="pixelthrone/comingsoon--temp-02",Qt=Xt("Template 2","coming-soon-blocks"),Zt=[Xt("Conteudo","coming-soon-blocks")],te=["image"],{__:ee}=wp.i18n,{Component:ie,Fragment:ne}=wp.element,{RichText:oe,InspectorControls:ae,PanelColorSettings:se}=wp.editor,{RangeControl:re,DropZone:le,PanelBody:ce,SelectControl:de}=wp.components;var pe=class extends ie{constructor({attributes:t}){super(...arguments),this.state={bodyTypo:JSON.parse(this.props.attributes.bodyTypo),logo:JSON.parse(this.props.attributes.logo),overlay:JSON.parse(this.props.attributes.overlay)},pt(this.state.bodyTypo),this.editorCssStylePrint=this.editorCssStylePrint.bind(this)}editorCssStylePrint(){const{bodyTypo:t}=this.state,{clientId:e,attributes:{textColor:i}}=this.props;return React.createElement("div",{id:`block-style--${e}`,dangerouslySetInnerHTML:{__html:`\n\t\t\t\t<style>\n\t\t\t\t${((t,i)=>{let n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),`div[data-block="${e}"] main .-${i} {\n\t\t\t\t\t\tfont-family: ${t.fontfamily};\n\t\t\t\t\t\tfont-size: ${t.desktop.fontsize}px;\n\t\t\t\t\t\tfont-weight: ${o};\n\t\t\t\t\t\tfont-style: ${n};\n\t\t\t\t\t\tline-height: ${t.desktop.lineheight}%;\n\t\t\t\t\t\tletter-spacing: ${t.desktop.letterspacing}px;\n\t\t\t\t\t}`})(t,"body__typography")}\n\t\t\t\t${`div[data-block="${e}"] main p {\n\t\t\t\t\t\tcolor: ${i};\n\t\t\t\t\t}`}\n\t\t\t\t</style>\n\t\t\t\t`}})}render(){const{attributes:{logo:t,logoMaxWidth:e,additionalText:i,copyrightText:n,textColor:o,overlay:a,background:s},className:r,setAttributes:c}=this.props;return React.createElement(ne,null,React.createElement(ae,null,React.createElement(ce,{title:ee("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Ot,{attrs:a,updateAttribute:t=>{c({overlay:JSON.stringify(t)}),this.setState((e,i)=>({...e,overlay:t}))}}),React.createElement(I,{attributes:s,updateAttributes:t=>{c({background:t})}})),React.createElement(ce,{title:ee("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(re,{label:ee("Max Logo Width (px)","coming-soon-blocks"),value:e,onChange:t=>c({logoMaxWidth:t}),min:30,max:500,step:5})),React.createElement(se,{title:ee("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:o,colors:d,onChange:t=>{c({textColor:t}),console.log(t)},label:ee("Text color","coming-soon-blocks")}]},React.createElement(T,{plan:"professional"},React.createElement("label",{className:"single-field-label"},ee("Fonts","coming-soon-blocks")),React.createElement(ht,{title:ee("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:t=>{this.setState(e=>({...e,bodyTypo:t})),c({bodyTypo:JSON.stringify(t)})}})))),React.createElement("main",{"data-block":Kt,className:r},React.createElement("div",{className:"brand__wrapper"},React.createElement(l,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,logo:e})),c({logo:JSON.stringify(e)})},logoAttrs:this.state.logo,allowedMediaTypes:te,style:{maxWidth:`${e}px`},align:"center"}),React.createElement("span",{className:"-body__typography additional-text__wrapper"},React.createElement(oe,{tagName:"p",value:i,placeholder:ee("Additional text, leave empty if you do not want to use.","coming-soon-blocks"),onChange:t=>c({additionalText:t})}))),React.createElement("div",{className:"copyright__wrapper"},React.createElement(oe,{tagName:"p",value:n,className:"-body__typography",placeholder:ee("Copyright","coming-soon-blocks"),onChange:t=>c({copyrightText:t})})),React.createElement(bt,{attrs:this.state.overlay}),React.createElement(kt,{background:s})),this.editorCssStylePrint())}};const{registerBlockType:he}=wp.blocks;he(Kt,{title:Qt,icon:"admin-generic",keywords:Zt,category:"layout",supports:{align:["full"]},edit:pe,save:()=>null});i(38),i(39);const{__:ue}=wp.i18n,me="pixelthrone/comingsoon--temp-03",ge=ue("Template 3","coming-soon-blocks"),fe=[ue("Conteudo","coming-soon-blocks")],ve=["image"],{__:ye}=wp.i18n,{Component:be,Fragment:Ee}=wp.element,{RichText:ke,InspectorControls:xe,PanelColorSettings:we}=wp.editor,{RangeControl:Se,PanelBody:Ce}=wp.components;var Te=class extends be{constructor({attributes:t}){super(...arguments),this.state={titleTypo:JSON.parse(this.props.attributes.titleTypo),subtitleTypo:JSON.parse(this.props.attributes.subtitleTypo),bodyTypo:JSON.parse(this.props.attributes.bodyTypo),logo:JSON.parse(this.props.attributes.logo),overlay:JSON.parse(this.props.attributes.overlay)},pt(this.state.titleTypo),pt(this.state.subtitleTypo),pt(this.state.bodyTypo),this.editorCssStylePrint=this.editorCssStylePrint.bind(this)}editorCssStylePrint(){const{titleTypo:t,subtitleTypo:e,bodyTypo:i}=this.state,{clientId:n,attributes:{textColor:o}}=this.props,a=(t,e)=>{let i="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",i="italic"),o.includes("regular")&&(o="normal"),`div[data-block="${n}"] main .-${e} {\n\t\t\t\t\t\tfont-family: ${t.fontfamily};\n\t\t\t\t\t\tfont-size: ${t.desktop.fontsize}px;\n\t\t\t\t\t\tfont-weight: ${o};\n\t\t\t\t\t\tfont-style: ${i};\n\t\t\t\t\t\tline-height: ${t.desktop.lineheight}%;\n\t\t\t\t\t\tletter-spacing: ${t.desktop.letterspacing}px;\n\t\t\t\t\t}`};return React.createElement("div",{id:`block-style--${n}`,dangerouslySetInnerHTML:{__html:`\n\t\t\t\t<style>\n\t\t\t\t${a(t,"title__typography")}\n\t\t\t\t${a(e,"subtitle__typography")}\n\t\t\t\t${a(i,"body__typography")}\n\t\t\t\t${`div[data-block="${n}"] main {\n\t\t\t\t\t\tcolor: ${o};\n\t\t\t\t\t}`}\n\t\t\t\t</style>\n\t\t\t\t`}})}render(){const{attributes:{logoMaxWidth:t,networks:e,contentMaxWidth:i,titleText:n,subtitleText:o,copyrightText:a,textColor:s,overlay:r,background:c},className:p,setAttributes:h}=this.props;return React.createElement(Ee,null,React.createElement(xe,null,React.createElement(Ce,{title:ye("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Ot,{attrs:r,updateAttribute:t=>{h({overlay:JSON.stringify(t)}),this.setState((e,i)=>({...e,overlay:t}))}}),React.createElement(I,{attributes:c,updateAttributes:t=>{h({background:t})}})),React.createElement(Ce,{title:ye("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Se,{label:ye("Max Logo Width (px)","coming-soon-blocks"),value:t,onChange:t=>h({logoMaxWidth:t}),min:30,max:500,step:5})),React.createElement(we,{title:ye("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:s,colors:d,onChange:t=>{h({textColor:t}),console.log(t)},label:ye("Text color","coming-soon-blocks")}]},React.createElement(Se,{label:ye("Max Content Width (px)","coming-soon-blocks"),value:i,onChange:t=>h({contentMaxWidth:t}),min:100,max:1200,step:5}),React.createElement(T,{plan:"professional"},React.createElement("label",{className:"single-field-label"},ye("Fonts","coming-soon-blocks")),React.createElement(ht,{title:ye("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:t=>{this.setState(e=>({...e,titleTypo:t})),h({titleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:ye("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:t=>{this.setState(e=>({...e,subtitleTypo:t})),h({subtitleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:ye("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:t=>{this.setState(e=>({...e,bodyTypo:t})),h({bodyTypo:JSON.stringify(t)})}})))),React.createElement("main",{"data-block":me,className:p},React.createElement("div",{className:"brand__wrapper"},React.createElement(l,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,logo:e})),h({logo:JSON.stringify(e)})},logoAttrs:this.state.logo,allowedMediaTypes:ve,style:{maxWidth:`${t}px`},align:"center"})),React.createElement("div",{className:"content__wrapper",style:{maxWidth:`${i}px`}},React.createElement("div",{className:"social__wrapper"},React.createElement(w,{networks:e,setNetworks:t=>h({networks:t}),position:"top left"})),React.createElement(ke,{tagName:"h1",value:n,className:"-title__typography",placeholder:ye("Say something about the page ...","coming-soon-blocks"),onChange:t=>h({titleText:t})}),React.createElement(ke,{tagName:"h3",value:o,className:"-subtitle__typography",placeholder:ye("Subtitle goes here...","coming-soon-blocks"),onChange:t=>h({subtitleText:t})}),React.createElement(ke,{tagName:"p",value:a,className:"-body__typography",placeholder:ye("© 2018...","coming-soon-blocks"),onChange:t=>h({copyrightText:t})})),React.createElement(bt,{attrs:this.state.overlay}),React.createElement(kt,{background:c})),this.editorCssStylePrint())}};const{registerBlockType:_e}=wp.blocks;_e(me,{title:ge,icon:"admin-generic",keywords:fe,category:"layout",supports:{align:["full"]},edit:Te,save:()=>null});i(40),i(41);const{__:Pe}=wp.i18n,Re="pixelthrone/comingsoon--temp-04",Ne=Pe("Template 4","coming-soon-blocks"),De=[Pe("Conteudo","coming-soon-blocks")],Oe=["image"],{__:Ae}=wp.i18n,{Component:Ie,Fragment:Le}=wp.element,{RichText:Me,InspectorControls:Be,PanelColorSettings:ze}=wp.editor,{RangeControl:Fe,PanelBody:We}=wp.components;var $e=class extends Ie{constructor({attributes:t}){super(...arguments),this.state={titleTypo:JSON.parse(this.props.attributes.titleTypo),subtitleTypo:JSON.parse(this.props.attributes.subtitleTypo),bodyTypo:JSON.parse(this.props.attributes.bodyTypo),logo:JSON.parse(this.props.attributes.logo),overlay:JSON.parse(this.props.attributes.overlay)},pt(this.state.titleTypo),pt(this.state.subtitleTypo),pt(this.state.bodyTypo),this.editorCssStylePrint=this.editorCssStylePrint.bind(this)}editorCssStylePrint(){const{titleTypo:t,subtitleTypo:e,bodyTypo:i}=this.state,{clientId:n,attributes:{textColor:o}}=this.props,a=(t,e)=>{let i="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",i="italic"),o.includes("regular")&&(o="normal"),`div[data-block="${n}"] main .-${e} {\n\t\t\t\t\t\tfont-family: ${t.fontfamily};\n\t\t\t\t\t\tfont-size: ${t.desktop.fontsize}px;\n\t\t\t\t\t\tfont-weight: ${o};\n\t\t\t\t\t\tfont-style: ${i};\n\t\t\t\t\t\tline-height: ${t.desktop.lineheight}%;\n\t\t\t\t\t\tletter-spacing: ${t.desktop.letterspacing}px;\n\t\t\t\t\t}`};return React.createElement("div",{id:`block-style--${n}`,dangerouslySetInnerHTML:{__html:`\n\t\t\t\t<style>\n\t\t\t\t${a(t,"title__typography")}\n\t\t\t\t${a(e,"subtitle__typography")}\n\t\t\t\t${a(i,"body__typography")}\n\t\t\t\t${`div[data-block="${n}"] main {\n\t\t\t\t\t\tcolor: ${o};\n\t\t\t\t\t}`}\n\t\t\t\t</style>\n\t\t\t\t`}})}render(){const{attributes:{logoMaxWidth:t,networks:e,contentMaxWidth:i,titleText:n,additionalText:o,subtitleText:a,networksText:s,copyrightText:r,textColor:c,overlay:p,background:h},className:u,setAttributes:m}=this.props;return React.createElement(Le,null,React.createElement(Be,null,React.createElement(We,{title:Ae("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Ot,{attrs:p,updateAttribute:t=>{m({overlay:JSON.stringify(t)}),this.setState((e,i)=>({...e,overlay:t}))}}),React.createElement(I,{attributes:h,updateAttributes:t=>{m({background:t})}})),React.createElement(We,{title:Ae("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Fe,{label:Ae("Max Logo Width (px)","coming-soon-blocks"),value:t,onChange:t=>m({logoMaxWidth:t}),min:30,max:500,step:5})),React.createElement(ze,{title:Ae("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:c,colors:d,onChange:t=>{m({textColor:t}),console.log(t)},label:Ae("Text color","coming-soon-blocks")}]},React.createElement(Fe,{label:Ae("Max Content Width (px)","coming-soon-blocks"),value:i,onChange:t=>m({contentMaxWidth:t}),min:100,max:1200,step:5}),React.createElement(T,{plan:"professional"},React.createElement("label",{className:"single-field-label"},Ae("Fonts","coming-soon-blocks")),React.createElement(ht,{title:Ae("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:t=>{this.setState(e=>({...e,titleTypo:t})),m({titleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:Ae("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:t=>{this.setState(e=>({...e,subtitleTypo:t})),m({subtitleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:Ae("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:t=>{this.setState(e=>({...e,bodyTypo:t})),m({bodyTypo:JSON.stringify(t)})}})))),React.createElement("main",{"data-block":Re,className:u},React.createElement("div",{className:"top-content__wrapper"}),React.createElement("div",{className:"middle-content__wrapper",style:{maxWidth:`${i}px`}},React.createElement(l,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,logo:e})),m({logo:JSON.stringify(e)})},logoAttrs:this.state.logo,allowedMediaTypes:Oe,style:{maxWidth:`${t}px`},align:"center"}),React.createElement(Me,{tagName:"h3",value:a,className:"-subtitle__typography",placeholder:Ae("Subtitle goes here...","coming-soon-blocks"),onChange:t=>m({subtitleText:t})}),React.createElement(Me,{tagName:"h1",value:n,className:"-title__typography",placeholder:Ae("Say something about the page ...","coming-soon-blocks"),onChange:t=>m({titleText:t})}),React.createElement("span",{className:"-body__typography additional-text__wrapper"},React.createElement(Me,{tagName:"p",value:o,placeholder:Ae("Additional text, leave empty if you do not want to use.","coming-soon-blocks"),onChange:t=>m({additionalText:t})}))),React.createElement("div",{className:"bottom-content__wrapper"},React.createElement(Me,{tagName:"h3",value:s,className:"-subtitle__typography",placeholder:Ae("Title","coming-soon-blocks"),onChange:t=>m({networksText:t})}),React.createElement("div",{className:"social__wrapper"},React.createElement(w,{networks:e,setNetworks:t=>m({networks:t}),position:"top left"})),React.createElement(Me,{tagName:"p",value:r,className:"-body__typography",placeholder:Ae("© 2018...","coming-soon-blocks"),onChange:t=>m({copyrightText:t})})),React.createElement(bt,{attrs:this.state.overlay}),React.createElement(kt,{background:h})),this.editorCssStylePrint())}};const{registerBlockType:Ue}=wp.blocks;Ue(Re,{title:Ne,icon:"admin-generic",keywords:De,category:"layout",supports:{align:["full"]},edit:$e,save:()=>null});i(42),i(43);const{__:Je}=wp.i18n,je="pixelthrone/comingsoon--temp-05",He=Je("Template 5","coming-soon-blocks"),Ve=[Je("Conteudo","coming-soon-blocks")],Ge=["image"],{__:qe}=wp.i18n,{Component:Ye,Fragment:Xe}=wp.element,{RichText:Ke,InspectorControls:Qe,PanelColorSettings:Ze}=wp.editor,{RangeControl:ti,PanelBody:ei}=wp.components;var ii=class extends Ye{constructor({attributes:t}){super(...arguments),this.state={titleTypo:JSON.parse(this.props.attributes.titleTypo),subtitleTypo:JSON.parse(this.props.attributes.subtitleTypo),bodyTypo:JSON.parse(this.props.attributes.bodyTypo),logo:JSON.parse(this.props.attributes.logo),overlay:JSON.parse(this.props.attributes.overlay)},pt(this.state.titleTypo),pt(this.state.subtitleTypo),pt(this.state.bodyTypo),this.editorCssStylePrint=this.editorCssStylePrint.bind(this)}editorCssStylePrint(){const{titleTypo:t,subtitleTypo:e,bodyTypo:i}=this.state,{clientId:n,attributes:{textColor:o,titleColor:a}}=this.props,s=(t,e)=>{let i="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",i="italic"),o.includes("regular")&&(o="normal"),`div[data-block="${n}"] main .-${e} {\n\t\t\t\t\t\tfont-family: ${t.fontfamily};\n\t\t\t\t\t\tfont-size: ${t.desktop.fontsize}px;\n\t\t\t\t\t\tfont-weight: ${o};\n\t\t\t\t\t\tfont-style: ${i};\n\t\t\t\t\t\tline-height: ${t.desktop.lineheight}%;\n\t\t\t\t\t\tletter-spacing: ${t.desktop.letterspacing}px;\n\t\t\t\t\t}`};return React.createElement("div",{id:`block-style--${n}`,dangerouslySetInnerHTML:{__html:`\n\t\t\t\t<style>\n\t\t\t\t${s(t,"title__typography")}\n\t\t\t\t${s(e,"subtitle__typography")}\n\t\t\t\t${s(i,"body__typography")}\n\t\t\t\t${`div[data-block="${n}"] main { color: ${o}; }\n\t\t\t\t\tdiv[data-block="${n}"] main h1 { color: ${a}; }`}\n\t\t\t\t</style>\n\t\t\t\t`}})}render(){const{attributes:{logoMaxWidth:t,networks:e,contentMaxWidth:i,titleText:n,subtitleText:o,contactsText:a,copyrightText:s,titleColor:r,textColor:c,overlay:p,background:h},className:u,setAttributes:m}=this.props;return React.createElement(Xe,null,React.createElement(Qe,null,React.createElement(ei,{title:qe("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Ot,{attrs:p,updateAttribute:t=>{m({overlay:JSON.stringify(t)}),this.setState((e,i)=>({...e,overlay:t}))}}),React.createElement(I,{attributes:h,updateAttributes:t=>{m({background:t})}})),React.createElement(ei,{title:qe("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(ti,{label:qe("Max Logo Width (px)","coming-soon-blocks"),value:t,onChange:t=>m({logoMaxWidth:t}),min:30,max:500,step:5})),React.createElement(Ze,{title:qe("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:r,colors:d,onChange:t=>{m({titleColor:t}),console.log(t)},label:qe("Title color","coming-soon-blocks")},{value:c,colors:d,onChange:t=>{m({textColor:t}),console.log(t)},label:qe("Text color","coming-soon-blocks")}]},React.createElement(ti,{label:qe("Max Content Width (px)","coming-soon-blocks"),value:i,onChange:t=>m({contentMaxWidth:t}),min:100,max:1200,step:5}),React.createElement(T,{plan:"professional"},React.createElement("label",{className:"single-field-label"},qe("Fonts","coming-soon-blocks")),React.createElement(ht,{title:qe("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:t=>{this.setState(e=>({...e,titleTypo:t})),m({titleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:qe("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:t=>{this.setState(e=>({...e,subtitleTypo:t})),m({subtitleTypo:JSON.stringify(t)})}}),React.createElement(ht,{title:qe("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:t=>{this.setState(e=>({...e,bodyTypo:t})),m({bodyTypo:JSON.stringify(t)})}})))),React.createElement("main",{"data-block":je,className:u},React.createElement("div",{className:"top-content__wrapper"}),React.createElement("div",{className:"middle-content__wrapper"},React.createElement(Ke,{tagName:"h1",value:n,className:"-title__typography",placeholder:qe("Say something about the page ...","coming-soon-blocks"),onChange:t=>m({titleText:t}),style:{maxWidth:`${i}px`}})),React.createElement("div",{className:"bottom-content__wrapper"},React.createElement("div",null,React.createElement(l,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,logo:e})),m({logo:JSON.stringify(e)})},logoAttrs:this.state.logo,allowedMediaTypes:Ge,style:{maxWidth:`${i}px`},align:"center"}),React.createElement(Ke,{tagName:"h3",value:o,className:"-subtitle__typography",placeholder:qe("Title","coming-soon-blocks"),onChange:t=>m({subtitleText:t})}),React.createElement(Ke,{tagName:"p",value:a,className:"-body__typography contacts_wrapper",placeholder:qe("Leave empty to hide.","coming-soon-blocks"),onChange:t=>m({contactsText:t})}),React.createElement(Ke,{tagName:"p",value:s,className:"-body__typography copyright_wrapper",placeholder:qe("© 2018...","coming-soon-blocks"),onChange:t=>m({copyrightText:t})})),React.createElement("div",null,React.createElement("div",{className:"social__wrapper"},React.createElement(w,{networks:e,setNetworks:t=>m({networks:t}),position:"top left"})))),React.createElement(bt,{attrs:this.state.overlay}),React.createElement(kt,{background:h})),this.editorCssStylePrint())}};const{registerBlockType:ni}=wp.blocks;ni(je,{title:He,icon:"admin-generic",keywords:Ve,category:"layout",supports:{align:["full"]},edit:ii,save:()=>null});i(44);const{compose:oi}=wp.compose,{withDispatch:ai,withSelect:si}=wp.data,{Component:ri,Fragment:li}=wp.element,{createBlock:ci}=wp.blocks,{PluginSidebar:di,PluginSidebarMoreMenuItem:pi}=wp.editPost,{registerPlugin:hi}=wp.plugins,{__:ui}=wp.i18n,{Button:mi}=wp.components,gi=csblocks.baseURL,fi="pixelthrone--comingsoonblocks-templates";var vi=function(t){return M.a.createElement("svg",t,M.a.createElement("path",{d:"M10 1c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zm1-11H9v3H6v2h3v3h2v-3h3V9h-3V6z"}))};vi.defaultProps={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",viewBox:"0 0 20 20"};const yi=()=>M.a.createElement(pi,{target:fi},ui("Page Templates","coming-soon-blocks")),bi=({attr:t,action:e,index:i})=>M.a.createElement("div",{className:"template-thumb-button"},M.a.createElement("img",{src:gi+t.thumb.img}),M.a.createElement(mi,{onClick:i=>{i.preventDefault(),e(t.name)},isDefault:!0},ui("Add Template","coming-soon-blocks")));const Ei=oi(ai(t=>({insertBlock:t("core/editor").insertBlock,updateFeaturedImage(e){t("core/editor").editPost({featured_media:e})}})))(class extends ri{constructor({attributes:t}){super(...arguments),this.addTemplate=this.addTemplate.bind(this)}addTemplate(t){const e=ci(t,{});this.props.insertBlock(e)}render(){return M.a.createElement(li,null,M.a.createElement(yi,null),M.a.createElement(di,{name:fi,className:"teste",title:ui("Page Templates","coming-soon-blocks")},M.a.createElement("div",{"data-component":"sidebar--available-blocks"},Object.keys(n).map((t,e)=>M.a.createElement(bi,{attr:n[t],action:this.addTemplate,index:e,key:e})))))}});hi(fi,{icon:M.a.createElement(function(){return M.a.createElement("span",{className:"layout--header--show-template-button"},M.a.createElement(vi,{v:"3"}))},null),render:()=>M.a.createElement(Ei,null)});i(45);const{__:ki}=wp.i18n,{compose:xi}=wp.compose,{Component:wi,Fragment:Si}=wp.element,{withDispatch:Ci,withSelect:Ti}=wp.data,{PluginSidebar:_i,PluginSidebarMoreMenuItem:Pi}=wp.editPost,{registerPlugin:Ri}=wp.plugins,{TextControl:Ni,TextareaControl:Di,Spinner:Oi,PanelBody:Ai,PanelRow:Ii,ToggleControl:Li,DateTimePicker:Mi,Button:Bi,Dropdown:zi}=wp.components,Fi=csblocks.settings,Wi=csblocks.time_format,$i="pixelthrone--comingsoonblocks-settings";var Ui=function(t){return M.a.createElement("svg",t,M.a.createElement("path",{d:"M6.74 10.913c0 .603-.152 1.139-.455 1.607-.303.468-.74.831-1.31 1.09-.57.26-1.24.39-2.007.39-.64 0-1.178-.045-1.612-.136A5.942 5.942 0 0 1 0 13.388v-2.342a7.691 7.691 0 0 0 1.547.602 5.705 5.705 0 0 0 1.474.216c.386 0 .669-.067.849-.203.18-.135.27-.309.27-.522a.58.58 0 0 0-.109-.35c-.072-.099-.189-.2-.349-.302-.16-.102-.587-.31-1.28-.625-.627-.289-1.098-.568-1.412-.839a2.571 2.571 0 0 1-.697-.931C.14 7.742.066 7.327.066 6.848c0-.896.322-1.595.967-2.096C1.678 4.25 2.564 4 3.692 4c.996 0 2.012.233 3.047.699l-.796 2.029c-.9-.417-1.676-.626-2.33-.626-.338 0-.583.06-.737.18a.545.545 0 0 0-.23.446c0 .19.097.361.292.512.196.151.726.426 1.59.825.83.377 1.405.782 1.727 1.214.323.433.484.977.484 1.634zm6.91 2.954H7.938V4.14h5.712v2.109h-3.113v1.53h2.883v2.11h-2.883v1.836h3.113v2.142zm5.64 0h-2.599V6.289h-2.35v-2.15h7.293v2.15H19.29v7.578zm7.945 0h-2.6V6.289h-2.349v-2.15h7.292v2.15h-2.343v7.578zm3.43 0V4.14h2.612v9.727h-2.612zm13.564 0H40.82l-3.514-6.853h-.06c.084 1.078.126 1.9.126 2.468v4.385h-2.304V4.14h3.396l3.501 6.76h.04a39.594 39.594 0 0 1-.092-2.362V4.14h2.316v9.727zm5.654-5.695h4.153v5.243c-1.128.39-2.367.585-3.718.585-1.483 0-2.63-.435-3.439-1.304-.81-.87-1.214-2.11-1.214-3.72 0-1.57.443-2.791 1.33-3.665C47.88 4.437 49.121 4 50.718 4c.606 0 1.177.058 1.714.173a7.183 7.183 0 0 1 1.406.44l-.823 2.062a5.042 5.042 0 0 0-2.284-.52c-.759 0-1.346.25-1.76.75-.415.498-.622 1.211-.622 2.138 0 .91.187 1.603.563 2.08.375.476.915.715 1.622.715.386 0 .741-.038 1.066-.113V10.2h-1.718V8.17zM62 10.912c0 .604-.151 1.14-.454 1.608-.303.468-.74.831-1.31 1.09-.57.26-1.24.39-2.007.39-.64 0-1.178-.045-1.612-.136a5.942 5.942 0 0 1-1.356-.476v-2.342a7.691 7.691 0 0 0 1.546.602 5.705 5.705 0 0 0 1.475.216c.386 0 .669-.067.849-.203.18-.135.27-.309.27-.522a.58.58 0 0 0-.11-.35c-.072-.099-.188-.2-.348-.302-.16-.102-.587-.31-1.28-.625-.627-.289-1.098-.568-1.412-.839a2.571 2.571 0 0 1-.697-.931c-.152-.35-.227-.765-.227-1.244 0-.896.322-1.595.967-2.096C56.94 4.25 57.825 4 58.953 4c.996 0 2.012.233 3.047.699l-.796 2.029c-.9-.417-1.676-.626-2.33-.626-.338 0-.584.06-.737.18a.545.545 0 0 0-.23.446c0 .19.097.361.292.512.196.151.725.426 1.59.825.829.377 1.405.782 1.727 1.214.323.433.484.977.484 1.634z",fill:"#555D67",fillRule:"evenodd"}))};Ui.defaultProps={width:"62",height:"17",viewBox:"0 0 62 17",xmlns:"http://www.w3.org/2000/svg"};const Ji=()=>M.a.createElement(Pi,{target:$i},ki("SETTINGS","coming-soon-blocks"));const ji=xi(Ci(t=>{const{editPost:e}=t("core/editor"),{togglePinnedPluginItem:i}=t("core/edit-post");return{editPost:e,openLookAndFeelSidebar(){}}}),Ti(t=>{const{isSavingPost:e}=t("core/editor");return{isSaving:e()}}))(class extends wi{constructor(t){super(t),this.state=m(Fi,{status:!1,schedule:"",scheduleStartDate:"",scheduleEndDate:"",loginBypass:!1,passwordProtected:!1,password:"",googleAnalytics:"",othersAnalytics:"",CSSCode:"",JSCode:"",redirectMode:!1,cookieNotice:!1,redirectUrl:"http://"}),this.updatePost=this.updatePost.bind(this)}updatePost(){const{editPost:t}=this.props;setTimeout(()=>{const e=document.querySelector("#wp-admin-bar-pt_comingsoonblocks_toolbar_group");this.state.status?(e.classList.add("-coming-soon-enabled"),e.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-unlock"),e.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-lock"),document.querySelector("#menu-posts-coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-unlock"),document.querySelector("#menu-posts-coming-soon-blocks > a .dashicons-before").classList.add("dashicons-lock")):(e.classList.remove("-coming-soon-enabled"),e.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-lock"),e.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-unlock"),document.querySelector("#menu-posts-coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-lock"),document.querySelector("#menu-posts-coming-soon-blocks > a .dashicons-before").classList.add("dashicons-unlock")),t({comingsoonblocks_settings:JSON.stringify(this.state)})},200)}render(){let t="password";const{isSaving:e,openLookAndFeelSidebar:i}=this.props,{status:n,schedule:o,scheduleStartDate:a,scheduleEndDate:s,googleAnalytics:r,othersAnalytics:l,loginBypass:c,passwordProtected:d,password:p,CSSCode:h,JSCode:u,redirectMode:m,redirectUrl:g,cookieNotice:f}=this.state,v=/a(?!\\)/i.test(Wi.toLowerCase().replace(/\\\\/g,"").split("").reverse().join(""));return M.a.createElement(Si,null,M.a.createElement(Ji,null),M.a.createElement(_i,{name:$i,title:ki("SETTINGS","coming-soon-blocks")},M.a.createElement("div",{"data-component":"sidebar--settings-options","data-loading":e?"true":"false"},e&&M.a.createElement(Oi,null),M.a.createElement(Ai,{title:ki("GENERAL","coming-soon-blocks"),initialOpen:!0},M.a.createElement(Ii,{className:""},M.a.createElement(Li,{label:ki("Enable coming soon","coming-soon-blocks","coming-soon-blocks"),help:ki("By activating this option this page will appear to all the website visitors.","coming-soon-blocks"),checked:n,onChange:t=>this.setState(e=>({status:t}),this.updatePost())}),n&&M.a.createElement(T,{plan:"starter"},M.a.createElement(Li,{label:ki("Schedule Publish","coming-soon-blocks"),help:ki("By activating this option it is possible to set a date to show or hide the page.","coming-soon-blocks"),checked:o,onChange:t=>this.setState(e=>({schedule:t}),this.updatePost())})),o&&M.a.createElement(T,{plan:"starter"},M.a.createElement(Si,null,M.a.createElement(zi,{className:"editor-component--field-date-time-picker",contentClassName:"editor-component--dropdown-date-time-picker",position:"bottom right",renderToggle:({isOpen:t,onToggle:e})=>M.a.createElement("div",null,M.a.createElement("label",null,ki("Start:","coming-soon-blocks")),M.a.createElement(Bi,{isLink:!0,onClick:e,"aria-expanded":t},a||ki("Set date","coming-soon-blocks")),a&&M.a.createElement(Bi,{isDefault:!0,isSmall:!0,onClick:t=>this.setState(t=>({scheduleStartDate:""}),this.updatePost())},"✖")),renderContent:()=>M.a.createElement(Mi,{is12Hour:v,currentDate:a,onChange:t=>this.setState(e=>({scheduleStartDate:t}),this.updatePost())})}),M.a.createElement(zi,{className:"editor-component--field-date-time-picker",contentClassName:"editor-component--dropdown-date-time-picker",position:"bottom right",renderToggle:({isOpen:t,onToggle:e})=>M.a.createElement("div",null,M.a.createElement("label",null,ki("End:","coming-soon-blocks")),M.a.createElement(Bi,{isLink:!0,onClick:e,"aria-expanded":t},s||ki("Set date","coming-soon-blocks")),s&&M.a.createElement(Bi,{isDefault:!0,isSmall:!0,onClick:t=>this.setState(t=>({scheduleEndDate:""}),this.updatePost())},"✖")),renderContent:()=>M.a.createElement(Mi,{is12Hour:v,currentDate:s,onChange:t=>this.setState(e=>({scheduleEndDate:t}),this.updatePost())})}))))),M.a.createElement(Ai,{title:ki("ACCESS","coming-soon-blocks"),initialOpen:!1},M.a.createElement(Ii,{className:""},M.a.createElement(Li,{label:ki("Show normal website to logged in users?","coming-soon-blocks"),help:ki("Enable this option if you want logged in users to view the website normally while visitors see the maintenance page.","coming-soon-blocks"),checked:c,onChange:t=>this.setState(e=>({...e,loginBypass:t}),this.updatePost())}),M.a.createElement(Li,{label:ki("Redirect Mode","coming-soon-blocks"),help:ki('Enable this option if you want to move your visitors to a new page. We will define the header as "301 Moved Permanently"',"coming-soon-blocks"),checked:m,onChange:t=>this.setState(e=>({...e,redirectMode:t}),this.updatePost())}),m&&M.a.createElement(Ni,{label:ki("Redirect Url","coming-soon-blocks"),value:g,onChange:t=>this.setState(e=>({...e,redirectUrl:t}),this.updatePost())}),!m&&M.a.createElement(T,{plan:"starter"},M.a.createElement(Li,{label:ki("Password Protected","coming-soon-blocks"),help:ki("Protected with a password you choose. Only those with the password can view the site.","coming-soon-blocks"),checked:d,onChange:t=>this.setState(e=>({...e,passwordProtected:t}),this.updatePost())}),d&&M.a.createElement(Si,null,M.a.createElement(Ni,{label:ki("Password","coming-soon-blocks"),value:p,onChange:t=>this.setState(e=>({...e,password:t}),this.updatePost()),onFocus:e=>t="text",onblur:e=>t="password"}),M.a.createElement("p",{onClick:i,"data-editor-component":"notice","data-notice":"warning"},ki('To change the element colors see the sidebar "Look & Feel"',"coming-soon-blocks")))))),M.a.createElement(Ai,{title:ki("COOKIE NOTICE","coming-soon-blocks"),initialOpen:!1},M.a.createElement(Ii,{className:""},M.a.createElement(Li,{label:ki("Enable Cookie Notice","coming-soon-blocks"),help:ki("By activating this option a small notice will appear notifying the visitor that the site uses cookies.","coming-soon-blocks"),checked:f,onChange:t=>this.setState(e=>({cookieNotice:t}),this.updatePost())}))),M.a.createElement(Ai,{title:ki("CUSTOM CSS & JS","coming-soon-blocks"),initialOpen:!1},M.a.createElement(Ii,{className:""},M.a.createElement(Ni,{label:ki("Google Analytics Tracking ID","coming-soon-blocks"),value:r,onChange:t=>this.setState(e=>({...e,googleAnalytics:t}),this.updatePost())}),M.a.createElement(T,{plan:"professional"},M.a.createElement(Di,{label:ki("Tracking Pixel & 3rd Party Analytics Code","coming-soon-blocks"),help:ki("Copy&paste the complete code, including the opening and closing <script> tags.","coming-soon-blocks"),value:l,onChange:t=>this.setState(e=>({...e,othersAnalytics:t}),this.updatePost())})),M.a.createElement(T,{plan:"professional"},M.a.createElement(Di,{label:ki("JS","coming-soon-blocks"),rows:"6",help:ki("Copy&paste the complete code, including the opening and closing <script> tags.","coming-soon-blocks"),value:u,onChange:t=>this.setState(e=>({...e,JSCode:t}),this.updatePost())})),M.a.createElement(T,{plan:"professional"},M.a.createElement(Di,{label:ki("CSS","coming-soon-blocks"),rows:"6",value:h,onChange:t=>this.setState(e=>({...e,CSSCode:t}),this.updatePost())})))))))}});Ri($i,{icon:M.a.createElement(function(){return M.a.createElement(Ui,{className:"settings-button",v:"1"})},null),render:()=>M.a.createElement(ji,null)});i(46);const{__:Hi}=wp.i18n,{compose:Vi}=wp.compose,{Component:Gi,Fragment:qi}=wp.element,{withDispatch:Yi,withSelect:Xi}=wp.data,{PluginSidebar:Ki,PluginSidebarMoreMenuItem:Qi}=wp.editPost,{registerPlugin:Zi}=wp.plugins,{MediaUpload:tn}=wp.editor,{Button:en,TextControl:nn,TextareaControl:on,Spinner:an,PanelBody:sn,PanelRow:rn,ToggleControl:ln,Tooltip:cn}=wp.components,dn=csblocks.seo,pn="pixelthrone--comingsoonblocks-seo";var hn=function(t){return M.a.createElement("svg",t,M.a.createElement("path",{d:"M6.725 10.917a2.89 2.89 0 0 1-.453 1.605c-.302.467-.738.83-1.307 1.09-.569.258-1.237.388-2.003.388-.64 0-1.176-.045-1.609-.136A5.927 5.927 0 0 1 0 13.389v-2.34c.495.258 1.01.458 1.543.602a5.69 5.69 0 0 0 1.472.216c.385 0 .667-.067.847-.203a.625.625 0 0 0 .27-.521.579.579 0 0 0-.11-.349c-.072-.1-.188-.2-.347-.302-.16-.102-.586-.31-1.278-.625C1.771 9.58 1.302 9.3.988 9.03a2.568 2.568 0 0 1-.696-.93c-.15-.35-.226-.764-.226-1.243 0-.895.321-1.592.965-2.093.644-.5 1.528-.75 2.653-.75.994 0 2.008.232 3.041.697l-.794 2.027c-.898-.417-1.673-.625-2.325-.625-.337 0-.583.06-.736.18a.545.545 0 0 0-.23.445c0 .19.098.36.292.511.195.15.724.425 1.587.824.827.377 1.402.78 1.724 1.213.321.432.482.975.482 1.63zm6.897 2.95h-5.7V4.153h5.7v2.106h-3.106v1.528h2.876v2.107h-2.876v1.834h3.106v2.14zM24 8.997c0 1.634-.396 2.877-1.189 3.727-.792.85-1.953 1.276-3.48 1.276-1.507 0-2.662-.427-3.465-1.282-.804-.855-1.205-2.1-1.205-3.735 0-1.616.4-2.851 1.198-3.704C16.66 4.426 17.82 4 19.343 4c1.529 0 2.687.423 3.475 1.27C23.606 6.114 24 7.357 24 8.996zm-6.607 0c0 1.878.646 2.817 1.937 2.817.657 0 1.144-.228 1.462-.684.317-.457.476-1.168.476-2.133 0-.97-.161-1.687-.483-2.15-.322-.463-.802-.694-1.442-.694-1.3 0-1.95.948-1.95 2.844z",fill:"#555D67",fillRule:"evenodd"}))};hn.defaultProps={width:"24",height:"17",viewBox:"0 0 24 17",xmlns:"http://www.w3.org/2000/svg"};const un=()=>M.a.createElement(Qi,{target:pn},Hi("SEO","coming-soon-blocks"));const mn=Vi(Yi(t=>{const{editPost:e}=t("core/editor");return{editPost:e}}),Xi(t=>{const{getPostType:e}=t("core"),{getCurrentPostId:i,getEditedPostAttribute:n,isSavingPost:o}=t("core/editor");return{currentPostId:i(),postType:e(n("type")),isSaving:o()}}))(class extends Gi{constructor(t){super(t),this.state=m(dn,{title:"",description:"",keywords:"",author:"",copyright:"",facebook:{title:"",description:"",cover:{id:"",url:""}},twitter:{title:"",description:"",cover:{id:"",url:""}},serviceUnavailable:!1,noCache:!1}),this.updatePost=this.updatePost.bind(this)}updatePost(){const{editPost:t}=this.props;setTimeout(()=>{t({comingsoonblocks_seo:JSON.stringify(this.state)})},200)}render(){const{isSaving:t}=this.props,{title:e,description:i,keywords:n,author:o,copyright:a,facebook:s,twitter:r,serviceUnavailable:l,noCache:c}=this.state;return M.a.createElement(qi,null,M.a.createElement(un,null),M.a.createElement(Ki,{name:pn,title:Hi("SEO","coming-soon-blocks")},M.a.createElement("div",{"data-component":"sidebar--seo-options","data-loading":t?"true":"false"},t&&M.a.createElement(an,null),M.a.createElement(sn,{title:Hi("SEARCH ENGINES","coming-soon-blocks"),initialOpen:!0},M.a.createElement(rn,{className:""},M.a.createElement(nn,{label:Hi("Page Title","coming-soon-blocks"),value:e,onChange:t=>this.setState(e=>({...e,title:t}),this.updatePost())}),M.a.createElement(on,{label:Hi("Meta Description","coming-soon-blocks"),value:i,onChange:t=>this.setState(e=>({...e,description:t}),this.updatePost())}),M.a.createElement(nn,{label:Hi("keywords","coming-soon-blocks"),help:Hi("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:n,onChange:t=>this.setState(e=>({...e,keywords:t}),this.updatePost())}),M.a.createElement(nn,{label:Hi("Author","coming-soon-blocks"),help:Hi("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:o,onChange:t=>this.setState(e=>({...e,author:t}),this.updatePost())}),M.a.createElement(nn,{label:Hi("Copyright","coming-soon-blocks"),help:Hi("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:a,onChange:t=>this.setState(e=>({...e,copyright:t}),this.updatePost())}),M.a.createElement(ln,{label:Hi("Temporarily Pause Search Engines","coming-soon-blocks"),help:Hi("If your site is already indexed and you're just taking it down for a while, enable this option. It temporarily discourages search engines from crawling the site by telling them it's under construction by sending a 503 Service Unavailable response.","coming-soon-blocks"),checked:l,onChange:t=>this.setState(e=>({...e,serviceUnavailable:t}),this.updatePost())}),M.a.createElement(ln,{label:Hi("Send no-cache Headers","coming-soon-blocks"),help:Hi("If you don't want the coming soon page's preview to be cached by Facebook and other social media enable this option. Once you switch to the normal site social media preview (visible when sharing the site's link) will immediately be refreshed.","coming-soon-blocks"),checked:c,onChange:t=>this.setState(e=>({...e,noCache:t}),this.updatePost())}))),M.a.createElement(sn,{title:Hi("FACEBOOK","coming-soon-blocks"),initialOpen:!1},M.a.createElement(rn,null,M.a.createElement(nn,{label:Hi("Facebook Title","coming-soon-blocks"),value:s.title,onChange:t=>this.setState(e=>({...e,facebook:{...e.facebook,title:t}}),this.updatePost())}),M.a.createElement(on,{label:Hi("Facebook Description","coming-soon-blocks"),value:s.description,onChange:t=>this.setState(e=>({...e,facebook:{...e.facebook,description:t}}),this.updatePost())}),M.a.createElement("label",null,Hi("Facebook Cover Image","coming-soon-blocks")),M.a.createElement("p",null,M.a.createElement("small",null,"The recommended size is 1024 by 512 pixels.")),M.a.createElement(tn,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,facebook:{...t.facebook,cover:e}}),this.updatePost()),this.updatePost()},allowedTypes:["image"],value:s.cover.id,render:({open:t})=>M.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},s.cover.url&&M.a.createElement("img",{onClick:t,src:s.cover.url}),M.a.createElement(en,{onClick:t,isDefault:!0},s.cover.id?Hi("Replace image","coming-soon-blocks"):Hi("Add image","coming-soon-blocks")))}))),M.a.createElement(sn,{title:Hi("TWITTER","coming-soon-blocks"),initialOpen:!1},M.a.createElement(rn,null,M.a.createElement(nn,{label:Hi("Twitter Title","coming-soon-blocks"),value:r.title,onChange:t=>this.setState(e=>({...e,twitter:{...e.twitter,title:t}}),this.updatePost())}),M.a.createElement(on,{label:Hi("Twitter Description","coming-soon-blocks"),value:r.description,onChange:t=>this.setState(e=>({...e,twitter:{...e.twitter,description:t}}),this.updatePost())}),M.a.createElement("label",null,Hi("Twitter Cover Image","coming-soon-blocks")),M.a.createElement("p",null,M.a.createElement("small",null,"The recommended size is 1200 by 630 pixels.")),M.a.createElement(tn,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,twitter:{...t.twitter,cover:e}}),this.updatePost()),this.updatePost()},allowedTypes:["image"],value:r.cover.id,render:({open:t})=>M.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},r.cover.url&&M.a.createElement("img",{onClick:t,src:r.cover.url}),M.a.createElement(en,{onClick:t,isDefault:!0},r.cover.id?Hi("Replace image","coming-soon-blocks"):Hi("Add image","coming-soon-blocks")))}))))))}});Zi(pn,{icon:M.a.createElement(function(){return M.a.createElement(hn,{className:"seo-button",v:"1"})},null),render:()=>M.a.createElement(mn,null)});i(47);const{__:gn}=wp.i18n,{compose:fn}=wp.compose,{Component:vn,Fragment:yn}=wp.element,{withDispatch:bn,withSelect:En}=wp.data,{PluginSidebar:kn,PluginSidebarMoreMenuItem:xn}=wp.editPost,{registerPlugin:wn}=wp.plugins,{MediaUpload:Sn}=wp.editor,{Button:Cn,Spinner:Tn,PanelBody:_n,PanelRow:Pn,ToggleControl:Rn,ColorPalette:Nn,ColorIndicator:Dn}=wp.components,On="pixelthrone--comingsoonblocks-look-and-feel";var An=function(t){return M.a.createElement("svg",t,M.a.createElement("path",{d:"M0 13.426v-9.28h2.486v7.255H6.03v2.025H0zm15.578-4.653c0 1.562-.38 2.749-1.14 3.561-.759.813-1.87 1.22-3.335 1.22-1.443 0-2.55-.41-3.32-1.226-.77-.817-1.155-2.006-1.155-3.567 0-1.545.383-2.724 1.149-3.54C8.542 4.408 9.655 4 11.116 4c1.464 0 2.574.404 3.329 1.212.755.809 1.133 1.996 1.133 3.561zm-6.332 0c0 1.795.62 2.692 1.857 2.692.63 0 1.096-.218 1.4-.654.305-.436.457-1.115.457-2.038 0-.926-.155-1.61-.463-2.053-.308-.442-.769-.663-1.381-.663-1.247 0-1.87.905-1.87 2.716zm16.327 0c0 1.562-.38 2.749-1.139 3.561-.76.813-1.871 1.22-3.336 1.22-1.443 0-2.55-.41-3.32-1.226-.77-.817-1.155-2.006-1.155-3.567 0-1.545.383-2.724 1.149-3.54C18.538 4.408 19.651 4 21.111 4c1.464 0 2.574.404 3.33 1.212.755.809 1.132 1.996 1.132 3.561zm-6.331 0c0 1.795.618 2.692 1.856 2.692.63 0 1.096-.218 1.4-.654.305-.436.457-1.115.457-2.038 0-.926-.154-1.61-.463-2.053-.308-.442-.769-.663-1.381-.663-1.246 0-1.87.905-1.87 2.716zm15.577 4.653h-2.807l-1.818-3.548-.737.444v3.104H26.96v-9.28h2.498v4.03c.126-.249.38-.645.762-1.186l1.932-2.844h2.719l-2.902 4.158 2.851 5.122zm9.978 0l-.623-.647c-.378.241-.688.407-.929.498a4.07 4.07 0 0 1-.812.206c-.3.047-.643.07-1.029.07-.663 0-1.25-.114-1.759-.343-.51-.228-.9-.548-1.17-.958a2.49 2.49 0 0 1-.406-1.403c0-1.109.57-1.957 1.711-2.545a3.619 3.619 0 0 1-.607-.943 2.794 2.794 0 0 1-.217-1.127c0-.677.259-1.214.777-1.612.518-.398 1.23-.597 2.137-.597.885 0 1.574.198 2.067.594.494.396.74.934.74 1.615 0 .47-.133.905-.4 1.305-.266.4-.687.775-1.262 1.127l1.253 1.2a4.685 4.685 0 0 0 .654-1.651h2.556a8.414 8.414 0 0 1-.595 1.755 7.119 7.119 0 0 1-.916 1.508l2.014 1.948h-3.184zm-4.192-2.755c0 .267.094.485.283.654.189.17.439.254.75.254.238 0 .448-.032.628-.095.18-.064.32-.136.416-.216l-1.561-1.6c-.344.259-.516.593-.516 1.003zm1.857-4.437c0-.207-.06-.356-.18-.447a.722.722 0 0 0-.45-.137.718.718 0 0 0-.462.16c-.133.105-.199.274-.199.507 0 .317.185.645.554.984.24-.136.422-.297.548-.486.126-.188.189-.382.189-.58zm11.689 7.192h-2.449v-9.28h5.438v2.012h-2.99V7.93h2.757v2.012h-2.756v3.485zm9.687 0h-5.464v-9.28h5.464v2.012H60.86v1.46h2.756V9.63h-2.756v1.752h2.977v2.044zm6.798 0h-5.463v-9.28h5.463v2.012h-2.977v1.46h2.756V9.63H67.66v1.752h2.977v2.044zm1.335 0v-9.28h2.486v7.255H78v2.025h-6.03z",fill:"#555D67",fillRule:"evenodd"}))};An.defaultProps={width:"78",height:"17",viewBox:"0 0 78 17",xmlns:"http://www.w3.org/2000/svg"};const In=csblocks.lookandfeel,Ln=csblocks.settings;const Mn=()=>M.a.createElement(xn,{target:On},gn("LOOK AND FEEL","coming-soon-blocks"));const Bn=fn(bn(t=>{const{editPost:e}=t("core/editor");return{editPost:e}}),En(t=>{const{getEditedPostAttribute:e,isSavingPost:i}=t("core/editor");return{settingsSidebarOptions:e("comingsoonblocks_settings"),isSaving:i()}}))(class extends vn{constructor(t){super(t),this.state=m(In,{pluginBrand:!1,favicon:{id:"",url:""},unlock_button_color:"#282A2F",activeFont:"",typography:{}}),this.updatePost=this.updatePost.bind(this),this.showPasswordProtectedOptions=this.showPasswordProtectedOptions.bind(this)}updatePost(){const{editPost:t}=this.props;setTimeout(()=>{t({comingsoonblocks_lookandfeel:JSON.stringify(this.state)})},200)}showPasswordProtectedOptions(){const{settingsSidebarOptions:t}=this.props;return t?JSON.parse(t).passwordProtected:Ln.passwordProtected}render(){const{isSaving:t}=this.props,{favicon:e,pluginBrand:i,unlock_button_color:n}=this.state;return M.a.createElement(yn,null,M.a.createElement(Mn,null),M.a.createElement(kn,{name:On,title:gn("LOOK AND FEEL","coming-soon-blocks")},M.a.createElement("div",{"data-component":"sidebar--settings-options","data-loading":t?"true":"false"},t&&M.a.createElement(Tn,null),M.a.createElement(_n,{title:gn("ICONS","coming-soon-blocks"),initialOpen:!0},M.a.createElement(Pn,{className:""},M.a.createElement("label",null,gn("Favicon","coming-soon-blocks")),M.a.createElement(Sn,{onSelect:t=>{const e={id:t.id,url:t.url};this.setState(t=>({...t,favicon:e})),this.updatePost()},allowedTypes:["image"],value:e.id,render:({open:t})=>M.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},e.url&&M.a.createElement("img",{onClick:t,src:e.url}),M.a.createElement("span",null,M.a.createElement(Cn,{onClick:t,isDefault:!0},e.id?gn("Replace icon","coming-soon-blocks"):gn("Add icon","coming-soon-blocks"))))}))),this.showPasswordProtectedOptions()&&M.a.createElement(_n,{title:gn("PASSWORD PROTECTED","coming-soon-blocks"),initialOpen:!1},M.a.createElement(Pn,{className:""},M.a.createElement(T,{plan:"starter"},M.a.createElement("div",{"data-editor-component":"color-palette-base-control"},M.a.createElement("label",null,gn("Button Background","coming-soon-blocks")," ",M.a.createElement(Dn,{colorValue:n})),M.a.createElement(Nn,{colors:d,value:n,onChange:t=>this.setState(e=>({...e,unlock_button_color:t}),this.updatePost())}))))),M.a.createElement(_n,{title:gn("ADVANCED","coming-soon-blocks"),initialOpen:!1},M.a.createElement(Pn,{className:""},M.a.createElement(Rn,{label:gn("Show Some Love","coming-soon-blocks"),help:gn("Please help others learn about this free plugin by placing a small link in the footer. Thank you very much!","coming-soon-blocks"),checked:i,onChange:t=>this.setState(e=>({...e,pluginBrand:t}),this.updatePost())}))))))}});wn(On,{icon:M.a.createElement(function(){return M.a.createElement(An,{className:"look-and-feel-button",v:"2"})},null),render:()=>M.a.createElement(Bn,null)})},,function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){}]);
1
+ !function(t){var e={};function n(o){if(e[o])return e[o].exports;var i=e[o]={i:o,l:!1,exports:{}};return t[o].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(o,i,function(e){return t[e]}.bind(null,i));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=47)}([function(t,e){t.exports=React},function(t,e,n){var o,i;!function(r,a){o=[n(11)],void 0===(i=function(t){return function(t,e){"use strict";var n={extend:function(t,e){for(var n in e)t[n]=e[n];return t},modulo:function(t,e){return(t%e+e)%e}},o=Array.prototype.slice;n.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?o.call(t):[t]},n.removeFrom=function(t,e){var n=t.indexOf(e);-1!=n&&t.splice(n,1)},n.getParent=function(t,n){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,n))return t},n.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},n.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},n.filterFindElements=function(t,o){var i=[];return(t=n.makeArray(t)).forEach(function(t){if(t instanceof HTMLElement)if(o){e(t,o)&&i.push(t);for(var n=t.querySelectorAll(o),r=0;r<n.length;r++)i.push(n[r])}else i.push(t)}),i},n.debounceMethod=function(t,e,n){n=n||100;var o=t.prototype[e],i=e+"Timeout";t.prototype[e]=function(){var t=this[i];clearTimeout(t);var e=arguments,r=this;this[i]=setTimeout(function(){o.apply(r,e),delete r[i]},n)}},n.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},n.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,n){return e+"-"+n}).toLowerCase()};var i=t.console;return n.htmlInit=function(e,o){n.docReady(function(){var r=n.toDashed(o),a="data-"+r,l=document.querySelectorAll("["+a+"]"),s=document.querySelectorAll(".js-"+r),c=n.makeArray(l).concat(n.makeArray(s)),u=a+"-options",p=t.jQuery;c.forEach(function(t){var n,r=t.getAttribute(a)||t.getAttribute(u);try{n=r&&JSON.parse(r)}catch(e){return void(i&&i.error("Error parsing "+a+" on "+t.className+": "+e))}var l=new e(t,n);p&&p.data(t,o,l)})})},n}(r,t)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){var o,i;!function(r,a){o=[n(3),n(4),n(1),n(12),n(13),n(14)],void 0===(i=function(t,e,n,o,i,a){return function(t,e,n,o,i,r,a){"use strict";var l=t.jQuery,s=t.getComputedStyle,c=t.console;function u(t,e){for(t=o.makeArray(t);t.length;)e.appendChild(t.shift())}var p=0,d={};function h(t,e){var n=o.getQueryElement(t);if(n){if(this.element=n,this.element.flickityGUID){var i=d[this.element.flickityGUID];return i.option(e),i}l&&(this.$element=l(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e),this._create()}else c&&c.error("Bad element for Flickity: "+(n||t))}h.defaults={accessibility:!0,cellAlign:"center",freeScrollFriction:.075,friction:.28,namespaceJQueryEvents:!0,percentPosition:!0,resize:!0,selectedAttraction:.025,setGallerySize:!0},h.createMethods=[];var f=h.prototype;o.extend(f,e.prototype),f._create=function(){var e=this.guid=++p;for(var n in this.element.flickityGUID=e,d[e]=this,this.selectedIndex=0,this.restingFrames=0,this.x=0,this.velocity=0,this.originSide=this.options.rightToLeft?"right":"left",this.viewport=document.createElement("div"),this.viewport.className="flickity-viewport",this._createSlider(),(this.options.resize||this.options.watchCSS)&&t.addEventListener("resize",this),this.options.on){var o=this.options.on[n];this.on(n,o)}h.createMethods.forEach(function(t){this[t]()},this),this.options.watchCSS?this.watchCSS():this.activate()},f.option=function(t){o.extend(this.options,t)},f.activate=function(){if(!this.isActive){this.isActive=!0,this.element.classList.add("flickity-enabled"),this.options.rightToLeft&&this.element.classList.add("flickity-rtl"),this.getSize();var t,e=this._filterFindCellElements(this.element.children);u(e,this.slider),this.viewport.appendChild(this.slider),this.element.appendChild(this.viewport),this.reloadCells(),this.options.accessibility&&(this.element.tabIndex=0,this.element.addEventListener("keydown",this)),this.emitEvent("activate");var n=this.options.initialIndex;t=this.isInitActivated?this.selectedIndex:void 0!==n&&this.cells[n]?n:0,this.select(t,!1,!0),this.isInitActivated=!0,this.dispatchEvent("ready")}},f._createSlider=function(){var t=document.createElement("div");t.className="flickity-slider",t.style[this.originSide]=0,this.slider=t},f._filterFindCellElements=function(t){return o.filterFindElements(t,this.options.cellSelector)},f.reloadCells=function(){this.cells=this._makeCells(this.slider.children),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize()},f._makeCells=function(t){var e=this._filterFindCellElements(t),n=e.map(function(t){return new i(t,this)},this);return n},f.getLastCell=function(){return this.cells[this.cells.length-1]},f.getLastSlide=function(){return this.slides[this.slides.length-1]},f.positionCells=function(){this._sizeCells(this.cells),this._positionCells(0)},f._positionCells=function(t){t=t||0,this.maxCellHeight=t&&this.maxCellHeight||0;var e=0;if(t>0){var n=this.cells[t-1];e=n.x+n.size.outerWidth}for(var o=this.cells.length,i=t;i<o;i++){var r=this.cells[i];r.setPosition(e),e+=r.size.outerWidth,this.maxCellHeight=Math.max(r.size.outerHeight,this.maxCellHeight)}this.slideableWidth=e,this.updateSlides(),this._containSlides(),this.slidesWidth=o?this.getLastSlide().target-this.slides[0].target:0},f._sizeCells=function(t){t.forEach(function(t){t.getSize()})},f.updateSlides=function(){if(this.slides=[],this.cells.length){var t=new r(this);this.slides.push(t);var e="left"==this.originSide,n=e?"marginRight":"marginLeft",o=this._getCanCellFit();this.cells.forEach(function(e,i){if(t.cells.length){var a=t.outerWidth-t.firstMargin+(e.size.outerWidth-e.size[n]);o.call(this,i,a)?t.addCell(e):(t.updateTarget(),t=new r(this),this.slides.push(t),t.addCell(e))}else t.addCell(e)},this),t.updateTarget(),this.updateSelectedSlide()}},f._getCanCellFit=function(){var t=this.options.groupCells;if(!t)return function(){return!1};if("number"==typeof t){var e=parseInt(t,10);return function(t){return t%e!=0}}var n="string"==typeof t&&t.match(/^(\d+)%$/),o=n?parseInt(n[1],10)/100:1;return function(t,e){return e<=(this.size.innerWidth+1)*o}},f._init=f.reposition=function(){this.positionCells(),this.positionSliderAtSelected()},f.getSize=function(){this.size=n(this.element),this.setCellAlign(),this.cursorPosition=this.size.innerWidth*this.cellAlign};var m={center:{left:.5,right:.5},left:{left:0,right:1},right:{right:0,left:1}};f.setCellAlign=function(){var t=m[this.options.cellAlign];this.cellAlign=t?t[this.originSide]:this.options.cellAlign},f.setGallerySize=function(){if(this.options.setGallerySize){var t=this.options.adaptiveHeight&&this.selectedSlide?this.selectedSlide.height:this.maxCellHeight;this.viewport.style.height=t+"px"}},f._getWrapShiftCells=function(){if(this.options.wrapAround){this._unshiftCells(this.beforeShiftCells),this._unshiftCells(this.afterShiftCells);var t=this.cursorPosition,e=this.cells.length-1;this.beforeShiftCells=this._getGapCells(t,e,-1),t=this.size.innerWidth-this.cursorPosition,this.afterShiftCells=this._getGapCells(t,0,1)}},f._getGapCells=function(t,e,n){for(var o=[];t>0;){var i=this.cells[e];if(!i)break;o.push(i),e+=n,t-=i.size.outerWidth}return o},f._containSlides=function(){if(this.options.contain&&!this.options.wrapAround&&this.cells.length){var t=this.options.rightToLeft,e=t?"marginRight":"marginLeft",n=t?"marginLeft":"marginRight",o=this.slideableWidth-this.getLastCell().size[n],i=o<this.size.innerWidth,r=this.cursorPosition+this.cells[0].size[e],a=o-this.size.innerWidth*(1-this.cellAlign);this.slides.forEach(function(t){i?t.target=o*this.cellAlign:(t.target=Math.max(t.target,r),t.target=Math.min(t.target,a))},this)}},f.dispatchEvent=function(t,e,n){var o=e?[e].concat(n):n;if(this.emitEvent(t,o),l&&this.$element){var i=t+=this.options.namespaceJQueryEvents?".flickity":"";if(e){var r=l.Event(e);r.type=t,i=r}this.$element.trigger(i,n)}},f.select=function(t,e,n){if(this.isActive&&(t=parseInt(t,10),this._wrapSelect(t),(this.options.wrapAround||e)&&(t=o.modulo(t,this.slides.length)),this.slides[t])){var i=this.selectedIndex;this.selectedIndex=t,this.updateSelectedSlide(),n?this.positionSliderAtSelected():this.startAnimation(),this.options.adaptiveHeight&&this.setGallerySize(),this.dispatchEvent("select",null,[t]),t!=i&&this.dispatchEvent("change",null,[t]),this.dispatchEvent("cellSelect")}},f._wrapSelect=function(t){var e=this.slides.length;if(!(this.options.wrapAround&&e>1))return t;var n=o.modulo(t,e),i=Math.abs(n-this.selectedIndex),r=Math.abs(n+e-this.selectedIndex),a=Math.abs(n-e-this.selectedIndex);!this.isDragSelect&&r<i?t+=e:!this.isDragSelect&&a<i&&(t-=e),t<0?this.x-=this.slideableWidth:t>=e&&(this.x+=this.slideableWidth)},f.previous=function(t,e){this.select(this.selectedIndex-1,t,e)},f.next=function(t,e){this.select(this.selectedIndex+1,t,e)},f.updateSelectedSlide=function(){var t=this.slides[this.selectedIndex];t&&(this.unselectSelectedSlide(),this.selectedSlide=t,t.select(),this.selectedCells=t.cells,this.selectedElements=t.getCellElements(),this.selectedCell=t.cells[0],this.selectedElement=this.selectedElements[0])},f.unselectSelectedSlide=function(){this.selectedSlide&&this.selectedSlide.unselect()},f.selectCell=function(t,e,n){var o=this.queryCell(t);if(o){var i=this.getCellSlideIndex(o);this.select(i,e,n)}},f.getCellSlideIndex=function(t){for(var e=0;e<this.slides.length;e++)if(-1!=this.slides[e].cells.indexOf(t))return e},f.getCell=function(t){for(var e=0;e<this.cells.length;e++){var n=this.cells[e];if(n.element==t)return n}},f.getCells=function(t){var e=[];return(t=o.makeArray(t)).forEach(function(t){var n=this.getCell(t);n&&e.push(n)},this),e},f.getCellElements=function(){return this.cells.map(function(t){return t.element})},f.getParentCell=function(t){var e=this.getCell(t);return e||(t=o.getParent(t,".flickity-slider > *"),this.getCell(t))},f.getAdjacentCellElements=function(t,e){if(!t)return this.selectedSlide.getCellElements();e=void 0===e?this.selectedIndex:e;var n=this.slides.length;if(1+2*t>=n)return this.getCellElements();for(var i=[],r=e-t;r<=e+t;r++){var a=this.options.wrapAround?o.modulo(r,n):r,l=this.slides[a];l&&(i=i.concat(l.getCellElements()))}return i},f.queryCell=function(t){return"number"==typeof t?this.cells[t]:("string"==typeof t&&(t=this.element.querySelector(t)),this.getCell(t))},f.uiChange=function(){this.emitEvent("uiChange")},f.childUIPointerDown=function(t){this.emitEvent("childUIPointerDown",[t])},f.onresize=function(){this.watchCSS(),this.resize()},o.debounceMethod(h,"onresize",150),f.resize=function(){if(this.isActive){this.getSize(),this.options.wrapAround&&(this.x=o.modulo(this.x,this.slideableWidth)),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize(),this.emitEvent("resize");var t=this.selectedElements&&this.selectedElements[0];this.selectCell(t,!1,!0)}},f.watchCSS=function(){this.options.watchCSS&&(-1!=s(this.element,":after").content.indexOf("flickity")?this.activate():this.deactivate())},f.onkeydown=function(t){var e=document.activeElement&&document.activeElement!=this.element;if(this.options.accessibility&&!e){var n=h.keyboardHandlers[t.keyCode];n&&n.call(this)}},h.keyboardHandlers={37:function(){var t=this.options.rightToLeft?"next":"previous";this.uiChange(),this[t]()},39:function(){var t=this.options.rightToLeft?"previous":"next";this.uiChange(),this[t]()}},f.focus=function(){var e=t.pageYOffset;this.element.focus({preventScroll:!0}),t.pageYOffset!=e&&t.scrollTo(t.pageXOffset,e)},f.deactivate=function(){this.isActive&&(this.element.classList.remove("flickity-enabled"),this.element.classList.remove("flickity-rtl"),this.unselectSelectedSlide(),this.cells.forEach(function(t){t.destroy()}),this.element.removeChild(this.viewport),u(this.slider.children,this.element),this.options.accessibility&&(this.element.removeAttribute("tabIndex"),this.element.removeEventListener("keydown",this)),this.isActive=!1,this.emitEvent("deactivate"))},f.destroy=function(){this.deactivate(),t.removeEventListener("resize",this),this.emitEvent("destroy"),l&&this.$element&&l.removeData(this.element,"flickity"),delete this.element.flickityGUID,delete d[this.guid]},o.extend(f,a),h.data=function(t){var e=(t=o.getQueryElement(t))&&t.flickityGUID;return e&&d[e]},o.htmlInit(h,"flickity"),l&&l.bridget&&l.bridget("flickity",h);return h.setJQuery=function(t){l=t},h.Cell=i,h}(r,t,e,n,o,i,a)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){var o,i;"undefined"!=typeof window&&window,void 0===(i="function"==typeof(o=function(){"use strict";function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var n=this._events=this._events||{},o=n[t]=n[t]||[];return-1==o.indexOf(e)&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var n=this._onceEvents=this._onceEvents||{};return(n[t]=n[t]||{})[e]=!0,this}},e.off=function(t,e){var n=this._events&&this._events[t];if(n&&n.length){var o=n.indexOf(e);return-1!=o&&n.splice(o,1),this}},e.emitEvent=function(t,e){var n=this._events&&this._events[t];if(n&&n.length){n=n.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],i=0;i<n.length;i++){var r=n[i];o&&o[r]&&(this.off(t,r),delete o[r]),r.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t})?o.call(e,n,e,t):o)||(t.exports=i)},function(t,e,n){var o,i;
2
  /*!
3
  * getSize v2.0.3
4
  * measure size of elements
5
  * MIT license
6
+ */window,void 0===(i="function"==typeof(o=function(){"use strict";function t(t){var e=parseFloat(t),n=-1==t.indexOf("%")&&!isNaN(e);return n&&e}var e="undefined"==typeof console?function(){}:function(t){console.error(t)},n=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],o=n.length;function i(t){var n=getComputedStyle(t);return n||e("Style returned "+n+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),n}var r,a=!1;function l(e){if(function(){if(!a){a=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var n=document.body||document.documentElement;n.appendChild(e);var o=i(e);r=200==Math.round(t(o.width)),l.isBoxSizeOuter=r,n.removeChild(e)}}(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var s=i(e);if("none"==s.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<o;e++){var i=n[e];t[i]=0}return t}();var c={};c.width=e.offsetWidth,c.height=e.offsetHeight;for(var u=c.isBorderBox="border-box"==s.boxSizing,p=0;p<o;p++){var d=n[p],h=s[d],f=parseFloat(h);c[d]=isNaN(f)?0:f}var m=c.paddingLeft+c.paddingRight,g=c.paddingTop+c.paddingBottom,y=c.marginLeft+c.marginRight,b=c.marginTop+c.marginBottom,v=c.borderLeftWidth+c.borderRightWidth,k=c.borderTopWidth+c.borderBottomWidth,E=u&&r,w=t(s.width);!1!==w&&(c.width=w+(E?0:m+v));var x=t(s.height);return!1!==x&&(c.height=x+(E?0:g+k)),c.innerWidth=c.width-(m+v),c.innerHeight=c.height-(g+k),c.outerWidth=c.width+y,c.outerHeight=c.height+b,c}}return l})?o.call(e,n,e,t):o)||(t.exports=i)},function(t,e,n){var o,i;
7
  /*!
8
  * Unipointer v2.3.0
9
  * base class for doing one thing with pointer event
14
  * base class for doing one thing with pointer event
15
  * MIT license
16
  */
17
+ !function(r,a){o=[n(3)],void 0===(i=function(t){return function(t,e){"use strict";function n(){}var o=n.prototype=Object.create(e.prototype);o.bindStartEvent=function(t){this._bindStartEvent(t,!0)},o.unbindStartEvent=function(t){this._bindStartEvent(t,!1)},o._bindStartEvent=function(e,n){var o=(n=void 0===n||n)?"addEventListener":"removeEventListener",i="mousedown";t.PointerEvent?i="pointerdown":"ontouchstart"in t&&(i="touchstart"),e[o](i,this)},o.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},o.getTouch=function(t){for(var e=0;e<t.length;e++){var n=t[e];if(n.identifier==this.pointerIdentifier)return n}},o.onmousedown=function(t){var e=t.button;e&&0!==e&&1!==e||this._pointerDown(t,t)},o.ontouchstart=function(t){this._pointerDown(t,t.changedTouches[0])},o.onpointerdown=function(t){this._pointerDown(t,t)},o._pointerDown=function(t,e){t.button||this.isPointerDown||(this.isPointerDown=!0,this.pointerIdentifier=void 0!==e.pointerId?e.pointerId:e.identifier,this.pointerDown(t,e))},o.pointerDown=function(t,e){this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e])};var i={mousedown:["mousemove","mouseup"],touchstart:["touchmove","touchend","touchcancel"],pointerdown:["pointermove","pointerup","pointercancel"]};return o._bindPostStartEvents=function(e){if(e){var n=i[e.type];n.forEach(function(e){t.addEventListener(e,this)},this),this._boundPointerEvents=n}},o._unbindPostStartEvents=function(){this._boundPointerEvents&&(this._boundPointerEvents.forEach(function(e){t.removeEventListener(e,this)},this),delete this._boundPointerEvents)},o.onmousemove=function(t){this._pointerMove(t,t)},o.onpointermove=function(t){t.pointerId==this.pointerIdentifier&&this._pointerMove(t,t)},o.ontouchmove=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerMove(t,e)},o._pointerMove=function(t,e){this.pointerMove(t,e)},o.pointerMove=function(t,e){this.emitEvent("pointerMove",[t,e])},o.onmouseup=function(t){this._pointerUp(t,t)},o.onpointerup=function(t){t.pointerId==this.pointerIdentifier&&this._pointerUp(t,t)},o.ontouchend=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerUp(t,e)},o._pointerUp=function(t,e){this._pointerDone(),this.pointerUp(t,e)},o.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e])},o._pointerDone=function(){this._pointerReset(),this._unbindPostStartEvents(),this.pointerDone()},o._pointerReset=function(){this.isPointerDown=!1,delete this.pointerIdentifier},o.pointerDone=function(){},o.onpointercancel=function(t){t.pointerId==this.pointerIdentifier&&this._pointerCancel(t,t)},o.ontouchcancel=function(t){var e=this.getTouch(t.changedTouches);e&&this._pointerCancel(t,e)},o._pointerCancel=function(t,e){this._pointerDone(),this.pointerCancel(t,e)},o.pointerCancel=function(t,e){this.emitEvent("pointerCancel",[t,e])},n.getPointerPoint=function(t){return{x:t.pageX,y:t.pageY}},n}(r,t)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){var o,i;
18
  /*!
19
  * Tap listener v2.0.0
20
  * listens to taps
25
  * listens to taps
26
  * MIT license
27
  */
28
+ !function(r,a){o=[n(5)],void 0===(i=function(t){return function(t,e){"use strict";function n(t){this.bindTap(t)}var o=n.prototype=Object.create(e.prototype);return o.bindTap=function(t){t&&(this.unbindTap(),this.tapElement=t,this._bindStartEvent(t,!0))},o.unbindTap=function(){this.tapElement&&(this._bindStartEvent(this.tapElement,!0),delete this.tapElement)},o.pointerUp=function(n,o){if(!this.isIgnoringMouseUp||"mouseup"!=n.type){var i=e.getPointerPoint(o),r=this.tapElement.getBoundingClientRect(),a=t.pageXOffset,l=t.pageYOffset;if(i.x>=r.left+a&&i.x<=r.right+a&&i.y>=r.top+l&&i.y<=r.bottom+l&&this.emitEvent("tap",[n,o]),"mouseup"!=n.type){this.isIgnoringMouseUp=!0;var s=this;setTimeout(function(){delete s.isIgnoringMouseUp},400)}}},o.destroy=function(){this.pointerDone(),this.unbindTap()},n}(r,t)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){"use strict";e.a=function(t){var e=document.querySelector("#wp-admin-bar-pt_comingsoonblocks_toolbar_group");t?(e.classList.add("-coming-soon-enabled"),e.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-unlock"),e.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-lock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-unlock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.add("dashicons-lock")):(e.classList.remove("-coming-soon-enabled"),e.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-lock"),e.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-unlock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-lock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.add("dashicons-unlock"))}},function(t){t.exports=[{name:"pixelthrone/comingsoon--temp-03",slug:"temp-03",thumb:{name:"03",img:"/admin/blocks/_available/temp-03/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-04",slug:"temp-04",thumb:{name:"04",img:"/admin/blocks/_available/temp-04/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-05",slug:"temp-05",thumb:{name:"05",img:"/admin/blocks/_available/temp-05/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-07",slug:"temp-07",thumb:{name:"07",img:"/admin/blocks/_available/temp-07/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-08",slug:"temp-08",thumb:{name:"08",img:"/admin/blocks/_available/temp-08/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-02",slug:"temp-02",thumb:{name:"02",img:"/admin/blocks/_available/temp-02/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-06",slug:"temp-06",thumb:{name:"06",img:"/admin/blocks/_available/temp-06/media/thumb.jpg"},script:"",render_callback:!0},{name:"pixelthrone/comingsoon--temp-01",slug:"temp-01",thumb:{name:"01",img:"/admin/blocks/_available/temp-01/media/thumb.jpg"},script:"",render_callback:!0}]},,function(t,e,n){var o,i,r;
29
  /*!
30
  * Flickity v2.1.2
31
  * Touch, responsive, flickable carousels
35
  *
36
  * https://flickity.metafizzy.co
37
  * Copyright 2015-2018 Metafizzy
38
+ */window,i=[n(2),n(15),n(17),n(18),n(19),n(20),n(21)],void 0===(r="function"==typeof(o=function(t){return t})?o.apply(e,i):o)||(t.exports=r)},function(t,e,n){var o,i;!function(r,a){"use strict";void 0===(i="function"==typeof(o=a)?o.call(e,n,e,t):o)||(t.exports=i)}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],n=0;n<e.length;n++){var o=e[n]+"MatchesSelector";if(t[o])return o}}();return function(e,n){return e[t](n)}})},function(t,e,n){var o,i;window,o=[n(4)],void 0===(i=function(t){return function(t,e){"use strict";function n(t,e){this.element=t,this.parent=e,this.create()}var o=n.prototype;return o.create=function(){this.element.style.position="absolute",this.element.setAttribute("aria-selected","false"),this.x=0,this.shift=0},o.destroy=function(){this.element.style.position="";var t=this.parent.originSide;this.element.removeAttribute("aria-selected"),this.element.style[t]=""},o.getSize=function(){this.size=e(this.element)},o.setPosition=function(t){this.x=t,this.updateTarget(),this.renderPosition(t)},o.updateTarget=o.setDefaultTarget=function(){var t="left"==this.parent.originSide?"marginLeft":"marginRight";this.target=this.x+this.size[t]+this.size.width*this.parent.cellAlign},o.renderPosition=function(t){var e=this.parent.originSide;this.element.style[e]=this.parent.getPositionValue(t)},o.wrapShift=function(t){this.shift=t,this.renderPosition(this.x+this.parent.slideableWidth*t)},o.remove=function(){this.element.parentNode.removeChild(this.element)},n}(0,t)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;window,void 0===(i="function"==typeof(o=function(){"use strict";function t(t){this.parent=t,this.isOriginLeft="left"==t.originSide,this.cells=[],this.outerWidth=0,this.height=0}var e=t.prototype;return e.addCell=function(t){if(this.cells.push(t),this.outerWidth+=t.size.outerWidth,this.height=Math.max(t.size.outerHeight,this.height),1==this.cells.length){this.x=t.x;var e=this.isOriginLeft?"marginLeft":"marginRight";this.firstMargin=t.size[e]}},e.updateTarget=function(){var t=this.isOriginLeft?"marginRight":"marginLeft",e=this.getLastCell(),n=e?e.size[t]:0,o=this.outerWidth-(this.firstMargin+n);this.target=this.x+this.firstMargin+o*this.parent.cellAlign},e.getLastCell=function(){return this.cells[this.cells.length-1]},e.select=function(){this.changeSelected(!0)},e.unselect=function(){this.changeSelected(!1)},e.changeSelected=function(t){var e=t?"add":"remove";this.cells.forEach(function(n){n.element.classList[e]("is-selected"),n.element.setAttribute("aria-selected",t.toString())})},e.getCellElements=function(){return this.cells.map(function(t){return t.element})},t})?o.call(e,n,e,t):o)||(t.exports=i)},function(t,e,n){var o,i;window,o=[n(1)],void 0===(i=function(t){return function(t,e){"use strict";var n={startAnimation:function(){this.isAnimating||(this.isAnimating=!0,this.restingFrames=0,this.animate())},animate:function(){this.applyDragForce(),this.applySelectedAttraction();var t=this.x;if(this.integratePhysics(),this.positionSlider(),this.settle(t),this.isAnimating){var e=this;requestAnimationFrame(function(){e.animate()})}},positionSlider:function(){var t=this.x;this.options.wrapAround&&this.cells.length>1&&(t=e.modulo(t,this.slideableWidth),t-=this.slideableWidth,this.shiftWrapCells(t)),t+=this.cursorPosition,t=this.options.rightToLeft?-t:t;var n=this.getPositionValue(t);this.slider.style.transform=this.isAnimating?"translate3d("+n+",0,0)":"translateX("+n+")";var o=this.slides[0];if(o){var i=-this.x-o.target,r=i/this.slidesWidth;this.dispatchEvent("scroll",null,[r,i])}},positionSliderAtSelected:function(){this.cells.length&&(this.x=-this.selectedSlide.target,this.velocity=0,this.positionSlider())},getPositionValue:function(t){return this.options.percentPosition?.01*Math.round(t/this.size.innerWidth*1e4)+"%":Math.round(t)+"px"},settle:function(t){this.isPointerDown||Math.round(100*this.x)!=Math.round(100*t)||this.restingFrames++,this.restingFrames>2&&(this.isAnimating=!1,delete this.isFreeScrolling,this.positionSlider(),this.dispatchEvent("settle",null,[this.selectedIndex]))},shiftWrapCells:function(t){var e=this.cursorPosition+t;this._shiftCells(this.beforeShiftCells,e,-1);var n=this.size.innerWidth-(t+this.slideableWidth+this.cursorPosition);this._shiftCells(this.afterShiftCells,n,1)},_shiftCells:function(t,e,n){for(var o=0;o<t.length;o++){var i=t[o],r=e>0?n:0;i.wrapShift(r),e-=i.size.outerWidth}},_unshiftCells:function(t){if(t&&t.length)for(var e=0;e<t.length;e++)t[e].wrapShift(0)},integratePhysics:function(){this.x+=this.velocity,this.velocity*=this.getFrictionFactor()},applyForce:function(t){this.velocity+=t},getFrictionFactor:function(){return 1-this.options[this.isFreeScrolling?"freeScrollFriction":"friction"]},getRestingPosition:function(){return this.x+this.velocity/(1-this.getFrictionFactor())},applyDragForce:function(){if(this.isDraggable&&this.isPointerDown){var t=this.dragX-this.x-this.velocity;this.applyForce(t)}},applySelectedAttraction:function(){if((!this.isDraggable||!this.isPointerDown)&&!this.isFreeScrolling&&this.slides.length){var t=(-1*this.selectedSlide.target-this.x)*this.options.selectedAttraction;this.applyForce(t)}}};return n}(0,t)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;!function(r,a){o=[n(2),n(16),n(1)],void 0===(i=function(t,e,n){return function(t,e,n,o){"use strict";o.extend(e.defaults,{draggable:">1",dragThreshold:3}),e.createMethods.push("_createDrag");var i=e.prototype;o.extend(i,n.prototype),i._touchActionValue="pan-y";var r="createTouch"in document,a=!1;i._createDrag=function(){this.on("activate",this.onActivateDrag),this.on("uiChange",this._uiChangeDrag),this.on("childUIPointerDown",this._childUIPointerDownDrag),this.on("deactivate",this.onDeactivateDrag),this.on("cellChange",this.updateDraggable),r&&!a&&(t.addEventListener("touchmove",function(){}),a=!0)},i.onActivateDrag=function(){this.handles=[this.viewport],this.bindHandles(),this.updateDraggable()},i.onDeactivateDrag=function(){this.unbindHandles(),this.element.classList.remove("is-draggable")},i.updateDraggable=function(){">1"==this.options.draggable?this.isDraggable=this.slides.length>1:this.isDraggable=this.options.draggable,this.isDraggable?this.element.classList.add("is-draggable"):this.element.classList.remove("is-draggable")},i.bindDrag=function(){this.options.draggable=!0,this.updateDraggable()},i.unbindDrag=function(){this.options.draggable=!1,this.updateDraggable()},i._uiChangeDrag=function(){delete this.isFreeScrolling},i._childUIPointerDownDrag=function(t){t.preventDefault(),this.pointerDownFocus(t)},i.pointerDown=function(e,n){if(this.isDraggable){var o=this.okayPointerDown(e);o&&(this._pointerDownPreventDefault(e),this.pointerDownFocus(e),document.activeElement!=this.element&&this.pointerDownBlur(),this.dragX=this.x,this.viewport.classList.add("is-pointer-down"),this.pointerDownScroll=s(),t.addEventListener("scroll",this),this._pointerDownDefault(e,n))}else this._pointerDownDefault(e,n)},i._pointerDownDefault=function(t,e){this.pointerDownPointer=e,this._bindPostStartEvents(t),this.dispatchEvent("pointerDown",t,[e])};var l={INPUT:!0,TEXTAREA:!0,SELECT:!0};function s(){return{x:t.pageXOffset,y:t.pageYOffset}}return i.pointerDownFocus=function(t){l[t.target.nodeName]||this.focus()},i._pointerDownPreventDefault=function(t){var e="touchstart"==t.type,n="touch"==t.pointerType,o=l[t.target.nodeName];e||n||o||t.preventDefault()},i.hasDragStarted=function(t){return Math.abs(t.x)>this.options.dragThreshold},i.pointerUp=function(t,e){delete this.isTouchScrolling,this.viewport.classList.remove("is-pointer-down"),this.dispatchEvent("pointerUp",t,[e]),this._dragPointerUp(t,e)},i.pointerDone=function(){t.removeEventListener("scroll",this),delete this.pointerDownScroll},i.dragStart=function(e,n){this.isDraggable&&(this.dragStartPosition=this.x,this.startAnimation(),t.removeEventListener("scroll",this),this.dispatchEvent("dragStart",e,[n]))},i.pointerMove=function(t,e){var n=this._dragPointerMove(t,e);this.dispatchEvent("pointerMove",t,[e,n]),this._dragMove(t,e,n)},i.dragMove=function(t,e,n){if(this.isDraggable){t.preventDefault(),this.previousDragX=this.dragX;var o=this.options.rightToLeft?-1:1;this.options.wrapAround&&(n.x=n.x%this.slideableWidth);var i=this.dragStartPosition+n.x*o;if(!this.options.wrapAround&&this.slides.length){var r=Math.max(-this.slides[0].target,this.dragStartPosition);i=i>r?.5*(i+r):i;var a=Math.min(-this.getLastSlide().target,this.dragStartPosition);i=i<a?.5*(i+a):i}this.dragX=i,this.dragMoveTime=new Date,this.dispatchEvent("dragMove",t,[e,n])}},i.dragEnd=function(t,e){if(this.isDraggable){this.options.freeScroll&&(this.isFreeScrolling=!0);var n=this.dragEndRestingSelect();if(this.options.freeScroll&&!this.options.wrapAround){var o=this.getRestingPosition();this.isFreeScrolling=-o>this.slides[0].target&&-o<this.getLastSlide().target}else this.options.freeScroll||n!=this.selectedIndex||(n+=this.dragEndBoostSelect());delete this.previousDragX,this.isDragSelect=this.options.wrapAround,this.select(n),delete this.isDragSelect,this.dispatchEvent("dragEnd",t,[e])}},i.dragEndRestingSelect=function(){var t=this.getRestingPosition(),e=Math.abs(this.getSlideDistance(-t,this.selectedIndex)),n=this._getClosestResting(t,e,1),o=this._getClosestResting(t,e,-1);return n.distance<o.distance?n.index:o.index},i._getClosestResting=function(t,e,n){for(var o=this.selectedIndex,i=1/0,r=this.options.contain&&!this.options.wrapAround?function(t,e){return t<=e}:function(t,e){return t<e};r(e,i)&&(o+=n,i=e,null!==(e=this.getSlideDistance(-t,o)));)e=Math.abs(e);return{distance:i,index:o-n}},i.getSlideDistance=function(t,e){var n=this.slides.length,i=this.options.wrapAround&&n>1,r=i?o.modulo(e,n):e,a=this.slides[r];if(!a)return null;var l=i?this.slideableWidth*Math.floor(e/n):0;return t-(a.target+l)},i.dragEndBoostSelect=function(){if(void 0===this.previousDragX||!this.dragMoveTime||new Date-this.dragMoveTime>100)return 0;var t=this.getSlideDistance(-this.dragX,this.selectedIndex),e=this.previousDragX-this.dragX;return t>0&&e>0?1:t<0&&e<0?-1:0},i.staticClick=function(t,e){var n=this.getParentCell(t.target),o=n&&n.element,i=n&&this.cells.indexOf(n);this.dispatchEvent("staticClick",t,[e,o,i])},i.onscroll=function(){var t=s(),e=this.pointerDownScroll.x-t.x,n=this.pointerDownScroll.y-t.y;(Math.abs(e)>3||Math.abs(n)>3)&&this._pointerDone()},e}(r,t,e,n)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){var o,i;
39
  /*!
40
  * Unidragger v2.3.0
41
  * Draggable base class
46
  * Draggable base class
47
  * MIT license
48
  */
49
+ !function(r,a){o=[n(5)],void 0===(i=function(t){return function(t,e){"use strict";function n(){}var o=n.prototype=Object.create(e.prototype);o.bindHandles=function(){this._bindHandles(!0)},o.unbindHandles=function(){this._bindHandles(!1)},o._bindHandles=function(e){for(var n=(e=void 0===e||e)?"addEventListener":"removeEventListener",o=e?this._touchActionValue:"",i=0;i<this.handles.length;i++){var r=this.handles[i];this._bindStartEvent(r,e),r[n]("click",this),t.PointerEvent&&(r.style.touchAction=o)}},o._touchActionValue="none",o.pointerDown=function(t,e){var n=this.okayPointerDown(t);n&&(this.pointerDownPointer=e,t.preventDefault(),this.pointerDownBlur(),this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e]))};var i={TEXTAREA:!0,INPUT:!0,SELECT:!0,OPTION:!0},r={radio:!0,checkbox:!0,button:!0,submit:!0,image:!0,file:!0};return o.okayPointerDown=function(t){var e=i[t.target.nodeName],n=r[t.target.type],o=!e||n;return o||this._pointerReset(),o},o.pointerDownBlur=function(){var t=document.activeElement;t&&t.blur&&t!=document.body&&t.blur()},o.pointerMove=function(t,e){var n=this._dragPointerMove(t,e);this.emitEvent("pointerMove",[t,e,n]),this._dragMove(t,e,n)},o._dragPointerMove=function(t,e){var n={x:e.pageX-this.pointerDownPointer.pageX,y:e.pageY-this.pointerDownPointer.pageY};return!this.isDragging&&this.hasDragStarted(n)&&this._dragStart(t,e),n},o.hasDragStarted=function(t){return Math.abs(t.x)>3||Math.abs(t.y)>3},o.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e]),this._dragPointerUp(t,e)},o._dragPointerUp=function(t,e){this.isDragging?this._dragEnd(t,e):this._staticClick(t,e)},o._dragStart=function(t,e){this.isDragging=!0,this.isPreventingClicks=!0,this.dragStart(t,e)},o.dragStart=function(t,e){this.emitEvent("dragStart",[t,e])},o._dragMove=function(t,e,n){this.isDragging&&this.dragMove(t,e,n)},o.dragMove=function(t,e,n){t.preventDefault(),this.emitEvent("dragMove",[t,e,n])},o._dragEnd=function(t,e){this.isDragging=!1,setTimeout(function(){delete this.isPreventingClicks}.bind(this)),this.dragEnd(t,e)},o.dragEnd=function(t,e){this.emitEvent("dragEnd",[t,e])},o.onclick=function(t){this.isPreventingClicks&&t.preventDefault()},o._staticClick=function(t,e){this.isIgnoringMouseUp&&"mouseup"==t.type||(this.staticClick(t,e),"mouseup"!=t.type&&(this.isIgnoringMouseUp=!0,setTimeout(function(){delete this.isIgnoringMouseUp}.bind(this),400)))},o.staticClick=function(t,e){this.emitEvent("staticClick",[t,e])},n.getPointerPoint=e.getPointerPoint,n}(r,t)}.apply(e,o))||(t.exports=i)}(window)},function(t,e,n){var o,i;window,o=[n(2),n(6),n(1)],void 0===(i=function(t,e,n){return function(t,e,n,o){"use strict";var i="http://www.w3.org/2000/svg";function r(t,e){this.direction=t,this.parent=e,this._create()}r.prototype=Object.create(n.prototype),r.prototype._create=function(){this.isEnabled=!0,this.isPrevious=-1==this.direction;var t=this.parent.options.rightToLeft?1:-1;this.isLeft=this.direction==t;var e=this.element=document.createElement("button");e.className="flickity-button flickity-prev-next-button",e.className+=this.isPrevious?" previous":" next",e.setAttribute("type","button"),this.disable(),e.setAttribute("aria-label",this.isPrevious?"Previous":"Next");var n=this.createSVG();e.appendChild(n),this.on("tap",this.onTap),this.parent.on("select",this.update.bind(this)),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},r.prototype.activate=function(){this.bindTap(this.element),this.element.addEventListener("click",this),this.parent.element.appendChild(this.element)},r.prototype.deactivate=function(){this.parent.element.removeChild(this.element),n.prototype.destroy.call(this),this.element.removeEventListener("click",this)},r.prototype.createSVG=function(){var t=document.createElementNS(i,"svg");t.setAttribute("class","flickity-button-icon"),t.setAttribute("viewBox","0 0 100 100");var e=document.createElementNS(i,"path"),n=function(t){return"string"==typeof t?t:"M "+t.x0+",50 L "+t.x1+","+(t.y1+50)+" L "+t.x2+","+(t.y2+50)+" L "+t.x3+",50 L "+t.x2+","+(50-t.y2)+" L "+t.x1+","+(50-t.y1)+" Z"}(this.parent.options.arrowShape);return e.setAttribute("d",n),e.setAttribute("class","arrow"),this.isLeft||e.setAttribute("transform","translate(100, 100) rotate(180) "),t.appendChild(e),t},r.prototype.onTap=function(){if(this.isEnabled){this.parent.uiChange();var t=this.isPrevious?"previous":"next";this.parent[t]()}},r.prototype.handleEvent=o.handleEvent,r.prototype.onclick=function(t){var e=document.activeElement;e&&e==this.element&&this.onTap(t,t)},r.prototype.enable=function(){this.isEnabled||(this.element.disabled=!1,this.isEnabled=!0)},r.prototype.disable=function(){this.isEnabled&&(this.element.disabled=!0,this.isEnabled=!1)},r.prototype.update=function(){var t=this.parent.slides;if(this.parent.options.wrapAround&&t.length>1)this.enable();else{var e=t.length?t.length-1:0,n=this.isPrevious?0:e,o=this.parent.selectedIndex==n?"disable":"enable";this[o]()}},r.prototype.destroy=function(){this.deactivate()},o.extend(e.defaults,{prevNextButtons:!0,arrowShape:{x0:10,x1:60,y1:50,x2:70,y2:40,x3:30}}),e.createMethods.push("_createPrevNextButtons");var a=e.prototype;return a._createPrevNextButtons=function(){this.options.prevNextButtons&&(this.prevButton=new r(-1,this),this.nextButton=new r(1,this),this.on("activate",this.activatePrevNextButtons))},a.activatePrevNextButtons=function(){this.prevButton.activate(),this.nextButton.activate(),this.on("deactivate",this.deactivatePrevNextButtons)},a.deactivatePrevNextButtons=function(){this.prevButton.deactivate(),this.nextButton.deactivate(),this.off("deactivate",this.deactivatePrevNextButtons)},e.PrevNextButton=r,e}(0,t,e,n)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;window,o=[n(2),n(6),n(1)],void 0===(i=function(t,e,n){return function(t,e,n,o){"use strict";function i(t){this.parent=t,this._create()}i.prototype=new n,i.prototype._create=function(){this.holder=document.createElement("ol"),this.holder.className="flickity-page-dots",this.dots=[],this.on("tap",this.onTap),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},i.prototype.activate=function(){this.setDots(),this.bindTap(this.holder),this.parent.element.appendChild(this.holder)},i.prototype.deactivate=function(){this.parent.element.removeChild(this.holder),n.prototype.destroy.call(this)},i.prototype.setDots=function(){var t=this.parent.slides.length-this.dots.length;t>0?this.addDots(t):t<0&&this.removeDots(-t)},i.prototype.addDots=function(t){for(var e=document.createDocumentFragment(),n=[],o=this.dots.length,i=o+t,r=o;r<i;r++){var a=document.createElement("li");a.className="dot",a.setAttribute("aria-label","Page dot "+(r+1)),e.appendChild(a),n.push(a)}this.holder.appendChild(e),this.dots=this.dots.concat(n)},i.prototype.removeDots=function(t){var e=this.dots.splice(this.dots.length-t,t);e.forEach(function(t){this.holder.removeChild(t)},this)},i.prototype.updateSelected=function(){this.selectedDot&&(this.selectedDot.className="dot",this.selectedDot.removeAttribute("aria-current")),this.dots.length&&(this.selectedDot=this.dots[this.parent.selectedIndex],this.selectedDot.className="dot is-selected",this.selectedDot.setAttribute("aria-current","step"))},i.prototype.onTap=function(t){var e=t.target;if("LI"==e.nodeName){this.parent.uiChange();var n=this.dots.indexOf(e);this.parent.select(n)}},i.prototype.destroy=function(){this.deactivate()},e.PageDots=i,o.extend(e.defaults,{pageDots:!0}),e.createMethods.push("_createPageDots");var r=e.prototype;return r._createPageDots=function(){this.options.pageDots&&(this.pageDots=new i(this),this.on("activate",this.activatePageDots),this.on("select",this.updateSelectedPageDots),this.on("cellChange",this.updatePageDots),this.on("resize",this.updatePageDots),this.on("deactivate",this.deactivatePageDots))},r.activatePageDots=function(){this.pageDots.activate()},r.updateSelectedPageDots=function(){this.pageDots.updateSelected()},r.updatePageDots=function(){this.pageDots.setDots()},r.deactivatePageDots=function(){this.pageDots.deactivate()},e.PageDots=i,e}(0,t,e,n)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;window,o=[n(3),n(1),n(2)],void 0===(i=function(t,e,n){return function(t,e,n){"use strict";function o(t){this.parent=t,this.state="stopped",this.onVisibilityChange=this.visibilityChange.bind(this),this.onVisibilityPlay=this.visibilityPlay.bind(this)}o.prototype=Object.create(t.prototype),o.prototype.play=function(){if("playing"!=this.state){var t=document.hidden;t?document.addEventListener("visibilitychange",this.onVisibilityPlay):(this.state="playing",document.addEventListener("visibilitychange",this.onVisibilityChange),this.tick())}},o.prototype.tick=function(){if("playing"==this.state){var t=this.parent.options.autoPlay;t="number"==typeof t?t:3e3;var e=this;this.clear(),this.timeout=setTimeout(function(){e.parent.next(!0),e.tick()},t)}},o.prototype.stop=function(){this.state="stopped",this.clear(),document.removeEventListener("visibilitychange",this.onVisibilityChange)},o.prototype.clear=function(){clearTimeout(this.timeout)},o.prototype.pause=function(){"playing"==this.state&&(this.state="paused",this.clear())},o.prototype.unpause=function(){"paused"==this.state&&this.play()},o.prototype.visibilityChange=function(){var t=document.hidden;this[t?"pause":"unpause"]()},o.prototype.visibilityPlay=function(){this.play(),document.removeEventListener("visibilitychange",this.onVisibilityPlay)},e.extend(n.defaults,{pauseAutoPlayOnHover:!0}),n.createMethods.push("_createPlayer");var i=n.prototype;return i._createPlayer=function(){this.player=new o(this),this.on("activate",this.activatePlayer),this.on("uiChange",this.stopPlayer),this.on("pointerDown",this.stopPlayer),this.on("deactivate",this.deactivatePlayer)},i.activatePlayer=function(){this.options.autoPlay&&(this.player.play(),this.element.addEventListener("mouseenter",this))},i.playPlayer=function(){this.player.play()},i.stopPlayer=function(){this.player.stop()},i.pausePlayer=function(){this.player.pause()},i.unpausePlayer=function(){this.player.unpause()},i.deactivatePlayer=function(){this.player.stop(),this.element.removeEventListener("mouseenter",this)},i.onmouseenter=function(){this.options.pauseAutoPlayOnHover&&(this.player.pause(),this.element.addEventListener("mouseleave",this))},i.onmouseleave=function(){this.player.unpause(),this.element.removeEventListener("mouseleave",this)},n.Player=o,n}(t,e,n)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;window,o=[n(2),n(1)],void 0===(i=function(t,e){return function(t,e,n){"use strict";var o=e.prototype;return o.insert=function(t,e){var n=this._makeCells(t);if(n&&n.length){var o=this.cells.length;e=void 0===e?o:e;var i=function(t){var e=document.createDocumentFragment();return t.forEach(function(t){e.appendChild(t.element)}),e}(n),r=e==o;if(r)this.slider.appendChild(i);else{var a=this.cells[e].element;this.slider.insertBefore(i,a)}if(0===e)this.cells=n.concat(this.cells);else if(r)this.cells=this.cells.concat(n);else{var l=this.cells.splice(e,o-e);this.cells=this.cells.concat(n).concat(l)}this._sizeCells(n),this.cellChange(e,!0)}},o.append=function(t){this.insert(t,this.cells.length)},o.prepend=function(t){this.insert(t,0)},o.remove=function(t){var e=this.getCells(t);if(e&&e.length){var o=this.cells.length-1;e.forEach(function(t){t.remove();var e=this.cells.indexOf(t);o=Math.min(e,o),n.removeFrom(this.cells,t)},this),this.cellChange(o,!0)}},o.cellSizeChange=function(t){var e=this.getCell(t);if(e){e.getSize();var n=this.cells.indexOf(e);this.cellChange(n)}},o.cellChange=function(t,e){var n=this.selectedElement;this._positionCells(t),this._getWrapShiftCells(),this.setGallerySize();var o=this.getCell(n);o&&(this.selectedIndex=this.getCellSlideIndex(o)),this.selectedIndex=Math.min(this.slides.length-1,this.selectedIndex),this.emitEvent("cellChange",[t]),this.select(this.selectedIndex),e&&this.positionSliderAtSelected()},e}(0,t,e)}.apply(e,o))||(t.exports=i)},function(t,e,n){var o,i;window,o=[n(2),n(1)],void 0===(i=function(t,e){return function(t,e,n){"use strict";e.createMethods.push("_createLazyload");var o=e.prototype;function i(t,e){this.img=t,this.flickity=e,this.load()}return o._createLazyload=function(){this.on("select",this.lazyLoad)},o.lazyLoad=function(){var t=this.options.lazyLoad;if(t){var e="number"==typeof t?t:0,o=[];this.getAdjacentCellElements(e).forEach(function(t){var e=function(t){if("IMG"==t.nodeName){var e=t.getAttribute("data-flickity-lazyload"),o=t.getAttribute("data-flickity-lazyload-src"),i=t.getAttribute("data-flickity-lazyload-srcset");if(e||o||i)return[t]}var r=t.querySelectorAll("img[data-flickity-lazyload], img[data-flickity-lazyload-src], img[data-flickity-lazyload-srcset]");return n.makeArray(r)}(t);o=o.concat(e)}),o.forEach(function(t){new i(t,this)},this)}},i.prototype.handleEvent=n.handleEvent,i.prototype.load=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this);var t=this.img.getAttribute("data-flickity-lazyload")||this.img.getAttribute("data-flickity-lazyload-src"),e=this.img.getAttribute("data-flickity-lazyload-srcset");this.img.src=t,e&&this.img.setAttribute("srcset",e),this.img.removeAttribute("data-flickity-lazyload"),this.img.removeAttribute("data-flickity-lazyload-src"),this.img.removeAttribute("data-flickity-lazyload-srcset")},i.prototype.onload=function(t){this.complete(t,"flickity-lazyloaded")},i.prototype.onerror=function(t){this.complete(t,"flickity-lazyerror")},i.prototype.complete=function(t,e){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this);var n=this.flickity.getParentCell(this.img),o=n&&n.element;this.flickity.cellSizeChange(o),this.img.classList.add(e),this.flickity.dispatchEvent("lazyLoad",t,o)},e.LazyLoader=i,e}(0,t,e)}.apply(e,o))||(t.exports=i)},,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,n,o){return n&&t(e.prototype,n),o&&t(e,o),e}}(),i=n(0),r=p(i),a=n(25),l=p(n(10)),s=p(n(26)),c=n(27),u=p(n(28));function p(t){return t&&t.__esModule?t:{default:t}}var d=function(t){function e(t){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var n=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.state={flickityReady:!1},n.carousel=null,n.flkty=null,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,i.Component),o(e,[{key:"componentDidUpdate",value:function(t,e){var n=this.props,o=n.children,i=n.options,r=i.draggable,a=i.initialIndex,l=n.reloadOnUpdate,s=this.state.flickityReady;l||!e.flickityReady&&s?(this.flkty.deactivate(),this.flkty.selectedIndex=a||0,this.flkty.options.draggable=void 0===r?!!o&&o.length>1:r,this.flkty.activate()):this.flkty.reloadCells()}},{key:"componentDidMount",value:function(){var t=this;if(!c.canUseDOM)return null;var e=this.props,n=e.disableImagesLoaded,o=e.flickityRef,i=e.options,r=this.carousel;this.flkty=new l.default(r,i);var a=function(){return t.setState({flickityReady:!0})};n?a():(0,s.default)(r,a),o&&o(this.flkty)}},{key:"renderPortal",value:function(){if(!this.carousel)return null;var t=this.carousel.querySelector(".flickity-slider");return t?(0,a.createPortal)(this.props.children,t):void 0}},{key:"render",value:function(){var t=this;return r.default.createElement(this.props.elementType,{className:this.props.className,ref:function(e){t.carousel=e}},this.renderPortal())}}]),e}();d.propTypes={disableImagesLoaded:u.default.bool,reloadOnUpdate:u.default.bool,options:u.default.object,className:u.default.string,elementType:u.default.string,children:u.default.array,flickityRef:u.default.func},d.defaultProps={disableImagesLoaded:!1,reloadOnUpdate:!1,options:{},className:"",elementType:"div"},e.default=d,t.exports=e.default},function(t,e){var n=wp.plugins,o=n.unregisterPlugin,i=n.getPlugins,r=["edit-post","pixelthrone--comingsoonblocks-templates","pixelthrone--comingsoonblocks-seo","pixelthrone--comingsoonblocks-settings","pixelthrone--comingsoonblocks-look-and-feel"];window.onload=function(){i().forEach(function(t){-1===r.indexOf(t.name)&&o(t.name)})}},function(t,e){t.exports=ReactDOM},function(t,e,n){var o,i;
50
  /*!
51
  * imagesLoaded v4.1.4
52
  * JavaScript is all like "You images are done yet or what?"
57
  * JavaScript is all like "You images are done yet or what?"
58
  * MIT License
59
  */
60
+ !function(r,a){"use strict";o=[n(3)],void 0===(i=function(t){return function(t,e){var n=t.jQuery,o=t.console;function i(t,e){for(var n in e)t[n]=e[n];return t}var r=Array.prototype.slice;function a(t,e,l){if(!(this instanceof a))return new a(t,e,l);var s=t;"string"==typeof t&&(s=document.querySelectorAll(t)),s?(this.elements=function(t){if(Array.isArray(t))return t;if("object"==typeof t&&"number"==typeof t.length)return r.call(t);return[t]}(s),this.options=i({},this.options),"function"==typeof e?l=e:i(this.options,e),l&&this.on("always",l),this.getImages(),n&&(this.jqDeferred=new n.Deferred),setTimeout(this.check.bind(this))):o.error("Bad element for imagesLoaded "+(s||t))}a.prototype=Object.create(e.prototype),a.prototype.options={},a.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},a.prototype.addElementImages=function(t){"IMG"==t.nodeName&&this.addImage(t),!0===this.options.background&&this.addElementBackgroundImages(t);var e=t.nodeType;if(e&&l[e]){for(var n=t.querySelectorAll("img"),o=0;o<n.length;o++){var i=n[o];this.addImage(i)}if("string"==typeof this.options.background){var r=t.querySelectorAll(this.options.background);for(o=0;o<r.length;o++){var a=r[o];this.addElementBackgroundImages(a)}}}};var l={1:!0,9:!0,11:!0};function s(t){this.img=t}function c(t,e){this.url=t,this.element=e,this.img=new Image}return a.prototype.addElementBackgroundImages=function(t){var e=getComputedStyle(t);if(e)for(var n=/url\((['"])?(.*?)\1\)/gi,o=n.exec(e.backgroundImage);null!==o;){var i=o&&o[2];i&&this.addBackground(i,t),o=n.exec(e.backgroundImage)}},a.prototype.addImage=function(t){var e=new s(t);this.images.push(e)},a.prototype.addBackground=function(t,e){var n=new c(t,e);this.images.push(n)},a.prototype.check=function(){var t=this;function e(e,n,o){setTimeout(function(){t.progress(e,n,o)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(t){t.once("progress",e),t.check()}):this.complete()},a.prototype.progress=function(t,e,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!t.isLoaded,this.emitEvent("progress",[this,t,e]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,t),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&o&&o.log("progress: "+n,t,e)},a.prototype.complete=function(){var t=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(t,[this]),this.emitEvent("always",[this]),this.jqDeferred){var e=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[e](this)}},s.prototype=Object.create(e.prototype),s.prototype.check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},s.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},s.prototype.confirm=function(t,e){this.isLoaded=t,this.emitEvent("progress",[this,this.img,e])},s.prototype.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},s.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},s.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},s.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype=Object.create(s.prototype),c.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},c.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype.confirm=function(t,e){this.isLoaded=t,this.emitEvent("progress",[this,this.element,e])},a.makeJQueryPlugin=function(e){(e=e||t.jQuery)&&((n=e).fn.imagesLoaded=function(t,e){return new a(this,t,e).jqDeferred.promise(n(this))})},a.makeJQueryPlugin(),a}(r,t)}.apply(e,o))||(t.exports=i)}("undefined"!=typeof window?window:this)},function(t,e,n){"use strict";var o=!("undefined"==typeof window||!window.document||!window.document.createElement),i={canUseDOM:o,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:o&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:o&&!!window.screen,isInWorker:!o};t.exports=i},function(t,e,n){t.exports=n(29)()},function(t,e,n){"use strict";var o=n(30);function i(){}t.exports=function(){function t(t,e,n,i,r,a){if(a!==o){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function e(){return t}t.isRequired=t;var n={array:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e};return n.checkPropTypes=i,n.PropTypes=n,n}},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e){document.addEventListener("DOMContentLoaded",function(){document.querySelector("#editor").classList.add("-editor-is-ready")},!1)},,,,,,,,,,,,,,,,function(t,e,n){"use strict";n.r(e);n(50),n(51);var o=n(8),i=wp.blocks,r=i.getBlockTypes,a=i.unregisterBlockType,l=o.map(function(t){return t.name});document.addEventListener("DOMContentLoaded",function(){r().forEach(function(t){-1===l.indexOf(t.name)&&a(t.name)})},!1);n(24),n(52),n(53);function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var c=wp.editor.MediaUpload,u=function(t){var e=t.onSelect,n=t.allowedMediaTypes,o=t.logoAttrs,i=t.style,r=t.align,a=t.className,l=t.logoWithMask;return l&&(i=function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){s(t,e,n[e])})}return t}({},i,{width:i.maxWidth,height:i.maxWidth,backgroundImage:"url('".concat(o.url,"')")})),React.createElement(c,{onSelect:e,allowedTypes:n,value:o.id,render:function(t){var e=t.open;return React.createElement("button",{"data-editor-component":"brand-uploader",onClick:e,className:"-".concat(r,"-align ").concat(a)},React.createElement("i",{className:"dashicons dashicons-edit"}),l?React.createElement("span",{style:i,className:"image-add-mask"}):React.createElement("img",{style:i,src:o.url}))}})},p=[{name:"Color",color:"#FFFFFF"},{name:"Color",color:"#E3E3E3"},{name:"Color",color:"#929D9E"},{name:"Color",color:"#0A0A0A"},{name:"Color",color:"#18181E"},{name:"Color",color:"#B3E3B5"},{name:"Color",color:"#7ED5EA"},{name:"Color",color:"#FB8122"},{name:"Color",color:"#FB9985"}],d=[{label:"Select",value:""},{label:"Facebook",value:"facebook"},{label:"digg",value:"digg"},{label:"Dribbble",value:"dribbble"},{label:"Envato",value:"envato"},{label:"Etsy",value:"etsy"},{label:"Friendfeed",value:"friendfeed"},{label:"Github",value:"github"},{label:"Google Plus",value:"googleplus"},{label:"Instagram",value:"instagram"},{label:"LinkedIn",value:"linkedin"},{label:"Mail",value:"mail"},{label:"Medium",value:"medium"},{label:"Meetup",value:"meetup"},{label:"Mixcloud",value:"mixcloud"},{label:"npm",value:"npm"},{label:"Pinterest",value:"pinterest"},{label:"PayPal",value:"paypal"},{label:"Reddit",value:"reddit"},{label:"RSS",value:"rss"},{label:"TripAdvisor",value:"tripadvisor"},{label:"Twitch",value:"twitch"},{label:"Twitter",value:"twitter"},{label:"Vimeo",value:"vimeo"},{label:"WhatSapp",value:"whatsapp"},{label:"WordPress",value:"wordpress"},{label:"Youtube",value:"youtube"},{label:"Messenger",value:"messenger"},{label:"Bitbucket",value:"bitbucket"},{label:"Google Maps",value:"googlemaps"},{label:"Codepen",value:"codepen"}],h={PLAN_NAME:0,starter:1,professional:2,business:3},f=csblocks.license;function m(t,e){if(""===t||void 0===t||!1===t)return e;for(var n in("string"==typeof t||t instanceof String)&&(t=JSON.parse(t)),e)t.hasOwnProperty(n)||(t[n]=e[n]);return t}function g(t){return h[f.plan]>=h[t]}function y(t){return"array"==typeof t?0===t.length:!t||0===Object.keys(t).length}function b(t){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function v(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function k(t){return(k=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function E(t,e){return(E=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function w(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var x=wp.i18n.__,S=wp.element.Component,C=wp.components,_=C.IconButton,O=C.MenuItem,T=C.Dropdown,P=C.SelectControl,R=function(t){function e(t){var n;t.attributes;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==b(e)&&"function"!=typeof e?w(t):e}(this,k(e).apply(this,arguments))).update=n.update.bind(w(w(n))),n.addIcon=n.addIcon.bind(w(w(n))),n.removeIcon=n.removeIcon.bind(w(w(n)));var o=[];return JSON.parse(n.props.networks).filter(function(t){t&&o.push(t)}),n.state={networks:o},n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&E(t,e)}(e,S),function(t,e,n){e&&v(t.prototype,e),n&&v(t,n)}(e,[{key:"update",value:function(t,e,n){var o=this.state.networks;"icon"===n?o[t].icon=e:o[t].url=e,this.setState(function(t){return{networks:o}}),this.props.setNetworks(JSON.stringify(o))}},{key:"addIcon",value:function(t){t.preventDefault();var e=this.state.networks;e.push({url:"https://",icon:""}),this.setState(function(t){return{networks:e}})}},{key:"removeIcon",value:function(t){t.preventDefault();var e=t.currentTarget.dataset.index,n=[];this.state.networks.filter(function(t,o){Number(e)!==Number(o)&&n.push(t)}),this.setState(function(t){return{networks:n}}),this.props.setNetworks(JSON.stringify(n))}},{key:"render",value:function(){var t=this,e=this.state.networks,n=this.props.position;return React.createElement("div",{"data-component":"social-icons"},e&&e.map(function(e,o){var i=e.url,r=e.icon;return React.createElement(T,{key:o,className:"editor-block-social-icons-menu__control",contentClassName:"editor-block-social-icons-menu__content",position:n,renderToggle:function(t){var e=t.isOpen,n=t.onToggle;return React.createElement("a",{href:"#",onClick:n,className:"-icon -".concat(r||"empty"," -isOpen--").concat(e)},r?React.createElement("i",{className:"socicon-".concat(r)}):React.createElement("i",{className:"dashicons dashicons-edit"}))},renderContent:function(){return React.createElement("div",null,React.createElement(P,{label:x("Network","coming-soon-blocks"),value:r,onChange:function(e){return t.update(o,e,"icon")},options:d}),React.createElement("label",{className:"components-base-control__label"},x("Link","coming-soon-blocks")),React.createElement("input",{className:"components-text-control__input",type:"text",defaultValue:i,placeholder:"https://",onBlur:function(e){return t.update(o,e.currentTarget.value,"url")}}),React.createElement("div",{className:"editor-block-settings-menu__separator"}),React.createElement(O,{className:"editor-block-settings-menu__control","data-index":o,onClick:t.removeIcon,icon:"trash"},x("Remove","coming-soon-blocks")))}})}),React.createElement(_,{icon:"plus",label:x("Add Network","coming-soon-blocks"),onClick:this.addIcon,"data-empty":y(e)}))}}]),e}(),N=wp.i18n,D=N.__,j=N.sprintf,A=function(t){var e=t.children,n=t.plan;if(g(n))return e;var o=j(D("This is a %s feature","coming-soon-blocks"),"<i>".concat(n,"</i>"));return React.createElement("span",{"data-component":"is-premium","data-plan":n},React.createElement("p",{className:"feature-label-notice",dangerouslySetInnerHTML:{__html:o}}),e)};function I(t){return(I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function M(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function L(t){return(L=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function B(t,e){return(B=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function z(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var W=wp.i18n.__,F=wp.element,J=F.Component,U=F.Fragment,H=wp.editor.MediaUpload,V=wp.components,G=V.IconButton,q=V.ColorPalette,Y=V.ColorIndicator,X=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==I(e)&&"function"!=typeof e?z(t):e}(this,L(e).apply(this,arguments))).state=JSON.parse(n.props.attributes),n.uploadBgImage=n.uploadBgImage.bind(z(z(n))),n.uploadBgGallery=n.uploadBgGallery.bind(z(z(n))),n.uploadBgVideo=n.uploadBgVideo.bind(z(z(n))),n.uploadBgColor=n.uploadBgColor.bind(z(z(n))),n.updateTab=n.updateTab.bind(z(z(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&B(t,e)}(e,J),function(t,e,n){e&&M(t.prototype,e),n&&M(t,n)}(e,[{key:"uploadBgImage",value:function(t){var e=this.props.updateAttributes,n=this.state;n.image={id:t.id,full:t.sizes.full.url,thumb:t.sizes.medium.url},this.setState(n),e(JSON.stringify(n))}},{key:"uploadBgGallery",value:function(t){var e=this.props.updateAttributes,n=this.state,o=t.map(function(t){return{id:t.id,full:t.sizes.full.url,thumb:t.sizes.medium.url}});n.gallery=o,this.setState(n),e(JSON.stringify(n))}},{key:"uploadBgVideo",value:function(t){var e=this.props.updateAttributes,n=this.state;n.video={id:t.id,url:t.url,filename:t.filename},this.setState(n),e(JSON.stringify(n))}},{key:"uploadBgColor",value:function(t){var e=this.props.updateAttributes,n=this.state;n.color=t,this.setState(n),e(JSON.stringify(n))}},{key:"updateTab",value:function(t){var e=this.props.updateAttributes,n=this.state;n.type=t,this.setState(n),e(JSON.stringify(n))}},{key:"render",value:function(){var t=this,e=this.state,n=e.gallery,o=e.color,i=e.type,r=e.image,a=e.video,l=!!n.length&&n.map(function(t){return t.id});return React.createElement("div",{"data-editor-component":"background"},React.createElement("label",null,W("Background","coming-soon-blocks")),React.createElement("div",{className:"tabs-menu"},React.createElement(G,{icon:"admin-customizer",label:W("Solid Color","coming-soon-blocks"),"data-active":"color"===i?"true":"",onClick:function(e){return t.updateTab("color")}}),React.createElement(G,{icon:"format-image",label:W("Image","coming-soon-blocks"),"data-active":"image"===i?"true":"",onClick:function(e){return t.updateTab("image")}}),React.createElement(G,{icon:"format-gallery",label:W("Gallery","coming-soon-blocks"),"data-active":"gallery"===i?"true":"",onClick:function(e){return t.updateTab("gallery")}}),React.createElement(G,{icon:"format-video",label:W("Video","coming-soon-blocks"),"data-active":"video"===i?"true":"",onClick:function(e){return t.updateTab("video")}})),React.createElement("div",{className:"tabs-content"},"color"===i&&React.createElement(U,null,React.createElement("label",{className:"single-field-label"},W("Color","coming-soon-blocks")," ",React.createElement(Y,{colorValue:o})),React.createElement(q,{colors:p,value:o,onChange:this.uploadBgColor})),"image"===i&&React.createElement(H,{onSelect:this.uploadBgImage,allowedTypes:["image"],value:r.id,render:function(t){var e=t.open;return React.createElement(U,null,React.createElement("label",{className:"single-field-label"},W("Image","coming-soon-blocks")),y(r)||""===r.id?null:React.createElement(U,null,React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:W("Change Image","coming-soon-blocks"),onClick:e},React.createElement("img",{src:r.thumb}))),y(r)||""===r.id?React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:W("Upload Image","coming-soon-blocks"),onClick:e}):null)}}),"gallery"===i&&React.createElement(A,{plan:"starter"},React.createElement(H,{onSelect:this.uploadBgGallery,multiple:!0,gallery:!0,allowedTypes:["image"],value:l,render:function(t){var e=t.open;return React.createElement(U,null,React.createElement("label",{className:"single-field-label"},W("Gallery","coming-soon-blocks")),l.length?React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:W("Change Gallery","coming-soon-blocks"),onClick:e},React.createElement("div",{"data-count":n.length},n.map(function(t){var e=t.thumb;t.id;return React.createElement("span",null,React.createElement("img",{src:e}))}))):null,l.length?null:React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:W("Upload Image","coming-soon-blocks"),onClick:e}))}})),"video"===i&&React.createElement(A,{plan:"starter"},React.createElement(H,{onSelect:this.uploadBgVideo,allowedTypes:["video/mp4","video/ogg","video/webm"],value:a.length?a.id:"",render:function(t){var e=t.open;return React.createElement(U,null,React.createElement("label",{className:"single-field-label"},W("Video")," ",a.id&&"(".concat(a.filename,")")),a.id&&React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:W("Change Video","coming-soon-blocks"),onClick:e},React.createElement("video",{muted:!0,src:a.url})),!a.id&&React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:W("Upload Video","coming-soon-blocks"),onClick:e}))}}),React.createElement("br",null),React.createElement(H,{onSelect:this.uploadBgImage,allowedTypes:["image"],value:r.id,render:function(t){var e=t.open;return React.createElement(U,null,React.createElement("label",{className:"single-field-label"},W("Poster","coming-soon-blocks")),y(r)||""===r.id?null:React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"replace",icon:"edit",label:W("Change Image","coming-soon-blocks"),onClick:e},React.createElement("img",{src:r.thumb})),y(r)||""===r.id?React.createElement(G,{"data-editor-component":"panel-uploader-placeholder","data-mode":"upload",icon:"upload",label:W("Upload Image","coming-soon-blocks"),onClick:e}):null)}}),React.createElement("p",{"data-editor-component":"help-notice"},W("Specifies an image to be shown while the video is downloading, or until the user hits the play button.","coming-soon-blocks")))))}}]),e}(),K=n(0),Q=n.n(K);function $(t){return($="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Z(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function tt(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function et(t,e,n){return e&&tt(t.prototype,e),n&&tt(t,n),t}function nt(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],o=!0,i=!1,r=void 0;try{for(var a,l=t[Symbol.iterator]();!(o=(a=l.next()).done)&&(n.push(a.value),!e||n.length!==e);o=!0);}catch(t){i=!0,r=t}finally{try{o||null==l.return||l.return()}finally{if(i)throw r}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function ot(t){return t.family.replace(/\s+/g,"-").toLowerCase()}function it(t,e,n){var o="https://fonts.googleapis.com/css?family=";o+=t.family.replace(/ /g,"+"),o+=":".concat(e[0]);for(var i=1;i<e.length;i+=1)o+=",".concat(e[i]);if(!0===n){var r=t.family;r=(r=r.replace(/\s+/g,"")).split("").filter(function(t,e,n){return n.indexOf(t)===e}).join(""),o+="&text=".concat(r)}return o}function rt(t,e,n,o){var i=it(t,n,!1),r=document.createElement("link");r.rel="stylesheet",r.href=i,r.id="font-full-".concat(e),o&&(r.onload=function(){o(t)}),document.head.appendChild(r)}function at(t,e,n){var o=ot(t);document.getElementById("font-preview-".concat(o))?(document.getElementById("font-preview-".concat(o)).outerHTML="",rt(t,o,e,n)):document.getElementById("font-full-".concat(o))?n&&n(t):rt(t,o,e,n)}function lt(t,e){var n=ot(t);document.getElementById("font-full-".concat(n))||function(t,e,n){var o=it(t,n,!0),i=document.createElement("link");i.rel="stylesheet",i.href=o,i.id="font-preview-".concat(e),document.head.appendChild(i)}(t,n,e)}var st=function(){function t(e,n,o){Z(this,t),this.pickerSuffix=""!==e?"-".concat(e):"",this.stylesheetId="font-selectors".concat(this.pickerSuffix),this.determineFontVariants(o);var i=document.getElementById(this.stylesheetId);i?this.stylesheet=i:this.initStylesheet(n)}return et(t,[{key:"determineFontVariants",value:function(t){var e=t[0].split(/(\d+)/).filter(Boolean);if(1===e.length)if("regular"===e[0]||"italic"===e[0]){var n=nt(e,1);this.fontStyle=n[0],this.fontWeight="400"}else{this.fontStyle="regular";var o=nt(e,1);this.fontWeight=o[0]}else if(2===e.length){var i=nt(e,2);this.fontWeight=i[0],this.fontStyle=i[1]}}},{key:"initStylesheet",value:function(t){this.stylesheet=document.createElement("style"),this.stylesheet.id=this.stylesheetId,this.stylesheet.rel="stylesheet",this.stylesheet.type="text/css";var e="\n\t\t\t.apply-font".concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'";\n\t\t\t\tfont-style: ').concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.appendChild(document.createTextNode(e)),document.head.appendChild(this.stylesheet)}},{key:"applyPreviewStyle",value:function(t){var e=t.family.replace(/\s+/g,"-").toLowerCase(),n="\n\t\t\t.font-".concat(e).concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'";\n\t\t\t\tfont-style: ').concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.appendChild(document.createTextNode(n))}},{key:"changeActiveStyle",value:function(t,e){var n="handwriting"===t.category?"cursive":t.category,o="\n\t\t\t.apply-font".concat(this.pickerSuffix,' {\n\t\t\t\tfont-family: "').concat(t.family,'", "').concat(e,'", ').concat(n,";\n\t\t\t\tfont-style: ").concat(this.fontStyle,";\n\t\t\t\tfont-weight: ").concat(this.fontWeight,";\n\t\t\t}\n\t\t");this.stylesheet.replaceChild(document.createTextNode(o),this.stylesheet.childNodes[0])}}]),t}(),ct=function(){function t(e,n){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3?arguments[3]:void 0;Z(this,t),t.validateParameters(e,n,o,i);var r=n||"Open Sans",a=t.setDefaultOptions(o);this.apiKey=e,this.onChange=i,this.options=a,this.activeFont={family:r,variants:"regular"},this.fonts=[],this.previewIndex=0,at(this.activeFont,this.options.variants),this.styleManager=new st(this.options.name,this.activeFont,this.options.variants)}return et(t,null,[{key:"validateParameters",value:function(t,e,n,o){if(!t||"string"!=typeof t)throw Error("apiKey parameter is not a string or missing");if(e&&"string"!=typeof e)throw Error("defaultFont parameter is not a string");if("object"!==$(n))throw Error("options parameter is not an object");if(n.name){if("string"!=typeof n.name)throw Error("options.name parameter is not a string");if(n.name.match(/[^0-9a-z]/i))throw Error("options.name may only contain letters and digits")}if(n.families&&!(n.families instanceof Array))throw Error("options.families parameter is not an array");if(n.categories&&!(n.categories instanceof Array))throw Error("options.categories parameter is not an array");if(n.variants&&!(n.variants instanceof Array))throw Error("options.variants parameter is not an array");if(n.limit&&"number"!=typeof n.limit)throw Error("options.limit parameter is not a number");if(n.sort&&"string"!=typeof n.sort)throw Error("options.sort parameter is not a string");if(o&&"function"!=typeof o)throw Error("onChange is not a function")}},{key:"setDefaultOptions",value:function(t){var e=t;return t.name||(e.name=""),t.limit||(e.limit=100),t.variants||(e.variants=["regular"]),t.sort||(e.sort="alphabetical"),e}}]),et(t,[{key:"init",value:function(){var t=this;return function(t){return new Promise(function(e,n){var o="https://www.googleapis.com/webfonts/v1/webfonts?sort=popularity&key=".concat(t),i=new XMLHttpRequest;i.overrideMimeType("application/json"),i.open("GET",o,!0),i.onreadystatechange=function(){if(4===i.readyState){if(200!==i.status)return n(new Error("Response has status code ".concat(i.status)));var t=JSON.parse(i.responseText);return e(t.items)}},i.send()})}(this.apiKey).then(function(e){t.fonts=function(t,e,n){var o=t;return n.families&&(o=o.filter(function(t){return n.families.includes(t.family)})),n.categories&&(o=o.filter(function(t){return n.categories.includes(t.category)})),n.variants&&(o=o.filter(function(t){for(var e=0;e<n.variants.length;e+=1)if(-1===t.variants.indexOf(n.variants[e]))return!1;return!0})),n.limit&&(o=o.slice(0,n.limit)),0===o.filter(function(t){return t.family===e.family}).length&&(o.unshift(e),n.limit&&o.pop()),"alphabetical"===n.sort&&(o=o.sort(function(t,e){return t.family.localeCompare(e.family)})),o}(e,t.activeFont,t.options),t.downloadPreviews(10)})}},{key:"downloadPreviews",value:function(t){var e;e=t>this.fonts.length?this.fonts.length:t;for(var n=this.previewIndex;n<e;n+=1)this.styleManager.applyPreviewStyle(this.fonts[n]),lt(this.fonts[n],this.options.variants);e>this.previewIndex&&(this.previewIndex=e)}},{key:"setActiveFont",value:function(t){var e=this.fonts.findIndex(function(e){return e.family===t});if(-1===e)return console.error('Cannot update activeFont: The font "'.concat(t,'" is not in the font list')),-1;var n=this.activeFont.family;return this.activeFont=this.fonts[e],this.styleManager.changeActiveStyle(this.activeFont,n),at(this.activeFont,this.options.variants,this.onChange),e}}]),t}();!function(t,e){void 0===e&&(e={});var n=e.insertAt;if(t&&"undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===n&&o.firstChild?o.insertBefore(i,o.firstChild):o.appendChild(i),i.styleSheet?i.styleSheet.cssText=t:i.appendChild(document.createTextNode(t))}}('@charset "UTF-8";\ndiv[id^="font-picker"] {\n position: relative;\n display: inline-block;\n width: 200px;\n box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }\n div[id^="font-picker"] * {\n box-sizing: border-box; }\n div[id^="font-picker"] p {\n margin: 0;\n padding: 0; }\n div[id^="font-picker"] button {\n background: none;\n border: 0;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n outline: none; }\n div[id^="font-picker"] .dropdown-button {\n height: 35px;\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0 10px;\n background: #CBCBCB; }\n div[id^="font-picker"] .dropdown-button:hover, div[id^="font-picker"] .dropdown-button.expanded, div[id^="font-picker"] .dropdown-button:focus {\n background: #bebebe; }\n div[id^="font-picker"] .dropdown-button .dropdown-font-name {\n overflow: hidden;\n white-space: nowrap; }\n div[id^="font-picker"] .dropdown-icon {\n margin-left: 10px; }\n\n@-webkit-keyframes spinner {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes spinner {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n div[id^="font-picker"] .dropdown-icon.loading:before {\n content: \'\';\n display: block;\n height: 10px;\n width: 10px;\n border-radius: 50%;\n border: 2px solid #b2b2b2;\n border-top-color: black;\n -webkit-animation: spinner 0.6s linear infinite;\n animation: spinner 0.6s linear infinite; }\n div[id^="font-picker"] .dropdown-icon.finished:before {\n content: \'\';\n display: block;\n height: 0;\n width: 0;\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n border-top: 6px solid black;\n transition: -webkit-transform 0.3s;\n transition: transform 0.3s;\n transition: transform 0.3s, -webkit-transform 0.3s;\n margin: 0 2px; }\n div[id^="font-picker"] .dropdown-icon.error:before {\n content: \'⚠\'; }\n div[id^="font-picker"] .dropdown-button.expanded .dropdown-icon.finished:before {\n -webkit-transform: rotate(-180deg);\n transform: rotate(-180deg); }\n div[id^="font-picker"] ul {\n position: absolute;\n z-index: 1;\n max-height: 0;\n width: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n margin: 0;\n padding: 0;\n background: #EAEAEA;\n box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);\n transition: 0.3s; }\n div[id^="font-picker"] ul.expanded {\n max-height: 200px; }\n div[id^="font-picker"] ul li {\n height: 35px;\n list-style: none; }\n div[id^="font-picker"] ul li button {\n height: 100%;\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0 10px;\n white-space: nowrap; }\n div[id^="font-picker"] ul li button:hover, div[id^="font-picker"] ul li button:focus {\n background: #dddddd; }\n div[id^="font-picker"] ul li button.active-font {\n background: #d1d1d1; }\n');function ut(t){return(ut="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var pt=wp.components.Spinner;function dt(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function ht(t){return(ht=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function ft(t,e){return(ft=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function mt(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var gt=function(t){function e(t){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==ut(e)&&"function"!=typeof e?mt(t):e}(this,ht(e).call(this,t))).state={activeFont:n.props.activeFont,errorText:"",expanded:!1,loadingStatus:"loading"},n.props.options&&n.props.options.name?n.pickerSuffix="-".concat(n.props.options.name):n.pickerSuffix="",n.fontManager=new ct(n.props.apiKey,n.props.activeFont,n.props.options),n.fontManager.init().then(function(){n.setState({errorText:"",loadingStatus:"finished"})}).catch(function(t){n.setState({errorText:"Error trying to fetch the list of available fonts",loadingStatus:"error"}),console.error(n.state.errorText),console.error(t)}),n.setActiveFont=n.setActiveFont.bind(mt(mt(n))),n.onClose=n.onClose.bind(mt(mt(n))),n.onScroll=n.onScroll.bind(mt(mt(n))),n.toggleExpanded=n.toggleExpanded.bind(mt(mt(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ft(t,e)}(e,K["Component"]),function(t,e,n){e&&dt(t.prototype,e),n&&dt(t,n)}(e,[{key:"componentDidUpdate",value:function(){this.state.activeFont!==this.props.activeFont&&this.setActiveFont(this.props.activeFont)}},{key:"onClose",value:function(t){var e=t.target;do{if(e===document.getElementById("font-picker"))return;e=e.parentNode}while(e);this.toggleExpanded()}},{key:"onScroll",value:function(t){var e=t.target.scrollHeight/this.fontManager.fonts.length,n=Math.ceil((t.target.scrollTop+t.target.clientHeight)/e);this.fontManager.downloadPreviews(n+5)}},{key:"setActiveFont",value:function(t){-1===this.fontManager.setActiveFont(t)?(this.setState({activeFont:t,errorText:'Cannot update activeFont: The font "'.concat(t,'" is not in the font list'),loadingStatus:"error"}),console.error(this.state.errorText)):this.setState({activeFont:t,errorText:"",loadingStatus:"finished"})}},{key:"toggleExpanded",value:function(){this.state.expanded?(this.setState({expanded:!1}),document.removeEventListener("click",this.onClose)):(this.setState({expanded:!0}),document.addEventListener("click",this.onClose))}},{key:"render",value:function(){var t,e=this;return t=Q.a.createElement("ul",{className:this.state.expanded?"expanded":"",onScroll:this.onScroll},this.fontManager.fonts.map(function(t){var n=t.family===e.state.activeFont,o=t.family.replace(/\s+/g,"-").toLowerCase();return Q.a.createElement("li",{key:t.family},Q.a.createElement("button",{type:"button",className:"font-".concat(o).concat(e.pickerSuffix," ").concat(n?"active-font":""),onClick:function(){e.props.onChange(t)},onKeyPress:function(){e.props.onChange(t)}},t.family))})),Q.a.createElement("div",{id:"font-picker"},"loading"===this.state.loadingStatus&&Q.a.createElement(pt,null),t)}}]),e}();function yt(t){return(yt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function bt(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){vt(t,e,n[e])})}return t}function vt(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function kt(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Et(t){return(Et=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function wt(t,e){return(wt=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function xt(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var St=wp.i18n.__,Ct=wp.element,_t=Ct.Component,Ot=Ct.Fragment,Tt=wp.components,Pt=Tt.Button,Rt=Tt.Dropdown,Nt=Tt.RangeControl,Dt=Tt.SelectControl,jt=function(t){return Q.a.createElement("svg",t,Q.a.createElement("g",{fill:"#555D67",fillRule:"evenodd"},Q.a.createElement("path",{d:"M2 2v9h12V2H2zm0-2h12a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z",fillRule:"nonzero"}),Q.a.createElement("path",{d:"M6 14v-1h4v1h3v2H3v-2h3z"})))};jt.defaultProps={width:"16",height:"16",viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg"};var At=function(t){return Q.a.createElement("svg",t,Q.a.createElement("g",{fill:"none",fillRule:"evenodd"},Q.a.createElement("rect",{stroke:"#555D67",strokeWidth:"2",x:"1",y:"1",width:"10",height:"14",rx:"1"}),Q.a.createElement("path",{fill:"#555D67",d:"M5 10h2v2H5z"})))};At.defaultProps={width:"12",height:"16",viewBox:"0 0 12 16",xmlns:"http://www.w3.org/2000/svg"};var It={100:St("Thin"),200:St("Extra-Light"),"200italic":St("Extra-Light Italic"),300:St("Light"),"300italic":St("Light Italic"),400:St("Regular"),regular:St("Regular"),italic:St("Regular Italic"),500:St("Medium"),"500italic":St("Medium Italic"),600:St("Semi-Bold"),"600italic":St("Semi-Bold Italic"),700:St("Bold"),"700italic":St("Bold Italic"),800:St("Extra-Bold"),"800italic":St("Extra-Bold Italic"),900:St("Black"),"900italic":St("Black Italic")};function Mt(t){var e=t.fontfamily,n=function(t,e,n){var o="https://fonts.googleapis.com/css?family=";o+=t.replace(/ /g,"+"),o+=":".concat(e[0]);for(var i=1;i<e.length;i+=1)o+=",".concat(e[i]);if(!0===n){var r=t;r=(r=r.replace(/\s+/g,"")).split("").filter(function(t,e,n){return n.indexOf(t)===e}).join(""),o+="&text=".concat(r)}return o}(e,[t.desktop.fontweight],!1),o=document.createElement("link");o.rel="stylesheet",o.href=n,o.id="font-full-".concat(e);var i=document.getElementById(o.id);i?i.href.includes(t.desktop.fontweight)||(i.href=i.href+","+t.desktop.fontweight):document.head.appendChild(o)}var Lt=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==yt(e)&&"function"!=typeof e?xt(t):e}(this,Et(e).apply(this,arguments))).state={tab:"desktop",typography:n.props.typography},n.updateParam=n.updateParam.bind(xt(xt(n))),n.getVariantsList=n.getVariantsList.bind(xt(xt(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&wt(t,e)}(e,_t),function(t,e,n){e&&kt(t.prototype,e),n&&kt(t,n)}(e,[{key:"getVariantsList",value:function(t){return Object.keys(t).map(function(e,n){return{label:It.hasOwnProperty(t[e])?It[t[e]]:t[e],value:t[e]}})}},{key:"updateParam",value:function(t,e,n){if(g("professional")){var o=this.state.typography,i=this.props.updated,r=o;if("desktop"===n)switch(e){case"fontsize":case"lineheight":case"letterspacing":case"fontweight":r.desktop[e]=t}else if("mobile"===n)switch(e){case"fontsize":case"lineheight":case"letterspacing":case"fontweight":r.mobile[e]=t}else switch(e){case"fontfamily":r.fontfamily=t.family,r.variants=t.variants,r.desktop.fontweight=t.variants[0],r.mobile.fontweight=t.variants[0]}i(r),this.setState(function(t){return bt({},t,{typography:r})}),Mt(r)}}},{key:"render",value:function(){var t=this,e=this.state,n=e.typography,o=e.tab,i=this.props.title,r={fontFamily:n.fontfamily,fontWeight:n.desktop.fontweight};return Q.a.createElement(Rt,{className:"editor-component--field-typography-selector",contentClassName:"editor-component--dropdown-typography-selector",position:"bottom right",renderToggle:function(t){var e=t.isOpen,o=t.onToggle;return Q.a.createElement(Pt,{onClick:o,"aria-expanded":e},Q.a.createElement("label",null,i),Q.a.createElement("p",{style:r},n.fontfamily))},renderContent:function(){return Q.a.createElement(Ot,null,Q.a.createElement(gt,{apiKey:"AIzaSyD2YQ4A9FpunpkJ0FqxYueSsi7f2SYpmBg",activeFont:n.fontfamily,onChange:function(e){return t.updateParam(e,"fontfamily","global")}}),Q.a.createElement("div",{className:"typography-options__wrapper"},Q.a.createElement("div",{className:"tabs-menu"},Q.a.createElement("button",{"data-mode":"desktop"===o?"active":"",onClick:function(e){return t.setState(function(t){return bt({},t,{tab:"desktop"})})}},Q.a.createElement(jt,null)),Q.a.createElement("button",{"data-mode":"mobile"===o?"active":"",onClick:function(e){return t.setState(function(t){return bt({},t,{tab:"mobile"})})}},Q.a.createElement(At,null))),Q.a.createElement("div",{className:"tabs-content"},"desktop"===o&&Q.a.createElement("div",{className:"tab--desktop"},Q.a.createElement(Nt,{label:St("Size (px)"),value:n.desktop.fontsize,onChange:function(e){return t.updateParam(e,"fontsize","desktop")},min:12,max:100}),Q.a.createElement(Dt,{label:St("Style"),value:n.desktop.fontweight,options:t.getVariantsList(n.variants),onChange:function(e){return t.updateParam(e,"fontweight","desktop")}}),Q.a.createElement(Nt,{label:St("Line Height (%)"),value:n.desktop.lineheight,onChange:function(e){return t.updateParam(e,"lineheight","desktop")},min:100,max:200,step:5}),Q.a.createElement(Nt,{label:St("Letter Spacing (px)"),value:n.desktop.letterspacing,onChange:function(e){return t.updateParam(e,"letterspacing","desktop")},min:-1,max:5,step:.1})),"mobile"===o&&Q.a.createElement("div",{className:"tab--mobile"},Q.a.createElement(Nt,{label:St("Size (px)"),value:n.mobile.fontsize,onChange:function(e){return t.updateParam(e,"fontsize","mobile")},min:12,max:50}),Q.a.createElement(Dt,{label:St("Style"),value:n.mobile.fontweight,options:t.getVariantsList(n.variants),onChange:function(e){return t.updateParam(e,"fontweight","mobile")}}),Q.a.createElement(Nt,{label:St("Line Height (%)"),value:n.mobile.lineheight,onChange:function(e){return t.updateParam(e,"lineheight","mobile")},min:100,max:200,step:5}),Q.a.createElement(Nt,{label:St("Letter Spacing (px)"),value:n.mobile.letterspacing,onChange:function(e){return t.updateParam(e,"letterspacing","mobile")},min:-1,max:5,step:.1})))))}})}}]),e}(),Bt=n(23),zt=n.n(Bt),Wt=(wp.i18n.__,wp.element),Ft=(Wt.Component,Wt.Fragment,wp.components.Spinner),Jt=function(t){var e=t.attrs;return 0!==e.opacity&&React.createElement("div",{"data-component":"block-background-overlayer",style:{background:"".concat(e.color),opacity:e.opacity/100}})},Ut={autoPlay:5e3,pageDots:!1,prevNextButtons:!1,draggable:!1,wrapAround:!0},Ht=function(t){var e=t.background,n=JSON.parse(e),o="";switch(n.type){case"color":o=n.color&&React.createElement("div",{className:"color-element",style:{backgroundColor:n.color}});break;case"image":o=n.image.full&&React.createElement("div",{className:"image-element"},React.createElement("span",{style:{backgroundImage:"url(".concat(n.image.full,")")}}),React.createElement("span",{style:{backgroundImage:"url(".concat(n.image.thumb,")")}},React.createElement(Ft,null)));break;case"gallery":o=React.createElement("div",{className:"gallery-element"},React.createElement(zt.a,{elementType:"div",options:Ut,disableImagesLoaded:!1,reloadOnUpdate:!0},n.gallery.map(function(t){var e=t.full;t.id;return React.createElement("span",null,React.createElement("img",{src:e}))})));break;case"video":o=n.video.url&&React.createElement("div",{className:"video-element"},React.createElement("video",{playsinline:!0,autoPlay:!0,loop:!0,muted:!0,src:n.video.url,poster:n.image.full}))}return React.createElement("div",{"data-component":"block-background"},o)},Vt=(wp.i18n.__,wp.element),Gt=(Vt.Component,Vt.Fragment,wp.components),qt=Gt.ColorPalette,Yt=Gt.ColorIndicator,Xt=function(t){var e=t.label,n=t.colorValue,o=t.onChange;return React.createElement("div",{"data-editor-component":"color-palette-base-control"},React.createElement("label",null,e," ",React.createElement(Yt,{colorValue:n})),React.createElement(qt,{colors:p,value:n,onChange:o}))};function Kt(t){return(Kt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Qt(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function $t(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Zt(t){return(Zt=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function te(t,e){return(te=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function ee(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var ne=wp.i18n.__,oe=wp.element,ie=oe.Component,re=oe.Fragment,ae=wp.components.RangeControl,le=function(t){function e(t){var n;t.attributes;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var o="string"==typeof(n=function(t,e){return!e||"object"!==Kt(e)&&"function"!=typeof e?ee(t):e}(this,Zt(e).apply(this,arguments))).props.attrs||n.props.attrs instanceof String?JSON.parse(n.props.attrs):n.props.attrs;return n.state=o,n.update=n.update.bind(ee(ee(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&te(t,e)}(e,ie),function(t,e,n){e&&$t(t.prototype,e),n&&$t(t,n)}(e,[{key:"update",value:function(t,e){this.setState(function(t){return function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){Qt(t,e,n[e])})}return t}({},t,{typography:n})});var n=this.state;n[t]=e,this.setState(function(t){return n}),this.props.updateAttribute(n)}},{key:"render",value:function(){var t=this,e=this.state,n=e.color,o=e.opacity;return React.createElement(re,null,React.createElement(Xt,{label:ne("Overlayer color","coming-soon-blocks"),colorValue:n,onChange:function(e){return t.update("color",e)}}),React.createElement(ae,{label:ne("Overlayer Opacity","coming-soon-blocks"),value:o,onChange:function(e){return t.update("opacity",e)},min:0,max:100,step:5}))}}]),e}(),se=wp.i18n.__,ce=se("Template 1","coming-soon-blocks"),ue=[se("Conteudo","coming-soon-blocks")],pe=["image"];function de(t){return(de="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function he(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){fe(t,e,n[e])})}return t}function fe(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function me(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function ge(t){return(ge=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function ye(t,e){return(ye=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function be(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var ve=wp.i18n.__,ke=wp.element,Ee=ke.Component,we=ke.Fragment,xe=wp.editor,Se=xe.RichText,Ce=xe.InspectorControls,_e=xe.PanelColorSettings,Oe=wp.components,Te=Oe.RangeControl,Pe=(Oe.DropZone,Oe.PanelBody),Re=Oe.SelectControl,Ne=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==de(e)&&"function"!=typeof e?be(t):e}(this,ge(e).apply(this,arguments))).state={overlay:{color:n.props.attributes.overlayColor,opacity:n.props.attributes.overlayOpacity},bodyTypo:JSON.parse(n.props.attributes.bodyTypo),titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo)},Mt(n.state.bodyTypo),Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(be(be(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ye(t,e)}(e,Ee),function(t,e,n){e&&me(t.prototype,e),n&&me(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.bodyTypo,n=t.titleTypo,o=t.subtitleTypo,i=this.props.clientId,r=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(i,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(i),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(r(e,"body__typography"),"\n\t\t\t\t").concat(r(n,"title__typography"),"\n\t\t\t\t").concat(r(o,"subtitle__typography"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.state,n=e.bodyTypo,o=e.titleTypo,i=e.subtitleTypo,r=this.props,a=r.attributes,l=a.titleText,s=a.subTitleText,c=a.descriptionText,d=a.copyrightText,h=a.logoID,f=a.logoURL,m=a.logoMaxWidth,g=a.logoAlign,y=a.textColor,b=a.overlayColor,v=a.overlayOpacity,k=a.networks,E=a.background,w=r.className,x=r.setAttributes;return React.createElement(we,null,"// ... my premium only code ...",React.createElement(Ce,null,React.createElement(Pe,{title:ve("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:{color:b,opacity:v},updateAttribute:function(e){t.setState(function(t){return he({},t,{overlay:{color:e.color,opacity:e.opacity}})}),x({overlayColor:e.color,overlayOpacity:e.opacity})}}),React.createElement(X,{attributes:E,updateAttributes:function(t){x({background:t})}})),React.createElement(Pe,{title:ve("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Te,{label:ve("Max Logo Width (px)","coming-soon-blocks"),value:m,onChange:function(t){return x({logoMaxWidth:t})},min:30,max:500,step:5}),React.createElement(Re,{label:ve("Alignment:","coming-soon-blocks"),value:g,onChange:function(t){return x({logoAlign:t})},options:[{value:"left",label:ve("Left","coming-soon-blocks")},{value:"center",label:ve("Center","coming-soon-blocks")},{value:"right",label:ve("Right","coming-soon-blocks")}]})),React.createElement(_e,{title:ve("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:y,colors:p,onChange:function(t){return x({textColor:t})},label:ve("Text color","coming-soon-blocks")}]},React.createElement("label",{className:"single-field-label"},ve("Fonts","coming-soon-blocks")),React.createElement(A,{plan:"professional"},React.createElement(Lt,{title:ve("Title","coming-soon-blocks"),typography:o,updated:function(e){t.setState(function(t){return he({},t,{titleTypo:e})}),x({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:ve("Subtitle","coming-soon-blocks"),typography:i,updated:function(e){t.setState(function(t){return he({},t,{subtitleTypo:e})}),x({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:ve("Body","coming-soon-blocks"),typography:n,updated:function(e){t.setState(function(t){return he({},t,{bodyTypo:e})}),x({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-01",className:w},React.createElement("div",{className:"content__container",style:{color:y}},React.createElement("div",{className:"brand__wrapper"},React.createElement(u,{onSelect:function(t){x({logoURL:t.url,logoID:t.id})},allowedMediaTypes:pe,logoAttrs:{id:h,url:f},style:{maxWidth:"".concat(m,"px")},align:g})),React.createElement("div",{className:"title__wrapper"},React.createElement(Se,{tagName:"h1",className:"-title__typography",value:l,placeholder:ve("Title","coming-soon-blocks"),onChange:function(t){return x({titleText:t})}})),React.createElement("div",{className:"subtitle__wrapper"},React.createElement(Se,{tagName:"h2",className:"-subtitle__typography",value:s,placeholder:ve("Subtitle","coming-soon-blocks"),onChange:function(t){return x({subTitleText:t})}})),React.createElement("div",{className:"description__wrapper -body__typography"},React.createElement(Se,{tagName:"p",value:c,placeholder:ve("Description","coming-soon-blocks"),onChange:function(t){return x({descriptionText:t})}}),React.createElement(Se,{tagName:"p",value:d,className:"copyright",placeholder:ve("Copyright","coming-soon-blocks"),onChange:function(t){return x({copyrightText:t})}})),React.createElement("div",{className:"social__wrapper"},React.createElement(R,{networks:k,setNetworks:function(t){return x({networks:t})},position:"top left"}))),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:E})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-01",{title:ce,icon:"admin-generic",keywords:ue,category:"layout",supports:{align:["full"]},edit:Ne,save:function(){return null}});n(54),n(55);var De=wp.i18n.__,je=De("Template 2","coming-soon-blocks"),Ae=[De("Conteudo","coming-soon-blocks")],Ie=["image"];function Me(t){return(Me="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Le(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){Be(t,e,n[e])})}return t}function Be(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function ze(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function We(t){return(We=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Fe(t,e){return(Fe=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Je(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var Ue=wp.i18n.__,He=wp.element,Ve=He.Component,Ge=He.Fragment,qe=wp.editor,Ye=qe.RichText,Xe=qe.InspectorControls,Ke=qe.PanelColorSettings,Qe=wp.components,$e=Qe.RangeControl,Ze=(Qe.DropZone,Qe.PanelBody),tn=(Qe.SelectControl,function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Me(e)&&"function"!=typeof e?Je(t):e}(this,We(e).apply(this,arguments))).state={bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(Je(Je(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Fe(t,e)}(e,Ve),function(t,e,n){e&&ze(t.prototype,e),n&&ze(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state.bodyTypo,e=this.props,n=e.clientId,o=e.attributes.textColor;return React.createElement("div",{id:"block-style--".concat(n),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(function(t,e){var o="normal",i=t.desktop.fontweight;return i.includes("italic")&&(i=(i=i.replace("italic",""))||"normal",o="italic"),i.includes("regular")&&(i="normal"),'div[data-block="'.concat(n,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(i,";\n\t\t\t\t\t\tfont-style: ").concat(o,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")}(t,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(n,'"] main p {\n\t\t\t\t\t\tcolor: ').concat(o,";\n\t\t\t\t\t}"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=(n.logo,n.logoMaxWidth),i=n.additionalText,r=n.copyrightText,a=n.textColor,l=n.overlay,s=n.background,c=e.className,d=e.setAttributes;return React.createElement(Ge,null,React.createElement(Xe,null,React.createElement(Ze,{title:Ue("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:l,updateAttribute:function(e){d({overlay:JSON.stringify(e)}),t.setState(function(t,n){return Le({},t,{overlay:e})})}}),React.createElement(X,{attributes:s,updateAttributes:function(t){d({background:t})}})),React.createElement(Ze,{title:Ue("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement($e,{label:Ue("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return d({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(Ke,{title:Ue("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:a,colors:p,onChange:function(t){d({textColor:t}),console.log(t)},label:Ue("Text color","coming-soon-blocks")}]},React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},Ue("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:Ue("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return Le({},t,{bodyTypo:e})}),d({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-02",className:c},React.createElement("div",{className:"brand__wrapper"},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return Le({},t,{logo:n})}),d({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:Ie,style:{maxWidth:"".concat(o,"px")},align:"center"}),React.createElement("span",{className:"-body__typography additional-text__wrapper"},React.createElement(Ye,{tagName:"p",value:i,placeholder:Ue("Additional text, leave empty if you do not want to use.","coming-soon-blocks"),onChange:function(t){return d({additionalText:t})}}))),React.createElement("div",{className:"copyright__wrapper"},React.createElement(Ye,{tagName:"p",value:r,className:"-body__typography",placeholder:Ue("Copyright","coming-soon-blocks"),onChange:function(t){return d({copyrightText:t})}})),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:s})),this.editorCssStylePrint())}}]),e}());(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-02",{title:je,icon:"admin-generic",keywords:Ae,category:"layout",supports:{align:["full"]},edit:tn,save:function(){return null}});n(56),n(57);var en=wp.i18n.__,nn=en("Template 3","coming-soon-blocks"),on=[en("Conteudo","coming-soon-blocks")],rn=["image"];function an(t){return(an="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function ln(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){sn(t,e,n[e])})}return t}function sn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function cn(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function un(t){return(un=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function pn(t,e){return(pn=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function dn(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var hn=wp.i18n.__,fn=wp.element,mn=fn.Component,gn=fn.Fragment,yn=wp.editor,bn=yn.RichText,vn=yn.InspectorControls,kn=yn.PanelColorSettings,En=wp.components,wn=En.RangeControl,xn=En.PanelBody,Sn=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==an(e)&&"function"!=typeof e?dn(t):e}(this,un(e).apply(this,arguments))).state={titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(dn(dn(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&pn(t,e)}(e,mn),function(t,e,n){e&&cn(t.prototype,e),n&&cn(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.titleTypo,n=t.subtitleTypo,o=t.bodyTypo,i=this.props,r=i.clientId,a=i.attributes.textColor,l=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(l(e,"title__typography"),"\n\t\t\t\t").concat(l(n,"subtitle__typography"),"\n\t\t\t\t").concat(l(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main {\n\t\t\t\t\t\tcolor: ').concat(a,";\n\t\t\t\t\t}"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.networks,r=n.contentMaxWidth,a=n.titleText,l=n.subtitleText,s=n.copyrightText,c=n.textColor,d=n.overlay,h=n.background,f=e.className,m=e.setAttributes;return React.createElement(gn,null,React.createElement(vn,null,React.createElement(xn,{title:hn("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:d,updateAttribute:function(e){m({overlay:JSON.stringify(e)}),t.setState(function(t,n){return ln({},t,{overlay:e})})}}),React.createElement(X,{attributes:h,updateAttributes:function(t){m({background:t})}})),React.createElement(xn,{title:hn("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(wn,{label:hn("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return m({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(kn,{title:hn("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:c,colors:p,onChange:function(t){m({textColor:t}),console.log(t)},label:hn("Text color","coming-soon-blocks")}]},React.createElement(wn,{label:hn("Max Content Width (px)","coming-soon-blocks"),value:r,onChange:function(t){return m({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},hn("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:hn("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return ln({},t,{titleTypo:e})}),m({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:hn("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:function(e){t.setState(function(t){return ln({},t,{subtitleTypo:e})}),m({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:hn("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return ln({},t,{bodyTypo:e})}),m({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-03",className:f},React.createElement("div",{className:"brand__wrapper"},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return ln({},t,{logo:n})}),m({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:rn,style:{maxWidth:"".concat(o,"px")},align:"center"})),React.createElement("div",{className:"content__wrapper",style:{maxWidth:"".concat(r,"px")}},React.createElement("div",{className:"social__wrapper"},React.createElement(R,{networks:i,setNetworks:function(t){return m({networks:t})},position:"top left"})),React.createElement(bn,{tagName:"h1",value:a,className:"-title__typography",placeholder:hn("Say something about the page ...","coming-soon-blocks"),onChange:function(t){return m({titleText:t})}}),React.createElement(bn,{tagName:"h3",value:l,className:"-subtitle__typography",placeholder:hn("Subtitle goes here...","coming-soon-blocks"),onChange:function(t){return m({subtitleText:t})}}),React.createElement(bn,{tagName:"p",value:s,className:"-body__typography",placeholder:hn("© 2018...","coming-soon-blocks"),onChange:function(t){return m({copyrightText:t})}})),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:h})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-03",{title:nn,icon:"admin-generic",keywords:on,category:"layout",supports:{align:["full"]},edit:Sn,save:function(){return null}});n(58),n(59);var Cn=wp.i18n.__,_n=Cn("Template 4","coming-soon-blocks"),On=[Cn("Conteudo","coming-soon-blocks")],Tn=["image"];function Pn(t){return(Pn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Rn(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){Nn(t,e,n[e])})}return t}function Nn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Dn(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function jn(t){return(jn=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function An(t,e){return(An=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function In(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var Mn=wp.i18n.__,Ln=wp.element,Bn=Ln.Component,zn=Ln.Fragment,Wn=wp.editor,Fn=Wn.RichText,Jn=Wn.InspectorControls,Un=Wn.PanelColorSettings,Hn=wp.components,Vn=Hn.RangeControl,Gn=Hn.PanelBody,qn=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Pn(e)&&"function"!=typeof e?In(t):e}(this,jn(e).apply(this,arguments))).state={titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(In(In(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&An(t,e)}(e,Bn),function(t,e,n){e&&Dn(t.prototype,e),n&&Dn(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.titleTypo,n=t.subtitleTypo,o=t.bodyTypo,i=this.props,r=i.clientId,a=i.attributes.textColor,l=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(l(e,"title__typography"),"\n\t\t\t\t").concat(l(n,"subtitle__typography"),"\n\t\t\t\t").concat(l(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main {\n\t\t\t\t\t\tcolor: ').concat(a,";\n\t\t\t\t\t}"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.networks,r=n.contentMaxWidth,a=n.titleText,l=n.additionalText,s=n.subtitleText,c=n.networksText,d=n.copyrightText,h=n.textColor,f=n.overlay,m=n.background,g=e.className,y=e.setAttributes;return React.createElement(zn,null,React.createElement(Jn,null,React.createElement(Gn,{title:Mn("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:f,updateAttribute:function(e){y({overlay:JSON.stringify(e)}),t.setState(function(t,n){return Rn({},t,{overlay:e})})}}),React.createElement(X,{attributes:m,updateAttributes:function(t){y({background:t})}})),React.createElement(Gn,{title:Mn("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Vn,{label:Mn("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return y({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(Un,{title:Mn("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:h,colors:p,onChange:function(t){y({textColor:t}),console.log(t)},label:Mn("Text color","coming-soon-blocks")}]},React.createElement(Vn,{label:Mn("Max Content Width (px)","coming-soon-blocks"),value:r,onChange:function(t){return y({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},Mn("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:Mn("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return Rn({},t,{titleTypo:e})}),y({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:Mn("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:function(e){t.setState(function(t){return Rn({},t,{subtitleTypo:e})}),y({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:Mn("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return Rn({},t,{bodyTypo:e})}),y({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-04",className:g},React.createElement("div",{className:"top-content__wrapper"}),React.createElement("div",{className:"middle-content__wrapper",style:{maxWidth:"".concat(r,"px")}},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return Rn({},t,{logo:n})}),y({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:Tn,style:{maxWidth:"".concat(o,"px")},align:"center"}),React.createElement(Fn,{tagName:"h3",value:s,className:"-subtitle__typography",placeholder:Mn("Subtitle goes here...","coming-soon-blocks"),onChange:function(t){return y({subtitleText:t})}}),React.createElement(Fn,{tagName:"h1",value:a,className:"-title__typography",placeholder:Mn("Say something about the page ...","coming-soon-blocks"),onChange:function(t){return y({titleText:t})}}),React.createElement("span",{className:"-body__typography additional-text__wrapper"},React.createElement(Fn,{tagName:"p",value:l,placeholder:Mn("Additional text, leave empty if you do not want to use.","coming-soon-blocks"),onChange:function(t){return y({additionalText:t})}}))),React.createElement("div",{className:"bottom-content__wrapper"},React.createElement(Fn,{tagName:"h3",value:c,className:"-subtitle__typography",placeholder:Mn("Title","coming-soon-blocks"),onChange:function(t){return y({networksText:t})}}),React.createElement("div",{className:"social__wrapper"},React.createElement(R,{networks:i,setNetworks:function(t){return y({networks:t})},position:"top left"})),React.createElement(Fn,{tagName:"p",value:d,className:"-body__typography",placeholder:Mn("© 2018...","coming-soon-blocks"),onChange:function(t){return y({copyrightText:t})}})),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:m})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-04",{title:_n,icon:"admin-generic",keywords:On,category:"layout",supports:{align:["full"]},edit:qn,save:function(){return null}});n(60),n(61);var Yn=wp.i18n.__,Xn=Yn("Template 5","coming-soon-blocks"),Kn=[Yn("Conteudo","coming-soon-blocks")],Qn=["image"];function $n(t){return($n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Zn(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){to(t,e,n[e])})}return t}function to(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function eo(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function no(t){return(no=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function oo(t,e){return(oo=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function io(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var ro=wp.i18n.__,ao=wp.element,lo=ao.Component,so=ao.Fragment,co=wp.editor,uo=co.RichText,po=co.InspectorControls,ho=co.PanelColorSettings,fo=wp.components,mo=fo.RangeControl,go=fo.PanelBody,yo=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==$n(e)&&"function"!=typeof e?io(t):e}(this,no(e).apply(this,arguments))).state={titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(io(io(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&oo(t,e)}(e,lo),function(t,e,n){e&&eo(t.prototype,e),n&&eo(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.titleTypo,n=t.subtitleTypo,o=t.bodyTypo,i=this.props,r=i.clientId,a=i.attributes,l=a.textColor,s=a.titleColor,c=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(c(e,"title__typography"),"\n\t\t\t\t").concat(c(n,"subtitle__typography"),"\n\t\t\t\t").concat(c(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main { color: ').concat(l,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h1 { color: ').concat(s,"; }"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.networks,r=n.contentMaxWidth,a=n.titleText,l=n.subtitleText,s=n.contactsText,c=n.copyrightText,d=n.titleColor,h=n.textColor,f=n.overlay,m=n.background,g=e.className,y=e.setAttributes;return React.createElement(so,null,React.createElement(po,null,React.createElement(go,{title:ro("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:f,updateAttribute:function(e){y({overlay:JSON.stringify(e)}),t.setState(function(t,n){return Zn({},t,{overlay:e})})}}),React.createElement(X,{attributes:m,updateAttributes:function(t){y({background:t})}})),React.createElement(go,{title:ro("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(mo,{label:ro("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return y({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(ho,{title:ro("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:d,colors:p,onChange:function(t){y({titleColor:t}),console.log(t)},label:ro("Title color","coming-soon-blocks")},{value:h,colors:p,onChange:function(t){y({textColor:t}),console.log(t)},label:ro("Text color","coming-soon-blocks")}]},React.createElement(mo,{label:ro("Max Content Width (px)","coming-soon-blocks"),value:r,onChange:function(t){return y({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},ro("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:ro("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return Zn({},t,{titleTypo:e})}),y({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:ro("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:function(e){t.setState(function(t){return Zn({},t,{subtitleTypo:e})}),y({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:ro("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return Zn({},t,{bodyTypo:e})}),y({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-05",className:g},React.createElement("div",{className:"top-content__wrapper"}),React.createElement("div",{className:"middle-content__wrapper"},React.createElement(uo,{tagName:"h1",value:a,className:"-title__typography",placeholder:ro("Say something about the page ...","coming-soon-blocks"),onChange:function(t){return y({titleText:t})},style:{maxWidth:"".concat(r,"px")}})),React.createElement("div",{className:"bottom-content__wrapper"},React.createElement("div",null,React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return Zn({},t,{logo:n})}),y({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:Qn,style:{maxWidth:"".concat(o,"px")},align:"center"}),React.createElement(uo,{tagName:"h3",value:l,className:"-subtitle__typography",placeholder:ro("Title","coming-soon-blocks"),onChange:function(t){return y({subtitleText:t})}}),React.createElement(uo,{tagName:"p",value:s,className:"-body__typography contacts_wrapper",placeholder:ro("Leave empty to hide.","coming-soon-blocks"),onChange:function(t){return y({contactsText:t})}}),React.createElement(uo,{tagName:"p",value:c,className:"-body__typography copyright_wrapper",placeholder:ro("© 2018...","coming-soon-blocks"),onChange:function(t){return y({copyrightText:t})}})),React.createElement("div",null,React.createElement("div",{className:"social__wrapper"},React.createElement(R,{networks:i,setNetworks:function(t){return y({networks:t})},position:"top left"})))),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:m})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-05",{title:Xn,icon:"admin-generic",keywords:Kn,category:"layout",supports:{align:["full"]},edit:yo,save:function(){return null}});n(62),n(63);var bo=wp.i18n.__,vo=bo("Template 6","coming-soon-blocks"),ko=[bo("Conteudo","coming-soon-blocks")],Eo=["image"];function wo(t){return(wo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function xo(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){To(t,e,n[e])})}return t}function So(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Co(t){return(Co=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function _o(t,e){return(_o=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Oo(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function To(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Po=wp.i18n.__,Ro=wp.element,No=Ro.Component,Do=Ro.Fragment,jo=wp.editor,Ao=jo.RichText,Io=jo.InspectorControls,Mo=jo.PanelColorSettings,Lo=wp.components,Bo=Lo.RangeControl,zo=Lo.PanelBody,Wo=Lo.ToggleControl,Fo=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),To(Oo(Oo(n=function(t,e){return!e||"object"!==wo(e)&&"function"!=typeof e?Oo(t):e}(this,Co(e).apply(this,arguments)))),"editorCssStylePrint",function(){var t=n.state,e=t.titleTypo,o=t.bodyTypo,i=n.props,r=i.clientId,a=i.attributes,l=a.bodyTextColor,s=a.titleTextColor,c=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(c(e,"title__typography"),"\n\t\t\t\t").concat(c(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main { color: ').concat(l,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h1 { color: ').concat(s,"; }"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}),n.state={titleTypo:JSON.parse(n.props.attributes.titleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.bodyTypo),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&_o(t,e)}(e,No),function(t,e,n){e&&So(t.prototype,e),n&&So(t,n)}(e,[{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.logoWithMask,r=n.networks,a=n.contentMaxWidth,l=n.titleText,s=n.subtitleText,c=n.copyrightText,d=n.titleTextColor,h=n.bodyTextColor,f=n.overlay,m=n.background,g=e.className,y=e.setAttributes;return React.createElement(Do,null,React.createElement(Io,null,React.createElement(zo,{title:Po("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(le,{attrs:f,updateAttribute:function(e){y({overlay:JSON.stringify(e)}),t.setState(function(t,n){return xo({},t,{overlay:e})})}}),React.createElement(X,{attributes:m,updateAttributes:function(t){y({background:t})}})),React.createElement(zo,{title:Po("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Bo,{label:Po("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return y({logoMaxWidth:t})},min:30,max:500,step:5}),React.createElement(Wo,{checked:i,label:Po("Image with mask ","coming-soon-blocks"),onChange:function(t){return y({logoWithMask:t})}})),React.createElement(Mo,{title:Po("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:d,colors:p,onChange:function(t){y({titleTextColor:t}),console.log(t)},label:Po("Title color","coming-soon-blocks")},{value:h,colors:p,onChange:function(t){y({bodyTextColor:t}),console.log(t)},label:Po("Text color","coming-soon-blocks")}]},React.createElement(Bo,{label:Po("Max Content Width (px)","coming-soon-blocks"),value:a,onChange:function(t){return y({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},Po("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:Po("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return xo({},t,{titleTypo:e})}),y({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:Po("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return xo({},t,{bodyTypo:e})}),y({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-06",className:g},React.createElement("div",{className:"top-content__wrapper"}),React.createElement("div",{className:"middle-content__wrapper"},React.createElement("div",{style:{maxWidth:"".concat(a,"px")}},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return xo({},t,{logo:n})}),y({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,logoWithMask:i,allowedMediaTypes:Eo,style:{maxWidth:"".concat(o,"px")},align:"center"}),React.createElement(Ao,{tagName:"h1",value:l,className:"-title__typography",placeholder:Po("Say something about the page ...","coming-soon-blocks"),onChange:function(t){return y({titleText:t})}}),React.createElement(Ao,{tagName:"p",value:s,className:"-body__typography",placeholder:Po("Leave empty if you do not want to use.","coming-soon-blocks"),onChange:function(t){return y({subtitleText:t})}}),React.createElement("div",{className:"social__wrapper"},React.createElement(R,{networks:r,setNetworks:function(t){return y({networks:t})},position:"top left"})))),React.createElement("div",{className:"bottom-content__wrapper -body__typography"},React.createElement(Ao,{tagName:"p",value:c,className:"-body__typography copyright_wrapper",placeholder:Po("© 2018...","coming-soon-blocks"),onChange:function(t){return y({copyrightText:t})}})),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:m})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-06",{title:vo,icon:"admin-generic",keywords:ko,category:"layout",supports:{align:["full"]},edit:Fo,save:function(){return null}});n(64),n(65);var Jo=wp.i18n.__,Uo=Jo("Template 7","coming-soon-blocks"),Ho=[Jo("Conteudo","coming-soon-blocks")],Vo=["image"];function Go(t){return(Go="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function qo(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){Yo(t,e,n[e])})}return t}function Yo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Xo(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Ko(t){return(Ko=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Qo(t,e){return(Qo=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function $o(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var Zo=wp.i18n.__,ti=wp.element,ei=ti.Component,ni=ti.Fragment,oi=wp.editor,ii=oi.RichText,ri=oi.InspectorControls,ai=oi.PanelColorSettings,li=wp.components,si=li.RangeControl,ci=li.PanelBody,ui=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Go(e)&&"function"!=typeof e?$o(t):e}(this,Ko(e).apply(this,arguments))).state={titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind($o($o(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Qo(t,e)}(e,ei),function(t,e,n){e&&Xo(t.prototype,e),n&&Xo(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.titleTypo,n=t.subtitleTypo,o=t.bodyTypo,i=this.props,r=i.clientId,a=i.attributes,l=a.bodyTextColor,s=a.titleTextColor,c=a.blockBgColor,u=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(u(e,"title__typography"),"\n\t\t\t\t").concat(u(n,"subtitle__typography"),"\n\t\t\t\t").concat(u(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main { color: ').concat(l,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h1 { color: ').concat(s,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h2 { color: ').concat(s,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main .content__wrapper { background-color: ').concat(c,"; }"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.networks,r=n.contentMaxWidth,a=n.titleText,l=n.subtitleText,s=n.descriptionText,c=n.copyrightText,d=n.titleTextColor,h=n.bodyTextColor,f=n.blockBgColor,m=n.overlay,g=n.background,y=e.className,b=e.setAttributes;return React.createElement(ni,null,React.createElement(ri,null,React.createElement(ci,{title:Zo("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Xt,{label:Zo("Background Block Color","coming-soon-blocks"),colorValue:f,onChange:function(t){return b({blockBgColor:t})}}),React.createElement(le,{attrs:m,updateAttribute:function(e){b({overlay:JSON.stringify(e)}),t.setState(function(t,n){return qo({},t,{overlay:e})})}}),React.createElement(X,{attributes:g,updateAttributes:function(t){b({background:t})}})),React.createElement(ci,{title:Zo("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(si,{label:Zo("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return b({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(ai,{title:Zo("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:d,colors:p,onChange:function(t){b({titleTextColor:t}),console.log(t)},label:Zo("Title color","coming-soon-blocks")},{value:h,colors:p,onChange:function(t){b({bodyTextColor:t}),console.log(t)},label:Zo("Text color","coming-soon-blocks")}]},React.createElement(si,{label:Zo("Max Content Width (px)","coming-soon-blocks"),value:r,onChange:function(t){return b({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},Zo("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:Zo("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return qo({},t,{titleTypo:e})}),b({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:Zo("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:function(e){t.setState(function(t){return qo({},t,{subtitleTypo:e})}),b({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:Zo("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return qo({},t,{bodyTypo:e})}),b({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-07",className:y},React.createElement("div",{className:"media__wrapper"},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return qo({},t,{logo:n})}),b({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:Vo,style:{maxWidth:"".concat(o,"px")},align:"center"})),React.createElement("div",{className:"content__wrapper -body__typography"},React.createElement("div",{className:"the-content",style:{maxWidth:"".concat(r,"px")}},React.createElement(ii,{tagName:"h2",value:l,className:"-subtitle__typography",placeholder:Zo("Leave empty to hide.","coming-soon-blocks"),onChange:function(t){return b({subtitleText:t})}}),React.createElement(ii,{tagName:"h1",value:a,className:"-title__typography",placeholder:Zo("Say something to your visits...","coming-soon-blocks"),onChange:function(t){return b({titleText:t})}}),React.createElement(ii,{tagName:"p",value:s,placeholder:Zo("Leave empty to hide.","coming-soon-blocks"),onChange:function(t){return b({descriptionText:t})}}),React.createElement(R,{networks:i,setNetworks:function(t){return b({networks:t})},position:"top left"})),React.createElement("div",{className:"the-footer"},React.createElement(ii,{tagName:"p",value:c,placeholder:Zo("© 2018...","coming-soon-blocks"),onChange:function(t){return b({copyrightText:t})}}))),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:g})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-07",{title:Uo,icon:"admin-generic",keywords:Ho,category:"layout",supports:{align:["full"]},edit:ui,save:function(){return null}});n(66),n(67);var pi=wp.i18n.__,di=pi("Template 8","coming-soon-blocks"),hi=[pi("Conteudo","coming-soon-blocks")],fi=["image"];function mi(t){return(mi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function gi(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){yi(t,e,n[e])})}return t}function yi(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function bi(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function vi(t){return(vi=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function ki(t,e){return(ki=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Ei(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var wi=wp.i18n.__,xi=wp.element,Si=xi.Component,Ci=xi.Fragment,_i=wp.editor,Oi=_i.RichText,Ti=_i.InspectorControls,Pi=_i.PanelColorSettings,Ri=wp.components,Ni=Ri.RangeControl,Di=Ri.PanelBody,ji=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==mi(e)&&"function"!=typeof e?Ei(t):e}(this,vi(e).apply(this,arguments))).state={titleTypo:JSON.parse(n.props.attributes.titleTypo),subtitleTypo:JSON.parse(n.props.attributes.subtitleTypo),bodyTypo:JSON.parse(n.props.attributes.bodyTypo),logo:JSON.parse(n.props.attributes.logo),overlay:JSON.parse(n.props.attributes.overlay)},Mt(n.state.titleTypo),Mt(n.state.subtitleTypo),Mt(n.state.bodyTypo),n.editorCssStylePrint=n.editorCssStylePrint.bind(Ei(Ei(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ki(t,e)}(e,Si),function(t,e,n){e&&bi(t.prototype,e),n&&bi(t,n)}(e,[{key:"editorCssStylePrint",value:function(){var t=this.state,e=t.titleTypo,n=t.subtitleTypo,o=t.bodyTypo,i=this.props,r=i.clientId,a=i.attributes,l=a.bodyTextColor,s=a.titleTextColor,c=a.blockBgColor,u=function(t,e){var n="normal",o=t.desktop.fontweight;return o.includes("italic")&&(o=(o=o.replace("italic",""))||"normal",n="italic"),o.includes("regular")&&(o="normal"),'div[data-block="'.concat(r,'"] main .-').concat(e," {\n\t\t\t\t\t\tfont-family: ").concat(t.fontfamily,";\n\t\t\t\t\t\tfont-size: ").concat(t.desktop.fontsize,"px;\n\t\t\t\t\t\tfont-weight: ").concat(o,";\n\t\t\t\t\t\tfont-style: ").concat(n,";\n\t\t\t\t\t\tline-height: ").concat(t.desktop.lineheight,"%;\n\t\t\t\t\t\tletter-spacing: ").concat(t.desktop.letterspacing,"px;\n\t\t\t\t\t}")};return React.createElement("div",{id:"block-style--".concat(r),dangerouslySetInnerHTML:{__html:"\n\t\t\t\t<style>\n\t\t\t\t".concat(u(e,"title__typography"),"\n\t\t\t\t").concat(u(n,"subtitle__typography"),"\n\t\t\t\t").concat(u(o,"body__typography"),"\n\t\t\t\t").concat('div[data-block="'.concat(r,'"] main { color: ').concat(l,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h1 { color: ').concat(s,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main h2 { color: ').concat(s,'; }\n\t\t\t\t\tdiv[data-block="').concat(r,'"] main .content__wrapper { background-color: ').concat(c,"; }"),"\n\t\t\t\t</style>\n\t\t\t\t")}})}},{key:"render",value:function(){var t=this,e=this.props,n=e.attributes,o=n.logoMaxWidth,i=n.networks,r=n.contentMaxWidth,a=n.titleText,l=n.subtitleText,s=n.descriptionText,c=n.copyrightText,d=n.titleTextColor,h=n.bodyTextColor,f=n.blockBgColor,m=n.overlay,g=n.background,y=e.className,b=e.setAttributes;return React.createElement(Ci,null,React.createElement(Ti,null,React.createElement(Di,{title:wi("BACKGROUND","coming-soon-blocks"),initialOpen:!0},React.createElement(Xt,{label:wi("Background Block Color","coming-soon-blocks"),colorValue:f,onChange:function(t){return b({blockBgColor:t})}}),React.createElement(le,{attrs:m,updateAttribute:function(e){b({overlay:JSON.stringify(e)}),t.setState(function(t,n){return gi({},t,{overlay:e})})}}),React.createElement(X,{attributes:g,updateAttributes:function(t){b({background:t})}})),React.createElement(Di,{title:wi("BRAND","coming-soon-blocks"),initialOpen:!1},React.createElement(Ni,{label:wi("Max Logo Width (px)","coming-soon-blocks"),value:o,onChange:function(t){return b({logoMaxWidth:t})},min:30,max:500,step:5})),React.createElement(Pi,{title:wi("TYPOGRAPHY","coming-soon-blocks"),initialOpen:!1,colorSettings:[{value:d,colors:p,onChange:function(t){b({titleTextColor:t}),console.log(t)},label:wi("Title color","coming-soon-blocks")},{value:h,colors:p,onChange:function(t){b({bodyTextColor:t}),console.log(t)},label:wi("Text color","coming-soon-blocks")}]},React.createElement(Ni,{label:wi("Max Content Width (px)","coming-soon-blocks"),value:r,onChange:function(t){return b({contentMaxWidth:t})},min:100,max:1200,step:5}),React.createElement(A,{plan:"professional"},React.createElement("label",{className:"single-field-label"},wi("Fonts","coming-soon-blocks")),React.createElement(Lt,{title:wi("Title","coming-soon-blocks"),typography:this.state.titleTypo,updated:function(e){t.setState(function(t){return gi({},t,{titleTypo:e})}),b({titleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:wi("Subtitle","coming-soon-blocks"),typography:this.state.subtitleTypo,updated:function(e){t.setState(function(t){return gi({},t,{subtitleTypo:e})}),b({subtitleTypo:JSON.stringify(e)})}}),React.createElement(Lt,{title:wi("Body","coming-soon-blocks"),typography:this.state.bodyTypo,updated:function(e){t.setState(function(t){return gi({},t,{bodyTypo:e})}),b({bodyTypo:JSON.stringify(e)})}})))),React.createElement("main",{"data-block":"pixelthrone/comingsoon--temp-08",className:y},React.createElement("div",{className:"content__wrapper -body__typography"},React.createElement("div",{className:"the-content",style:{maxWidth:"".concat(r,"px")}},React.createElement(Oi,{tagName:"h2",value:l,className:"-subtitle__typography",placeholder:wi("Leave empty to hide.","coming-soon-blocks"),onChange:function(t){return b({subtitleText:t})}}),React.createElement(Oi,{tagName:"h1",value:a,className:"-title__typography",placeholder:wi("Say something to your visits...","coming-soon-blocks"),onChange:function(t){return b({titleText:t})}}),React.createElement(Oi,{tagName:"p",value:s,placeholder:wi("Leave empty to hide.","coming-soon-blocks"),onChange:function(t){return b({descriptionText:t})}}),React.createElement(R,{networks:i,setNetworks:function(t){return b({networks:t})},position:"top left"})),React.createElement("div",{className:"the-footer"},React.createElement(Oi,{tagName:"p",value:c,placeholder:wi("© 2018...","coming-soon-blocks"),onChange:function(t){return b({copyrightText:t})}}))),React.createElement("div",{className:"media__wrapper"},React.createElement(u,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return gi({},t,{logo:n})}),b({logo:JSON.stringify(n)})},logoAttrs:this.state.logo,allowedMediaTypes:fi,style:{maxWidth:"".concat(o,"px")},align:"center"})),React.createElement(Jt,{attrs:this.state.overlay}),React.createElement(Ht,{background:g})),this.editorCssStylePrint())}}]),e}();(0,wp.blocks.registerBlockType)("pixelthrone/comingsoon--temp-08",{title:di,icon:"admin-generic",keywords:hi,category:"layout",supports:{align:["full"]},edit:ji,save:function(){return null}});n(68);function Ai(t){return(Ai="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Ii(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Mi(t){return(Mi=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Li(t,e){return(Li=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Bi(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var zi=wp.compose.compose,Wi=wp.data,Fi=Wi.withDispatch,Ji=(Wi.withSelect,wp.element),Ui=Ji.Component,Hi=Ji.Fragment,Vi=wp.blocks.createBlock,Gi=wp.editPost,qi=Gi.PluginSidebar,Yi=Gi.PluginSidebarMoreMenuItem,Xi=wp.plugins.registerPlugin,Ki=wp.i18n.__,Qi=wp.components.Button,$i=csblocks.baseURL,Zi="pixelthrone--comingsoonblocks-templates",tr=function(t){return Q.a.createElement("svg",t,Q.a.createElement("path",{d:"M10 1c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zm1-11H9v3H6v2h3v3h2v-3h3V9h-3V6z"}))};tr.defaultProps={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",viewBox:"0 0 20 20"};var er=function(){return Q.a.createElement(Yi,{target:Zi},Ki("Page Templates","coming-soon-blocks"))},nr=function(t){var e=t.attr,n=t.action;t.index;return Q.a.createElement("div",{className:"template-thumb-button"},Q.a.createElement("img",{src:$i+e.thumb.img}),Q.a.createElement(Qi,{onClick:function(t){t.preventDefault(),n(e.name)},isDefault:!0},Ki("Add Template","coming-soon-blocks")))},or=function(t){function e(t){var n;t.attributes;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Ai(e)&&"function"!=typeof e?Bi(t):e}(this,Mi(e).apply(this,arguments))).addTemplate=n.addTemplate.bind(Bi(Bi(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Li(t,e)}(e,Ui),function(t,e,n){e&&Ii(t.prototype,e),n&&Ii(t,n)}(e,[{key:"addTemplate",value:function(t){var e=Vi(t,{});this.props.insertBlock(e)}},{key:"render",value:function(){var t=this;return Q.a.createElement(Hi,null,Q.a.createElement(er,null),Q.a.createElement(qi,{name:Zi,className:"teste",title:Ki("Page Templates","coming-soon-blocks")},Q.a.createElement("div",{"data-component":"sidebar--available-blocks"},Object.keys(o).map(function(e,n){return Q.a.createElement(nr,{attr:o[e],action:t.addTemplate,index:n,key:n})}))))}}]),e}(),ir=zi(Fi(function(t){return{insertBlock:t("core/editor").insertBlock,updateFeaturedImage:function(e){t("core/editor").editPost({featured_media:e})}}}))(or);Xi(Zi,{icon:Q.a.createElement(function(){return Q.a.createElement("span",{className:"layout--header--show-template-button"},Q.a.createElement(tr,{v:"3"}))},null),render:function(){return Q.a.createElement(ir,null)}});n(69);var rr=n(7);function ar(t){return(ar="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function lr(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){sr(t,e,n[e])})}return t}function sr(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function cr(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function ur(t){return(ur=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function pr(t,e){return(pr=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function dr(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var hr=wp.i18n.__,fr=wp.compose.compose,mr=wp.element,gr=mr.Component,yr=mr.Fragment,br=wp.data,vr=br.withDispatch,kr=br.withSelect,Er=wp.editPost,wr=Er.PluginSidebar,xr=Er.PluginSidebarMoreMenuItem,Sr=wp.plugins.registerPlugin,Cr=wp.components,_r=Cr.TextControl,Or=Cr.TextareaControl,Tr=Cr.Spinner,Pr=Cr.PanelBody,Rr=Cr.PanelRow,Nr=Cr.ToggleControl,Dr=Cr.DateTimePicker,jr=Cr.Button,Ar=Cr.Dropdown,Ir=csblocks.settings,Mr=csblocks.time_format,Lr="pixelthrone--comingsoonblocks-settings",Br=function(t){return Q.a.createElement("svg",t,Q.a.createElement("path",{d:"M6.74 10.913c0 .603-.152 1.139-.455 1.607-.303.468-.74.831-1.31 1.09-.57.26-1.24.39-2.007.39-.64 0-1.178-.045-1.612-.136A5.942 5.942 0 0 1 0 13.388v-2.342a7.691 7.691 0 0 0 1.547.602 5.705 5.705 0 0 0 1.474.216c.386 0 .669-.067.849-.203.18-.135.27-.309.27-.522a.58.58 0 0 0-.109-.35c-.072-.099-.189-.2-.349-.302-.16-.102-.587-.31-1.28-.625-.627-.289-1.098-.568-1.412-.839a2.571 2.571 0 0 1-.697-.931C.14 7.742.066 7.327.066 6.848c0-.896.322-1.595.967-2.096C1.678 4.25 2.564 4 3.692 4c.996 0 2.012.233 3.047.699l-.796 2.029c-.9-.417-1.676-.626-2.33-.626-.338 0-.583.06-.737.18a.545.545 0 0 0-.23.446c0 .19.097.361.292.512.196.151.726.426 1.59.825.83.377 1.405.782 1.727 1.214.323.433.484.977.484 1.634zm6.91 2.954H7.938V4.14h5.712v2.109h-3.113v1.53h2.883v2.11h-2.883v1.836h3.113v2.142zm5.64 0h-2.599V6.289h-2.35v-2.15h7.293v2.15H19.29v7.578zm7.945 0h-2.6V6.289h-2.349v-2.15h7.292v2.15h-2.343v7.578zm3.43 0V4.14h2.612v9.727h-2.612zm13.564 0H40.82l-3.514-6.853h-.06c.084 1.078.126 1.9.126 2.468v4.385h-2.304V4.14h3.396l3.501 6.76h.04a39.594 39.594 0 0 1-.092-2.362V4.14h2.316v9.727zm5.654-5.695h4.153v5.243c-1.128.39-2.367.585-3.718.585-1.483 0-2.63-.435-3.439-1.304-.81-.87-1.214-2.11-1.214-3.72 0-1.57.443-2.791 1.33-3.665C47.88 4.437 49.121 4 50.718 4c.606 0 1.177.058 1.714.173a7.183 7.183 0 0 1 1.406.44l-.823 2.062a5.042 5.042 0 0 0-2.284-.52c-.759 0-1.346.25-1.76.75-.415.498-.622 1.211-.622 2.138 0 .91.187 1.603.563 2.08.375.476.915.715 1.622.715.386 0 .741-.038 1.066-.113V10.2h-1.718V8.17zM62 10.912c0 .604-.151 1.14-.454 1.608-.303.468-.74.831-1.31 1.09-.57.26-1.24.39-2.007.39-.64 0-1.178-.045-1.612-.136a5.942 5.942 0 0 1-1.356-.476v-2.342a7.691 7.691 0 0 0 1.546.602 5.705 5.705 0 0 0 1.475.216c.386 0 .669-.067.849-.203.18-.135.27-.309.27-.522a.58.58 0 0 0-.11-.35c-.072-.099-.188-.2-.348-.302-.16-.102-.587-.31-1.28-.625-.627-.289-1.098-.568-1.412-.839a2.571 2.571 0 0 1-.697-.931c-.152-.35-.227-.765-.227-1.244 0-.896.322-1.595.967-2.096C56.94 4.25 57.825 4 58.953 4c.996 0 2.012.233 3.047.699l-.796 2.029c-.9-.417-1.676-.626-2.33-.626-.338 0-.584.06-.737.18a.545.545 0 0 0-.23.446c0 .19.097.361.292.512.196.151.725.426 1.59.825.829.377 1.405.782 1.727 1.214.323.433.484.977.484 1.634z",fill:"#555D67",fillRule:"evenodd"}))};Br.defaultProps={width:"62",height:"17",viewBox:"0 0 62 17",xmlns:"http://www.w3.org/2000/svg"};var zr=function(){return Q.a.createElement(xr,{target:Lr},hr("SETTINGS","coming-soon-blocks"))},Wr=function(t){function e(t){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==ar(e)&&"function"!=typeof e?dr(t):e}(this,ur(e).call(this,t))).state=m(Ir,{status:!1,schedule:"",scheduleStartDate:"",scheduleEndDate:"",loginBypass:!1,passwordProtected:!1,password:"",googleAnalytics:"",othersAnalytics:"",CSSCode:"",JSCode:"",redirectMode:!1,cookieNotice:!1,redirectUrl:"http://"}),n.updatePost=n.updatePost.bind(dr(dr(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&pr(t,e)}(e,gr),function(t,e,n){e&&cr(t.prototype,e),n&&cr(t,n)}(e,[{key:"updatePost",value:function(){var t=this,e=this.props.editPost;setTimeout(function(){Object(rr.a)(t.state.status),e({comingsoonblocks_settings:JSON.stringify(t.state)})},200)}},{key:"render",value:function(){var t=this,e=this.props,n=e.isSaving,o=e.openLookAndFeelSidebar,i=this.state,r=i.status,a=i.schedule,l=i.scheduleStartDate,s=i.scheduleEndDate,c=i.googleAnalytics,u=i.othersAnalytics,p=i.loginBypass,d=i.passwordProtected,h=i.password,f=i.CSSCode,m=i.JSCode,g=i.redirectMode,y=i.redirectUrl,b=i.cookieNotice,v=/a(?!\\)/i.test(Mr.toLowerCase().replace(/\\\\/g,"").split("").reverse().join(""));return Q.a.createElement(yr,null,Q.a.createElement(zr,null),Q.a.createElement(wr,{name:Lr,title:hr("SETTINGS","coming-soon-blocks")},Q.a.createElement("div",{"data-component":"sidebar--settings-options","data-loading":n?"true":"false"},n&&Q.a.createElement(Tr,null),Q.a.createElement(Pr,{title:hr("GENERAL","coming-soon-blocks"),initialOpen:!0},Q.a.createElement(Rr,{className:""},Q.a.createElement(Nr,{label:hr("Enable coming soon","coming-soon-blocks","coming-soon-blocks"),help:hr("By activating this option this page will appear to all the website visitors.","coming-soon-blocks"),checked:r,onChange:function(e){return t.setState(function(t){return{status:e}},t.updatePost())}}),r&&Q.a.createElement(A,{plan:"starter"},Q.a.createElement(Nr,{label:hr("Schedule Publish","coming-soon-blocks"),help:hr("By activating this option it is possible to set a date to show or hide the page.","coming-soon-blocks"),checked:a,onChange:function(e){return t.setState(function(t){return{schedule:e}},t.updatePost())}})),a&&Q.a.createElement(A,{plan:"starter"},Q.a.createElement(yr,null,Q.a.createElement(Ar,{className:"editor-component--field-date-time-picker",contentClassName:"editor-component--dropdown-date-time-picker",position:"bottom right",renderToggle:function(e){var n=e.isOpen,o=e.onToggle;return Q.a.createElement("div",null,Q.a.createElement("label",null,hr("Start:","coming-soon-blocks")),Q.a.createElement(jr,{isLink:!0,onClick:o,"aria-expanded":n},l||hr("Set date","coming-soon-blocks")),l&&Q.a.createElement(jr,{isDefault:!0,isSmall:!0,onClick:function(e){return t.setState(function(t){return{scheduleStartDate:""}},t.updatePost())}},"✖"))},renderContent:function(){return Q.a.createElement(Dr,{is12Hour:v,currentDate:l,onChange:function(e){return t.setState(function(t){return{scheduleStartDate:e}},t.updatePost())}})}}),Q.a.createElement(Ar,{className:"editor-component--field-date-time-picker",contentClassName:"editor-component--dropdown-date-time-picker",position:"bottom right",renderToggle:function(e){var n=e.isOpen,o=e.onToggle;return Q.a.createElement("div",null,Q.a.createElement("label",null,hr("End:","coming-soon-blocks")),Q.a.createElement(jr,{isLink:!0,onClick:o,"aria-expanded":n},s||hr("Set date","coming-soon-blocks")),s&&Q.a.createElement(jr,{isDefault:!0,isSmall:!0,onClick:function(e){return t.setState(function(t){return{scheduleEndDate:""}},t.updatePost())}},"✖"))},renderContent:function(){return Q.a.createElement(Dr,{is12Hour:v,currentDate:s,onChange:function(e){return t.setState(function(t){return{scheduleEndDate:e}},t.updatePost())}})}}))))),Q.a.createElement(Pr,{title:hr("ACCESS","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(Rr,{className:""},Q.a.createElement(Nr,{label:hr("Show normal website to logged in users?","coming-soon-blocks"),help:hr("Enable this option if you want logged in users to view the website normally while visitors see the maintenance page.","coming-soon-blocks"),checked:p,onChange:function(e){return t.setState(function(t){return lr({},t,{loginBypass:e})},t.updatePost())}}),Q.a.createElement(Nr,{label:hr("Redirect Mode","coming-soon-blocks"),help:hr('Enable this option if you want to move your visitors to a new page. We will define the header as "301 Moved Permanently"',"coming-soon-blocks"),checked:g,onChange:function(e){return t.setState(function(t){return lr({},t,{redirectMode:e})},t.updatePost())}}),g&&Q.a.createElement(_r,{label:hr("Redirect Url","coming-soon-blocks"),value:y,onChange:function(e){return t.setState(function(t){return lr({},t,{redirectUrl:e})},t.updatePost())}}),!g&&Q.a.createElement(A,{plan:"starter"},Q.a.createElement(Nr,{label:hr("Password Protected","coming-soon-blocks"),help:hr("Protected with a password you choose. Only those with the password can view the site.","coming-soon-blocks"),checked:d,onChange:function(e){return t.setState(function(t){return lr({},t,{passwordProtected:e})},t.updatePost())}}),d&&Q.a.createElement(yr,null,Q.a.createElement(_r,{label:hr("Password","coming-soon-blocks"),value:h,onChange:function(e){return t.setState(function(t){return lr({},t,{password:e})},t.updatePost())},onFocus:function(t){return"text"},onblur:function(t){return"password"}}),Q.a.createElement("p",{onClick:o,"data-editor-component":"notice","data-notice":"warning"},hr('To change the element colors see the sidebar "Look & Feel"',"coming-soon-blocks")))))),Q.a.createElement(Pr,{title:hr("COOKIE NOTICE","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(Rr,{className:""},Q.a.createElement(Nr,{label:hr("Enable Cookie Notice","coming-soon-blocks"),help:hr("By activating this option a small notice will appear notifying the visitor that the site uses cookies.","coming-soon-blocks"),checked:b,onChange:function(e){return t.setState(function(t){return{cookieNotice:e}},t.updatePost())}}))),Q.a.createElement(Pr,{title:hr("CUSTOM CSS & JS","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(Rr,{className:""},Q.a.createElement(_r,{label:hr("Google Analytics Tracking ID","coming-soon-blocks"),value:c,onChange:function(e){return t.setState(function(t){return lr({},t,{googleAnalytics:e})},t.updatePost())}}),Q.a.createElement(A,{plan:"professional"},Q.a.createElement(Or,{label:hr("Tracking Pixel & 3rd Party Analytics Code","coming-soon-blocks"),help:hr("Copy&paste the complete code, including the opening and closing <script> tags.","coming-soon-blocks"),value:u,onChange:function(e){return t.setState(function(t){return lr({},t,{othersAnalytics:e})},t.updatePost())}})),Q.a.createElement(A,{plan:"professional"},Q.a.createElement(Or,{label:hr("JS","coming-soon-blocks"),rows:"6",help:hr("Copy&paste the complete code, including the opening and closing <script> tags.","coming-soon-blocks"),value:m,onChange:function(e){return t.setState(function(t){return lr({},t,{JSCode:e})},t.updatePost())}})),Q.a.createElement(A,{plan:"professional"},Q.a.createElement(Or,{label:hr("CSS","coming-soon-blocks"),rows:"6",value:f,onChange:function(e){return t.setState(function(t){return lr({},t,{CSSCode:e})},t.updatePost())}})))))))}}]),e}(),Fr=fr(vr(function(t){var e=t("core/editor").editPost;t("core/edit-post").togglePinnedPluginItem;return{editPost:e,openLookAndFeelSidebar:function(){}}}),kr(function(t){return{isSaving:(0,t("core/editor").isSavingPost)()}}))(Wr);Sr(Lr,{icon:Q.a.createElement(function(){return Q.a.createElement(Br,{className:"settings-button",v:"1"})},null),render:function(){return Q.a.createElement(Fr,null)}});n(70);function Jr(t){return(Jr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Ur(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){Hr(t,e,n[e])})}return t}function Hr(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Vr(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Gr(t){return(Gr=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function qr(t,e){return(qr=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Yr(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var Xr=wp.i18n.__,Kr=wp.compose.compose,Qr=wp.element,$r=Qr.Component,Zr=Qr.Fragment,ta=wp.data,ea=ta.withDispatch,na=ta.withSelect,oa=wp.editPost,ia=oa.PluginSidebar,ra=oa.PluginSidebarMoreMenuItem,aa=wp.plugins.registerPlugin,la=wp.editor.MediaUpload,sa=wp.components,ca=sa.Button,ua=sa.TextControl,pa=sa.TextareaControl,da=sa.Spinner,ha=sa.PanelBody,fa=sa.PanelRow,ma=sa.ToggleControl,ga=(sa.Tooltip,csblocks.seo),ya=function(t){return Q.a.createElement("svg",t,Q.a.createElement("path",{d:"M6.725 10.917a2.89 2.89 0 0 1-.453 1.605c-.302.467-.738.83-1.307 1.09-.569.258-1.237.388-2.003.388-.64 0-1.176-.045-1.609-.136A5.927 5.927 0 0 1 0 13.389v-2.34c.495.258 1.01.458 1.543.602a5.69 5.69 0 0 0 1.472.216c.385 0 .667-.067.847-.203a.625.625 0 0 0 .27-.521.579.579 0 0 0-.11-.349c-.072-.1-.188-.2-.347-.302-.16-.102-.586-.31-1.278-.625C1.771 9.58 1.302 9.3.988 9.03a2.568 2.568 0 0 1-.696-.93c-.15-.35-.226-.764-.226-1.243 0-.895.321-1.592.965-2.093.644-.5 1.528-.75 2.653-.75.994 0 2.008.232 3.041.697l-.794 2.027c-.898-.417-1.673-.625-2.325-.625-.337 0-.583.06-.736.18a.545.545 0 0 0-.23.445c0 .19.098.36.292.511.195.15.724.425 1.587.824.827.377 1.402.78 1.724 1.213.321.432.482.975.482 1.63zm6.897 2.95h-5.7V4.153h5.7v2.106h-3.106v1.528h2.876v2.107h-2.876v1.834h3.106v2.14zM24 8.997c0 1.634-.396 2.877-1.189 3.727-.792.85-1.953 1.276-3.48 1.276-1.507 0-2.662-.427-3.465-1.282-.804-.855-1.205-2.1-1.205-3.735 0-1.616.4-2.851 1.198-3.704C16.66 4.426 17.82 4 19.343 4c1.529 0 2.687.423 3.475 1.27C23.606 6.114 24 7.357 24 8.996zm-6.607 0c0 1.878.646 2.817 1.937 2.817.657 0 1.144-.228 1.462-.684.317-.457.476-1.168.476-2.133 0-.97-.161-1.687-.483-2.15-.322-.463-.802-.694-1.442-.694-1.3 0-1.95.948-1.95 2.844z",fill:"#555D67",fillRule:"evenodd"}))};ya.defaultProps={width:"24",height:"17",viewBox:"0 0 24 17",xmlns:"http://www.w3.org/2000/svg"};var ba=function(){return Q.a.createElement(ra,{target:"pixelthrone--comingsoonblocks-seo"},Xr("SEO","coming-soon-blocks"))},va=function(t){function e(t){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Jr(e)&&"function"!=typeof e?Yr(t):e}(this,Gr(e).call(this,t))).state=m(ga,{title:"",description:"",keywords:"",author:"",copyright:"",facebook:{title:"",description:"",cover:{id:"",url:""}},twitter:{title:"",description:"",cover:{id:"",url:""}},serviceUnavailable:!1,noCache:!1}),n.updatePost=n.updatePost.bind(Yr(Yr(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&qr(t,e)}(e,$r),function(t,e,n){e&&Vr(t.prototype,e),n&&Vr(t,n)}(e,[{key:"updatePost",value:function(){var t=this,e=this.props.editPost;setTimeout(function(){e({comingsoonblocks_seo:JSON.stringify(t.state)})},200)}},{key:"render",value:function(){var t=this,e=this.props.isSaving,n=this.state,o=n.title,i=n.description,r=n.keywords,a=n.author,l=n.copyright,s=n.facebook,c=n.twitter,u=n.serviceUnavailable,p=n.noCache;return Q.a.createElement(Zr,null,Q.a.createElement(ba,null),Q.a.createElement(ia,{name:"pixelthrone--comingsoonblocks-seo",title:Xr("SEO","coming-soon-blocks")},Q.a.createElement("div",{"data-component":"sidebar--seo-options","data-loading":e?"true":"false"},e&&Q.a.createElement(da,null),Q.a.createElement(ha,{title:Xr("SEARCH ENGINES","coming-soon-blocks"),initialOpen:!0},Q.a.createElement(fa,{className:""},Q.a.createElement(ua,{label:Xr("Page Title","coming-soon-blocks"),value:o,onChange:function(e){return t.setState(function(t){return Ur({},t,{title:e})},t.updatePost())}}),Q.a.createElement(pa,{label:Xr("Meta Description","coming-soon-blocks"),value:i,onChange:function(e){return t.setState(function(t){return Ur({},t,{description:e})},t.updatePost())}}),Q.a.createElement(ua,{label:Xr("keywords","coming-soon-blocks"),help:Xr("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:r,onChange:function(e){return t.setState(function(t){return Ur({},t,{keywords:e})},t.updatePost())}}),Q.a.createElement(ua,{label:Xr("Author","coming-soon-blocks"),help:Xr("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:a,onChange:function(e){return t.setState(function(t){return Ur({},t,{author:e})},t.updatePost())}}),Q.a.createElement(ua,{label:Xr("Copyright","coming-soon-blocks"),help:Xr("eg: SEO, search engine optimisation, optimization","coming-soon-blocks"),value:l,onChange:function(e){return t.setState(function(t){return Ur({},t,{copyright:e})},t.updatePost())}}),Q.a.createElement(ma,{label:Xr("Temporarily Pause Search Engines","coming-soon-blocks"),help:Xr("If your site is already indexed and you're just taking it down for a while, enable this option. It temporarily discourages search engines from crawling the site by telling them it's under construction by sending a 503 Service Unavailable response.","coming-soon-blocks"),checked:u,onChange:function(e){return t.setState(function(t){return Ur({},t,{serviceUnavailable:e})},t.updatePost())}}),Q.a.createElement(ma,{label:Xr("Send no-cache Headers","coming-soon-blocks"),help:Xr("If you don't want the coming soon page's preview to be cached by Facebook and other social media enable this option. Once you switch to the normal site social media preview (visible when sharing the site's link) will immediately be refreshed.","coming-soon-blocks"),checked:p,onChange:function(e){return t.setState(function(t){return Ur({},t,{noCache:e})},t.updatePost())}}))),Q.a.createElement(ha,{title:Xr("FACEBOOK","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(fa,null,Q.a.createElement(ua,{label:Xr("Facebook Title","coming-soon-blocks"),value:s.title,onChange:function(e){return t.setState(function(t){return Ur({},t,{facebook:Ur({},t.facebook,{title:e})})},t.updatePost())}}),Q.a.createElement(pa,{label:Xr("Facebook Description","coming-soon-blocks"),value:s.description,onChange:function(e){return t.setState(function(t){return Ur({},t,{facebook:Ur({},t.facebook,{description:e})})},t.updatePost())}}),Q.a.createElement("label",null,Xr("Facebook Cover Image","coming-soon-blocks")),Q.a.createElement("p",null,Q.a.createElement("small",null,"The recommended size is 1024 by 512 pixels.")),Q.a.createElement(la,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return Ur({},t,{facebook:Ur({},t.facebook,{cover:n})})},t.updatePost()),t.updatePost()},allowedTypes:["image"],value:s.cover.id,render:function(t){var e=t.open;return Q.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},s.cover.url&&Q.a.createElement("img",{onClick:e,src:s.cover.url}),Q.a.createElement(ca,{onClick:e,isDefault:!0},s.cover.id?Xr("Replace image","coming-soon-blocks"):Xr("Add image","coming-soon-blocks")))}}))),Q.a.createElement(ha,{title:Xr("TWITTER","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(fa,null,Q.a.createElement(ua,{label:Xr("Twitter Title","coming-soon-blocks"),value:c.title,onChange:function(e){return t.setState(function(t){return Ur({},t,{twitter:Ur({},t.twitter,{title:e})})},t.updatePost())}}),Q.a.createElement(pa,{label:Xr("Twitter Description","coming-soon-blocks"),value:c.description,onChange:function(e){return t.setState(function(t){return Ur({},t,{twitter:Ur({},t.twitter,{description:e})})},t.updatePost())}}),Q.a.createElement("label",null,Xr("Twitter Cover Image","coming-soon-blocks")),Q.a.createElement("p",null,Q.a.createElement("small",null,"The recommended size is 1200 by 630 pixels.")),Q.a.createElement(la,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return Ur({},t,{twitter:Ur({},t.twitter,{cover:n})})},t.updatePost()),t.updatePost()},allowedTypes:["image"],value:c.cover.id,render:function(t){var e=t.open;return Q.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},c.cover.url&&Q.a.createElement("img",{onClick:e,src:c.cover.url}),Q.a.createElement(ca,{onClick:e,isDefault:!0},c.cover.id?Xr("Replace image","coming-soon-blocks"):Xr("Add image","coming-soon-blocks")))}}))))))}}]),e}(),ka=Kr(ea(function(t){return{editPost:t("core/editor").editPost}}),na(function(t){var e=t("core").getPostType,n=t("core/editor"),o=n.getCurrentPostId,i=n.getEditedPostAttribute,r=n.isSavingPost;return{currentPostId:o(),postType:e(i("type")),isSaving:r()}}))(va);aa("pixelthrone--comingsoonblocks-seo",{icon:Q.a.createElement(function(){return Q.a.createElement(ya,{className:"seo-button",v:"1"})},null),render:function(){return Q.a.createElement(ka,null)}});n(71);function Ea(t){return(Ea="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function wa(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){xa(t,e,n[e])})}return t}function xa(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Sa(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Ca(t){return(Ca=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function _a(t,e){return(_a=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Oa(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var Ta=wp.i18n.__,Pa=wp.compose.compose,Ra=wp.element,Na=Ra.Component,Da=Ra.Fragment,ja=wp.data,Aa=ja.withDispatch,Ia=ja.withSelect,Ma=wp.editPost,La=Ma.PluginSidebar,Ba=Ma.PluginSidebarMoreMenuItem,za=wp.plugins.registerPlugin,Wa=wp.editor.MediaUpload,Fa=wp.components,Ja=Fa.Button,Ua=Fa.Spinner,Ha=Fa.PanelBody,Va=Fa.PanelRow,Ga=Fa.ToggleControl,qa=Fa.ColorPalette,Ya=Fa.ColorIndicator,Xa=function(t){return Q.a.createElement("svg",t,Q.a.createElement("path",{d:"M0 13.426v-9.28h2.486v7.255H6.03v2.025H0zm15.578-4.653c0 1.562-.38 2.749-1.14 3.561-.759.813-1.87 1.22-3.335 1.22-1.443 0-2.55-.41-3.32-1.226-.77-.817-1.155-2.006-1.155-3.567 0-1.545.383-2.724 1.149-3.54C8.542 4.408 9.655 4 11.116 4c1.464 0 2.574.404 3.329 1.212.755.809 1.133 1.996 1.133 3.561zm-6.332 0c0 1.795.62 2.692 1.857 2.692.63 0 1.096-.218 1.4-.654.305-.436.457-1.115.457-2.038 0-.926-.155-1.61-.463-2.053-.308-.442-.769-.663-1.381-.663-1.247 0-1.87.905-1.87 2.716zm16.327 0c0 1.562-.38 2.749-1.139 3.561-.76.813-1.871 1.22-3.336 1.22-1.443 0-2.55-.41-3.32-1.226-.77-.817-1.155-2.006-1.155-3.567 0-1.545.383-2.724 1.149-3.54C18.538 4.408 19.651 4 21.111 4c1.464 0 2.574.404 3.33 1.212.755.809 1.132 1.996 1.132 3.561zm-6.331 0c0 1.795.618 2.692 1.856 2.692.63 0 1.096-.218 1.4-.654.305-.436.457-1.115.457-2.038 0-.926-.154-1.61-.463-2.053-.308-.442-.769-.663-1.381-.663-1.246 0-1.87.905-1.87 2.716zm15.577 4.653h-2.807l-1.818-3.548-.737.444v3.104H26.96v-9.28h2.498v4.03c.126-.249.38-.645.762-1.186l1.932-2.844h2.719l-2.902 4.158 2.851 5.122zm9.978 0l-.623-.647c-.378.241-.688.407-.929.498a4.07 4.07 0 0 1-.812.206c-.3.047-.643.07-1.029.07-.663 0-1.25-.114-1.759-.343-.51-.228-.9-.548-1.17-.958a2.49 2.49 0 0 1-.406-1.403c0-1.109.57-1.957 1.711-2.545a3.619 3.619 0 0 1-.607-.943 2.794 2.794 0 0 1-.217-1.127c0-.677.259-1.214.777-1.612.518-.398 1.23-.597 2.137-.597.885 0 1.574.198 2.067.594.494.396.74.934.74 1.615 0 .47-.133.905-.4 1.305-.266.4-.687.775-1.262 1.127l1.253 1.2a4.685 4.685 0 0 0 .654-1.651h2.556a8.414 8.414 0 0 1-.595 1.755 7.119 7.119 0 0 1-.916 1.508l2.014 1.948h-3.184zm-4.192-2.755c0 .267.094.485.283.654.189.17.439.254.75.254.238 0 .448-.032.628-.095.18-.064.32-.136.416-.216l-1.561-1.6c-.344.259-.516.593-.516 1.003zm1.857-4.437c0-.207-.06-.356-.18-.447a.722.722 0 0 0-.45-.137.718.718 0 0 0-.462.16c-.133.105-.199.274-.199.507 0 .317.185.645.554.984.24-.136.422-.297.548-.486.126-.188.189-.382.189-.58zm11.689 7.192h-2.449v-9.28h5.438v2.012h-2.99V7.93h2.757v2.012h-2.756v3.485zm9.687 0h-5.464v-9.28h5.464v2.012H60.86v1.46h2.756V9.63h-2.756v1.752h2.977v2.044zm6.798 0h-5.463v-9.28h5.463v2.012h-2.977v1.46h2.756V9.63H67.66v1.752h2.977v2.044zm1.335 0v-9.28h2.486v7.255H78v2.025h-6.03z",fill:"#555D67",fillRule:"evenodd"}))};Xa.defaultProps={width:"78",height:"17",viewBox:"0 0 78 17",xmlns:"http://www.w3.org/2000/svg"};var Ka=csblocks.lookandfeel,Qa=csblocks.settings;var $a=function(){return Q.a.createElement(Ba,{target:"pixelthrone--comingsoonblocks-look-and-feel"},Ta("LOOK AND FEEL","coming-soon-blocks"))},Za=function(t){function e(t){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e){return!e||"object"!==Ea(e)&&"function"!=typeof e?Oa(t):e}(this,Ca(e).call(this,t))).state=m(Ka,{pluginBrand:!1,favicon:{id:"",url:""},unlock_button_color:"#282A2F",activeFont:"",typography:{}}),n.updatePost=n.updatePost.bind(Oa(Oa(n))),n.showPasswordProtectedOptions=n.showPasswordProtectedOptions.bind(Oa(Oa(n))),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&_a(t,e)}(e,Na),function(t,e,n){e&&Sa(t.prototype,e),n&&Sa(t,n)}(e,[{key:"updatePost",value:function(){var t=this,e=this.props.editPost;setTimeout(function(){e({comingsoonblocks_lookandfeel:JSON.stringify(t.state)})},200)}},{key:"showPasswordProtectedOptions",value:function(){var t=this.props.settingsSidebarOptions;return t?JSON.parse(t).passwordProtected:Qa.passwordProtected}},{key:"render",value:function(){var t=this,e=this.props.isSaving,n=this.state,o=n.favicon,i=n.pluginBrand,r=n.unlock_button_color;return Q.a.createElement(Da,null,Q.a.createElement($a,null),Q.a.createElement(La,{name:"pixelthrone--comingsoonblocks-look-and-feel",title:Ta("LOOK AND FEEL","coming-soon-blocks")},Q.a.createElement("div",{"data-component":"sidebar--settings-options","data-loading":e?"true":"false"},e&&Q.a.createElement(Ua,null),Q.a.createElement(Ha,{title:Ta("ICONS","coming-soon-blocks"),initialOpen:!0},Q.a.createElement(Va,{className:""},Q.a.createElement("label",null,Ta("Favicon","coming-soon-blocks")),Q.a.createElement(Wa,{onSelect:function(e){var n={id:e.id,url:e.url};t.setState(function(t){return wa({},t,{favicon:n})}),t.updatePost()},allowedTypes:["image"],value:o.id,render:function(t){var e=t.open;return Q.a.createElement("div",{"data-editor-component":"inspector-controls--image-uploader"},o.url&&Q.a.createElement("img",{onClick:e,src:o.url}),Q.a.createElement("span",null,Q.a.createElement(Ja,{onClick:e,isDefault:!0},o.id?Ta("Replace icon","coming-soon-blocks"):Ta("Add icon","coming-soon-blocks"))))}}))),this.showPasswordProtectedOptions()&&Q.a.createElement(Ha,{title:Ta("PASSWORD PROTECTED","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(Va,{className:""},Q.a.createElement(A,{plan:"starter"},Q.a.createElement("div",{"data-editor-component":"color-palette-base-control"},Q.a.createElement("label",null,Ta("Button Background","coming-soon-blocks")," ",Q.a.createElement(Ya,{colorValue:r})),Q.a.createElement(qa,{colors:p,value:r,onChange:function(e){return t.setState(function(t){return wa({},t,{unlock_button_color:e})},t.updatePost())}}))))),Q.a.createElement(Ha,{title:Ta("ADVANCED","coming-soon-blocks"),initialOpen:!1},Q.a.createElement(Va,{className:""},Q.a.createElement(Ga,{label:Ta("Show Some Love","coming-soon-blocks"),help:Ta("Please help others learn about this free plugin by placing a small link in the footer. Thank you very much!","coming-soon-blocks"),checked:i,onChange:function(e){return t.setState(function(t){return wa({},t,{pluginBrand:e})},t.updatePost())}}))))))}}]),e}(),tl=Pa(Aa(function(t){return{editPost:t("core/editor").editPost}}),Ia(function(t){var e=t("core/editor"),n=e.getEditedPostAttribute,o=e.isSavingPost;return{settingsSidebarOptions:n("comingsoonblocks_settings"),isSaving:o()}}))(Za);za("pixelthrone--comingsoonblocks-look-and-feel",{icon:Q.a.createElement(function(){return Q.a.createElement(Xa,{className:"look-and-feel-button",v:"2"})},null),render:function(){return Q.a.createElement(tl,null)}});n(31)},,,function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){}]);
public/dist/blocks.editor.bundle.css CHANGED
@@ -1,1322 +1,13 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- /**
8
- * Spinner
9
- *
10
- * @since 1.0.0
11
- * @version 1.0.0
12
- */
13
- @-webkit-keyframes pt_theme__loadingSpinner {
14
- 0% {
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg); }
17
- 100% {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg); } }
20
-
21
- @keyframes pt_theme__loadingSpinner {
22
- 0% {
23
- -webkit-transform: rotate(0deg);
24
- transform: rotate(0deg); }
25
- 100% {
26
- -webkit-transform: rotate(360deg);
27
- transform: rotate(360deg); } }
28
-
29
- /**
30
- * Inherit Typography
31
- */
32
- /**
33
- * Media
34
- *
35
- * @since 1.0.0
36
- * @version 1.0.0
37
- */
38
- /**
39
- * Media
40
- *
41
- * @since 1.0.0
42
- * @version 1.0.0
43
- */
44
- /**
45
- * Colors
46
- */
47
- /**
48
- * Media Queryes
49
- */
50
- body .edit-post-header .edit-post-pinned-plugins button .settings-button {
51
- stroke: none !important; }
52
- body .edit-post-header .edit-post-pinned-plugins button .settings-button > * {
53
- stroke: none !important; }
54
- /**
55
- * keyframes
56
- *
57
- * @since 1.0.0
58
- * @version 1.0.0
59
- */
60
- /**
61
- * Spinner
62
- *
63
- * @since 1.0.0
64
- * @version 1.0.0
65
- */
66
- @-webkit-keyframes pt_theme__loadingSpinner {
67
- 0% {
68
- -webkit-transform: rotate(0deg);
69
- transform: rotate(0deg); }
70
- 100% {
71
- -webkit-transform: rotate(360deg);
72
- transform: rotate(360deg); } }
73
-
74
- @keyframes pt_theme__loadingSpinner {
75
- 0% {
76
- -webkit-transform: rotate(0deg);
77
- transform: rotate(0deg); }
78
- 100% {
79
- -webkit-transform: rotate(360deg);
80
- transform: rotate(360deg); } }
81
-
82
- /**
83
- * Inherit Typography
84
- */
85
- /**
86
- * Media
87
- *
88
- * @since 1.0.0
89
- * @version 1.0.0
90
- */
91
- /**
92
- * Media
93
- *
94
- * @since 1.0.0
95
- * @version 1.0.0
96
- */
97
- /**
98
- * Colors
99
- */
100
- /**
101
- * Media Queryes
102
- */
103
- .edit-post-header button[aria-label="Page Templates"] {
104
- position: absolute;
105
- left: 4px;
106
- top: 10px; }
107
- .edit-post-header button[aria-label="Page Templates"].is-toggled svg *,
108
- .edit-post-header button[aria-label="Page Templates"] svg * {
109
- stroke: none !important; }
110
- .edit-post-header button[aria-label="Page Templates"].is-toggled svg * path,
111
- .edit-post-header button[aria-label="Page Templates"] svg * path {
112
- stroke: none !important; }
113
- .edit-post-header button[aria-label="Page Templates"]:hover.is-toggled svg *,
114
- .edit-post-header button[aria-label="Page Templates"]:hover svg * {
115
- stroke: none !important; }
116
- .edit-post-header button[aria-label="Page Templates"]:hover.is-toggled svg * path,
117
- .edit-post-header button[aria-label="Page Templates"]:hover svg * path {
118
- stroke: none !important; }
119
-
120
- .edit-post-header .layout--header--show-template-button svg {
121
- display: inherit;
122
- stroke: none !important; }
123
- .edit-post-header .layout--header--show-template-button svg path {
124
- stroke: none !important; }
125
-
126
- .edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button {
127
- position: relative;
128
- display: block;
129
- margin: 10px 0;
130
- text-decoration: none;
131
- /* ---- hover ---- */ }
132
- .edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button button {
133
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
134
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
135
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
136
- position: absolute;
137
- bottom: 10px;
138
- right: 20px;
139
- opacity: 0; }
140
- .edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button img {
141
- margin: 0 auto;
142
- display: inherit; }
143
- .edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button:hover button {
144
- opacity: 1; }
145
- /**
146
- * keyframes
147
- *
148
- * @since 1.0.0
149
- * @version 1.0.0
150
- */
151
- /**
152
- * Spinner
153
- *
154
- * @since 1.0.0
155
- * @version 1.0.0
156
- */
157
- @-webkit-keyframes pt_theme__loadingSpinner {
158
- 0% {
159
- -webkit-transform: rotate(0deg);
160
- transform: rotate(0deg); }
161
- 100% {
162
- -webkit-transform: rotate(360deg);
163
- transform: rotate(360deg); } }
164
-
165
- @keyframes pt_theme__loadingSpinner {
166
- 0% {
167
- -webkit-transform: rotate(0deg);
168
- transform: rotate(0deg); }
169
- 100% {
170
- -webkit-transform: rotate(360deg);
171
- transform: rotate(360deg); } }
172
-
173
- /**
174
- * Inherit Typography
175
- */
176
- /**
177
- * Media
178
- *
179
- * @since 1.0.0
180
- * @version 1.0.0
181
- */
182
- /**
183
- * Media
184
- *
185
- * @since 1.0.0
186
- * @version 1.0.0
187
- */
188
- /**
189
- * Colors
190
- */
191
- /**
192
- * Media Queryes
193
- */
194
- body .edit-post-header .edit-post-pinned-plugins button .seo-button {
195
- stroke: none !important; }
196
- body .edit-post-header .edit-post-pinned-plugins button .seo-button > * {
197
- stroke: none !important; }
198
- /**
199
- * keyframes
200
- *
201
- * @since 1.0.0
202
- * @version 1.0.0
203
- */
204
- /**
205
- * Spinner
206
- *
207
- * @since 1.0.0
208
- * @version 1.0.0
209
- */
210
- @-webkit-keyframes pt_theme__loadingSpinner {
211
- 0% {
212
- -webkit-transform: rotate(0deg);
213
- transform: rotate(0deg); }
214
- 100% {
215
- -webkit-transform: rotate(360deg);
216
- transform: rotate(360deg); } }
217
-
218
- @keyframes pt_theme__loadingSpinner {
219
- 0% {
220
- -webkit-transform: rotate(0deg);
221
- transform: rotate(0deg); }
222
- 100% {
223
- -webkit-transform: rotate(360deg);
224
- transform: rotate(360deg); } }
225
-
226
- /**
227
- * Inherit Typography
228
- */
229
- /**
230
- * Media
231
- *
232
- * @since 1.0.0
233
- * @version 1.0.0
234
- */
235
- /**
236
- * Media
237
- *
238
- * @since 1.0.0
239
- * @version 1.0.0
240
- */
241
- /**
242
- * Colors
243
- */
244
- /**
245
- * Media Queryes
246
- */
247
- body .edit-post-header .edit-post-pinned-plugins button .look-and-feel-button {
248
- stroke: none !important; }
249
- body .edit-post-header .edit-post-pinned-plugins button .look-and-feel-button > * {
250
- stroke: none !important; }
251
- /**
252
- * keyframes
253
- *
254
- * @since 1.0.0
255
- * @version 1.0.0
256
- */
257
- /**
258
- * Spinner
259
- *
260
- * @since 1.0.0
261
- * @version 1.0.0
262
- */
263
- @-webkit-keyframes pt_theme__loadingSpinner {
264
- 0% {
265
- -webkit-transform: rotate(0deg);
266
- transform: rotate(0deg); }
267
- 100% {
268
- -webkit-transform: rotate(360deg);
269
- transform: rotate(360deg); } }
270
-
271
- @keyframes pt_theme__loadingSpinner {
272
- 0% {
273
- -webkit-transform: rotate(0deg);
274
- transform: rotate(0deg); }
275
- 100% {
276
- -webkit-transform: rotate(360deg);
277
- transform: rotate(360deg); } }
278
-
279
- /**
280
- * Inherit Typography
281
- */
282
- /**
283
- * Media
284
- *
285
- * @since 1.0.0
286
- * @version 1.0.0
287
- */
288
- /**
289
- * Media
290
- *
291
- * @since 1.0.0
292
- * @version 1.0.0
293
- */
294
- /**
295
- * Colors
296
- */
297
- /**
298
- * Media Queryes
299
- */
300
- /**
301
- * Editor Components
302
- */
303
- button[data-editor-component="brand-uploader"] {
304
- position: relative;
305
- display: table;
306
- outline: none;
307
- border: none;
308
- cursor: pointer;
309
- background-color: transparent;
310
- /* ---- hover ---- */ }
311
- button[data-editor-component="brand-uploader"] i {
312
- -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
313
- -o-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
314
- transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
315
- position: absolute;
316
- right: -15px;
317
- top: -15px;
318
- width: 30px;
319
- height: 30px;
320
- border-radius: 50%;
321
- border: 1px solid #e2e4e7;
322
- background-color: rgba(255, 255, 255, 0.7);
323
- color: #555d67;
324
- pointer-events: none; }
325
- button[data-editor-component="brand-uploader"] i::before {
326
- -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
327
- -o-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
328
- transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
329
- position: absolute;
330
- top: 50%;
331
- left: 50%;
332
- -webkit-transform: translate(-50%, -50%);
333
- -ms-transform: translate(-50%, -50%);
334
- transform: translate(-50%, -50%);
335
- z-index: 1; }
336
- button[data-editor-component="brand-uploader"] img {
337
- display: inherit; }
338
- button[data-editor-component="brand-uploader"]:hover i {
339
- border: 1px solid rgba(25, 30, 35, 0.5);
340
- background-color: white; }
341
- button[data-editor-component="brand-uploader"]:hover i::before {
342
- color: #191e23; }
343
-
344
- div[data-editor-component="inspector-controls--image-uploader"] {
345
- display: -ms-flexbox;
346
- display: flex;
347
- -ms-flex-direction: row;
348
- flex-direction: row;
349
- -ms-flex-wrap: wrap;
350
- flex-wrap: wrap;
351
- -ms-flex-pack: justify;
352
- justify-content: space-between;
353
- -ms-flex-align: center;
354
- align-items: center; }
355
- div[data-editor-component="inspector-controls--image-uploader"] label {
356
- display: block;
357
- margin-bottom: 8px; }
358
- div[data-editor-component="inspector-controls--image-uploader"] img {
359
- border: 1px solid #e2e4e7;
360
- max-width: 100%; }
361
- div[data-editor-component="inspector-controls--image-uploader"] span {
362
- display: block;
363
- width: 100%; }
364
- div[data-editor-component="inspector-controls--image-uploader"] button {
365
- margin-top: 5px; }
366
-
367
- /**
368
- * Color palette
369
- *
370
- * @since 1.0.0
371
- */
372
- div[data-editor-component="color-palette-base-control"] label {
373
- margin-bottom: 14px;
374
- display: -ms-flexbox !important;
375
- display: flex !important;
376
- -ms-flex-direction: row;
377
- flex-direction: row;
378
- -ms-flex-wrap: nowrap;
379
- flex-wrap: nowrap;
380
- -ms-flex-pack: start;
381
- justify-content: flex-start;
382
- -ms-flex-align: center;
383
- align-items: center; }
384
-
385
- /**
386
- * Notices
387
- *
388
- * @since 1.0.0
389
- */
390
- *[data-editor-component|="notice"] {
391
- border-left: 4px solid transparent;
392
- padding: 8px 12px;
393
- color: initial;
394
- text-decoration: none; }
395
- *[data-editor-component|="notice"][data-notice="warning"] {
396
- background-color: #fef8ee;
397
- border-left-color: #f0b849; }
398
-
399
- /**
400
- * Date Time Picker
401
- *
402
- * @since 1.0.0
403
- */
404
- .editor-component--dropdown-date-time-picker .components-popover__content {
405
- padding: 10px; }
406
-
407
- .editor-component--field-date-time-picker {
408
- display: block;
409
- width: 100%;
410
- margin-bottom: 10px; }
411
- .editor-component--field-date-time-picker > div {
412
- display: -ms-flexbox;
413
- display: flex;
414
- -ms-flex-direction: row;
415
- flex-direction: row;
416
- -ms-flex-wrap: nowrap;
417
- flex-wrap: nowrap;
418
- -ms-flex-pack: start;
419
- justify-content: flex-start;
420
- -ms-flex-align: center;
421
- align-items: center;
422
- min-height: 24px; }
423
- .editor-component--field-date-time-picker > div label {
424
- margin: 0;
425
- padding: 0;
426
- width: auto !important;
427
- -ms-flex-positive: 1;
428
- flex-grow: 1; }
429
- .editor-component--field-date-time-picker > div button:nth-of-type(1) {
430
- padding: 0;
431
- margin: 0;
432
- text-align: right !important;
433
- margin-right: 10px; }
434
-
435
- /**
436
- * Single Label
437
- *
438
- * @since 1.0.0
439
- */
440
- label.single-field-label {
441
- padding: 0;
442
- margin: 0 0 10px 0;
443
- display: block;
444
- color: #555d66; }
445
-
446
- /**
447
- * Help Notice
448
- *
449
- * @since 1.0.0
450
- */
451
- *[data-editor-component="help-notice"] {
452
- opacity: 0.7;
453
- font-size: 12px;
454
- padding: 0;
455
- margin-top: 6px !important; }
456
-
457
- /**
458
- * Panel Titles
459
- *
460
- * @since 1.0.0
461
- */
462
- .components-panel__body.editor-block-inspector__advanced .components-panel__body-title button {
463
- text-transform: uppercase; }
464
-
465
- /**
466
- * Font Picker
467
- *
468
- * @since 1.0.0
469
- */
470
- body .editor-component--field-typography-selector {
471
- width: 100%;
472
- margin-bottom: 10px; }
473
- body .editor-component--field-typography-selector button {
474
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
475
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
476
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
477
- background-color: transparent;
478
- outline: none;
479
- cursor: pointer;
480
- padding: 10px 15px;
481
- border: 1px solid #e2e4e7;
482
- border-radius: 3px;
483
- display: block;
484
- text-align: left;
485
- -webkit-box-sizing: border-box;
486
- box-sizing: border-box;
487
- width: 100%;
488
- /* ---- hover ---- */ }
489
- body .editor-component--field-typography-selector button label {
490
- font-weight: normal;
491
- color: #555d66; }
492
- body .editor-component--field-typography-selector button p {
493
- padding: 0;
494
- margin: 0;
495
- font-size: 25px;
496
- white-space: nowrap;
497
- overflow: hidden;
498
- -o-text-overflow: ellipsis;
499
- text-overflow: ellipsis;
500
- max-width: 240px; }
501
- body .editor-component--field-typography-selector button:hover {
502
- border-color: #00a0d2; }
503
-
504
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content {
505
- height: auto;
506
- width: 440px;
507
- padding: 8px 8px 8px 0;
508
- -webkit-box-sizing: border-box;
509
- box-sizing: border-box;
510
- min-height: 315px;
511
- display: -ms-flexbox;
512
- display: flex;
513
- -ms-flex-direction: row;
514
- flex-direction: row;
515
- -ms-flex-wrap: nowrap;
516
- flex-wrap: nowrap;
517
- -ms-flex-pack: start;
518
- justify-content: flex-start;
519
- -ms-flex-align: start;
520
- align-items: flex-start;
521
- /**
522
- * Font Family
523
- */
524
- /**
525
- * Other Options
526
- */ }
527
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker {
528
- -webkit-box-shadow: none;
529
- box-shadow: none;
530
- border-right: 1px solid #e2e4e7;
531
- width: 190px;
532
- -ms-flex-negative: 0;
533
- flex-shrink: 0;
534
- position: relative; }
535
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker .components-spinner {
536
- position: absolute;
537
- top: 50%;
538
- left: 50%;
539
- -webkit-transform: translate(-50%, -50%);
540
- -ms-transform: translate(-50%, -50%);
541
- transform: translate(-50%, -50%); }
542
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker > button {
543
- display: none; }
544
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul {
545
- height: 315px;
546
- max-height: 100%;
547
- -webkit-box-shadow: none;
548
- box-shadow: none;
549
- position: relative;
550
- background-color: transparent !important; }
551
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li {
552
- margin: 0; }
553
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button {
554
- font-size: 16px;
555
- background-color: transparent !important;
556
- padding-left: 15px;
557
- position: relative; }
558
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button::before {
559
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
560
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
561
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
562
- content: " ";
563
- width: 3px;
564
- height: 0;
565
- position: absolute;
566
- left: 0;
567
- top: 50%;
568
- -webkit-transform: translateY(-50%);
569
- -ms-transform: translateY(-50%);
570
- transform: translateY(-50%);
571
- background-color: #00a0d2; }
572
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button.active-font {
573
- color: #00a0d2; }
574
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button.active-font::before {
575
- height: 100%; }
576
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button:hover {
577
- color: #00a0d2; }
578
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button:hover::before {
579
- height: 70%; }
580
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper {
581
- padding: 10px 20px 0 25px; }
582
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu {
583
- border-bottom: 1px solid #e2e4e7;
584
- padding-bottom: 5px;
585
- margin-bottom: 15px;
586
- margin-top: 5px; }
587
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button {
588
- border: none;
589
- background-color: transparent;
590
- position: relative;
591
- cursor: pointer;
592
- outline: none;
593
- /* ---- hover ---- */ }
594
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button::before {
595
- content: " ";
596
- width: 100%;
597
- height: 0;
598
- position: absolute;
599
- left: 0;
600
- bottom: -6px;
601
- background-color: #00a0d2; }
602
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button svg path, body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button svg rect {
603
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
604
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
605
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
606
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active'] {
607
- pointer-events: none; }
608
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active']::before {
609
- height: 2px; }
610
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active'] svg path {
611
- fill: #00a0d2; }
612
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active'] svg rect {
613
- stroke: #00a0d2; }
614
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button:hover svg path {
615
- fill: #00a0d2; }
616
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button:hover svg rect {
617
- stroke: #00a0d2; }
618
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-content > div div:nth-of-type(2) {
619
- margin-bottom: 13px; }
620
- body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-content > div .components-range-control {
621
- margin-bottom: 10px; }
622
-
623
- /**
624
- * Background component
625
- *
626
- * @since 1.0.0
627
- */
628
- div[data-editor-component="background"] .tabs-menu {
629
- display: -ms-flexbox;
630
- display: flex;
631
- -ms-flex-direction: row;
632
- flex-direction: row;
633
- -ms-flex-wrap: nowrap;
634
- flex-wrap: nowrap;
635
- -ms-flex-pack: start;
636
- justify-content: flex-start;
637
- -ms-flex-align: center;
638
- align-items: center;
639
- border-bottom: 1px solid #e2e4e7;
640
- padding-bottom: 5px;
641
- margin-bottom: 15px;
642
- margin-top: 5px; }
643
- div[data-editor-component="background"] .tabs-menu button {
644
- position: relative;
645
- margin-right: 5px;
646
- overflow: initial;
647
- /* ---- hover ---- */ }
648
- div[data-editor-component="background"] .tabs-menu button::before {
649
- content: " ";
650
- width: 100%;
651
- height: 0;
652
- position: absolute;
653
- left: 0;
654
- bottom: -6px;
655
- background-color: #00a0d2; }
656
- div[data-editor-component="background"] .tabs-menu button svg path, div[data-editor-component="background"] .tabs-menu button svg rect {
657
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
658
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
659
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
660
- div[data-editor-component="background"] .tabs-menu button:focus {
661
- -webkit-box-shadow: none;
662
- box-shadow: none;
663
- outline: none; }
664
- div[data-editor-component="background"] .tabs-menu button[data-active='true'] {
665
- pointer-events: none;
666
- border-color: transparent; }
667
- div[data-editor-component="background"] .tabs-menu button[data-active='true']::before {
668
- height: 2px; }
669
- div[data-editor-component="background"] .tabs-menu button[data-active='true'] svg path {
670
- fill: #00a0d2; }
671
- div[data-editor-component="background"] .tabs-menu button[data-active='true'] svg rect {
672
- stroke: #00a0d2; }
673
- div[data-editor-component="background"] .tabs-menu button:hover svg path {
674
- fill: #00a0d2; }
675
- div[data-editor-component="background"] .tabs-menu button:hover svg rect {
676
- stroke: #00a0d2; }
677
-
678
- /**
679
- * Background uploader placeholder component
680
- *
681
- * @since 1.0.0
682
- */
683
- button[data-editor-component="panel-uploader-placeholder"],
684
- div[data-editor-component="panel-uploader-placeholder"] {
685
- border: 1px solid #e2e4e7 !important;
686
- width: 100%;
687
- position: relative;
688
- -webkit-box-shadow: none !important;
689
- box-shadow: none !important;
690
- padding: 0;
691
- border-radius: 3px;
692
- background-position: center center;
693
- background-size: cover;
694
- overflow: hidden;
695
- /**
696
- * Upload
697
- *
698
- * @since 1.0.0
699
- */
700
- /**
701
- * Replace
702
- *
703
- * @since 1.0.0
704
- */
705
- /**
706
- * Gallery
707
- *
708
- * @since 1.0.0
709
- */ }
710
- button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"],
711
- div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"] {
712
- min-height: 140px; }
713
- button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"] svg,
714
- div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"] svg {
715
- position: absolute;
716
- top: 50%;
717
- left: 50%;
718
- -webkit-transform: translate(-50%, -50%);
719
- -ms-transform: translate(-50%, -50%);
720
- transform: translate(-50%, -50%); }
721
- button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]::before,
722
- div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]::before {
723
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
724
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
725
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
726
- content: " ";
727
- width: calc( 100% - 15px);
728
- height: calc( 100% - 15px);
729
- background: rgba(139, 139, 150, 0.1);
730
- position: absolute;
731
- top: 50%;
732
- left: 50%;
733
- -webkit-transform: translate(-50%, -50%);
734
- -ms-transform: translate(-50%, -50%);
735
- transform: translate(-50%, -50%);
736
- border-radius: 3px; }
737
- button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover svg path,
738
- div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover svg path {
739
- fill: #00a0d2; }
740
- button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover::before,
741
- div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover::before {
742
- width: 100%;
743
- height: 100%; }
744
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"],
745
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] {
746
- border: 1px solid #e2e4e7 !important;
747
- width: 100%;
748
- height: auto;
749
- /* ---- hover ---- */ }
750
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] > div,
751
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] > div {
752
- display: grid;
753
- grid-gap: 8px;
754
- grid-auto-flow: row;
755
- grid-template-columns: 1fr 1fr;
756
- padding: 8px; }
757
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] > div[data-count="1"],
758
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] > div[data-count="1"] {
759
- grid-template-columns: 1fr; }
760
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] video,
761
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] video {
762
- -o-object-fit: cover;
763
- object-fit: cover;
764
- height: auto; }
765
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] img,
766
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] img {
767
- -o-object-fit: cover;
768
- object-fit: cover;
769
- height: auto;
770
- width: 100%; }
771
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] svg,
772
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] svg {
773
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
774
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
775
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
776
- position: absolute;
777
- top: 50%;
778
- left: 50%;
779
- -webkit-transform: translate(-50%, -50%);
780
- -ms-transform: translate(-50%, -50%);
781
- transform: translate(-50%, -50%);
782
- opacity: 0; }
783
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]::before,
784
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]::before {
785
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
786
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
787
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
788
- content: " ";
789
- width: 105%;
790
- height: 105%;
791
- background: white;
792
- position: absolute;
793
- top: 50%;
794
- left: 50%;
795
- -webkit-transform: translate(-50%, -50%);
796
- -ms-transform: translate(-50%, -50%);
797
- transform: translate(-50%, -50%);
798
- border-radius: 3px;
799
- opacity: 0; }
800
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover svg,
801
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover svg {
802
- opacity: 1; }
803
- button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover::before,
804
- div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover::before {
805
- opacity: 0.8; }
806
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"],
807
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] {
808
- width: 100%;
809
- height: auto;
810
- min-height: auto;
811
- border: none !important; }
812
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div,
813
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div {
814
- display: grid;
815
- grid-gap: 8px;
816
- grid-auto-flow: row;
817
- grid-template-columns: 1fr 1fr;
818
- padding: 8px;
819
- border: 1px solid #e2e4e7 !important; }
820
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div[data-count="1"],
821
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div[data-count="1"] {
822
- grid-template-columns: 1fr; }
823
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span,
824
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span {
825
- position: relative;
826
- /* ---- hover ---- */ }
827
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span img,
828
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span img {
829
- display: inherit;
830
- min-height: 100%;
831
- min-width: 100%;
832
- -o-object-fit: cover;
833
- object-fit: cover; }
834
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button,
835
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button {
836
- -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
837
- -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
838
- transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
839
- position: absolute;
840
- right: 5px;
841
- top: 5px;
842
- z-index: 1;
843
- background-color: white;
844
- padding: 4px;
845
- opacity: 0; }
846
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button:hover,
847
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button:hover {
848
- background-color: #00a0d2 !important; }
849
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button:hover svg path,
850
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span button:hover svg path {
851
- fill: white; }
852
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span:hover button,
853
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > div span:hover button {
854
- opacity: 1; }
855
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button,
856
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button {
857
- height: 50px;
858
- min-height: 0;
859
- margin-top: 10px; }
860
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button svg,
861
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button svg {
862
- position: absolute;
863
- top: 50%;
864
- left: 50%;
865
- -webkit-transform: translate(-50%, -50%);
866
- -ms-transform: translate(-50%, -50%);
867
- transform: translate(-50%, -50%); }
868
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button::before,
869
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button::before {
870
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
871
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
872
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
873
- content: " ";
874
- width: calc( 100% - 8px);
875
- height: calc( 100% - 8px);
876
- background: rgba(139, 139, 150, 0.1);
877
- position: absolute;
878
- top: 50%;
879
- left: 50%;
880
- -webkit-transform: translate(-50%, -50%);
881
- -ms-transform: translate(-50%, -50%);
882
- transform: translate(-50%, -50%);
883
- border-radius: 3px; }
884
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button:hover svg path,
885
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button:hover svg path {
886
- fill: #00a0d2; }
887
- button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button:hover::before,
888
- div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"] > button:hover::before {
889
- width: 100%;
890
- height: 100%; }
891
-
892
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row {
893
- -ms-flex-wrap: wrap;
894
- flex-wrap: wrap; }
895
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control {
896
- width: 100%;
897
- margin-bottom: 18px; }
898
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field {
899
- margin-bottom: 0; }
900
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field textarea, body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field input {
901
- display: inherit; }
902
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__help {
903
- opacity: 0.7;
904
- font-size: 12px;
905
- margin-top: 5px; }
906
-
907
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] label {
908
- display: block;
909
- width: 100%;
910
- font-weight: 500; }
911
-
912
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] button:focus {
913
- outline: none !important; }
914
-
915
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"] {
916
- position: relative; }
917
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"] .components-spinner {
918
- position: absolute;
919
- top: 50%;
920
- left: 50%;
921
- -webkit-transform: translate(-50%, -50%);
922
- -ms-transform: translate(-50%, -50%);
923
- transform: translate(-50%, -50%);
924
- margin: 0; }
925
- body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"] .components-panel__body {
926
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
927
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
928
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
929
- opacity: 0.3;
930
- pointer-events: none; }
931
-
932
- body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.updated,
933
- body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.success,
934
- body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.promotion {
935
- display: none !important; }
936
-
937
- body #editor {
938
- /**
939
- * Misc
940
- */
941
- /**
942
- * Top Menu
943
- */
944
- /**
945
- * Options Panel
946
- */
947
- /**
948
- * Sidebar
949
- */
950
- /**
951
- * Sidebar: Publish Panel
952
- */
953
- /**
954
- * Document sidebar
955
- */
956
- /**
957
- * More submenu
958
- */
959
- /**
960
- * Block settings: Popover menu
961
- */ }
962
- body #editor body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta), body #editor body.block-editor-page #wpfooter {
963
- display: none !important; }
964
- body #editor .components-button.editor-post-preview.is-button.is-default.is-large {
965
- display: none; }
966
- body #editor .components-panel__body.is-opened {
967
- border-bottom: 1px solid #e2e4e7; }
968
- body #editor .edit-post-sidebar .components-panel__header.edit-post-sidebar-header > button:nth-of-type(1) {
969
- opacity: 0;
970
- visibility: hidden;
971
- pointer-events: none; }
972
- body #editor .editor-post-publish-panel .editor-post-publish-panel__prepublish .components-panel__body {
973
- display: none; }
974
- body #editor .edit-post-sidebar .components-panel__body.edit-post-post-status {
975
- display: none; }
976
- body #editor .edit-post-sidebar .components-panel .components-panel__row.edit-post-post-visibility {
977
- display: none; }
978
- body #editor .edit-post-sidebar .components-panel .components-panel__row.edit-post-post-schedule {
979
- display: none; }
980
- body #editor .components-popover__content .components-menu-group:nth-of-type(3) {
981
- display: none; }
982
- body #editor .components-popover__content a[href="edit.php?post_type=wp_block"] {
983
- display: none; }
984
- body #editor .edit-post-layout__content {
985
- /**
986
- * Notices
987
- */
988
- /**
989
- * Page Title.
990
- */
991
- /**
992
- * Block Appender
993
- */
994
- /**
995
- * Writing area
996
- */ }
997
- body #editor .edit-post-layout__content .editor-post-title {
998
- top: 0;
999
- left: 0;
1000
- position: absolute;
1001
- width: 100%;
1002
- padding: 5px 0 5px 17px;
1003
- border-bottom: 1px solid #e2e4e7; }
1004
- body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block {
1005
- margin: 0;
1006
- max-width: 100%;
1007
- padding-right: 17px; }
1008
- body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block .editor-post-title__input {
1009
- font-size: 25px;
1010
- padding: 0;
1011
- height: auto;
1012
- font-weight: normal;
1013
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
1014
- body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block .editor-post-permalink {
1015
- display: none; }
1016
- body #editor .edit-post-layout__content .block-list-appender, body #editor .edit-post-layout__content .editor-default-block-appender {
1017
- display: none; }
1018
- body #editor .edit-post-layout__content .edit-post-visual-editor {
1019
- padding: 0;
1020
- margin: 0; }
1021
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div {
1022
- display: -ms-flexbox;
1023
- display: flex;
1024
- -ms-flex-direction: column;
1025
- flex-direction: column;
1026
- -ms-flex-wrap: nowrap;
1027
- flex-wrap: nowrap;
1028
- -ms-flex-pack: start;
1029
- justify-content: flex-start;
1030
- -ms-flex-align: center;
1031
- align-items: center; }
1032
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div > div {
1033
- width: 100%;
1034
- height: 58px; }
1035
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout {
1036
- -ms-flex-positive: 1;
1037
- flex-grow: 1;
1038
- width: 100%;
1039
- height: 100%;
1040
- padding: 0; }
1041
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .wp-block {
1042
- height: 100%;
1043
- position: relative;
1044
- top: 0;
1045
- margin: 0;
1046
- padding: 0;
1047
- width: 100%;
1048
- max-width: 100%;
1049
- overflow: hidden; }
1050
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .wp-block .editor-block-list__block-edit {
1051
- margin: 0; }
1052
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .editor-block-list__insertion-point {
1053
- display: none; }
1054
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .editor-block-mover {
1055
- display: none; }
1056
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .editor-block-contextual-toolbar {
1057
- margin: 0;
1058
- text-align: left; }
1059
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout .editor-block-list__breadcrumb {
1060
- right: 0;
1061
- top: 0; }
1062
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow > div > div .editor-block-list__layout div[data-type="core/paragraph"] {
1063
- display: none; }
1064
- body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow .editor-writing-flow__click-redirect {
1065
- display: none; }
1066
- body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(1), body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(2), body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(3), body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(4), body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(5), body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content .editor-block-settings-menu__separator {
1067
- display: none; }
1068
- /**
1069
- * keyframes
1070
- *
1071
- * @since 1.0.0
1072
- * @version 1.0.0
1073
- */
1074
- /**
1075
- * Spinner
1076
- *
1077
- * @since 1.0.0
1078
- * @version 1.0.0
1079
- */
1080
- @-webkit-keyframes pt_theme__loadingSpinner {
1081
- 0% {
1082
- -webkit-transform: rotate(0deg);
1083
- transform: rotate(0deg); }
1084
- 100% {
1085
- -webkit-transform: rotate(360deg);
1086
- transform: rotate(360deg); } }
1087
-
1088
- @keyframes pt_theme__loadingSpinner {
1089
- 0% {
1090
- -webkit-transform: rotate(0deg);
1091
- transform: rotate(0deg); }
1092
- 100% {
1093
- -webkit-transform: rotate(360deg);
1094
- transform: rotate(360deg); } }
1095
-
1096
- /**
1097
- * Inherit Typography
1098
- */
1099
- /**
1100
- * Media
1101
- *
1102
- * @since 1.0.0
1103
- * @version 1.0.0
1104
- */
1105
- /**
1106
- * Media
1107
- *
1108
- * @since 1.0.0
1109
- * @version 1.0.0
1110
- */
1111
- /**
1112
- * Colors
1113
- */
1114
- /**
1115
- * Media Queryes
1116
- */
1117
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-02"] main[data-block="pixelthrone/comingsoon--temp-02"] {
1118
- height: calc(100vh - 146px); }
1119
- /**
1120
- * keyframes
1121
- *
1122
- * @since 1.0.0
1123
- * @version 1.0.0
1124
- */
1125
- /**
1126
- * Spinner
1127
- *
1128
- * @since 1.0.0
1129
- * @version 1.0.0
1130
- */
1131
- @-webkit-keyframes pt_theme__loadingSpinner {
1132
- 0% {
1133
- -webkit-transform: rotate(0deg);
1134
- transform: rotate(0deg); }
1135
- 100% {
1136
- -webkit-transform: rotate(360deg);
1137
- transform: rotate(360deg); } }
1138
-
1139
- @keyframes pt_theme__loadingSpinner {
1140
- 0% {
1141
- -webkit-transform: rotate(0deg);
1142
- transform: rotate(0deg); }
1143
- 100% {
1144
- -webkit-transform: rotate(360deg);
1145
- transform: rotate(360deg); } }
1146
-
1147
- /**
1148
- * Inherit Typography
1149
- */
1150
- /**
1151
- * Media
1152
- *
1153
- * @since 1.0.0
1154
- * @version 1.0.0
1155
- */
1156
- /**
1157
- * Media
1158
- *
1159
- * @since 1.0.0
1160
- * @version 1.0.0
1161
- */
1162
- /**
1163
- * Colors
1164
- */
1165
- /**
1166
- * Media Queryes
1167
- */
1168
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-01"] main[data-block="pixelthrone/comingsoon--temp-01"] {
1169
- height: calc(100vh - 146px); }
1170
- /**
1171
- * keyframes
1172
- *
1173
- * @since 1.0.0
1174
- * @version 1.0.0
1175
- */
1176
- /**
1177
- * Spinner
1178
- *
1179
- * @since 1.0.0
1180
- * @version 1.0.0
1181
- */
1182
- @-webkit-keyframes pt_theme__loadingSpinner {
1183
- 0% {
1184
- -webkit-transform: rotate(0deg);
1185
- transform: rotate(0deg); }
1186
- 100% {
1187
- -webkit-transform: rotate(360deg);
1188
- transform: rotate(360deg); } }
1189
-
1190
- @keyframes pt_theme__loadingSpinner {
1191
- 0% {
1192
- -webkit-transform: rotate(0deg);
1193
- transform: rotate(0deg); }
1194
- 100% {
1195
- -webkit-transform: rotate(360deg);
1196
- transform: rotate(360deg); } }
1197
-
1198
- /**
1199
- * Inherit Typography
1200
- */
1201
- /**
1202
- * Media
1203
- *
1204
- * @since 1.0.0
1205
- * @version 1.0.0
1206
- */
1207
- /**
1208
- * Media
1209
- *
1210
- * @since 1.0.0
1211
- * @version 1.0.0
1212
- */
1213
- /**
1214
- * Colors
1215
- */
1216
- /**
1217
- * Media Queryes
1218
- */
1219
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-03"] main[data-block="pixelthrone/comingsoon--temp-03"] {
1220
- height: calc(100vh - 146px); }
1221
- /**
1222
- * keyframes
1223
- *
1224
- * @since 1.0.0
1225
- * @version 1.0.0
1226
- */
1227
- /**
1228
- * Spinner
1229
- *
1230
- * @since 1.0.0
1231
- * @version 1.0.0
1232
- */
1233
- @-webkit-keyframes pt_theme__loadingSpinner {
1234
- 0% {
1235
- -webkit-transform: rotate(0deg);
1236
- transform: rotate(0deg); }
1237
- 100% {
1238
- -webkit-transform: rotate(360deg);
1239
- transform: rotate(360deg); } }
1240
-
1241
- @keyframes pt_theme__loadingSpinner {
1242
- 0% {
1243
- -webkit-transform: rotate(0deg);
1244
- transform: rotate(0deg); }
1245
- 100% {
1246
- -webkit-transform: rotate(360deg);
1247
- transform: rotate(360deg); } }
1248
-
1249
- /**
1250
- * Inherit Typography
1251
- */
1252
- /**
1253
- * Media
1254
- *
1255
- * @since 1.0.0
1256
- * @version 1.0.0
1257
- */
1258
- /**
1259
- * Media
1260
- *
1261
- * @since 1.0.0
1262
- * @version 1.0.0
1263
- */
1264
- /**
1265
- * Colors
1266
- */
1267
- /**
1268
- * Media Queryes
1269
- */
1270
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-04"] main[data-block="pixelthrone/comingsoon--temp-04"] {
1271
- height: calc(100vh - 146px); }
1272
- /**
1273
- * keyframes
1274
- *
1275
- * @since 1.0.0
1276
- * @version 1.0.0
1277
- */
1278
- /**
1279
- * Spinner
1280
- *
1281
- * @since 1.0.0
1282
- * @version 1.0.0
1283
- */
1284
- @-webkit-keyframes pt_theme__loadingSpinner {
1285
- 0% {
1286
- -webkit-transform: rotate(0deg);
1287
- transform: rotate(0deg); }
1288
- 100% {
1289
- -webkit-transform: rotate(360deg);
1290
- transform: rotate(360deg); } }
1291
-
1292
- @keyframes pt_theme__loadingSpinner {
1293
- 0% {
1294
- -webkit-transform: rotate(0deg);
1295
- transform: rotate(0deg); }
1296
- 100% {
1297
- -webkit-transform: rotate(360deg);
1298
- transform: rotate(360deg); } }
1299
-
1300
- /**
1301
- * Inherit Typography
1302
- */
1303
- /**
1304
- * Media
1305
- *
1306
- * @since 1.0.0
1307
- * @version 1.0.0
1308
- */
1309
- /**
1310
- * Media
1311
- *
1312
- * @since 1.0.0
1313
- * @version 1.0.0
1314
- */
1315
- /**
1316
- * Colors
1317
- */
1318
- /**
1319
- * Media Queryes
1320
- */
1321
- .editor-block-list__block[data-type="pixelthrone/comingsoon--temp-05"] main[data-block="pixelthrone/comingsoon--temp-05"] {
1322
- height: calc(100vh - 146px); }
1
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-02"] main[data-block="pixelthrone/comingsoon--temp-02"]{height:calc(100vh - 146px)}
2
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.edit-post-header button[aria-label="Page Templates"]{position:absolute;left:4px;top:10px}.edit-post-header button[aria-label="Page Templates"].is-toggled svg *,.edit-post-header button[aria-label="Page Templates"] svg *{stroke:none !important}.edit-post-header button[aria-label="Page Templates"].is-toggled svg * path,.edit-post-header button[aria-label="Page Templates"] svg * path{stroke:none !important}.edit-post-header button[aria-label="Page Templates"]:hover.is-toggled svg *,.edit-post-header button[aria-label="Page Templates"]:hover svg *{stroke:none !important}.edit-post-header button[aria-label="Page Templates"]:hover.is-toggled svg * path,.edit-post-header button[aria-label="Page Templates"]:hover svg * path{stroke:none !important}.edit-post-header .layout--header--show-template-button svg{display:inherit;stroke:none !important}.edit-post-header .layout--header--show-template-button svg path{stroke:none !important}.edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button{position:relative;display:block;margin:10px 0;text-decoration:none}.edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button button{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);position:absolute;bottom:10px;right:20px;opacity:0}.edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button img{margin:0 auto;display:inherit;border:1px solid #e2e4e7}.edit-post-sidebar .components-panel div[data-component="sidebar--available-blocks"] .template-thumb-button:hover button{opacity:1}
3
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body .edit-post-header .edit-post-pinned-plugins button .seo-button{stroke:none !important}body .edit-post-header .edit-post-pinned-plugins button .seo-button>*{stroke:none !important}
4
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body .edit-post-header .edit-post-pinned-plugins button .look-and-feel-button{stroke:none !important}body .edit-post-header .edit-post-pinned-plugins button .look-and-feel-button>*{stroke:none !important}
5
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}button[data-editor-component="brand-uploader"]{position:relative;display:table;outline:none;border:none;cursor:pointer;background-color:transparent}button[data-editor-component="brand-uploader"] i{-webkit-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);position:absolute;right:-15px;top:-15px;width:30px;height:30px;border-radius:50%;border:1px solid #e2e4e7;background-color:rgba(255,255,255,0.7);color:#555d67;pointer-events:none}button[data-editor-component="brand-uploader"] i::before{-webkit-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:1}button[data-editor-component="brand-uploader"] img{display:inherit}button[data-editor-component="brand-uploader"]:hover i{border:1px solid rgba(25,30,35,0.5);background-color:#fff}button[data-editor-component="brand-uploader"]:hover i::before{color:#191e23}div[data-editor-component="inspector-controls--image-uploader"]{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}div[data-editor-component="inspector-controls--image-uploader"] label{display:block;margin-bottom:8px}div[data-editor-component="inspector-controls--image-uploader"] img{border:1px solid #e2e4e7;max-width:100%}div[data-editor-component="inspector-controls--image-uploader"] span{display:block;width:100%}div[data-editor-component="inspector-controls--image-uploader"] button{margin-top:5px}div[data-editor-component="color-palette-base-control"] label{margin-bottom:14px;display:-ms-flexbox !important;display:flex !important;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}*[data-editor-component|="notice"]{border-left:4px solid transparent;padding:8px 12px;color:initial;text-decoration:none}*[data-editor-component|="notice"][data-notice="warning"]{background-color:#fef8ee;border-left-color:#f0b849}.editor-component--dropdown-date-time-picker .components-popover__content{padding:10px}.editor-component--field-date-time-picker{display:block;width:100%;margin-bottom:10px}.editor-component--field-date-time-picker>div{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center;min-height:24px}.editor-component--field-date-time-picker>div label{margin:0;padding:0;width:auto !important;-ms-flex-positive:1;flex-grow:1}.editor-component--field-date-time-picker>div button:nth-of-type(1){padding:0;margin:0;text-align:right !important;margin-right:10px}label.single-field-label{padding:0;margin:0 0 10px 0;display:block;color:#555d66}*[data-editor-component="help-notice"]{opacity:0.7;font-size:12px;padding:0;margin-top:6px !important}.components-panel__body.editor-block-inspector__advanced .components-panel__body-title button{text-transform:uppercase}body .editor-component--field-typography-selector{width:100%;margin-bottom:10px}body .editor-component--field-typography-selector button{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);background-color:transparent;outline:none;cursor:pointer;padding:10px 15px;border:1px solid #e2e4e7;border-radius:3px;display:block;text-align:left;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}body .editor-component--field-typography-selector button label{font-weight:normal;color:#555d66}body .editor-component--field-typography-selector button p{padding:0;margin:0;font-size:25px;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;max-width:240px}body .editor-component--field-typography-selector button:hover{border-color:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content{height:auto;width:440px;padding:8px 8px 8px 0;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:315px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker{-webkit-box-shadow:none;box-shadow:none;border-right:1px solid #e2e4e7;width:190px;-ms-flex-negative:0;flex-shrink:0;position:relative}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker .components-spinner{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker>button{display:none}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul{height:315px;max-height:100%;-webkit-box-shadow:none;box-shadow:none;position:relative;background-color:transparent !important}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li{margin:0}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button{font-size:16px;background-color:transparent !important;padding-left:15px;position:relative}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button::before{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";width:3px;height:0;position:absolute;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button.active-font{color:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button.active-font::before{height:100%}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button:hover{color:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content #font-picker ul li button:hover::before{height:70%}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper{padding:10px 20px 0 25px}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu{border-bottom:1px solid #e2e4e7;padding-bottom:5px;margin-bottom:15px;margin-top:5px}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button{border:none;background-color:transparent;position:relative;cursor:pointer;outline:none}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button::before{content:" ";width:100%;height:0;position:absolute;left:0;bottom:-6px;background-color:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button svg path,body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button svg rect{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active']{pointer-events:none}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active']::before{height:2px}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active'] svg path{fill:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button[data-mode='active'] svg rect{stroke:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button:hover svg path{fill:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-menu button:hover svg rect{stroke:#00a0d2}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-content>div div:nth-of-type(2){margin-bottom:13px}body .components-popover.editor-component--dropdown-typography-selector .components-popover__content .typography-options__wrapper .tabs-content>div .components-range-control{margin-bottom:10px}div[data-editor-component="background"] .tabs-menu{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center;border-bottom:1px solid #e2e4e7;padding-bottom:5px;margin-bottom:15px;margin-top:5px}div[data-editor-component="background"] .tabs-menu button{position:relative;margin-right:5px;overflow:initial}div[data-editor-component="background"] .tabs-menu button::before{content:" ";width:100%;height:0;position:absolute;left:0;bottom:-6px;background-color:#00a0d2}div[data-editor-component="background"] .tabs-menu button svg path,div[data-editor-component="background"] .tabs-menu button svg rect{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)}div[data-editor-component="background"] .tabs-menu button:focus{-webkit-box-shadow:none;box-shadow:none;outline:none}div[data-editor-component="background"] .tabs-menu button[data-active='true']{pointer-events:none;border-color:transparent}div[data-editor-component="background"] .tabs-menu button[data-active='true']::before{height:2px}div[data-editor-component="background"] .tabs-menu button[data-active='true'] svg path{fill:#00a0d2}div[data-editor-component="background"] .tabs-menu button[data-active='true'] svg rect{stroke:#00a0d2}div[data-editor-component="background"] .tabs-menu button:hover svg path{fill:#00a0d2}div[data-editor-component="background"] .tabs-menu button:hover svg rect{stroke:#00a0d2}button[data-editor-component="panel-uploader-placeholder"],div[data-editor-component="panel-uploader-placeholder"]{border:1px solid #e2e4e7 !important;width:100%;position:relative;-webkit-box-shadow:none !important;box-shadow:none !important;padding:0;border-radius:3px;background-position:center center;background-size:cover;overflow:hidden}button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"],div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]{min-height:140px}button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"] svg,div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"] svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]::before{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";width:calc( 100% - 15px);height:calc( 100% - 15px);background:rgba(139,139,150,0.1);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);border-radius:3px}button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover svg path,div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover svg path{fill:#00a0d2}button[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="upload"]:hover::before{width:100%;height:100%}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"],div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]{border:1px solid #e2e4e7 !important;width:100%;height:auto}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]>div,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]>div{display:grid;grid-gap:8px;grid-auto-flow:row;grid-template-columns:1fr 1fr;padding:8px}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]>div[data-count="1"],div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]>div[data-count="1"]{grid-template-columns:1fr}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] video,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] video{-o-object-fit:cover;object-fit:cover;height:auto}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] img,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] img{-o-object-fit:cover;object-fit:cover;height:auto;width:100%}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] svg,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"] svg{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);opacity:0}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]::before{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";width:105%;height:105%;background:white;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);border-radius:3px;opacity:0}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover svg,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover svg{opacity:1}button[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="replace"]:hover::before{opacity:0.8}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"],div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]{width:100%;height:auto;min-height:auto;border:none !important}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div{display:grid;grid-gap:8px;grid-auto-flow:row;grid-template-columns:1fr 1fr;padding:8px;border:1px solid #e2e4e7 !important}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div[data-count="1"],div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div[data-count="1"]{grid-template-columns:1fr}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span{position:relative}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span img,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span img{display:inherit;min-height:100%;min-width:100%;-o-object-fit:cover;object-fit:cover}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button{-webkit-transition:all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);position:absolute;right:5px;top:5px;z-index:1;background-color:white;padding:4px;opacity:0}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button:hover,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button:hover{background-color:#00a0d2 !important}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button:hover svg path,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span button:hover svg path{fill:white}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span:hover button,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>div span:hover button{opacity:1}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button{height:50px;min-height:0;margin-top:10px}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button svg,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button::before{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";width:calc( 100% - 8px);height:calc( 100% - 8px);background:rgba(139,139,150,0.1);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);border-radius:3px}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button:hover svg path,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button:hover svg path{fill:#00a0d2}button[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button:hover::before,div[data-editor-component="panel-uploader-placeholder"][data-mode="gallery"]>button:hover::before{width:100%;height:100%}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row{-ms-flex-wrap:wrap;flex-wrap:wrap}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control{width:100%;margin-bottom:18px}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field{margin-bottom:0}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field textarea,body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__field input{display:inherit}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] .components-panel__body .components-panel__row .components-base-control .components-base-control__help{opacity:0.7;font-size:12px;margin-top:5px}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] label{display:block;width:100%;font-weight:500}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"] button:focus{outline:none !important}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"]{position:relative}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"] .components-spinner{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);margin:0}body .edit-post-sidebar .components-panel div[data-component*="sidebar--"][data-loading="true"] .components-panel__body{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);opacity:0.3;pointer-events:none}body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.updated,body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.success,body.block-editor-page div[data-manager-id="coming-soon-blocks"].fs-notice.promotion{display:none !important}body #editor.-editor-is-ready{background-image:url("../svg/empty-bg.svg");background-size:70%;background-repeat:no-repeat;background-position:center center}@media only screen and (max-width: 900px){body #editor.-editor-is-ready{background-image:none}}@media only screen and (min-width: 1400px){body #editor.-editor-is-ready{background-size:inherit}}@media only screen and (max-height: 900px){body #editor.-editor-is-ready{background-image:none}}body #editor body.block-editor-page #wpbody-content>div:not(.block-editor):not(#screen-meta),body #editor body.block-editor-page #wpfooter{display:none !important}body #editor .components-button.editor-post-preview.is-button.is-default.is-large{display:none}body #editor .components-panel__body.is-opened{border-bottom:1px solid #e2e4e7}body #editor .edit-post-sidebar .components-panel__header.edit-post-sidebar-header>button:nth-of-type(1){opacity:0;visibility:hidden;pointer-events:none}body #editor .editor-post-publish-panel .editor-post-publish-panel__prepublish .components-panel__body{display:none}body #editor .edit-post-sidebar .components-panel>.components-panel__body:not(.edit-post-settings-sidebar__panel-block):not(.edit-post-last-revision__panel){display:none}body #editor .components-popover__content .components-menu-group:nth-of-type(3){display:none}body #editor .components-popover__content a[href="edit.php?post_type=wp_block"]{display:none}body #editor .edit-post-layout__content .editor-post-title{top:0;left:0;position:absolute;width:100%;padding:5px 0 5px 17px;border-bottom:1px solid #e2e4e7}body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block{margin:0;max-width:100%;padding-right:17px}body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block .editor-post-title__input{font-size:25px;padding:0;height:auto;font-weight:normal;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif}body #editor .edit-post-layout__content .editor-post-title .editor-post-title__block .editor-post-permalink{display:none}body #editor .edit-post-layout__content .block-list-appender,body #editor .edit-post-layout__content .editor-default-block-appender{display:none}body #editor .edit-post-layout__content .edit-post-visual-editor{padding:0;margin:0}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div>div{width:100%;height:58px}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout{-ms-flex-positive:1;flex-grow:1;width:100%;height:100%;padding:0}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .wp-block{height:100%;position:relative;top:0;margin:0;padding:0;width:100%;max-width:100%;overflow:hidden}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .wp-block .editor-block-list__block-edit{margin:0}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .editor-block-list__insertion-point{display:none}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .editor-block-mover{display:none}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .editor-block-contextual-toolbar{margin:0;text-align:left}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout .editor-block-list__breadcrumb{right:0;top:0}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow>div>div .editor-block-list__layout div[data-type="core/paragraph"]{display:none}body #editor .edit-post-layout__content .edit-post-visual-editor .editor-writing-flow .editor-writing-flow__click-redirect{display:none}body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(1),body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(2),body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(3),body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(4),body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content button:nth-of-type(5),body #editor .editor-block-settings-menu__popover .editor-block-settings-menu__content .editor-block-settings-menu__separator{display:none}
6
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-01"] main[data-block="pixelthrone/comingsoon--temp-01"]{height:calc(100vh - 146px)}
7
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body .edit-post-header .edit-post-pinned-plugins button .settings-button{stroke:none !important}body .edit-post-header .edit-post-pinned-plugins button .settings-button>*{stroke:none !important}
8
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-03"] main[data-block="pixelthrone/comingsoon--temp-03"]{height:calc(100vh - 146px)}
9
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-04"] main[data-block="pixelthrone/comingsoon--temp-04"]{height:calc(100vh - 146px)}
10
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-05"] main[data-block="pixelthrone/comingsoon--temp-05"]{height:calc(100vh - 146px)}
11
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-06"] main[data-block="pixelthrone/comingsoon--temp-06"]{height:calc(100vh - 146px)}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-06"] main[data-block="pixelthrone/comingsoon--temp-06"] button[data-editor-component="brand-uploader"]{padding:0}
12
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-07"] main[data-block="pixelthrone/comingsoon--temp-07"]{height:calc(100vh - 146px)}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-07"] main[data-block="pixelthrone/comingsoon--temp-07"] button[data-editor-component="brand-uploader"]{padding:0}
13
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-08"] main[data-block="pixelthrone/comingsoon--temp-08"]{height:calc(100vh - 146px)}.editor-block-list__block[data-type="pixelthrone/comingsoon--temp-08"] main[data-block="pixelthrone/comingsoon--temp-08"] button[data-editor-component="brand-uploader"]{padding:0}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/dist/blocks.style.bundle.css CHANGED
@@ -1,2151 +1,9 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- /**
8
- * Spinner
9
- *
10
- * @since 1.0.0
11
- * @version 1.0.0
12
- */
13
- @-webkit-keyframes pt_theme__loadingSpinner {
14
- 0% {
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg); }
17
- 100% {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg); } }
20
-
21
- @keyframes pt_theme__loadingSpinner {
22
- 0% {
23
- -webkit-transform: rotate(0deg);
24
- transform: rotate(0deg); }
25
- 100% {
26
- -webkit-transform: rotate(360deg);
27
- transform: rotate(360deg); } }
28
-
29
- /**
30
- * Inherit Typography
31
- */
32
- /**
33
- * Media
34
- *
35
- * @since 1.0.0
36
- * @version 1.0.0
37
- */
38
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper p {
39
- font-family: inherit !important;
40
- font-size: inherit !important;
41
- font-weight: inherit !important;
42
- font-style: inherit !important;
43
- line-height: inherit !important;
44
- letter-spacing: inherit !important; }
45
-
46
- /**
47
- * Media
48
- *
49
- * @since 1.0.0
50
- * @version 1.0.0
51
- */
52
- /**
53
- * Colors
54
- */
55
- /**
56
- * Media Queryes
57
- */
58
- main[data-block="pixelthrone/comingsoon--temp-02"] {
59
- height: 100vh;
60
- width: 100%;
61
- display: -ms-flexbox;
62
- display: flex;
63
- -ms-flex-direction: column;
64
- flex-direction: column;
65
- -ms-flex-wrap: nowrap;
66
- flex-wrap: nowrap;
67
- -ms-flex-pack: center;
68
- justify-content: center;
69
- -ms-flex-align: center;
70
- align-items: center;
71
- padding-bottom: 15px;
72
- position: relative;
73
- -webkit-box-sizing: border-box;
74
- box-sizing: border-box;
75
- /**
76
- * Brand
77
- */
78
- /**
79
- * Copyright
80
- */ }
81
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper {
82
- position: relative;
83
- z-index: 10; }
84
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper > button {
85
- margin: 0 auto 0 auto; }
86
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper > button img {
87
- display: inherit; }
88
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper > img {
89
- margin: 0 auto 0 auto;
90
- display: inherit; }
91
- @media only screen and (max-width: 767px) {
92
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper > img {
93
- max-width: 80vw !important;
94
- height: auto; } }
95
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper {
96
- display: block;
97
- width: 100%;
98
- padding-top: 30px;
99
- text-align: center; }
100
- @media only screen and (max-width: 767px) {
101
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper {
102
- padding: 20px 50px 0 50px;
103
- -webkit-box-sizing: border-box;
104
- box-sizing: border-box; } }
105
- main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper p {
106
- padding: 0;
107
- margin: 0;
108
- font-size: 1.2em !important; }
109
- main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper {
110
- position: absolute;
111
- bottom: 30px;
112
- left: 0;
113
- width: 100%;
114
- text-align: center;
115
- padding: 0 30px;
116
- margin: 0;
117
- z-index: 10;
118
- -webkit-box-sizing: border-box;
119
- box-sizing: border-box; }
120
- main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper p {
121
- padding: 0;
122
- margin: 0; }
123
- @media only screen and (max-width: 767px) {
124
- main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper {
125
- bottom: 15px; } }
126
- /**
127
- * keyframes
128
- *
129
- * @since 1.0.0
130
- * @version 1.0.0
131
- */
132
- /**
133
- * Spinner
134
- *
135
- * @since 1.0.0
136
- * @version 1.0.0
137
- */
138
- @-webkit-keyframes pt_theme__loadingSpinner {
139
- 0% {
140
- -webkit-transform: rotate(0deg);
141
- transform: rotate(0deg); }
142
- 100% {
143
- -webkit-transform: rotate(360deg);
144
- transform: rotate(360deg); } }
145
-
146
- @keyframes pt_theme__loadingSpinner {
147
- 0% {
148
- -webkit-transform: rotate(0deg);
149
- transform: rotate(0deg); }
150
- 100% {
151
- -webkit-transform: rotate(360deg);
152
- transform: rotate(360deg); } }
153
-
154
- /**
155
- * Inherit Typography
156
- */
157
- /**
158
- * Media
159
- *
160
- * @since 1.0.0
161
- * @version 1.0.0
162
- */
163
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p {
164
- font-family: inherit !important;
165
- font-size: inherit !important;
166
- font-weight: inherit !important;
167
- font-style: inherit !important;
168
- line-height: inherit !important;
169
- letter-spacing: inherit !important; }
170
-
171
- /**
172
- * Media
173
- *
174
- * @since 1.0.0
175
- * @version 1.0.0
176
- */
177
- /**
178
- * Colors
179
- */
180
- /**
181
- * Media Queryes
182
- */
183
- main[data-block="pixelthrone/comingsoon--temp-01"] {
184
- height: 100vh;
185
- width: 100%;
186
- display: -ms-flexbox;
187
- display: flex;
188
- -ms-flex-direction: column;
189
- flex-direction: column;
190
- -ms-flex-wrap: nowrap;
191
- flex-wrap: nowrap;
192
- -ms-flex-pack: end;
193
- justify-content: flex-end;
194
- -ms-flex-align: center;
195
- align-items: center;
196
- padding-bottom: 15px;
197
- position: relative;
198
- -webkit-box-sizing: border-box;
199
- box-sizing: border-box;
200
- /**
201
- * Content
202
- */ }
203
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container {
204
- position: relative;
205
- width: 100%;
206
- max-width: 1170px;
207
- padding: 0 50px;
208
- display: grid;
209
- grid-gap: 10px 40px;
210
- grid-template-rows: auto auto auto;
211
- grid-template-columns: 1fr 2fr 1fr;
212
- z-index: 2;
213
- -webkit-box-sizing: border-box;
214
- box-sizing: border-box; }
215
- @media only screen and (max-width: 1023px) {
216
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container {
217
- grid-template-rows: auto auto auto;
218
- grid-template-columns: 1fr;
219
- grid-gap: 10px; } }
220
- @media only screen and (max-width: 767px) {
221
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container {
222
- padding: 0 30px; } }
223
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper {
224
- grid-column-start: 1;
225
- grid-row-start: 1; }
226
- @media only screen and (max-width: 1023px) {
227
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper {
228
- padding-bottom: 20px; } }
229
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-left-align {
230
- margin-right: auto; }
231
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-center-align {
232
- margin: 0 auto; }
233
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-right-align {
234
- margin-left: auto; }
235
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img {
236
- max-width: 230px; }
237
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-left-align {
238
- margin-right: auto; }
239
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-center-align {
240
- margin: 0 auto; }
241
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-right-align {
242
- margin-left: auto; }
243
- @media only screen and (max-width: 1023px) {
244
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img {
245
- margin: 0 !important; } }
246
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper > * {
247
- display: block; }
248
- @media only screen and (max-width: 1023px) {
249
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper > * {
250
- margin: 0; } }
251
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper {
252
- grid-column-start: 1;
253
- grid-row-start: 3; }
254
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper h1 {
255
- padding: 0;
256
- margin: 0;
257
- color: inherit; }
258
- @media only screen and (max-width: 1023px) {
259
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper {
260
- grid-column-start: 1;
261
- grid-row-start: 2; }
262
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper h1 {
263
- padding-bottom: 5px; } }
264
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper {
265
- grid-column-start: 2;
266
- grid-row-start: 2; }
267
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper h2 {
268
- padding: 0;
269
- margin: 0;
270
- color: inherit; }
271
- @media only screen and (max-width: 1023px) {
272
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper {
273
- grid-column-start: 1;
274
- grid-row-start: 3; } }
275
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper {
276
- grid-column-start: 2;
277
- grid-row-start: 3; }
278
- @media only screen and (max-width: 1023px) {
279
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper {
280
- grid-column-start: 1;
281
- grid-row-start: 4; } }
282
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p {
283
- padding: 0;
284
- margin: 0; }
285
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright {
286
- margin-top: 30px;
287
- margin-bottom: 30px;
288
- opacity: 0.6;
289
- font-size: 0.8em !important; }
290
- @media only screen and (max-width: 1023px) {
291
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright {
292
- margin-top: 15px; } }
293
- @media only screen and (max-width: 767px) {
294
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright {
295
- margin-bottom: 15px; } }
296
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright a {
297
- color: inherit;
298
- font-weight: 500;
299
- text-decoration: none;
300
- border-bottom: 1px solid;
301
- padding-bottom: 2px; }
302
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright a:hover {
303
- border-bottom: none; }
304
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper {
305
- grid-column-start: 3;
306
- grid-row-start: 3; }
307
- @media only screen and (max-width: 1023px) {
308
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper {
309
- grid-column-start: 1;
310
- grid-row-start: 5;
311
- padding-bottom: 10px;
312
- margin-left: -15px; } }
313
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper > div {
314
- margin-left: auto;
315
- -ms-flex-pack: end;
316
- justify-content: flex-end; }
317
- @media only screen and (max-width: 1023px) {
318
- main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper > div {
319
- -ms-flex-pack: start;
320
- justify-content: flex-start; } }
321
- /**
322
- * keyframes
323
- *
324
- * @since 1.0.0
325
- * @version 1.0.0
326
- */
327
- /**
328
- * Spinner
329
- *
330
- * @since 1.0.0
331
- * @version 1.0.0
332
- */
333
- @-webkit-keyframes pt_theme__loadingSpinner {
334
- 0% {
335
- -webkit-transform: rotate(0deg);
336
- transform: rotate(0deg); }
337
- 100% {
338
- -webkit-transform: rotate(360deg);
339
- transform: rotate(360deg); } }
340
-
341
- @keyframes pt_theme__loadingSpinner {
342
- 0% {
343
- -webkit-transform: rotate(0deg);
344
- transform: rotate(0deg); }
345
- 100% {
346
- -webkit-transform: rotate(360deg);
347
- transform: rotate(360deg); } }
348
-
349
- /**
350
- * Inherit Typography
351
- */
352
- /**
353
- * Media
354
- *
355
- * @since 1.0.0
356
- * @version 1.0.0
357
- */
358
- /**
359
- * Media
360
- *
361
- * @since 1.0.0
362
- * @version 1.0.0
363
- */
364
- /**
365
- * Colors
366
- */
367
- /**
368
- * Media Queryes
369
- */
370
- main[data-block="pixelthrone/comingsoon--temp-03"] {
371
- height: 100vh;
372
- width: 100%;
373
- position: relative;
374
- -webkit-box-sizing: border-box;
375
- box-sizing: border-box;
376
- display: -ms-flexbox;
377
- display: flex;
378
- -ms-flex-direction: row;
379
- flex-direction: row;
380
- -ms-flex-wrap: nowrap;
381
- flex-wrap: nowrap;
382
- -ms-flex-pack: start;
383
- justify-content: flex-start;
384
- -ms-flex-align: center;
385
- align-items: center;
386
- /**
387
- * Brand
388
- */
389
- /**
390
- * Content
391
- */ }
392
- @media only screen and (max-width: 767px) {
393
- main[data-block="pixelthrone/comingsoon--temp-03"] {
394
- -ms-flex-direction: column;
395
- flex-direction: column;
396
- -ms-flex-align: start;
397
- align-items: flex-start; } }
398
- main[data-block="pixelthrone/comingsoon--temp-03"] .brand__wrapper {
399
- z-index: 10;
400
- position: absolute;
401
- top: 30px;
402
- right: 30px; }
403
- @media only screen and (max-width: 767px) {
404
- main[data-block="pixelthrone/comingsoon--temp-03"] .brand__wrapper {
405
- right: auto;
406
- left: auto;
407
- position: relative;
408
- padding-left: 30px;
409
- margin-bottom: 60px; } }
410
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper {
411
- position: relative;
412
- z-index: 10;
413
- padding-left: 100px;
414
- -webkit-box-sizing: content-box;
415
- box-sizing: content-box;
416
- display: -ms-flexbox;
417
- display: flex;
418
- -ms-flex-direction: column;
419
- flex-direction: column;
420
- -ms-flex-wrap: nowrap;
421
- flex-wrap: nowrap;
422
- -ms-flex-pack: start;
423
- justify-content: flex-start;
424
- -ms-flex-align: start;
425
- align-items: flex-start; }
426
- @media only screen and (max-width: 1023px) {
427
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper {
428
- padding-left: 60px; } }
429
- @media only screen and (max-width: 767px) {
430
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper {
431
- padding-left: 30px;
432
- padding-right: 15px;
433
- -ms-flex-positive: 1;
434
- flex-grow: 1;
435
- display: -ms-flexbox;
436
- display: flex;
437
- -ms-flex-direction: column;
438
- flex-direction: column;
439
- -ms-flex-wrap: wrap;
440
- flex-wrap: wrap;
441
- -ms-flex-pack: start;
442
- justify-content: flex-start;
443
- -ms-flex-align: start;
444
- align-items: flex-start; } }
445
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper .social__wrapper {
446
- display: block;
447
- height: 60px;
448
- width: auto;
449
- margin-left: -10px; }
450
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper .social__wrapper button[data-empty="true"] {
451
- right: -40px; }
452
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper h1 {
453
- padding: 0;
454
- margin: 0;
455
- color: inherit;
456
- width: 100%; }
457
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper h3 {
458
- padding: 0;
459
- margin: 0;
460
- color: inherit;
461
- margin-top: 10px;
462
- width: 100%; }
463
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper p {
464
- padding: 0;
465
- margin: 50px 0 0 0;
466
- color: inherit;
467
- width: 100%; }
468
- @media only screen and (max-width: 767px) {
469
- main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper p {
470
- padding-bottom: 15px;
471
- -ms-flex-positive: 1;
472
- flex-grow: 1;
473
- display: -ms-flexbox;
474
- display: flex;
475
- -ms-flex-direction: row;
476
- flex-direction: row;
477
- -ms-flex-wrap: nowrap;
478
- flex-wrap: nowrap;
479
- -ms-flex-pack: start;
480
- justify-content: flex-start;
481
- -ms-flex-align: end;
482
- align-items: flex-end; } }
483
- /**
484
- * keyframes
485
- *
486
- * @since 1.0.0
487
- * @version 1.0.0
488
- */
489
- /**
490
- * Spinner
491
- *
492
- * @since 1.0.0
493
- * @version 1.0.0
494
- */
495
- @-webkit-keyframes pt_theme__loadingSpinner {
496
- 0% {
497
- -webkit-transform: rotate(0deg);
498
- transform: rotate(0deg); }
499
- 100% {
500
- -webkit-transform: rotate(360deg);
501
- transform: rotate(360deg); } }
502
-
503
- @keyframes pt_theme__loadingSpinner {
504
- 0% {
505
- -webkit-transform: rotate(0deg);
506
- transform: rotate(0deg); }
507
- 100% {
508
- -webkit-transform: rotate(360deg);
509
- transform: rotate(360deg); } }
510
-
511
- /**
512
- * Inherit Typography
513
- */
514
- /**
515
- * Media
516
- *
517
- * @since 1.0.0
518
- * @version 1.0.0
519
- */
520
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper p {
521
- font-family: inherit !important;
522
- font-size: inherit !important;
523
- font-weight: inherit !important;
524
- font-style: inherit !important;
525
- line-height: inherit !important;
526
- letter-spacing: inherit !important; }
527
-
528
- /**
529
- * Media
530
- *
531
- * @since 1.0.0
532
- * @version 1.0.0
533
- */
534
- /**
535
- * Colors
536
- */
537
- /**
538
- * Media Queryes
539
- */
540
- main[data-block="pixelthrone/comingsoon--temp-04"] {
541
- height: 100vh;
542
- width: 100%;
543
- position: relative;
544
- -webkit-box-sizing: border-box;
545
- box-sizing: border-box;
546
- display: -ms-flexbox;
547
- display: flex;
548
- -ms-flex-direction: column;
549
- flex-direction: column;
550
- -ms-flex-wrap: nowrap;
551
- flex-wrap: nowrap;
552
- -ms-flex-pack: justify;
553
- justify-content: space-between;
554
- -ms-flex-align: center;
555
- align-items: center;
556
- /**
557
- * Middle
558
- */
559
- /**
560
- * Bottom
561
- */ }
562
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper {
563
- position: relative;
564
- z-index: 10;
565
- text-align: center;
566
- padding-top: 30px; }
567
- @media only screen and (max-width: 767px) {
568
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper {
569
- padding-left: 20px;
570
- padding-right: 20px;
571
- padding-top: 20px; } }
572
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper button {
573
- margin: 0 auto 0 auto; }
574
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper button img {
575
- margin-bottom: 40px;
576
- display: inherit; }
577
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper > img {
578
- margin: 0 auto 0 auto;
579
- margin-bottom: 40px;
580
- display: inherit; }
581
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper h3 {
582
- padding: 0;
583
- margin: 0;
584
- color: inherit;
585
- margin-bottom: 5px; }
586
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper h1 {
587
- padding: 0;
588
- margin: 0;
589
- color: inherit; }
590
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper {
591
- display: block;
592
- width: 100%;
593
- padding-top: 20px; }
594
- main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper p {
595
- padding: 0;
596
- margin: 0;
597
- font-size: 1.2em !important; }
598
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper {
599
- position: relative;
600
- z-index: 10;
601
- padding-bottom: 30px;
602
- text-align: center; }
603
- @media only screen and (max-width: 767px) {
604
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper {
605
- padding-bottom: 20px; } }
606
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper h3 {
607
- padding: 0;
608
- margin: 0;
609
- color: inherit;
610
- margin-top: 10px; }
611
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper {
612
- width: auto;
613
- margin-top: 10px; }
614
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper div[data-component="social-icons"] {
615
- -ms-flex-pack: center;
616
- justify-content: center;
617
- width: auto; }
618
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper div[data-component="social-icons"] button[data-empty="true"] {
619
- right: 40px; }
620
- main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper p {
621
- padding: 0;
622
- margin: 30px 0 0 0;
623
- color: inherit; }
624
- /**
625
- * keyframes
626
- *
627
- * @since 1.0.0
628
- * @version 1.0.0
629
- */
630
- /**
631
- * Spinner
632
- *
633
- * @since 1.0.0
634
- * @version 1.0.0
635
- */
636
- @-webkit-keyframes pt_theme__loadingSpinner {
637
- 0% {
638
- -webkit-transform: rotate(0deg);
639
- transform: rotate(0deg); }
640
- 100% {
641
- -webkit-transform: rotate(360deg);
642
- transform: rotate(360deg); } }
643
-
644
- @keyframes pt_theme__loadingSpinner {
645
- 0% {
646
- -webkit-transform: rotate(0deg);
647
- transform: rotate(0deg); }
648
- 100% {
649
- -webkit-transform: rotate(360deg);
650
- transform: rotate(360deg); } }
651
-
652
- /**
653
- * Inherit Typography
654
- */
655
- /**
656
- * Media
657
- *
658
- * @since 1.0.0
659
- * @version 1.0.0
660
- */
661
- /**
662
- * Media
663
- *
664
- * @since 1.0.0
665
- * @version 1.0.0
666
- */
667
- /**
668
- * Colors
669
- */
670
- /**
671
- * Media Queryes
672
- */
673
- /**
674
- * Vendor
675
- */
676
- @font-face {
677
- font-family: 'Socicon';
678
- src: url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg");
679
- src: url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg#iefix") format("embedded-opentype"), url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff2?cthkrg") format("woff2"), url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.ttf?cthkrg") format("truetype"), url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff?cthkrg") format("woff"), url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.svg?cthkrg#Socicon") format("svg");
680
- font-weight: normal;
681
- font-style: normal; }
682
-
683
- [class^="socicon-"], [class*=" socicon-"] {
684
- /* use !important to prevent issues with browser extensions that change fonts */
685
- font-family: 'Socicon' !important;
686
- speak: none;
687
- font-style: normal;
688
- font-weight: normal;
689
- font-variant: normal;
690
- text-transform: none;
691
- line-height: 1;
692
- /* Better Font Rendering =========== */
693
- -webkit-font-smoothing: antialiased;
694
- -moz-osx-font-smoothing: grayscale; }
695
-
696
- .socicon-internet:before {
697
- content: "\e957"; }
698
-
699
- .socicon-moddb:before {
700
- content: "\e94b"; }
701
-
702
- .socicon-indiedb:before {
703
- content: "\e94c"; }
704
-
705
- .socicon-traxsource:before {
706
- content: "\e94d"; }
707
-
708
- .socicon-gamefor:before {
709
- content: "\e94e"; }
710
-
711
- .socicon-pixiv:before {
712
- content: "\e94f"; }
713
-
714
- .socicon-myanimelist:before {
715
- content: "\e950"; }
716
-
717
- .socicon-blackberry:before {
718
- content: "\e951"; }
719
-
720
- .socicon-wickr:before {
721
- content: "\e952"; }
722
-
723
- .socicon-spip:before {
724
- content: "\e953"; }
725
-
726
- .socicon-napster:before {
727
- content: "\e954"; }
728
-
729
- .socicon-beatport:before {
730
- content: "\e955"; }
731
-
732
- .socicon-hackerone:before {
733
- content: "\e956"; }
734
-
735
- .socicon-hackernews:before {
736
- content: "\e946"; }
737
-
738
- .socicon-smashwords:before {
739
- content: "\e947"; }
740
-
741
- .socicon-kobo:before {
742
- content: "\e948"; }
743
-
744
- .socicon-bookbub:before {
745
- content: "\e949"; }
746
-
747
- .socicon-mailru:before {
748
- content: "\e94a"; }
749
-
750
- .socicon-gitlab:before {
751
- content: "\e945"; }
752
-
753
- .socicon-instructables:before {
754
- content: "\e944"; }
755
-
756
- .socicon-portfolio:before {
757
- content: "\e943"; }
758
-
759
- .socicon-codered:before {
760
- content: "\e940"; }
761
-
762
- .socicon-origin:before {
763
- content: "\e941"; }
764
-
765
- .socicon-nextdoor:before {
766
- content: "\e942"; }
767
-
768
- .socicon-udemy:before {
769
- content: "\e93f"; }
770
-
771
- .socicon-livemaster:before {
772
- content: "\e93e"; }
773
-
774
- .socicon-crunchbase:before {
775
- content: "\e93b"; }
776
-
777
- .socicon-homefy:before {
778
- content: "\e93c"; }
779
-
780
- .socicon-calendly:before {
781
- content: "\e93d"; }
782
-
783
- .socicon-realtor:before {
784
- content: "\e90f"; }
785
-
786
- .socicon-tidal:before {
787
- content: "\e910"; }
788
-
789
- .socicon-qobuz:before {
790
- content: "\e911"; }
791
-
792
- .socicon-natgeo:before {
793
- content: "\e912"; }
794
-
795
- .socicon-mastodon:before {
796
- content: "\e913"; }
797
-
798
- .socicon-unsplash:before {
799
- content: "\e914"; }
800
-
801
- .socicon-homeadvisor:before {
802
- content: "\e915"; }
803
-
804
- .socicon-angieslist:before {
805
- content: "\e916"; }
806
-
807
- .socicon-codepen:before {
808
- content: "\e917"; }
809
-
810
- .socicon-slack:before {
811
- content: "\e918"; }
812
-
813
- .socicon-openaigym:before {
814
- content: "\e919"; }
815
-
816
- .socicon-logmein:before {
817
- content: "\e91a"; }
818
-
819
- .socicon-fiverr:before {
820
- content: "\e91b"; }
821
-
822
- .socicon-gotomeeting:before {
823
- content: "\e91c"; }
824
-
825
- .socicon-aliexpress:before {
826
- content: "\e91d"; }
827
-
828
- .socicon-guru:before {
829
- content: "\e91e"; }
830
-
831
- .socicon-appstore:before {
832
- content: "\e91f"; }
833
-
834
- .socicon-homes:before {
835
- content: "\e920"; }
836
-
837
- .socicon-zoom:before {
838
- content: "\e921"; }
839
-
840
- .socicon-alibaba:before {
841
- content: "\e922"; }
842
-
843
- .socicon-craigslist:before {
844
- content: "\e923"; }
845
-
846
- .socicon-wix:before {
847
- content: "\e924"; }
848
-
849
- .socicon-redfin:before {
850
- content: "\e925"; }
851
-
852
- .socicon-googlecalendar:before {
853
- content: "\e926"; }
854
-
855
- .socicon-shopify:before {
856
- content: "\e927"; }
857
-
858
- .socicon-freelancer:before {
859
- content: "\e928"; }
860
-
861
- .socicon-seedrs:before {
862
- content: "\e929"; }
863
-
864
- .socicon-bing:before {
865
- content: "\e92a"; }
866
-
867
- .socicon-doodle:before {
868
- content: "\e92b"; }
869
-
870
- .socicon-bonanza:before {
871
- content: "\e92c"; }
872
-
873
- .socicon-squarespace:before {
874
- content: "\e92d"; }
875
-
876
- .socicon-toptal:before {
877
- content: "\e92e"; }
878
-
879
- .socicon-gust:before {
880
- content: "\e92f"; }
881
-
882
- .socicon-ask:before {
883
- content: "\e930"; }
884
-
885
- .socicon-trulia:before {
886
- content: "\e931"; }
887
-
888
- .socicon-loomly:before {
889
- content: "\e932"; }
890
-
891
- .socicon-ghost:before {
892
- content: "\e933"; }
893
-
894
- .socicon-upwork:before {
895
- content: "\e934"; }
896
-
897
- .socicon-fundable:before {
898
- content: "\e935"; }
899
-
900
- .socicon-booking:before {
901
- content: "\e936"; }
902
-
903
- .socicon-googlemaps:before {
904
- content: "\e937"; }
905
-
906
- .socicon-zillow:before {
907
- content: "\e938"; }
908
-
909
- .socicon-niconico:before {
910
- content: "\e939"; }
911
-
912
- .socicon-toneden:before {
913
- content: "\e93a"; }
914
-
915
- .socicon-augment:before {
916
- content: "\e908"; }
917
-
918
- .socicon-bitbucket:before {
919
- content: "\e909"; }
920
-
921
- .socicon-fyuse:before {
922
- content: "\e90a"; }
923
-
924
- .socicon-yt-gaming:before {
925
- content: "\e90b"; }
926
-
927
- .socicon-sketchfab:before {
928
- content: "\e90c"; }
929
-
930
- .socicon-mobcrush:before {
931
- content: "\e90d"; }
932
-
933
- .socicon-microsoft:before {
934
- content: "\e90e"; }
935
-
936
- .socicon-pandora:before {
937
- content: "\e907"; }
938
-
939
- .socicon-messenger:before {
940
- content: "\e906"; }
941
-
942
- .socicon-gamewisp:before {
943
- content: "\e905"; }
944
-
945
- .socicon-bloglovin:before {
946
- content: "\e904"; }
947
-
948
- .socicon-tunein:before {
949
- content: "\e903"; }
950
-
951
- .socicon-gamejolt:before {
952
- content: "\e901"; }
953
-
954
- .socicon-trello:before {
955
- content: "\e902"; }
956
-
957
- .socicon-spreadshirt:before {
958
- content: "\e900"; }
959
-
960
- .socicon-500px:before {
961
- content: "\e000"; }
962
-
963
- .socicon-8tracks:before {
964
- content: "\e001"; }
965
-
966
- .socicon-airbnb:before {
967
- content: "\e002"; }
968
-
969
- .socicon-alliance:before {
970
- content: "\e003"; }
971
-
972
- .socicon-amazon:before {
973
- content: "\e004"; }
974
-
975
- .socicon-amplement:before {
976
- content: "\e005"; }
977
-
978
- .socicon-android:before {
979
- content: "\e006"; }
980
-
981
- .socicon-angellist:before {
982
- content: "\e007"; }
983
-
984
- .socicon-apple:before {
985
- content: "\e008"; }
986
-
987
- .socicon-appnet:before {
988
- content: "\e009"; }
989
-
990
- .socicon-baidu:before {
991
- content: "\e00a"; }
992
-
993
- .socicon-bandcamp:before {
994
- content: "\e00b"; }
995
-
996
- .socicon-battlenet:before {
997
- content: "\e00c"; }
998
-
999
- .socicon-mixer:before {
1000
- content: "\e00d"; }
1001
-
1002
- .socicon-bebee:before {
1003
- content: "\e00e"; }
1004
-
1005
- .socicon-bebo:before {
1006
- content: "\e00f"; }
1007
-
1008
- .socicon-behance:before {
1009
- content: "\e010"; }
1010
-
1011
- .socicon-blizzard:before {
1012
- content: "\e011"; }
1013
-
1014
- .socicon-blogger:before {
1015
- content: "\e012"; }
1016
-
1017
- .socicon-buffer:before {
1018
- content: "\e013"; }
1019
-
1020
- .socicon-chrome:before {
1021
- content: "\e014"; }
1022
-
1023
- .socicon-coderwall:before {
1024
- content: "\e015"; }
1025
-
1026
- .socicon-curse:before {
1027
- content: "\e016"; }
1028
-
1029
- .socicon-dailymotion:before {
1030
- content: "\e017"; }
1031
-
1032
- .socicon-deezer:before {
1033
- content: "\e018"; }
1034
-
1035
- .socicon-delicious:before {
1036
- content: "\e019"; }
1037
-
1038
- .socicon-deviantart:before {
1039
- content: "\e01a"; }
1040
-
1041
- .socicon-diablo:before {
1042
- content: "\e01b"; }
1043
-
1044
- .socicon-digg:before {
1045
- content: "\e01c"; }
1046
-
1047
- .socicon-discord:before {
1048
- content: "\e01d"; }
1049
-
1050
- .socicon-disqus:before {
1051
- content: "\e01e"; }
1052
-
1053
- .socicon-douban:before {
1054
- content: "\e01f"; }
1055
-
1056
- .socicon-draugiem:before {
1057
- content: "\e020"; }
1058
-
1059
- .socicon-dribbble:before {
1060
- content: "\e021"; }
1061
-
1062
- .socicon-drupal:before {
1063
- content: "\e022"; }
1064
-
1065
- .socicon-ebay:before {
1066
- content: "\e023"; }
1067
-
1068
- .socicon-ello:before {
1069
- content: "\e024"; }
1070
-
1071
- .socicon-endomodo:before {
1072
- content: "\e025"; }
1073
-
1074
- .socicon-envato:before {
1075
- content: "\e026"; }
1076
-
1077
- .socicon-etsy:before {
1078
- content: "\e027"; }
1079
-
1080
- .socicon-facebook:before {
1081
- content: "\e028"; }
1082
-
1083
- .socicon-feedburner:before {
1084
- content: "\e029"; }
1085
-
1086
- .socicon-filmweb:before {
1087
- content: "\e02a"; }
1088
-
1089
- .socicon-firefox:before {
1090
- content: "\e02b"; }
1091
-
1092
- .socicon-flattr:before {
1093
- content: "\e02c"; }
1094
-
1095
- .socicon-flickr:before {
1096
- content: "\e02d"; }
1097
-
1098
- .socicon-formulr:before {
1099
- content: "\e02e"; }
1100
-
1101
- .socicon-forrst:before {
1102
- content: "\e02f"; }
1103
-
1104
- .socicon-foursquare:before {
1105
- content: "\e030"; }
1106
-
1107
- .socicon-friendfeed:before {
1108
- content: "\e031"; }
1109
-
1110
- .socicon-github:before {
1111
- content: "\e032"; }
1112
-
1113
- .socicon-goodreads:before {
1114
- content: "\e033"; }
1115
-
1116
- .socicon-google:before {
1117
- content: "\e034"; }
1118
-
1119
- .socicon-googlescholar:before {
1120
- content: "\e035"; }
1121
-
1122
- .socicon-googlegroups:before {
1123
- content: "\e036"; }
1124
-
1125
- .socicon-googlephotos:before {
1126
- content: "\e037"; }
1127
-
1128
- .socicon-googleplus:before {
1129
- content: "\e038"; }
1130
-
1131
- .socicon-grooveshark:before {
1132
- content: "\e039"; }
1133
-
1134
- .socicon-hackerrank:before {
1135
- content: "\e03a"; }
1136
-
1137
- .socicon-hearthstone:before {
1138
- content: "\e03b"; }
1139
-
1140
- .socicon-hellocoton:before {
1141
- content: "\e03c"; }
1142
-
1143
- .socicon-heroes:before {
1144
- content: "\e03d"; }
1145
-
1146
- .socicon-smashcast:before {
1147
- content: "\e03e"; }
1148
-
1149
- .socicon-horde:before {
1150
- content: "\e03f"; }
1151
-
1152
- .socicon-houzz:before {
1153
- content: "\e040"; }
1154
-
1155
- .socicon-icq:before {
1156
- content: "\e041"; }
1157
-
1158
- .socicon-identica:before {
1159
- content: "\e042"; }
1160
-
1161
- .socicon-imdb:before {
1162
- content: "\e043"; }
1163
-
1164
- .socicon-instagram:before {
1165
- content: "\e044"; }
1166
-
1167
- .socicon-issuu:before {
1168
- content: "\e045"; }
1169
-
1170
- .socicon-istock:before {
1171
- content: "\e046"; }
1172
-
1173
- .socicon-itunes:before {
1174
- content: "\e047"; }
1175
-
1176
- .socicon-keybase:before {
1177
- content: "\e048"; }
1178
-
1179
- .socicon-lanyrd:before {
1180
- content: "\e049"; }
1181
-
1182
- .socicon-lastfm:before {
1183
- content: "\e04a"; }
1184
-
1185
- .socicon-line:before {
1186
- content: "\e04b"; }
1187
-
1188
- .socicon-linkedin:before {
1189
- content: "\e04c"; }
1190
-
1191
- .socicon-livejournal:before {
1192
- content: "\e04d"; }
1193
-
1194
- .socicon-lyft:before {
1195
- content: "\e04e"; }
1196
-
1197
- .socicon-macos:before {
1198
- content: "\e04f"; }
1199
-
1200
- .socicon-mail:before {
1201
- content: "\e050"; }
1202
-
1203
- .socicon-medium:before {
1204
- content: "\e051"; }
1205
-
1206
- .socicon-meetup:before {
1207
- content: "\e052"; }
1208
-
1209
- .socicon-mixcloud:before {
1210
- content: "\e053"; }
1211
-
1212
- .socicon-modelmayhem:before {
1213
- content: "\e054"; }
1214
-
1215
- .socicon-mumble:before {
1216
- content: "\e055"; }
1217
-
1218
- .socicon-myspace:before {
1219
- content: "\e056"; }
1220
-
1221
- .socicon-newsvine:before {
1222
- content: "\e057"; }
1223
-
1224
- .socicon-nintendo:before {
1225
- content: "\e058"; }
1226
-
1227
- .socicon-npm:before {
1228
- content: "\e059"; }
1229
-
1230
- .socicon-odnoklassniki:before {
1231
- content: "\e05a"; }
1232
-
1233
- .socicon-openid:before {
1234
- content: "\e05b"; }
1235
-
1236
- .socicon-opera:before {
1237
- content: "\e05c"; }
1238
-
1239
- .socicon-outlook:before {
1240
- content: "\e05d"; }
1241
-
1242
- .socicon-overwatch:before {
1243
- content: "\e05e"; }
1244
-
1245
- .socicon-patreon:before {
1246
- content: "\e05f"; }
1247
-
1248
- .socicon-paypal:before {
1249
- content: "\e060"; }
1250
-
1251
- .socicon-periscope:before {
1252
- content: "\e061"; }
1253
-
1254
- .socicon-persona:before {
1255
- content: "\e062"; }
1256
-
1257
- .socicon-pinterest:before {
1258
- content: "\e063"; }
1259
-
1260
- .socicon-play:before {
1261
- content: "\e064"; }
1262
-
1263
- .socicon-player:before {
1264
- content: "\e065"; }
1265
-
1266
- .socicon-playstation:before {
1267
- content: "\e066"; }
1268
-
1269
- .socicon-pocket:before {
1270
- content: "\e067"; }
1271
-
1272
- .socicon-qq:before {
1273
- content: "\e068"; }
1274
-
1275
- .socicon-quora:before {
1276
- content: "\e069"; }
1277
-
1278
- .socicon-raidcall:before {
1279
- content: "\e06a"; }
1280
-
1281
- .socicon-ravelry:before {
1282
- content: "\e06b"; }
1283
-
1284
- .socicon-reddit:before {
1285
- content: "\e06c"; }
1286
-
1287
- .socicon-renren:before {
1288
- content: "\e06d"; }
1289
-
1290
- .socicon-researchgate:before {
1291
- content: "\e06e"; }
1292
-
1293
- .socicon-residentadvisor:before {
1294
- content: "\e06f"; }
1295
-
1296
- .socicon-reverbnation:before {
1297
- content: "\e070"; }
1298
-
1299
- .socicon-rss:before {
1300
- content: "\e071"; }
1301
-
1302
- .socicon-sharethis:before {
1303
- content: "\e072"; }
1304
-
1305
- .socicon-skype:before {
1306
- content: "\e073"; }
1307
-
1308
- .socicon-slideshare:before {
1309
- content: "\e074"; }
1310
-
1311
- .socicon-smugmug:before {
1312
- content: "\e075"; }
1313
-
1314
- .socicon-snapchat:before {
1315
- content: "\e076"; }
1316
-
1317
- .socicon-songkick:before {
1318
- content: "\e077"; }
1319
-
1320
- .socicon-soundcloud:before {
1321
- content: "\e078"; }
1322
-
1323
- .socicon-spotify:before {
1324
- content: "\e079"; }
1325
-
1326
- .socicon-stackexchange:before {
1327
- content: "\e07a"; }
1328
-
1329
- .socicon-stackoverflow:before {
1330
- content: "\e07b"; }
1331
-
1332
- .socicon-starcraft:before {
1333
- content: "\e07c"; }
1334
-
1335
- .socicon-stayfriends:before {
1336
- content: "\e07d"; }
1337
-
1338
- .socicon-steam:before {
1339
- content: "\e07e"; }
1340
-
1341
- .socicon-storehouse:before {
1342
- content: "\e07f"; }
1343
-
1344
- .socicon-strava:before {
1345
- content: "\e080"; }
1346
-
1347
- .socicon-streamjar:before {
1348
- content: "\e081"; }
1349
-
1350
- .socicon-stumbleupon:before {
1351
- content: "\e082"; }
1352
-
1353
- .socicon-swarm:before {
1354
- content: "\e083"; }
1355
-
1356
- .socicon-teamspeak:before {
1357
- content: "\e084"; }
1358
-
1359
- .socicon-teamviewer:before {
1360
- content: "\e085"; }
1361
-
1362
- .socicon-technorati:before {
1363
- content: "\e086"; }
1364
-
1365
- .socicon-telegram:before {
1366
- content: "\e087"; }
1367
-
1368
- .socicon-tripadvisor:before {
1369
- content: "\e088"; }
1370
-
1371
- .socicon-tripit:before {
1372
- content: "\e089"; }
1373
-
1374
- .socicon-triplej:before {
1375
- content: "\e08a"; }
1376
-
1377
- .socicon-tumblr:before {
1378
- content: "\e08b"; }
1379
-
1380
- .socicon-twitch:before {
1381
- content: "\e08c"; }
1382
-
1383
- .socicon-twitter:before {
1384
- content: "\e08d"; }
1385
-
1386
- .socicon-uber:before {
1387
- content: "\e08e"; }
1388
-
1389
- .socicon-ventrilo:before {
1390
- content: "\e08f"; }
1391
-
1392
- .socicon-viadeo:before {
1393
- content: "\e090"; }
1394
-
1395
- .socicon-viber:before {
1396
- content: "\e091"; }
1397
-
1398
- .socicon-viewbug:before {
1399
- content: "\e092"; }
1400
-
1401
- .socicon-vimeo:before {
1402
- content: "\e093"; }
1403
-
1404
- .socicon-vine:before {
1405
- content: "\e094"; }
1406
-
1407
- .socicon-vkontakte:before {
1408
- content: "\e095"; }
1409
-
1410
- .socicon-warcraft:before {
1411
- content: "\e096"; }
1412
-
1413
- .socicon-wechat:before {
1414
- content: "\e097"; }
1415
-
1416
- .socicon-weibo:before {
1417
- content: "\e098"; }
1418
-
1419
- .socicon-whatsapp:before {
1420
- content: "\e099"; }
1421
-
1422
- .socicon-wikipedia:before {
1423
- content: "\e09a"; }
1424
-
1425
- .socicon-windows:before {
1426
- content: "\e09b"; }
1427
-
1428
- .socicon-wordpress:before {
1429
- content: "\e09c"; }
1430
-
1431
- .socicon-wykop:before {
1432
- content: "\e09d"; }
1433
-
1434
- .socicon-xbox:before {
1435
- content: "\e09e"; }
1436
-
1437
- .socicon-xing:before {
1438
- content: "\e09f"; }
1439
-
1440
- .socicon-yahoo:before {
1441
- content: "\e0a0"; }
1442
-
1443
- .socicon-yammer:before {
1444
- content: "\e0a1"; }
1445
-
1446
- .socicon-yandex:before {
1447
- content: "\e0a2"; }
1448
-
1449
- .socicon-yelp:before {
1450
- content: "\e0a3"; }
1451
-
1452
- .socicon-younow:before {
1453
- content: "\e0a4"; }
1454
-
1455
- .socicon-youtube:before {
1456
- content: "\e0a5"; }
1457
-
1458
- .socicon-zapier:before {
1459
- content: "\e0a6"; }
1460
-
1461
- .socicon-zerply:before {
1462
- content: "\e0a7"; }
1463
-
1464
- .socicon-zomato:before {
1465
- content: "\e0a8"; }
1466
-
1467
- .socicon-zynga:before {
1468
- content: "\e0a9"; }
1469
-
1470
- /**
1471
- * Components
1472
- */
1473
- div[data-component="social-icons"] {
1474
- display: -ms-flexbox;
1475
- display: flex;
1476
- -ms-flex-direction: row;
1477
- flex-direction: row;
1478
- -ms-flex-wrap: wrap;
1479
- flex-wrap: wrap;
1480
- -ms-flex-pack: start;
1481
- justify-content: flex-start;
1482
- -ms-flex-align: center;
1483
- align-items: center;
1484
- position: relative;
1485
- min-height: 42px;
1486
- /**
1487
- * On editor
1488
- */ }
1489
- div[data-component="social-icons"] .-icon {
1490
- color: inherit;
1491
- position: relative;
1492
- width: 42px;
1493
- height: 42px;
1494
- font-size: 100%;
1495
- margin: 0;
1496
- line-height: 0;
1497
- display: block;
1498
- vertical-align: middle;
1499
- /* ---- Hover ---- */
1500
- /**
1501
- * Add Original Colors
1502
- */ }
1503
- div[data-component="social-icons"] .-icon i {
1504
- -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1505
- -o-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1506
- transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1507
- color: inherit;
1508
- font-size: 24px;
1509
- position: absolute;
1510
- top: 50%;
1511
- left: 50%;
1512
- -webkit-transform: translate(-50%, -50%);
1513
- -ms-transform: translate(-50%, -50%);
1514
- transform: translate(-50%, -50%); }
1515
- div[data-component="social-icons"] .-icon::before {
1516
- -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1517
- -o-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1518
- transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
1519
- content: " ";
1520
- position: absolute;
1521
- width: 50%;
1522
- height: 50%;
1523
- top: 50%;
1524
- left: 50%;
1525
- -webkit-transform: translate(-50%, -50%);
1526
- -ms-transform: translate(-50%, -50%);
1527
- transform: translate(-50%, -50%);
1528
- opacity: 0;
1529
- border-radius: 50%; }
1530
- div[data-component="social-icons"] .-icon:hover i {
1531
- color: white; }
1532
- div[data-component="social-icons"] .-icon:hover::before {
1533
- width: 110%;
1534
- height: 110%;
1535
- opacity: 1; }
1536
- div[data-component="social-icons"] .-icon.-modelmayhem::before {
1537
- background-color: #000000; }
1538
- div[data-component="social-icons"] .-icon.-mixcloud::before {
1539
- background-color: #000000; }
1540
- div[data-component="social-icons"] .-icon.-npm::before {
1541
- background-color: #cb3837; }
1542
- div[data-component="social-icons"] .-icon.-drupal::before {
1543
- background-color: #22a9e0; }
1544
- div[data-component="social-icons"] .-icon.-swarm::before {
1545
- background-color: #ff9a1c; }
1546
- div[data-component="social-icons"] .-icon.-istock::before {
1547
- background-color: #040404; }
1548
- div[data-component="social-icons"] .-icon.-yammer::before {
1549
- background-color: #0073c6; }
1550
- div[data-component="social-icons"] .-icon.-ello::before {
1551
- background-color: #000000; }
1552
- div[data-component="social-icons"] .-icon.-stackoverflow::before {
1553
- background-color: #f47f25; }
1554
- div[data-component="social-icons"] .-icon.-triplej::before {
1555
- background-color: #e73429; }
1556
- div[data-component="social-icons"] .-icon.-houzz::before {
1557
- background-color: #7bc144; }
1558
- div[data-component="social-icons"] .-icon.-rss::before {
1559
- background-color: #fc762b; }
1560
- div[data-component="social-icons"] .-icon.-paypal::before {
1561
- background-color: #009cdd; }
1562
- div[data-component="social-icons"] .-icon.-odnoklassniki::before {
1563
- background-color: #f68222; }
1564
- div[data-component="social-icons"] .-icon.-airbnb::before {
1565
- background-color: #ff5b60; }
1566
- div[data-component="social-icons"] .-icon.-periscope::before {
1567
- background-color: #2ba4c6; }
1568
- div[data-component="social-icons"] .-icon.-outlook::before {
1569
- background-color: #0074c6; }
1570
- div[data-component="social-icons"] .-icon.-coderwall::before {
1571
- background-color: #343131; }
1572
- div[data-component="social-icons"] .-icon.-tripadvisor::before {
1573
- background-color: #1e882f; }
1574
- div[data-component="social-icons"] .-icon.-goodreads::before {
1575
- background-color: #463020; }
1576
- div[data-component="social-icons"] .-icon.-tripit::before {
1577
- background-color: #f38c07; }
1578
- div[data-component="social-icons"] .-icon.-lanyrd::before {
1579
- background-color: #133359; }
1580
- div[data-component="social-icons"] .-icon.-slideshare::before {
1581
- background-color: #007ab5; }
1582
- div[data-component="social-icons"] .-icon.-buffer::before {
1583
- background-color: #333333; }
1584
- div[data-component="social-icons"] .-icon.-disqus::before {
1585
- background-color: #239eff; }
1586
- div[data-component="social-icons"] .-icon.-vkontakte::before {
1587
- background-color: #4b76a3; }
1588
- div[data-component="social-icons"] .-icon.-whatsapp::before {
1589
- background-color: #4dc247; }
1590
- div[data-component="social-icons"] .-icon.-patreon::before {
1591
- background-color: #e8481d; }
1592
- div[data-component="social-icons"] .-icon.-storehouse::before {
1593
- background-color: #231f20; }
1594
- div[data-component="social-icons"] .-icon.-pocket::before {
1595
- background-color: #ee4255; }
1596
- div[data-component="social-icons"] .-icon.-mail::before {
1597
- background-color: #008299; }
1598
- div[data-component="social-icons"] .-icon.-blogger::before {
1599
- background-color: #f89239; }
1600
- div[data-component="social-icons"] .-icon.-technorati::before {
1601
- background-color: #3baf04; }
1602
- div[data-component="social-icons"] .-icon.-reddit::before {
1603
- background-color: #ff4706; }
1604
- div[data-component="social-icons"] .-icon.-dribbble::before {
1605
- background-color: #f36898; }
1606
- div[data-component="social-icons"] .-icon.-stumbleupon::before {
1607
- background-color: #ec4a26; }
1608
- div[data-component="social-icons"] .-icon.-digg::before {
1609
- background-color: #165790; }
1610
- div[data-component="social-icons"] .-icon.-envato::before {
1611
- background-color: #81b342; }
1612
- div[data-component="social-icons"] .-icon.-behance::before {
1613
- background-color: #006aff; }
1614
- div[data-component="social-icons"] .-icon.-delicious::before {
1615
- background-color: #1d96ff; }
1616
- div[data-component="social-icons"] .-icon.-deviantart::before {
1617
- background-color: #04cc48; }
1618
- div[data-component="social-icons"] .-icon.-forrst::before {
1619
- background-color: #4fb54b; }
1620
- div[data-component="social-icons"] .-icon.-play::before {
1621
- background-color: #0070c0; }
1622
- div[data-component="social-icons"] .-icon.-zerply::before {
1623
- background-color: #9dbb7a; }
1624
- div[data-component="social-icons"] .-icon.-wikipedia::before {
1625
- background-color: #333333; }
1626
- div[data-component="social-icons"] .-icon.-apple::before {
1627
- background-color: #aaaaaa; }
1628
- div[data-component="social-icons"] .-icon.-flattr::before {
1629
- background-color: #fdb936; }
1630
- div[data-component="social-icons"] .-icon.-github::before {
1631
- background-color: #323131; }
1632
- div[data-component="social-icons"] .-icon.-renren::before {
1633
- background-color: #005fac; }
1634
- div[data-component="social-icons"] .-icon.-friendfeed::before {
1635
- background-color: #85a9d9; }
1636
- div[data-component="social-icons"] .-icon.-newsvine::before {
1637
- background-color: #005221; }
1638
- div[data-component="social-icons"] .-icon.-bebo::before {
1639
- background-color: #ef1513; }
1640
- div[data-component="social-icons"] .-icon.-zynga::before {
1641
- background-color: #f60b30; }
1642
- div[data-component="social-icons"] .-icon.-steam::before {
1643
- background-color: #010103; }
1644
- div[data-component="social-icons"] .-icon.-xbox::before {
1645
- background-color: #107b10; }
1646
- div[data-component="social-icons"] .-icon.-windows::before {
1647
- background-color: #0078d7; }
1648
- div[data-component="social-icons"] .-icon.-qq::before {
1649
- background-color: #000000; }
1650
- div[data-component="social-icons"] .-icon.-douban::before {
1651
- background-color: #007510; }
1652
- div[data-component="social-icons"] .-icon.-meetup::before {
1653
- background-color: #f10a05; }
1654
- div[data-component="social-icons"] .-icon.-playstation::before {
1655
- background-color: #00338a; }
1656
- div[data-component="social-icons"] .-icon.-android::before {
1657
- background-color: #9acc06; }
1658
- div[data-component="social-icons"] .-icon.-snapchat::before {
1659
- background-color: #fffb0e; }
1660
- div[data-component="social-icons"] .-icon.-twitter::before {
1661
- background-color: #55acee; }
1662
- div[data-component="social-icons"] .-icon.-facebook::before {
1663
- background-color: #3b5998; }
1664
- div[data-component="social-icons"] .-icon.-googleplus::before {
1665
- background-color: #dd4b39; }
1666
- div[data-component="social-icons"] .-icon.-pinterest::before {
1667
- background-color: #cb2027; }
1668
- div[data-component="social-icons"] .-icon.-foursquare::before {
1669
- background-color: #fa4a78; }
1670
- div[data-component="social-icons"] .-icon.-yahoo::before {
1671
- background-color: #3f0690; }
1672
- div[data-component="social-icons"] .-icon.-skype::before {
1673
- background-color: #00b0f0; }
1674
- div[data-component="social-icons"] .-icon.-yelp::before {
1675
- background-color: #bf3126; }
1676
- div[data-component="social-icons"] .-icon.-feedburner::before {
1677
- background-color: #0072c4; }
1678
- div[data-component="social-icons"] .-icon.-linkedin::before {
1679
- background-color: #007bb5; }
1680
- div[data-component="social-icons"] .-icon.-viadeo::before {
1681
- background-color: #f4972c; }
1682
- div[data-component="social-icons"] .-icon.-xing::before {
1683
- background-color: #005d5e; }
1684
- div[data-component="social-icons"] .-icon.-myspace::before {
1685
- background-color: #003499; }
1686
- div[data-component="social-icons"] .-icon.-soundcloud::before {
1687
- background-color: #fb3e0f; }
1688
- div[data-component="social-icons"] .-icon.-spotify::before {
1689
- background-color: #1dd660; }
1690
- div[data-component="social-icons"] .-icon.-grooveshark::before {
1691
- background-color: #f77f07; }
1692
- div[data-component="social-icons"] .-icon.-lastfm::before {
1693
- background-color: #e41a2d; }
1694
- div[data-component="social-icons"] .-icon.-youtube::before {
1695
- background-color: #bb0000; }
1696
- div[data-component="social-icons"] .-icon.-vimeo::before {
1697
- background-color: #06b7ea; }
1698
- div[data-component="social-icons"] .-icon.-dailymotion::before {
1699
- background-color: #0065dc; }
1700
- div[data-component="social-icons"] .-icon.-vine::before {
1701
- background-color: #00b185; }
1702
- div[data-component="social-icons"] .-icon.-flickr::before {
1703
- background-color: #0064db; }
1704
- div[data-component="social-icons"] .-icon.-w500px::before {
1705
- background-color: #009ae5; }
1706
- div[data-component="social-icons"] .-icon.-instagram::before {
1707
- background-color: #125688; }
1708
- div[data-component="social-icons"] .-icon.-wordpress::before {
1709
- background-color: #00749a; }
1710
- div[data-component="social-icons"] .-icon.-tumblr::before {
1711
- background-color: #36465d; }
1712
- div[data-component="social-icons"] .-icon.-twitch::before {
1713
- background-color: #6343a5; }
1714
- div[data-component="social-icons"] .-icon.-w8tracks::before {
1715
- background-color: #0f2c4b; }
1716
- div[data-component="social-icons"] .-icon.-amazon::before {
1717
- background-color: #231f20; }
1718
- div[data-component="social-icons"] .-icon.-smugmug::before {
1719
- background-color: #96c73e; }
1720
- div[data-component="social-icons"] .-icon.-ravelry::before {
1721
- background-color: #c61b4e; }
1722
- div[data-component="social-icons"] .-icon.-weibo::before {
1723
- background-color: #fc1d26; }
1724
- div[data-component="social-icons"] .-icon.-baidu::before {
1725
- background-color: #181fdc; }
1726
- div[data-component="social-icons"] .-icon.-angellist::before {
1727
- background-color: #373435; }
1728
- div[data-component="social-icons"] .-icon.-ebay::before {
1729
- background-color: #e63438; }
1730
- div[data-component="social-icons"] .-icon.-imdb::before {
1731
- background-color: #e4ac3e; }
1732
- div[data-component="social-icons"] .-icon.-stayfriends::before {
1733
- background-color: #ff8d08; }
1734
- div[data-component="social-icons"] .-icon.-residentadvisor::before {
1735
- background-color: #fffe0d; }
1736
- div[data-component="social-icons"] .-icon.-google::before {
1737
- background-color: #0058c6; }
1738
- div[data-component="social-icons"] .-icon.-yandex::before {
1739
- background-color: #e62922; }
1740
- div[data-component="social-icons"] .-icon.-sharethis::before {
1741
- background-color: #1c6e01; }
1742
- div[data-component="social-icons"] .-icon.-bandcamp::before {
1743
- background-color: #609aa9; }
1744
- div[data-component="social-icons"] .-empty {
1745
- text-decoration: none;
1746
- position: relative; }
1747
- div[data-component="social-icons"] .-empty::after {
1748
- content: " ";
1749
- width: 30px;
1750
- height: 30px;
1751
- position: absolute;
1752
- top: 50%;
1753
- left: 50%;
1754
- -webkit-transform: translate(-50%, -50%);
1755
- -ms-transform: translate(-50%, -50%);
1756
- transform: translate(-50%, -50%);
1757
- border: 1px dashed #e2e4e7;
1758
- border-radius: 50%; }
1759
- div[data-component="social-icons"] .-empty i {
1760
- position: absolute;
1761
- top: calc( 50% + 1px);
1762
- left: 50%;
1763
- -webkit-transform: translate(-50%, -50%);
1764
- -ms-transform: translate(-50%, -50%);
1765
- transform: translate(-50%, -50%);
1766
- font-size: 18px; }
1767
- div[data-component="social-icons"] .-empty:hover::after {
1768
- border: 1px solid #e2e4e7; }
1769
- div[data-component="social-icons"] button {
1770
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1771
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1772
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1773
- width: 30px;
1774
- height: 30px;
1775
- -webkit-box-sizing: border-box;
1776
- box-sizing: border-box;
1777
- border-radius: 50%;
1778
- border: 1px solid #e2e4e7;
1779
- background-color: rgba(255, 255, 255, 0.7);
1780
- position: absolute;
1781
- right: -40px;
1782
- top: 5px;
1783
- /* ---- hover ---- */ }
1784
- div[data-component="social-icons"] button[data-empty="true"] {
1785
- right: -30px; }
1786
- div[data-component="social-icons"] button svg {
1787
- position: absolute;
1788
- top: calc( 50% + 1px);
1789
- left: 50%;
1790
- -webkit-transform: translate(-50%, -50%);
1791
- -ms-transform: translate(-50%, -50%);
1792
- transform: translate(-50%, -50%);
1793
- display: inherit; }
1794
- div[data-component="social-icons"] button svg path {
1795
- -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
1796
- -o-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
1797
- transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
1798
- color: #555d67; }
1799
- div[data-component="social-icons"] button:hover {
1800
- border: 1px solid rgba(25, 30, 35, 0.5);
1801
- background-color: white; }
1802
- div[data-component="social-icons"] button:hover svg path {
1803
- color: #191e23; }
1804
-
1805
- /**
1806
- * Social icons menu
1807
- */
1808
- .editor-block-social-icons-menu__content .components-popover__content {
1809
- padding: 7px; }
1810
- .editor-block-social-icons-menu__content .components-popover__content .editor-block-settings-menu__separator {
1811
- border-top: 1px solid #e2e4e7;
1812
- margin: 8px -7px; }
1813
-
1814
- span[data-component="is-premium"] {
1815
- cursor: not-allowed;
1816
- position: relative;
1817
- -webkit-user-select: none;
1818
- -moz-user-select: none;
1819
- -ms-user-select: none;
1820
- user-select: none;
1821
- width: 100%;
1822
- display: block; }
1823
- span[data-component="is-premium"]::after {
1824
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1825
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1826
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
1827
- content: " ";
1828
- width: 100%;
1829
- height: 100%;
1830
- position: absolute;
1831
- left: 0;
1832
- top: 0;
1833
- background-color: white;
1834
- z-index: 1;
1835
- opacity: 0; }
1836
- span[data-component="is-premium"][data-plan] p.feature-label-notice {
1837
- width: 100%;
1838
- height: auto;
1839
- z-index: 2;
1840
- position: absolute;
1841
- top: 50%;
1842
- left: 0;
1843
- -webkit-transform: translateY(-50%);
1844
- -ms-transform: translateY(-50%);
1845
- transform: translateY(-50%);
1846
- -webkit-backface-visibility: hidden;
1847
- color: #faae22;
1848
- font-weight: 500;
1849
- font-size: 15px;
1850
- text-align: center;
1851
- opacity: 0; }
1852
- span[data-component="is-premium"][data-plan] p.feature-label-notice i {
1853
- text-transform: uppercase;
1854
- font-style: normal; }
1855
- span[data-component="is-premium"]:hover::after {
1856
- opacity: 0.9; }
1857
- span[data-component="is-premium"]:hover p.feature-label-notice {
1858
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
1859
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
1860
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
1861
- opacity: 1; }
1862
-
1863
- /**
1864
- * Background Types
1865
- *
1866
- * @since 1.0.0
1867
- */
1868
- div[data-component="block-background"] {
1869
- position: absolute;
1870
- top: 0;
1871
- left: 0;
1872
- width: 100%;
1873
- height: 100%;
1874
- z-index: 0;
1875
- /**
1876
- * Color
1877
- *
1878
- * @since 1.0.0
1879
- */
1880
- /**
1881
- * Image
1882
- *
1883
- * @since 1.0.0
1884
- */
1885
- /**
1886
- * Gallery.
1887
- *
1888
- * @since 1.0.0
1889
- */
1890
- /**
1891
- * Video
1892
- *
1893
- * @since 1.0.0
1894
- */ }
1895
- div[data-component="block-background"] .color-element {
1896
- position: absolute;
1897
- top: 0;
1898
- left: 0;
1899
- width: 100%;
1900
- height: 100%;
1901
- z-index: 1;
1902
- background-position: center;
1903
- background-size: cover; }
1904
- div[data-component="block-background"] .image-element {
1905
- position: absolute;
1906
- top: 0;
1907
- left: 0;
1908
- width: 100%;
1909
- height: 100%;
1910
- z-index: 1;
1911
- background-position: center;
1912
- background-size: cover; }
1913
- div[data-component="block-background"] .image-element > span {
1914
- position: absolute;
1915
- top: 0;
1916
- left: 0;
1917
- width: 100%;
1918
- height: 100%;
1919
- z-index: 2;
1920
- background-position: center;
1921
- background-size: cover; }
1922
- div[data-component="block-background"] .image-element > span .components-spinner {
1923
- background-color: #ffffff;
1924
- opacity: 1;
1925
- margin: 10px; }
1926
- div[data-component="block-background"] .image-element > span .components-spinner::before {
1927
- background-color: #555d67; }
1928
- div[data-component="block-background"] .image-element > span:nth-of-type(2) {
1929
- z-index: 1; }
1930
- div[data-component="block-background"] .gallery-element {
1931
- position: absolute;
1932
- top: 0;
1933
- left: 0;
1934
- width: 100%;
1935
- height: 100%;
1936
- z-index: 1;
1937
- background-position: center;
1938
- background-size: cover; }
1939
- div[data-component="block-background"] .gallery-element > div {
1940
- width: 100%;
1941
- height: 100%; }
1942
- div[data-component="block-background"] .gallery-element > div:not(.flickity-enabled) {
1943
- visibility: hidden;
1944
- display: none; }
1945
- div[data-component="block-background"] .gallery-element > div .flickity-viewport {
1946
- width: 100%;
1947
- height: 100% !important; }
1948
- div[data-component="block-background"] .gallery-element > div .flickity-slider {
1949
- width: 100%;
1950
- height: 100% !important;
1951
- -webkit-transform: none !important;
1952
- -ms-transform: none !important;
1953
- transform: none !important; }
1954
- div[data-component="block-background"] .gallery-element > div span {
1955
- -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
1956
- -o-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
1957
- transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
1958
- width: 100%;
1959
- height: 100%;
1960
- left: 0 !important;
1961
- opacity: 0; }
1962
- div[data-component="block-background"] .gallery-element > div span.is-selected {
1963
- opacity: 1; }
1964
- div[data-component="block-background"] .gallery-element > div span img {
1965
- display: inherit;
1966
- -o-object-fit: cover;
1967
- object-fit: cover;
1968
- width: 100%;
1969
- height: 100%; }
1970
- div[data-component="block-background"] .video-element {
1971
- position: absolute;
1972
- top: 0;
1973
- left: 0;
1974
- width: 100%;
1975
- height: 100%;
1976
- z-index: 1;
1977
- background-position: center;
1978
- background-size: cover; }
1979
- div[data-component="block-background"] .video-element video {
1980
- position: absolute;
1981
- top: 0;
1982
- left: 0;
1983
- width: 100%;
1984
- height: 100%;
1985
- z-index: 1;
1986
- -o-object-fit: cover;
1987
- object-fit: cover; }
1988
-
1989
- /**
1990
- * Background Overlayer
1991
- *
1992
- * @since 1.0.0
1993
- */
1994
- div[data-component="block-background-overlayer"] {
1995
- position: absolute;
1996
- top: 0;
1997
- left: 0;
1998
- width: 100%;
1999
- height: 100%;
2000
- z-index: 1; }
2001
- /**
2002
- * keyframes
2003
- *
2004
- * @since 1.0.0
2005
- * @version 1.0.0
2006
- */
2007
- /**
2008
- * Spinner
2009
- *
2010
- * @since 1.0.0
2011
- * @version 1.0.0
2012
- */
2013
- @-webkit-keyframes pt_theme__loadingSpinner {
2014
- 0% {
2015
- -webkit-transform: rotate(0deg);
2016
- transform: rotate(0deg); }
2017
- 100% {
2018
- -webkit-transform: rotate(360deg);
2019
- transform: rotate(360deg); } }
2020
-
2021
- @keyframes pt_theme__loadingSpinner {
2022
- 0% {
2023
- -webkit-transform: rotate(0deg);
2024
- transform: rotate(0deg); }
2025
- 100% {
2026
- -webkit-transform: rotate(360deg);
2027
- transform: rotate(360deg); } }
2028
-
2029
- /**
2030
- * Inherit Typography
2031
- */
2032
- /**
2033
- * Media
2034
- *
2035
- * @since 1.0.0
2036
- * @version 1.0.0
2037
- */
2038
- /**
2039
- * Media
2040
- *
2041
- * @since 1.0.0
2042
- * @version 1.0.0
2043
- */
2044
- /**
2045
- * Colors
2046
- */
2047
- /**
2048
- * Media Queryes
2049
- */
2050
- main[data-block="pixelthrone/comingsoon--temp-05"] {
2051
- height: 100vh;
2052
- width: 100%;
2053
- position: relative;
2054
- -webkit-box-sizing: border-box;
2055
- box-sizing: border-box;
2056
- display: -ms-flexbox;
2057
- display: flex;
2058
- -ms-flex-direction: column;
2059
- flex-direction: column;
2060
- -ms-flex-wrap: nowrap;
2061
- flex-wrap: nowrap;
2062
- -ms-flex-pack: justify;
2063
- justify-content: space-between;
2064
- -ms-flex-align: center;
2065
- align-items: center;
2066
- /**
2067
- * Middle
2068
- */
2069
- /**
2070
- * Bottom
2071
- */ }
2072
- @media only screen and (max-width: 767px) {
2073
- main[data-block="pixelthrone/comingsoon--temp-05"] {
2074
- -ms-flex-direction: column-reverse;
2075
- flex-direction: column-reverse;
2076
- -ms-flex-pack: start;
2077
- justify-content: flex-start;
2078
- -ms-flex-align: start;
2079
- align-items: flex-start; } }
2080
- main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper {
2081
- position: relative;
2082
- z-index: 10;
2083
- text-align: center;
2084
- -webkit-box-sizing: border-box;
2085
- box-sizing: border-box;
2086
- padding-top: 50px; }
2087
- @media only screen and (max-width: 767px) {
2088
- main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper {
2089
- text-align: left;
2090
- padding: 30px 25px 40px 25px; } }
2091
- main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper h1 {
2092
- padding: 0;
2093
- margin: 0; }
2094
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper {
2095
- position: relative;
2096
- z-index: 10;
2097
- display: -ms-flexbox;
2098
- display: flex;
2099
- -ms-flex-direction: row;
2100
- flex-direction: row;
2101
- -ms-flex-wrap: nowrap;
2102
- flex-wrap: nowrap;
2103
- -ms-flex-pack: justify;
2104
- justify-content: space-between;
2105
- -ms-flex-align: end;
2106
- align-items: flex-end;
2107
- -webkit-box-sizing: border-box;
2108
- box-sizing: border-box;
2109
- width: 100%;
2110
- padding: 0 50px;
2111
- padding-bottom: 30px; }
2112
- @media only screen and (max-width: 767px) {
2113
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper {
2114
- text-align: left;
2115
- padding: 30px 25px 0 25px;
2116
- -ms-flex-positive: 1;
2117
- flex-grow: 1;
2118
- -ms-flex-direction: column;
2119
- flex-direction: column;
2120
- -ms-flex-pack: start;
2121
- justify-content: flex-start;
2122
- -ms-flex-align: start;
2123
- align-items: flex-start; } }
2124
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) img {
2125
- margin-bottom: 10px; }
2126
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) h3 {
2127
- padding: 0;
2128
- margin: 0;
2129
- color: inherit;
2130
- margin-top: 10px; }
2131
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p {
2132
- padding: 0;
2133
- margin: 10px 0 0 0;
2134
- color: inherit; }
2135
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p.contacts_wrapper {
2136
- margin-top: 10px; }
2137
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p.copyright_wrapper {
2138
- margin-top: 20px; }
2139
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper {
2140
- width: auto;
2141
- margin-top: 10px;
2142
- padding-right: 40px; }
2143
- @media only screen and (max-width: 767px) {
2144
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper {
2145
- margin-left: -15px; } }
2146
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper div[data-component="social-icons"] {
2147
- -ms-flex-pack: center;
2148
- justify-content: center;
2149
- width: auto; }
2150
- main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper div[data-component="social-icons"] button[data-empty="true"] {
2151
- right: -40px; }
1
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-02"]{height:100vh;width:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;padding-bottom:15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper{position:relative;z-index:10}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper>button{margin:0 auto 0 auto}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper>button img{display:inherit}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper>img{margin:0 auto 0 auto;display:inherit}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper>img{max-width:80vw !important;height:auto}}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper{display:block;width:100%;padding-top:30px;text-align:center}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper{padding:20px 50px 0 50px;-webkit-box-sizing:border-box;box-sizing:border-box}}main[data-block="pixelthrone/comingsoon--temp-02"] .brand__wrapper .additional-text__wrapper p{padding:0;margin:0;font-size:1.2em !important}main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper{position:absolute;bottom:30px;left:0;width:100%;text-align:center;padding:0 30px;margin:0;z-index:10;-webkit-box-sizing:border-box;box-sizing:border-box}main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper p{padding:0;margin:0}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-02"] .copyright__wrapper{bottom:15px}}
2
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-01"]{height:100vh;width:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:center;align-items:center;padding-bottom:15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container{position:relative;width:100%;max-width:1170px;padding:0 50px;display:grid;grid-gap:10px 40px;grid-template-rows:auto auto auto;grid-template-columns:1fr 2fr 1fr;z-index:2;-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container{grid-template-rows:auto auto auto;grid-template-columns:1fr;grid-gap:10px}}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container{padding:0 30px}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper{grid-column-start:1;grid-row-start:1}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper{padding-bottom:20px}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-left-align{margin-right:auto}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-center-align{margin:0 auto}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper button.-right-align{margin-left:auto}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img{max-width:230px}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-left-align{margin-right:auto}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-center-align{margin:0 auto}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img.-right-align{margin-left:auto}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper img{margin:0 !important}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper>*{display:block}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .brand__wrapper>*{margin:0}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper{grid-column-start:1;grid-row-start:3}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper h1{padding:0;margin:0;color:inherit}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper{grid-column-start:1;grid-row-start:2}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .title__wrapper h1{padding-bottom:5px}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper{grid-column-start:2;grid-row-start:2}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper h2{padding:0;margin:0;color:inherit}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .subtitle__wrapper{grid-column-start:1;grid-row-start:3}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper{grid-column-start:2;grid-row-start:3}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper{grid-column-start:1;grid-row-start:4}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p{padding:0;margin:0}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright{margin-top:30px;margin-bottom:30px;opacity:0.6;font-size:0.8em !important}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright{margin-top:15px}}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright{margin-bottom:15px}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright a{color:inherit;font-weight:500;text-decoration:none;border-bottom:1px solid;padding-bottom:2px}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .description__wrapper p.copyright a:hover{border-bottom:none}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper{grid-column-start:3;grid-row-start:3}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper{grid-column-start:1;grid-row-start:5;padding-bottom:10px;margin-left:-15px}}main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper>div{margin-left:auto;-ms-flex-pack:end;justify-content:flex-end}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-01"] .content__container .social__wrapper>div{-ms-flex-pack:start;justify-content:flex-start}}
3
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-03"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-03"]{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start}}main[data-block="pixelthrone/comingsoon--temp-03"] .brand__wrapper{z-index:10;position:absolute;top:30px;right:30px}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-03"] .brand__wrapper{right:auto;left:auto;position:relative;padding-left:30px;margin-bottom:60px}}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper{position:relative;z-index:10;padding-left:100px;-webkit-box-sizing:content-box;box-sizing:content-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper{padding-left:60px}}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper{padding-left:30px;padding-right:15px;-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper .social__wrapper{display:block;height:60px;width:auto;margin-left:-10px}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper .social__wrapper button[data-empty="true"]{right:-40px}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper h1{padding:0;margin:0;color:inherit;width:100%}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper h3{padding:0;margin:0;color:inherit;margin-top:10px;width:100%}main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper p{padding:0;margin:50px 0 0 0;color:inherit;width:100%}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-03"] .content__wrapper p{padding-bottom:15px;-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:end;align-items:flex-end}}
4
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-04"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper{position:relative;z-index:10;text-align:center;padding-top:30px}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper{padding-left:20px;padding-right:20px;padding-top:20px}}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper button{margin:0 auto 0 auto}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper button img{margin-bottom:40px;display:inherit}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper>img{margin:0 auto 0 auto;margin-bottom:40px;display:inherit}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper h3{padding:0;margin:0;color:inherit;margin-bottom:5px}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper h1{padding:0;margin:0;color:inherit}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper{display:block;width:100%;padding-top:20px}main[data-block="pixelthrone/comingsoon--temp-04"] .middle-content__wrapper .additional-text__wrapper p{padding:0;margin:0;font-size:1.2em !important}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper{position:relative;z-index:10;padding-bottom:30px;text-align:center}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper{padding-bottom:20px}}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper h3{padding:0;margin:0;color:inherit;margin-top:10px}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper{width:auto;margin-top:10px}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper div[data-component="social-icons"]{-ms-flex-pack:center;justify-content:center;width:auto}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper .social__wrapper div[data-component="social-icons"] button[data-empty="true"]{right:40px}main[data-block="pixelthrone/comingsoon--temp-04"] .bottom-content__wrapper p{padding:0;margin:30px 0 0 0;color:inherit}
5
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@font-face{font-family:'Socicon';src:url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg");src:url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.eot?cthkrg#iefix") format("embedded-opentype"),url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff2?cthkrg") format("woff2"),url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.ttf?cthkrg") format("truetype"),url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.woff?cthkrg") format("woff"),url("https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/Socicon.svg?cthkrg#Socicon") format("svg");font-weight:normal;font-style:normal}[class^="socicon-"],[class*=" socicon-"]{font-family:'Socicon' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.socicon-internet:before{content:"\e957"}.socicon-moddb:before{content:"\e94b"}.socicon-indiedb:before{content:"\e94c"}.socicon-traxsource:before{content:"\e94d"}.socicon-gamefor:before{content:"\e94e"}.socicon-pixiv:before{content:"\e94f"}.socicon-myanimelist:before{content:"\e950"}.socicon-blackberry:before{content:"\e951"}.socicon-wickr:before{content:"\e952"}.socicon-spip:before{content:"\e953"}.socicon-napster:before{content:"\e954"}.socicon-beatport:before{content:"\e955"}.socicon-hackerone:before{content:"\e956"}.socicon-hackernews:before{content:"\e946"}.socicon-smashwords:before{content:"\e947"}.socicon-kobo:before{content:"\e948"}.socicon-bookbub:before{content:"\e949"}.socicon-mailru:before{content:"\e94a"}.socicon-gitlab:before{content:"\e945"}.socicon-instructables:before{content:"\e944"}.socicon-portfolio:before{content:"\e943"}.socicon-codered:before{content:"\e940"}.socicon-origin:before{content:"\e941"}.socicon-nextdoor:before{content:"\e942"}.socicon-udemy:before{content:"\e93f"}.socicon-livemaster:before{content:"\e93e"}.socicon-crunchbase:before{content:"\e93b"}.socicon-homefy:before{content:"\e93c"}.socicon-calendly:before{content:"\e93d"}.socicon-realtor:before{content:"\e90f"}.socicon-tidal:before{content:"\e910"}.socicon-qobuz:before{content:"\e911"}.socicon-natgeo:before{content:"\e912"}.socicon-mastodon:before{content:"\e913"}.socicon-unsplash:before{content:"\e914"}.socicon-homeadvisor:before{content:"\e915"}.socicon-angieslist:before{content:"\e916"}.socicon-codepen:before{content:"\e917"}.socicon-slack:before{content:"\e918"}.socicon-openaigym:before{content:"\e919"}.socicon-logmein:before{content:"\e91a"}.socicon-fiverr:before{content:"\e91b"}.socicon-gotomeeting:before{content:"\e91c"}.socicon-aliexpress:before{content:"\e91d"}.socicon-guru:before{content:"\e91e"}.socicon-appstore:before{content:"\e91f"}.socicon-homes:before{content:"\e920"}.socicon-zoom:before{content:"\e921"}.socicon-alibaba:before{content:"\e922"}.socicon-craigslist:before{content:"\e923"}.socicon-wix:before{content:"\e924"}.socicon-redfin:before{content:"\e925"}.socicon-googlecalendar:before{content:"\e926"}.socicon-shopify:before{content:"\e927"}.socicon-freelancer:before{content:"\e928"}.socicon-seedrs:before{content:"\e929"}.socicon-bing:before{content:"\e92a"}.socicon-doodle:before{content:"\e92b"}.socicon-bonanza:before{content:"\e92c"}.socicon-squarespace:before{content:"\e92d"}.socicon-toptal:before{content:"\e92e"}.socicon-gust:before{content:"\e92f"}.socicon-ask:before{content:"\e930"}.socicon-trulia:before{content:"\e931"}.socicon-loomly:before{content:"\e932"}.socicon-ghost:before{content:"\e933"}.socicon-upwork:before{content:"\e934"}.socicon-fundable:before{content:"\e935"}.socicon-booking:before{content:"\e936"}.socicon-googlemaps:before{content:"\e937"}.socicon-zillow:before{content:"\e938"}.socicon-niconico:before{content:"\e939"}.socicon-toneden:before{content:"\e93a"}.socicon-augment:before{content:"\e908"}.socicon-bitbucket:before{content:"\e909"}.socicon-fyuse:before{content:"\e90a"}.socicon-yt-gaming:before{content:"\e90b"}.socicon-sketchfab:before{content:"\e90c"}.socicon-mobcrush:before{content:"\e90d"}.socicon-microsoft:before{content:"\e90e"}.socicon-pandora:before{content:"\e907"}.socicon-messenger:before{content:"\e906"}.socicon-gamewisp:before{content:"\e905"}.socicon-bloglovin:before{content:"\e904"}.socicon-tunein:before{content:"\e903"}.socicon-gamejolt:before{content:"\e901"}.socicon-trello:before{content:"\e902"}.socicon-spreadshirt:before{content:"\e900"}.socicon-500px:before{content:"\e000"}.socicon-8tracks:before{content:"\e001"}.socicon-airbnb:before{content:"\e002"}.socicon-alliance:before{content:"\e003"}.socicon-amazon:before{content:"\e004"}.socicon-amplement:before{content:"\e005"}.socicon-android:before{content:"\e006"}.socicon-angellist:before{content:"\e007"}.socicon-apple:before{content:"\e008"}.socicon-appnet:before{content:"\e009"}.socicon-baidu:before{content:"\e00a"}.socicon-bandcamp:before{content:"\e00b"}.socicon-battlenet:before{content:"\e00c"}.socicon-mixer:before{content:"\e00d"}.socicon-bebee:before{content:"\e00e"}.socicon-bebo:before{content:"\e00f"}.socicon-behance:before{content:"\e010"}.socicon-blizzard:before{content:"\e011"}.socicon-blogger:before{content:"\e012"}.socicon-buffer:before{content:"\e013"}.socicon-chrome:before{content:"\e014"}.socicon-coderwall:before{content:"\e015"}.socicon-curse:before{content:"\e016"}.socicon-dailymotion:before{content:"\e017"}.socicon-deezer:before{content:"\e018"}.socicon-delicious:before{content:"\e019"}.socicon-deviantart:before{content:"\e01a"}.socicon-diablo:before{content:"\e01b"}.socicon-digg:before{content:"\e01c"}.socicon-discord:before{content:"\e01d"}.socicon-disqus:before{content:"\e01e"}.socicon-douban:before{content:"\e01f"}.socicon-draugiem:before{content:"\e020"}.socicon-dribbble:before{content:"\e021"}.socicon-drupal:before{content:"\e022"}.socicon-ebay:before{content:"\e023"}.socicon-ello:before{content:"\e024"}.socicon-endomodo:before{content:"\e025"}.socicon-envato:before{content:"\e026"}.socicon-etsy:before{content:"\e027"}.socicon-facebook:before{content:"\e028"}.socicon-feedburner:before{content:"\e029"}.socicon-filmweb:before{content:"\e02a"}.socicon-firefox:before{content:"\e02b"}.socicon-flattr:before{content:"\e02c"}.socicon-flickr:before{content:"\e02d"}.socicon-formulr:before{content:"\e02e"}.socicon-forrst:before{content:"\e02f"}.socicon-foursquare:before{content:"\e030"}.socicon-friendfeed:before{content:"\e031"}.socicon-github:before{content:"\e032"}.socicon-goodreads:before{content:"\e033"}.socicon-google:before{content:"\e034"}.socicon-googlescholar:before{content:"\e035"}.socicon-googlegroups:before{content:"\e036"}.socicon-googlephotos:before{content:"\e037"}.socicon-googleplus:before{content:"\e038"}.socicon-grooveshark:before{content:"\e039"}.socicon-hackerrank:before{content:"\e03a"}.socicon-hearthstone:before{content:"\e03b"}.socicon-hellocoton:before{content:"\e03c"}.socicon-heroes:before{content:"\e03d"}.socicon-smashcast:before{content:"\e03e"}.socicon-horde:before{content:"\e03f"}.socicon-houzz:before{content:"\e040"}.socicon-icq:before{content:"\e041"}.socicon-identica:before{content:"\e042"}.socicon-imdb:before{content:"\e043"}.socicon-instagram:before{content:"\e044"}.socicon-issuu:before{content:"\e045"}.socicon-istock:before{content:"\e046"}.socicon-itunes:before{content:"\e047"}.socicon-keybase:before{content:"\e048"}.socicon-lanyrd:before{content:"\e049"}.socicon-lastfm:before{content:"\e04a"}.socicon-line:before{content:"\e04b"}.socicon-linkedin:before{content:"\e04c"}.socicon-livejournal:before{content:"\e04d"}.socicon-lyft:before{content:"\e04e"}.socicon-macos:before{content:"\e04f"}.socicon-mail:before{content:"\e050"}.socicon-medium:before{content:"\e051"}.socicon-meetup:before{content:"\e052"}.socicon-mixcloud:before{content:"\e053"}.socicon-modelmayhem:before{content:"\e054"}.socicon-mumble:before{content:"\e055"}.socicon-myspace:before{content:"\e056"}.socicon-newsvine:before{content:"\e057"}.socicon-nintendo:before{content:"\e058"}.socicon-npm:before{content:"\e059"}.socicon-odnoklassniki:before{content:"\e05a"}.socicon-openid:before{content:"\e05b"}.socicon-opera:before{content:"\e05c"}.socicon-outlook:before{content:"\e05d"}.socicon-overwatch:before{content:"\e05e"}.socicon-patreon:before{content:"\e05f"}.socicon-paypal:before{content:"\e060"}.socicon-periscope:before{content:"\e061"}.socicon-persona:before{content:"\e062"}.socicon-pinterest:before{content:"\e063"}.socicon-play:before{content:"\e064"}.socicon-player:before{content:"\e065"}.socicon-playstation:before{content:"\e066"}.socicon-pocket:before{content:"\e067"}.socicon-qq:before{content:"\e068"}.socicon-quora:before{content:"\e069"}.socicon-raidcall:before{content:"\e06a"}.socicon-ravelry:before{content:"\e06b"}.socicon-reddit:before{content:"\e06c"}.socicon-renren:before{content:"\e06d"}.socicon-researchgate:before{content:"\e06e"}.socicon-residentadvisor:before{content:"\e06f"}.socicon-reverbnation:before{content:"\e070"}.socicon-rss:before{content:"\e071"}.socicon-sharethis:before{content:"\e072"}.socicon-skype:before{content:"\e073"}.socicon-slideshare:before{content:"\e074"}.socicon-smugmug:before{content:"\e075"}.socicon-snapchat:before{content:"\e076"}.socicon-songkick:before{content:"\e077"}.socicon-soundcloud:before{content:"\e078"}.socicon-spotify:before{content:"\e079"}.socicon-stackexchange:before{content:"\e07a"}.socicon-stackoverflow:before{content:"\e07b"}.socicon-starcraft:before{content:"\e07c"}.socicon-stayfriends:before{content:"\e07d"}.socicon-steam:before{content:"\e07e"}.socicon-storehouse:before{content:"\e07f"}.socicon-strava:before{content:"\e080"}.socicon-streamjar:before{content:"\e081"}.socicon-stumbleupon:before{content:"\e082"}.socicon-swarm:before{content:"\e083"}.socicon-teamspeak:before{content:"\e084"}.socicon-teamviewer:before{content:"\e085"}.socicon-technorati:before{content:"\e086"}.socicon-telegram:before{content:"\e087"}.socicon-tripadvisor:before{content:"\e088"}.socicon-tripit:before{content:"\e089"}.socicon-triplej:before{content:"\e08a"}.socicon-tumblr:before{content:"\e08b"}.socicon-twitch:before{content:"\e08c"}.socicon-twitter:before{content:"\e08d"}.socicon-uber:before{content:"\e08e"}.socicon-ventrilo:before{content:"\e08f"}.socicon-viadeo:before{content:"\e090"}.socicon-viber:before{content:"\e091"}.socicon-viewbug:before{content:"\e092"}.socicon-vimeo:before{content:"\e093"}.socicon-vine:before{content:"\e094"}.socicon-vkontakte:before{content:"\e095"}.socicon-warcraft:before{content:"\e096"}.socicon-wechat:before{content:"\e097"}.socicon-weibo:before{content:"\e098"}.socicon-whatsapp:before{content:"\e099"}.socicon-wikipedia:before{content:"\e09a"}.socicon-windows:before{content:"\e09b"}.socicon-wordpress:before{content:"\e09c"}.socicon-wykop:before{content:"\e09d"}.socicon-xbox:before{content:"\e09e"}.socicon-xing:before{content:"\e09f"}.socicon-yahoo:before{content:"\e0a0"}.socicon-yammer:before{content:"\e0a1"}.socicon-yandex:before{content:"\e0a2"}.socicon-yelp:before{content:"\e0a3"}.socicon-younow:before{content:"\e0a4"}.socicon-youtube:before{content:"\e0a5"}.socicon-zapier:before{content:"\e0a6"}.socicon-zerply:before{content:"\e0a7"}.socicon-zomato:before{content:"\e0a8"}.socicon-zynga:before{content:"\e0a9"}div[data-component="social-icons"]{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center;position:relative;min-height:42px}div[data-component="social-icons"] .-icon{color:inherit;position:relative;width:42px;height:42px;font-size:100%;margin:0;line-height:0;display:block;vertical-align:middle}div[data-component="social-icons"] .-icon i{-webkit-transition:all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);-o-transition:all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);transition:all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);color:inherit;font-size:24px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}div[data-component="social-icons"] .-icon::before{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";position:absolute;width:50%;height:50%;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);opacity:0;border-radius:50%}div[data-component="social-icons"] .-icon:hover i{color:white}div[data-component="social-icons"] .-icon:hover::before{width:110%;height:110%;opacity:1}div[data-component="social-icons"] .-icon.-modelmayhem::before{background-color:#000000}div[data-component="social-icons"] .-icon.-mixcloud::before{background-color:#000000}div[data-component="social-icons"] .-icon.-npm::before{background-color:#cb3837}div[data-component="social-icons"] .-icon.-drupal::before{background-color:#22a9e0}div[data-component="social-icons"] .-icon.-swarm::before{background-color:#ff9a1c}div[data-component="social-icons"] .-icon.-istock::before{background-color:#040404}div[data-component="social-icons"] .-icon.-yammer::before{background-color:#0073c6}div[data-component="social-icons"] .-icon.-ello::before{background-color:#000000}div[data-component="social-icons"] .-icon.-stackoverflow::before{background-color:#f47f25}div[data-component="social-icons"] .-icon.-triplej::before{background-color:#e73429}div[data-component="social-icons"] .-icon.-houzz::before{background-color:#7bc144}div[data-component="social-icons"] .-icon.-rss::before{background-color:#fc762b}div[data-component="social-icons"] .-icon.-paypal::before{background-color:#009cdd}div[data-component="social-icons"] .-icon.-odnoklassniki::before{background-color:#f68222}div[data-component="social-icons"] .-icon.-airbnb::before{background-color:#ff5b60}div[data-component="social-icons"] .-icon.-periscope::before{background-color:#2ba4c6}div[data-component="social-icons"] .-icon.-outlook::before{background-color:#0074c6}div[data-component="social-icons"] .-icon.-coderwall::before{background-color:#343131}div[data-component="social-icons"] .-icon.-tripadvisor::before{background-color:#1e882f}div[data-component="social-icons"] .-icon.-goodreads::before{background-color:#463020}div[data-component="social-icons"] .-icon.-tripit::before{background-color:#f38c07}div[data-component="social-icons"] .-icon.-lanyrd::before{background-color:#133359}div[data-component="social-icons"] .-icon.-slideshare::before{background-color:#007ab5}div[data-component="social-icons"] .-icon.-buffer::before{background-color:#333333}div[data-component="social-icons"] .-icon.-disqus::before{background-color:#239eff}div[data-component="social-icons"] .-icon.-vkontakte::before{background-color:#4b76a3}div[data-component="social-icons"] .-icon.-whatsapp::before{background-color:#4dc247}div[data-component="social-icons"] .-icon.-patreon::before{background-color:#e8481d}div[data-component="social-icons"] .-icon.-storehouse::before{background-color:#231f20}div[data-component="social-icons"] .-icon.-pocket::before{background-color:#ee4255}div[data-component="social-icons"] .-icon.-mail::before{background-color:#008299}div[data-component="social-icons"] .-icon.-blogger::before{background-color:#f89239}div[data-component="social-icons"] .-icon.-technorati::before{background-color:#3baf04}div[data-component="social-icons"] .-icon.-reddit::before{background-color:#ff4706}div[data-component="social-icons"] .-icon.-dribbble::before{background-color:#f36898}div[data-component="social-icons"] .-icon.-stumbleupon::before{background-color:#ec4a26}div[data-component="social-icons"] .-icon.-digg::before{background-color:#165790}div[data-component="social-icons"] .-icon.-envato::before{background-color:#81b342}div[data-component="social-icons"] .-icon.-behance::before{background-color:#006aff}div[data-component="social-icons"] .-icon.-delicious::before{background-color:#1d96ff}div[data-component="social-icons"] .-icon.-deviantart::before{background-color:#04cc48}div[data-component="social-icons"] .-icon.-forrst::before{background-color:#4fb54b}div[data-component="social-icons"] .-icon.-play::before{background-color:#0070c0}div[data-component="social-icons"] .-icon.-zerply::before{background-color:#9dbb7a}div[data-component="social-icons"] .-icon.-wikipedia::before{background-color:#333333}div[data-component="social-icons"] .-icon.-apple::before{background-color:#aaaaaa}div[data-component="social-icons"] .-icon.-flattr::before{background-color:#fdb936}div[data-component="social-icons"] .-icon.-github::before{background-color:#323131}div[data-component="social-icons"] .-icon.-renren::before{background-color:#005fac}div[data-component="social-icons"] .-icon.-friendfeed::before{background-color:#85a9d9}div[data-component="social-icons"] .-icon.-newsvine::before{background-color:#005221}div[data-component="social-icons"] .-icon.-bebo::before{background-color:#ef1513}div[data-component="social-icons"] .-icon.-zynga::before{background-color:#f60b30}div[data-component="social-icons"] .-icon.-steam::before{background-color:#010103}div[data-component="social-icons"] .-icon.-xbox::before{background-color:#107b10}div[data-component="social-icons"] .-icon.-windows::before{background-color:#0078d7}div[data-component="social-icons"] .-icon.-qq::before{background-color:#000000}div[data-component="social-icons"] .-icon.-douban::before{background-color:#007510}div[data-component="social-icons"] .-icon.-meetup::before{background-color:#f10a05}div[data-component="social-icons"] .-icon.-playstation::before{background-color:#00338a}div[data-component="social-icons"] .-icon.-android::before{background-color:#9acc06}div[data-component="social-icons"] .-icon.-snapchat::before{background-color:#fffb0e}div[data-component="social-icons"] .-icon.-twitter::before{background-color:#55acee}div[data-component="social-icons"] .-icon.-facebook::before{background-color:#3b5998}div[data-component="social-icons"] .-icon.-googleplus::before{background-color:#dd4b39}div[data-component="social-icons"] .-icon.-pinterest::before{background-color:#cb2027}div[data-component="social-icons"] .-icon.-foursquare::before{background-color:#fa4a78}div[data-component="social-icons"] .-icon.-yahoo::before{background-color:#3f0690}div[data-component="social-icons"] .-icon.-skype::before{background-color:#00b0f0}div[data-component="social-icons"] .-icon.-yelp::before{background-color:#bf3126}div[data-component="social-icons"] .-icon.-feedburner::before{background-color:#0072c4}div[data-component="social-icons"] .-icon.-linkedin::before{background-color:#007bb5}div[data-component="social-icons"] .-icon.-viadeo::before{background-color:#f4972c}div[data-component="social-icons"] .-icon.-xing::before{background-color:#005d5e}div[data-component="social-icons"] .-icon.-myspace::before{background-color:#003499}div[data-component="social-icons"] .-icon.-soundcloud::before{background-color:#fb3e0f}div[data-component="social-icons"] .-icon.-spotify::before{background-color:#1dd660}div[data-component="social-icons"] .-icon.-grooveshark::before{background-color:#f77f07}div[data-component="social-icons"] .-icon.-lastfm::before{background-color:#e41a2d}div[data-component="social-icons"] .-icon.-youtube::before{background-color:#bb0000}div[data-component="social-icons"] .-icon.-vimeo::before{background-color:#06b7ea}div[data-component="social-icons"] .-icon.-dailymotion::before{background-color:#0065dc}div[data-component="social-icons"] .-icon.-vine::before{background-color:#00b185}div[data-component="social-icons"] .-icon.-flickr::before{background-color:#0064db}div[data-component="social-icons"] .-icon.-w500px::before{background-color:#009ae5}div[data-component="social-icons"] .-icon.-instagram::before{background:-webkit-linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);background:-o-linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);background:linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%)}div[data-component="social-icons"] .-icon.-wordpress::before{background-color:#00749a}div[data-component="social-icons"] .-icon.-tumblr::before{background-color:#36465d}div[data-component="social-icons"] .-icon.-twitch::before{background-color:#6343a5}div[data-component="social-icons"] .-icon.-w8tracks::before{background-color:#0f2c4b}div[data-component="social-icons"] .-icon.-amazon::before{background-color:#231f20}div[data-component="social-icons"] .-icon.-smugmug::before{background-color:#96c73e}div[data-component="social-icons"] .-icon.-ravelry::before{background-color:#c61b4e}div[data-component="social-icons"] .-icon.-weibo::before{background-color:#fc1d26}div[data-component="social-icons"] .-icon.-baidu::before{background-color:#181fdc}div[data-component="social-icons"] .-icon.-angellist::before{background-color:#373435}div[data-component="social-icons"] .-icon.-ebay::before{background-color:#e63438}div[data-component="social-icons"] .-icon.-imdb::before{background-color:#e4ac3e}div[data-component="social-icons"] .-icon.-stayfriends::before{background-color:#ff8d08}div[data-component="social-icons"] .-icon.-residentadvisor::before{background-color:#fffe0d}div[data-component="social-icons"] .-icon.-google::before{background-color:#0058c6}div[data-component="social-icons"] .-icon.-yandex::before{background-color:#e62922}div[data-component="social-icons"] .-icon.-sharethis::before{background-color:#1c6e01}div[data-component="social-icons"] .-icon.-bandcamp::before{background-color:#609aa9}div[data-component="social-icons"] .-empty{text-decoration:none;position:relative}div[data-component="social-icons"] .-empty::after{content:" ";width:30px;height:30px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);border:1px dashed #e2e4e7;border-radius:50%}div[data-component="social-icons"] .-empty i{position:absolute;top:calc( 50% + 1px);left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);font-size:18px}div[data-component="social-icons"] .-empty:hover::before{background-color:rgba(0,0,0,0.7);width:90%;height:90%}div[data-component="social-icons"] .-empty:hover::after{border:1px solid #e2e4e7}div[data-component="social-icons"] button{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);width:30px;height:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:50%;border:1px solid #e2e4e7;background-color:rgba(255,255,255,0.7);position:absolute;right:-40px;top:5px}div[data-component="social-icons"] button[data-empty="true"]{right:-30px}div[data-component="social-icons"] button svg{position:absolute;top:calc( 50% + 1px);left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);display:inherit}div[data-component="social-icons"] button svg path{-webkit-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);color:#555d67}div[data-component="social-icons"] button:hover{border:1px solid rgba(25,30,35,0.5);background-color:#fff}div[data-component="social-icons"] button:hover svg path{color:#191e23}.editor-block-social-icons-menu__content .components-popover__content{padding:7px}.editor-block-social-icons-menu__content .components-popover__content .editor-block-settings-menu__separator{border-top:1px solid #e2e4e7;margin:8px -7px}span[data-component="is-premium"]{cursor:not-allowed;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%;display:block}span[data-component="is-premium"]::after{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);content:" ";width:100%;height:100%;position:absolute;left:0;top:0;background-color:white;z-index:1;opacity:0}span[data-component="is-premium"][data-plan] p.feature-label-notice{width:100%;height:auto;z-index:2;position:absolute;top:50%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-backface-visibility:hidden;color:#faae22;font-weight:500;font-size:15px;text-align:center;opacity:0}span[data-component="is-premium"][data-plan] p.feature-label-notice i{text-transform:uppercase;font-style:normal}span[data-component="is-premium"]:hover::after{opacity:0.9}span[data-component="is-premium"]:hover p.feature-label-notice{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;opacity:1}div[data-component="block-background"]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}div[data-component="block-background"] .color-element{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-position:center;background-size:cover}div[data-component="block-background"] .image-element{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-position:center;background-size:cover}div[data-component="block-background"] .image-element>span{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;background-position:center;background-size:cover}div[data-component="block-background"] .image-element>span .components-spinner{background-color:#ffffff;opacity:1;margin:10px}div[data-component="block-background"] .image-element>span .components-spinner::before{background-color:#555d67}div[data-component="block-background"] .image-element>span:nth-of-type(2){z-index:1}div[data-component="block-background"] .gallery-element{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-position:center;background-size:cover}div[data-component="block-background"] .gallery-element>div{width:100%;height:100%}div[data-component="block-background"] .gallery-element>div:not(.flickity-enabled){visibility:hidden;display:none}div[data-component="block-background"] .gallery-element>div .flickity-viewport{width:100%;height:100% !important}div[data-component="block-background"] .gallery-element>div .flickity-slider{width:100%;height:100% !important;-webkit-transform:none !important;transform:none !important}div[data-component="block-background"] .gallery-element>div span{-webkit-transition:all 2s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 2s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 2s cubic-bezier(0.165, 0.84, 0.44, 1);width:100%;height:100%;left:0 !important;opacity:0}div[data-component="block-background"] .gallery-element>div span.is-selected{opacity:1}div[data-component="block-background"] .gallery-element>div span img{display:inherit;-o-object-fit:cover;object-fit:cover;width:100%;height:100%}div[data-component="block-background"] .video-element{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-position:center;background-size:cover}div[data-component="block-background"] .video-element video{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;-o-object-fit:cover;object-fit:cover}div[data-component="block-background-overlayer"]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}
6
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-05"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-05"]{-ms-flex-direction:column-reverse;flex-direction:column-reverse;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}}main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper{position:relative;z-index:10;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:50px}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper{text-align:left;padding:30px 25px 40px 25px}}main[data-block="pixelthrone/comingsoon--temp-05"] .middle-content__wrapper h1{padding:0;margin:0}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper{position:relative;z-index:10;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:end;align-items:flex-end;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:0 50px;padding-bottom:30px}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper{text-align:left;padding:30px 25px 0 25px;-ms-flex-positive:1;flex-grow:1;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) img{margin-bottom:10px}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) h3{padding:0;margin:0;color:inherit;margin-top:10px}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p{padding:0;margin:10px 0 0 0;color:inherit}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p.contacts_wrapper{margin-top:10px}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(1) p.copyright_wrapper{margin-top:20px}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper{width:auto;margin-top:10px;padding-right:40px}@media only screen and (max-width: 767px){main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper{margin-left:-15px}}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper div[data-component="social-icons"]{-ms-flex-pack:center;justify-content:center;width:auto}main[data-block="pixelthrone/comingsoon--temp-05"] .bottom-content__wrapper div:nth-of-type(2) .social__wrapper div[data-component="social-icons"] button[data-empty="true"]{right:-40px}
7
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-06"] .bottom-content__wrapper p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-06"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:white;padding-left:85px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:start;align-items:flex-start}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-06"]{padding:0 30px;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-06"] .top-content__wrapper{display:none}}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper{position:relative;z-index:10;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:50px}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper .image-add-mask{display:block;background-position:center center;background-size:cover;border-radius:50%;overflow:hidden}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper img{display:block}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper h1{padding:0;margin:20px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper p{margin:30px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper .social__wrapper{width:auto;display:-ms-inline-flexbox;display:inline-flex;margin-top:20px;margin-left:-15px}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper .social__wrapper>div button[data-empty="true"]{right:-45px}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper{-ms-flex-positive:1;flex-grow:1}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper p{margin-top:20px}main[data-block="pixelthrone/comingsoon--temp-06"] .middle-content__wrapper .social__wrapper{margin-top:10px}}main[data-block="pixelthrone/comingsoon--temp-06"] .bottom-content__wrapper{position:relative;z-index:10;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:end;align-items:flex-end;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:0;padding-bottom:30px}main[data-block="pixelthrone/comingsoon--temp-06"] .bottom-content__wrapper p{padding:0;margin:0;color:inherit;font-size:75% !important;opacity:0.6}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-06"] .bottom-content__wrapper{padding-bottom:20px}main[data-block="pixelthrone/comingsoon--temp-06"] .bottom-content__wrapper p{font-size:85% !important}}
8
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content p,main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-footer p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-07"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:stretch;align-items:stretch;background-color:white}main[data-block="pixelthrone/comingsoon--temp-07"] div,main[data-block="pixelthrone/comingsoon--temp-07"] span{-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"]{-ms-flex-direction:column;flex-direction:column;padding:45vh 0 0 0;min-height:100vh;height:auto}}main[data-block="pixelthrone/comingsoon--temp-07"] .media__wrapper{width:55%;position:relative;z-index:10;padding:30px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-07"] .media__wrapper{width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] .media__wrapper{width:auto;padding:0;position:absolute;top:20px;left:20px;display:block}main[data-block="pixelthrone/comingsoon--temp-07"] .media__wrapper img{max-width:60%;height:auto}}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;position:relative;z-index:10;padding-left:100px;width:45%}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper{padding-left:50px;padding-right:20px;width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper{-ms-flex-positive:1;flex-grow:1;width:100%;padding:20px}}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content{position:relative;z-index:10;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:center;justify-content:center;-ms-flex-align:start;align-items:flex-start}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content h1{padding:0;margin:10px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content p{margin:20px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content div[data-component="social-icons"]{width:auto;display:-ms-inline-flexbox;display:inline-flex;margin-top:20px;margin-left:-15px}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content div[data-component="social-icons"] button[data-empty="true"]{right:-45px}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content{-ms-flex-pack:start;justify-content:flex-start}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content h2{margin:10px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-content div[data-component="social-icons"]{margin-top:10px}}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-footer{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;padding-bottom:30px}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-footer p{padding:0;margin:0;color:inherit;font-size:75% !important;opacity:0.6}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-footer{padding-bottom:0;padding-top:10px}main[data-block="pixelthrone/comingsoon--temp-07"] .content__wrapper .the-footer p{font-size:85% !important}}main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background-overlayer"]{max-width:55%}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background-overlayer"]{max-width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background-overlayer"]{max-width:100%;max-height:50vh}}main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background"]{max-width:55%;overflow:hidden}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background"]{max-width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-07"] div[data-component="block-background"]{max-width:100%;max-height:45vh}}
9
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content p,main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-footer p{font-family:inherit !important;font-size:inherit !important;font-weight:inherit !important;font-style:inherit !important;line-height:inherit !important;letter-spacing:inherit !important}main[data-block="pixelthrone/comingsoon--temp-08"]{height:100vh;width:100%;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:stretch;align-items:stretch;background-color:white}main[data-block="pixelthrone/comingsoon--temp-08"] div,main[data-block="pixelthrone/comingsoon--temp-08"] span{-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"]{padding:45vh 0 0 0;min-height:100vh;height:auto}}main[data-block="pixelthrone/comingsoon--temp-08"] .media__wrapper{width:55%;position:relative;z-index:10;padding:30px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:end;align-items:flex-end}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-08"] .media__wrapper{width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] .media__wrapper{width:auto;padding:0;position:absolute;top:20px;left:20px;display:block}main[data-block="pixelthrone/comingsoon--temp-08"] .media__wrapper img{max-width:60%;height:auto}}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;position:relative;z-index:10;padding-left:100px;width:45%}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper{padding-left:40px;padding-right:20px;width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper{-ms-flex-positive:1;flex-grow:1;width:100%;padding:20px}}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content{position:relative;z-index:10;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:center;justify-content:center;-ms-flex-align:start;align-items:flex-start}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content h1{padding:0;margin:10px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content p{margin:20px 0 0 0}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content div[data-component="social-icons"]{width:auto;display:-ms-inline-flexbox;display:inline-flex;margin-top:20px;margin-left:-15px}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content div[data-component="social-icons"] button[data-empty="true"]{right:-45px}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content{-ms-flex-pack:start;justify-content:flex-start}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content h2{margin:10px 0 5px 0}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-content div[data-component="social-icons"]{margin-top:10px}}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-footer{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;padding-bottom:30px}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-footer p{padding:0;margin:0;color:inherit;font-size:75% !important;opacity:0.6}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-footer{padding-bottom:0;padding-top:10px}main[data-block="pixelthrone/comingsoon--temp-08"] .content__wrapper .the-footer p{font-size:85% !important}}main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background-overlayer"]{max-width:55%;left:auto;right:0}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background-overlayer"]{max-width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background-overlayer"]{max-width:100%;max-height:45vh}}main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background"]{max-width:55%;overflow:hidden;left:auto;right:0}@media only screen and (max-width: 1024px){main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background"]{max-width:50%}}@media only screen and (max-width: 1023px){main[data-block="pixelthrone/comingsoon--temp-08"] div[data-component="block-background"]{max-width:100%;max-height:45vh}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/dist/dashboard.bundle.css CHANGED
@@ -1,85 +1 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- /**
8
- * Spinner
9
- *
10
- * @since 1.0.0
11
- * @version 1.0.0
12
- */
13
- @-webkit-keyframes pt_theme__loadingSpinner {
14
- 0% {
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg); }
17
- 100% {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg); } }
20
-
21
- @keyframes pt_theme__loadingSpinner {
22
- 0% {
23
- -webkit-transform: rotate(0deg);
24
- transform: rotate(0deg); }
25
- 100% {
26
- -webkit-transform: rotate(360deg);
27
- transform: rotate(360deg); } }
28
-
29
- /**
30
- * Inherit Typography
31
- */
32
- /**
33
- * Media
34
- *
35
- * @since 1.0.0
36
- * @version 1.0.0
37
- */
38
- /**
39
- * Media
40
- *
41
- * @since 1.0.0
42
- * @version 1.0.0
43
- */
44
- /**
45
- * Colors
46
- */
47
- /**
48
- * Media Queryes
49
- */
50
- /**
51
- * Toolbar.
52
- *
53
- * @since 1.0.0
54
- */
55
- body.post-type-coming-soon-blocks .wrap #split-page-title-action .expander {
56
- display: none; }
57
-
58
- body.post-type-coming-soon-blocks #wpbody-content .subsubsub {
59
- margin-bottom: 10px; }
60
-
61
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .search-box {
62
- display: none; }
63
-
64
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .tablenav.top {
65
- display: none; }
66
-
67
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table thead .check-column {
68
- display: none; }
69
-
70
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tbody .check-column {
71
- display: none; }
72
-
73
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tbody .column-title .post-state {
74
- display: none; }
75
-
76
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tbody .column-title .row-actions .edit, body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tbody .column-title .row-actions .classic, body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tbody .column-title .row-actions .inline {
77
- display: none; }
78
-
79
- body.post-type-coming-soon-blocks #wpbody-content #posts-filter .wp-list-table tfoot .check-column {
80
- display: none; }
81
-
82
- body.post-type-coming-soon-blocks #plugin-dashboard {
83
- margin-left: 36px;
84
- background-color: red;
85
- padding: 30px; }
1
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body #coming-soon-blocks--dashboard *{-webkit-box-sizing:border-box;box-sizing:border-box}body #coming-soon-blocks--dashboard .page-header__wrapper{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}body #coming-soon-blocks--dashboard .page-actions__wrapper{margin-top:20px}div[data-component="pages-list"]{margin-top:20px;background-color:white;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.04);box-shadow:0 1px 1px rgba(0,0,0,0.04)}div[data-component="pages-list"]>.page__wrapper{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);border-left:4px solid transparent;border-bottom:1px solid #e5e5e5;padding:10px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}div[data-component="pages-list"]>.page__wrapper:last-of-type{border-bottom:none}div[data-component="pages-list"]>.page__wrapper[data-active="true"]{border-left-color:#00a0d2;background-color:#f7fcfe;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}div[data-component="pages-list"]>.page__wrapper[data-loading="true"]{position:relative}div[data-component="pages-list"]>.page__wrapper[data-loading="true"]>.components-spinner{position:absolute;top:14px;left:95px;z-index:10}div[data-component="pages-list"]>.page__wrapper[data-loading="true"] .remove-button{opacity:0}div[data-component="pages-list"]>.page__wrapper[data-loading="true"]::before{content:" ";width:100%;height:100%;position:absolute;left:0;top:0;background-color:transparent;opacity:1;z-index:10;cursor:progress}div[data-component="pages-list"]>.page__wrapper .status__column{-ms-flex-negative:0;flex-shrink:0}div[data-component="pages-list"]>.page__wrapper .status__column input:focus{border:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}div[data-component="pages-list"]>.page__wrapper .status__column .components-base-control__field{margin-bottom:0}div[data-component="pages-list"]>.page__wrapper .actions__column{-ms-flex-negative:0;flex-shrink:0;padding-left:0;padding-right:30px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}div[data-component="pages-list"]>.page__wrapper .actions__column .remove-button>button span{display:none}div[data-component="pages-list"]>.page__wrapper .actions__column .remove-button .components-popover__content{width:auto;min-width:150px}div[data-component="pages-list"]>.page__wrapper .actions__column .remove-button .components-popover__content button{white-space:nowrap;margin-bottom:0}div[data-component="pages-list"]>.page__wrapper .actions__column .remove-button .components-popover__content button:focus{outline:none !important}div[data-component="pages-list"]>.page__wrapper .title__column{-ms-flex-positive:1;flex-grow:1}div[data-component="pages-list"]>.page__wrapper .title__column button,div[data-component="pages-list"]>.page__wrapper .title__column a{padding:0;margin:0;font-size:14px;text-decoration:none}div[data-component="pages-list"]>.page__wrapper .title__column button sub,div[data-component="pages-list"]>.page__wrapper .title__column a sub{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);margin-left:4px;opacity:0.5;color:#000;font-weight:normal}div[data-component="pages-list"]>.page__wrapper .date__column{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);opacity:0}div[data-component="pages-list"]>.page__wrapper:hover .date__column{opacity:1}div[data-component="pages-list"]>.page__wrapper:hover .title__column sub{opacity:1}div[data-component="pages-list"] .empty-list__wrapper{padding:15px;font-size:14px}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/dist/dashboard.bundle.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=28)}({0:function(e,t){e.exports=React},28:function(e,t,n){"use strict";n.r(t);n(0),n(48),n(49);const{RichText:r}=wp.editor,{Button:o}=wp.components},48:function(e,t){},49:function(e,t){}});
1
+ !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=49)}([function(e,t){e.exports=React},,,,,,,function(e,t,n){"use strict";t.a=function(e){var t=document.querySelector("#wp-admin-bar-pt_comingsoonblocks_toolbar_group");e?(t.classList.add("-coming-soon-enabled"),t.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-unlock"),t.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-lock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-unlock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.add("dashicons-lock")):(t.classList.remove("-coming-soon-enabled"),t.querySelector("a.ab-item i.dashicons-before").classList.remove("dashicons-lock"),t.querySelector("a.ab-item i.dashicons-before").classList.add("dashicons-unlock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.remove("dashicons-lock"),document.querySelector("#toplevel_page_coming-soon-blocks > a .dashicons-before").classList.add("dashicons-unlock"))}},,function(e,t,n){var o=n(32),r=n(44),a=/&(?:amp|lt|gt|quot|#39);/g,c=RegExp(a.source);e.exports=function(e){return(e=o(e))&&c.test(e)?e.replace(a,r):e}},,,,,,,,,,,,,function(e,t,n){var o=n(34).Symbol;e.exports=o},,,,,,,,,,function(e,t,n){var o=n(33);e.exports=function(e){return null==e?"":o(e)}},function(e,t,n){var o=n(22),r=n(37),a=n(38),c=n(39),i=1/0,u=o?o.prototype:void 0,l=u?u.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(a(t))return r(t,e)+"";if(c(t))return l?l.call(t):"";var n=t+"";return"0"==n&&1/t==-i?"-0":n}},function(e,t,n){var o=n(35),r="object"==typeof self&&self&&self.Object===Object&&self,a=o||r||Function("return this")();e.exports=a},function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(this,n(36))},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t){e.exports=function(e,t){for(var n=-1,o=null==e?0:e.length,r=Array(o);++n<o;)r[n]=t(e[n],n,e);return r}},function(e,t){var n=Array.isArray;e.exports=n},function(e,t,n){var o=n(40),r=n(43),a="[object Symbol]";e.exports=function(e){return"symbol"==typeof e||r(e)&&o(e)==a}},function(e,t,n){var o=n(22),r=n(41),a=n(42),c="[object Null]",i="[object Undefined]",u=o?o.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?i:c:u&&u in Object(e)?r(e):a(e)}},function(e,t,n){var o=n(22),r=Object.prototype,a=r.hasOwnProperty,c=r.toString,i=o?o.toStringTag:void 0;e.exports=function(e){var t=a.call(e,i),n=e[i];try{e[i]=void 0;var o=!0}catch(e){}var r=c.call(e);return o&&(t?e[i]=n:delete e[i]),r}},function(e,t){var n=Object.prototype.toString;e.exports=function(e){return n.call(e)}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t,n){var o=n(45)({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"});e.exports=o},function(e,t){e.exports=function(e){return function(t){return null==e?void 0:e[t]}}},,,,function(e,t,n){"use strict";n.r(t);var o=n(0),r=n(9),a=n.n(r),c=csblocks_dashboard,i=(n(72),n(73),n(7));function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),o.forEach(function(t){l(e,t,n[t])})}return e}function l(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function p(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function d(e,t,n){return t&&p(e.prototype,t),n&&p(e,n),e}function m(e,t){return!t||"object"!==s(t)&&"function"!=typeof t?b(e):t}function b(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function y(e){return(y=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function g(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&v(e,t)}function v(e,t){return(v=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var h=wp.i18n.__,O=wp.apiFetch,S=wp.components,j=S.IconButton,w=S.ToggleControl,E=S.DropdownMenu,k=S.Tooltip,P=S.Button,x=S.Spinner,R=function(e){function t(e){var n;return f(this,t),(n=m(this,y(t).call(this,e))).state={loading:!1},n}return g(t,o["Component"]),d(t,[{key:"render",value:function(){var e=this,t=this.props,n=t.thePost,o=t.activePage,r=t.changePageStatus,c=t.removePage,i=this.state.loading,u=n,l=u.id===o;return React.createElement("div",{className:"page__wrapper","data-active":l,"data-loading":i},i&&React.createElement(x,null),React.createElement("div",{className:"status__column"},React.createElement(k,{text:h(l?"Active Page":"Deactivate Page","coming-soon-blocks")},React.createElement(w,{checked:l,onChange:function(e){return r(e,u.id)}}))),React.createElement("div",{className:"actions__column"},React.createElement(j,{icon:"edit",href:a()(u.edit_link),className:"edit-button",label:h("Edit","coming-soon-blocks")}),React.createElement(E,{icon:"trash",label:"Remove Page",className:"remove-button",controls:[{title:h("Are you sure?","coming-soon-blocks"),icon:"trash",onClick:function(){c(u.id),e.setState({loading:!0})}}]})),React.createElement("div",{className:"title__column"},React.createElement(P,{isLink:!0,href:a()(u.edit_link)},""===u.title?h("(no title)","coming-soon-blocks"):u.title,React.createElement("sub",null,"draft"===u.status&&h("— Draft","coming-soon-blocks")))),React.createElement("div",{className:"date__column"},u.date))}}]),t}(),N=function(){return React.createElement("div",{className:"empty-list__wrapper"},React.createElement("h4",null,h("No pages found, add your first.","coming-soon-blocks")))},L=function(e){function t(e){var n;return f(this,t),l(b(b(n=m(this,y(t).call(this,e)))),"handleChangePageStatus",function(e,t){var o=t===n.state.active_page?null:t;n.setState(function(e,t){return u({},e,{active_page:o})});var r={path:"/v1/coming-soon-blocks/update-post/".concat(t),method:"POST",data:{id:t}};Object(i.a)(!!o),O(r).then(function(e){})}),l(b(b(n)),"handleRemovePage",function(e){var t=n.state.all_pages,o=_.reject(t,function(t){return t.id===e});O({path:"/wp/v2/coming-soon-blocks/".concat(e,"?force=true"),method:"DELETE"}).then(function(e){n.setState(function(e,t){return u({},e,{all_pages:o})})})}),n.state={active_page:Number(c.selected_page),all_pages:c.all_pages},n}return g(t,o["Component"]),d(t,[{key:"render",value:function(){var e=this,t=this.state,n=t.active_page,o=t.all_pages;return React.createElement("div",{"data-component":"pages-list"},o.length?o.map(function(t){return React.createElement(R,{key:t.id,changePageStatus:e.handleChangePageStatus,removePage:e.handleRemovePage,activePage:n,thePost:t})}):React.createElement(N,null))}}]),t}();function T(e){return(T="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function C(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function q(e,t){return!t||"object"!==T(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function A(e){return(A=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function D(e,t){return(D=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var M=wp.i18n.__,B=wp.components.Button,F=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),q(this,A(t).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&D(e,t)}(t,o["Component"]),function(e,t,n){t&&C(e.prototype,t),n&&C(e,n)}(t,[{key:"render",value:function(){return React.createElement("div",{className:"wrap"},React.createElement("div",{className:"page-header__wrapper"},React.createElement("h1",{className:"wp-heading-inline"},M("Coming Soon","coming-soon-blocks"))),React.createElement(L,null),React.createElement("div",{className:"page-actions__wrapper"},React.createElement(B,{isLarge:!0,href:a()(c.new_post_link)},M("CREATE A NEW PAGE","coming-soon-blocks"))))}}]),t}();ReactDOM.render(React.createElement(F,null),document.getElementById("coming-soon-blocks--dashboard"))},,,,,,,,,,,,,,,,,,,,,,,function(e,t){},function(e,t){}]);
public/dist/frontend.bundle.css CHANGED
@@ -1,418 +1 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- /**
8
- * Spinner
9
- *
10
- * @since 1.0.0
11
- * @version 1.0.0
12
- */
13
- @-webkit-keyframes pt_theme__loadingSpinner {
14
- 0% {
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg); }
17
- 100% {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg); } }
20
-
21
- @keyframes pt_theme__loadingSpinner {
22
- 0% {
23
- -webkit-transform: rotate(0deg);
24
- transform: rotate(0deg); }
25
- 100% {
26
- -webkit-transform: rotate(360deg);
27
- transform: rotate(360deg); } }
28
-
29
- /**
30
- * Inherit Typography
31
- */
32
- /**
33
- * Media
34
- *
35
- * @since 1.0.0
36
- * @version 1.0.0
37
- */
38
- /**
39
- * Media
40
- *
41
- * @since 1.0.0
42
- * @version 1.0.0
43
- */
44
- /**
45
- * Colors
46
- */
47
- /**
48
- * Media Queryes
49
- */
50
- html {
51
- width: 100%;
52
- height: 100%;
53
- padding: 0;
54
- margin: 0; }
55
-
56
- body {
57
- width: 100%;
58
- height: 100%;
59
- padding: 0;
60
- margin: 0; }
61
- body div[data-component="unlock-page"] {
62
- -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
63
- -o-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
64
- transition: all 0.6s cubic-bezier(1, 0, 0, 1);
65
- position: fixed;
66
- bottom: 20px;
67
- right: 20px;
68
- z-index: 100;
69
- /**
70
- * Loading
71
- */
72
- /**
73
- * Message
74
- */
75
- /**
76
- * Modes
77
- */ }
78
- @media only screen and (max-width: 767px) {
79
- body div[data-component="unlock-page"] {
80
- bottom: 10px;
81
- right: 10px; } }
82
- body div[data-component="unlock-page"] * {
83
- -webkit-box-sizing: border-box;
84
- box-sizing: border-box; }
85
- body div[data-component="unlock-page"] .button {
86
- width: 60px;
87
- height: 60px;
88
- position: relative;
89
- display: block;
90
- z-index: 2; }
91
- @media only screen and (max-width: 767px) {
92
- body div[data-component="unlock-page"] .button {
93
- width: 54px;
94
- height: 54px; } }
95
- body div[data-component="unlock-page"] .button svg {
96
- position: absolute;
97
- top: 50%;
98
- left: 50%;
99
- -webkit-transform: translate(-50%, -50%);
100
- -ms-transform: translate(-50%, -50%);
101
- transform: translate(-50%, -50%);
102
- z-index: 2; }
103
- body div[data-component="unlock-page"] .button svg path:nth-of-type(1) {
104
- -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
105
- -o-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
106
- transition: all 0.6s cubic-bezier(1, 0, 0, 1); }
107
- body div[data-component="unlock-page"] .button i {
108
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
109
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
110
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
111
- width: 20px;
112
- height: 20px;
113
- display: block;
114
- position: absolute;
115
- top: calc(50% - 20px / 2);
116
- left: calc(50% - 20px / 2);
117
- opacity: 0;
118
- z-index: 2;
119
- border: solid 2px white;
120
- border-top-color: transparent;
121
- border-left-color: transparent;
122
- border-radius: 50%;
123
- -webkit-animation: pt_theme__loadingSpinner 0.4s linear infinite;
124
- animation: pt_theme__loadingSpinner 0.4s linear infinite;
125
- opacity: 0; }
126
- body div[data-component="unlock-page"] .button i.hidde {
127
- display: none; }
128
- body div[data-component="unlock-page"] .button span {
129
- -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
130
- -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
131
- transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
132
- position: absolute;
133
- top: 50%;
134
- left: 50%;
135
- -webkit-transform: translate(-50%, -50%);
136
- -ms-transform: translate(-50%, -50%);
137
- transform: translate(-50%, -50%);
138
- width: 100%;
139
- height: 100%;
140
- background-color: #282A2F;
141
- border-radius: 50%;
142
- z-index: 1; }
143
- body div[data-component="unlock-page"] .content__wrapper {
144
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
145
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
146
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
147
- z-index: 1;
148
- padding: 10px 30px 10px 15px;
149
- position: absolute;
150
- bottom: -15px;
151
- right: 30px;
152
- width: 300px;
153
- padding-right: 60px;
154
- -webkit-box-sizing: border-box;
155
- box-sizing: border-box;
156
- overflow: hidden;
157
- border-radius: 10px; }
158
- @media only screen and (max-width: 767px) {
159
- body div[data-component="unlock-page"] .content__wrapper {
160
- max-width: calc( 100vw - 55px);
161
- padding-right: 40px;
162
- bottom: -22px; } }
163
- body div[data-component="unlock-page"] .content__wrapper span {
164
- padding: 15px;
165
- position: absolute;
166
- top: 0;
167
- left: 0;
168
- background-color: white;
169
- width: 100%;
170
- height: 100%;
171
- display: -ms-flexbox;
172
- display: flex;
173
- -ms-flex-direction: row;
174
- flex-direction: row;
175
- -ms-flex-wrap: nowrap;
176
- flex-wrap: nowrap;
177
- -ms-flex-pack: start;
178
- justify-content: flex-start;
179
- -ms-flex-align: center;
180
- align-items: center;
181
- opacity: 0;
182
- pointer-events: none; }
183
- body div[data-component="unlock-page"] .content__wrapper span p {
184
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
185
- font-size: 14px;
186
- color: #555D67;
187
- line-height: 140%;
188
- padding: 0;
189
- margin: 0; }
190
- body div[data-component="unlock-page"] .content__wrapper span p.-error {
191
- color: #E20E0F; }
192
- @media only screen and (max-width: 767px) {
193
- body div[data-component="unlock-page"] .content__wrapper span p {
194
- font-size: 13px; } }
195
- body div[data-component="unlock-page"] .content__wrapper > p {
196
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
197
- font-size: 14px;
198
- color: #555D67;
199
- line-height: 140%;
200
- padding: 0;
201
- margin: 0 0 10px 0; }
202
- @media only screen and (max-width: 767px) {
203
- body div[data-component="unlock-page"] .content__wrapper > p {
204
- font-size: 13px; } }
205
- body div[data-component="unlock-page"] .content__wrapper input {
206
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
207
- background-color: #E8EBEE;
208
- border-radius: 50px;
209
- width: 100%;
210
- padding: 5px 10px 7px 10px;
211
- outline: none;
212
- -webkit-box-sizing: border-box;
213
- box-sizing: border-box;
214
- font-size: 14px;
215
- border: 1px solid transparent; }
216
- body div[data-component="unlock-page"] .content__wrapper input.-error {
217
- border-color: #E20E0F; }
218
- body div[data-component="unlock-page"] .content__wrapper input:focus, body div[data-component="unlock-page"] .content__wrapper input:hover {
219
- background-color: #d9dee3; }
220
- body div[data-component="unlock-page"] .content__wrapper i {
221
- background-color: white;
222
- position: absolute;
223
- bottom: 0;
224
- right: 0;
225
- width: 100%;
226
- height: 100%;
227
- z-index: -1; }
228
- body div[data-component="unlock-page"] .page-overlayer {
229
- position: fixed;
230
- -webkit-transition: all 1s linear;
231
- -o-transition: all 1s linear;
232
- transition: all 1s linear;
233
- width: 100%;
234
- height: 100%;
235
- bottom: 0;
236
- right: 0;
237
- opacity: 0;
238
- pointer-events: none;
239
- background: #020024;
240
- background: -webkit-linear-gradient(298deg, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
241
- background: -o-linear-gradient(298deg, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
242
- background: linear-gradient(152deg, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.9) 100%); }
243
- body div[data-component="unlock-page"][data-loading="true"] .button {
244
- pointer-events: none; }
245
- body div[data-component="unlock-page"][data-loading="true"] .button svg {
246
- opacity: 0; }
247
- body div[data-component="unlock-page"][data-loading="true"] .button i {
248
- opacity: 1; }
249
- body div[data-component="unlock-page"][data-message="true"] .button {
250
- pointer-events: none; }
251
- body div[data-component="unlock-page"][data-message="true"] .content__wrapper {
252
- padding-top: 0;
253
- padding-bottom: 0;
254
- bottom: -8px;
255
- -webkit-transition-duration: 0.4s;
256
- -o-transition-duration: 0.4s;
257
- transition-duration: 0.4s; }
258
- body div[data-component="unlock-page"][data-message="true"] .content__wrapper span {
259
- opacity: 1;
260
- pointer-events: auto; }
261
- @media only screen and (max-width: 767px) {
262
- body div[data-component="unlock-page"][data-message="true"] .content__wrapper {
263
- bottom: -12px; } }
264
- body div[data-component="unlock-page"][data-mode="close"] .button:hover svg path:nth-of-type(1) {
265
- -webkit-transform: translateY(-2px);
266
- -ms-transform: translateY(-2px);
267
- transform: translateY(-2px); }
268
- body div[data-component="unlock-page"][data-mode="close"] .button:hover span {
269
- width: 110%;
270
- height: 110%;
271
- -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
272
- box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2); }
273
- body div[data-component="unlock-page"][data-mode="close"] .content__wrapper {
274
- pointer-events: none; }
275
- body div[data-component="unlock-page"][data-mode="close"] .content__wrapper > p {
276
- opacity: 0;
277
- -webkit-transform: translateY(10px);
278
- -ms-transform: translateY(10px);
279
- transform: translateY(10px); }
280
- body div[data-component="unlock-page"][data-mode="close"] .content__wrapper input {
281
- opacity: 0;
282
- -webkit-transform: translateY(10px);
283
- -ms-transform: translateY(10px);
284
- transform: translateY(10px); }
285
- body div[data-component="unlock-page"][data-mode="close"] .content__wrapper i {
286
- width: 0; }
287
- body div[data-component="unlock-page"][data-mode="close"] .page-overlayer {
288
- -webkit-transition-duration: 0.6s;
289
- -o-transition-duration: 0.6s;
290
- transition-duration: 0.6s; }
291
- body div[data-component="unlock-page"][data-mode="open"] {
292
- bottom: 40px; }
293
- body div[data-component="unlock-page"][data-mode="open"] .button {
294
- /* ---- hover ---- */ }
295
- body div[data-component="unlock-page"][data-mode="open"] .button span {
296
- -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
297
- -o-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
298
- transition: all 0.6s cubic-bezier(1, 0, 0, 1);
299
- border-radius: 10px; }
300
- body div[data-component="unlock-page"][data-mode="open"] .button svg path:nth-of-type(1) {
301
- -webkit-transform: translateY(-2px);
302
- -ms-transform: translateY(-2px);
303
- transform: translateY(-2px); }
304
- body div[data-component="unlock-page"][data-mode="open"] .button:hover span {
305
- height: 120%; }
306
- body div[data-component="unlock-page"][data-mode="open"] .button:hover svg path:nth-of-type(1) {
307
- -webkit-transform: translateY(-5px);
308
- -ms-transform: translateY(-5px);
309
- transform: translateY(-5px); }
310
- body div[data-component="unlock-page"][data-mode="open"] .content__wrapper {
311
- pointer-events: auto; }
312
- body div[data-component="unlock-page"][data-mode="open"] .content__wrapper > p {
313
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
314
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
315
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
316
- opacity: 1; }
317
- body div[data-component="unlock-page"][data-mode="open"] .content__wrapper input {
318
- -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
319
- -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
320
- transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
321
- opacity: 1; }
322
- body div[data-component="unlock-page"][data-mode="open"] .content__wrapper i {
323
- -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
324
- -o-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
325
- transition: all 0.6s cubic-bezier(1, 0, 0, 1);
326
- width: 100%; }
327
- body div[data-component="unlock-page"][data-mode="open"] .page-overlayer {
328
- opacity: 1;
329
- -webkit-transition-duration: 1s;
330
- -o-transition-duration: 1s;
331
- transition-duration: 1s;
332
- pointer-events: auto; }
333
- body div[data-component="cookie-notice"] {
334
- -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
335
- -o-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
336
- transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
337
- position: fixed;
338
- bottom: 20px;
339
- right: 20px;
340
- background-color: white;
341
- border-radius: 50px;
342
- z-index: 10;
343
- min-height: 60px;
344
- padding: 5px 10px;
345
- -webkit-box-sizing: border-box;
346
- box-sizing: border-box;
347
- display: -ms-flexbox;
348
- display: flex;
349
- -ms-flex-direction: row;
350
- flex-direction: row;
351
- -ms-flex-wrap: nowrap;
352
- flex-wrap: nowrap;
353
- -ms-flex-pack: start;
354
- justify-content: flex-start;
355
- -ms-flex-align: center;
356
- align-items: center;
357
- -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.05), 0 3px 6px rgba(0, 0, 0, 0.08);
358
- box-shadow: 0 7px 14px rgba(50, 50, 93, 0.05), 0 3px 6px rgba(0, 0, 0, 0.08); }
359
- @media only screen and (max-width: 1023px) {
360
- body div[data-component="cookie-notice"] {
361
- max-width: 660px; } }
362
- @media only screen and (max-width: 767px) {
363
- body div[data-component="cookie-notice"] {
364
- -ms-flex-direction: column;
365
- flex-direction: column;
366
- -ms-flex-pack: start;
367
- justify-content: flex-start;
368
- -ms-flex-align: start;
369
- align-items: flex-start;
370
- padding: 20px 20px 10px 20px;
371
- border-radius: 20px;
372
- max-width: calc( 100vw - 90px);
373
- right: 75px !important;
374
- bottom: 10px !important; } }
375
- body div[data-component="cookie-notice"].-not-alone {
376
- right: 90px; }
377
- body div[data-component="cookie-notice"].-leave {
378
- bottom: -100px; }
379
- body div[data-component="cookie-notice"] p {
380
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
381
- font-size: 14px;
382
- color: #555D67;
383
- padding: 0 30px 0 20px;
384
- margin: 0; }
385
- @media only screen and (max-width: 767px) {
386
- body div[data-component="cookie-notice"] p {
387
- padding: 0; } }
388
- @media only screen and (max-width: 1023px) {
389
- body div[data-component="cookie-notice"] p {
390
- font-size: 13px; }
391
- body div[data-component="cookie-notice"] p br {
392
- display: none; } }
393
- body div[data-component="cookie-notice"] button {
394
- -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
395
- -o-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
396
- transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
397
- background-color: rgba(0, 0, 0, 0.1);
398
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
399
- font-size: 14px;
400
- border-radius: 50px;
401
- padding: 12px 25px;
402
- text-decoration: none;
403
- color: #555D67;
404
- font-weight: 500;
405
- border: none;
406
- cursor: pointer;
407
- outline: none;
408
- /* ---- hover ---- */ }
409
- @media only screen and (max-width: 767px) {
410
- body div[data-component="cookie-notice"] button {
411
- margin-top: 15px;
412
- width: 100%; } }
413
- body div[data-component="cookie-notice"] button:hover {
414
- background-color: rgba(0, 0, 0, 0.18); }
415
- body main {
416
- -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
417
- -o-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
418
- transition: all 0.6s cubic-bezier(1, 0, 0, 1); }
1
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}html{width:100%;height:100%;padding:0;margin:0}body{width:100%;height:100%;padding:0;margin:0}body div[data-component="unlock-page"]{-webkit-transition:all 0.6s cubic-bezier(1, 0, 0, 1);-o-transition:all 0.6s cubic-bezier(1, 0, 0, 1);transition:all 0.6s cubic-bezier(1, 0, 0, 1);position:fixed;bottom:20px;right:20px;z-index:100}@media only screen and (max-width: 767px){body div[data-component="unlock-page"]{bottom:10px;right:10px}}body div[data-component="unlock-page"] *{-webkit-box-sizing:border-box;box-sizing:border-box}body div[data-component="unlock-page"] .button{width:60px;height:60px;position:relative;display:block;z-index:2}@media only screen and (max-width: 767px){body div[data-component="unlock-page"] .button{width:54px;height:54px}}body div[data-component="unlock-page"] .button svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:2}body div[data-component="unlock-page"] .button svg path:nth-of-type(1){-webkit-transition:all 0.6s cubic-bezier(1, 0, 0, 1);-o-transition:all 0.6s cubic-bezier(1, 0, 0, 1);transition:all 0.6s cubic-bezier(1, 0, 0, 1)}body div[data-component="unlock-page"] .button i{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);width:20px;height:20px;display:block;position:absolute;top:calc(50% - 20px / 2);left:calc(50% - 20px / 2);opacity:0;z-index:2;border:solid 2px #fff;border-top-color:rgba(0,0,0,0);border-left-color:rgba(0,0,0,0);border-radius:50%;-webkit-animation:pt_theme__loadingSpinner 0.4s linear infinite;animation:pt_theme__loadingSpinner 0.4s linear infinite;opacity:0}body div[data-component="unlock-page"] .button i.hidde{display:none}body div[data-component="unlock-page"] .button span{-webkit-transition:all 0.6s cubic-bezier(0.77, 0, 0.175, 1);-o-transition:all 0.6s cubic-bezier(0.77, 0, 0.175, 1);transition:all 0.6s cubic-bezier(0.77, 0, 0.175, 1);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:100%;height:100%;background-color:#282A2F;border-radius:50%;z-index:1}body div[data-component="unlock-page"] .content__wrapper{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);z-index:1;padding:10px 30px 10px 15px;position:absolute;bottom:-15px;right:30px;width:300px;padding-right:60px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;border-radius:10px}@media only screen and (max-width: 767px){body div[data-component="unlock-page"] .content__wrapper{max-width:calc( 100vw - 55px);padding-right:40px;bottom:-22px}}body div[data-component="unlock-page"] .content__wrapper span{padding:15px;position:absolute;top:0;left:0;background-color:white;width:100%;height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center;opacity:0;pointer-events:none}body div[data-component="unlock-page"] .content__wrapper span p{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:14px;color:#555D67;line-height:140%;padding:0;margin:0}body div[data-component="unlock-page"] .content__wrapper span p.-error{color:#E20E0F}@media only screen and (max-width: 767px){body div[data-component="unlock-page"] .content__wrapper span p{font-size:13px}}body div[data-component="unlock-page"] .content__wrapper>p{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:14px;color:#555D67;line-height:140%;padding:0;margin:0 0 10px 0}@media only screen and (max-width: 767px){body div[data-component="unlock-page"] .content__wrapper>p{font-size:13px}}body div[data-component="unlock-page"] .content__wrapper input{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;background-color:#E8EBEE;border-radius:50px;width:100%;padding:5px 10px 7px 10px;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px;border:1px solid transparent}body div[data-component="unlock-page"] .content__wrapper input.-error{border-color:#E20E0F}body div[data-component="unlock-page"] .content__wrapper input:focus,body div[data-component="unlock-page"] .content__wrapper input:hover{background-color:#d9dee3}body div[data-component="unlock-page"] .content__wrapper i{background-color:white;position:absolute;bottom:0;right:0;width:100%;height:100%;z-index:-1}body div[data-component="unlock-page"] .page-overlayer{position:fixed;-webkit-transition:all 1s linear;-o-transition:all 1s linear;transition:all 1s linear;width:100%;height:100%;bottom:0;right:0;opacity:0;pointer-events:none;background:#020024;background:-webkit-linear-gradient(298deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.9) 100%);background:-o-linear-gradient(298deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.9) 100%);background:linear-gradient(152deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.9) 100%)}body div[data-component="unlock-page"][data-loading="true"] .button{pointer-events:none}body div[data-component="unlock-page"][data-loading="true"] .button svg{opacity:0}body div[data-component="unlock-page"][data-loading="true"] .button i{opacity:1}body div[data-component="unlock-page"][data-message="true"] .button{pointer-events:none}body div[data-component="unlock-page"][data-message="true"] .content__wrapper{padding-top:0;padding-bottom:0;bottom:-8px;-webkit-transition-duration:0.4s;-o-transition-duration:0.4s;transition-duration:0.4s}body div[data-component="unlock-page"][data-message="true"] .content__wrapper span{opacity:1;pointer-events:auto}@media only screen and (max-width: 767px){body div[data-component="unlock-page"][data-message="true"] .content__wrapper{bottom:-12px}}body div[data-component="unlock-page"][data-mode="close"] .button:hover svg path:nth-of-type(1){-webkit-transform:translateY(-2px);transform:translateY(-2px)}body div[data-component="unlock-page"][data-mode="close"] .button:hover span{width:110%;height:110%;-webkit-box-shadow:0 5px 10px 0 rgba(0,0,0,0.2);box-shadow:0 5px 10px 0 rgba(0,0,0,0.2)}body div[data-component="unlock-page"][data-mode="close"] .content__wrapper{pointer-events:none}body div[data-component="unlock-page"][data-mode="close"] .content__wrapper>p{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}body div[data-component="unlock-page"][data-mode="close"] .content__wrapper input{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}body div[data-component="unlock-page"][data-mode="close"] .content__wrapper i{width:0}body div[data-component="unlock-page"][data-mode="close"] .page-overlayer{-webkit-transition-duration:0.6s;-o-transition-duration:0.6s;transition-duration:0.6s}body div[data-component="unlock-page"][data-mode="open"]{bottom:40px}body div[data-component="unlock-page"][data-mode="open"] .button span{-webkit-transition:all 0.6s cubic-bezier(1, 0, 0, 1);-o-transition:all 0.6s cubic-bezier(1, 0, 0, 1);transition:all 0.6s cubic-bezier(1, 0, 0, 1);border-radius:10px}body div[data-component="unlock-page"][data-mode="open"] .button svg path:nth-of-type(1){-webkit-transform:translateY(-2px);transform:translateY(-2px)}body div[data-component="unlock-page"][data-mode="open"] .button:hover span{height:120%}body div[data-component="unlock-page"][data-mode="open"] .button:hover svg path:nth-of-type(1){-webkit-transform:translateY(-5px);transform:translateY(-5px)}body div[data-component="unlock-page"][data-mode="open"] .content__wrapper{pointer-events:auto}body div[data-component="unlock-page"][data-mode="open"] .content__wrapper>p{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;opacity:1}body div[data-component="unlock-page"][data-mode="open"] .content__wrapper input{-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;opacity:1}body div[data-component="unlock-page"][data-mode="open"] .content__wrapper i{-webkit-transition:all 0.6s cubic-bezier(1, 0, 0, 1);-o-transition:all 0.6s cubic-bezier(1, 0, 0, 1);transition:all 0.6s cubic-bezier(1, 0, 0, 1);width:100%}body div[data-component="unlock-page"][data-mode="open"] .page-overlayer{opacity:1;-webkit-transition-duration:1s;-o-transition-duration:1s;transition-duration:1s;pointer-events:auto}body div[data-component="cookie-notice"]{-webkit-transition:all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);-o-transition:all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);transition:all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);position:fixed;bottom:20px;right:20px;background-color:#fff;border-radius:50px;z-index:10;min-height:60px;padding:5px 10px;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center;-webkit-box-shadow:0 7px 14px rgba(50,50,93,0.05),0 3px 6px rgba(0,0,0,0.08);box-shadow:0 7px 14px rgba(50,50,93,0.05),0 3px 6px rgba(0,0,0,0.08)}@media only screen and (max-width: 1023px){body div[data-component="cookie-notice"]{max-width:660px}}@media only screen and (max-width: 767px){body div[data-component="cookie-notice"]{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;padding:20px 20px 10px 20px;border-radius:20px;max-width:calc( 100vw - 90px);right:75px !important;bottom:10px !important}}body div[data-component="cookie-notice"].-not-alone{right:90px}body div[data-component="cookie-notice"].-leave{bottom:-100px}body div[data-component="cookie-notice"] p{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:14px;color:#555D67;padding:0 30px 0 20px;margin:0}@media only screen and (max-width: 767px){body div[data-component="cookie-notice"] p{padding:0}}@media only screen and (max-width: 1023px){body div[data-component="cookie-notice"] p{font-size:13px}body div[data-component="cookie-notice"] p br{display:none}}body div[data-component="cookie-notice"] button{-webkit-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);transition:all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);background-color:rgba(0,0,0,0.1);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:14px;border-radius:50px;padding:12px 25px;text-decoration:none;color:#555D67;font-weight:500;border:none;cursor:pointer;outline:none}@media only screen and (max-width: 767px){body div[data-component="cookie-notice"] button{margin-top:15px;width:100%}}body div[data-component="cookie-notice"] button:hover{background-color:rgba(0,0,0,0.18)}body main{-webkit-transition:all 0.6s cubic-bezier(1, 0, 0, 1);-o-transition:all 0.6s cubic-bezier(1, 0, 0, 1);transition:all 0.6s cubic-bezier(1, 0, 0, 1)}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/dist/frontend.bundle.js CHANGED
@@ -1,9 +1,9 @@
1
- !function(t){var e={};function i(n){if(e[n])return e[n].exports;var s=e[n]={i:n,l:!1,exports:{}};return t[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)i.d(n,s,function(e){return t[e]}.bind(null,s));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=31)}([,function(t,e,i){var n,s;!function(o,r){n=[i(9)],void 0===(s=function(t){return function(t,e){"use strict";var i={extend:function(t,e){for(var i in e)t[i]=e[i];return t},modulo:function(t,e){return(t%e+e)%e}},n=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?n.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){var s=[];return(t=i.makeArray(t)).forEach(function(t){if(t instanceof HTMLElement)if(n){e(t,n)&&s.push(t);for(var i=t.querySelectorAll(n),o=0;o<i.length;o++)s.push(i[o])}else s.push(t)}),s},i.debounceMethod=function(t,e,i){i=i||100;var n=t.prototype[e],s=e+"Timeout";t.prototype[e]=function(){var t=this[s];clearTimeout(t);var e=arguments,o=this;this[s]=setTimeout(function(){n.apply(o,e),delete o[s]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var s=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var o=i.toDashed(n),r="data-"+o,a=document.querySelectorAll("["+r+"]"),h=document.querySelectorAll(".js-"+o),l=i.makeArray(a).concat(i.makeArray(h)),c=r+"-options",d=t.jQuery;l.forEach(function(t){var i,o=t.getAttribute(r)||t.getAttribute(c);try{i=o&&JSON.parse(o)}catch(e){return void(s&&s.error("Error parsing "+r+" on "+t.className+": "+e))}var a=new e(t,i);d&&d.data(t,n,a)})})},i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;!function(o,r){n=[i(3),i(4),i(1),i(10),i(11),i(12)],void 0===(s=function(t,e,i,n,s,r){return function(t,e,i,n,s,o,r){"use strict";var a=t.jQuery,h=t.getComputedStyle,l=t.console;function c(t,e){for(t=n.makeArray(t);t.length;)e.appendChild(t.shift())}var d=0,u={};function p(t,e){var i=n.getQueryElement(t);if(i){if(this.element=i,this.element.flickityGUID){var s=u[this.element.flickityGUID];return s.option(e),s}a&&(this.$element=a(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e),this._create()}else l&&l.error("Bad element for Flickity: "+(i||t))}p.defaults={accessibility:!0,cellAlign:"center",freeScrollFriction:.075,friction:.28,namespaceJQueryEvents:!0,percentPosition:!0,resize:!0,selectedAttraction:.025,setGallerySize:!0},p.createMethods=[];var f=p.prototype;n.extend(f,e.prototype),f._create=function(){var e=this.guid=++d;for(var i in this.element.flickityGUID=e,u[e]=this,this.selectedIndex=0,this.restingFrames=0,this.x=0,this.velocity=0,this.originSide=this.options.rightToLeft?"right":"left",this.viewport=document.createElement("div"),this.viewport.className="flickity-viewport",this._createSlider(),(this.options.resize||this.options.watchCSS)&&t.addEventListener("resize",this),this.options.on){var n=this.options.on[i];this.on(i,n)}p.createMethods.forEach(function(t){this[t]()},this),this.options.watchCSS?this.watchCSS():this.activate()},f.option=function(t){n.extend(this.options,t)},f.activate=function(){if(!this.isActive){this.isActive=!0,this.element.classList.add("flickity-enabled"),this.options.rightToLeft&&this.element.classList.add("flickity-rtl"),this.getSize();var t,e=this._filterFindCellElements(this.element.children);c(e,this.slider),this.viewport.appendChild(this.slider),this.element.appendChild(this.viewport),this.reloadCells(),this.options.accessibility&&(this.element.tabIndex=0,this.element.addEventListener("keydown",this)),this.emitEvent("activate");var i=this.options.initialIndex;t=this.isInitActivated?this.selectedIndex:void 0!==i&&this.cells[i]?i:0,this.select(t,!1,!0),this.isInitActivated=!0,this.dispatchEvent("ready")}},f._createSlider=function(){var t=document.createElement("div");t.className="flickity-slider",t.style[this.originSide]=0,this.slider=t},f._filterFindCellElements=function(t){return n.filterFindElements(t,this.options.cellSelector)},f.reloadCells=function(){this.cells=this._makeCells(this.slider.children),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize()},f._makeCells=function(t){var e=this._filterFindCellElements(t),i=e.map(function(t){return new s(t,this)},this);return i},f.getLastCell=function(){return this.cells[this.cells.length-1]},f.getLastSlide=function(){return this.slides[this.slides.length-1]},f.positionCells=function(){this._sizeCells(this.cells),this._positionCells(0)},f._positionCells=function(t){t=t||0,this.maxCellHeight=t&&this.maxCellHeight||0;var e=0;if(t>0){var i=this.cells[t-1];e=i.x+i.size.outerWidth}for(var n=this.cells.length,s=t;s<n;s++){var o=this.cells[s];o.setPosition(e),e+=o.size.outerWidth,this.maxCellHeight=Math.max(o.size.outerHeight,this.maxCellHeight)}this.slideableWidth=e,this.updateSlides(),this._containSlides(),this.slidesWidth=n?this.getLastSlide().target-this.slides[0].target:0},f._sizeCells=function(t){t.forEach(function(t){t.getSize()})},f.updateSlides=function(){if(this.slides=[],this.cells.length){var t=new o(this);this.slides.push(t);var e="left"==this.originSide,i=e?"marginRight":"marginLeft",n=this._getCanCellFit();this.cells.forEach(function(e,s){if(t.cells.length){var r=t.outerWidth-t.firstMargin+(e.size.outerWidth-e.size[i]);n.call(this,s,r)?t.addCell(e):(t.updateTarget(),t=new o(this),this.slides.push(t),t.addCell(e))}else t.addCell(e)},this),t.updateTarget(),this.updateSelectedSlide()}},f._getCanCellFit=function(){var t=this.options.groupCells;if(!t)return function(){return!1};if("number"==typeof t){var e=parseInt(t,10);return function(t){return t%e!=0}}var i="string"==typeof t&&t.match(/^(\d+)%$/),n=i?parseInt(i[1],10)/100:1;return function(t,e){return e<=(this.size.innerWidth+1)*n}},f._init=f.reposition=function(){this.positionCells(),this.positionSliderAtSelected()},f.getSize=function(){this.size=i(this.element),this.setCellAlign(),this.cursorPosition=this.size.innerWidth*this.cellAlign};var g={center:{left:.5,right:.5},left:{left:0,right:1},right:{right:0,left:1}};f.setCellAlign=function(){var t=g[this.options.cellAlign];this.cellAlign=t?t[this.originSide]:this.options.cellAlign},f.setGallerySize=function(){if(this.options.setGallerySize){var t=this.options.adaptiveHeight&&this.selectedSlide?this.selectedSlide.height:this.maxCellHeight;this.viewport.style.height=t+"px"}},f._getWrapShiftCells=function(){if(this.options.wrapAround){this._unshiftCells(this.beforeShiftCells),this._unshiftCells(this.afterShiftCells);var t=this.cursorPosition,e=this.cells.length-1;this.beforeShiftCells=this._getGapCells(t,e,-1),t=this.size.innerWidth-this.cursorPosition,this.afterShiftCells=this._getGapCells(t,0,1)}},f._getGapCells=function(t,e,i){for(var n=[];t>0;){var s=this.cells[e];if(!s)break;n.push(s),e+=i,t-=s.size.outerWidth}return n},f._containSlides=function(){if(this.options.contain&&!this.options.wrapAround&&this.cells.length){var t=this.options.rightToLeft,e=t?"marginRight":"marginLeft",i=t?"marginLeft":"marginRight",n=this.slideableWidth-this.getLastCell().size[i],s=n<this.size.innerWidth,o=this.cursorPosition+this.cells[0].size[e],r=n-this.size.innerWidth*(1-this.cellAlign);this.slides.forEach(function(t){s?t.target=n*this.cellAlign:(t.target=Math.max(t.target,o),t.target=Math.min(t.target,r))},this)}},f.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),a&&this.$element){var s=t+=this.options.namespaceJQueryEvents?".flickity":"";if(e){var o=a.Event(e);o.type=t,s=o}this.$element.trigger(s,i)}},f.select=function(t,e,i){if(this.isActive&&(t=parseInt(t,10),this._wrapSelect(t),(this.options.wrapAround||e)&&(t=n.modulo(t,this.slides.length)),this.slides[t])){var s=this.selectedIndex;this.selectedIndex=t,this.updateSelectedSlide(),i?this.positionSliderAtSelected():this.startAnimation(),this.options.adaptiveHeight&&this.setGallerySize(),this.dispatchEvent("select",null,[t]),t!=s&&this.dispatchEvent("change",null,[t]),this.dispatchEvent("cellSelect")}},f._wrapSelect=function(t){var e=this.slides.length;if(!(this.options.wrapAround&&e>1))return t;var i=n.modulo(t,e),s=Math.abs(i-this.selectedIndex),o=Math.abs(i+e-this.selectedIndex),r=Math.abs(i-e-this.selectedIndex);!this.isDragSelect&&o<s?t+=e:!this.isDragSelect&&r<s&&(t-=e),t<0?this.x-=this.slideableWidth:t>=e&&(this.x+=this.slideableWidth)},f.previous=function(t,e){this.select(this.selectedIndex-1,t,e)},f.next=function(t,e){this.select(this.selectedIndex+1,t,e)},f.updateSelectedSlide=function(){var t=this.slides[this.selectedIndex];t&&(this.unselectSelectedSlide(),this.selectedSlide=t,t.select(),this.selectedCells=t.cells,this.selectedElements=t.getCellElements(),this.selectedCell=t.cells[0],this.selectedElement=this.selectedElements[0])},f.unselectSelectedSlide=function(){this.selectedSlide&&this.selectedSlide.unselect()},f.selectCell=function(t,e,i){var n=this.queryCell(t);if(n){var s=this.getCellSlideIndex(n);this.select(s,e,i)}},f.getCellSlideIndex=function(t){for(var e=0;e<this.slides.length;e++)if(-1!=this.slides[e].cells.indexOf(t))return e},f.getCell=function(t){for(var e=0;e<this.cells.length;e++){var i=this.cells[e];if(i.element==t)return i}},f.getCells=function(t){var e=[];return(t=n.makeArray(t)).forEach(function(t){var i=this.getCell(t);i&&e.push(i)},this),e},f.getCellElements=function(){return this.cells.map(function(t){return t.element})},f.getParentCell=function(t){var e=this.getCell(t);return e||(t=n.getParent(t,".flickity-slider > *"),this.getCell(t))},f.getAdjacentCellElements=function(t,e){if(!t)return this.selectedSlide.getCellElements();e=void 0===e?this.selectedIndex:e;var i=this.slides.length;if(1+2*t>=i)return this.getCellElements();for(var s=[],o=e-t;o<=e+t;o++){var r=this.options.wrapAround?n.modulo(o,i):o,a=this.slides[r];a&&(s=s.concat(a.getCellElements()))}return s},f.queryCell=function(t){return"number"==typeof t?this.cells[t]:("string"==typeof t&&(t=this.element.querySelector(t)),this.getCell(t))},f.uiChange=function(){this.emitEvent("uiChange")},f.childUIPointerDown=function(t){this.emitEvent("childUIPointerDown",[t])},f.onresize=function(){this.watchCSS(),this.resize()},n.debounceMethod(p,"onresize",150),f.resize=function(){if(this.isActive){this.getSize(),this.options.wrapAround&&(this.x=n.modulo(this.x,this.slideableWidth)),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize(),this.emitEvent("resize");var t=this.selectedElements&&this.selectedElements[0];this.selectCell(t,!1,!0)}},f.watchCSS=function(){this.options.watchCSS&&(-1!=h(this.element,":after").content.indexOf("flickity")?this.activate():this.deactivate())},f.onkeydown=function(t){var e=document.activeElement&&document.activeElement!=this.element;if(this.options.accessibility&&!e){var i=p.keyboardHandlers[t.keyCode];i&&i.call(this)}},p.keyboardHandlers={37:function(){var t=this.options.rightToLeft?"next":"previous";this.uiChange(),this[t]()},39:function(){var t=this.options.rightToLeft?"previous":"next";this.uiChange(),this[t]()}},f.focus=function(){var e=t.pageYOffset;this.element.focus({preventScroll:!0}),t.pageYOffset!=e&&t.scrollTo(t.pageXOffset,e)},f.deactivate=function(){this.isActive&&(this.element.classList.remove("flickity-enabled"),this.element.classList.remove("flickity-rtl"),this.unselectSelectedSlide(),this.cells.forEach(function(t){t.destroy()}),this.element.removeChild(this.viewport),c(this.slider.children,this.element),this.options.accessibility&&(this.element.removeAttribute("tabIndex"),this.element.removeEventListener("keydown",this)),this.isActive=!1,this.emitEvent("deactivate"))},f.destroy=function(){this.deactivate(),t.removeEventListener("resize",this),this.emitEvent("destroy"),a&&this.$element&&a.removeData(this.element,"flickity"),delete this.element.flickityGUID,delete u[this.guid]},n.extend(f,r),p.data=function(t){var e=(t=n.getQueryElement(t))&&t.flickityGUID;return e&&u[e]},n.htmlInit(p,"flickity"),a&&a.bridget&&a.bridget("flickity",p);return p.setJQuery=function(t){a=t},p.Cell=s,p}(o,t,e,i,n,s,r)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;"undefined"!=typeof window&&window,void 0===(s="function"==typeof(n=function(){"use strict";function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{};return(i[t]=i[t]||{})[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var n=this._onceEvents&&this._onceEvents[t],s=0;s<i.length;s++){var o=i[s];n&&n[o]&&(this.off(t,o),delete n[o]),o.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;
2
  /*!
3
  * getSize v2.0.3
4
  * measure size of elements
5
  * MIT license
6
- */window,void 0===(s="function"==typeof(n=function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}var e="undefined"==typeof console?function(){}:function(t){console.error(t)},i=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],n=i.length;function s(t){var i=getComputedStyle(t);return i||e("Style returned "+i+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),i}var o,r=!1;function a(e){if(function(){if(!r){r=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=s(e);o=200==Math.round(t(n.width)),a.isBoxSizeOuter=o,i.removeChild(e)}}(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var h=s(e);if("none"==h.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<n;e++){var s=i[e];t[s]=0}return t}();var l={};l.width=e.offsetWidth,l.height=e.offsetHeight;for(var c=l.isBorderBox="border-box"==h.boxSizing,d=0;d<n;d++){var u=i[d],p=h[u],f=parseFloat(p);l[u]=isNaN(f)?0:f}var g=l.paddingLeft+l.paddingRight,v=l.paddingTop+l.paddingBottom,m=l.marginLeft+l.marginRight,y=l.marginTop+l.marginBottom,b=l.borderLeftWidth+l.borderRightWidth,S=l.borderTopWidth+l.borderBottomWidth,E=c&&o,x=t(h.width);!1!==x&&(l.width=x+(E?0:g+b));var w=t(h.height);return!1!==w&&(l.height=w+(E?0:v+S)),l.innerWidth=l.width-(g+b),l.innerHeight=l.height-(v+S),l.outerWidth=l.width+m,l.outerHeight=l.height+y,l}}return a})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;
7
  /*!
8
  * Unipointer v2.3.0
9
  * base class for doing one thing with pointer event
@@ -25,7 +25,7 @@
25
  * listens to taps
26
  * MIT license
27
  */
28
- !function(o,r){n=[i(5)],void 0===(s=function(t){return function(t,e){"use strict";function i(t){this.bindTap(t)}var n=i.prototype=Object.create(e.prototype);return n.bindTap=function(t){t&&(this.unbindTap(),this.tapElement=t,this._bindStartEvent(t,!0))},n.unbindTap=function(){this.tapElement&&(this._bindStartEvent(this.tapElement,!0),delete this.tapElement)},n.pointerUp=function(i,n){if(!this.isIgnoringMouseUp||"mouseup"!=i.type){var s=e.getPointerPoint(n),o=this.tapElement.getBoundingClientRect(),r=t.pageXOffset,a=t.pageYOffset;if(s.x>=o.left+r&&s.x<=o.right+r&&s.y>=o.top+a&&s.y<=o.bottom+a&&this.emitEvent("tap",[i,n]),"mouseup"!=i.type){this.isIgnoringMouseUp=!0;var h=this;setTimeout(function(){delete h.isIgnoringMouseUp},400)}}},n.destroy=function(){this.pointerDone(),this.unbindTap()},i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},,function(t,e,i){var n,s,o;
29
  /*!
30
  * Flickity v2.1.2
31
  * Touch, responsive, flickable carousels
@@ -35,7 +35,7 @@
35
  *
36
  * https://flickity.metafizzy.co
37
  * Copyright 2015-2018 Metafizzy
38
- */window,s=[i(2),i(13),i(15),i(16),i(17),i(18),i(19)],void 0===(o="function"==typeof(n=function(t){return t})?n.apply(e,s):n)||(t.exports=o)},function(t,e,i){var n,s;!function(o,r){"use strict";void 0===(s="function"==typeof(n=r)?n.call(e,i,e,t):n)||(t.exports=s)}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i]+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}})},function(t,e,i){var n,s;window,n=[i(4)],void 0===(s=function(t){return function(t,e){"use strict";function i(t,e){this.element=t,this.parent=e,this.create()}var n=i.prototype;return n.create=function(){this.element.style.position="absolute",this.element.setAttribute("aria-selected","false"),this.x=0,this.shift=0},n.destroy=function(){this.element.style.position="";var t=this.parent.originSide;this.element.removeAttribute("aria-selected"),this.element.style[t]=""},n.getSize=function(){this.size=e(this.element)},n.setPosition=function(t){this.x=t,this.updateTarget(),this.renderPosition(t)},n.updateTarget=n.setDefaultTarget=function(){var t="left"==this.parent.originSide?"marginLeft":"marginRight";this.target=this.x+this.size[t]+this.size.width*this.parent.cellAlign},n.renderPosition=function(t){var e=this.parent.originSide;this.element.style[e]=this.parent.getPositionValue(t)},n.wrapShift=function(t){this.shift=t,this.renderPosition(this.x+this.parent.slideableWidth*t)},n.remove=function(){this.element.parentNode.removeChild(this.element)},i}(0,t)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,void 0===(s="function"==typeof(n=function(){"use strict";function t(t){this.parent=t,this.isOriginLeft="left"==t.originSide,this.cells=[],this.outerWidth=0,this.height=0}var e=t.prototype;return e.addCell=function(t){if(this.cells.push(t),this.outerWidth+=t.size.outerWidth,this.height=Math.max(t.size.outerHeight,this.height),1==this.cells.length){this.x=t.x;var e=this.isOriginLeft?"marginLeft":"marginRight";this.firstMargin=t.size[e]}},e.updateTarget=function(){var t=this.isOriginLeft?"marginRight":"marginLeft",e=this.getLastCell(),i=e?e.size[t]:0,n=this.outerWidth-(this.firstMargin+i);this.target=this.x+this.firstMargin+n*this.parent.cellAlign},e.getLastCell=function(){return this.cells[this.cells.length-1]},e.select=function(){this.changeSelected(!0)},e.unselect=function(){this.changeSelected(!1)},e.changeSelected=function(t){var e=t?"add":"remove";this.cells.forEach(function(i){i.element.classList[e]("is-selected"),i.element.setAttribute("aria-selected",t.toString())})},e.getCellElements=function(){return this.cells.map(function(t){return t.element})},t})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(1)],void 0===(s=function(t){return function(t,e){"use strict";var i={startAnimation:function(){this.isAnimating||(this.isAnimating=!0,this.restingFrames=0,this.animate())},animate:function(){this.applyDragForce(),this.applySelectedAttraction();var t=this.x;if(this.integratePhysics(),this.positionSlider(),this.settle(t),this.isAnimating){var e=this;requestAnimationFrame(function(){e.animate()})}},positionSlider:function(){var t=this.x;this.options.wrapAround&&this.cells.length>1&&(t=e.modulo(t,this.slideableWidth),t-=this.slideableWidth,this.shiftWrapCells(t)),t+=this.cursorPosition,t=this.options.rightToLeft?-t:t;var i=this.getPositionValue(t);this.slider.style.transform=this.isAnimating?"translate3d("+i+",0,0)":"translateX("+i+")";var n=this.slides[0];if(n){var s=-this.x-n.target,o=s/this.slidesWidth;this.dispatchEvent("scroll",null,[o,s])}},positionSliderAtSelected:function(){this.cells.length&&(this.x=-this.selectedSlide.target,this.velocity=0,this.positionSlider())},getPositionValue:function(t){return this.options.percentPosition?.01*Math.round(t/this.size.innerWidth*1e4)+"%":Math.round(t)+"px"},settle:function(t){this.isPointerDown||Math.round(100*this.x)!=Math.round(100*t)||this.restingFrames++,this.restingFrames>2&&(this.isAnimating=!1,delete this.isFreeScrolling,this.positionSlider(),this.dispatchEvent("settle",null,[this.selectedIndex]))},shiftWrapCells:function(t){var e=this.cursorPosition+t;this._shiftCells(this.beforeShiftCells,e,-1);var i=this.size.innerWidth-(t+this.slideableWidth+this.cursorPosition);this._shiftCells(this.afterShiftCells,i,1)},_shiftCells:function(t,e,i){for(var n=0;n<t.length;n++){var s=t[n],o=e>0?i:0;s.wrapShift(o),e-=s.size.outerWidth}},_unshiftCells:function(t){if(t&&t.length)for(var e=0;e<t.length;e++)t[e].wrapShift(0)},integratePhysics:function(){this.x+=this.velocity,this.velocity*=this.getFrictionFactor()},applyForce:function(t){this.velocity+=t},getFrictionFactor:function(){return 1-this.options[this.isFreeScrolling?"freeScrollFriction":"friction"]},getRestingPosition:function(){return this.x+this.velocity/(1-this.getFrictionFactor())},applyDragForce:function(){if(this.isDraggable&&this.isPointerDown){var t=this.dragX-this.x-this.velocity;this.applyForce(t)}},applySelectedAttraction:function(){if((!this.isDraggable||!this.isPointerDown)&&!this.isFreeScrolling&&this.slides.length){var t=(-1*this.selectedSlide.target-this.x)*this.options.selectedAttraction;this.applyForce(t)}}};return i}(0,t)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;!function(o,r){n=[i(2),i(14),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";n.extend(e.defaults,{draggable:">1",dragThreshold:3}),e.createMethods.push("_createDrag");var s=e.prototype;n.extend(s,i.prototype),s._touchActionValue="pan-y";var o="createTouch"in document,r=!1;s._createDrag=function(){this.on("activate",this.onActivateDrag),this.on("uiChange",this._uiChangeDrag),this.on("childUIPointerDown",this._childUIPointerDownDrag),this.on("deactivate",this.onDeactivateDrag),this.on("cellChange",this.updateDraggable),o&&!r&&(t.addEventListener("touchmove",function(){}),r=!0)},s.onActivateDrag=function(){this.handles=[this.viewport],this.bindHandles(),this.updateDraggable()},s.onDeactivateDrag=function(){this.unbindHandles(),this.element.classList.remove("is-draggable")},s.updateDraggable=function(){">1"==this.options.draggable?this.isDraggable=this.slides.length>1:this.isDraggable=this.options.draggable,this.isDraggable?this.element.classList.add("is-draggable"):this.element.classList.remove("is-draggable")},s.bindDrag=function(){this.options.draggable=!0,this.updateDraggable()},s.unbindDrag=function(){this.options.draggable=!1,this.updateDraggable()},s._uiChangeDrag=function(){delete this.isFreeScrolling},s._childUIPointerDownDrag=function(t){t.preventDefault(),this.pointerDownFocus(t)},s.pointerDown=function(e,i){if(this.isDraggable){var n=this.okayPointerDown(e);n&&(this._pointerDownPreventDefault(e),this.pointerDownFocus(e),document.activeElement!=this.element&&this.pointerDownBlur(),this.dragX=this.x,this.viewport.classList.add("is-pointer-down"),this.pointerDownScroll=h(),t.addEventListener("scroll",this),this._pointerDownDefault(e,i))}else this._pointerDownDefault(e,i)},s._pointerDownDefault=function(t,e){this.pointerDownPointer=e,this._bindPostStartEvents(t),this.dispatchEvent("pointerDown",t,[e])};var a={INPUT:!0,TEXTAREA:!0,SELECT:!0};function h(){return{x:t.pageXOffset,y:t.pageYOffset}}return s.pointerDownFocus=function(t){a[t.target.nodeName]||this.focus()},s._pointerDownPreventDefault=function(t){var e="touchstart"==t.type,i="touch"==t.pointerType,n=a[t.target.nodeName];e||i||n||t.preventDefault()},s.hasDragStarted=function(t){return Math.abs(t.x)>this.options.dragThreshold},s.pointerUp=function(t,e){delete this.isTouchScrolling,this.viewport.classList.remove("is-pointer-down"),this.dispatchEvent("pointerUp",t,[e]),this._dragPointerUp(t,e)},s.pointerDone=function(){t.removeEventListener("scroll",this),delete this.pointerDownScroll},s.dragStart=function(e,i){this.isDraggable&&(this.dragStartPosition=this.x,this.startAnimation(),t.removeEventListener("scroll",this),this.dispatchEvent("dragStart",e,[i]))},s.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.dispatchEvent("pointerMove",t,[e,i]),this._dragMove(t,e,i)},s.dragMove=function(t,e,i){if(this.isDraggable){t.preventDefault(),this.previousDragX=this.dragX;var n=this.options.rightToLeft?-1:1;this.options.wrapAround&&(i.x=i.x%this.slideableWidth);var s=this.dragStartPosition+i.x*n;if(!this.options.wrapAround&&this.slides.length){var o=Math.max(-this.slides[0].target,this.dragStartPosition);s=s>o?.5*(s+o):s;var r=Math.min(-this.getLastSlide().target,this.dragStartPosition);s=s<r?.5*(s+r):s}this.dragX=s,this.dragMoveTime=new Date,this.dispatchEvent("dragMove",t,[e,i])}},s.dragEnd=function(t,e){if(this.isDraggable){this.options.freeScroll&&(this.isFreeScrolling=!0);var i=this.dragEndRestingSelect();if(this.options.freeScroll&&!this.options.wrapAround){var n=this.getRestingPosition();this.isFreeScrolling=-n>this.slides[0].target&&-n<this.getLastSlide().target}else this.options.freeScroll||i!=this.selectedIndex||(i+=this.dragEndBoostSelect());delete this.previousDragX,this.isDragSelect=this.options.wrapAround,this.select(i),delete this.isDragSelect,this.dispatchEvent("dragEnd",t,[e])}},s.dragEndRestingSelect=function(){var t=this.getRestingPosition(),e=Math.abs(this.getSlideDistance(-t,this.selectedIndex)),i=this._getClosestResting(t,e,1),n=this._getClosestResting(t,e,-1);return i.distance<n.distance?i.index:n.index},s._getClosestResting=function(t,e,i){for(var n=this.selectedIndex,s=1/0,o=this.options.contain&&!this.options.wrapAround?function(t,e){return t<=e}:function(t,e){return t<e};o(e,s)&&(n+=i,s=e,null!==(e=this.getSlideDistance(-t,n)));)e=Math.abs(e);return{distance:s,index:n-i}},s.getSlideDistance=function(t,e){var i=this.slides.length,s=this.options.wrapAround&&i>1,o=s?n.modulo(e,i):e,r=this.slides[o];if(!r)return null;var a=s?this.slideableWidth*Math.floor(e/i):0;return t-(r.target+a)},s.dragEndBoostSelect=function(){if(void 0===this.previousDragX||!this.dragMoveTime||new Date-this.dragMoveTime>100)return 0;var t=this.getSlideDistance(-this.dragX,this.selectedIndex),e=this.previousDragX-this.dragX;return t>0&&e>0?1:t<0&&e<0?-1:0},s.staticClick=function(t,e){var i=this.getParentCell(t.target),n=i&&i.element,s=i&&this.cells.indexOf(i);this.dispatchEvent("staticClick",t,[e,n,s])},s.onscroll=function(){var t=h(),e=this.pointerDownScroll.x-t.x,i=this.pointerDownScroll.y-t.y;(Math.abs(e)>3||Math.abs(i)>3)&&this._pointerDone()},e}(o,t,e,i)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;
39
  /*!
40
  * Unidragger v2.3.0
41
  * Draggable base class
@@ -46,31 +46,22 @@
46
  * Draggable base class
47
  * MIT license
48
  */
49
- !function(o,r){n=[i(5)],void 0===(s=function(t){return function(t,e){"use strict";function i(){}var n=i.prototype=Object.create(e.prototype);n.bindHandles=function(){this._bindHandles(!0)},n.unbindHandles=function(){this._bindHandles(!1)},n._bindHandles=function(e){for(var i=(e=void 0===e||e)?"addEventListener":"removeEventListener",n=e?this._touchActionValue:"",s=0;s<this.handles.length;s++){var o=this.handles[s];this._bindStartEvent(o,e),o[i]("click",this),t.PointerEvent&&(o.style.touchAction=n)}},n._touchActionValue="none",n.pointerDown=function(t,e){var i=this.okayPointerDown(t);i&&(this.pointerDownPointer=e,t.preventDefault(),this.pointerDownBlur(),this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e]))};var s={TEXTAREA:!0,INPUT:!0,SELECT:!0,OPTION:!0},o={radio:!0,checkbox:!0,button:!0,submit:!0,image:!0,file:!0};return n.okayPointerDown=function(t){var e=s[t.target.nodeName],i=o[t.target.type],n=!e||i;return n||this._pointerReset(),n},n.pointerDownBlur=function(){var t=document.activeElement;t&&t.blur&&t!=document.body&&t.blur()},n.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.emitEvent("pointerMove",[t,e,i]),this._dragMove(t,e,i)},n._dragPointerMove=function(t,e){var i={x:e.pageX-this.pointerDownPointer.pageX,y:e.pageY-this.pointerDownPointer.pageY};return!this.isDragging&&this.hasDragStarted(i)&&this._dragStart(t,e),i},n.hasDragStarted=function(t){return Math.abs(t.x)>3||Math.abs(t.y)>3},n.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e]),this._dragPointerUp(t,e)},n._dragPointerUp=function(t,e){this.isDragging?this._dragEnd(t,e):this._staticClick(t,e)},n._dragStart=function(t,e){this.isDragging=!0,this.isPreventingClicks=!0,this.dragStart(t,e)},n.dragStart=function(t,e){this.emitEvent("dragStart",[t,e])},n._dragMove=function(t,e,i){this.isDragging&&this.dragMove(t,e,i)},n.dragMove=function(t,e,i){t.preventDefault(),this.emitEvent("dragMove",[t,e,i])},n._dragEnd=function(t,e){this.isDragging=!1,setTimeout(function(){delete this.isPreventingClicks}.bind(this)),this.dragEnd(t,e)},n.dragEnd=function(t,e){this.emitEvent("dragEnd",[t,e])},n.onclick=function(t){this.isPreventingClicks&&t.preventDefault()},n._staticClick=function(t,e){this.isIgnoringMouseUp&&"mouseup"==t.type||(this.staticClick(t,e),"mouseup"!=t.type&&(this.isIgnoringMouseUp=!0,setTimeout(function(){delete this.isIgnoringMouseUp}.bind(this),400)))},n.staticClick=function(t,e){this.emitEvent("staticClick",[t,e])},i.getPointerPoint=e.getPointerPoint,i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;window,n=[i(2),i(6),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";var s="http://www.w3.org/2000/svg";function o(t,e){this.direction=t,this.parent=e,this._create()}o.prototype=Object.create(i.prototype),o.prototype._create=function(){this.isEnabled=!0,this.isPrevious=-1==this.direction;var t=this.parent.options.rightToLeft?1:-1;this.isLeft=this.direction==t;var e=this.element=document.createElement("button");e.className="flickity-button flickity-prev-next-button",e.className+=this.isPrevious?" previous":" next",e.setAttribute("type","button"),this.disable(),e.setAttribute("aria-label",this.isPrevious?"Previous":"Next");var i=this.createSVG();e.appendChild(i),this.on("tap",this.onTap),this.parent.on("select",this.update.bind(this)),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},o.prototype.activate=function(){this.bindTap(this.element),this.element.addEventListener("click",this),this.parent.element.appendChild(this.element)},o.prototype.deactivate=function(){this.parent.element.removeChild(this.element),i.prototype.destroy.call(this),this.element.removeEventListener("click",this)},o.prototype.createSVG=function(){var t=document.createElementNS(s,"svg");t.setAttribute("class","flickity-button-icon"),t.setAttribute("viewBox","0 0 100 100");var e=document.createElementNS(s,"path"),i=function(t){return"string"==typeof t?t:"M "+t.x0+",50 L "+t.x1+","+(t.y1+50)+" L "+t.x2+","+(t.y2+50)+" L "+t.x3+",50 L "+t.x2+","+(50-t.y2)+" L "+t.x1+","+(50-t.y1)+" Z"}(this.parent.options.arrowShape);return e.setAttribute("d",i),e.setAttribute("class","arrow"),this.isLeft||e.setAttribute("transform","translate(100, 100) rotate(180) "),t.appendChild(e),t},o.prototype.onTap=function(){if(this.isEnabled){this.parent.uiChange();var t=this.isPrevious?"previous":"next";this.parent[t]()}},o.prototype.handleEvent=n.handleEvent,o.prototype.onclick=function(t){var e=document.activeElement;e&&e==this.element&&this.onTap(t,t)},o.prototype.enable=function(){this.isEnabled||(this.element.disabled=!1,this.isEnabled=!0)},o.prototype.disable=function(){this.isEnabled&&(this.element.disabled=!0,this.isEnabled=!1)},o.prototype.update=function(){var t=this.parent.slides;if(this.parent.options.wrapAround&&t.length>1)this.enable();else{var e=t.length?t.length-1:0,i=this.isPrevious?0:e,n=this.parent.selectedIndex==i?"disable":"enable";this[n]()}},o.prototype.destroy=function(){this.deactivate()},n.extend(e.defaults,{prevNextButtons:!0,arrowShape:{x0:10,x1:60,y1:50,x2:70,y2:40,x3:30}}),e.createMethods.push("_createPrevNextButtons");var r=e.prototype;return r._createPrevNextButtons=function(){this.options.prevNextButtons&&(this.prevButton=new o(-1,this),this.nextButton=new o(1,this),this.on("activate",this.activatePrevNextButtons))},r.activatePrevNextButtons=function(){this.prevButton.activate(),this.nextButton.activate(),this.on("deactivate",this.deactivatePrevNextButtons)},r.deactivatePrevNextButtons=function(){this.prevButton.deactivate(),this.nextButton.deactivate(),this.off("deactivate",this.deactivatePrevNextButtons)},e.PrevNextButton=o,e}(0,t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(6),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";function s(t){this.parent=t,this._create()}s.prototype=new i,s.prototype._create=function(){this.holder=document.createElement("ol"),this.holder.className="flickity-page-dots",this.dots=[],this.on("tap",this.onTap),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},s.prototype.activate=function(){this.setDots(),this.bindTap(this.holder),this.parent.element.appendChild(this.holder)},s.prototype.deactivate=function(){this.parent.element.removeChild(this.holder),i.prototype.destroy.call(this)},s.prototype.setDots=function(){var t=this.parent.slides.length-this.dots.length;t>0?this.addDots(t):t<0&&this.removeDots(-t)},s.prototype.addDots=function(t){for(var e=document.createDocumentFragment(),i=[],n=this.dots.length,s=n+t,o=n;o<s;o++){var r=document.createElement("li");r.className="dot",r.setAttribute("aria-label","Page dot "+(o+1)),e.appendChild(r),i.push(r)}this.holder.appendChild(e),this.dots=this.dots.concat(i)},s.prototype.removeDots=function(t){var e=this.dots.splice(this.dots.length-t,t);e.forEach(function(t){this.holder.removeChild(t)},this)},s.prototype.updateSelected=function(){this.selectedDot&&(this.selectedDot.className="dot",this.selectedDot.removeAttribute("aria-current")),this.dots.length&&(this.selectedDot=this.dots[this.parent.selectedIndex],this.selectedDot.className="dot is-selected",this.selectedDot.setAttribute("aria-current","step"))},s.prototype.onTap=function(t){var e=t.target;if("LI"==e.nodeName){this.parent.uiChange();var i=this.dots.indexOf(e);this.parent.select(i)}},s.prototype.destroy=function(){this.deactivate()},e.PageDots=s,n.extend(e.defaults,{pageDots:!0}),e.createMethods.push("_createPageDots");var o=e.prototype;return o._createPageDots=function(){this.options.pageDots&&(this.pageDots=new s(this),this.on("activate",this.activatePageDots),this.on("select",this.updateSelectedPageDots),this.on("cellChange",this.updatePageDots),this.on("resize",this.updatePageDots),this.on("deactivate",this.deactivatePageDots))},o.activatePageDots=function(){this.pageDots.activate()},o.updateSelectedPageDots=function(){this.pageDots.updateSelected()},o.updatePageDots=function(){this.pageDots.setDots()},o.deactivatePageDots=function(){this.pageDots.deactivate()},e.PageDots=s,e}(0,t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(3),i(1),i(2)],void 0===(s=function(t,e,i){return function(t,e,i){"use strict";function n(t){this.parent=t,this.state="stopped",this.onVisibilityChange=this.visibilityChange.bind(this),this.onVisibilityPlay=this.visibilityPlay.bind(this)}n.prototype=Object.create(t.prototype),n.prototype.play=function(){if("playing"!=this.state){var t=document.hidden;t?document.addEventListener("visibilitychange",this.onVisibilityPlay):(this.state="playing",document.addEventListener("visibilitychange",this.onVisibilityChange),this.tick())}},n.prototype.tick=function(){if("playing"==this.state){var t=this.parent.options.autoPlay;t="number"==typeof t?t:3e3;var e=this;this.clear(),this.timeout=setTimeout(function(){e.parent.next(!0),e.tick()},t)}},n.prototype.stop=function(){this.state="stopped",this.clear(),document.removeEventListener("visibilitychange",this.onVisibilityChange)},n.prototype.clear=function(){clearTimeout(this.timeout)},n.prototype.pause=function(){"playing"==this.state&&(this.state="paused",this.clear())},n.prototype.unpause=function(){"paused"==this.state&&this.play()},n.prototype.visibilityChange=function(){var t=document.hidden;this[t?"pause":"unpause"]()},n.prototype.visibilityPlay=function(){this.play(),document.removeEventListener("visibilitychange",this.onVisibilityPlay)},e.extend(i.defaults,{pauseAutoPlayOnHover:!0}),i.createMethods.push("_createPlayer");var s=i.prototype;return s._createPlayer=function(){this.player=new n(this),this.on("activate",this.activatePlayer),this.on("uiChange",this.stopPlayer),this.on("pointerDown",this.stopPlayer),this.on("deactivate",this.deactivatePlayer)},s.activatePlayer=function(){this.options.autoPlay&&(this.player.play(),this.element.addEventListener("mouseenter",this))},s.playPlayer=function(){this.player.play()},s.stopPlayer=function(){this.player.stop()},s.pausePlayer=function(){this.player.pause()},s.unpausePlayer=function(){this.player.unpause()},s.deactivatePlayer=function(){this.player.stop(),this.element.removeEventListener("mouseenter",this)},s.onmouseenter=function(){this.options.pauseAutoPlayOnHover&&(this.player.pause(),this.element.addEventListener("mouseleave",this))},s.onmouseleave=function(){this.player.unpause(),this.element.removeEventListener("mouseleave",this)},i.Player=n,i}(t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(1)],void 0===(s=function(t,e){return function(t,e,i){"use strict";var n=e.prototype;return n.insert=function(t,e){var i=this._makeCells(t);if(i&&i.length){var n=this.cells.length;e=void 0===e?n:e;var s=function(t){var e=document.createDocumentFragment();return t.forEach(function(t){e.appendChild(t.element)}),e}(i),o=e==n;if(o)this.slider.appendChild(s);else{var r=this.cells[e].element;this.slider.insertBefore(s,r)}if(0===e)this.cells=i.concat(this.cells);else if(o)this.cells=this.cells.concat(i);else{var a=this.cells.splice(e,n-e);this.cells=this.cells.concat(i).concat(a)}this._sizeCells(i),this.cellChange(e,!0)}},n.append=function(t){this.insert(t,this.cells.length)},n.prepend=function(t){this.insert(t,0)},n.remove=function(t){var e=this.getCells(t);if(e&&e.length){var n=this.cells.length-1;e.forEach(function(t){t.remove();var e=this.cells.indexOf(t);n=Math.min(e,n),i.removeFrom(this.cells,t)},this),this.cellChange(n,!0)}},n.cellSizeChange=function(t){var e=this.getCell(t);if(e){e.getSize();var i=this.cells.indexOf(e);this.cellChange(i)}},n.cellChange=function(t,e){var i=this.selectedElement;this._positionCells(t),this._getWrapShiftCells(),this.setGallerySize();var n=this.getCell(i);n&&(this.selectedIndex=this.getCellSlideIndex(n)),this.selectedIndex=Math.min(this.slides.length-1,this.selectedIndex),this.emitEvent("cellChange",[t]),this.select(this.selectedIndex),e&&this.positionSliderAtSelected()},e}(0,t,e)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(1)],void 0===(s=function(t,e){return function(t,e,i){"use strict";e.createMethods.push("_createLazyload");var n=e.prototype;function s(t,e){this.img=t,this.flickity=e,this.load()}return n._createLazyload=function(){this.on("select",this.lazyLoad)},n.lazyLoad=function(){var t=this.options.lazyLoad;if(t){var e="number"==typeof t?t:0,n=[];this.getAdjacentCellElements(e).forEach(function(t){var e=function(t){if("IMG"==t.nodeName){var e=t.getAttribute("data-flickity-lazyload"),n=t.getAttribute("data-flickity-lazyload-src"),s=t.getAttribute("data-flickity-lazyload-srcset");if(e||n||s)return[t]}var o=t.querySelectorAll("img[data-flickity-lazyload], img[data-flickity-lazyload-src], img[data-flickity-lazyload-srcset]");return i.makeArray(o)}(t);n=n.concat(e)}),n.forEach(function(t){new s(t,this)},this)}},s.prototype.handleEvent=i.handleEvent,s.prototype.load=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this);var t=this.img.getAttribute("data-flickity-lazyload")||this.img.getAttribute("data-flickity-lazyload-src"),e=this.img.getAttribute("data-flickity-lazyload-srcset");this.img.src=t,e&&this.img.setAttribute("srcset",e),this.img.removeAttribute("data-flickity-lazyload"),this.img.removeAttribute("data-flickity-lazyload-src"),this.img.removeAttribute("data-flickity-lazyload-srcset")},s.prototype.onload=function(t){this.complete(t,"flickity-lazyloaded")},s.prototype.onerror=function(t){this.complete(t,"flickity-lazyerror")},s.prototype.complete=function(t,e){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this);var i=this.flickity.getParentCell(this.img),n=i&&i.element;this.flickity.cellSizeChange(n),this.img.classList.add(e),this.flickity.dispatchEvent("lazyLoad",t,n)},e.LazyLoader=s,e}(0,t,e)}.apply(e,n))||(t.exports=s)},,,,,,,,,,function(t,e){const i="Coming Soon Blocks",n="🤘 https://pixelthrone.com",s={color1:"#474B53",color2:"#FFFFFF",color3:"#474B53",bg:"#ffc400"};console.log("%c// made by %c— "+i+" —%c "+n,"padding:8px 5px; color:"+s.color1+"; line-height:20px;","padding:8px 15px; color:"+s.color2+"; background-color:"+s.bg+"; line-height:20px;","padding:8px 5px; color:"+s.color3+"; line-height:20px;")},,function(t,e,i){"use strict";i.r(e);i(50),i(29);function n(t,e,i){const n=new Date;n.setTime(n.getTime()+24*i*60*60*1e3);const s="expires="+n.toUTCString();document.cookie=t+"="+e+";"+s+";path=/"}document.addEventListener("DOMContentLoaded",new
50
  /**
51
  * Password protected component.
52
  *
53
  * @package Coming Soon Blocks
54
  * @author Helder Vilela from Pixelthrone
55
- * @link Helder Vilela from Pixelthrone_uri
56
  * @license GPL-3.0
57
  */
58
- class{constructor(){this.element=document.querySelector('[data-component="unlock-page"]'),this.element&&(this.body=document.body,this.Input=this.element.querySelector("input"),this.config={restURL:document.querySelector("body").dataset.resturl,nonce:document.querySelector("body").dataset.nonce},this.init())}init(){const t=this.element.querySelector(".button"),e=this.element.querySelector(".page-overlayer"),i=this.Input;this.body,t.addEventListener("click",t=>{t.preventDefault(),"close"===this.element.dataset.mode?this.element.dataset.mode="open":this.submit()}),e.addEventListener("click",t=>{t.preventDefault(),this.element.dataset.mode="close",i.value="",i.classList.remove("-error")})}submit(){const t=this.Input;""===t.value?(t.classList.add("-error"),t.onkeypress=function(){t.classList.remove("-error"),delete t.onkeypress}):(this.element.dataset.loading=!0,fetch(function(t,e){let i="";for(const t in e)if(e.hasOwnProperty(t)){const n=e[t];i+=encodeURIComponent(t)+"="+encodeURIComponent(n)+"&"}return i.length>0&&(t=t+"?"+(i=i.substring(0,i.length-1))),t}(this.config.restURL+"v1/unlockpage",{_wpnonce:this.config.nonce,pwd:t.value}),{method:"GET"}).then(t=>Promise.all([t.ok,t.json()])).then(([t,e])=>{t?location.reload():(this.element.dataset.message=!0,this.element.querySelector(".content__wrapper span").innerHTML=`<p class="-error">${e.message}</p>`,this.element.dataset.loading=!1,setTimeout(()=>{this.element.dataset.message=!1},3e3))}))}},!1);document.addEventListener("DOMContentLoaded",new
59
  /**
60
  * Password protected component.
61
  *
62
  * @package Coming Soon Blocks
63
  * @author Helder Vilela from Pixelthrone
64
- * @link Helder Vilela from Pixelthrone_uri
65
  * @license GPL-3.0
66
  */
67
- class{constructor(){this.element=document.querySelector('[data-component="cookie-notice"]'),this.element&&(this.config={restURL:document.querySelector("body").dataset.resturl,nonce:document.querySelector("body").dataset.nonce},this.init())}init(){this.element.querySelector("button").addEventListener("click",t=>{t.preventDefault(),n("comingsoonblocks__cookie_notice","true",365),this.element.classList.add("-leave"),setTimeout(()=>this.element.remove(),2e3)})}},!1);var s=i(8),o=i.n(s);
68
- /**
69
- * Block slideshow background.
70
- *
71
- * @package Coming Soon Blocks
72
- * @author Helder Vilela from Pixelthrone
73
- * @link Helder Vilela from Pixelthrone_uri
74
- * @license GPL-3.0
75
- */
76
- const r={autoPlay:5e3,pageDots:!1,prevNextButtons:!1,draggable:!1,wrapAround:!0};document.addEventListener("DOMContentLoaded",function(){const t=document.querySelector('[data-component="slideshow-background"] > div');t&&new o.a(t,r)}(),!1)},,,,,,,,,,,,,,,,,,,function(t,e){}]);
1
+ !function(t){var e={};function i(n){if(e[n])return e[n].exports;var s=e[n]={i:n,l:!1,exports:{}};return t[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)i.d(n,s,function(e){return t[e]}.bind(null,s));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=48)}([,function(t,e,i){var n,s;!function(o,r){n=[i(11)],void 0===(s=function(t){return function(t,e){"use strict";var i={extend:function(t,e){for(var i in e)t[i]=e[i];return t},modulo:function(t,e){return(t%e+e)%e}},n=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?n.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){var s=[];return(t=i.makeArray(t)).forEach(function(t){if(t instanceof HTMLElement)if(n){e(t,n)&&s.push(t);for(var i=t.querySelectorAll(n),o=0;o<i.length;o++)s.push(i[o])}else s.push(t)}),s},i.debounceMethod=function(t,e,i){i=i||100;var n=t.prototype[e],s=e+"Timeout";t.prototype[e]=function(){var t=this[s];clearTimeout(t);var e=arguments,o=this;this[s]=setTimeout(function(){n.apply(o,e),delete o[s]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var s=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var o=i.toDashed(n),r="data-"+o,a=document.querySelectorAll("["+r+"]"),l=document.querySelectorAll(".js-"+o),h=i.makeArray(a).concat(i.makeArray(l)),c=r+"-options",d=t.jQuery;h.forEach(function(t){var i,o=t.getAttribute(r)||t.getAttribute(c);try{i=o&&JSON.parse(o)}catch(e){return void(s&&s.error("Error parsing "+r+" on "+t.className+": "+e))}var a=new e(t,i);d&&d.data(t,n,a)})})},i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;!function(o,r){n=[i(3),i(4),i(1),i(12),i(13),i(14)],void 0===(s=function(t,e,i,n,s,r){return function(t,e,i,n,s,o,r){"use strict";var a=t.jQuery,l=t.getComputedStyle,h=t.console;function c(t,e){for(t=n.makeArray(t);t.length;)e.appendChild(t.shift())}var d=0,u={};function p(t,e){var i=n.getQueryElement(t);if(i){if(this.element=i,this.element.flickityGUID){var s=u[this.element.flickityGUID];return s.option(e),s}a&&(this.$element=a(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e),this._create()}else h&&h.error("Bad element for Flickity: "+(i||t))}p.defaults={accessibility:!0,cellAlign:"center",freeScrollFriction:.075,friction:.28,namespaceJQueryEvents:!0,percentPosition:!0,resize:!0,selectedAttraction:.025,setGallerySize:!0},p.createMethods=[];var f=p.prototype;n.extend(f,e.prototype),f._create=function(){var e=this.guid=++d;for(var i in this.element.flickityGUID=e,u[e]=this,this.selectedIndex=0,this.restingFrames=0,this.x=0,this.velocity=0,this.originSide=this.options.rightToLeft?"right":"left",this.viewport=document.createElement("div"),this.viewport.className="flickity-viewport",this._createSlider(),(this.options.resize||this.options.watchCSS)&&t.addEventListener("resize",this),this.options.on){var n=this.options.on[i];this.on(i,n)}p.createMethods.forEach(function(t){this[t]()},this),this.options.watchCSS?this.watchCSS():this.activate()},f.option=function(t){n.extend(this.options,t)},f.activate=function(){if(!this.isActive){this.isActive=!0,this.element.classList.add("flickity-enabled"),this.options.rightToLeft&&this.element.classList.add("flickity-rtl"),this.getSize();var t,e=this._filterFindCellElements(this.element.children);c(e,this.slider),this.viewport.appendChild(this.slider),this.element.appendChild(this.viewport),this.reloadCells(),this.options.accessibility&&(this.element.tabIndex=0,this.element.addEventListener("keydown",this)),this.emitEvent("activate");var i=this.options.initialIndex;t=this.isInitActivated?this.selectedIndex:void 0!==i&&this.cells[i]?i:0,this.select(t,!1,!0),this.isInitActivated=!0,this.dispatchEvent("ready")}},f._createSlider=function(){var t=document.createElement("div");t.className="flickity-slider",t.style[this.originSide]=0,this.slider=t},f._filterFindCellElements=function(t){return n.filterFindElements(t,this.options.cellSelector)},f.reloadCells=function(){this.cells=this._makeCells(this.slider.children),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize()},f._makeCells=function(t){var e=this._filterFindCellElements(t),i=e.map(function(t){return new s(t,this)},this);return i},f.getLastCell=function(){return this.cells[this.cells.length-1]},f.getLastSlide=function(){return this.slides[this.slides.length-1]},f.positionCells=function(){this._sizeCells(this.cells),this._positionCells(0)},f._positionCells=function(t){t=t||0,this.maxCellHeight=t&&this.maxCellHeight||0;var e=0;if(t>0){var i=this.cells[t-1];e=i.x+i.size.outerWidth}for(var n=this.cells.length,s=t;s<n;s++){var o=this.cells[s];o.setPosition(e),e+=o.size.outerWidth,this.maxCellHeight=Math.max(o.size.outerHeight,this.maxCellHeight)}this.slideableWidth=e,this.updateSlides(),this._containSlides(),this.slidesWidth=n?this.getLastSlide().target-this.slides[0].target:0},f._sizeCells=function(t){t.forEach(function(t){t.getSize()})},f.updateSlides=function(){if(this.slides=[],this.cells.length){var t=new o(this);this.slides.push(t);var e="left"==this.originSide,i=e?"marginRight":"marginLeft",n=this._getCanCellFit();this.cells.forEach(function(e,s){if(t.cells.length){var r=t.outerWidth-t.firstMargin+(e.size.outerWidth-e.size[i]);n.call(this,s,r)?t.addCell(e):(t.updateTarget(),t=new o(this),this.slides.push(t),t.addCell(e))}else t.addCell(e)},this),t.updateTarget(),this.updateSelectedSlide()}},f._getCanCellFit=function(){var t=this.options.groupCells;if(!t)return function(){return!1};if("number"==typeof t){var e=parseInt(t,10);return function(t){return t%e!=0}}var i="string"==typeof t&&t.match(/^(\d+)%$/),n=i?parseInt(i[1],10)/100:1;return function(t,e){return e<=(this.size.innerWidth+1)*n}},f._init=f.reposition=function(){this.positionCells(),this.positionSliderAtSelected()},f.getSize=function(){this.size=i(this.element),this.setCellAlign(),this.cursorPosition=this.size.innerWidth*this.cellAlign};var v={center:{left:.5,right:.5},left:{left:0,right:1},right:{right:0,left:1}};f.setCellAlign=function(){var t=v[this.options.cellAlign];this.cellAlign=t?t[this.originSide]:this.options.cellAlign},f.setGallerySize=function(){if(this.options.setGallerySize){var t=this.options.adaptiveHeight&&this.selectedSlide?this.selectedSlide.height:this.maxCellHeight;this.viewport.style.height=t+"px"}},f._getWrapShiftCells=function(){if(this.options.wrapAround){this._unshiftCells(this.beforeShiftCells),this._unshiftCells(this.afterShiftCells);var t=this.cursorPosition,e=this.cells.length-1;this.beforeShiftCells=this._getGapCells(t,e,-1),t=this.size.innerWidth-this.cursorPosition,this.afterShiftCells=this._getGapCells(t,0,1)}},f._getGapCells=function(t,e,i){for(var n=[];t>0;){var s=this.cells[e];if(!s)break;n.push(s),e+=i,t-=s.size.outerWidth}return n},f._containSlides=function(){if(this.options.contain&&!this.options.wrapAround&&this.cells.length){var t=this.options.rightToLeft,e=t?"marginRight":"marginLeft",i=t?"marginLeft":"marginRight",n=this.slideableWidth-this.getLastCell().size[i],s=n<this.size.innerWidth,o=this.cursorPosition+this.cells[0].size[e],r=n-this.size.innerWidth*(1-this.cellAlign);this.slides.forEach(function(t){s?t.target=n*this.cellAlign:(t.target=Math.max(t.target,o),t.target=Math.min(t.target,r))},this)}},f.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),a&&this.$element){var s=t+=this.options.namespaceJQueryEvents?".flickity":"";if(e){var o=a.Event(e);o.type=t,s=o}this.$element.trigger(s,i)}},f.select=function(t,e,i){if(this.isActive&&(t=parseInt(t,10),this._wrapSelect(t),(this.options.wrapAround||e)&&(t=n.modulo(t,this.slides.length)),this.slides[t])){var s=this.selectedIndex;this.selectedIndex=t,this.updateSelectedSlide(),i?this.positionSliderAtSelected():this.startAnimation(),this.options.adaptiveHeight&&this.setGallerySize(),this.dispatchEvent("select",null,[t]),t!=s&&this.dispatchEvent("change",null,[t]),this.dispatchEvent("cellSelect")}},f._wrapSelect=function(t){var e=this.slides.length;if(!(this.options.wrapAround&&e>1))return t;var i=n.modulo(t,e),s=Math.abs(i-this.selectedIndex),o=Math.abs(i+e-this.selectedIndex),r=Math.abs(i-e-this.selectedIndex);!this.isDragSelect&&o<s?t+=e:!this.isDragSelect&&r<s&&(t-=e),t<0?this.x-=this.slideableWidth:t>=e&&(this.x+=this.slideableWidth)},f.previous=function(t,e){this.select(this.selectedIndex-1,t,e)},f.next=function(t,e){this.select(this.selectedIndex+1,t,e)},f.updateSelectedSlide=function(){var t=this.slides[this.selectedIndex];t&&(this.unselectSelectedSlide(),this.selectedSlide=t,t.select(),this.selectedCells=t.cells,this.selectedElements=t.getCellElements(),this.selectedCell=t.cells[0],this.selectedElement=this.selectedElements[0])},f.unselectSelectedSlide=function(){this.selectedSlide&&this.selectedSlide.unselect()},f.selectCell=function(t,e,i){var n=this.queryCell(t);if(n){var s=this.getCellSlideIndex(n);this.select(s,e,i)}},f.getCellSlideIndex=function(t){for(var e=0;e<this.slides.length;e++)if(-1!=this.slides[e].cells.indexOf(t))return e},f.getCell=function(t){for(var e=0;e<this.cells.length;e++){var i=this.cells[e];if(i.element==t)return i}},f.getCells=function(t){var e=[];return(t=n.makeArray(t)).forEach(function(t){var i=this.getCell(t);i&&e.push(i)},this),e},f.getCellElements=function(){return this.cells.map(function(t){return t.element})},f.getParentCell=function(t){var e=this.getCell(t);return e||(t=n.getParent(t,".flickity-slider > *"),this.getCell(t))},f.getAdjacentCellElements=function(t,e){if(!t)return this.selectedSlide.getCellElements();e=void 0===e?this.selectedIndex:e;var i=this.slides.length;if(1+2*t>=i)return this.getCellElements();for(var s=[],o=e-t;o<=e+t;o++){var r=this.options.wrapAround?n.modulo(o,i):o,a=this.slides[r];a&&(s=s.concat(a.getCellElements()))}return s},f.queryCell=function(t){return"number"==typeof t?this.cells[t]:("string"==typeof t&&(t=this.element.querySelector(t)),this.getCell(t))},f.uiChange=function(){this.emitEvent("uiChange")},f.childUIPointerDown=function(t){this.emitEvent("childUIPointerDown",[t])},f.onresize=function(){this.watchCSS(),this.resize()},n.debounceMethod(p,"onresize",150),f.resize=function(){if(this.isActive){this.getSize(),this.options.wrapAround&&(this.x=n.modulo(this.x,this.slideableWidth)),this.positionCells(),this._getWrapShiftCells(),this.setGallerySize(),this.emitEvent("resize");var t=this.selectedElements&&this.selectedElements[0];this.selectCell(t,!1,!0)}},f.watchCSS=function(){this.options.watchCSS&&(-1!=l(this.element,":after").content.indexOf("flickity")?this.activate():this.deactivate())},f.onkeydown=function(t){var e=document.activeElement&&document.activeElement!=this.element;if(this.options.accessibility&&!e){var i=p.keyboardHandlers[t.keyCode];i&&i.call(this)}},p.keyboardHandlers={37:function(){var t=this.options.rightToLeft?"next":"previous";this.uiChange(),this[t]()},39:function(){var t=this.options.rightToLeft?"previous":"next";this.uiChange(),this[t]()}},f.focus=function(){var e=t.pageYOffset;this.element.focus({preventScroll:!0}),t.pageYOffset!=e&&t.scrollTo(t.pageXOffset,e)},f.deactivate=function(){this.isActive&&(this.element.classList.remove("flickity-enabled"),this.element.classList.remove("flickity-rtl"),this.unselectSelectedSlide(),this.cells.forEach(function(t){t.destroy()}),this.element.removeChild(this.viewport),c(this.slider.children,this.element),this.options.accessibility&&(this.element.removeAttribute("tabIndex"),this.element.removeEventListener("keydown",this)),this.isActive=!1,this.emitEvent("deactivate"))},f.destroy=function(){this.deactivate(),t.removeEventListener("resize",this),this.emitEvent("destroy"),a&&this.$element&&a.removeData(this.element,"flickity"),delete this.element.flickityGUID,delete u[this.guid]},n.extend(f,r),p.data=function(t){var e=(t=n.getQueryElement(t))&&t.flickityGUID;return e&&u[e]},n.htmlInit(p,"flickity"),a&&a.bridget&&a.bridget("flickity",p);return p.setJQuery=function(t){a=t},p.Cell=s,p}(o,t,e,i,n,s,r)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;"undefined"!=typeof window&&window,void 0===(s="function"==typeof(n=function(){"use strict";function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{};return(i[t]=i[t]||{})[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var n=this._onceEvents&&this._onceEvents[t],s=0;s<i.length;s++){var o=i[s];n&&n[o]&&(this.off(t,o),delete n[o]),o.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;
2
  /*!
3
  * getSize v2.0.3
4
  * measure size of elements
5
  * MIT license
6
+ */window,void 0===(s="function"==typeof(n=function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}var e="undefined"==typeof console?function(){}:function(t){console.error(t)},i=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],n=i.length;function s(t){var i=getComputedStyle(t);return i||e("Style returned "+i+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),i}var o,r=!1;function a(e){if(function(){if(!r){r=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=s(e);o=200==Math.round(t(n.width)),a.isBoxSizeOuter=o,i.removeChild(e)}}(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var l=s(e);if("none"==l.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<n;e++){var s=i[e];t[s]=0}return t}();var h={};h.width=e.offsetWidth,h.height=e.offsetHeight;for(var c=h.isBorderBox="border-box"==l.boxSizing,d=0;d<n;d++){var u=i[d],p=l[u],f=parseFloat(p);h[u]=isNaN(f)?0:f}var v=h.paddingLeft+h.paddingRight,g=h.paddingTop+h.paddingBottom,m=h.marginLeft+h.marginRight,y=h.marginTop+h.marginBottom,b=h.borderLeftWidth+h.borderRightWidth,S=h.borderTopWidth+h.borderBottomWidth,E=c&&o,w=t(l.width);!1!==w&&(h.width=w+(E?0:v+b));var x=t(l.height);return!1!==x&&(h.height=x+(E?0:g+S)),h.innerWidth=h.width-(v+b),h.innerHeight=h.height-(g+S),h.outerWidth=h.width+m,h.outerHeight=h.height+y,h}}return a})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;
7
  /*!
8
  * Unipointer v2.3.0
9
  * base class for doing one thing with pointer event
25
  * listens to taps
26
  * MIT license
27
  */
28
+ !function(o,r){n=[i(5)],void 0===(s=function(t){return function(t,e){"use strict";function i(t){this.bindTap(t)}var n=i.prototype=Object.create(e.prototype);return n.bindTap=function(t){t&&(this.unbindTap(),this.tapElement=t,this._bindStartEvent(t,!0))},n.unbindTap=function(){this.tapElement&&(this._bindStartEvent(this.tapElement,!0),delete this.tapElement)},n.pointerUp=function(i,n){if(!this.isIgnoringMouseUp||"mouseup"!=i.type){var s=e.getPointerPoint(n),o=this.tapElement.getBoundingClientRect(),r=t.pageXOffset,a=t.pageYOffset;if(s.x>=o.left+r&&s.x<=o.right+r&&s.y>=o.top+a&&s.y<=o.bottom+a&&this.emitEvent("tap",[i,n]),"mouseup"!=i.type){this.isIgnoringMouseUp=!0;var l=this;setTimeout(function(){delete l.isIgnoringMouseUp},400)}}},n.destroy=function(){this.pointerDone(),this.unbindTap()},i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},,,,function(t,e,i){var n,s,o;
29
  /*!
30
  * Flickity v2.1.2
31
  * Touch, responsive, flickable carousels
35
  *
36
  * https://flickity.metafizzy.co
37
  * Copyright 2015-2018 Metafizzy
38
+ */window,s=[i(2),i(15),i(17),i(18),i(19),i(20),i(21)],void 0===(o="function"==typeof(n=function(t){return t})?n.apply(e,s):n)||(t.exports=o)},function(t,e,i){var n,s;!function(o,r){"use strict";void 0===(s="function"==typeof(n=r)?n.call(e,i,e,t):n)||(t.exports=s)}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i]+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}})},function(t,e,i){var n,s;window,n=[i(4)],void 0===(s=function(t){return function(t,e){"use strict";function i(t,e){this.element=t,this.parent=e,this.create()}var n=i.prototype;return n.create=function(){this.element.style.position="absolute",this.element.setAttribute("aria-selected","false"),this.x=0,this.shift=0},n.destroy=function(){this.element.style.position="";var t=this.parent.originSide;this.element.removeAttribute("aria-selected"),this.element.style[t]=""},n.getSize=function(){this.size=e(this.element)},n.setPosition=function(t){this.x=t,this.updateTarget(),this.renderPosition(t)},n.updateTarget=n.setDefaultTarget=function(){var t="left"==this.parent.originSide?"marginLeft":"marginRight";this.target=this.x+this.size[t]+this.size.width*this.parent.cellAlign},n.renderPosition=function(t){var e=this.parent.originSide;this.element.style[e]=this.parent.getPositionValue(t)},n.wrapShift=function(t){this.shift=t,this.renderPosition(this.x+this.parent.slideableWidth*t)},n.remove=function(){this.element.parentNode.removeChild(this.element)},i}(0,t)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,void 0===(s="function"==typeof(n=function(){"use strict";function t(t){this.parent=t,this.isOriginLeft="left"==t.originSide,this.cells=[],this.outerWidth=0,this.height=0}var e=t.prototype;return e.addCell=function(t){if(this.cells.push(t),this.outerWidth+=t.size.outerWidth,this.height=Math.max(t.size.outerHeight,this.height),1==this.cells.length){this.x=t.x;var e=this.isOriginLeft?"marginLeft":"marginRight";this.firstMargin=t.size[e]}},e.updateTarget=function(){var t=this.isOriginLeft?"marginRight":"marginLeft",e=this.getLastCell(),i=e?e.size[t]:0,n=this.outerWidth-(this.firstMargin+i);this.target=this.x+this.firstMargin+n*this.parent.cellAlign},e.getLastCell=function(){return this.cells[this.cells.length-1]},e.select=function(){this.changeSelected(!0)},e.unselect=function(){this.changeSelected(!1)},e.changeSelected=function(t){var e=t?"add":"remove";this.cells.forEach(function(i){i.element.classList[e]("is-selected"),i.element.setAttribute("aria-selected",t.toString())})},e.getCellElements=function(){return this.cells.map(function(t){return t.element})},t})?n.call(e,i,e,t):n)||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(1)],void 0===(s=function(t){return function(t,e){"use strict";var i={startAnimation:function(){this.isAnimating||(this.isAnimating=!0,this.restingFrames=0,this.animate())},animate:function(){this.applyDragForce(),this.applySelectedAttraction();var t=this.x;if(this.integratePhysics(),this.positionSlider(),this.settle(t),this.isAnimating){var e=this;requestAnimationFrame(function(){e.animate()})}},positionSlider:function(){var t=this.x;this.options.wrapAround&&this.cells.length>1&&(t=e.modulo(t,this.slideableWidth),t-=this.slideableWidth,this.shiftWrapCells(t)),t+=this.cursorPosition,t=this.options.rightToLeft?-t:t;var i=this.getPositionValue(t);this.slider.style.transform=this.isAnimating?"translate3d("+i+",0,0)":"translateX("+i+")";var n=this.slides[0];if(n){var s=-this.x-n.target,o=s/this.slidesWidth;this.dispatchEvent("scroll",null,[o,s])}},positionSliderAtSelected:function(){this.cells.length&&(this.x=-this.selectedSlide.target,this.velocity=0,this.positionSlider())},getPositionValue:function(t){return this.options.percentPosition?.01*Math.round(t/this.size.innerWidth*1e4)+"%":Math.round(t)+"px"},settle:function(t){this.isPointerDown||Math.round(100*this.x)!=Math.round(100*t)||this.restingFrames++,this.restingFrames>2&&(this.isAnimating=!1,delete this.isFreeScrolling,this.positionSlider(),this.dispatchEvent("settle",null,[this.selectedIndex]))},shiftWrapCells:function(t){var e=this.cursorPosition+t;this._shiftCells(this.beforeShiftCells,e,-1);var i=this.size.innerWidth-(t+this.slideableWidth+this.cursorPosition);this._shiftCells(this.afterShiftCells,i,1)},_shiftCells:function(t,e,i){for(var n=0;n<t.length;n++){var s=t[n],o=e>0?i:0;s.wrapShift(o),e-=s.size.outerWidth}},_unshiftCells:function(t){if(t&&t.length)for(var e=0;e<t.length;e++)t[e].wrapShift(0)},integratePhysics:function(){this.x+=this.velocity,this.velocity*=this.getFrictionFactor()},applyForce:function(t){this.velocity+=t},getFrictionFactor:function(){return 1-this.options[this.isFreeScrolling?"freeScrollFriction":"friction"]},getRestingPosition:function(){return this.x+this.velocity/(1-this.getFrictionFactor())},applyDragForce:function(){if(this.isDraggable&&this.isPointerDown){var t=this.dragX-this.x-this.velocity;this.applyForce(t)}},applySelectedAttraction:function(){if((!this.isDraggable||!this.isPointerDown)&&!this.isFreeScrolling&&this.slides.length){var t=(-1*this.selectedSlide.target-this.x)*this.options.selectedAttraction;this.applyForce(t)}}};return i}(0,t)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;!function(o,r){n=[i(2),i(16),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";n.extend(e.defaults,{draggable:">1",dragThreshold:3}),e.createMethods.push("_createDrag");var s=e.prototype;n.extend(s,i.prototype),s._touchActionValue="pan-y";var o="createTouch"in document,r=!1;s._createDrag=function(){this.on("activate",this.onActivateDrag),this.on("uiChange",this._uiChangeDrag),this.on("childUIPointerDown",this._childUIPointerDownDrag),this.on("deactivate",this.onDeactivateDrag),this.on("cellChange",this.updateDraggable),o&&!r&&(t.addEventListener("touchmove",function(){}),r=!0)},s.onActivateDrag=function(){this.handles=[this.viewport],this.bindHandles(),this.updateDraggable()},s.onDeactivateDrag=function(){this.unbindHandles(),this.element.classList.remove("is-draggable")},s.updateDraggable=function(){">1"==this.options.draggable?this.isDraggable=this.slides.length>1:this.isDraggable=this.options.draggable,this.isDraggable?this.element.classList.add("is-draggable"):this.element.classList.remove("is-draggable")},s.bindDrag=function(){this.options.draggable=!0,this.updateDraggable()},s.unbindDrag=function(){this.options.draggable=!1,this.updateDraggable()},s._uiChangeDrag=function(){delete this.isFreeScrolling},s._childUIPointerDownDrag=function(t){t.preventDefault(),this.pointerDownFocus(t)},s.pointerDown=function(e,i){if(this.isDraggable){var n=this.okayPointerDown(e);n&&(this._pointerDownPreventDefault(e),this.pointerDownFocus(e),document.activeElement!=this.element&&this.pointerDownBlur(),this.dragX=this.x,this.viewport.classList.add("is-pointer-down"),this.pointerDownScroll=l(),t.addEventListener("scroll",this),this._pointerDownDefault(e,i))}else this._pointerDownDefault(e,i)},s._pointerDownDefault=function(t,e){this.pointerDownPointer=e,this._bindPostStartEvents(t),this.dispatchEvent("pointerDown",t,[e])};var a={INPUT:!0,TEXTAREA:!0,SELECT:!0};function l(){return{x:t.pageXOffset,y:t.pageYOffset}}return s.pointerDownFocus=function(t){a[t.target.nodeName]||this.focus()},s._pointerDownPreventDefault=function(t){var e="touchstart"==t.type,i="touch"==t.pointerType,n=a[t.target.nodeName];e||i||n||t.preventDefault()},s.hasDragStarted=function(t){return Math.abs(t.x)>this.options.dragThreshold},s.pointerUp=function(t,e){delete this.isTouchScrolling,this.viewport.classList.remove("is-pointer-down"),this.dispatchEvent("pointerUp",t,[e]),this._dragPointerUp(t,e)},s.pointerDone=function(){t.removeEventListener("scroll",this),delete this.pointerDownScroll},s.dragStart=function(e,i){this.isDraggable&&(this.dragStartPosition=this.x,this.startAnimation(),t.removeEventListener("scroll",this),this.dispatchEvent("dragStart",e,[i]))},s.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.dispatchEvent("pointerMove",t,[e,i]),this._dragMove(t,e,i)},s.dragMove=function(t,e,i){if(this.isDraggable){t.preventDefault(),this.previousDragX=this.dragX;var n=this.options.rightToLeft?-1:1;this.options.wrapAround&&(i.x=i.x%this.slideableWidth);var s=this.dragStartPosition+i.x*n;if(!this.options.wrapAround&&this.slides.length){var o=Math.max(-this.slides[0].target,this.dragStartPosition);s=s>o?.5*(s+o):s;var r=Math.min(-this.getLastSlide().target,this.dragStartPosition);s=s<r?.5*(s+r):s}this.dragX=s,this.dragMoveTime=new Date,this.dispatchEvent("dragMove",t,[e,i])}},s.dragEnd=function(t,e){if(this.isDraggable){this.options.freeScroll&&(this.isFreeScrolling=!0);var i=this.dragEndRestingSelect();if(this.options.freeScroll&&!this.options.wrapAround){var n=this.getRestingPosition();this.isFreeScrolling=-n>this.slides[0].target&&-n<this.getLastSlide().target}else this.options.freeScroll||i!=this.selectedIndex||(i+=this.dragEndBoostSelect());delete this.previousDragX,this.isDragSelect=this.options.wrapAround,this.select(i),delete this.isDragSelect,this.dispatchEvent("dragEnd",t,[e])}},s.dragEndRestingSelect=function(){var t=this.getRestingPosition(),e=Math.abs(this.getSlideDistance(-t,this.selectedIndex)),i=this._getClosestResting(t,e,1),n=this._getClosestResting(t,e,-1);return i.distance<n.distance?i.index:n.index},s._getClosestResting=function(t,e,i){for(var n=this.selectedIndex,s=1/0,o=this.options.contain&&!this.options.wrapAround?function(t,e){return t<=e}:function(t,e){return t<e};o(e,s)&&(n+=i,s=e,null!==(e=this.getSlideDistance(-t,n)));)e=Math.abs(e);return{distance:s,index:n-i}},s.getSlideDistance=function(t,e){var i=this.slides.length,s=this.options.wrapAround&&i>1,o=s?n.modulo(e,i):e,r=this.slides[o];if(!r)return null;var a=s?this.slideableWidth*Math.floor(e/i):0;return t-(r.target+a)},s.dragEndBoostSelect=function(){if(void 0===this.previousDragX||!this.dragMoveTime||new Date-this.dragMoveTime>100)return 0;var t=this.getSlideDistance(-this.dragX,this.selectedIndex),e=this.previousDragX-this.dragX;return t>0&&e>0?1:t<0&&e<0?-1:0},s.staticClick=function(t,e){var i=this.getParentCell(t.target),n=i&&i.element,s=i&&this.cells.indexOf(i);this.dispatchEvent("staticClick",t,[e,n,s])},s.onscroll=function(){var t=l(),e=this.pointerDownScroll.x-t.x,i=this.pointerDownScroll.y-t.y;(Math.abs(e)>3||Math.abs(i)>3)&&this._pointerDone()},e}(o,t,e,i)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;
39
  /*!
40
  * Unidragger v2.3.0
41
  * Draggable base class
46
  * Draggable base class
47
  * MIT license
48
  */
49
+ !function(o,r){n=[i(5)],void 0===(s=function(t){return function(t,e){"use strict";function i(){}var n=i.prototype=Object.create(e.prototype);n.bindHandles=function(){this._bindHandles(!0)},n.unbindHandles=function(){this._bindHandles(!1)},n._bindHandles=function(e){for(var i=(e=void 0===e||e)?"addEventListener":"removeEventListener",n=e?this._touchActionValue:"",s=0;s<this.handles.length;s++){var o=this.handles[s];this._bindStartEvent(o,e),o[i]("click",this),t.PointerEvent&&(o.style.touchAction=n)}},n._touchActionValue="none",n.pointerDown=function(t,e){var i=this.okayPointerDown(t);i&&(this.pointerDownPointer=e,t.preventDefault(),this.pointerDownBlur(),this._bindPostStartEvents(t),this.emitEvent("pointerDown",[t,e]))};var s={TEXTAREA:!0,INPUT:!0,SELECT:!0,OPTION:!0},o={radio:!0,checkbox:!0,button:!0,submit:!0,image:!0,file:!0};return n.okayPointerDown=function(t){var e=s[t.target.nodeName],i=o[t.target.type],n=!e||i;return n||this._pointerReset(),n},n.pointerDownBlur=function(){var t=document.activeElement;t&&t.blur&&t!=document.body&&t.blur()},n.pointerMove=function(t,e){var i=this._dragPointerMove(t,e);this.emitEvent("pointerMove",[t,e,i]),this._dragMove(t,e,i)},n._dragPointerMove=function(t,e){var i={x:e.pageX-this.pointerDownPointer.pageX,y:e.pageY-this.pointerDownPointer.pageY};return!this.isDragging&&this.hasDragStarted(i)&&this._dragStart(t,e),i},n.hasDragStarted=function(t){return Math.abs(t.x)>3||Math.abs(t.y)>3},n.pointerUp=function(t,e){this.emitEvent("pointerUp",[t,e]),this._dragPointerUp(t,e)},n._dragPointerUp=function(t,e){this.isDragging?this._dragEnd(t,e):this._staticClick(t,e)},n._dragStart=function(t,e){this.isDragging=!0,this.isPreventingClicks=!0,this.dragStart(t,e)},n.dragStart=function(t,e){this.emitEvent("dragStart",[t,e])},n._dragMove=function(t,e,i){this.isDragging&&this.dragMove(t,e,i)},n.dragMove=function(t,e,i){t.preventDefault(),this.emitEvent("dragMove",[t,e,i])},n._dragEnd=function(t,e){this.isDragging=!1,setTimeout(function(){delete this.isPreventingClicks}.bind(this)),this.dragEnd(t,e)},n.dragEnd=function(t,e){this.emitEvent("dragEnd",[t,e])},n.onclick=function(t){this.isPreventingClicks&&t.preventDefault()},n._staticClick=function(t,e){this.isIgnoringMouseUp&&"mouseup"==t.type||(this.staticClick(t,e),"mouseup"!=t.type&&(this.isIgnoringMouseUp=!0,setTimeout(function(){delete this.isIgnoringMouseUp}.bind(this),400)))},n.staticClick=function(t,e){this.emitEvent("staticClick",[t,e])},i.getPointerPoint=e.getPointerPoint,i}(o,t)}.apply(e,n))||(t.exports=s)}(window)},function(t,e,i){var n,s;window,n=[i(2),i(6),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";var s="http://www.w3.org/2000/svg";function o(t,e){this.direction=t,this.parent=e,this._create()}o.prototype=Object.create(i.prototype),o.prototype._create=function(){this.isEnabled=!0,this.isPrevious=-1==this.direction;var t=this.parent.options.rightToLeft?1:-1;this.isLeft=this.direction==t;var e=this.element=document.createElement("button");e.className="flickity-button flickity-prev-next-button",e.className+=this.isPrevious?" previous":" next",e.setAttribute("type","button"),this.disable(),e.setAttribute("aria-label",this.isPrevious?"Previous":"Next");var i=this.createSVG();e.appendChild(i),this.on("tap",this.onTap),this.parent.on("select",this.update.bind(this)),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},o.prototype.activate=function(){this.bindTap(this.element),this.element.addEventListener("click",this),this.parent.element.appendChild(this.element)},o.prototype.deactivate=function(){this.parent.element.removeChild(this.element),i.prototype.destroy.call(this),this.element.removeEventListener("click",this)},o.prototype.createSVG=function(){var t=document.createElementNS(s,"svg");t.setAttribute("class","flickity-button-icon"),t.setAttribute("viewBox","0 0 100 100");var e=document.createElementNS(s,"path"),i=function(t){return"string"==typeof t?t:"M "+t.x0+",50 L "+t.x1+","+(t.y1+50)+" L "+t.x2+","+(t.y2+50)+" L "+t.x3+",50 L "+t.x2+","+(50-t.y2)+" L "+t.x1+","+(50-t.y1)+" Z"}(this.parent.options.arrowShape);return e.setAttribute("d",i),e.setAttribute("class","arrow"),this.isLeft||e.setAttribute("transform","translate(100, 100) rotate(180) "),t.appendChild(e),t},o.prototype.onTap=function(){if(this.isEnabled){this.parent.uiChange();var t=this.isPrevious?"previous":"next";this.parent[t]()}},o.prototype.handleEvent=n.handleEvent,o.prototype.onclick=function(t){var e=document.activeElement;e&&e==this.element&&this.onTap(t,t)},o.prototype.enable=function(){this.isEnabled||(this.element.disabled=!1,this.isEnabled=!0)},o.prototype.disable=function(){this.isEnabled&&(this.element.disabled=!0,this.isEnabled=!1)},o.prototype.update=function(){var t=this.parent.slides;if(this.parent.options.wrapAround&&t.length>1)this.enable();else{var e=t.length?t.length-1:0,i=this.isPrevious?0:e,n=this.parent.selectedIndex==i?"disable":"enable";this[n]()}},o.prototype.destroy=function(){this.deactivate()},n.extend(e.defaults,{prevNextButtons:!0,arrowShape:{x0:10,x1:60,y1:50,x2:70,y2:40,x3:30}}),e.createMethods.push("_createPrevNextButtons");var r=e.prototype;return r._createPrevNextButtons=function(){this.options.prevNextButtons&&(this.prevButton=new o(-1,this),this.nextButton=new o(1,this),this.on("activate",this.activatePrevNextButtons))},r.activatePrevNextButtons=function(){this.prevButton.activate(),this.nextButton.activate(),this.on("deactivate",this.deactivatePrevNextButtons)},r.deactivatePrevNextButtons=function(){this.prevButton.deactivate(),this.nextButton.deactivate(),this.off("deactivate",this.deactivatePrevNextButtons)},e.PrevNextButton=o,e}(0,t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(6),i(1)],void 0===(s=function(t,e,i){return function(t,e,i,n){"use strict";function s(t){this.parent=t,this._create()}s.prototype=new i,s.prototype._create=function(){this.holder=document.createElement("ol"),this.holder.className="flickity-page-dots",this.dots=[],this.on("tap",this.onTap),this.on("pointerDown",this.parent.childUIPointerDown.bind(this.parent))},s.prototype.activate=function(){this.setDots(),this.bindTap(this.holder),this.parent.element.appendChild(this.holder)},s.prototype.deactivate=function(){this.parent.element.removeChild(this.holder),i.prototype.destroy.call(this)},s.prototype.setDots=function(){var t=this.parent.slides.length-this.dots.length;t>0?this.addDots(t):t<0&&this.removeDots(-t)},s.prototype.addDots=function(t){for(var e=document.createDocumentFragment(),i=[],n=this.dots.length,s=n+t,o=n;o<s;o++){var r=document.createElement("li");r.className="dot",r.setAttribute("aria-label","Page dot "+(o+1)),e.appendChild(r),i.push(r)}this.holder.appendChild(e),this.dots=this.dots.concat(i)},s.prototype.removeDots=function(t){var e=this.dots.splice(this.dots.length-t,t);e.forEach(function(t){this.holder.removeChild(t)},this)},s.prototype.updateSelected=function(){this.selectedDot&&(this.selectedDot.className="dot",this.selectedDot.removeAttribute("aria-current")),this.dots.length&&(this.selectedDot=this.dots[this.parent.selectedIndex],this.selectedDot.className="dot is-selected",this.selectedDot.setAttribute("aria-current","step"))},s.prototype.onTap=function(t){var e=t.target;if("LI"==e.nodeName){this.parent.uiChange();var i=this.dots.indexOf(e);this.parent.select(i)}},s.prototype.destroy=function(){this.deactivate()},e.PageDots=s,n.extend(e.defaults,{pageDots:!0}),e.createMethods.push("_createPageDots");var o=e.prototype;return o._createPageDots=function(){this.options.pageDots&&(this.pageDots=new s(this),this.on("activate",this.activatePageDots),this.on("select",this.updateSelectedPageDots),this.on("cellChange",this.updatePageDots),this.on("resize",this.updatePageDots),this.on("deactivate",this.deactivatePageDots))},o.activatePageDots=function(){this.pageDots.activate()},o.updateSelectedPageDots=function(){this.pageDots.updateSelected()},o.updatePageDots=function(){this.pageDots.setDots()},o.deactivatePageDots=function(){this.pageDots.deactivate()},e.PageDots=s,e}(0,t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(3),i(1),i(2)],void 0===(s=function(t,e,i){return function(t,e,i){"use strict";function n(t){this.parent=t,this.state="stopped",this.onVisibilityChange=this.visibilityChange.bind(this),this.onVisibilityPlay=this.visibilityPlay.bind(this)}n.prototype=Object.create(t.prototype),n.prototype.play=function(){if("playing"!=this.state){var t=document.hidden;t?document.addEventListener("visibilitychange",this.onVisibilityPlay):(this.state="playing",document.addEventListener("visibilitychange",this.onVisibilityChange),this.tick())}},n.prototype.tick=function(){if("playing"==this.state){var t=this.parent.options.autoPlay;t="number"==typeof t?t:3e3;var e=this;this.clear(),this.timeout=setTimeout(function(){e.parent.next(!0),e.tick()},t)}},n.prototype.stop=function(){this.state="stopped",this.clear(),document.removeEventListener("visibilitychange",this.onVisibilityChange)},n.prototype.clear=function(){clearTimeout(this.timeout)},n.prototype.pause=function(){"playing"==this.state&&(this.state="paused",this.clear())},n.prototype.unpause=function(){"paused"==this.state&&this.play()},n.prototype.visibilityChange=function(){var t=document.hidden;this[t?"pause":"unpause"]()},n.prototype.visibilityPlay=function(){this.play(),document.removeEventListener("visibilitychange",this.onVisibilityPlay)},e.extend(i.defaults,{pauseAutoPlayOnHover:!0}),i.createMethods.push("_createPlayer");var s=i.prototype;return s._createPlayer=function(){this.player=new n(this),this.on("activate",this.activatePlayer),this.on("uiChange",this.stopPlayer),this.on("pointerDown",this.stopPlayer),this.on("deactivate",this.deactivatePlayer)},s.activatePlayer=function(){this.options.autoPlay&&(this.player.play(),this.element.addEventListener("mouseenter",this))},s.playPlayer=function(){this.player.play()},s.stopPlayer=function(){this.player.stop()},s.pausePlayer=function(){this.player.pause()},s.unpausePlayer=function(){this.player.unpause()},s.deactivatePlayer=function(){this.player.stop(),this.element.removeEventListener("mouseenter",this)},s.onmouseenter=function(){this.options.pauseAutoPlayOnHover&&(this.player.pause(),this.element.addEventListener("mouseleave",this))},s.onmouseleave=function(){this.player.unpause(),this.element.removeEventListener("mouseleave",this)},i.Player=n,i}(t,e,i)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(1)],void 0===(s=function(t,e){return function(t,e,i){"use strict";var n=e.prototype;return n.insert=function(t,e){var i=this._makeCells(t);if(i&&i.length){var n=this.cells.length;e=void 0===e?n:e;var s=function(t){var e=document.createDocumentFragment();return t.forEach(function(t){e.appendChild(t.element)}),e}(i),o=e==n;if(o)this.slider.appendChild(s);else{var r=this.cells[e].element;this.slider.insertBefore(s,r)}if(0===e)this.cells=i.concat(this.cells);else if(o)this.cells=this.cells.concat(i);else{var a=this.cells.splice(e,n-e);this.cells=this.cells.concat(i).concat(a)}this._sizeCells(i),this.cellChange(e,!0)}},n.append=function(t){this.insert(t,this.cells.length)},n.prepend=function(t){this.insert(t,0)},n.remove=function(t){var e=this.getCells(t);if(e&&e.length){var n=this.cells.length-1;e.forEach(function(t){t.remove();var e=this.cells.indexOf(t);n=Math.min(e,n),i.removeFrom(this.cells,t)},this),this.cellChange(n,!0)}},n.cellSizeChange=function(t){var e=this.getCell(t);if(e){e.getSize();var i=this.cells.indexOf(e);this.cellChange(i)}},n.cellChange=function(t,e){var i=this.selectedElement;this._positionCells(t),this._getWrapShiftCells(),this.setGallerySize();var n=this.getCell(i);n&&(this.selectedIndex=this.getCellSlideIndex(n)),this.selectedIndex=Math.min(this.slides.length-1,this.selectedIndex),this.emitEvent("cellChange",[t]),this.select(this.selectedIndex),e&&this.positionSliderAtSelected()},e}(0,t,e)}.apply(e,n))||(t.exports=s)},function(t,e,i){var n,s;window,n=[i(2),i(1)],void 0===(s=function(t,e){return function(t,e,i){"use strict";e.createMethods.push("_createLazyload");var n=e.prototype;function s(t,e){this.img=t,this.flickity=e,this.load()}return n._createLazyload=function(){this.on("select",this.lazyLoad)},n.lazyLoad=function(){var t=this.options.lazyLoad;if(t){var e="number"==typeof t?t:0,n=[];this.getAdjacentCellElements(e).forEach(function(t){var e=function(t){if("IMG"==t.nodeName){var e=t.getAttribute("data-flickity-lazyload"),n=t.getAttribute("data-flickity-lazyload-src"),s=t.getAttribute("data-flickity-lazyload-srcset");if(e||n||s)return[t]}var o=t.querySelectorAll("img[data-flickity-lazyload], img[data-flickity-lazyload-src], img[data-flickity-lazyload-srcset]");return i.makeArray(o)}(t);n=n.concat(e)}),n.forEach(function(t){new s(t,this)},this)}},s.prototype.handleEvent=i.handleEvent,s.prototype.load=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this);var t=this.img.getAttribute("data-flickity-lazyload")||this.img.getAttribute("data-flickity-lazyload-src"),e=this.img.getAttribute("data-flickity-lazyload-srcset");this.img.src=t,e&&this.img.setAttribute("srcset",e),this.img.removeAttribute("data-flickity-lazyload"),this.img.removeAttribute("data-flickity-lazyload-src"),this.img.removeAttribute("data-flickity-lazyload-srcset")},s.prototype.onload=function(t){this.complete(t,"flickity-lazyloaded")},s.prototype.onerror=function(t){this.complete(t,"flickity-lazyerror")},s.prototype.complete=function(t,e){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this);var i=this.flickity.getParentCell(this.img),n=i&&i.element;this.flickity.cellSizeChange(n),this.img.classList.add(e),this.flickity.dispatchEvent("lazyLoad",t,n)},e.LazyLoader=s,e}(0,t,e)}.apply(e,n))||(t.exports=s)},,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){var i="Coming Soon Blocks",n="🤘 https://pixelthrone.com",s={color1:"#474B53",color2:"#FFFFFF",color3:"#474B53",bg:"#ffc400"};console.log("%c// made by %c— "+i+" —%c "+n,"padding:8px 5px; color:"+s.color1+"; line-height:20px;","padding:8px 15px; color:"+s.color2+"; background-color:"+s.bg+"; line-height:20px;","padding:8px 5px; color:"+s.color3+"; line-height:20px;")},,function(t,e,i){"use strict";i.r(e);i(74),i(46);function n(t,e,i){var n=new Date;n.setTime(n.getTime()+24*i*60*60*1e3);var s="expires="+n.toUTCString();document.cookie=t+"="+e+";"+s+";path=/"}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var i=[],n=!0,s=!1,o=void 0;try{for(var r,a=t[Symbol.iterator]();!(n=(r=a.next()).done)&&(i.push(r.value),!e||i.length!==e);n=!0);}catch(t){s=!0,o=t}finally{try{n||null==a.return||a.return()}finally{if(s)throw o}}return i}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function o(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}
50
  /**
51
  * Password protected component.
52
  *
53
  * @package Coming Soon Blocks
54
  * @author Helder Vilela from Pixelthrone
55
+ * @link htts://pixelthrone.com
56
  * @license GPL-3.0
57
  */
58
+ var r=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.element=document.querySelector('[data-component="unlock-page"]'),this.element&&(this.body=document.body,this.Input=this.element.querySelector("input"),this.config={restURL:document.querySelector("body").dataset.resturl,nonce:document.querySelector("body").dataset.nonce},this.init())}return function(t,e,i){e&&o(t.prototype,e),i&&o(t,i)}(t,[{key:"init",value:function(){var t=this,e=this.element.querySelector(".button"),i=this.element.querySelector(".page-overlayer"),n=this.Input;this.body;e.addEventListener("click",function(e){e.preventDefault(),"close"===t.element.dataset.mode?t.element.dataset.mode="open":t.submit()}),i.addEventListener("click",function(e){e.preventDefault(),t.element.dataset.mode="close",n.value="",n.classList.remove("-error")})}},{key:"submit",value:function(){var t=this,e=this.Input;""===e.value?(e.classList.add("-error"),e.onkeypress=function(){e.classList.remove("-error"),delete e.onkeypress}):(this.element.dataset.loading=!0,fetch(function(t,e){var i="";for(var n in e)if(e.hasOwnProperty(n)){var s=e[n];i+=encodeURIComponent(n)+"="+encodeURIComponent(s)+"&"}return i.length>0&&(t=t+"?"+(i=i.substring(0,i.length-1))),t}(this.config.restURL+"v1/unlockpage",{_wpnonce:this.config.nonce,pwd:e.value}),{method:"GET"}).then(function(t){return Promise.all([t.ok,t.json()])}).then(function(e){var i=s(e,2),n=i[0],o=i[1];n?location.reload():(t.element.dataset.message=!0,t.element.querySelector(".content__wrapper span").innerHTML='<p class="-error">'.concat(o.message,"</p>"),t.element.dataset.loading=!1,setTimeout(function(){t.element.dataset.message=!1},3e3))}))}}]),t}();function a(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}document.addEventListener("DOMContentLoaded",new r,!1);
59
  /**
60
  * Password protected component.
61
  *
62
  * @package Coming Soon Blocks
63
  * @author Helder Vilela from Pixelthrone
64
+ * @link htts://pixelthrone.com
65
  * @license GPL-3.0
66
  */
67
+ var l=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.element=document.querySelector('[data-component="cookie-notice"]'),this.element&&(this.config={restURL:document.querySelector("body").dataset.resturl,nonce:document.querySelector("body").dataset.nonce},this.init())}return function(t,e,i){e&&a(t.prototype,e),i&&a(t,i)}(t,[{key:"init",value:function(){var t=this;this.element.querySelector("button").addEventListener("click",function(e){e.preventDefault(),n("comingsoonblocks__cookie_notice","true",365),t.element.classList.add("-leave"),setTimeout(function(){return t.element.remove()},2e3)})}}]),t}();document.addEventListener("DOMContentLoaded",new l,!1);var h=i(10),c=i.n(h),d={autoPlay:5e3,pageDots:!1,prevNextButtons:!1,draggable:!1,wrapAround:!0};document.addEventListener("DOMContentLoaded",function(){var t=document.querySelector('[data-component="slideshow-background"] > div');t&&new c.a(t,d)}(),!1)},,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){}]);
 
 
 
 
 
 
 
 
 
public/dist/global.bundle.css CHANGED
@@ -1,252 +1 @@
1
- /**
2
- * keyframes
3
- *
4
- * @since 1.0.0
5
- * @version 1.0.0
6
- */
7
- /**
8
- * Spinner
9
- *
10
- * @since 1.0.0
11
- * @version 1.0.0
12
- */
13
- @-webkit-keyframes pt_theme__loadingSpinner {
14
- 0% {
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg); }
17
- 100% {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg); } }
20
-
21
- @keyframes pt_theme__loadingSpinner {
22
- 0% {
23
- -webkit-transform: rotate(0deg);
24
- transform: rotate(0deg); }
25
- 100% {
26
- -webkit-transform: rotate(360deg);
27
- transform: rotate(360deg); } }
28
-
29
- /**
30
- * Inherit Typography
31
- */
32
- /**
33
- * Media
34
- *
35
- * @since 1.0.0
36
- * @version 1.0.0
37
- */
38
- /**
39
- * Media
40
- *
41
- * @since 1.0.0
42
- * @version 1.0.0
43
- */
44
- /**
45
- * Colors
46
- */
47
- /**
48
- * Media Queryes
49
- */
50
- /**
51
- * Toolbar.
52
- *
53
- * @since 1.0.0
54
- */
55
- body {
56
- /**
57
- * Color Scheme
58
- *
59
- * @since 1.0.0
60
- */ }
61
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group {
62
- /**
63
- * Buttons
64
- *
65
- * @since 1.0.0
66
- */
67
- /**
68
- * Enabled mode
69
- *
70
- * @since 1.0.0
71
- */ }
72
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
73
- position: relative; }
74
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
75
- content: " ";
76
- width: 5px;
77
- height: 5px;
78
- border-radius: 50%;
79
- position: absolute;
80
- right: 6px;
81
- bottom: 4px;
82
- border: 2px solid transparent;
83
- display: none; }
84
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a i::before {
85
- vertical-align: sub;
86
- -webkit-transform: translateY(1px);
87
- -ms-transform: translateY(1px);
88
- transform: translateY(1px); }
89
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu {
90
- padding-bottom: 0; }
91
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li a i::before {
92
- margin-top: 7px;
93
- font-size: 18px; }
94
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
95
- margin-top: 13px;
96
- padding-top: 6px;
97
- background-color: #32373C; }
98
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
99
- padding-bottom: 6px; }
100
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade a {
101
- color: inherit; }
102
- body #wp-admin-bar-pt_comingsoonblocks_toolbar_group.-coming-soon-enabled > a::after {
103
- display: block; }
104
- body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
105
- border-color: #23282C;
106
- background-color: #00A0D2; }
107
- body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
108
- background-color: #3a4248; }
109
- body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
110
- background-color: #3a4248; }
111
- body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
112
- color: #00A0D2;
113
- background-color: #3a4248; }
114
- body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
115
- border-color: #32373C; }
116
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
117
- color: #999999; }
118
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
119
- border-color: #E5E5E5;
120
- background-color: #04A4CB; }
121
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
122
- background-color: #E5E5E5; }
123
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
124
- background-color: #E5E5E5; }
125
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
126
- color: #04A4CB;
127
- background-color: #E5E5E5; }
128
- body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
129
- border-color: #FFFFFF; }
130
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
131
- color: #E5F8FF; }
132
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
133
- border-color: #52ACCC;
134
- background-color: #096484; }
135
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
136
- background-color: #52ACCC; }
137
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
138
- background-color: #52ACCC; }
139
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
140
- color: #096484;
141
- background-color: #52ACCC; }
142
- body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
143
- border-color: #4796B3; }
144
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
145
- color: #E5F8FF; }
146
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
147
- border-color: #59524D;
148
- background-color: #C7A589; }
149
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
150
- background-color: #59524D; }
151
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
152
- background-color: #59524D; }
153
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
154
- color: #C7A589;
155
- background-color: #59524D; }
156
- body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
157
- border-color: #46403C; }
158
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
159
- color: #ECE6F6; }
160
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
161
- border-color: #523F6D;
162
- background-color: #A3B745; }
163
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
164
- background-color: #523F6D; }
165
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
166
- background-color: #523F6D; }
167
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
168
- color: #A3B745;
169
- background-color: #523F6D; }
170
- body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
171
- border-color: #413257; }
172
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
173
- color: #ECE6F6; }
174
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
175
- border-color: #363B3F;
176
- background-color: #E14D43; }
177
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
178
- background-color: #363B3F; }
179
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
180
- background-color: #363B3F; }
181
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
182
- color: #E14D43;
183
- background-color: #363B3F; }
184
- body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
185
- border-color: #26292B; }
186
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
187
- color: #F2FCFF; }
188
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
189
- border-color: #738E96;
190
- background-color: #76d27d; }
191
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
192
- background-color: #738E96; }
193
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
194
- background-color: #738E96; }
195
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
196
- color: #9EBAA0;
197
- background-color: #738E96; }
198
- body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
199
- border-color: #627C84; }
200
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a {
201
- color: #F3F1F1; }
202
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group > a::after {
203
- border-color: #CF4944;
204
- background-color: #F6D308; }
205
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us {
206
- background-color: #CF4944; }
207
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum {
208
- background-color: #CF4944; }
209
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade {
210
- color: #F6D308;
211
- background-color: #CF4944; }
212
- body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover > a::after {
213
- border-color: #CD4843; }
214
-
215
- /**
216
- * Admin menu.
217
- *
218
- * @since 1.0.0
219
- */
220
- body {
221
- /**
222
- * Color Scheme
223
- *
224
- * @since 1.0.0
225
- */ }
226
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li > a[href*='account']:not(.current),
227
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li:nth-last-child(3) a:not(.current),
228
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li:nth-last-child(2) a:not(.current) {
229
- opacity: 0.6; }
230
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li > a[href*='account']:not(.current):hover,
231
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li:nth-last-child(3) a:not(.current):hover,
232
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li:nth-last-child(2) a:not(.current):hover {
233
- opacity: 1; }
234
- body #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li:nth-of-type(7) a {
235
- color: inherit;
236
- font-weight: bold; }
237
- body.admin-color-fresh #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
238
- color: #00A0D2; }
239
- body.admin-color-light #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
240
- color: #04A4CB; }
241
- body.admin-color-blue #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
242
- color: #096484; }
243
- body.admin-color-coffee #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
244
- color: #C7A589; }
245
- body.admin-color-ectoplasm #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
246
- color: #A3B745; }
247
- body.admin-color-midnight #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
248
- color: #E14D43; }
249
- body.admin-color-ocean #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
250
- color: #9EBAA0; }
251
- body.admin-color-sunrise #adminmenuwrap > ul #menu-posts-coming-soon-blocks ul li a .pricing {
252
- color: #F6D308; }
1
+ @-webkit-keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes pt_theme__loadingSpinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group{border-right:1px solid #32373c}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{position:relative}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{content:" ";width:5px;height:5px;border-radius:50%;position:absolute;right:6px;bottom:4px;border:2px solid transparent;display:none}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a i::before{vertical-align:sub;-webkit-transform:translateY(1px);transform:translateY(1px)}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu{padding-bottom:0}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li a i::before{margin-top:7px;font-size:18px}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_settings{margin-bottom:13px}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{margin-top:0;padding-top:6px;background-color:#32373C}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{padding-bottom:6px}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade a{color:inherit}body #wp-admin-bar-pt_comingsoonblocks_toolbar_group.-coming-soon-enabled>a::after{display:block}body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#23282C;background-color:#00A0D2}body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#3a4248}body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#3a4248}body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#00A0D2;background-color:#3a4248}body.admin-color-fresh #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#32373C}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#999999}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#E5E5E5;background-color:#04A4CB}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#E5E5E5}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#E5E5E5}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#04A4CB;background-color:#E5E5E5}body.admin-color-light #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#FFFFFF}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#E5F8FF}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#52ACCC;background-color:#096484}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#52ACCC}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#52ACCC}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#096484;background-color:#52ACCC}body.admin-color-blue #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#4796B3}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#E5F8FF}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#59524D;background-color:#C7A589}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#59524D}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#59524D}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#C7A589;background-color:#59524D}body.admin-color-coffee #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#46403C}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#ECE6F6}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#523F6D;background-color:#A3B745}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#523F6D}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#523F6D}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#A3B745;background-color:#523F6D}body.admin-color-ectoplasm #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#413257}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#ECE6F6}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#363B3F;background-color:#E14D43}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#363B3F}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#363B3F}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#E14D43;background-color:#363B3F}body.admin-color-midnight #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#26292B}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#F2FCFF}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#738E96;background-color:#76d27d}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#738E96}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#738E96}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#9EBAA0;background-color:#738E96}body.admin-color-ocean #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#627C84}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a{color:#F3F1F1}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group>a::after{border-color:#CF4944;background-color:#F6D308}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_contact-us{background-color:#CF4944}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_support-forum{background-color:#CF4944}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group .ab-submenu li#wp-admin-bar-pt_comingsoonblocks_toolbar_upgrade{color:#F6D308;background-color:#CF4944}body.admin-color-sunrise #wp-admin-bar-pt_comingsoonblocks_toolbar_group.hover>a::after{border-color:#CD4843}body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li>a[href*='account']:not(.current),body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li:nth-last-child(3) a:not(.current),body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li:nth-last-child(2) a:not(.current){opacity:0.6}body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li>a[href*='account']:not(.current):hover,body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li:nth-last-child(3) a:not(.current):hover,body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li:nth-last-child(2) a:not(.current):hover{opacity:1}body #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li:nth-of-type(7) a{color:inherit;font-weight:bold}body.admin-color-fresh #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#00A0D2}body.admin-color-light #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#04A4CB}body.admin-color-blue #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#096484}body.admin-color-coffee #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#C7A589}body.admin-color-ectoplasm #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#A3B745}body.admin-color-midnight #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#E14D43}body.admin-color-ocean #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#9EBAA0}body.admin-color-sunrise #adminmenuwrap>ul #menu-posts-coming-soon-blocks ul li a .pricing{color:#F6D308}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/svg/empty-bg.svg ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="971px" height="591px" viewBox="0 0 971 591" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="Group--Editor-UI" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <g id="Group--Group">
5
+ <g id="Group--Paper-Airplane" fill-rule="nonzero">
6
+ <path d="M931.228771,403.274807 C931.228771,193.168702 678.760676,-12.5982659 468.891719,0.602919444 C227.540885,15.7745833 93.7148108,102.679834 140.053762,299.513286 C180.507105,471.353309 398.397248,312.091677 528.095221,477.693554 C663.454006,650.523921 931.228771,613.380911 931.228771,403.274807 Z" id="Group--Shape" fill="#F2F2F2"></path>
7
+ <path d="M34.824283,137.566023 C34.824283,137.566023 -33.6133508,152.230189 21.3921206,184.638711 C76.397592,217.047233 179.176618,265.419537 179.176618,265.419537 C179.176618,265.419537 243.426277,285.701725 284.570574,238.813235 C325.714871,191.924745 355.684426,238.813235 355.684426,238.813235 C355.684426,238.813235 378.697857,275.65273 396.655075,258.952159 C414.612293,242.251588 396.655075,222.409427 396.655075,222.409427 C396.655075,222.409427 367.594617,183.881455 404.64287,147.226158 C441.691124,110.57086 424.499999,96.7355834 409.045351,98.1068312 C393.590703,99.4780791 34.824283,137.566023 34.824283,137.566023 Z" id="Group--Shape" fill="#D3EFFC"></path>
8
+ <path d="M826.936908,570.62069 C826.936908,570.62069 823.799962,515.094237 794.617165,453.963073 C779.341157,421.906985 756.953374,388.309346 724.112511,360.347045 C724.112511,360.347045 713.822918,362.919699 701.826909,365.165667 C689.289342,367.513725 674.902305,369.49426 668.424051,367.779157 C668.424051,367.779157 676.680249,387.6866 658.379693,390.545105 C637.20786,393.832385 638.188794,362.776774 638.188794,362.776774 C638.188794,362.776774 632.691475,361.378149 624.200262,358.693196 C620.348051,357.345615 615.882757,355.293617 611.018957,352.996605 C608.975344,359.121972 607.1974,365.247339 605.634036,371.495213 C605.24575,373.087809 604.847245,374.639568 604.489613,376.242373 C603.324754,381.265174 597.336967,386.379855 592.013355,385.706065 C567.1528,382.643381 573.998904,354.956722 581.529619,335.110533 C581.529619,334.998234 581.611363,334.865518 581.652236,334.763428 L581.447874,334.600085 C571.687847,326.943249 563.054174,317.952998 555.800529,307.893485 L536.876671,338.173216 C528.824835,348.545504 498.334126,344.941747 509.073314,320.736338 C534.945456,262.361589 582.173357,227.692011 601.587682,228.621025 C601.587682,228.621025 561.216104,223.302165 507.469077,238.043882 C507.469077,238.043882 482.475688,228.855831 492.050016,212.889041 C505.895495,189.775989 603.222573,177.025016 660.566359,188.908228 C717.910145,200.79144 859.716463,276.705157 931.968407,381.765412 C931.958189,381.775621 952.18996,520.780619 826.936908,570.62069 Z" id="Group--Shape" fill="#FFFFFF"></path>
9
+ <path d="M638.27972,367.535985 C638.914956,375.502484 641.90671,391.08867 655.57452,391.08867 L655.687223,391.08867 C655.810172,391.08867 655.933121,390.956065 656.056069,390.935664 C656.834021,390.855072 657.607004,390.732487 658.371605,390.56845 C666.906302,389.242401 669.641913,384.234012 670.195183,379.246025 C670.438762,375.763165 669.978898,372.26702 668.842746,368.964039 L668.678814,368.545823 L668.514882,368.076606 L668.432917,367.872598 C669.361366,368.106322 670.306917,368.266627 671.260739,368.352016 L671.158282,367.719592 C670.215674,367.719592 669.273067,367.648189 668.330459,367.597188 C658.438253,366.99264 648.628198,365.434898 639.037905,362.945813 C638.822744,364.424868 638.556355,365.975327 638.27972,367.535985 Z" id="Group--Shape" fill="#D7D7DA"></path>
10
+ <path d="M665.167516,336.638113 C665.539346,343.131617 666.650243,349.562816 668.47911,355.80958 C669.369101,358.917728 670.403974,361.99172 671.583729,365.031558 C672.173607,366.537814 672.784182,368.04407 673.446501,369.519587 L673.69487,370.103645 L673.974286,370.85165 C674.174447,371.347474 674.347181,371.853725 674.491722,372.368153 C674.776589,373.401596 674.97049,374.457533 675.071251,375.524119 C675.458023,379.8364 674.223511,384.138285 671.604426,387.60491 C669.07243,391.015635 665.408802,393.435169 661.255695,394.43942 C657.219502,395.455075 652.9493,395.004274 649.220121,393.168837 C645.658973,391.411629 642.855965,388.443489 641.324039,384.807577 C640.970145,383.928712 641.337022,382.926721 642.177522,382.476595 C643.018023,382.026469 644.065765,382.270869 644.614936,383.045154 C646.232278,385.422783 648.596717,387.205631 651.341611,388.117242 C653.928373,388.919793 656.712208,388.840421 659.248042,387.891816 C660.479491,387.433793 661.634251,386.79475 662.673472,385.996187 C663.619949,385.169044 664.439258,384.209381 665.105423,383.147621 C666.350125,381.029306 666.940197,378.596115 666.802615,376.149164 C666.780178,375.542589 666.703995,374.939135 666.574943,374.345755 C666.511425,374.04468 666.431975,373.747118 666.336922,373.454297 L666.212738,373.003445 C666.212738,372.849745 666.078204,372.603826 666.005763,372.40914 C665.415885,370.769677 664.877751,369.109721 664.360315,367.449765 C663.353962,364.108348 662.548795,360.710735 661.94906,357.27485 C660.688527,350.405768 660.524401,343.383383 661.46267,336.46392 C661.566346,335.486465 662.422132,334.75881 663.413656,334.805041 C664.405179,334.851273 665.188116,335.655337 665.198562,336.638113 L665.167516,336.638113 Z" id="Group--Shape" fill="#233940"></path>
11
+ <path d="M689.210433,255.573314 C680.710053,248.422147 670.675308,243.350397 660.129108,239.739312 C654.998843,238.001061 649.76948,236.564944 644.468359,235.438468 C636.193019,233.653212 606.088784,220.75068 609.177971,237.548316 C609.290491,238.177213 609.382553,238.856827 609.454157,239.577016 C610.263139,249.523205 605.996852,259.210523 598.089629,265.382079 C592.147812,270.111863 586.459486,275.146532 581.047952,280.465462 C581.961401,281.09609 582.814051,281.809174 583.594997,282.595597 C585.006613,284.015687 586.459145,285.354629 587.942364,286.652997 C588.146534,287.317726 588.403051,287.965521 588.709546,288.590406 C589.366369,289.114772 589.975622,289.695168 590.530326,290.324944 C592.243197,292.248113 594.248383,293.89428 596.473432,295.203967 C597.338665,295.493909 598.228927,295.704426 599.132997,295.832864 C599.265975,296.177743 599.419412,296.512479 599.572848,296.847214 C605.976264,299.839547 613.484421,301.137915 620.031044,302.202982 C621.369579,302.414205 622.669155,302.820983 623.887414,303.410059 L624.091996,303.410059 L624.317036,303.339054 C653.98142,308.532526 685.006274,298.318022 697.240275,285.243051 C706.784023,274.977829 697.761959,262.765056 689.210433,255.573314 Z" id="Group--Shape" fill="#D7D7DA"></path>
12
+ <path d="M607.407958,230.709705 C606.99083,230.709705 606.461789,230.709705 605.953097,230.780776 C605.438642,230.803946 604.925814,230.854784 604.416846,230.933069 C603.391891,231.044157 602.37321,231.206811 601.364691,231.420409 C600.347306,231.643773 599.329921,231.775761 598.312536,232.070196 L595.260381,232.912887 C593.225611,233.491603 591.292579,234.313989 589.308679,235.004387 L583.560453,237.623838 C576.028569,241.512226 568.977761,246.26556 562.551454,251.787151 C549.712055,262.843672 539.151599,276.407962 529.995134,290.794638 C528.784446,292.551092 527.807756,294.469992 526.688633,296.287364 L523.382132,301.780089 C522.303704,303.627919 521.113363,305.404679 520.1265,307.313426 L517.074345,312.988904 L514.02219,318.674534 L512.506286,321.51735 C512.038652,322.323501 511.64371,323.169518 511.32612,324.045425 C510.145459,327.345467 510.342435,330.980458 511.872818,334.134195 C513.403202,337.287933 516.138742,339.696125 519.465199,340.818035 C524.748521,342.61121 530.593875,341.03854 534.257977,336.838094 L538.490299,331.893626 L547.015985,322.014842 C547.653726,321.22141 548.815248,321.094133 549.610317,321.730561 C550.405386,322.366989 550.532925,323.526121 549.895184,324.319553 L542.102015,334.787206 L538.134214,340.015955 C536.586528,342.016706 534.652718,343.687614 532.447032,344.929965 C527.932503,347.471267 522.584404,348.096793 517.603385,346.666113 C512.540571,345.191975 508.28642,341.74442 505.801719,337.10207 C503.278133,332.399608 502.757442,326.881397 504.357032,321.791478 C504.728816,320.605914 505.201943,319.454404 505.771198,318.349641 L507.215884,315.384991 L510.105258,309.45569 L512.994631,303.516237 C513.461324,302.519477 513.984426,301.550002 514.561404,300.612504 L516.229915,297.749383 C518.468162,293.942041 520.625018,290.083934 523.046395,286.398427 C525.467771,282.71292 528.13332,279.139095 530.69713,275.544965 C531.307561,274.62105 532.050252,273.788511 532.7319,272.935666 L534.858234,270.366979 L539.10073,265.290523 C540.453852,263.53407 542.152885,262.021286 543.628093,260.39682 L548.267368,255.604645 C549.039071,254.802655 549.854199,254.043434 550.709092,253.330393 L553.222033,251.117058 C554.910892,249.665192 556.528534,248.121949 558.308958,246.771612 C565.367381,241.251204 573.050252,236.576001 581.20012,232.841817 C583.295933,232.019431 585.381573,231.197045 587.48756,230.425424 C589.664763,229.816249 591.780924,229.075087 593.98865,228.587747 L597.295151,227.887196 C598.393927,227.643526 599.533398,227.562303 600.652521,227.389703 C601.779568,227.236788 602.913759,227.141901 604.050587,227.105422 C604.626741,227.076518 605.203987,227.076518 605.780142,227.105422 C606.360051,227.105422 606.929787,227.105422 607.591087,227.166339 C608.530262,227.296736 609.216676,228.117539 609.177202,229.062988 C609.137727,230.008438 608.385269,230.769411 607.438479,230.821387 L607.407958,230.709705 Z" id="Group--Shape" fill="#233940"></path>
13
+ <path d="M623.719109,358.722707 C619.887952,357.313446 615.447062,355.50878 610.609846,353.227601 C608.577403,359.310745 606.79224,365.461479 605.254357,371.679803 C603.04411,370.515633 601.139782,368.848448 599.695623,366.813288 C592.876775,357.384416 583.19218,347.458754 581.281683,335.606762 C581.240301,335.443809 581.2131,335.277595 581.200385,335.109972 C581.12925,334.694291 581.078439,334.268471 581.047952,333.832512 C593.873276,344.251563 608.281093,352.564695 623.729271,358.459105 C623.708946,358.550352 623.708946,358.641599 623.719109,358.722707 Z" id="Group--Shape" fill="#D7D7DA"></path>
14
+ <path d="M387.78569,175.973047 L33.6074507,137.842886 C32.1176958,137.702545 30.6163167,137.933453 29.2381567,138.514873 L20.0503889,142.404251 C17.6656365,143.415395 15.8310104,145.399136 15.0127381,147.851354 C14.1944657,150.303571 14.4713301,152.988165 15.7729726,155.222909 C17.1287459,157.545789 19.453456,159.143765 22.1125324,159.580641 L316.641741,216.801336 C316.641741,216.801336 340.182844,214.072663 372.186902,258.199796 C372.186902,258.199796 407.355635,273.879489 400.771068,231.676681 C400.740442,231.727589 378.557087,206.762261 387.78569,175.973047 Z" id="Group--Shape" fill="#ABE1FB"></path>
15
+ <path d="M790.96751,316.364532 C790.56546,316.743775 790.130974,317.086872 789.669059,317.38987 C767.442047,331.201167 747.883502,351.410571 723.642358,361.110265 L724.664759,360.864184 C757.504302,388.948181 796.989456,446.2543 819.022212,522.098522 C823.602572,519.412138 802.663785,447.115583 800.557638,440.85077 C788.461994,405.751748 788.921056,367.525617 801.856088,332.72892 C804.606348,325.223449 798.165218,317.625697 790.96751,316.364532 Z" id="Group--Shape" fill="#D7D7DA"></path>
16
+ <path d="M787.23759,323.425107 C776.546568,334.305173 764.360087,343.613485 751.043809,351.070742 C710.306855,373.950993 661.327036,377.004027 618.053656,359.360349 C603.839645,353.506716 590.54678,345.636187 578.58627,335.992233 C572.604612,331.19203 566.93909,326.012207 561.624911,320.484951 C558.971928,317.721749 556.404195,314.873472 553.921712,311.940122 L553.001011,310.837563 L552.540661,310.286284 L552.03939,309.622707 C551.349758,308.725755 550.7307,307.776901 550.187758,306.78464 C549.095299,304.798228 548.325311,302.651541 547.906465,300.42451 C547.05559,295.941297 547.616654,291.305142 549.512577,287.152972 C549.991817,286.122478 550.54215,285.126421 551.159609,284.17198 L552.18261,282.793782 C552.509971,282.365009 552.755491,282.058743 553.205611,281.599344 C554.659947,279.848241 556.386996,278.341919 558.320617,277.138065 C562.210666,274.697336 566.766162,273.526915 571.353652,273.789554 C575.941593,274.07241 580.332735,275.750421 583.936567,278.597934 C584.386687,278.951842 584.819758,279.326167 585.235778,279.72091 L586.350849,280.741798 L588.284322,282.569187 C589.552843,283.804461 590.985045,284.855975 592.376326,286.009578 C595.18898,288.163226 598.160739,290.101628 601.266207,291.808219 C607.485446,295.240758 614.175415,297.744744 621.122659,299.240281 C628.156188,300.738947 635.345505,301.38338 642.534074,301.159549 C646.140872,301.057212 649.739886,300.767569 653.316506,300.291795 C656.889724,299.798732 660.434271,299.117186 663.935258,298.25002 C670.888599,296.546962 677.588325,293.941939 683.863321,290.501483 C686.894308,288.841432 689.722913,286.837409 692.292851,284.529291 C692.855502,283.947385 693.530682,283.365479 694.021723,282.793782 L694.748054,281.956654 L695.351625,281.078691 C696.093468,279.942522 696.607628,278.673644 696.865666,277.342242 C697.227743,274.444689 696.600651,271.50992 695.085644,269.0118 C693.423365,266.086623 691.318466,263.435109 688.845337,261.150966 C683.561959,256.303674 677.629917,252.211703 671.219027,248.992195 C658.076544,242.36352 644.089325,237.555043 629.644259,234.699769 C615.116887,231.709731 600.324632,230.187731 585.491528,230.156819 C570.623929,230.091573 555.783099,231.421172 541.164888,234.128072 C537.509363,234.808664 533.870889,235.567523 530.249465,236.404651 C526.617811,237.23157 523.088457,238.211622 519.323812,239.130421 C515.459987,240.166994 511.467096,240.644876 507.467229,240.549455 C505.376362,240.460781 503.309168,240.072264 501.329222,239.395852 C499.334176,238.693413 497.449881,237.710242 495.733405,236.476113 C492.36087,234.002603 489.691923,230.695302 487.989286,226.87977 C486.36824,223.071825 485.714629,218.92331 486.086504,214.80267 C486.086504,213.781783 486.352485,212.811939 486.475245,211.821679 C486.607449,210.83631 486.819566,209.863274 487.109505,208.912149 C487.385716,207.962724 487.569856,206.982672 487.927906,206.063873 L488.950908,203.317685 C489.293753,202.405451 489.693506,201.515538 490.147819,200.653169 L491.42657,198.039696 C492.377961,196.365441 493.390733,194.721812 494.372814,193.057765 C494.892603,192.178205 496.028475,191.885682 496.909857,192.404397 C497.791238,192.923112 498.084366,194.056638 497.564577,194.936198 L497.564577,195.00766 C493.728323,201.214657 490.79231,208.075021 490.301269,215.037474 C490.054959,218.451758 490.655792,221.873991 492.050601,225.001337 C493.493043,228.044765 495.698998,230.664639 498.454588,232.606949 C501.184786,234.503156 504.417662,235.547761 507.743439,235.608359 C511.273051,235.623159 514.786704,235.135014 518.178051,234.158698 C521.707405,233.250109 525.400439,232.116923 529.093474,231.269587 C532.786508,230.42225 536.489772,229.523869 540.213496,228.78883 C555.141374,225.798954 570.317895,224.216419 585.542678,224.06212 C600.803499,223.871533 616.044741,225.215682 631.035541,228.074209 C646.012278,231.014365 660.835565,235.424599 674.656311,242.448305 C681.717141,245.919533 688.259012,250.355378 694.093333,255.627964 C697.169745,258.422737 699.792598,261.67731 701.868142,265.275351 C702.978508,267.216008 703.80201,269.306613 704.313115,271.482348 C704.8821,273.797497 704.982955,276.202604 704.609785,278.557099 C704.19899,280.925427 703.326606,283.190327 702.042052,285.223494 C701.714692,285.703312 701.397562,286.244382 701.019051,286.662946 L699.89375,288.010517 C699.157189,288.868063 698.420628,289.53164 697.673837,290.297306 C694.684032,293.049851 691.385075,295.447873 687.842796,297.443519 C680.966551,301.318848 673.59504,304.244876 665.930111,306.141481 C650.70129,310.12145 634.75079,310.492032 619.352867,307.223621 C611.605174,305.552016 604.146063,302.75203 597.215122,298.913597 C593.744402,296.979057 590.43007,294.777481 587.30224,292.328872 C585.808659,291.022136 584.233237,289.827697 582.801035,288.429081 L580.662963,286.387306 L579.752492,285.499134 C579.486512,285.247315 579.210301,285.005705 578.923861,284.774304 C576.610849,282.906273 573.779433,281.791012 570.811462,281.578926 C567.838571,281.380275 564.877611,282.111848 562.341012,283.671745 C561.068852,284.441171 559.931851,285.413729 558.975338,286.550648 C558.760508,286.785452 558.402457,287.204016 558.167167,287.571536 L557.502216,288.459708 C557.095565,289.081888 556.729922,289.729819 556.407605,290.399394 C555.140723,293.112888 554.744156,296.150517 555.272074,299.097356 C555.530324,300.568643 556.024276,301.988837 556.734965,303.303413 C557.087787,303.963172 557.491379,304.594615 557.942107,305.192055 L558.279697,305.661663 L558.709358,306.192525 L559.578909,307.213413 C561.918171,310.044674 564.352914,312.797668 566.883137,315.472393 C571.931757,320.822078 577.320492,325.841628 583.015866,330.499858 C594.401877,339.830081 607.056209,347.50186 620.600929,353.286068 C647.959272,364.790581 678.149113,367.831424 707.259358,362.014657 C721.78631,359.11832 735.805687,354.099384 748.864816,347.119907 C761.958159,340.099372 773.985993,331.258686 784.588017,320.862679 C785.322273,320.216518 786.433679,320.252389 787.124561,320.944547 C787.815443,321.636705 787.847038,322.745947 787.19667,323.476151 L787.23759,323.425107 Z" id="Group--Shape" fill="#233940"></path>
17
+ <path d="M701.429064,332.205588 C732.562314,360.001474 758.648033,393.068466 780.381023,428.648427 C785.847478,437.535756 790.884791,446.688683 795.646226,455.984624 C796.811041,458.344363 798.047379,460.581518 799.161106,463.033195 C800.274832,465.484872 801.439647,467.916118 802.297931,470.469948 C802.757727,471.736648 803.258393,472.993132 803.6671,474.270047 L804.801261,478.151869 L805.363233,480.102995 L805.792376,482.084767 L806.65066,486.048312 C814.573099,530.732074 787.786309,574.270342 744.322855,587.353643 C733.913126,590.373106 723.051962,591.531594 712.239362,590.775775 C706.813778,590.336516 701.653853,589.560152 696.473493,588.630558 C691.293133,587.700964 686.153643,586.587494 681.055025,585.35144 C660.674407,580.264211 641.049189,572.526518 622.681459,562.336324 C613.535068,557.252473 604.704509,551.620365 596.238122,545.47083 C587.825704,539.286653 579.733087,532.679034 571.991584,525.673539 C571.489651,525.241064 571.256622,524.573723 571.380276,523.922899 C571.50393,523.272074 571.965483,522.736641 572.59107,522.518292 C573.216658,522.299943 573.911239,522.43185 574.413172,522.864326 C582.247235,529.532881 590.414855,535.799532 598.884499,541.640085 C607.350657,547.438278 616.134542,552.758552 625.195007,557.575984 C643.313633,567.138602 662.609322,574.282236 682.587676,578.823851 C687.5739,579.93732 692.58056,580.866915 697.62809,581.68414 C702.675621,582.501366 707.774239,583.134716 712.68894,583.461606 C722.608773,583.999867 732.54587,582.786112 742.044314,579.876028 C751.488187,576.884864 760.322034,572.23199 768.130033,566.136423 C770.122479,564.675632 771.92079,562.979889 773.770189,561.345437 C774.689779,560.517997 775.517411,559.598618 776.396131,558.740531 C777.27485,557.882444 778.143353,556.993711 778.919896,556.043686 L781.36192,553.265119 L783.630243,550.333322 C783.998079,549.842987 784.396568,549.362867 784.754187,548.862316 L785.775954,547.330018 C786.450321,546.308486 787.175776,545.286954 787.819489,544.265422 C790.404031,540.055704 792.632416,535.637548 794.481412,531.057013 C796.316264,526.471443 797.732083,521.729202 798.711528,516.888364 L799.0998,515.080252 C799.212194,514.477548 799.283718,513.854413 799.375677,513.25171 L799.906996,509.58441 L800.182873,505.886464 L800.315703,504.037491 L800.315703,502.188518 L800.315703,498.480356 L800.080696,494.78241 C800.080696,494.169491 800.01939,493.546357 799.958084,492.933437 L799.71286,491.09468 L799.222412,487.417165 L798.476522,483.78051 L798.108686,481.962183 L797.618237,480.164287 L796.59647,476.57871 C796.228634,475.393733 795.779056,474.239401 795.370349,473.06464 C794.614241,470.694685 793.541386,468.447315 792.570707,466.159083 C791.600028,463.870851 790.343254,461.551974 789.239745,459.253526 L787.543612,455.800748 L785.765737,452.378616 C784.570269,450.110815 783.405454,447.812368 782.179333,445.554782 C779.686221,441.060041 777.23398,436.544869 774.618256,432.11142 C772.002531,427.677971 769.335719,423.285384 766.668906,418.882581 C764.002093,414.479778 761.151363,410.189343 758.239326,405.949985 C755.327289,401.710627 752.384599,397.481485 749.421474,393.272773 C746.458349,389.064061 743.29087,384.967717 740.143827,380.92245 C727.636942,364.541547 713.83999,349.186664 698.884864,335.004586 C698.223788,334.298939 698.218092,333.203248 698.871795,332.490768 C699.525498,331.778289 700.617861,331.689609 701.377976,332.287311 L701.429064,332.205588 Z" id="Group--Shape" fill="#233940"></path>
18
+ <path d="M967.535058,447.320925 C950.15559,409.562283 925.916344,375.219509 898.242098,344.241468 C870.332301,313.366566 839.113881,285.654955 805.14949,261.606086 C803.053731,260.072013 800.917079,258.599304 798.75998,257.147048 L792.319354,252.7596 C788.005156,249.865317 783.609173,247.103986 779.254083,244.271065 C774.898993,241.438144 770.411001,238.819993 765.963902,236.21207 C761.516803,233.604146 757.008365,230.965541 752.397694,228.562161 L745.548139,224.870159 C743.258139,223.653128 740.917022,222.528141 738.606575,221.352019 C733.995905,218.969093 729.283002,216.800937 724.580322,214.622553 C722.239206,213.497567 719.857196,212.485079 717.424071,211.472591 L710.26782,208.404445 L703.029782,205.581752 L699.410764,204.170405 L695.750852,202.881784 L688.43103,200.314769 L681.029421,198.01366 L677.359286,196.888673 L673.566473,195.865958 C671.072008,195.221648 668.587767,194.505747 666.072855,193.912572 C656.088754,191.546919 645.954209,189.869137 635.740573,188.891041 C625.487836,188.032894 615.186209,187.923515 604.917575,188.563772 L597.229717,189.167174 L589.572528,190.128526 C587.016724,190.394432 584.46092,190.916017 581.956232,191.33533 C579.451544,191.754643 576.844623,192.194411 574.380828,192.797813 C564.302706,194.918757 554.393676,197.77639 544.733501,201.347711 L541.114482,202.687468 C539.89792,203.117008 538.701803,203.587457 537.526134,204.109042 L530.369882,207.105597 C525.718319,209.314662 521.025862,211.421455 516.527647,213.927107 C498.311278,223.560605 481.538054,235.706422 466.699691,250.008497 C459.28171,257.131805 452.387004,264.781107 446.06924,272.896861 C439.669507,280.914948 434.332988,289.751206 428.04571,298.382922 C424.897,302.773916 421.421456,306.920875 417.648699,310.788456 C413.724725,314.825424 409.135721,318.156932 404.082491,320.637203 C398.894331,323.089912 393.247649,324.421104 387.510657,324.543975 L383.278246,324.38034 L382.255924,324.38034 L381.233603,324.216706 L379.188959,323.899664 C376.477783,323.483288 373.794367,322.902682 371.153511,322.161049 C360.799771,319.134815 350.917813,314.680715 341.792434,308.927115 C332.815991,303.294919 324.210746,297.091292 316.029929,290.354608 L303.905194,280.444499 C299.877247,277.192265 295.787961,274.01503 291.637335,270.912794 C283.35653,264.694686 274.874668,258.752711 266.191749,253.086869 C231.385171,230.42956 194.017877,211.977313 154.871147,198.115931 C145.107975,194.648927 135.232348,191.47851 125.305605,188.502409 C115.378862,185.526308 105.329441,182.918385 95.2800191,180.515004 C75.3243009,175.851423 54.3258146,174.082126 33.695364,168.242423 C31.0986671,167.526522 28.5837559,166.749259 25.9768357,165.859496 C23.2715666,164.948386 20.6540266,163.794856 18.1560753,162.412946 C16.8168117,161.668521 15.5443946,160.809651 14.3530388,159.845931 C12.9996958,158.783356 11.8230863,157.513095 10.866922,156.08234 C9.69763262,154.354935 9.04832685,152.328179 8.99607343,150.242636 C8.99322327,148.113281 9.63865504,146.033549 10.8464756,144.280207 C12.8276035,141.579895 15.4818992,139.446472 18.5445575,138.092781 C21.1851653,136.865342 23.9515097,135.929155 26.794693,135.300769 C29.5163706,134.689794 32.2760555,134.262698 35.0550518,134.022375 L42.8553659,133.316701 L105.216985,127.640632 C125.983745,125.71111 146.740282,123.665679 167.486596,121.504342 C188.23291,119.343004 208.965592,117.031667 229.684644,114.570333 C271.129563,109.722663 312.615375,104.660223 354.182972,100.426183 L385.374005,97.3580375 L400.974633,95.9160092 L408.774947,95.2001086 C411.887955,94.9036505 415.028123,95.2910869 417.975842,96.3353224 C423.916693,98.5180402 428.612172,103.181721 430.836648,109.109034 C431.959831,112.039751 432.41391,115.184582 432.165666,118.31347 C431.888436,121.498845 430.835427,124.56779 429.098701,127.252001 C428.232136,128.558852 427.22417,129.766133 426.093076,130.851958 L423.210129,133.57238 C421.308611,135.321223 419.478655,137.131429 417.648699,138.931407 C414.019457,142.572273 410.492448,146.294956 407.221018,150.181274 C400.698606,157.953908 394.840703,166.432217 391.886194,175.749152 C390.384941,180.366671 389.723595,185.216095 389.93356,190.067163 C390.20635,194.988471 391.159353,199.848245 392.765391,204.507901 C394.329543,209.28398 396.35374,213.998697 398.449499,218.733868 L401.659589,225.892874 L403.254411,229.492831 L404.051821,231.303037 L404.828786,233.276877 C407.072882,238.747595 407.555332,244.782325 406.20892,250.540309 C404.642157,256.555598 400.495151,261.569115 394.881596,264.234464 C389.358116,266.799826 383.050385,267.100834 377.307888,265.07309 C371.789536,263.071545 367.056843,259.354897 363.803019,254.467535 C362.934045,253.230049 362.310429,252.25847 361.605027,251.194846 C360.899625,250.131222 360.163554,249.149416 359.407036,248.126701 C357.883777,246.081271 356.278732,244.17902 354.571454,242.327906 C351.178751,238.587545 347.452308,235.164333 343.438372,232.100755 C339.464443,229.056234 335.168894,226.456649 330.628682,224.348574 C328.383892,223.336319 326.071237,222.481982 323.707564,221.791786 C321.366616,221.143969 318.971137,220.712617 316.551313,220.503165 C314.199736,220.342523 311.837328,220.473055 309.51774,220.891797 C304.927518,221.795282 300.742725,224.133795 297.5668,227.570127 C297.178318,228.009894 296.73872,228.408753 296.380907,228.879202 L295.307469,230.300776 L292.95613,233.440512 C280.195707,250.913524 262.139663,263.800803 241.472012,270.186666 C220.799174,276.557803 198.59815,275.892415 178.343652,268.294643 L178.108518,268.192372 L8.78138589,182.570661 C7.86671356,182.110325 7.49825796,180.995375 7.95841722,180.08035 C8.41857648,179.165326 9.53309769,178.796728 10.4477702,179.257064 L180.316732,263.794696 L180.071375,263.692425 C199.300318,270.804864 220.344166,271.337188 239.90786,265.206043 C259.434857,259.072077 276.461913,246.798122 288.457915,230.208732 C289.234879,229.186017 289.940281,228.234892 290.788808,227.068996 L292.087156,225.381516 C292.516531,224.819023 293.037915,224.358801 293.518407,223.786081 C297.483044,219.488568 302.703225,216.553547 308.434079,215.399817 C311.250377,214.872604 314.121652,214.700811 316.980688,214.888459 C319.776504,215.115684 322.545225,215.601852 325.25127,216.340715 C327.900869,217.097932 330.493777,218.04117 333.010691,219.163409 C337.957557,221.428462 342.640635,224.230473 346.975605,227.518991 C351.290827,230.767974 355.301265,234.403404 358.957214,238.380226 C360.797393,240.354066 362.525117,242.471086 364.171055,244.577879 C364.988912,245.65173 365.7761,246.756263 366.553064,247.860795 C367.330028,248.965327 368.09677,250.192585 368.730609,251.082348 C371.279954,254.934058 375.005932,257.85787 379.352531,259.417476 C383.579032,260.897094 388.216193,260.66588 392.274676,258.773165 C396.228656,256.869341 399.137138,253.311913 400.218115,249.057372 C401.202422,244.555833 400.762979,239.859484 398.96066,235.618895 L398.296151,233.951869 L397.508963,232.182572 L395.903918,228.592842 L392.652935,221.433836 C390.50606,216.637302 388.369408,211.758951 386.651907,206.614694 C384.833828,201.396568 383.746662,195.951761 383.421371,190.435341 C383.156263,184.82371 383.893655,179.209753 385.598916,173.857129 C387.278399,168.615132 389.610573,163.605384 392.54048,158.945942 C395.396008,154.382217 398.573266,150.028041 402.048071,145.916551 C405.452402,141.825691 409.091867,137.918919 412.813118,134.1451 C414.683966,132.273532 416.565038,130.401963 418.497226,128.601984 L419.9387,127.241773 L420.654325,126.556554 C420.909905,126.32133 421.134816,126.10656 421.298387,125.932698 C422.048089,125.206296 422.716534,124.400424 423.291914,123.529317 C425.523353,119.963008 425.903789,115.540632 424.314236,111.645368 C422.803012,107.652409 419.631784,104.513551 415.624502,103.044334 C413.63712,102.35304 411.52182,102.108604 409.429233,102.328433 L401.639142,103.075015 L386.069184,104.578406 L354.949713,107.779505 C313.463902,112.166952 272.070099,117.362345 230.59451,122.363422 C189.118922,127.364499 147.571771,131.997399 105.953057,135.750763 L43.5914374,141.426832 L35.7911234,142.132506 C33.3837116,142.340275 30.9929331,142.70928 28.634872,143.237038 C26.3779611,143.732597 24.180941,144.46979 22.0817903,145.435875 C20.3387402,146.177781 18.8045928,147.336736 17.6142448,148.810835 C17.3111747,149.204927 17.139522,149.684308 17.1235304,150.181274 C17.1635609,150.717888 17.3549945,151.23212 17.6755841,151.66421 C18.8867627,153.221379 20.426075,154.492411 22.1840225,155.386894 C24.2586138,156.526866 26.4312321,157.478394 28.6757648,158.230042 C30.9964349,159.017532 33.4704533,159.794796 35.913802,160.459561 C55.5526005,166.002676 76.4284082,167.782201 97.1406445,172.599189 C107.363861,175.053705 117.587077,177.712765 127.636499,180.70932 C137.68592,183.705875 147.704672,186.978564 157.600746,190.537612 C197.236884,204.741134 235.053221,223.587921 270.26059,246.684672 C279.04574,252.466422 287.640057,258.531123 296.043541,264.878775 C300.241875,268.049191 304.382278,271.294607 308.464749,274.615022 L320.558814,284.566041 C328.473818,291.134757 336.802441,297.188057 345.493238,302.688553 C354.037144,308.125408 363.296302,312.345437 373.003913,315.22704 C375.38525,315.906092 377.80585,316.438897 380.252174,316.822476 L382.05146,317.108836 L382.951103,317.252016 L383.850746,317.252016 L387.439095,317.41565 C392.166997,317.328812 396.823844,316.248649 401.107535,314.245233 C405.458284,312.125367 409.411204,309.271112 412.792671,305.807834 C416.320804,302.207814 419.574094,298.348173 422.525173,294.26138 C425.592138,290.170519 428.444416,285.82398 431.409148,281.508122 C432.871068,279.350193 434.476113,277.182037 435.958479,275.013881 C437.440846,272.845725 439.10723,270.749159 440.763391,268.673048 C447.307394,260.328617 454.444689,252.467393 462.11969,245.1506 C477.449657,230.482085 494.763104,218.040248 513.552691,208.189675 C518.194032,205.643115 523.029613,203.474959 527.865194,201.224985 L535.19524,198.15684 C536.411803,197.625028 537.638589,197.134125 538.896045,196.714812 L542.627518,195.354601 C552.573914,191.718389 562.773335,188.816331 573.143819,186.671749 C575.72007,186.05812 578.337213,185.649034 580.944133,185.199039 C583.551053,184.749045 586.157974,184.247914 588.78534,183.982008 L596.66744,183.030883 L604.590433,182.437709 C615.151572,181.820773 625.743614,181.974588 636.282403,182.89793 C646.816042,183.942358 657.265117,185.712448 667.555222,188.195595 C670.121249,188.819451 672.66683,189.545579 675.202188,190.241025 L679.025671,191.26374 L682.798037,192.439862 L690.342771,194.812561 L697.785272,197.451167 L701.506523,198.780696 L705.176658,200.222724 L712.516927,203.117008 L719.754964,206.246517 C722.167643,207.269232 724.590546,208.291947 726.911216,209.468069 C731.675235,211.697588 736.439253,213.906653 741.090817,216.340715 C743.431933,217.537292 745.793496,218.69296 748.103943,219.930445 L755.025061,223.683809 C773.418572,233.782838 791.172464,245.00625 808.185785,257.290228 C842.2885,281.773458 873.596175,309.934459 901.544197,341.265367 C915.47247,356.958205 928.347757,373.55561 940.085722,390.948868 C951.854455,408.346282 962.150908,426.696143 970.867827,445.807307 C971.233754,446.724706 970.815215,447.767909 969.916825,448.177667 C969.018435,448.587425 967.956714,448.219372 967.504388,447.341379 L967.535058,447.320925 Z" id="Group--Shape" fill="#233940"></path>
19
+ </g>
20
+ <path d="M27,458.580661 C27,457.768025 29.8963859,457.361713 35.6892447,457.361713 C37.0195814,457.361713 38.7287859,457.416734 40.8169094,457.526778 C42.9050329,457.636823 43.9827579,457.793422 44.0501167,457.996581 C44.0164373,458.758428 43.3176,459.139346 41.9535838,459.139346 C41.5662706,459.139346 40.9179516,459.097021 40.0086075,459.012372 C39.0992634,458.927722 38.3204387,458.885398 37.6721101,458.885398 C37.0237814,458.885398 36.6996219,459.0293 36.6996219,459.317109 C36.6996219,462.957042 36.6154247,468.383002 36.4470276,475.595149 C36.0933938,475.849098 35.5713708,475.97607 34.8809428,475.97607 C34.8641031,475.231154 34.8556834,474.342346 34.8556834,473.309621 L34.9819806,462.339085 C34.9819806,461.018551 34.9651411,459.909658 34.9314617,459.012372 C34.5778279,458.978512 34.1189528,458.961582 33.5548226,458.961582 C32.9906925,458.961582 32.1108311,459.008139 30.915212,459.101253 C29.7195929,459.194368 28.8776202,459.240925 28.3892688,459.240925 C27.463085,459.240925 27,459.020839 27,458.580661 Z M45.3130883,470.26225 L45.5404232,458.885398 C45.5404232,458.005042 45.4899048,457.404039 45.3888666,457.08237 C45.6919813,456.811491 46.1550662,456.676054 46.7781353,456.676054 C47.0307309,458.487556 47.1570268,460.815385 47.1570268,463.659613 C47.1570268,464.506109 47.0812493,466.46995 46.9296919,469.551196 C47.7211581,465.267926 49.1356721,463.126323 51.1732765,463.126323 C51.8973839,463.126323 52.4572957,463.511473 52.8530288,464.281784 C53.2487618,465.052096 53.4971438,465.98746 53.598182,467.087905 C53.6992202,468.18835 53.7834175,469.288778 53.8507763,470.389224 C54.0191734,473.030292 54.4906781,474.350806 55.2653045,474.350806 C55.2821442,474.350806 55.442119,474.300017 55.7452337,474.198437 C56.418822,473.995278 56.7977096,473.944489 56.8819082,474.046069 C56.8819082,474.232298 56.6208967,474.465081 56.0988658,474.744425 C55.5768349,475.023768 55.0969105,475.163438 54.6590781,475.163438 C53.9181311,475.163438 53.3497996,474.778288 52.9540665,474.007977 C52.5583334,473.237665 52.3141613,472.302301 52.2215429,471.201856 C52.1289246,470.101411 52.0615668,469.005215 52.0194675,467.913235 C51.9773682,466.821255 51.8637019,465.890123 51.6784652,465.119811 C51.4932284,464.3495 51.1816985,463.96435 50.7438662,463.96435 C50.2049956,463.96435 49.7124416,464.552656 49.2661894,465.729285 C48.8199372,466.905915 48.4705185,468.205267 48.217923,469.627381 C47.9653274,471.049494 47.6580074,472.348846 47.2959537,473.525476 C46.9339,474.702106 46.5676419,475.290412 46.1971684,475.290412 C45.6077787,475.290412 45.3130883,473.614375 45.3130883,470.26225 Z M60.7213418,473.030278 L60.7971201,474.47778 C60.7971201,474.850238 60.6918735,475.108415 60.4813772,475.25232 C60.2708809,475.396224 60.0603877,475.468175 59.8498914,475.468175 C59.6393951,475.468175 59.4246921,475.434316 59.2057759,475.366596 C58.8353024,473.402725 58.5532415,470.956388 58.3595849,468.027511 C58.1659283,465.098634 58.052262,463.439527 58.0185826,463.050138 C58.2711782,462.813119 58.5363996,462.694612 58.8142547,462.694612 C59.0921098,462.694612 59.3404918,462.728471 59.559408,462.796191 C59.6267668,463.287159 59.6772851,464.370657 59.7109645,466.04672 C59.744644,467.722782 59.7867426,468.772422 59.8372617,469.19567 C60.0730176,467.773556 60.4940039,466.444577 61.1002333,465.208693 C61.4370274,464.514566 61.8790631,463.960119 62.4263535,463.545336 C62.9736439,463.130553 63.5630248,462.923165 64.1945137,462.923165 C64.8260027,462.923165 65.4069638,463.206737 65.9374146,463.773889 C66.4678653,464.341041 66.7330867,464.853164 66.7330867,465.310272 C66.7330867,465.479571 66.63205,465.610776 66.4299735,465.703891 C66.227897,465.797005 66.0047743,465.843562 65.7605985,465.843562 C65.5164228,465.843562 65.326979,465.750449 65.1922613,465.564219 C65.0575437,465.37799 64.9649267,465.170602 64.9144076,464.942048 C64.8638884,464.713494 64.754432,464.506105 64.5860349,464.319876 C64.4176379,464.133647 64.1903053,464.040534 63.9040303,464.040534 C63.1462435,464.040534 62.4979246,464.726186 61.959054,466.097509 C61.1339084,468.14603 60.7213418,470.45693 60.7213418,473.030278 Z M69.8147374,464.98014 C70.6735624,463.659606 71.9112622,462.999349 73.5278739,462.999349 C75.1444856,462.999349 76.4369136,463.659606 77.4051967,464.98014 C78.3734798,466.300674 78.8576141,467.803182 78.8576141,469.48771 C78.8576141,471.172237 78.3271713,472.598562 77.2662698,473.766726 C76.2053684,474.934891 74.8582122,475.518965 73.2247607,475.518965 C71.5913093,475.518965 70.4041278,475.057631 69.6631808,474.13495 C68.9222337,473.21227 68.5517658,471.912917 68.5517658,470.236855 C68.5517658,468.052895 68.9727521,466.300674 69.8147374,464.98014 Z M70.9261524,466.326062 C70.7072362,466.986329 70.5430515,467.646586 70.4335935,468.306853 C70.3241354,468.96712 70.2694071,469.580821 70.2694071,470.147973 C70.2694071,470.715126 70.3115058,471.231481 70.3957043,471.697054 C70.4799028,472.162626 70.6230382,472.619728 70.8251147,473.068371 C71.0271911,473.517013 71.3303013,473.872537 71.7344542,474.13495 C72.1386071,474.397364 72.6185316,474.528569 73.1742418,474.528569 C74.3025021,474.528569 75.2497214,474.063003 76.015928,473.131857 C76.7821346,472.200712 77.1652321,471.074889 77.1652321,469.754355 C77.1652321,468.433821 76.8158135,467.151398 76.1169657,465.907049 C75.4181179,464.662699 74.5635157,464.040534 73.5531333,464.040534 C72.9469039,464.040534 72.4164612,464.252155 71.9617891,464.675403 C71.507117,465.098651 71.1619083,465.648865 70.9261524,466.326062 Z M88.8856086,472.573173 C88.6161733,473.351949 88.0983601,474.012206 87.3321535,474.553964 C86.5659469,475.095721 85.732394,475.366596 84.8314697,475.366596 C83.9305455,475.366596 83.2317082,474.913727 82.7349369,474.007977 C82.2381656,473.102226 81.9897836,471.845198 81.9897836,470.236855 C81.9897836,465.699635 82.654942,463.43106 83.9852788,463.43106 C84.1536758,463.43106 84.364169,463.456454 84.6167646,463.507244 C84.5662454,463.778123 84.4483693,464.294478 84.2631325,465.056324 C83.892659,466.546158 83.707425,467.858207 83.707425,468.992512 C83.707425,470.126817 83.8673998,471.324591 84.1873542,472.58587 C84.5073086,473.847149 84.9619739,474.47778 85.5513636,474.47778 C85.8544783,474.47778 86.1491687,474.283088 86.4354437,473.8937 C86.7217187,473.504312 86.9490513,473.093767 87.1174483,472.662054 C87.2858454,472.230341 87.4626597,471.735148 87.6478964,471.176461 C87.8331332,470.617774 87.9510094,470.27918 88.0015285,470.160671 C87.7489329,469.178735 87.622637,468.179885 87.622637,467.164089 L87.622637,466.694286 C87.622637,466.431872 87.6310567,466.173695 87.6478964,465.919746 C87.6647361,465.665797 87.7152545,465.361063 87.799453,465.005535 C87.9678501,464.294478 88.4225153,463.938955 89.1634623,463.938955 C89.7865315,463.938955 90.0980613,464.887016 90.0980613,466.783168 C90.0980613,467.121766 90.0517528,467.612727 89.9591345,468.256064 C89.8665161,468.899401 89.8202076,469.348037 89.8202076,469.601986 C89.8202076,470.380762 90.1906756,471.388078 90.9316226,472.623962 C91.6725696,473.859847 92.3671971,474.47778 93.0155257,474.47778 C93.6638544,474.47778 94.139569,474.105327 94.4426837,473.36041 C94.7457984,472.615494 94.8973534,471.78594 94.8973534,470.871724 C94.8973534,469.822069 94.8089463,469.022142 94.6321294,468.471919 C94.4553125,467.921697 94.3458561,467.561941 94.3037568,467.392642 C94.2616575,467.223343 94.1522011,466.956701 93.9753842,466.592707 C93.7985673,466.228714 93.6891108,465.995931 93.6470116,465.894351 C93.6049123,465.792772 93.4744065,465.547292 93.2554904,465.157903 C93.0365742,464.768515 92.9102783,464.548429 92.8765989,464.49764 C92.3882474,463.634213 92.1019767,463.160183 92.0177782,463.075533 C92.4387708,462.720005 92.8260782,462.542243 93.1797121,462.542243 C94.2069341,463.28716 95.0236476,464.501864 95.629877,466.186391 C96.2361064,467.870918 96.5392165,469.403053 96.5392165,470.782842 C96.5392165,472.162631 96.248736,473.24613 95.6677661,474.033371 C95.0867963,474.820613 94.1816757,475.214228 92.9523772,475.214228 C92.0935522,475.214228 91.2810486,474.97298 90.514842,474.490477 C89.7486354,474.007974 89.205563,473.368879 88.8856086,472.573173 Z M112.629475,465.361061 C112.477917,464.971673 112.191647,464.666939 111.770654,464.44685 C111.349661,464.226761 110.827638,464.116718 110.204569,464.116718 C109.5815,464.116718 108.996329,464.302945 108.449039,464.675403 C107.901748,465.047861 107.628107,465.547286 107.628107,466.173694 C107.628107,466.800101 107.884909,467.295294 108.39852,467.659287 C108.912131,468.02328 109.535191,468.298387 110.267718,468.484617 C111.000245,468.670846 111.736971,468.869769 112.477918,469.081393 C113.218865,469.293017 113.846135,469.640076 114.359746,470.122579 C114.873357,470.605081 115.130159,471.235712 115.130159,472.014488 C115.130159,473.148793 114.662864,474.012206 113.72826,474.604753 C112.793656,475.197301 111.669623,475.49357 110.356126,475.49357 C109.581499,475.49357 108.566922,475.281949 107.312364,474.858701 C106.057806,474.435453 105.430537,473.927563 105.430537,473.335015 C105.430537,472.894837 105.801005,472.674752 106.541952,472.674752 C106.760868,472.674752 107.047138,472.810189 107.400772,473.081068 C108.478513,473.876774 109.581498,474.274622 110.709758,474.274622 C111.315987,474.274622 111.83801,474.173044 112.275843,473.969884 C113.084149,473.580496 113.488295,472.954098 113.488295,472.090672 C113.488295,471.565845 113.231494,471.142603 112.717883,470.820934 C112.204272,470.499266 111.581212,470.245321 110.848685,470.059092 C110.116158,469.872862 109.379432,469.669706 108.638484,469.449617 C107.897537,469.229528 107.270268,468.861308 106.756657,468.344945 C106.243046,467.828583 105.986244,467.172558 105.986244,466.376852 C105.986244,465.344126 106.449329,464.506108 107.375513,463.862771 C108.301697,463.219434 109.446779,462.89777 110.810796,462.89777 C111.736979,462.89777 112.574742,463.139018 113.324109,463.62152 C114.073476,464.104023 114.448154,464.802372 114.448154,465.716588 C114.448154,466.326065 114.102945,466.630799 113.412517,466.630799 C113.126242,466.630799 112.936798,466.58001 112.84418,466.478431 C112.751562,466.376851 112.701043,466.194857 112.692623,465.932443 C112.684203,465.67003 112.663154,465.479571 112.629475,465.361061 Z M118.919073,464.98014 C119.777898,463.659606 121.015598,462.999349 122.63221,462.999349 C124.248822,462.999349 125.54125,463.659606 126.509533,464.98014 C127.477816,466.300674 127.96195,467.803182 127.96195,469.48771 C127.96195,471.172237 127.431507,472.598562 126.370606,473.766726 C125.309704,474.934891 123.962548,475.518965 122.329097,475.518965 C120.695645,475.518965 119.508464,475.057631 118.767517,474.13495 C118.02657,473.21227 117.656102,471.912917 117.656102,470.236855 C117.656102,468.052895 118.077088,466.300674 118.919073,464.98014 Z M120.030488,466.326062 C119.811572,466.986329 119.647387,467.646586 119.537929,468.306853 C119.428471,468.96712 119.373743,469.580821 119.373743,470.147973 C119.373743,470.715126 119.415842,471.231481 119.50004,471.697054 C119.584239,472.162626 119.727374,472.619728 119.929451,473.068371 C120.131527,473.517013 120.434637,473.872537 120.83879,474.13495 C121.242943,474.397364 121.722867,474.528569 122.278578,474.528569 C123.406838,474.528569 124.354057,474.063003 125.120264,473.131857 C125.886471,472.200712 126.269568,471.074889 126.269568,469.754355 C126.269568,468.433821 125.920149,467.151398 125.221302,465.907049 C124.522454,464.662699 123.667852,464.040534 122.657469,464.040534 C122.05124,464.040534 121.520797,464.252155 121.066125,464.675403 C120.611453,465.098651 120.266244,465.648865 120.030488,466.326062 Z M132.382351,464.421455 C132.567587,464.421455 132.660204,465.538814 132.660204,467.773563 C132.660204,468.129092 132.655994,468.696236 132.647575,469.475012 C132.639155,470.253789 132.634945,470.660101 132.634945,470.693961 C132.803342,468.780879 132.975946,467.477295 133.152763,466.783168 C133.32958,466.089041 133.510604,465.49227 133.695841,464.992837 C133.881078,464.493405 134.083151,464.108255 134.302067,463.837376 C134.840938,463.143249 135.463998,462.796191 136.171265,462.796191 C137.06377,462.796191 137.733138,463.244827 138.17939,464.142113 C138.625642,465.039399 138.857185,466.232941 138.874025,467.722774 C139.295017,464.658458 140.406421,463.126323 142.20827,463.126323 C142.982896,463.126323 143.530178,463.52417 143.850133,464.319876 C144.170087,465.115583 144.330062,466.063644 144.330062,467.164089 L144.254284,471.024092 C144.254284,473.563581 144.801566,474.833306 145.896147,474.833306 L147.335934,474.604753 C147.420133,474.604753 147.50433,474.613218 147.588529,474.630148 C147.420132,474.884097 147.108602,475.083021 146.65393,475.226925 C146.199258,475.370829 145.753012,475.44278 145.31518,475.44278 C144.456355,475.44278 143.812246,475.05763 143.382833,474.287319 C142.953421,473.517007 142.721878,472.704383 142.688199,471.849422 C142.65452,470.994461 142.63768,470.262253 142.63768,469.652776 L142.688199,467.392642 C142.688199,466.647725 142.64189,465.936679 142.549272,465.259482 C142.456654,464.582285 142.216691,464.243692 141.829378,464.243692 C141.256828,464.243692 140.705336,465.449931 140.174885,467.862445 C139.644435,470.274959 139.320275,472.564697 139.202397,474.731727 C138.916122,475.036466 138.554074,475.197298 138.116242,475.214228 C137.981524,475.214228 137.855228,475.188833 137.73735,475.138043 C137.585793,474.257687 137.505805,472.789038 137.497386,470.732053 C137.488966,468.675067 137.383719,467.037122 137.181643,465.818167 C136.979566,464.599213 136.524901,463.989744 135.817633,463.989744 C135.346122,463.989744 134.958814,464.514564 134.655699,465.564219 C134.167348,467.206422 133.729522,469.762802 133.342209,473.233436 C133.241171,474.046073 133.165393,474.630146 133.114874,474.985675 C132.76124,475.290413 132.399192,475.44278 132.028719,475.44278 L131.649827,475.391991 C131.414071,472.564694 131.296195,469.060252 131.296195,464.878561 C131.481432,464.573822 131.84348,464.421455 132.382351,464.421455 Z M150.114472,470.363829 C150.080793,470.702427 150.063953,470.930978 150.063953,471.049487 C150.063953,472.065283 150.371273,472.852512 150.985922,473.4112 C151.600572,473.969887 152.328878,474.249227 153.170863,474.249227 C154.012848,474.249227 154.699056,474.130719 155.229507,473.8937 C155.759958,473.656681 156.143055,473.402736 156.378811,473.131857 C156.98504,472.370011 157.540742,471.989093 158.045934,471.989093 C158.23117,471.989093 158.450083,472.039882 158.702679,472.141462 C158.534282,472.971028 157.898592,473.728631 156.795592,474.414293 C155.692591,475.099955 154.307546,475.44278 152.640415,475.44278 C151.461636,475.44278 150.447059,475.066095 149.596654,474.312714 C148.746248,473.559332 148.321052,472.530855 148.321052,471.227251 C148.321052,469.923646 148.577854,468.658154 149.091465,467.430734 C149.605076,466.203315 150.346012,465.153675 151.314295,464.281784 C152.282578,463.409893 153.267686,462.973954 154.269649,462.973954 C155.271611,462.973954 156.079905,463.181343 156.694554,463.596126 C157.309203,464.010909 157.616523,464.616144 157.616523,465.411851 C157.616523,466.884754 156.963994,468.099458 155.658917,469.055999 C154.35384,470.012539 152.968795,470.490803 151.503741,470.490803 C151.116427,470.490803 150.653343,470.448478 150.114472,470.363829 Z M152.034189,469.525802 C152.825655,469.525802 153.532912,469.271857 154.155981,468.763959 C154.77905,468.256061 155.221086,467.722777 155.482101,467.164089 C155.743117,466.605402 155.873622,466.097512 155.873622,465.640404 C155.873622,465.183296 155.696808,464.781216 155.343174,464.434153 C154.989541,464.087089 154.576974,463.91356 154.105462,463.91356 C153.263477,463.91356 152.484652,464.497634 151.768965,465.665798 C151.053277,466.833963 150.543884,468.044435 150.240769,469.297249 C150.981716,469.449618 151.579517,469.525802 152.034189,469.525802 Z M161.556995,464.878561 C160.799208,464.878561 160.285605,464.692335 160.016169,464.319876 C160.016169,464.048998 160.129836,463.837377 160.357172,463.685007 C160.584508,463.532638 160.83289,463.435292 161.102325,463.392968 C161.37176,463.350643 161.809586,463.312551 162.415815,463.278691 C162.466334,462.821583 162.495804,462.233277 162.504223,461.513755 C162.512643,460.794234 162.525273,460.180533 162.542113,459.672636 C162.592632,458.335172 162.794705,457.514083 163.148339,457.209344 C163.299896,457.073905 163.464081,457.006186 163.640898,457.006186 C163.817715,457.006186 163.97348,457.023116 164.108197,457.056975 C164.158716,458.27593 164.183976,459.012371 164.183976,459.266319 L164.032419,463.075533 C164.066098,463.092463 164.158715,463.100928 164.310273,463.100928 L166.128952,463.024744 C167.442449,463.024744 168.099188,463.2279 168.099188,463.634218 C168.099188,464.209835 167.863435,464.548429 167.391923,464.650008 C167.173007,464.700798 166.916206,464.726192 166.621511,464.726192 C166.326816,464.726192 165.947928,464.688101 165.484836,464.611916 C165.021744,464.535731 164.689165,464.49764 164.487089,464.49764 C164.285012,464.49764 164.150297,464.506104 164.082938,464.523034 C164.032419,465.014002 164.00716,465.50073 164.00716,465.983233 C164.00716,466.465736 164.019789,467.066739 164.045049,467.786261 C164.070308,468.505783 164.137666,469.364963 164.247124,470.363829 C164.356582,471.362694 164.596544,472.221875 164.967018,472.941397 C165.337492,473.660918 165.808996,474.020674 166.381546,474.020674 C166.667821,474.020674 167.00461,473.906399 167.391923,473.677845 C167.779237,473.449291 168.078137,473.335015 168.288633,473.335015 C168.49913,473.335015 168.684364,473.381572 168.844341,473.474687 C169.004318,473.567801 169.084305,473.673612 169.084305,473.792121 C169.084305,474.14765 168.726467,474.490475 168.01078,474.820609 C167.295092,475.150742 166.684662,475.315807 166.179471,475.315807 C164.327103,475.315807 163.173601,473.555121 162.718929,470.033697 C162.584211,469.017901 162.483174,467.274146 162.415815,464.802377 C162.14638,464.853166 161.860109,464.878561 161.556995,464.878561 Z M171.483951,470.26225 L171.711286,458.885398 C171.711286,458.005042 171.660768,457.404039 171.55973,457.08237 C171.862844,456.811491 172.325929,456.676054 172.948999,456.676054 C173.201594,458.487556 173.32789,460.815385 173.32789,463.659613 C173.32789,464.506109 173.252112,466.46995 173.100555,469.551196 C173.892021,465.267926 175.306535,463.126323 177.34414,463.126323 C178.068247,463.126323 178.628159,463.511473 179.023892,464.281784 C179.419625,465.052096 179.668007,465.98746 179.769045,467.087905 C179.870083,468.18835 179.954281,469.288778 180.02164,470.389224 C180.190037,473.030292 180.661541,474.350806 181.436168,474.350806 C181.453007,474.350806 181.612982,474.300017 181.916097,474.198437 C182.589685,473.995278 182.968573,473.944489 183.052771,474.046069 C183.052771,474.232298 182.79176,474.465081 182.269729,474.744425 C181.747698,475.023768 181.267774,475.163438 180.829941,475.163438 C180.088994,475.163438 179.520663,474.778288 179.12493,474.007977 C178.729197,473.237665 178.485025,472.302301 178.392406,471.201856 C178.299788,470.101411 178.23243,469.005215 178.190331,467.913235 C178.148231,466.821255 178.034565,465.890123 177.849328,465.119811 C177.664092,464.3495 177.352562,463.96435 176.914729,463.96435 C176.375859,463.96435 175.883305,464.552656 175.437053,465.729285 C174.9908,466.905915 174.641382,468.205267 174.388786,469.627381 C174.136191,471.049494 173.828871,472.348846 173.466817,473.525476 C173.104763,474.702106 172.738505,475.290412 172.368032,475.290412 C171.778642,475.290412 171.483951,473.614375 171.483951,470.26225 Z M186.2102,456.828423 C186.193361,457.217811 186.184941,457.649517 186.184941,458.123555 C186.184941,458.597593 186.2102,459.088554 186.260719,459.596451 C186.024963,459.86733 185.705014,460.002767 185.300861,460.002767 C184.79567,460.002767 184.543078,459.596455 184.543078,458.783819 L184.543078,458.402898 C184.543078,458.182809 184.547288,457.983885 184.555708,457.806121 C184.564127,457.628357 184.593596,457.420968 184.644116,457.183949 C184.761994,456.777631 185.023005,456.574475 185.427158,456.574475 C185.831311,456.574475 186.092322,456.659123 186.2102,456.828423 Z M184.593597,469.271854 C184.593597,465.953589 184.761991,464.040536 185.098785,463.532639 C185.216663,463.34641 185.359799,463.253296 185.528196,463.253296 C185.696593,463.253296 185.974444,463.34641 186.361757,463.532639 C186.277558,464.971682 186.23546,466.537677 186.23546,468.230669 L186.285979,473.842911 C186.285979,474.367738 186.172312,474.735959 185.944976,474.947583 C185.71764,475.159207 185.507147,475.265017 185.313491,475.265017 C185.119834,475.265017 184.92197,475.214228 184.719894,475.112649 C184.635695,472.911758 184.593597,470.964846 184.593597,469.271854 Z M200.608077,474.807911 C200.304962,475.12958 199.959753,475.290412 199.57244,475.290412 C198.848333,475.290412 198.30947,474.901029 197.955836,474.122253 C197.602202,473.343476 197.395919,472.395415 197.33698,471.27804 C197.278041,470.160665 197.240152,469.043307 197.223313,467.925932 C197.206473,466.808557 197.118066,465.860496 196.958089,465.081719 C196.798111,464.302943 196.499211,463.91356 196.061379,463.91356 C195.471989,463.91356 194.971015,464.446845 194.558443,465.51343 C194.14587,466.580015 193.855389,467.765092 193.686992,469.068696 C193.21548,472.70863 192.760815,474.748655 192.322983,475.188833 C192.019868,475.341202 191.758857,475.417386 191.539941,475.417386 C191.321024,475.417386 191.13579,475.391991 190.984233,475.341201 C190.630599,473.783648 190.403267,471.100296 190.302228,467.291063 C190.268549,465.394912 190.23487,464.167511 190.201191,463.608823 C190.554824,463.371804 190.857935,463.253296 191.11053,463.253296 C191.363126,463.253296 191.565199,463.278691 191.716757,463.329481 C191.800955,464.057467 191.847264,465.547278 191.855683,467.798958 C191.864103,470.050638 191.876733,471.345758 191.893573,471.684356 C191.977771,471.328828 192.083018,470.753219 192.209315,469.957513 C192.335613,469.161806 192.44928,468.505782 192.550318,467.989419 C192.651356,467.473056 192.811331,466.86782 193.030247,466.173694 C193.249163,465.479567 193.493335,464.92512 193.762771,464.510337 C194.032206,464.095554 194.402674,463.740031 194.874186,463.443757 C195.345697,463.147483 195.87614,462.999349 196.46553,462.999349 C197.256996,462.999349 197.833747,463.359104 198.195801,464.078626 C198.557855,464.798148 198.755718,465.691188 198.789398,466.757773 C198.823077,467.824358 198.844126,468.907857 198.852546,470.008302 C198.860966,471.108747 198.995682,472.116062 199.256697,473.030278 C199.517712,473.944494 199.968168,474.537033 200.608077,474.807911 Z M207.428123,462.821586 C208.960536,462.821586 210.021422,463.447983 210.610812,464.700798 C210.930766,465.361065 211.191778,465.987462 211.393854,466.58001 C211.595931,467.172557 211.730646,467.985181 211.798005,469.017907 C211.899043,470.592389 211.949562,472.382702 211.949562,474.388898 C211.949562,476.395094 211.473847,477.994948 210.522404,479.188507 C209.57096,480.382067 208.181705,480.978838 206.354597,480.978838 C204.527489,480.978838 203.007729,480.386299 201.79527,479.201205 C202.132064,478.862606 202.498322,478.693309 202.894055,478.693309 C203.289788,478.693309 203.837071,478.866839 204.535918,479.213902 C205.234766,479.560965 205.979912,479.734495 206.771378,479.734495 C207.562844,479.734495 208.219583,479.552501 208.741614,479.188507 C209.263645,478.824514 209.650952,478.312391 209.903548,477.652124 C210.32454,476.48396 210.535033,475.044938 210.535033,473.335015 C210.535033,473.081067 210.509774,472.14147 210.459255,470.516197 C210.004583,471.904451 209.356264,473.051436 208.514279,473.957187 C207.672294,474.862938 206.720864,475.315807 205.659963,475.315807 C204.599062,475.315807 203.820237,474.837543 203.323466,473.881003 C202.826694,472.924462 202.578312,471.836731 202.578312,470.617776 C202.578312,469.398822 202.746707,468.209513 203.083501,467.049813 C203.420295,465.890113 203.967577,464.895495 204.725364,464.065929 C205.483151,463.236362 206.384062,462.821586 207.428123,462.821586 Z M204.750623,466.681589 C204.531707,467.426505 204.371733,468.129087 204.270694,468.789354 C204.169656,469.449621 204.119138,470.11411 204.119138,470.782842 C204.119138,471.451574 204.258063,472.192247 204.535918,473.004884 C204.813773,473.81752 205.22213,474.223832 205.761001,474.223832 C206.821902,474.223832 207.764912,473.423905 208.590057,471.824027 C209.415203,470.22415 209.827769,468.611599 209.827769,466.986326 C209.827769,466.427638 209.570968,465.797008 209.057357,465.094416 C208.543746,464.391825 207.899637,464.040534 207.12501,464.040534 C206.58614,464.040534 206.110425,464.294479 205.697852,464.802377 C205.285279,465.310274 204.96954,465.936672 204.750623,466.681589 Z M223.796235,456.828423 C223.779396,457.217811 223.770976,457.649517 223.770976,458.123555 C223.770976,458.597593 223.796235,459.088554 223.846754,459.596451 C223.610998,459.86733 223.291049,460.002767 222.886896,460.002767 C222.381705,460.002767 222.129113,459.596455 222.129113,458.783819 L222.129113,458.402898 C222.129113,458.182809 222.133323,457.983885 222.141742,457.806121 C222.150162,457.628357 222.179631,457.420968 222.23015,457.183949 C222.348028,456.777631 222.60904,456.574475 223.013193,456.574475 C223.417346,456.574475 223.678357,456.659123 223.796235,456.828423 Z M222.179632,469.271854 C222.179632,465.953589 222.348026,464.040536 222.68482,463.532639 C222.802698,463.34641 222.945834,463.253296 223.114231,463.253296 C223.282628,463.253296 223.560479,463.34641 223.947792,463.532639 C223.863593,464.971682 223.821495,466.537677 223.821495,468.230669 L223.872014,473.842911 C223.872014,474.367738 223.758347,474.735959 223.531011,474.947583 C223.303675,475.159207 223.093182,475.265017 222.899525,475.265017 C222.705869,475.265017 222.508005,475.214228 222.305929,475.112649 C222.22173,472.911758 222.179632,470.964846 222.179632,469.271854 Z M238.194112,474.807911 C237.890997,475.12958 237.545788,475.290412 237.158475,475.290412 C236.434367,475.290412 235.895505,474.901029 235.541871,474.122253 C235.188237,473.343476 234.981954,472.395415 234.923015,471.27804 C234.864076,470.160665 234.826187,469.043307 234.809348,467.925932 C234.792508,466.808557 234.704101,465.860496 234.544124,465.081719 C234.384146,464.302943 234.085246,463.91356 233.647414,463.91356 C233.058024,463.91356 232.55705,464.446845 232.144478,465.51343 C231.731905,466.580015 231.441424,467.765092 231.273027,469.068696 C230.801515,472.70863 230.34685,474.748655 229.909018,475.188833 C229.605903,475.341202 229.344892,475.417386 229.125975,475.417386 C228.907059,475.417386 228.721825,475.391991 228.570268,475.341201 C228.216634,473.783648 227.989301,471.100296 227.888263,467.291063 C227.854584,465.394912 227.820905,464.167511 227.787225,463.608823 C228.140859,463.371804 228.443969,463.253296 228.696565,463.253296 C228.949161,463.253296 229.151234,463.278691 229.302791,463.329481 C229.38699,464.057467 229.433298,465.547278 229.441718,467.798958 C229.450138,470.050638 229.462768,471.345758 229.479607,471.684356 C229.563806,471.328828 229.669053,470.753219 229.79535,469.957513 C229.921648,469.161806 230.035314,468.505782 230.136353,467.989419 C230.237391,467.473056 230.397366,466.86782 230.616282,466.173694 C230.835198,465.479567 231.07937,464.92512 231.348805,464.510337 C231.618241,464.095554 231.988709,463.740031 232.46022,463.443757 C232.931732,463.147483 233.462175,462.999349 234.051565,462.999349 C234.843031,462.999349 235.419782,463.359104 235.781836,464.078626 C236.143889,464.798148 236.341753,465.691188 236.375432,466.757773 C236.409112,467.824358 236.430161,468.907857 236.438581,470.008302 C236.447001,471.108747 236.581716,472.116062 236.842732,473.030278 C237.103747,473.944494 237.554203,474.537033 238.194112,474.807911 Z M247.085432,464.878561 C246.327645,464.878561 245.814042,464.692335 245.544606,464.319876 C245.544606,464.048998 245.658273,463.837377 245.885609,463.685007 C246.112945,463.532638 246.361327,463.435292 246.630762,463.392968 C246.900197,463.350643 247.338023,463.312551 247.944252,463.278691 C247.994771,462.821583 248.02424,462.233277 248.03266,461.513755 C248.04108,460.794234 248.05371,460.180533 248.070549,459.672636 C248.121069,458.335172 248.323142,457.514083 248.676776,457.209344 C248.828333,457.073905 248.992518,457.006186 249.169335,457.006186 C249.346152,457.006186 249.501917,457.023116 249.636634,457.056975 C249.687153,458.27593 249.712413,459.012371 249.712413,459.266319 L249.560856,463.075533 C249.594535,463.092463 249.687152,463.100928 249.83871,463.100928 L251.657389,463.024744 C252.970886,463.024744 253.627625,463.2279 253.627625,463.634218 C253.627625,464.209835 253.391872,464.548429 252.92036,464.650008 C252.701444,464.700798 252.444643,464.726192 252.149948,464.726192 C251.855253,464.726192 251.476365,464.688101 251.013273,464.611916 C250.550181,464.535731 250.217602,464.49764 250.015526,464.49764 C249.813449,464.49764 249.678734,464.506104 249.611375,464.523034 C249.560856,465.014002 249.535596,465.50073 249.535596,465.983233 C249.535596,466.465736 249.548226,467.066739 249.573486,467.786261 C249.598745,468.505783 249.666103,469.364963 249.775561,470.363829 C249.885019,471.362694 250.124981,472.221875 250.495455,472.941397 C250.865928,473.660918 251.337433,474.020674 251.909983,474.020674 C252.196258,474.020674 252.533047,473.906399 252.92036,473.677845 C253.307674,473.449291 253.606574,473.335015 253.81707,473.335015 C254.027567,473.335015 254.212801,473.381572 254.372778,473.474687 C254.532755,473.567801 254.612742,473.673612 254.612742,473.792121 C254.612742,474.14765 254.254904,474.490475 253.539216,474.820609 C252.823529,475.150742 252.213099,475.315807 251.707908,475.315807 C249.85554,475.315807 248.702038,473.555121 248.247365,470.033697 C248.112648,469.017901 248.011611,467.274146 247.944252,464.802377 C247.674817,464.853166 247.388546,464.878561 247.085432,464.878561 Z M257.012388,470.26225 L257.239723,458.885398 C257.239723,458.005042 257.189205,457.404039 257.088167,457.08237 C257.391281,456.811491 257.854366,456.676054 258.477435,456.676054 C258.730031,458.487556 258.856327,460.815385 258.856327,463.659613 C258.856327,464.506109 258.780549,466.46995 258.628992,469.551196 C259.420458,465.267926 260.834972,463.126323 262.872577,463.126323 C263.596684,463.126323 264.156596,463.511473 264.552329,464.281784 C264.948062,465.052096 265.196444,465.98746 265.297482,467.087905 C265.39852,468.18835 265.482718,469.288778 265.550076,470.389224 C265.718473,473.030292 266.189978,474.350806 266.964605,474.350806 C266.981444,474.350806 267.141419,474.300017 267.444534,474.198437 C268.118122,473.995278 268.49701,473.944489 268.581208,474.046069 C268.581208,474.232298 268.320197,474.465081 267.798166,474.744425 C267.276135,475.023768 266.796211,475.163438 266.358378,475.163438 C265.617431,475.163438 265.0491,474.778288 264.653367,474.007977 C264.257634,473.237665 264.013461,472.302301 263.920843,471.201856 C263.828225,470.101411 263.760867,469.005215 263.718768,467.913235 C263.676668,466.821255 263.563002,465.890123 263.377765,465.119811 C263.192529,464.3495 262.880999,463.96435 262.443166,463.96435 C261.904296,463.96435 261.411742,464.552656 260.96549,465.729285 C260.519237,466.905915 260.169819,468.205267 259.917223,469.627381 C259.664627,471.049494 259.357307,472.348846 258.995254,473.525476 C258.6332,474.702106 258.266942,475.290412 257.896469,475.290412 C257.307079,475.290412 257.012388,473.614375 257.012388,470.26225 Z M271.233449,470.363829 C271.199769,470.702427 271.18293,470.930978 271.18293,471.049487 C271.18293,472.065283 271.49025,472.852512 272.104899,473.4112 C272.719548,473.969887 273.447855,474.249227 274.28984,474.249227 C275.131825,474.249227 275.818033,474.130719 276.348484,473.8937 C276.878934,473.656681 277.262032,473.402736 277.497788,473.131857 C278.104017,472.370011 278.659719,471.989093 279.16491,471.989093 C279.350147,471.989093 279.56906,472.039882 279.821656,472.141462 C279.653259,472.971028 279.017569,473.728631 277.914568,474.414293 C276.811568,475.099955 275.426523,475.44278 273.759392,475.44278 C272.580612,475.44278 271.566035,475.066095 270.71563,474.312714 C269.865225,473.559332 269.440029,472.530855 269.440029,471.227251 C269.440029,469.923646 269.696831,468.658154 270.210442,467.430734 C270.724053,466.203315 271.464989,465.153675 272.433272,464.281784 C273.401555,463.409893 274.386663,462.973954 275.388625,462.973954 C276.390588,462.973954 277.198881,463.181343 277.813531,463.596126 C278.42818,464.010909 278.7355,464.616144 278.7355,465.411851 C278.7355,466.884754 278.082971,468.099458 276.777894,469.055999 C275.472817,470.012539 274.087772,470.490803 272.622717,470.490803 C272.235404,470.490803 271.772319,470.448478 271.233449,470.363829 Z M273.153165,469.525802 C273.944632,469.525802 274.651889,469.271857 275.274958,468.763959 C275.898027,468.256061 276.340063,467.722777 276.601078,467.164089 C276.862093,466.605402 276.992599,466.097512 276.992599,465.640404 C276.992599,465.183296 276.815785,464.781216 276.462151,464.434153 C276.108517,464.087089 275.695951,463.91356 275.224439,463.91356 C274.382454,463.91356 273.603629,464.497634 272.887941,465.665798 C272.172254,466.833963 271.66286,468.044435 271.359746,469.297249 C272.100693,469.449618 272.698493,469.525802 273.153165,469.525802 Z M295.911914,472.573173 C295.642478,473.351949 295.124665,474.012206 294.358459,474.553964 C293.592252,475.095721 292.758699,475.366596 291.857775,475.366596 C290.956851,475.366596 290.258013,474.913727 289.761242,474.007977 C289.264471,473.102226 289.016089,471.845198 289.016089,470.236855 C289.016089,465.699635 289.681247,463.43106 291.011584,463.43106 C291.179981,463.43106 291.390474,463.456454 291.64307,463.507244 C291.592551,463.778123 291.474674,464.294478 291.289438,465.056324 C290.918964,466.546158 290.73373,467.858207 290.73373,468.992512 C290.73373,470.126817 290.893705,471.324591 291.213659,472.58587 C291.533614,473.847149 291.988279,474.47778 292.577669,474.47778 C292.880783,474.47778 293.175474,474.283088 293.461749,473.8937 C293.748024,473.504312 293.975356,473.093767 294.143754,472.662054 C294.312151,472.230341 294.488965,471.735148 294.674202,471.176461 C294.859438,470.617774 294.977315,470.27918 295.027834,470.160671 C294.775238,469.178735 294.648942,468.179885 294.648942,467.164089 L294.648942,466.694286 C294.648942,466.431872 294.657362,466.173695 294.674202,465.919746 C294.691041,465.665797 294.74156,465.361063 294.825758,465.005535 C294.994155,464.294478 295.44882,463.938955 296.189768,463.938955 C296.812837,463.938955 297.124367,464.887016 297.124367,466.783168 C297.124367,467.121766 297.078058,467.612727 296.98544,468.256064 C296.892821,468.899401 296.846513,469.348037 296.846513,469.601986 C296.846513,470.380762 297.216981,471.388078 297.957928,472.623962 C298.698875,473.859847 299.393502,474.47778 300.041831,474.47778 C300.69016,474.47778 301.165874,474.105327 301.468989,473.36041 C301.772104,472.615494 301.923659,471.78594 301.923659,470.871724 C301.923659,469.822069 301.835251,469.022142 301.658435,468.471919 C301.481618,467.921697 301.372161,467.561941 301.330062,467.392642 C301.287963,467.223343 301.178506,466.956701 301.001689,466.592707 C300.824872,466.228714 300.715416,465.995931 300.673317,465.894351 C300.631217,465.792772 300.500712,465.547292 300.281796,465.157903 C300.062879,464.768515 299.936583,464.548429 299.902904,464.49764 C299.414553,463.634213 299.128282,463.160183 299.044083,463.075533 C299.465076,462.720005 299.852383,462.542243 300.206017,462.542243 C301.233239,463.28716 302.049953,464.501864 302.656182,466.186391 C303.262412,467.870918 303.565522,469.403053 303.565522,470.782842 C303.565522,472.162631 303.275041,473.24613 302.694071,474.033371 C302.113101,474.820613 301.207981,475.214228 299.978682,475.214228 C299.119857,475.214228 298.307354,474.97298 297.541147,474.490477 C296.774941,474.007974 296.231868,473.368879 295.911914,472.573173 Z M308.642668,456.828423 C308.625828,457.217811 308.617408,457.649517 308.617408,458.123555 C308.617408,458.597593 308.642667,459.088554 308.693186,459.596451 C308.457431,459.86733 308.137481,460.002767 307.733328,460.002767 C307.228137,460.002767 306.975545,459.596455 306.975545,458.783819 L306.975545,458.402898 C306.975545,458.182809 306.979755,457.983885 306.988175,457.806121 C306.996595,457.628357 307.026064,457.420968 307.076583,457.183949 C307.194461,456.777631 307.455472,456.574475 307.859625,456.574475 C308.263778,456.574475 308.52479,456.659123 308.642668,456.828423 Z M307.026064,469.271854 C307.026064,465.953589 307.194458,464.040536 307.531253,463.532639 C307.64913,463.34641 307.792266,463.253296 307.960663,463.253296 C308.12906,463.253296 308.406911,463.34641 308.794224,463.532639 C308.710026,464.971682 308.667927,466.537677 308.667927,468.230669 L308.718446,473.842911 C308.718446,474.367738 308.60478,474.735959 308.377443,474.947583 C308.150107,475.159207 307.939614,475.265017 307.745958,475.265017 C307.552301,475.265017 307.354438,475.214228 307.152361,475.112649 C307.068163,472.911758 307.026064,470.964846 307.026064,469.271854 Z M323.040544,474.807911 C322.737429,475.12958 322.39222,475.290412 322.004907,475.290412 C321.2808,475.290412 320.741937,474.901029 320.388303,474.122253 C320.03467,473.343476 319.828386,472.395415 319.769447,471.27804 C319.710508,470.160665 319.67262,469.043307 319.65578,467.925932 C319.63894,466.808557 319.550533,465.860496 319.390556,465.081719 C319.230579,464.302943 318.931678,463.91356 318.493846,463.91356 C317.904456,463.91356 317.403483,464.446845 316.99091,465.51343 C316.578337,466.580015 316.287856,467.765092 316.119459,469.068696 C315.647948,472.70863 315.193282,474.748655 314.75545,475.188833 C314.452335,475.341202 314.191324,475.417386 313.972408,475.417386 C313.753492,475.417386 313.568258,475.391991 313.4167,475.341201 C313.063066,473.783648 312.835734,471.100296 312.734696,467.291063 C312.701016,465.394912 312.667337,464.167511 312.633658,463.608823 C312.987292,463.371804 313.290402,463.253296 313.542997,463.253296 C313.795593,463.253296 313.997666,463.278691 314.149224,463.329481 C314.233422,464.057467 314.279731,465.547278 314.288151,467.798958 C314.29657,470.050638 314.3092,471.345758 314.32604,471.684356 C314.410238,471.328828 314.515485,470.753219 314.641783,469.957513 C314.76808,469.161806 314.881747,468.505782 314.982785,467.989419 C315.083823,467.473056 315.243798,466.86782 315.462714,466.173694 C315.68163,465.479567 315.925802,464.92512 316.195238,464.510337 C316.464673,464.095554 316.835141,463.740031 317.306653,463.443757 C317.778164,463.147483 318.308607,462.999349 318.897997,462.999349 C319.689463,462.999349 320.266214,463.359104 320.628268,464.078626 C320.990322,464.798148 321.188185,465.691188 321.221865,466.757773 C321.255544,467.824358 321.276593,468.907857 321.285013,470.008302 C321.293433,471.108747 321.428149,472.116062 321.689164,473.030278 C321.95018,473.944494 322.400635,474.537033 323.040544,474.807911 Z M334.937736,455.177763 C334.297828,461.001657 333.977878,465.153658 333.977878,467.633892 C333.977878,470.114126 334.205211,472.59009 334.659883,475.061859 C334.323088,475.400457 334.028398,475.569754 333.775802,475.569754 C333.523207,475.569754 333.312714,475.535895 333.144317,475.468175 C332.790683,474.215361 332.58019,472.852522 332.512831,471.379619 C332.108678,472.022956 331.809778,472.480057 331.616121,472.750936 C331.422464,473.021815 331.089885,473.419662 330.618373,473.94449 C329.759548,474.960285 328.740762,475.468175 327.561982,475.468175 C326.669478,475.468175 326.025369,475.049166 325.629636,474.211135 C325.233902,473.373103 325.036039,472.298069 325.036039,470.986 C325.036039,469.673931 325.183384,468.421136 325.478079,467.227576 C325.772774,466.034016 326.282167,465.001307 327.006275,464.129416 C327.730382,463.257525 328.622873,462.821586 329.683774,462.821586 C330.323683,462.821586 330.913064,462.957023 331.451935,463.227902 C331.990805,463.49878 332.361273,463.862768 332.56335,464.319876 C332.597029,463.862768 332.630708,463.160187 332.664387,462.212111 C332.698067,461.264036 332.735956,460.421785 332.778055,459.685333 C332.820154,458.948881 332.891722,458.199743 332.99276,457.437897 C333.177997,455.812624 333.590563,455 334.230472,455 C334.449388,455 334.685141,455.059254 334.937736,455.177763 Z M331.982383,465.234088 C331.780306,464.861629 331.502455,464.586522 331.148821,464.408758 C330.795188,464.230994 330.327893,464.142113 329.746923,464.142113 C329.165953,464.142113 328.622881,464.472242 328.11769,465.132509 C327.124147,466.436113 326.627383,468.323771 326.627383,470.79554 C326.627383,471.591246 326.753679,472.382708 327.006275,473.16995 C327.25887,473.957191 327.629338,474.350806 328.11769,474.350806 C328.824957,474.350806 329.515375,473.88524 330.188963,472.954094 C330.862551,472.022948 331.384574,470.952147 331.755048,469.741657 C332.125521,468.531168 332.310755,467.443436 332.310755,466.478431 C332.310755,466.021323 332.201299,465.606546 331.982383,465.234088 Z M339.433915,476.280807 C339.130801,476.280807 338.802431,476.166532 338.448797,475.937978 C338.095164,475.709424 337.918349,475.434317 337.918349,475.112649 C337.918349,474.79098 338.103583,474.482014 338.474057,474.18574 C338.84453,473.889466 339.223418,473.741332 339.610731,473.741332 C339.998044,473.741332 340.326414,473.851374 340.595849,474.071463 C340.865284,474.291552 341,474.56666 341,474.896793 C341,475.226927 340.818976,475.540125 340.456922,475.836399 C340.094869,476.132673 339.75387,476.280807 339.433915,476.280807 Z M44.0248573,508.600521 C43.755422,508.972979 43.3681145,509.159206 42.8629234,509.159206 C42.7282057,509.159206 42.5934901,509.142276 42.4587725,509.108416 C42.0882989,508.26192 41.8146578,507.064146 41.6378409,505.515058 C41.461024,503.96597 41.3305182,502.945957 41.2463197,502.454989 C39.4107918,502.38727 37.5752914,502.35341 35.7397635,502.35341 C33.9042356,502.35341 32.2623889,502.429594 30.8141743,502.581963 C30.6626169,503.27609 30.4984322,504.313032 30.3216153,505.692821 C30.1447984,507.07261 30.0142927,507.999509 29.9300941,508.473547 C29.3238647,508.964515 28.7765825,509.032234 28.288231,508.676705 C28.3387502,508.270387 28.4145277,507.62706 28.5155659,506.746704 C28.6166042,505.866348 28.7050113,505.11721 28.78079,504.499267 C28.8565686,503.881325 28.9702349,503.098328 29.1217923,502.150252 C29.2733496,501.202177 29.4206949,500.38532 29.5638324,499.699658 C29.7069699,499.013996 29.9048334,498.243696 30.157429,497.388735 C30.4100246,496.533774 30.6710361,495.801566 30.9404714,495.192089 C31.2099067,494.582611 31.5424859,493.964678 31.938219,493.338271 C32.3339521,492.711864 32.7591483,492.203974 33.2138203,491.814586 C34.2578821,490.95116 35.3945451,490.519453 36.6238436,490.519453 C37.8531421,490.519453 38.8761389,490.993484 39.6928646,491.941559 C40.5095904,492.889635 41.1284403,494.133966 41.5494329,495.674589 C41.9704255,497.215212 42.3072146,498.764277 42.5598102,500.32183 C42.8124058,501.879383 43.0565778,503.470772 43.2923337,505.096044 C43.5280896,506.721317 43.7722617,507.889464 44.0248573,508.600521 Z M39.3266029,494.50643 C39.0066485,493.676864 38.5940819,493.029304 38.0888907,492.563731 C37.5836995,492.098158 36.9606398,491.865375 36.2196927,491.865375 C35.4787457,491.865375 34.7630689,492.229363 34.072641,492.95735 C33.3822131,493.685337 32.8349308,494.591074 32.4307779,495.674589 C31.7066706,497.68925 31.2520053,499.551514 31.0667686,501.261436 C32.7507391,501.075207 34.4431042,500.982093 36.1439144,500.982093 C37.8447247,500.982093 39.4865714,501.032882 41.0695037,501.134462 C41.0021449,500.880513 40.875849,500.27951 40.6906122,499.331434 C40.5053755,498.383358 40.3159316,497.549572 40.122275,496.83005 C39.9286184,496.110529 39.663397,495.335996 39.3266029,494.50643 Z M56.6040544,488.386293 C55.9641456,494.210187 55.644196,498.362188 55.644196,500.842422 C55.644196,503.322656 55.8715286,505.79862 56.3262007,508.270389 C55.9894066,508.608988 55.6947161,508.778284 55.4421205,508.778284 C55.189525,508.778284 54.9790318,508.744425 54.8106347,508.676705 C54.4570009,507.423891 54.2465078,506.061052 54.1791489,504.588149 C53.774996,505.231486 53.4760957,505.688587 53.2824391,505.959466 C53.0887825,506.230345 52.7562033,506.628192 52.2846915,507.15302 C51.4258665,508.168815 50.4070796,508.676705 49.2283002,508.676705 C48.3357958,508.676705 47.6916868,508.257696 47.2959537,507.419665 C46.9002206,506.581633 46.702357,505.506599 46.702357,504.19453 C46.702357,502.882461 46.8497022,501.629666 47.1443971,500.436106 C47.4390919,499.242547 47.9484854,498.209837 48.6725927,497.337946 C49.3967001,496.466055 50.2891911,496.030116 51.3500925,496.030116 C51.9900014,496.030116 52.5793822,496.165553 53.1182528,496.436432 C53.6571234,496.70731 54.0275913,497.071298 54.2296678,497.528406 C54.2633472,497.071298 54.2970261,496.368717 54.3307055,495.420641 C54.3643849,494.472566 54.4022737,493.630315 54.444373,492.893863 C54.4864722,492.157411 54.5580399,491.408273 54.6590781,490.646427 C54.8443149,489.021154 55.2568815,488.20853 55.8967903,488.20853 C56.1157065,488.20853 56.3514588,488.267784 56.6040544,488.386293 Z M53.6487009,498.442618 C53.4466244,498.070159 53.1687734,497.795052 52.8151396,497.617288 C52.4615058,497.439524 51.994211,497.350643 51.4132411,497.350643 C50.8322713,497.350643 50.2891989,497.680772 49.7840077,498.341039 C48.7904651,499.644643 48.2937013,501.532301 48.2937013,504.00407 C48.2937013,504.799776 48.4199972,505.591238 48.6725927,506.37848 C48.9251883,507.165721 49.2956563,507.559336 49.7840077,507.559336 C50.4912754,507.559336 51.181693,507.09377 51.8552812,506.162624 C52.5288694,505.231478 53.0508925,504.160677 53.421366,502.950187 C53.7918395,501.739698 53.9770735,500.651966 53.9770735,499.686961 C53.9770735,499.229853 53.867617,498.815076 53.6487009,498.442618 Z M69.3095488,488.386293 C68.6696399,494.210187 68.3496903,498.362188 68.3496903,500.842422 C68.3496903,503.322656 68.5770229,505.79862 69.031695,508.270389 C68.6949009,508.608988 68.4002105,508.778284 68.1476149,508.778284 C67.8950193,508.778284 67.6845261,508.744425 67.5161291,508.676705 C67.1624953,507.423891 66.9520021,506.061052 66.8846433,504.588149 C66.4804903,505.231486 66.18159,505.688587 65.9879334,505.959466 C65.7942768,506.230345 65.4616976,506.628192 64.9901859,507.15302 C64.1313609,508.168815 63.112574,508.676705 61.9337946,508.676705 C61.0412902,508.676705 60.3971811,508.257696 60.001448,507.419665 C59.6057149,506.581633 59.4078514,505.506599 59.4078514,504.19453 C59.4078514,502.882461 59.5551966,501.629666 59.8498914,500.436106 C60.1445863,499.242547 60.6539797,498.209837 61.3780871,497.337946 C62.1021944,496.466055 62.9946854,496.030116 64.0555869,496.030116 C64.6954957,496.030116 65.2848765,496.165553 65.8237471,496.436432 C66.3626177,496.70731 66.7330857,497.071298 66.9351621,497.528406 C66.9688415,497.071298 67.0025205,496.368717 67.0361999,495.420641 C67.0698793,494.472566 67.107768,493.630315 67.1498673,492.893863 C67.1919666,492.157411 67.2635342,491.408273 67.3645725,490.646427 C67.5498092,489.021154 67.9623758,488.20853 68.6022847,488.20853 C68.8212008,488.20853 69.0569532,488.267784 69.3095488,488.386293 Z M66.3541952,498.442618 C66.1521187,498.070159 65.8742678,497.795052 65.5206339,497.617288 C65.1670001,497.439524 64.6997053,497.350643 64.1187355,497.350643 C63.5377656,497.350643 62.9946932,497.680772 62.4895021,498.341039 C61.4959594,499.644643 60.9991956,501.532301 60.9991956,504.00407 C60.9991956,504.799776 61.1254915,505.591238 61.3780871,506.37848 C61.6306827,507.165721 62.0011506,507.559336 62.4895021,507.559336 C63.1967697,507.559336 63.8871873,507.09377 64.5607755,506.162624 C65.2343637,505.231478 65.7563868,504.160677 66.1268603,502.950187 C66.4973338,501.739698 66.6825678,500.651966 66.6825678,499.686961 C66.6825678,499.229853 66.5731114,498.815076 66.3541952,498.442618 Z M123.819403,498.061696 C123.819403,496.842742 124.20671,496.233274 124.981337,496.233274 C125.132894,496.233274 125.284449,496.250203 125.436007,496.284063 L125.436007,497.934722 C125.436007,498.832008 125.553883,500.626553 125.789639,503.318411 C126.025395,506.010269 126.143271,508.0249 126.143271,509.362364 C126.143271,511.495534 125.772803,512.968415 125.031856,513.781052 C124.290909,514.593688 123.03216,515 121.255571,515 C119.478982,515 117.807666,514.424391 116.241573,513.273156 C116.544688,512.900698 116.940415,512.714472 117.428767,512.714472 C117.614003,512.731402 117.908694,512.858374 118.312847,513.095393 C119.508466,513.80645 120.501994,514.161973 121.29346,514.161973 C122.472239,514.161973 123.305792,513.78952 123.794144,513.044604 C124.282495,512.299687 124.526667,511.046891 124.526667,509.286179 C124.526667,508.862931 124.484569,507.339261 124.40037,504.715123 C124.38353,504.765913 124.324592,504.981766 124.223554,505.362689 C124.122516,505.743613 124.046738,505.993325 123.996219,506.111835 C123.9457,506.230344 123.857293,506.45043 123.730995,506.772098 C123.604697,507.093767 123.474191,507.322317 123.339474,507.457757 C123.204756,507.593196 123.027942,507.754028 122.809026,507.940257 C122.438552,508.278856 121.971257,508.448152 121.407127,508.448152 C120.842997,508.448152 120.392542,508.371969 120.055748,508.2196 C119.718954,508.06723 119.436893,507.830215 119.209557,507.508546 C118.982221,507.186878 118.780147,506.848284 118.60333,506.492756 C118.426513,506.137228 118.287588,505.684359 118.18655,505.134136 C118.085511,504.583914 118.005524,504.080256 117.946585,503.623148 C117.887646,503.16604 117.845547,502.607361 117.820288,501.947094 C117.795028,501.286827 117.778189,500.736613 117.769769,500.296435 C117.761349,499.856257 117.757139,499.297578 117.757139,498.620381 L117.757139,497.096695 C117.925536,496.808887 118.228647,496.664985 118.666479,496.664985 C119.272708,496.664985 119.575818,496.88507 119.575818,497.325248 L119.424262,499.78854 C119.424262,501.93864 119.651594,503.792439 120.106267,505.349992 C120.560939,506.907545 121.032443,507.68631 121.520795,507.68631 C121.891268,507.68631 122.219638,507.483154 122.505913,507.076835 C122.792188,506.670517 123.0111,506.099141 123.162658,505.362689 C123.314215,504.626238 123.440511,503.927889 123.541549,503.267622 C123.642588,502.607355 123.709945,501.837055 123.743625,500.956699 C123.794144,499.619235 123.819403,498.654244 123.819403,498.061696 Z M130.563671,498.18867 C131.422496,496.868136 132.660196,496.207879 134.276808,496.207879 C135.89342,496.207879 137.185848,496.868136 138.154131,498.18867 C139.122414,499.509204 139.606548,501.011712 139.606548,502.69624 C139.606548,504.380767 139.076105,505.807092 138.015204,506.975256 C136.954302,508.143421 135.607146,508.727495 133.973695,508.727495 C132.340243,508.727495 131.153062,508.266161 130.412115,507.34348 C129.671168,506.4208 129.3007,505.121447 129.3007,503.445385 C129.3007,501.261425 129.721686,499.509204 130.563671,498.18867 Z M131.675086,499.534592 C131.45617,500.194859 131.291986,500.855116 131.182527,501.515383 C131.073069,502.17565 131.018341,502.789351 131.018341,503.356503 C131.018341,503.923656 131.06044,504.440011 131.144638,504.905584 C131.228837,505.371156 131.371972,505.828258 131.574049,506.276901 C131.776125,506.725544 132.079235,507.081067 132.483388,507.34348 C132.887541,507.605894 133.367466,507.737099 133.923176,507.737099 C135.051436,507.737099 135.998655,507.271533 136.764862,506.340387 C137.531069,505.409242 137.914166,504.283419 137.914166,502.962885 C137.914166,501.642351 137.564748,500.359928 136.8659,499.115579 C136.167052,497.871229 135.31245,497.249064 134.302067,497.249064 C133.695838,497.249064 133.165395,497.460685 132.710723,497.883933 C132.256051,498.307181 131.910842,498.857395 131.675086,499.534592 Z M144.911029,496.817353 C144.473196,497.646919 144.254284,498.882785 144.254284,500.524988 C144.254284,502.996757 144.717369,504.969063 145.643552,506.441966 C146.182423,507.305393 146.826532,507.737099 147.575899,507.737099 C148.325266,507.737099 148.927276,507.339252 149.381948,506.543545 C149.920819,505.56161 150.19025,504.207236 150.19025,502.480384 C150.19025,500.313354 149.88714,498.7135 149.280911,497.680775 C149.011475,497.189807 148.85571,496.834284 148.813611,496.614195 C148.771512,496.394106 148.82624,496.233274 148.977797,496.131695 C149.129355,496.030115 149.381947,495.979326 149.73558,495.979326 C150.762802,495.979326 151.436381,497.045895 151.756335,499.179066 C151.857373,499.771613 151.907892,500.364151 151.907892,500.956699 C151.907892,502.497322 151.604781,504.037922 150.998552,505.578545 C150.139727,507.694785 148.784151,508.752889 146.931783,508.752889 C145.95508,508.752889 145.121528,508.388902 144.4311,507.660915 C143.134442,506.272661 142.486123,504.181847 142.486123,501.38841 C142.486123,500.169455 142.570321,499.238323 142.738718,498.594986 C142.907115,497.951649 143.05025,497.53264 143.168128,497.337946 C143.286006,497.143252 143.429141,496.961258 143.597538,496.791958 C143.765935,496.622659 143.955379,496.55494 144.165876,496.5888 C144.376372,496.62266 144.624754,496.698844 144.911029,496.817353 Z M157.641783,506.238808 L157.717561,507.68631 C157.717561,508.058768 157.612314,508.316945 157.401818,508.46085 C157.191322,508.604754 156.980829,508.676705 156.770332,508.676705 C156.559836,508.676705 156.345133,508.642846 156.126217,508.575126 C155.755743,506.611255 155.473682,504.164918 155.280026,501.236041 C155.086369,498.307164 154.972703,496.648057 154.939023,496.258668 C155.191619,496.021649 155.45684,495.903142 155.734695,495.903142 C156.012551,495.903142 156.260933,495.937001 156.479849,496.004721 C156.547208,496.495689 156.597726,497.579187 156.631405,499.25525 C156.665085,500.931312 156.707183,501.980952 156.757702,502.4042 C156.993458,500.982086 157.414445,499.653107 158.020674,498.417223 C158.357468,497.723096 158.799504,497.168649 159.346794,496.753866 C159.894085,496.339083 160.483466,496.131695 161.114955,496.131695 C161.746443,496.131695 162.327405,496.415267 162.857855,496.982419 C163.388306,497.549571 163.653527,498.061694 163.653527,498.518802 C163.653527,498.688101 163.552491,498.819306 163.350414,498.912421 C163.148338,499.005535 162.925215,499.052092 162.681039,499.052092 C162.436864,499.052092 162.24742,498.958979 162.112702,498.772749 C161.977984,498.58652 161.885367,498.379132 161.834848,498.150578 C161.784329,497.922024 161.674873,497.714635 161.506476,497.528406 C161.338079,497.342177 161.110746,497.249064 160.824471,497.249064 C160.066684,497.249064 159.418365,497.934716 158.879495,499.306039 C158.054349,501.35456 157.641783,503.66546 157.641783,506.238808 Z M174.338267,508.905258 C174.035152,508.905258 173.883597,506.340413 173.883597,501.210646 C173.883597,499.043616 173.875178,497.731567 173.858338,497.274459 L173.353149,497.274459 C173.117393,497.274459 172.932159,497.270226 172.797442,497.261761 C172.662724,497.253296 172.49012,497.244832 172.279623,497.236367 C172.069127,497.227902 171.900733,497.20674 171.774435,497.17288 C171.648137,497.13902 171.517631,497.096696 171.382914,497.045906 C171.130318,496.944326 171.004022,496.766565 171.004022,496.512616 C171.004022,496.190947 171.526045,496.030116 172.570107,496.030116 C173.024779,496.030116 173.437346,496.047045 173.807819,496.080905 C173.824659,495.742307 173.837288,495.306368 173.845708,494.773075 C173.854128,494.239782 173.866758,493.825006 173.883597,493.528732 C173.900437,493.232458 173.921486,492.872703 173.946746,492.449455 C173.972006,492.026207 174.014104,491.696078 174.073043,491.459059 C174.131982,491.22204 174.21197,490.955398 174.313008,490.659124 C174.414046,490.362851 174.548762,490.138532 174.717159,489.986163 C174.885556,489.833794 175.079209,489.681427 175.298126,489.529057 C175.685439,489.241249 176.329548,489.097347 177.230472,489.097347 C178.131396,489.097347 178.796555,489.321665 179.225967,489.770308 C179.65538,490.218951 180.038477,490.976553 180.375271,492.043139 C180.122676,492.347877 179.827985,492.500244 179.491191,492.500244 C179.373313,492.500244 179.255437,492.483315 179.137559,492.449455 C178.834445,491.636818 178.560803,491.086604 178.316628,490.798795 C178.072452,490.510987 177.739873,490.367084 177.31888,490.367084 C176.897888,490.367084 176.582148,490.443268 176.371651,490.595637 C176.161155,490.748007 175.99697,490.942698 175.879093,491.179717 C175.626497,491.687614 175.500201,492.915015 175.500201,494.861957 L175.500201,495.928537 L177.647253,495.725378 C178.489238,495.725378 178.910224,495.92007 178.910224,496.309458 C178.910224,496.563407 178.708151,496.732703 178.303998,496.817353 C177.899845,496.902003 177.390452,496.952792 176.775802,496.969722 C176.161153,496.986652 175.735957,497.037441 175.500201,497.12209 C175.466522,497.596128 175.449682,498.218293 175.449682,498.988605 C175.449682,499.758916 175.491781,500.977853 175.575979,502.64545 C175.660178,504.313048 175.702277,505.587005 175.702277,506.467361 C175.702277,507.347717 175.613869,507.974115 175.437052,508.346573 C175.260236,508.719032 174.893977,508.905258 174.338267,508.905258 Z M183.229587,490.036953 C183.212748,490.426341 183.204328,490.858047 183.204328,491.332085 C183.204328,491.806123 183.229587,492.297084 183.280106,492.804981 C183.04435,493.07586 182.724401,493.211297 182.320248,493.211297 C181.815057,493.211297 181.562465,492.804985 181.562465,491.992349 L181.562465,491.611428 C181.562465,491.391339 181.566675,491.192415 181.575094,491.014651 C181.583514,490.836887 181.612983,490.629498 181.663502,490.392479 C181.78138,489.986161 182.042392,489.783005 182.446545,489.783005 C182.850698,489.783005 183.111709,489.867653 183.229587,490.036953 Z M181.612984,502.480384 C181.612984,499.162119 181.781378,497.249067 182.118172,496.741169 C182.23605,496.55494 182.379186,496.461826 182.547583,496.461826 C182.71598,496.461826 182.993831,496.55494 183.381144,496.741169 C183.296945,498.180212 183.254847,499.746207 183.254847,501.439199 L183.305366,507.051441 C183.305366,507.576268 183.191699,507.944489 182.964363,508.156113 C182.737027,508.367737 182.526534,508.473547 182.332877,508.473547 C182.139221,508.473547 181.941357,508.422758 181.739281,508.321179 C181.655082,506.120289 181.612984,504.173377 181.612984,502.480384 Z M189.721261,506.238808 L189.79704,507.68631 C189.79704,508.058768 189.691793,508.316945 189.481297,508.46085 C189.2708,508.604754 189.060307,508.676705 188.849811,508.676705 C188.639315,508.676705 188.424612,508.642846 188.205695,508.575126 C187.835222,506.611255 187.553161,504.164918 187.359504,501.236041 C187.165848,498.307164 187.052181,496.648057 187.018502,496.258668 C187.271098,496.021649 187.536319,495.903142 187.814174,495.903142 C188.092029,495.903142 188.340411,495.937001 188.559327,496.004721 C188.626686,496.495689 188.677205,497.579187 188.710884,499.25525 C188.744563,500.931312 188.786662,501.980952 188.837181,502.4042 C189.072937,500.982086 189.493923,499.653107 190.100153,498.417223 C190.436947,497.723096 190.878983,497.168649 191.426273,496.753866 C191.973563,496.339083 192.562944,496.131695 193.194433,496.131695 C193.825922,496.131695 194.406883,496.415267 194.937334,496.982419 C195.467785,497.549571 195.733006,498.061694 195.733006,498.518802 C195.733006,498.688101 195.631969,498.819306 195.429893,498.912421 C195.227816,499.005535 195.004694,499.052092 194.760518,499.052092 C194.516342,499.052092 194.326898,498.958979 194.192181,498.772749 C194.057463,498.58652 193.964846,498.379132 193.914327,498.150578 C193.863808,497.922024 193.754351,497.714635 193.585954,497.528406 C193.417557,497.342177 193.190225,497.249064 192.90395,497.249064 C192.146163,497.249064 191.497844,497.934716 190.958973,499.306039 C190.133828,501.35456 189.721261,503.66546 189.721261,506.238808 Z M204.396991,498.569591 C204.245434,498.180203 203.959163,497.875469 203.538171,497.65538 C203.117178,497.435291 202.595155,497.325248 201.972086,497.325248 C201.349017,497.325248 200.763846,497.511475 200.216555,497.883933 C199.669265,498.256391 199.395624,498.755817 199.395624,499.382224 C199.395624,500.008631 199.652425,500.503824 200.166036,500.867817 C200.679647,501.23181 201.302707,501.506918 202.035234,501.693147 C202.767762,501.879376 203.504488,502.078299 204.245435,502.289923 C204.986382,502.501548 205.613651,502.848606 206.127262,503.331109 C206.640873,503.813611 206.897675,504.444242 206.897675,505.223018 C206.897675,506.357323 206.43038,507.220736 205.495777,507.813283 C204.561173,508.405831 203.437139,508.7021 202.123642,508.7021 C201.349016,508.7021 200.334439,508.490479 199.079881,508.067231 C197.825323,507.643983 197.198053,507.136093 197.198053,506.543545 C197.198053,506.103367 197.568521,505.883282 198.309468,505.883282 C198.528384,505.883282 198.814655,506.018719 199.168289,506.289598 C200.24603,507.085304 201.349014,507.483152 202.477274,507.483152 C203.083504,507.483152 203.605527,507.381574 204.043359,507.178414 C204.851665,506.789026 205.255812,506.162628 205.255812,505.299202 C205.255812,504.774375 204.99901,504.351133 204.485399,504.029464 C203.971788,503.707796 203.348729,503.453851 202.616201,503.267622 C201.883674,503.081393 201.146948,502.878236 200.406001,502.658147 C199.665054,502.438058 199.037784,502.069838 198.524173,501.553476 C198.010562,501.037113 197.753761,500.381088 197.753761,499.585382 C197.753761,498.552656 198.216846,497.714638 199.143029,497.071301 C200.069213,496.427964 201.214296,496.1063 202.578312,496.1063 C203.504496,496.1063 204.342259,496.347548 205.091626,496.83005 C205.840993,497.312553 206.21567,498.010902 206.21567,498.925118 C206.21567,499.534595 205.870462,499.839329 205.180034,499.839329 C204.893759,499.839329 204.704315,499.78854 204.611696,499.686961 C204.519078,499.585381 204.46856,499.403387 204.46014,499.140973 C204.45172,498.87856 204.430671,498.688101 204.396991,498.569591 Z M209.853029,498.087091 C209.095242,498.087091 208.581639,497.900865 208.312203,497.528406 C208.312203,497.257528 208.42587,497.045907 208.653206,496.893537 C208.880542,496.741168 209.128924,496.643822 209.398359,496.601498 C209.667794,496.559173 210.10562,496.521081 210.711849,496.487221 C210.762368,496.030113 210.791837,495.441807 210.800257,494.722286 C210.808677,494.002764 210.821307,493.389063 210.838146,492.881166 C210.888666,491.543702 211.090739,490.722613 211.444373,490.417874 C211.59593,490.282435 211.760115,490.214716 211.936932,490.214716 C212.113749,490.214716 212.269514,490.231646 212.404231,490.265505 C212.45475,491.48446 212.48001,492.220901 212.48001,492.474849 L212.328453,496.284063 C212.362132,496.300993 212.454749,496.309458 212.606307,496.309458 L214.424986,496.233274 C215.738483,496.233274 216.395222,496.43643 216.395222,496.842748 C216.395222,497.418365 216.159469,497.756959 215.687957,497.858538 C215.469041,497.909328 215.21224,497.934722 214.917545,497.934722 C214.62285,497.934722 214.243962,497.896631 213.78087,497.820446 C213.317778,497.744261 212.985199,497.70617 212.783123,497.70617 C212.581046,497.70617 212.446331,497.714634 212.378972,497.731564 C212.328453,498.222532 212.303194,498.70926 212.303194,499.191763 C212.303194,499.674266 212.315823,500.275269 212.341083,500.994791 C212.366342,501.714313 212.4337,502.573493 212.543158,503.572359 C212.652616,504.571224 212.892578,505.430405 213.263052,506.149927 C213.633525,506.869448 214.10503,507.229204 214.67758,507.229204 C214.963855,507.229204 215.300644,507.114929 215.687957,506.886375 C216.075271,506.657821 216.374171,506.543545 216.584667,506.543545 C216.795164,506.543545 216.980398,506.590102 217.140375,506.683217 C217.300352,506.776331 217.380339,506.882142 217.380339,507.000651 C217.380339,507.35618 217.022501,507.699005 216.306814,508.029139 C215.591126,508.359272 214.980696,508.524337 214.475505,508.524337 C212.623137,508.524337 211.469635,506.763651 211.014963,503.242227 C210.880245,502.226432 210.779208,500.482676 210.711849,498.010907 C210.442414,498.061696 210.156143,498.087091 209.853029,498.087091 Z M226.120103,498.087091 C225.362316,498.087091 224.848713,497.900865 224.579278,497.528406 C224.579278,497.257528 224.692944,497.045907 224.92028,496.893537 C225.147616,496.741168 225.395998,496.643822 225.665433,496.601498 C225.934868,496.559173 226.372694,496.521081 226.978924,496.487221 C227.029443,496.030113 227.058912,495.441807 227.067332,494.722286 C227.075751,494.002764 227.088381,493.389063 227.105221,492.881166 C227.15574,491.543702 227.357813,490.722613 227.711447,490.417874 C227.863004,490.282435 228.027189,490.214716 228.204006,490.214716 C228.380823,490.214716 228.536588,490.231646 228.671306,490.265505 C228.721825,491.48446 228.747084,492.220901 228.747084,492.474849 L228.595527,496.284063 C228.629207,496.300993 228.721824,496.309458 228.873381,496.309458 L230.69206,496.233274 C232.005557,496.233274 232.662296,496.43643 232.662296,496.842748 C232.662296,497.418365 232.426543,497.756959 231.955032,497.858538 C231.736116,497.909328 231.479314,497.934722 231.184619,497.934722 C230.889924,497.934722 230.511036,497.896631 230.047945,497.820446 C229.584853,497.744261 229.252273,497.70617 229.050197,497.70617 C228.848121,497.70617 228.713405,497.714634 228.646046,497.731564 C228.595527,498.222532 228.570268,498.70926 228.570268,499.191763 C228.570268,499.674266 228.582897,500.275269 228.608157,500.994791 C228.633416,501.714313 228.700774,502.573493 228.810232,503.572359 C228.91969,504.571224 229.159653,505.430405 229.530126,506.149927 C229.9006,506.869448 230.372104,507.229204 230.944654,507.229204 C231.230929,507.229204 231.567718,507.114929 231.955032,506.886375 C232.342345,506.657821 232.641245,506.543545 232.851742,506.543545 C233.062238,506.543545 233.247472,506.590102 233.407449,506.683217 C233.567426,506.776331 233.647414,506.882142 233.647414,507.000651 C233.647414,507.35618 233.289575,507.699005 232.573888,508.029139 C231.8582,508.359272 231.24777,508.524337 230.742579,508.524337 C228.890211,508.524337 227.736709,506.763651 227.282037,503.242227 C227.147319,502.226432 227.046282,500.482676 226.978924,498.010907 C226.709488,498.061696 226.423218,498.087091 226.120103,498.087091 Z M237.183734,503.572359 C237.150055,503.910957 237.133215,504.139508 237.133215,504.258017 C237.133215,505.273813 237.440535,506.061042 238.055185,506.61973 C238.669834,507.178417 239.39814,507.457757 240.240125,507.457757 C241.082111,507.457757 241.768318,507.339249 242.298769,507.10223 C242.82922,506.865211 243.212317,506.611266 243.448073,506.340387 C244.054303,505.578541 244.610005,505.197623 245.115196,505.197623 C245.300433,505.197623 245.519345,505.248412 245.771941,505.349992 C245.603544,506.179558 244.967855,506.937161 243.864854,507.622823 C242.761853,508.308485 241.376808,508.65131 239.709677,508.65131 C238.530898,508.65131 237.516321,508.274625 236.665916,507.521244 C235.815511,506.767862 235.390314,505.739385 235.390314,504.435781 C235.390314,503.132176 235.647116,501.866684 236.160727,500.639264 C236.674338,499.411845 237.415274,498.362205 238.383557,497.490314 C239.35184,496.618423 240.336948,496.182484 241.338911,496.182484 C242.340873,496.182484 243.149167,496.389873 243.763816,496.804656 C244.378465,497.219439 244.685785,497.824675 244.685785,498.620381 C244.685785,500.093284 244.033257,501.307988 242.728179,502.264529 C241.423102,503.221069 240.038057,503.699333 238.573003,503.699333 C238.18569,503.699333 237.722605,503.657008 237.183734,503.572359 Z M239.103451,502.734332 C239.894917,502.734332 240.602174,502.480387 241.225243,501.972489 C241.848312,501.464591 242.290348,500.931307 242.551363,500.372619 C242.812379,499.813932 242.942885,499.306042 242.942885,498.848934 C242.942885,498.391826 242.76607,497.989746 242.412437,497.642683 C242.058803,497.295619 241.646236,497.12209 241.174724,497.12209 C240.332739,497.12209 239.553914,497.706164 238.838227,498.874329 C238.122539,500.042493 237.613146,501.252965 237.310031,502.505779 C238.050978,502.658148 238.648779,502.734332 239.103451,502.734332 Z M249.788191,497.629985 C249.973427,497.629985 250.066044,498.747344 250.066044,500.982093 C250.066044,501.337622 250.061835,501.904766 250.053415,502.683542 C250.044995,503.462319 250.040785,503.868631 250.040785,503.902491 C250.209182,501.989409 250.381786,500.685825 250.558603,499.991698 C250.73542,499.297571 250.916444,498.7008 251.101681,498.201367 C251.286918,497.701935 251.488991,497.316785 251.707908,497.045906 C252.246778,496.351779 252.869838,496.004721 253.577106,496.004721 C254.46961,496.004721 255.138978,496.453357 255.58523,497.350643 C256.031483,498.247929 256.263025,499.441471 256.279865,500.931304 C256.700857,497.866988 257.812261,496.334853 259.61411,496.334853 C260.388736,496.334853 260.936018,496.7327 261.255973,497.528406 C261.575927,498.324113 261.735902,499.272174 261.735902,500.372619 L261.660124,504.232622 C261.660124,506.772111 262.207406,508.041836 263.301987,508.041836 L264.741775,507.813283 C264.825973,507.813283 264.91017,507.821748 264.994369,507.838678 C264.825972,508.092627 264.514442,508.291551 264.05977,508.435455 C263.605098,508.579359 263.158852,508.65131 262.72102,508.65131 C261.862195,508.65131 261.218086,508.26616 260.788673,507.495849 C260.359261,506.725537 260.127718,505.912913 260.094039,505.057952 C260.06036,504.202991 260.04352,503.470783 260.04352,502.861306 L260.094039,500.601172 C260.094039,499.856255 260.047731,499.145209 259.955112,498.468012 C259.862494,497.790815 259.622532,497.452222 259.235218,497.452222 C258.662668,497.452222 258.111176,498.658461 257.580726,501.070975 C257.050275,503.483489 256.726115,505.773227 256.608237,507.940257 C256.321962,508.244996 255.959914,508.405828 255.522082,508.422758 C255.387364,508.422758 255.261068,508.397363 255.14319,508.346573 C254.991633,507.466217 254.911646,505.997568 254.903226,503.940583 C254.894806,501.883597 254.789559,500.245652 254.587483,499.026697 C254.385406,497.807743 253.930741,497.198274 253.223473,497.198274 C252.751962,497.198274 252.364654,497.723094 252.06154,498.772749 C251.573188,500.414952 251.135362,502.971332 250.748049,506.441966 C250.647011,507.254603 250.571233,507.838676 250.520714,508.194205 C250.16708,508.498943 249.805032,508.65131 249.434559,508.65131 L249.055667,508.600521 C248.819911,505.773224 248.702035,502.268782 248.702035,498.087091 C248.887272,497.782352 249.24932,497.629985 249.788191,497.629985 Z M267.697128,507.940257 C267.747647,509.311581 267.916042,511.250028 268.202317,513.755657 C267.882362,514.077325 267.503475,514.238157 267.065642,514.238157 C266.981444,514.238157 266.888827,514.229692 266.787788,514.212762 C266.770949,513.552495 266.648863,512.05422 266.421527,509.71789 C266.194191,507.381561 266.080524,505.591248 266.080524,504.346899 C266.080524,503.10255 266.156302,502.023283 266.307859,501.109067 C266.459417,500.194851 266.720428,499.339903 267.090902,498.544197 C267.848688,496.901994 269.246363,496.080905 271.283967,496.080905 C272.546945,496.080905 273.582572,496.775022 274.390878,498.163275 C275.199183,499.551529 275.60333,501.168312 275.60333,503.013674 C275.60333,504.469648 275.131826,505.747838 274.188802,506.848283 C273.245779,507.948728 271.940721,508.498942 270.27359,508.498942 C269.246368,508.498942 268.387556,508.312716 267.697128,507.940257 Z M271.081892,497.452222 C269.650517,497.452222 268.699088,498.197128 268.227576,499.686961 C267.823423,500.956705 267.62135,502.708926 267.62135,504.943676 C267.62135,505.756312 267.629769,506.357315 267.646609,506.746704 C269.145343,507.068372 270.16413,507.229204 270.703,507.229204 C271.679703,507.229204 272.454318,506.835589 273.026868,506.048348 C273.599418,505.261106 273.885689,504.300348 273.885689,503.166043 C273.885689,501.48998 273.637307,500.118677 273.140536,499.052092 C272.643764,497.985507 271.957557,497.452222 271.081892,497.452222 Z M279.720618,493.541429 C279.720618,491.865367 279.493285,490.739544 279.038613,490.163926 C279.257529,489.842258 279.636417,489.681426 280.175287,489.681426 C280.276326,489.681426 280.385782,489.689891 280.50366,489.706821 C280.924653,490.130069 281.135146,491.35747 281.135146,493.389061 C281.135146,494.489506 281.084628,495.767696 280.983589,497.223669 C280.781513,499.763158 280.680476,501.625421 280.680476,502.810516 C280.680476,506.010272 281.295116,507.610125 282.524415,507.610125 L283.459014,507.432362 C283.610571,507.432362 283.736867,507.500081 283.837905,507.63552 C283.787386,508.244997 283.294832,508.549731 282.360228,508.549731 C281.425625,508.549731 280.705738,508.266159 280.200547,507.699007 C279.695356,507.131855 279.379616,506.420808 279.253318,505.565847 C279.12702,504.710886 279.063872,504.004072 279.063872,503.445385 C279.063872,502.886698 279.072292,502.272997 279.089132,501.604265 C279.105972,500.935533 279.181749,499.974774 279.316467,498.72196 C279.585902,496.182471 279.720618,494.455645 279.720618,493.541429 Z M293.638565,501.413804 L293.512268,504.334202 C293.512268,505.807105 293.680662,506.797491 294.017456,507.305388 C294.219533,507.643987 294.497384,507.813283 294.851018,507.813283 C294.952056,507.813283 295.095191,507.787889 295.280428,507.737099 C295.634062,507.63552 295.928752,507.686309 296.164508,507.889468 C296.04663,508.482015 295.457249,508.778284 294.396348,508.778284 C293.67224,508.778284 293.192316,508.47355 292.95656,507.864073 C292.771323,507.406965 292.636608,506.835589 292.552409,506.149927 C292.468211,505.464265 292.400853,504.994467 292.350334,504.740518 C291.255753,506.839828 290.194867,508.118018 289.167645,508.575126 C288.645614,508.812145 288.039394,508.930653 287.348966,508.930653 C286.658538,508.930653 286.123886,508.596292 285.744992,507.92756 C285.366099,507.258828 285.176655,506.281139 285.176655,504.994465 C285.176655,503.707791 285.387148,502.35765 285.808141,500.944001 C286.229133,499.530353 286.843774,498.336811 287.652079,497.36334 C288.460385,496.38987 289.344457,495.903142 290.30432,495.903142 C291.685176,495.903142 292.602926,496.478751 293.057598,497.629985 C293.444911,498.611921 293.638565,499.873181 293.638565,501.413804 Z M287.450004,500.601172 C287.214248,501.515388 287.037434,502.383033 286.919556,503.204135 C286.801678,504.025236 286.74274,504.753212 286.74274,505.388084 C286.74274,506.022956 286.873246,506.568938 287.134261,507.026046 C287.395276,507.483154 287.736275,507.711704 288.157268,507.711704 C289.066612,507.711704 289.942264,506.848291 290.784249,505.121439 C291.626234,503.394587 292.047221,501.786268 292.047221,500.296435 C292.047221,499.331429 291.794629,498.535735 291.289438,497.909328 C290.952643,497.50301 290.510608,497.299853 289.963317,497.299853 C289.416027,497.299853 288.919263,497.617285 288.473011,498.252157 C288.026759,498.887029 287.68576,499.670026 287.450004,500.601172 Z M297.781112,498.087091 C297.023325,498.087091 296.509722,497.900865 296.240286,497.528406 C296.240286,497.257528 296.353953,497.045907 296.581289,496.893537 C296.808625,496.741168 297.057007,496.643822 297.326442,496.601498 C297.595877,496.559173 298.033703,496.521081 298.639932,496.487221 C298.690451,496.030113 298.71992,495.441807 298.72834,494.722286 C298.73676,494.002764 298.74939,493.389063 298.766229,492.881166 C298.816749,491.543702 299.018822,490.722613 299.372456,490.417874 C299.524013,490.282435 299.688198,490.214716 299.865015,490.214716 C300.041832,490.214716 300.197597,490.231646 300.332314,490.265505 C300.382833,491.48446 300.408093,492.220901 300.408093,492.474849 L300.256536,496.284063 C300.290215,496.300993 300.382832,496.309458 300.53439,496.309458 L302.353069,496.233274 C303.666566,496.233274 304.323305,496.43643 304.323305,496.842748 C304.323305,497.418365 304.087552,497.756959 303.61604,497.858538 C303.397124,497.909328 303.140323,497.934722 302.845628,497.934722 C302.550933,497.934722 302.172045,497.896631 301.708953,497.820446 C301.245861,497.744261 300.913282,497.70617 300.711206,497.70617 C300.509129,497.70617 300.374414,497.714634 300.307055,497.731564 C300.256536,498.222532 300.231277,498.70926 300.231277,499.191763 C300.231277,499.674266 300.243906,500.275269 300.269166,500.994791 C300.294425,501.714313 300.361783,502.573493 300.471241,503.572359 C300.580699,504.571224 300.820661,505.430405 301.191135,506.149927 C301.561608,506.869448 302.033113,507.229204 302.605663,507.229204 C302.891938,507.229204 303.228727,507.114929 303.61604,506.886375 C304.003354,506.657821 304.302254,506.543545 304.51275,506.543545 C304.723247,506.543545 304.908481,506.590102 305.068458,506.683217 C305.228435,506.776331 305.308422,506.882142 305.308422,507.000651 C305.308422,507.35618 304.950584,507.699005 304.234897,508.029139 C303.519209,508.359272 302.908779,508.524337 302.403588,508.524337 C300.55122,508.524337 299.397718,506.763651 298.943046,503.242227 C298.808328,502.226432 298.707291,500.482676 298.639932,498.010907 C298.370497,498.061696 298.084226,498.087091 297.781112,498.087091 Z M308.844743,503.572359 C308.811063,503.910957 308.794224,504.139508 308.794224,504.258017 C308.794224,505.273813 309.101544,506.061042 309.716193,506.61973 C310.330843,507.178417 311.059149,507.457757 311.901134,507.457757 C312.743119,507.457757 313.429327,507.339249 313.959778,507.10223 C314.490229,506.865211 314.873326,506.611266 315.109082,506.340387 C315.715311,505.578541 316.271013,505.197623 316.776205,505.197623 C316.961441,505.197623 317.180354,505.248412 317.43295,505.349992 C317.264553,506.179558 316.628863,506.937161 315.525863,507.622823 C314.422862,508.308485 313.037817,508.65131 311.370686,508.65131 C310.191907,508.65131 309.17733,508.274625 308.326925,507.521244 C307.476519,506.767862 307.051323,505.739385 307.051323,504.435781 C307.051323,503.132176 307.308125,501.866684 307.821736,500.639264 C308.335347,499.411845 309.076283,498.362205 310.044566,497.490314 C311.012849,496.618423 311.997957,496.182484 312.999919,496.182484 C314.001882,496.182484 314.810176,496.389873 315.424825,496.804656 C316.039474,497.219439 316.346794,497.824675 316.346794,498.620381 C316.346794,500.093284 315.694265,501.307988 314.389188,502.264529 C313.084111,503.221069 311.699066,503.699333 310.234012,503.699333 C309.846698,503.699333 309.383613,503.657008 308.844743,503.572359 Z M310.76446,502.734332 C311.555926,502.734332 312.263183,502.480387 312.886252,501.972489 C313.509321,501.464591 313.951357,500.931307 314.212372,500.372619 C314.473388,499.813932 314.603893,499.306042 314.603893,498.848934 C314.603893,498.391826 314.427079,497.989746 314.073445,497.642683 C313.719812,497.295619 313.307245,497.12209 312.835733,497.12209 C311.993748,497.12209 311.214923,497.706164 310.499236,498.874329 C309.783548,500.042493 309.274155,501.252965 308.97104,502.505779 C309.711987,502.658148 310.309788,502.734332 310.76446,502.734332 Z M326.829458,506.772098 C326.829458,506.48429 327.014692,506.196485 327.385166,505.908677 C327.75564,505.620868 328.100848,505.476966 328.420803,505.476966 C328.740757,505.476966 329.018608,505.553149 329.254364,505.705518 C329.49012,505.857888 329.607996,506.090671 329.607996,506.403874 C329.607996,506.717078 329.397503,507.004882 328.97651,507.267296 C328.555518,507.52971 328.193469,507.660915 327.890355,507.660915 C327.58724,507.660915 327.334648,507.580499 327.132572,507.419665 C326.930495,507.25883 326.829458,507.042977 326.829458,506.772098 Z M328.294506,498.137881 C328.681819,498.137881 329.031237,498.235226 329.342772,498.42992 C329.654307,498.624614 329.810071,498.899721 329.810071,499.25525 C329.810071,499.610778 329.658516,499.92821 329.355402,500.207553 C329.052287,500.486897 328.719708,500.626567 328.357654,500.626567 C327.9956,500.626567 327.70933,500.486897 327.498833,500.207553 C327.288337,499.92821 327.183091,499.619243 327.183091,499.280645 C327.183091,498.603448 327.553559,498.22253 328.294506,498.137881 Z M332.815944,489.071952 L332.790684,489.046557 C332.790684,488.894188 332.971709,488.767215 333.333762,488.665636 C333.695816,488.564056 333.952618,488.513267 334.104175,488.513267 C334.255732,488.513267 334.356769,488.555591 334.407288,488.640241 C336.242816,492.093945 337.160566,495.721127 337.160566,499.521895 C337.160566,503.322663 336.200717,506.92445 334.280991,510.327364 C334.230472,510.428944 334.070497,510.522057 333.801062,510.606707 C333.531626,510.691356 333.291664,510.733681 333.081168,510.733681 C332.870672,510.733681 332.740166,510.699821 332.689647,510.632102 C334.592533,507.195327 335.543963,503.59354 335.543963,499.826632 C335.543963,496.059724 334.634632,492.474866 332.815944,489.071952 Z" id="Group--Throw-something-in-t" fill="#A3A2A7"></path>
21
+ <g id="Group--Asset-2" transform="translate(79.000000, 489.000000)" fill="#A3A2A7" fill-rule="nonzero">
22
+ <path d="M13,0 C5.77777778,0 0,5.77777778 0,13 C0,20.2222222 5.77777778,26 13,26 C20.2222222,26 26,20.2222222 26,13 C26,5.77777778 20.2222222,0 13,0 Z M13,23.1111111 C7.36666667,23.1111111 2.88888889,18.6333333 2.88888889,13 C2.88888889,7.36666667 7.36666667,2.88888889 13,2.88888889 C18.6333333,2.88888889 23.1111111,7.36666667 23.1111111,13 C23.1111111,18.6333333 18.6333333,23.1111111 13,23.1111111 Z M14.4444444,7.22222222 L11.5555556,7.22222222 L11.5555556,11.5555556 L7.22222222,11.5555556 L7.22222222,14.4444444 L11.5555556,14.4444444 L11.5555556,18.7777778 L14.4444444,18.7777778 L14.4444444,14.4444444 L18.7777778,14.4444444 L18.7777778,11.5555556 L14.4444444,11.5555556 L14.4444444,7.22222222 Z" id="Group--Shape"></path>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
  === Coming Soon Page and Maintenance Mode for WordPress Block Editor ===
2
  Author URI: https://heldervilela.com
3
  Plugin URI: https://pixelthrone.com/coming-soon-blocks
4
- Contributors: heldervilela
5
  Tags: coming soon, under construction, maintenance, launch page, blocks, gutenberg, easy
6
  Requires at least: 5.0
7
  Tested up to: 5.0
8
  Requires PHP: 5.4
9
- Stable tag: 1.1.0
10
  Text Domain: coming-soon-blocks
11
  License: GPL-3.0
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -27,10 +27,15 @@ The only difficulty you will have is to choose among the various templates that
27
  * [Demo 03](https://comingsoon-blocks.pixelthrone.info/03/)
28
  * [Demo 04](https://comingsoon-blocks.pixelthrone.info/04/)
29
  * [Demo 05](https://comingsoon-blocks.pixelthrone.info/05/)
 
 
 
30
 
31
  #### OTHER OPTIONS
32
 
33
- * [Password Protected](https://comingsoon-blocks.pixelthrone.info/password-protected/)
 
 
34
  * [Cookie Notice](https://comingsoon-blocks.pixelthrone.info/cookie-notice/)
35
 
36
 
@@ -179,6 +184,12 @@ If you have a premium plan you can contact me by email or using the form availab
179
  * Submit an issue
180
 
181
  == Changelog ==
 
 
 
 
 
 
182
  = 1.1.0, December 12, 2018 =
183
  * New: 4 Templates
184
  * Tweak: Improvements in color scheme
1
  === Coming Soon Page and Maintenance Mode for WordPress Block Editor ===
2
  Author URI: https://heldervilela.com
3
  Plugin URI: https://pixelthrone.com/coming-soon-blocks
4
+ Contributors: heldervilela, pixelthrone
5
  Tags: coming soon, under construction, maintenance, launch page, blocks, gutenberg, easy
6
  Requires at least: 5.0
7
  Tested up to: 5.0
8
  Requires PHP: 5.4
9
+ Stable tag: 1.2.0
10
  Text Domain: coming-soon-blocks
11
  License: GPL-3.0
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
27
  * [Demo 03](https://comingsoon-blocks.pixelthrone.info/03/)
28
  * [Demo 04](https://comingsoon-blocks.pixelthrone.info/04/)
29
  * [Demo 05](https://comingsoon-blocks.pixelthrone.info/05/)
30
+ * [Demo 06](https://comingsoon-blocks.pixelthrone.info/06/)
31
+ * [Demo 07](https://comingsoon-blocks.pixelthrone.info/07/)
32
+ * [Demo 08](https://comingsoon-blocks.pixelthrone.info/08/)
33
 
34
  #### OTHER OPTIONS
35
 
36
+ * [Video Background (*premium*)](https://comingsoon-blocks.pixelthrone.info/video/)
37
+ * [Slideshow Background (*premium*)](https://comingsoon-blocks.pixelthrone.info/slideshow/)
38
+ * [Password Protected (*premium*)](https://comingsoon-blocks.pixelthrone.info/password-protected/)
39
  * [Cookie Notice](https://comingsoon-blocks.pixelthrone.info/cookie-notice/)
40
 
41
 
184
  * Submit an issue
185
 
186
  == Changelog ==
187
+ = 1.2.0, December XX, 2018 =
188
+ * New: 3 Templates 🚀
189
+ * Tweak: Editor UI/UX
190
+ * Tweak: Dashboard UI/UX
191
+ * Fix: Font italic style loading
192
+
193
  = 1.1.0, December 12, 2018 =
194
  * New: 4 Templates
195
  * Tweak: Improvements in color scheme