myStickymenu - Version 2.5.7

Version Description

Improvement: Better support for languages that read from right to left (like Hebrew or Arabic) Improvement: Weve also added inherit & system stack font options to give you flexibility when it comes to font choices on your menu bar. Improvement: New MSM dashboard to help you manage your top bars and sticky menus better. Improvement: Disabling sticky menu features - you can now disable the sticky menu feature if you want to use top bars only Improvement: Fixed: Optimized the JS and fix console.log on mystickymenu.js bug

For Pro plan users: Added: You can now put countdown timers on your sticky menu! Best used for promotions or launch announcements!

Download this release

Release Info

Developer galdub
Plugin Icon 128x128 myStickymenu
Version 2.5.7
Comparing to
See all releases

Code changes from version 2.5.6 to 2.5.7

class-review-box.php CHANGED
@@ -193,7 +193,7 @@ class myStickymenu_review_box {
193
  }
194
  </style>
195
  <div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box">
196
- <div class="review-box-default" id="default-review-box-<?php echo $this->plugin_slug ?>">
197
  <p>
198
  Hi there, it seems like <b><?php echo esc_attr($this->plugin_name) ?></b> is bringing you some value, and that's pretty awesome! Can you please show us some love and rate <?php echo esc_attr($this->plugin_name) ?> on WordPress? It'll only take 2 minutes of your time, and will really help us spread the word
199
  - <b>Gal Dubinski</b>, Co-founder <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."images/premio-owner.png") ?>" />
@@ -206,8 +206,8 @@ class myStickymenu_review_box {
206
  <li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="javascript:;">I've already rated you</a></li>
207
  </ul>
208
  </div>
209
- <div class="review-thanks-box" id="review-thanks-<?php echo $this->plugin_slug ?>">
210
- <button class="<?php echo $this->plugin_slug ?>-close-thanks-btn review-thanks-btn"><span class="dashicons dashicons-no-alt"></span></button>
211
 
212
  <div class="review-thanks-img">
213
  <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."/images/thanks.gif") ?>" />
@@ -234,19 +234,19 @@ class myStickymenu_review_box {
234
  <script>
235
  jQuery(document).ready(function(){
236
  jQuery("body").addClass("has-premio-box");
237
- jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-premio-review-dismiss-btn, .<?php echo $this->plugin_slug ?>-premio-review-box-future-btn", function(){
238
- jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").show();
239
  });
240
- jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-review-box-popup", function(){
241
- jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").hide();
242
  });
243
- jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-thanks-btn", function(){
244
- jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
245
- jQuery(".<?php echo $this->plugin_slug ?>-premio-review-box").remove();
246
  });
247
- jQuery(document).on("click",".<?php echo $this->plugin_slug ?>-premio-review-box-hide-btn",function(){
248
- jQuery("#default-review-box-<?php echo $this->plugin_slug ?>").hide();
249
- jQuery("#review-thanks-<?php echo $this->plugin_slug ?>").show();
250
  jQuery.ajax({
251
  url: "<?php echo admin_url("admin-ajax.php") ?>",
252
  data: "action=<?php echo esc_attr($this->plugin_slug) ?>_review_box&days=-1&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
@@ -256,18 +256,18 @@ class myStickymenu_review_box {
256
  }
257
  });
258
  });
259
- jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-review-box-options a", function(){
260
  var dataDays = jQuery(this).attr("data-days");
261
- jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
262
- jQuery(".<?php echo $this->plugin_slug ?>-premio-review-box").remove();
263
  jQuery("body").removeClass("has-premio-box");
264
  jQuery.ajax({
265
  url: "<?php echo admin_url("admin-ajax.php") ?>",
266
- data: "action=<?php echo esc_attr($this->plugin_slug) ?>_review_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
267
  type: "post",
268
  success: function() {
269
- jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
270
- jQuery(".<?php echo $this->plugin_slug ?>-premio-review-box").remove();
271
  }
272
  });
273
  });
193
  }
194
  </style>
195
  <div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box">
196
+ <div class="review-box-default" id="default-review-box-<?php echo esc_attr($this->plugin_slug); ?>">
197
  <p>
198
  Hi there, it seems like <b><?php echo esc_attr($this->plugin_name) ?></b> is bringing you some value, and that's pretty awesome! Can you please show us some love and rate <?php echo esc_attr($this->plugin_name) ?> on WordPress? It'll only take 2 minutes of your time, and will really help us spread the word
199
  - <b>Gal Dubinski</b>, Co-founder <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."images/premio-owner.png") ?>" />
206
  <li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="javascript:;">I've already rated you</a></li>
207
  </ul>
208
  </div>
209
+ <div class="review-thanks-box" id="review-thanks-<?php echo esc_attr($this->plugin_slug); ?>">
210
+ <button class="<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn review-thanks-btn"><span class="dashicons dashicons-no-alt"></span></button>
211
 
212
  <div class="review-thanks-img">
213
  <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."/images/thanks.gif") ?>" />
234
  <script>
235
  jQuery(document).ready(function(){
236
  jQuery("body").addClass("has-premio-box");
237
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-future-btn", function(){
238
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").show();
239
  });
240
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-review-box-popup", function(){
241
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").hide();
242
  });
243
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn", function(){
244
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
245
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
246
  });
247
+ jQuery(document).on("click",".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-hide-btn",function(){
248
+ jQuery("#default-review-box-<?php echo esc_attr($this->plugin_slug); ?>").hide();
249
+ jQuery("#review-thanks-<?php echo esc_attr($this->plugin_slug); ?>").show();
250
  jQuery.ajax({
251
  url: "<?php echo admin_url("admin-ajax.php") ?>",
252
  data: "action=<?php echo esc_attr($this->plugin_slug) ?>_review_box&days=-1&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
256
  }
257
  });
258
  });
259
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-review-box-options a", function(){
260
  var dataDays = jQuery(this).attr("data-days");
261
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
262
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
263
  jQuery("body").removeClass("has-premio-box");
264
  jQuery.ajax({
265
  url: "<?php echo admin_url("admin-ajax.php") ?>",
266
+ data: "action=<?php echo esc_attr($this->plugin_slug); ?>_review_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
267
  type: "post",
268
  success: function() {
269
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
270
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
271
  }
272
  });
273
  });
class-upgrade-box.php ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Sticky_menu_upgrade_box {
3
+
4
+ public $plugin_name = "myStickymenu";
5
+
6
+ public $plugin_slug = "my-sticky-menu";
7
+
8
+ public function __construct() {
9
+
10
+ add_action("wp_ajax_".$this->plugin_slug."_upgrade_box", array($this, "mystickymenu_upgradetopro"));
11
+ add_action('admin_notices', array($this, 'admin_notices'));
12
+
13
+ }
14
+
15
+ public function mystickymenu_upgradetopro() {
16
+ $nonce = filter_input(INPUT_POST, 'nonce', FILTER_SANITIZE_STRING);
17
+ $days = filter_input(INPUT_POST, 'days', FILTER_SANITIZE_STRING);
18
+ if(!empty($nonce) && wp_verify_nonce($nonce, $this->plugin_slug."_upgrade_box")) {
19
+ if($days == -1) {
20
+ add_option($this->plugin_slug."_hide_upgrade_box", "1");
21
+ } else {
22
+ $date = date("Y-m-d", strtotime("+".$days." days"));
23
+ update_option($this->plugin_slug."_show_upgrade_box_after", $date);
24
+ }
25
+ }
26
+ die;
27
+ }
28
+
29
+ public function admin_notices() {
30
+
31
+ $is_hidden = get_option($this->plugin_slug."_hide_upgrade_box");
32
+
33
+ if($is_hidden !== false) {
34
+ return;
35
+ }
36
+ $current_count = get_option($this->plugin_slug."_show_upgrade_box_after");
37
+ if($current_count === false) {
38
+ $date = date("Y-m-d", strtotime("+15 days"));
39
+ add_option($this->plugin_slug."_show_upgrade_box_after", $date);
40
+ return;
41
+ }
42
+ $date_to_show = get_option($this->plugin_slug."_show_upgrade_box_after");
43
+ if($date_to_show !== false) {
44
+ $current_date = date("Y-m-d");
45
+ if($current_date < $date_to_show) {
46
+ return;
47
+ }
48
+ }
49
+ ?>
50
+ <style>
51
+ .mystickymenu-tab-integration-action{
52
+ padding: 0 10px;
53
+ /* float: right;*/
54
+ }
55
+
56
+
57
+ .mystickymenu-tab-integration-action a {
58
+ display: inline-block;
59
+ text-decoration: none;
60
+ position: unset;
61
+ padding: 0px;
62
+ margin-left:15px;
63
+ font-size: 13px;
64
+ color: #3C85F7 !important;
65
+ background-color: #fff;
66
+ border-radius: 5px;
67
+ border: 2px solid #3C85F7;
68
+ min-width: 110px;
69
+ text-align: center;
70
+ line-height: 25px;
71
+ }
72
+
73
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .
74
+ mystickymenu-tab-integration-action a {
75
+ /*display: inline-block;
76
+ float: right;
77
+ text-decoration: none;
78
+ position: unset;
79
+ padding: 0px;
80
+ font-size: 13px;
81
+ right: 50px;
82
+ top: 7px;
83
+ color: #3C85F7;
84
+ background-color: #fff;
85
+ border-radius: 5px;
86
+ border: 2px solid #3C85F7;
87
+ min-width: 110px;
88
+ text-align: center;
89
+ line-height: 25px;*/
90
+ }
91
+
92
+
93
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .mystickymenu-tab-integration-action a:hover{
94
+ background-color:#fff
95
+ }
96
+
97
+
98
+
99
+
100
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a {
101
+ display: inline-block;
102
+ /* float: right;*/
103
+ text-decoration: none;
104
+ color: #999999;
105
+ /*position: absolute;
106
+ right: 12px;
107
+ top: 12px;*/
108
+ }
109
+
110
+
111
+ .dismiss-btn{
112
+ float:right;
113
+ }
114
+
115
+
116
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:hover, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:focus {
117
+ color: #333333;
118
+ }
119
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .button span {
120
+ display: inline-block;
121
+ line-height: 27px;
122
+ font-size: 16px;
123
+ }
124
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup {
125
+ position: fixed;
126
+ width: 100%;
127
+ height: 100%;
128
+ z-index: 10001;
129
+ background: rgba(0,0,0,0.65);
130
+ top: 0;
131
+ left: 0;
132
+ display: none;
133
+ }
134
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content {
135
+ background: #ffffff;
136
+ padding: 20px;
137
+ position: absolute;
138
+ max-width: 450px;
139
+ width: 100%;
140
+ margin: 0 auto;
141
+ top: 45%;
142
+ left: 0;
143
+ right: 0;
144
+ -webkit-border-radius: 5px;
145
+ -moz-border-radius: 5px;
146
+ border-radius: 5px;: ;
147
+ }
148
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title {
149
+ padding: 0 0 10px 0;
150
+ font-weight: bold;
151
+ }
152
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a {
153
+ display: block;
154
+ margin: 5px 0 5px 0;
155
+ color: #333;
156
+ text-decoration: none;
157
+ }
158
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a.dismiss {
159
+ color: #999;
160
+ }
161
+ .<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a:hover, .affiliate-options a:focus {
162
+ color: #0073aa;
163
+ }
164
+ button.<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup {
165
+ position: absolute;
166
+ top: 5px;
167
+ right: 0;
168
+ border: none;
169
+ background: transparent;
170
+ cursor: pointer;
171
+ }
172
+ a.button.button-primary.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-btn {
173
+ font-size: 14px;
174
+ background: #F51366;
175
+ color: #fff;
176
+ border: solid 1px #F51366;
177
+ border-radius: 3px;
178
+ line-height: 24px;
179
+ -webkit-box-shadow: 0 3px 5px -3px #333333;
180
+ -moz-box-shadow: 0 3px 5px -3px #333333;
181
+ box-shadow: 0 3px 5px -3px #333333;
182
+ text-shadow: none;
183
+ }
184
+ .notice.notice-info.premio-notice {
185
+ position: relative;
186
+ padding: 1px 10px 1px 12px;
187
+ }
188
+ .notice.notice-info.premio-notice ul li {
189
+ margin: 0;
190
+ }
191
+ .notice.notice-info.premio-notice ul li a {
192
+ color: #0073aa;
193
+ font-size: 14px;
194
+ text-decoration: underline;
195
+ }
196
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p {
197
+ line-height: 30px;
198
+ vertical-align: middle;
199
+ padding: 0 10px 0 0;
200
+ font-size: 14px;
201
+ }
202
+ .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p img {
203
+ width: 30px;
204
+ height: 30px;
205
+ display: inline-block;
206
+ margin: 0 10px;
207
+ vertical-align: middle;
208
+ border-radius: 15px;
209
+ }
210
+ .review-thanks-img img {
211
+ width: 100%;
212
+ height: auto;
213
+ max-width: 200px;
214
+ }
215
+ .review-thanks-msg {
216
+ padding: 5px 0 0 10px;
217
+ display: inline-block;
218
+ text-align: left;
219
+ }
220
+ .review-thanks-box {
221
+ padding: 10px 0 10px 0;
222
+ position: relative;
223
+ text-align: center;
224
+ display: none;
225
+ }
226
+ .upgrade-box-default {
227
+ }
228
+ .review-thanks-btn {
229
+ border: 0;
230
+ background: transparent;
231
+ position: absolute;
232
+ right: -30px;
233
+ top: 5px;
234
+ }
235
+ .review-thanks-img {
236
+ display: inline-block;
237
+ vertical-align: top;
238
+ width: 200px;
239
+ }
240
+ .thanks-msg-title {
241
+ font-weight: bold;
242
+ font-size: 18px;
243
+ }
244
+ .thanks-msg-desc {
245
+ padding: 24px 0;
246
+ }
247
+ .thanks-msg-footer {
248
+ font-weight: bold;
249
+ }
250
+ </style>
251
+ <div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box">
252
+ <div class="upgrade-box-default" id="default-upgrade-box-<?php echo esc_attr($this->plugin_slug); ?>">
253
+ <p>
254
+ <strong>Upgrade to MyStickyMenu Pro to</strong> experience more awesome features
255
+ <span class="mystickymenu-tab-integration-action">
256
+ <a href="<?php echo esc_url(admin_url("admin.php?page=my-stickymenu-upgrade")); ?>" target="_blank" class="btn upgradenow-box-btn" data-days="-1">Upgrade now</a>
257
+ </span>
258
+ <a href="javascript:;" class="dismiss-btn <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn"><span class="dashicons dashicons-no-alt"></span></a>
259
+ </p>
260
+ <div class="clear clearfix"></div>
261
+ </div>
262
+ </div>
263
+ <div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup">
264
+ <div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content">
265
+ <button class="<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup"><span class="dashicons dashicons-no-alt"></span></button>
266
+ <div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title">Would you like us to remind you about this later?</div>
267
+ <div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options">
268
+ <a href="javascript:;" data-days="7">Remind me in 7 days</a>
269
+ <a href="javascript:;" data-days="30">Remind me in 30 days</a>
270
+ <a href="javascript:;" data-days="-1" class="dismiss">Don't remind me about this</a>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ <script>
275
+ jQuery(document).ready(function(){
276
+ jQuery("body").addClass("has-premio-box");
277
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box-future-btn", function(){
278
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").show();
279
+ });
280
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup", function(){
281
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").hide();
282
+ });
283
+
284
+ jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a", function(){
285
+ var dataDays = jQuery(this).attr("data-days");
286
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
287
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
288
+ jQuery("body").removeClass("has-premio-box");
289
+ jQuery.ajax({
290
+ url: "<?php echo admin_url("admin-ajax.php") ?>",
291
+ data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
292
+ type: "post",
293
+ success: function() {
294
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
295
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
296
+ }
297
+ });
298
+ });
299
+
300
+ jQuery(document).on("click",".upgradenow-box-btn",function(){
301
+ jQuery(".notice.notice-info.premio-notice").hide();
302
+
303
+ var dataDays = jQuery(this).attr("data-days");
304
+
305
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
306
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
307
+ jQuery("body").removeClass("has-premio-box");
308
+
309
+ jQuery.ajax({
310
+ url: "<?php echo admin_url("admin-ajax.php") ?>",
311
+ data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
312
+ type: "post",
313
+ success: function() {
314
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
315
+ jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
316
+ }
317
+ });
318
+ });
319
+ });
320
+
321
+ jQuery
322
+ </script>
323
+ <?php
324
+ }
325
+ }
326
+ $Sticky_menu_upgrade_box = new Sticky_menu_upgrade_box();
css/admin-setting-rtl.css ADDED
@@ -0,0 +1,624 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(https://fonts.googleapis.com/css2?family=Lato:ital, wght@0, 100;
2
+ 0, 300;
3
+ 0, 400;
4
+ 0, 700;
5
+ 0, 900;
6
+ 1, 100;
7
+ 1, 300;
8
+ 1, 400;
9
+ 1, 700;
10
+ 1, 900&display=swap);
11
+ *, : after, :before {
12
+ box-sizing: border-box;
13
+ }
14
+ #wpwrap {
15
+ background: #6572db;
16
+ background: -moz-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
17
+ background: -webkit-gradient(right top, left bottom, color-stop(0, #6572db), color-stop(67%, #ee86c6), color-stop(100%, #ee86c6));
18
+ background: -webkit-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
19
+ background: -o-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
20
+ background: -ms-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
21
+ background: linear-gradient(135deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
22
+ }
23
+ .pricing-table {
24
+ margin: 0 0 45px;
25
+ color: #28375a;
26
+ font-size: 16px;
27
+ line-height: 25px;
28
+ font-family: Lato, sans-serif;
29
+ }
30
+ .price-title {
31
+ font-weight: 700;
32
+ font-size: 24px;
33
+ line-height: 30px;
34
+ color: #28375a;
35
+ text-align: center;
36
+ }
37
+ .price-table {
38
+ background: #fff;
39
+ box-sizing: border-box;
40
+ border-radius: 10px;
41
+ position: relative;
42
+ }
43
+ .price-table-top {
44
+ padding: 20px;
45
+ position: relative;
46
+ border-radius: 10px;
47
+ }
48
+ .price-table.basic-feature {
49
+ box-shadow: 0 12px 44px rgba(108, 203, 255, .2);
50
+ border: 2px solid #b9eafd;
51
+ }
52
+ .price-table.basic-feature .price-table-top {
53
+ background: url(../images/basic-price-bg.png) no-repeat left top;
54
+ }
55
+ .price-table.plus-feature {
56
+ border: 2px solid #f9d9bd;
57
+ box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
58
+ }
59
+ .price-table.plus-feature .price-table-top {
60
+ background: url(../images/plus-price.png) no-repeat left top;
61
+ }
62
+ .price-table.agency-feature {
63
+ border: 2px solid #cfd3fb;
64
+ box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
65
+ }
66
+ .price-table.agency-feature .price-table-top {
67
+ background: url(../images/agency-price.png) no-repeat left top;
68
+ }
69
+ .price-tables {
70
+ margin: 30px 0 50px;
71
+ }
72
+ .plan-name {
73
+ font-size: 30px;
74
+ line-height: 36px;
75
+ font-weight: 700;
76
+ color: #28375a;
77
+ }
78
+ .plan-price {
79
+ position: absolute;
80
+ left: 12px;
81
+ top: 8px;
82
+ font-weight: 700;
83
+ font-size: 60px;
84
+ line-height: 72px;
85
+ color: #42b9fa;
86
+ }
87
+ .price-table.plus-feature .plan-price {
88
+ color: #ef8c6a;
89
+ }
90
+ .price-table.agency-feature .plan-price {
91
+ color: #605dec;
92
+ }
93
+ .price-table.agency-feature .plan-name {
94
+ color: #fff;
95
+ }
96
+ .price-head {
97
+ line-height: 72px;
98
+ padding: 5px 0 25px 0;
99
+ }
100
+ .price-offer, .price-websites {
101
+ line-height: 18px;
102
+ font-size: 15px;
103
+ }
104
+ .cus-tooltip {
105
+ cursor: pointer;
106
+ display: inline-block;
107
+ position: relative;
108
+ }
109
+ .cus-tooltip .tooltip__content {
110
+ background-color: #1849ab;
111
+ border-radius: 4px;
112
+ bottom: 150%;
113
+ color: #fff;
114
+ right: 0;
115
+ margin-right: 15px;
116
+ opacity: 0;
117
+ padding: 5px 10px;
118
+ position: absolute;
119
+ transition: opacity .25s;
120
+ visibility: hidden;
121
+ width: auto;
122
+ z-index: 1;
123
+ text-align: right;
124
+ margin-left: 15px;
125
+ font-size: 14px;
126
+ line-height: 20px;
127
+ }
128
+ .cus-tooltip .tooltip__content::after {
129
+ border-width: 5px;
130
+ border-style: solid;
131
+ border-color: #1849ab transparent transparent transparent;
132
+ content: "";
133
+ right: 25px;
134
+ margin-right: -5px;
135
+ position: absolute;
136
+ top: 100%}
137
+ .cus-tooltip:hover .tooltip__content {
138
+ opacity: 1;
139
+ visibility: visible;
140
+ }
141
+ .price-table-middle ul {
142
+ list-style: none;
143
+ margin: 0;
144
+ padding: 0;
145
+ }
146
+ .price-table-middle ul li {
147
+ display: block;
148
+ width: 100%;
149
+ border-bottom: solid 1px #e9e9e9;
150
+ padding: 15px 0;
151
+ margin: 0;
152
+ }
153
+ .price-table-middle ul li a {
154
+ padding: 0 15px;
155
+ color: #28375a;
156
+ font-size: 16px;
157
+ line-height: 19px;
158
+ display: block;
159
+ text-decoration: none;
160
+ }
161
+ span.has-tooltip {
162
+ color: #605dec;
163
+ }
164
+ .price-table-bottom {
165
+ padding: 15px;
166
+ }
167
+ .price-table.is-fixed {
168
+ padding-bottom: 140px;
169
+ position: relative;
170
+ }
171
+ .price-table.is-fixed .price-table-bottom {
172
+ position: fixed;
173
+ left: 0;
174
+ width: 100%;
175
+ border-top: solid 2px #e9e9e9;
176
+ background: #fff;
177
+ }
178
+ .bottom-position {
179
+ position: absolute;
180
+ left: 0;/*------------------------------------------*/
181
+ bottom: 0;
182
+ height: 1px;
183
+ width: 1px;
184
+ }
185
+ .custom-dd-btn {
186
+ background: #fff;
187
+ border: 1px solid #e9e9e9;
188
+ border-radius: 6px;
189
+ height: 40px;
190
+ line-height: 40px;
191
+ width: 100%;
192
+ text-align: right;
193
+ padding: 0 15px;
194
+ }
195
+ .custom-dd {
196
+ margin-bottom: 15px;
197
+ }
198
+ .price-table-bottom a {
199
+ background: #fff;
200
+ border: 1px solid #42b9fa;
201
+ color: #42b9fa;
202
+ border-radius: 20px;
203
+ height: 40px;
204
+ line-height: 38px;
205
+ padding: 0 15px;
206
+ display: block;
207
+ text-align: center;
208
+ transition: all .25s linear;
209
+ }
210
+ .price-table-bottom a:hover {
211
+ color: #fff;
212
+ background: #42b9fa;
213
+ }
214
+ .price-table.plus-feature .price-table-bottom a {
215
+ background: #ef8c6a;
216
+ border: 1px solid #ef8c6a;
217
+ color: #fff;
218
+ }
219
+ .price-table.plus-feature .price-table-bottom a:hover {
220
+ background: #fff;
221
+ color: #ef8c6a;
222
+ }
223
+ .price-table.agency-feature .price-table-bottom a {
224
+ background: #fff;
225
+ border: 1px solid #605dec;
226
+ color: #605dec;
227
+ }
228
+ .price-table.agency-feature .price-table-bottom a:hover {
229
+ background: #605dec;
230
+ color: #fff;
231
+ }
232
+ .container {
233
+ max-width: 1180px;
234
+ width: 100%;
235
+ padding: 30px;
236
+ background: #fff;
237
+ border-radius: 15px;
238
+ margin: 50px auto;
239
+ box-sizing: border-box;
240
+ }
241
+ .row {
242
+ margin-left: -15px;
243
+ margin-right: -15px;
244
+ }
245
+ .col-md-4 {
246
+ padding-left: 15px;
247
+ padding-right: 15px;
248
+ width: 33.33333333%;
249
+ float: right;
250
+ box-sizing: border-box;
251
+ }
252
+ .select2-container--default .select2-selection--single {
253
+ background: #fff;
254
+ border: 1px solid #e9e9e9;
255
+ border-radius: 6px;
256
+ height: 40px;
257
+ line-height: 40px;
258
+ width: 100%;
259
+ text-align: right;
260
+ padding: 0 15px;
261
+ outline: 0;
262
+ }
263
+ span.select2.select2-container {
264
+ width: 100%!important;
265
+ }
266
+ .website-package {
267
+ padding: 0 15px;
268
+ line-height: 18px;
269
+ }
270
+ .select2-container--default .select2-results__option--highlighted[aria-selected] {
271
+ background-color: #5897fb;
272
+ color: #fff;
273
+ }
274
+ .website-package .select2-container--default .select2-results>.select2-results__options {
275
+ margin-top: 5px;
276
+ }
277
+ .custom-dd .select2-container--default .select2-selection--single .select2-selection__arrow {
278
+ height: 20px;
279
+ top: 10px;
280
+ left: 1px;
281
+ width: 20px;
282
+ }
283
+ @media (min-width:768px) {
284
+ .col-sm-4 {
285
+ width: 100%;
286
+ float: none;
287
+ }
288
+ }a, a:focus, a:hover {
289
+ text-decoration: none;
290
+ }
291
+ .select2-container--default .select2-selection--single .select2-selection__rendered {
292
+ color: #444;
293
+ line-height: 38px;
294
+ }
295
+ .select2-results__option {
296
+ user-select: none;
297
+ -webkit-user-select: none;
298
+ font-size: 14px;
299
+ padding: 8px 25px;
300
+ margin: 0;
301
+ }
302
+ .select2-dropdown {
303
+ border: 1px solid #e9e9e9;
304
+ }
305
+ .price-after {
306
+ padding: 0;
307
+ text-align: center;
308
+ font-size: 16px;
309
+ line-height: 25px;
310
+ font-family: Lato, sans-serif;
311
+ }
312
+ .price-after p, .price-after span {
313
+ font-size: 16px;
314
+ line-height: 25px;
315
+ margin: 0;
316
+ padding: 0;
317
+ }
318
+ .clearfix {
319
+ clear: both;
320
+ }
321
+ .price-after span {
322
+ display: inline-block;
323
+ vertical-align: text-top;
324
+ font-size: 20px;
325
+ color: #42b9fa;
326
+ }
327
+ .payments {
328
+ padding: 20px 0 10px;
329
+ }
330
+ .folder-testimonial-list {
331
+ width: 100%;
332
+ margin: 30px auto 0;
333
+ font-family: Lato, sans-serif;
334
+ }
335
+ .folder-testimonial {
336
+ position: relative;
337
+ }
338
+ .folder-testimonial .testimonial-image {
339
+ position: absolute;
340
+ height: 60px;
341
+ width: 60px;
342
+ top: 50%;
343
+ margin-top: -30px;
344
+ z-index: 1;
345
+ overflow: hidden;
346
+ border-radius: 30px;
347
+ }
348
+ .folder-testimonial .testimonial-image img {
349
+ width: 100%;
350
+ height: auto;
351
+ }
352
+ .folder-testimonial .testimonial-data {
353
+ position: relative;
354
+ margin-right: 30px;
355
+ font-size: 16px;
356
+ line-height: 22px;
357
+ padding: 10px 10px 10px 40px;
358
+ background: #f5f5f5;
359
+ border-radius: 4px;
360
+ }
361
+ .testimonial-title {
362
+ font-weight: 700;
363
+ font-size: 18px;
364
+ padding: 0 0 5px;
365
+ }
366
+ .testimonial-author {
367
+ font-size: 16px;
368
+ font-style: italic;
369
+ font-weight: 500;
370
+ padding: 5px 0 0;
371
+ }
372
+ .plan-price span {
373
+ font-size: 16px;
374
+ color: #28375a;
375
+ }
376
+ .price-table-middle {
377
+ margin-top: 21px;
378
+ }
379
+ .agency-feature .price-table-middle {
380
+ margin-top: 0;
381
+ }
382
+ .website-package .select2-container--default .select2-selection--single {
383
+ border: 1px solid #6156f6;
384
+ box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
385
+ }
386
+ .website-package .select2-container--default .select2-selection--single .select2-selection__rendered {
387
+ color: #6156f6;
388
+ }
389
+ .website-package .select2-container--default .select2-selection--single .select2-selection__arrow b {
390
+ border-color: #6156f6 transparent transparent transparent;
391
+ }
392
+ .website-package .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
393
+ border-color: transparent transparent #6156f6 transparent;
394
+ border-width: 0 4px 5px 4px;
395
+ }
396
+ .folders-tabs {
397
+ max-width: inherit;
398
+ }
399
+ .basic-feature .price-table-bottom .select2-container--default .select2-selection--single {
400
+ border: 1px solid #42b9fa;
401
+ box-shadow: 0 12px 44px rgba(66, 182, 250, .2);
402
+ }
403
+ .basic-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
404
+ border-color: #42b9fa transparent transparent transparent;
405
+ }
406
+ .plus-feature .price-table-bottom .select2-container--default .select2-selection--single {
407
+ border: 1px solid #ef8c6a;
408
+ box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
409
+ }
410
+ .plus-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
411
+ border-color: #ef8c6a transparent transparent transparent;
412
+ }
413
+ .agency-feature .price-table-bottom .select2-container--default .select2-selection--single {
414
+ border: 1px solid #6156f6;
415
+ box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
416
+ }
417
+ .agency-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
418
+ border-color: #6156f6 transparent transparent transparent;
419
+ }
420
+ .basic-feature.price-table.is-fixed .price-table-bottom {
421
+ border-color: #b9eafd;
422
+ }
423
+ .plus-feature.price-table.is-fixed .price-table-bottom {
424
+ border-color: #f9d9bd;
425
+ }
426
+ .agency-feature.price-table.is-fixed .price-table-bottom {
427
+ border-color: #cfd3fb;
428
+ }
429
+ .html-tooltip {
430
+ position: relative;
431
+ display: inline-block;
432
+ margin: 0;
433
+ padding: 0;
434
+ line-height: 1;
435
+ width: auto;
436
+ height: 20px;
437
+ vertical-align: middle;
438
+ }
439
+ .html-tooltip .tooltip-text {
440
+ visibility: hidden;
441
+ width: 300px;
442
+ background-color: #1849ab;
443
+ color: #fff;
444
+ text-align: center;
445
+ border-radius: 6px;
446
+ padding: 10px;
447
+ position: absolute;
448
+ z-index: 1201;
449
+ bottom: 125%;
450
+ right: 50%;
451
+ margin-right: -150px;
452
+ opacity: 0;
453
+ transition: opacity .3s;
454
+ font-size: 12px;
455
+ line-height: 18px;
456
+ top: 100%;
457
+ height: 354px;
458
+ }
459
+ .html-tooltip.side .tooltip-text {
460
+ bottom: 125%;
461
+ right: 100%;
462
+ margin-right: 0;
463
+ top: 5px;
464
+ transform: translateY(-50%);
465
+ -webkit-transform: translateY(-50%);
466
+ }
467
+ .html-tooltip.dynamic .tooltip-text {
468
+ height: 490px;
469
+ }
470
+ .html-tooltip:hover .tooltip-text {
471
+ visibility: visible;
472
+ opacity: 1;
473
+ }
474
+ .html-tooltip .tooltip-text img {
475
+ width: 100%;
476
+ height: auto;
477
+ display: block;
478
+ margin: 10px 0 0 0;
479
+ }
480
+ .html-tooltip.no-position .tooltip-text {
481
+ height: auto;
482
+ }
483
+ .html-tooltip .tooltip-text:after {
484
+ content: "";
485
+ position: absolute;
486
+ top: -10px;
487
+ right: 50%;
488
+ margin-right: -15px;
489
+ border-width: 5px;
490
+ border-style: solid;
491
+ border-color: #1849ab transparent transparent transparent;
492
+ transform: rotate(180deg);
493
+ -webkit-transform: rotate(180deg);
494
+ }
495
+ .html-tooltip.top .tooltip-text {
496
+ top: auto;
497
+ bottom: 100%;
498
+ margin-bottom: 5px;
499
+ }
500
+ .html-tooltip.top .tooltip-text:after {
501
+ top: 100%;
502
+ transform: rotate(0);
503
+ -webkit-transform: rotate(0);
504
+ }
505
+ .html-tooltip.side .tooltip-text:after {
506
+ display: none;
507
+ }
508
+ .pricing-table-body {
509
+ display: flex;
510
+ align-items: center;
511
+ }
512
+ .pricing-table-content {
513
+ flex: 1;
514
+ text-align: center;
515
+ background: #f8fafc;
516
+ min-height: 86px;
517
+ line-height: 20px;
518
+ padding: 10px 0;
519
+ border-bottom: solid 2px #f8fafc;
520
+ align-items: center;
521
+ font-size: 16px;
522
+ cursor: pointer;
523
+ position: relative;
524
+ transition: all .25s linear;
525
+ }
526
+ .pricing-table-content:before {
527
+ right: auto;
528
+ left: 0;
529
+ }
530
+ .pricing-table-header {
531
+ width: 720px;
532
+ margin: 40px auto 50px;
533
+ }
534
+ .pricing-discount-col span {
535
+ display: inline-block;
536
+ padding: 0 8px;
537
+ background: #94a3b8;
538
+ font-size: 14px;
539
+ line-height: 20px;
540
+ color: #fff;
541
+ border-radius: 20px;
542
+ margin: 4px 0 0;
543
+ transition: all .2s linear;
544
+ }
545
+ .pricing-table-content.active, .pricing-table-content:hover {
546
+ border-bottom: 2px solid #3c85f7;
547
+ color: #3c85f7;
548
+ background: #fff;
549
+ }
550
+ .pricing-table-content.active {
551
+ box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
552
+ }
553
+ .pricing-table-content.second {
554
+ border-right: 1px solid #cbd5e1;
555
+ border-left: 1px solid #cbd5e1;
556
+ }
557
+ .pricing-table-content.second.active .pricing-discount-col span, .pricing-table-content.second:hover .pricing-discount-col span {
558
+ color: #fff;
559
+ background: #ef8c6a;
560
+ }
561
+ .pricing-table-content.third.active .pricing-discount-col span, .pricing-table-content.third:hover .pricing-discount-col span {
562
+ background: #605dec;
563
+ color: #fff;
564
+ }
565
+ .pricing-table-content.first {
566
+ padding: 23px 0 0;
567
+ }
568
+ .year-col {
569
+ font-weight: 700;
570
+ }
571
+ @media (max-width:1320px) {
572
+ .plan-price {
573
+ font-size: 50px;
574
+ line-height: 64px;
575
+ }
576
+ }@media (max-width:1200px) {
577
+ .plan-price {
578
+ font-size: 40px;
579
+ line-height: 54px;
580
+ }
581
+ }@media (max-width:1100px) {
582
+ .plan-name {
583
+ font-size: 24px;
584
+ line-height: 36px;
585
+ }
586
+ }@media (max-width:1024px) {
587
+ .plan-price {
588
+ font-size: 30px;
589
+ line-height: 54px;
590
+ top: 15px;
591
+ }
592
+ }@media (max-width:920px) {
593
+ .col-md-4 {
594
+ padding-right: 5px;
595
+ padding-left: 5px;
596
+ }
597
+ }@media (max-width:840px) {
598
+ .col-md-4 {
599
+ padding: 0;
600
+ width: auto;
601
+ margin: 0 auto 30px;
602
+ float: none;
603
+ padding-right: 15px;
604
+ padding-left: 15px;
605
+ }
606
+ .plan-price {
607
+ font-size: 50px;
608
+ line-height: 64px;
609
+ }
610
+ .price-table.is-fixed {
611
+ padding-bottom: 15px;
612
+ position: relative;
613
+ }
614
+ .price-table.is-fixed .price-table-bottom {
615
+ position: relative;
616
+ left: 0;
617
+ width: 100%;
618
+ border-top: none;
619
+ background: #fff;
620
+ top: auto!important;
621
+ right: auto!important;
622
+ width: 100%!important;
623
+ }
624
+ }
css/mystickymenu-admin-rtl.css ADDED
@@ -0,0 +1,3312 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ a:active, a:focus, li:focus, li:active {
2
+ outline: none !important;
3
+ border: none !important;
4
+ text-decoration: none !important;
5
+ box-shadow: none !important;
6
+ -webkit-tap-highlight-color: transparent !important;
7
+ -webkit-user-select: none; / Chrome/Safari /
8
+ -moz-user-select: none; / Firefox /
9
+ -ms-user-select: none; / IE10+ /
10
+ user-select: none;
11
+ }
12
+
13
+ div#wpcontent{background:none !important;}
14
+
15
+
16
+ /*@font-face {
17
+ font-family: 'poppinsregular';
18
+ src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
19
+ url('../fonts/poppins-regular-webfont.woff') format('woff');
20
+ font-weight: normal;
21
+ font-style: normal;
22
+
23
+ }
24
+
25
+ @font-face {
26
+ font-family: 'poppinsbold';
27
+ src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'),
28
+ url('../fonts/poppins-bold-webfont.woff') format('woff');
29
+ font-weight: normal;
30
+ font-style: normal;
31
+
32
+ }
33
+
34
+ @font-face {
35
+ font-family: 'poppins_lightregular';
36
+ src: url('../fonts/poppins-light-webfont.woff2') format('woff2'),
37
+ url('../fonts/poppins-light-webfont.woff') format('woff');
38
+ font-weight: normal;
39
+ font-style: normal;
40
+
41
+ }
42
+ */
43
+ @font-face {
44
+ font-family: 'Lato', sans-serif;
45
+ src: url('../fonts/lato-v20-latin-regular.woff') format('woff');
46
+ font-weight: normal;
47
+ font-style: normal;
48
+ }
49
+
50
+ @font-face {
51
+ font-family: 'Lato', sans-serif;
52
+ src: url('../fonts/lato-v20-latin-300.woff') format('woff');
53
+ font-weight: 300;
54
+ font-style: normal;
55
+ }
56
+
57
+ @font-face {
58
+ font-family: 'Lato', sans-serif;
59
+ src: url('../fonts/lato-v20-latin-700.woff') format('woff');
60
+ font-weight: 700;
61
+ font-style: normal;
62
+ }
63
+
64
+ @font-face {
65
+ font-family: 'Lato', sans-serif;
66
+ src: url('../fonts/lato-semibold.woff') format('woff');
67
+ font-weight: semibold;
68
+ font-style: normal;
69
+ }
70
+
71
+ #custom-handle {
72
+ width: 3em;
73
+ height: 1.6em;
74
+ top: 50%;
75
+ margin-top: -.8em;
76
+ text-align: center;
77
+ line-height: 1.6em;
78
+ }
79
+
80
+ #mystickymenu {
81
+ font-family: 'Lato', sans-serif;
82
+ /*background: #fff;*/
83
+ padding: 0 0 15px 0;
84
+ border-radius: 10px;
85
+ }
86
+
87
+ .main-content {
88
+ float: right;
89
+ width: 65%;
90
+ }
91
+
92
+ .main-sidebar {
93
+ float: left;
94
+ width: 30%;
95
+ background: #ffffff;
96
+ border: 1px solid #e5e5e5;
97
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
98
+ }
99
+
100
+ .main-sidebar h3 {
101
+ margin: 0;
102
+ padding: 8px 12px;
103
+ border-bottom: 1px solid #ececec;
104
+ }
105
+
106
+ .main-sidebar .inner {
107
+ padding: 10px;
108
+ }
109
+
110
+ .main-sidebar p {
111
+ padding: 8px;
112
+ margin: 0;
113
+ border-top: solid 1px #e5e5e5;
114
+ }
115
+
116
+ /*.mystickyinput {padding-top: 6px;}*/
117
+ @media screen and (max-width: 782px) {
118
+ .main-content, .main-sidebar {
119
+ width: 100%;
120
+ float: none;
121
+ clear: both;
122
+ }
123
+ }
124
+
125
+ .myssticky-remove-hand {
126
+ cursor: default;
127
+ }
128
+
129
+
130
+
131
+ /* */
132
+ .mystickymenu-content-section input[type="number"]#myfixed_zindex {
133
+ -moz-appearance: textfield-multiline;
134
+ }
135
+
136
+ .mystickymenu-content-section input[type="number"] {
137
+ -moz-appearance: textfield;
138
+ }
139
+
140
+ .mystickymenu-content-section input[type="number"]::-webkit-inner-spin-button, .mystickymenu-content-section input[type="number"]::-webkit-outer-spin-button {
141
+ -webkit-appearance: none;
142
+ margin: 0;
143
+ }
144
+
145
+ .mystickymenu-content-section .mysticky-number {
146
+ display: inline-block;
147
+ margin: 0 0 10px;
148
+ position: relative;
149
+ }
150
+
151
+ #mystickymenu .mystickymenu-content-section .mysticky-number {
152
+ /*width: 90px;*/
153
+ }
154
+
155
+ #mystickymenu input[type=number] {
156
+ color: #A7A7A7;
157
+ border-radius: 21px;
158
+ background-color: #ffffff;
159
+ border: 1px solid #DCE2E2;
160
+ font-size: 14px;
161
+ font-weight: 400;
162
+ height: 42px;
163
+ padding: 0 10px 0 12px;
164
+ margin: 0;
165
+ width: 310px;
166
+ box-shadow: none;
167
+ }
168
+
169
+ .pt_number {
170
+ display: inline-block;
171
+ vertical-align: top;
172
+ margin-top: 7px;
173
+ }
174
+
175
+ .mysticky-welcomebar-setting-content-left input[type="text"]:disabled {
176
+ color: #a0a5aa;
177
+ border-color: #ddd;
178
+ background-color: #f7f7f7;
179
+ }
180
+
181
+ .mystickymenu-content-section .mysticky-number:focus {
182
+ outline: 0;
183
+ }
184
+
185
+ .mystickymenu-content-section .mysticky-number .pt_number {
186
+ float: right;
187
+ position: relative;
188
+ height: 30px;
189
+ }
190
+
191
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton {
192
+ position: relative;
193
+ cursor: pointer;
194
+ border-right: 1px solid #b7b7b7;
195
+ width: 15px;
196
+ text-align: center;
197
+ color: #333;
198
+ font-size: 14px;
199
+ line-height: 1.1;
200
+ -webkit-transform: translateX(-100%);
201
+ transform: translateX(-100%);
202
+ -webkit-user-select: none;
203
+ -moz-user-select: none;
204
+ -ms-user-select: none;
205
+ user-select: none;
206
+ }
207
+
208
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton:active {
209
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
210
+ -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
211
+ }
212
+
213
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberup {
214
+ position: absolute;
215
+ height: 50%;
216
+ top: 0;
217
+ border-bottom: 1px solid #b7b7b7;
218
+ }
219
+
220
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberdown {
221
+ position: absolute;
222
+ bottom: 0px;
223
+ height: 50%;
224
+ }
225
+
226
+ /* */
227
+
228
+ input#mysticky_class_selector {
229
+ border-radius: 24px;
230
+ border: 1px solid #E6E5EC;
231
+ height: 46px;
232
+ padding: 0 26px;
233
+ width: 49%
234
+ }
235
+
236
+ .mystickymenu-content-section {
237
+ background-color: #F9FCFC;
238
+ border-radius: 7px;
239
+ margin-bottom: 20px;
240
+ border: 1px solid #E1E6E6;
241
+ }
242
+
243
+ input#myfixed_disable_small_screen {
244
+ border-radius: 21px;
245
+ }
246
+
247
+ input#mysticky_active_on_height_home {
248
+ border-radius: 21px;
249
+ }
250
+
251
+ textarea#myfixed_cssstyle {
252
+ width: 100%;
253
+ margin-top: 12px;
254
+ border-radius: 10px;
255
+ background-color: #fff;
256
+ height: 120px;
257
+ resize: none;
258
+ border: 1px solid #DCE2E2;
259
+ padding: 10px 10px;
260
+ }
261
+
262
+ label {
263
+ font-size: 15px;
264
+ }
265
+
266
+ .sticky-class-sec tr td {
267
+ width: 50%;
268
+ }
269
+
270
+ .px-wrap {
271
+ position: relative;
272
+ display: inline-block;
273
+ vertical-align: top;
274
+ }
275
+
276
+ .mystickymenu-content-option {
277
+ padding: 20px 20px 0;
278
+ }
279
+
280
+ .mystickymenu-heading {
281
+ padding-bottom: 20px;
282
+ }
283
+
284
+ .myStickymenu-header-title {
285
+ background-color: #B2D2FC;
286
+ padding: 13px 20px;
287
+ border-radius: 10px 10px 0 0;
288
+ }
289
+
290
+ .myStickymenu-header-title h3 {
291
+ margin: 0;
292
+ color: #1F4B84;
293
+ font-size: 18px;
294
+ font-weight: 600;
295
+ line-height: 1.2;
296
+ }
297
+
298
+ .mystickymenu-heading p {
299
+ background-color: #D6EFFF;
300
+ color: #1F4B84;
301
+ border-radius: 0 0 10px 10px;
302
+ padding: 13px 20px;
303
+ margin: 0;
304
+ font-size: 14px;
305
+ line-height: 28px;
306
+ }
307
+
308
+ .mystickynumber {
309
+ position: relative;
310
+ padding-right: 30px;
311
+ }
312
+
313
+ .pt_numberbutton.pt_numberup {
314
+ height: 25px;
315
+ width: 25px;
316
+ line-height: 25px;
317
+ background-color: #808080;
318
+ border-radius: 50%;
319
+ position: relative;
320
+ margin-right: 5px;
321
+ display: inline-block;
322
+ color: white;
323
+ font-size: 21px;
324
+ cursor: pointer;
325
+ text-align: center;
326
+ margin-top: 2px;
327
+ }
328
+
329
+ .pt_numberbutton.pt_numberdown {
330
+ height: 25px;
331
+ width: 25px;
332
+ line-height: 25px;
333
+ background-color: #808080;
334
+ border-radius: 50%;
335
+ position: absolute;
336
+ top: 8px;
337
+ right: 0;
338
+ display: inline-block;
339
+ color: white;
340
+ font-size: 21px;
341
+ cursor: pointer;
342
+ text-align: center;
343
+ }
344
+
345
+ span.input-px {
346
+ height: 42px;
347
+ width: 57px;
348
+ background-color: #808080;
349
+ position: absolute;
350
+ left: 0;
351
+ top: 0px;
352
+ display: inline-block;
353
+ vertical-align: top;
354
+ font-size: 14px;
355
+ border-radius: 21px 0 0 21px;
356
+ color: #fff;
357
+ line-height: 42px;
358
+ text-align: center;
359
+ }
360
+
361
+ .mysticky_device_upgrade {
362
+ background-color: #f0ecfb;
363
+ border-radius: 20px;
364
+ padding: 15px 40px 20px 20px;
365
+ }
366
+
367
+ .mystickymenu-content-section.mystickymenu-content-upgrade {
368
+ background-color: #f4f4fd;
369
+ }
370
+
371
+ .myStickymenu-upgrade a {
372
+ background: #E1DAF6;
373
+ border-radius: 20px;
374
+ color: #7559C0;
375
+ padding-top: 2px;
376
+ padding-bottom: 6px;
377
+ padding-right: 10px;
378
+ padding-left: 10px;
379
+ font-weight: bold;
380
+ text-transform: uppercase;
381
+ font-size: 12px;
382
+ display: inline-block;
383
+ vertical-align: top;
384
+ line-height: 1;
385
+ }
386
+ .myStickymenu-upgrade {
387
+ float: left;
388
+ }
389
+
390
+ .myStickymenu-upgrade a:before {
391
+ content: "\f160";
392
+ font-family: dashicons;
393
+ position: relative;
394
+ top: 3px;
395
+ font-size: 16px;
396
+ }
397
+
398
+ .mystickymenu-input-section ul.mystickymenu-input-multicheckbox li {
399
+ display: inline-block;
400
+ width: 21%;
401
+ }
402
+
403
+ input#submit.button.button-primary {
404
+ background: #00c67c;
405
+ border-color: #00c67c;
406
+ text-transform: uppercase;
407
+ border-radius: 31px;
408
+ font-size: 26px;
409
+ padding-right: 23px;
410
+ padding-left: 23px;
411
+ height: 60px;
412
+ width: 200px;
413
+ border: 0;
414
+ box-shadow: none;
415
+ font-weight: 600;
416
+ text-shadow: none;
417
+ }
418
+
419
+ input.button.button-secondary.confirm {
420
+ background: #969696;
421
+ border-color: #969696;
422
+ text-transform: uppercase;
423
+ font-size: 26px;
424
+ padding-right: 23px;
425
+ padding-left: 23px;
426
+ float: left;
427
+ color: white;
428
+ margin-left: 10px;
429
+ height: 60px;
430
+ width: 200px;
431
+ border-radius: 31px;
432
+ font-weight: 600;
433
+ }
434
+
435
+ table ul.mystickymenu-input-multicheckbox {
436
+ width: 100%;
437
+ display: inline-flex;
438
+ }
439
+
440
+ p.myStickymenu-review a {
441
+ font-size: 20px;
442
+ }
443
+
444
+ table ul.mystickymenu-input-multicheckbox li {
445
+ padding-left: 21px;
446
+ }
447
+
448
+ table {
449
+ width: 100%;
450
+ }
451
+
452
+ #mystickymenu table tr td {
453
+ padding: 20px;
454
+ }
455
+
456
+ div#mystickymenu {
457
+ overflow-x: hidden;
458
+ overflow-y: hidden;
459
+ }
460
+
461
+ label.mysticky_title {
462
+ font-weight: 500;
463
+ font-size: 18px;
464
+ line-height: 1.2;
465
+ color: #4F4F4F;
466
+ }
467
+
468
+ .mystickymenu-content-option p label.mysticky_text {
469
+ margin-right: 0px;
470
+ }
471
+
472
+ span.mysticky_text {
473
+ font-size: 14px;
474
+ color: #9E9E9E;
475
+ margin-right: 20px;
476
+ font-style: italic;
477
+ }
478
+
479
+ label.mysticky_text {
480
+ font-size: 14px;
481
+ /*color: #9E9E9E;*/
482
+ margin-right: 20px;
483
+ font-style: italic;
484
+ }
485
+
486
+ select#mystickymenu-select {
487
+ border-radius: 24px;
488
+ border: 1px solid #E6E5EC;
489
+ height: 46px;
490
+ box-shadow: none;
491
+ padding: 0 26px;
492
+ width: 49%;
493
+ display: inline-block;
494
+ vertical-align: top;
495
+ }
496
+
497
+ .mystickymenu-input-section {
498
+ margin-top: 9px;
499
+ }
500
+
501
+ label.mysticky_title.css-style-title {
502
+ font-size: 20px;
503
+ }
504
+
505
+ span.wp-color-result-text {
506
+ display: none;
507
+ }
508
+
509
+ button.button.wp-color-result {
510
+ border-radius: 50%;
511
+ height: 30px !important;
512
+ }
513
+ button.button.wp-color-result .color-alpha {
514
+ border-radius: 50% !important;
515
+ height: 28px !important;
516
+ }
517
+
518
+ .mystickymenu-content-section h3 {
519
+ margin-right: 20px;
520
+ font-weight: 600;
521
+ font-size: 26px;
522
+ line-height: 1.2;
523
+ color: #4F4F4F;
524
+ margin: 0;
525
+ padding: 24px 20px;
526
+ }
527
+
528
+ .form-table {
529
+ margin-top: 0;
530
+ }
531
+
532
+ ul.mystickymenu-input-multicheckbox li span {
533
+ font-size: 16px;
534
+ color: #4F4F4F;
535
+ }
536
+
537
+ .mystickymenu-input-section label {
538
+ /*color: #9E9E9E;*/
539
+ font-size: 16px;
540
+ }
541
+ #mystickymenu .mystickymenu-input-section input.mystickymenu_normal_text{
542
+ border-radius: 0px;
543
+ height: 35px;
544
+ margin: 10px;
545
+ }
546
+ #mystickymenu .mystickymenu-input-section span.description{
547
+ font-style: normal;
548
+ font-size: 16px;
549
+ }
550
+ .myStickymenu-upgrade a {
551
+ text-decoration: none;
552
+ color: #7559C0;
553
+ }
554
+
555
+ #mystickymenu p.submit {
556
+ margin-top: 0;
557
+ padding-top: 0;
558
+ float: left;
559
+ }
560
+
561
+ td {
562
+ vertical-align: top !important;
563
+ }
564
+ p.description.mystuckymenu-class-id {
565
+ display: flex;
566
+ margin: 12px 0 0 0;
567
+ line-height: 1.5;
568
+ }
569
+
570
+ p.description.mystuckymenu-class-id .dashicons-controls-play{
571
+ background: #a4a5a5;
572
+ color: #ffffff;
573
+ border-radius: 50%;
574
+ }
575
+ p.description.mystuckymenu-class-id .dashicons-controls-play::before {
576
+ margin-right: 2px;
577
+ }
578
+ p.description {
579
+ color: rgba(79, 79, 79, 0.5);
580
+ font-size: 12px;
581
+ line-height: 1.2;
582
+ margin: 5px 0 0;
583
+ }
584
+
585
+ div#slider.ui-slider {
586
+ width: 229px;
587
+ background-color: #DCE2E2;
588
+ height: 2px;
589
+ border: 0;
590
+ border-radius: 2px;
591
+ position: relative;
592
+ }
593
+
594
+ .mystickymenu-content-section .ui-state-active, .ui-widget-content .ui-state-active {
595
+ color: #454545;
596
+ }
597
+
598
+ #mystickymenu #custom-handle {
599
+ width: 1.6em;
600
+ border-radius: 50%;
601
+ background-color: #fff;
602
+ box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
603
+ border: 0;
604
+ position: absolute;
605
+ }
606
+ .sticky-header-menu {
607
+ text-align: center;
608
+ padding: 0 0 20px 0;
609
+ }
610
+ .sticky-header-menu ul {
611
+ display: inline-block;
612
+ padding: 1px;
613
+ background-color: #D6EFFF;
614
+ -webkit-border-radius: 23px;
615
+ -moz-border-radius: 23px;
616
+ border-radius: 23px;
617
+ }
618
+ .sticky-header-menu ul li {
619
+ display: inline-block;
620
+ margin: 0;
621
+ }
622
+ .sticky-header-menu ul li a {
623
+ display: inline-block;
624
+ padding: 0 20px;
625
+ line-height: 40px;
626
+ height: 40px;
627
+ font-size: 16px;
628
+ text-decoration: none;
629
+ -webkit-border-radius: 20px;
630
+ -moz-border-radius: 20px;
631
+ border-radius: 20px;
632
+ }
633
+ .sticky-header-menu ul li a:hover {
634
+ background: #f0ecfb;
635
+ color: #7559C0;
636
+ }
637
+ .sticky-header-menu ul li a.active {
638
+ background: #E1DAF6;
639
+ color: #7559C0;
640
+ }
641
+ /*.sticky-header-content {
642
+ display: none;
643
+ }*/
644
+ .mysticky-welcomebar-setting-content-left label.mysticky-welcomebar-switch {
645
+ width: 55px;
646
+ }
647
+
648
+ /*New Welcomebar Page css*/
649
+ .mystickymenu-new-widget-wrap, .mystickymenu-new-widget-wrap * {
650
+ box-sizing: border-box;
651
+ }
652
+ .mystickymenu-new-widget-wrap {
653
+ border-radius: 10px;
654
+ box-shadow: 0 0 6px #ccc;
655
+ padding: 12px;
656
+ margin: 20px auto 0 auto;
657
+ width: 100%;
658
+ max-width: 776px;
659
+ background: #fff url(../images/new_widget_bg.png) no-repeat left bottom;
660
+ background-size: auto 100%;
661
+ font-family: 'Lato', sans-serif;
662
+ line-height: 20px;
663
+ }
664
+ .mystickymenu-new-widget-wrap h2 {
665
+ font-style: normal;
666
+ font-weight: 600;
667
+ font-size: 20px;
668
+ line-height: 30px;
669
+ color: #1e1e1e;
670
+ margin: 0;
671
+ text-align: center;
672
+ }
673
+ a.new-upgrade-button {
674
+ height: 40px;
675
+ background: #7761DF;
676
+ border-radius: 100px;
677
+ border: solid 1px #7761DF;
678
+ display: inline-block;
679
+ text-align: center;
680
+ color: #fff;
681
+ line-height: 40px;
682
+ margin: 10px 0 10px 10px;
683
+ padding: 0 25px;
684
+ text-decoration: none;
685
+ text-transform: uppercase;
686
+ }
687
+ .mystickymenu-new-widget-row ul {
688
+ display: flex;
689
+ align-items: center;
690
+ flex-wrap: wrap;
691
+ margin-top: 0;
692
+ margin-bottom: 0;
693
+ }
694
+ .mystickymenu-new-widget-row ul li {
695
+ width: 33.33%;
696
+ padding: 10px 10px 0px;
697
+ margin-bottom: 0;
698
+ }
699
+ .mystickymenu-feature {
700
+ margin: 30px 0 0 0;
701
+ background: #fff;
702
+ border: 1px solid #605dec;
703
+ box-sizing: border-box;
704
+ border-radius: 4px;
705
+ padding: 30px 15px 10px 15px;
706
+ min-height: 186px;
707
+ position: relative;
708
+ }
709
+ .mystickymenu-feature-top {
710
+ width: 50px;
711
+ height: 50px;
712
+ border: solid 1px #605dec;
713
+ border-radius: 50%;
714
+ position: absolute;
715
+ right: 0;
716
+ left: 0;
717
+ margin: 0 auto;
718
+ top: -25px;
719
+ background: #fff;
720
+ z-index: 11;
721
+ padding: 10px;
722
+ }
723
+ .feature-title {
724
+ font-family: 'Lato', sans-serif;
725
+ font-style: normal;
726
+ font-weight: 700;
727
+ font-size: 13px;
728
+ line-height: 18px;
729
+ color: #1e1e1e;
730
+ }
731
+ .feature-description {
732
+ font-family: 'Lato', sans-serif;
733
+ font-style: normal;
734
+ font-weight: 400;
735
+ font-size: 13px;
736
+ line-height: 18px;
737
+ color: #1e1e1e;
738
+ }
739
+ .mystickymenu-feature-top img {
740
+ width: auto;
741
+ height: auto;
742
+ max-width: 100%;
743
+ max-height: 100%;
744
+ }
745
+ /* Finish new Welcome bar screen css */
746
+ @media only screen and (min-width: 1024px) and (max-width: 1200px) {
747
+ .pt_numberbutton.pt_numberdown {
748
+ position: relative;
749
+ margin-right: -75px;
750
+ top: -29px;
751
+ }
752
+
753
+ .pt_numberbutton.pt_numberup {
754
+ position: relative;
755
+ top: -29px;
756
+ right: 70px;
757
+ }
758
+
759
+ /* span.input-px { */
760
+ /* position: relative; */
761
+ /* right: 112px; */
762
+ /* top: -24px !important; */
763
+ /* margin-right: -20px; */
764
+ /* } */
765
+ }
766
+
767
+
768
+
769
+ #rpt_pricr {
770
+ width: 100%;
771
+ max-width: 1024px;
772
+ margin: 0 auto;
773
+ padding: 25px 25px 25px 25px;
774
+ background: #fff;
775
+
776
+ -webkit-border-radius: 5px;
777
+ -moz-border-radius: 5px;
778
+ border-radius: 5px;
779
+ }
780
+ #rpt_pricr h2 {
781
+ padding: 50px 0 30px;
782
+ text-align: center;
783
+ font-size: 24px;
784
+ }
785
+ .rpt_plans .rpt_plan {
786
+ -moz-box-sizing: border-box;
787
+ -webkit-box-sizing: border-box
788
+ }
789
+
790
+ .rpt_2_plans .rpt_plan {
791
+ margin-left: 2%;
792
+ width: 49%;
793
+ float: right
794
+ }
795
+
796
+ .rpt_2_plans .rpt_plan:last-child {
797
+ margin-left: 0
798
+ }
799
+
800
+ .rpt_3_plans .rpt_plan {
801
+ margin-left: 2%;
802
+ width: 32%;
803
+ float: right
804
+ }
805
+
806
+ .rpt_3_plans .rpt_plan:last-child {
807
+ margin-left: 0
808
+ }
809
+
810
+ .rpt_4_plans .rpt_plan {
811
+ margin-left: 1%;
812
+ width: 24.25%;
813
+ float: right
814
+ }
815
+
816
+ .rpt_4_plans .rpt_plan:last-child {
817
+ margin-left: 0
818
+ }
819
+
820
+ .rpt_5_plans .rpt_plan {
821
+ margin-left: .5%;
822
+ width: 19.6%;
823
+ float: right
824
+ }
825
+
826
+ .rpt_5_plans .rpt_plan:last-child {
827
+ margin-left: 0
828
+ }
829
+
830
+ .rpt_style_bic .rpt_plan, .rpt_style_loc .rpt_plan {
831
+ -webkit-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
832
+ -moz-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
833
+ box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19)
834
+ }
835
+
836
+ .rpt_plans .rpt_plan .rpt_title img {
837
+ margin-left: 10px;
838
+ position: relative;
839
+ vertical-align: middle
840
+ }
841
+
842
+ .rpt_plans .rpt_plan .rpt_title {
843
+ background: #6371db;
844
+ font-weight: 300;
845
+ padding: 24px 18px;
846
+ font-size: 26px;
847
+ color: #fff;
848
+ line-height: 35px;
849
+ height: auto;
850
+ }
851
+
852
+ .rpt_plans .rpt_plan .rpt_title span {
853
+ display: inline-block;
854
+ position: relative;
855
+ top: -10px
856
+ }
857
+
858
+ .rpt_style_basic .rpt_plan .rpt_title {
859
+ border-bottom: #6371db solid 1px;
860
+ border-top-right-radius: 8px;
861
+ border-top-left-radius: 8px;
862
+ }
863
+
864
+ .rpt_style_spec .rpt_plan .rpt_title {
865
+ color: #fff
866
+ }
867
+
868
+ .rpt_style_bic .rpt_plan .rpt_title, .rpt_style_loc .rpt_plan .rpt_title, .rpt_style_swl .rpt_plan .rpt_title {
869
+ background: #333
870
+ }
871
+
872
+ .rpt_plans .rpt_sm_title .rpt_plan .rpt_title {
873
+ font-size: 20px;
874
+ line-height: 18px
875
+ }
876
+
877
+ .rpt_plans .rpt_xsm_title .rpt_plan .rpt_title {
878
+ font-size: 15px;
879
+ line-height: 15px
880
+ }
881
+
882
+ .rpt_4_plans .rpt_plan .rpt_title {
883
+ font-size: 17px;
884
+ line-height: 15px
885
+ }
886
+
887
+ .rpt_4_plans .rpt_sm_title .rpt_plan .rpt_title {
888
+ font-size: 15px;
889
+ line-height: 13px
890
+ }
891
+
892
+ .rpt_4_plans .rpt_xsm_title .rpt_plan .rpt_title {
893
+ font-size: 13px;
894
+ line-height: 11px
895
+ }
896
+
897
+ .rpt_5_plans .rpt_plan .rpt_title {
898
+ font-size: 15px;
899
+ line-height: 13px
900
+ }
901
+
902
+ .rpt_5_plans .rpt_sm_title .rpt_plan .rpt_title {
903
+ font-size: 13px;
904
+ line-height: 11px
905
+ }
906
+
907
+ .rpt_5_plans .rpt_xsm_title .rpt_plan .rpt_title {
908
+ font-size: 12px;
909
+ line-height: 10px
910
+ }
911
+
912
+ .rpt_plans .rpt_recommended_plan .rpt_title {
913
+ background: #6371db
914
+ }
915
+
916
+ .rpt_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
917
+ position: relative;
918
+ top: -44px;
919
+ right: -10px;
920
+ font-size: 35px;
921
+ line-height: 0
922
+ }
923
+
924
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
925
+ top: -36px
926
+ }
927
+
928
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
929
+ top: -26px
930
+ }
931
+
932
+ .rpt_sm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
933
+ font-size: 30px;
934
+ top: -44px;
935
+ right: -4px
936
+ }
937
+
938
+ .rpt_xsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
939
+ font-size: 25px;
940
+ top: -30px;
941
+ right: -4px
942
+ }
943
+
944
+ .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
945
+ font-size: 21px;
946
+ top: -14px;
947
+ right: -4px
948
+ }
949
+
950
+ .rpt_style_basic .rpt_plan .rpt_head {
951
+ background: #ec86c6
952
+ }
953
+
954
+ .rpt_style_spec .rpt_plan .rpt_head {
955
+ background: #fff
956
+ }
957
+
958
+ .rpt_style_swl .rpt_plan .rpt_head {
959
+ background: #fff
960
+ }
961
+
962
+ .rpt_plans .rpt_plan .rpt_head .rpt_price {
963
+ padding: 6px 10px;
964
+ font-size: 74px;
965
+ line-height: 80px;
966
+ font-weight: 300;
967
+ text-align: center;
968
+ color: #ffffff
969
+ }
970
+
971
+ .rpt_style_basic .rpt_plan .rpt_head .rpt_price, .rpt_style_spec .rpt_plan .rpt_head .rpt_price {
972
+ text-shadow: 1px 2px 7px rgba(0, 0, 0, .6)
973
+ }
974
+
975
+ .rpt_style_swl .rpt_plan .rpt_head .rpt_price {
976
+ color: #000
977
+ }
978
+
979
+ .rpt_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
980
+ font-size: 62px
981
+ }
982
+
983
+ .rpt_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
984
+ font-size: 56px
985
+ }
986
+
987
+ .rpt_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
988
+ font-size: 38px
989
+ }
990
+
991
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_price {
992
+ font-size: 69px;
993
+ line-height: 80px
994
+ }
995
+
996
+ .rpt_4_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
997
+ font-size: 53px;
998
+ line-height: 65px
999
+ }
1000
+
1001
+ .rpt_4_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
1002
+ font-size: 47px;
1003
+ line-height: 64px
1004
+ }
1005
+
1006
+ .rpt_4_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
1007
+ font-size: 31px;
1008
+ line-height: 60px
1009
+ }
1010
+
1011
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_price {
1012
+ font-size: 59px;
1013
+ line-height: 80px
1014
+ }
1015
+
1016
+ .rpt_5_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
1017
+ font-size: 44px;
1018
+ line-height: 60px
1019
+ }
1020
+
1021
+ .rpt_5_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
1022
+ font-size: 37px;
1023
+ line-height: 53px
1024
+ }
1025
+
1026
+ .rpt_5_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
1027
+ font-size: 24px;
1028
+ line-height: 50px
1029
+ }
1030
+
1031
+ .rpt_plans .rpt_recommended_plan .rpt_head .rpt_price {
1032
+ font-size: 98px
1033
+ }
1034
+
1035
+ .rpt_4_plans .rpt_recommended_plan .rpt_head .rpt_price {
1036
+ font-size: 74px
1037
+ }
1038
+
1039
+ .rpt_5_plans .rpt_recommended_plan .rpt_head .rpt_price {
1040
+ font-size: 67px
1041
+ }
1042
+
1043
+ .rpt_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1044
+ font-size: 83px
1045
+ }
1046
+
1047
+ .rpt_4_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1048
+ font-size: 60px
1049
+ }
1050
+
1051
+ .rpt_5_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1052
+ font-size: 54px
1053
+ }
1054
+
1055
+ .rpt_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1056
+ font-size: 55px
1057
+ }
1058
+
1059
+ .rpt_4_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1060
+ font-size: 49px
1061
+ }
1062
+
1063
+ .rpt_5_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1064
+ font-size: 41px
1065
+ }
1066
+
1067
+ .rpt_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1068
+ font-size: 42px
1069
+ }
1070
+
1071
+ .rpt_4_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1072
+ font-size: 34px
1073
+ }
1074
+
1075
+ .rpt_5_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1076
+ font-size: 26px
1077
+ }
1078
+
1079
+ .rpt_plans .rpt_plan .rpt_head .rpt_recurrence {
1080
+ font-size: 13px;
1081
+ font-weight: 300;
1082
+ line-height: 18px;
1083
+ padding: 20px 10px 10px;
1084
+ color: #ffffff;
1085
+ text-align: center
1086
+ }
1087
+
1088
+ .rpt_style_spec .rpt_plan .rpt_head .rpt_recurrence {
1089
+ color: #d3d3d3
1090
+ }
1091
+
1092
+ .rpt_style_bic .rpt_plan .rpt_head .rpt_recurrence, .rpt_style_loc .rpt_plan .rpt_head .rpt_recurrence {
1093
+ color: #f5f5f5
1094
+ }
1095
+
1096
+ .rpt_style_swl .rpt_plan .rpt_head .rpt_recurrence {
1097
+ color: grey
1098
+ }
1099
+
1100
+ .rpt_plans .rpt_sm_recurrence .rpt_plan .rpt_head .rpt_recurrence {
1101
+ font-size: 11px;
1102
+ padding: 20px 40px 4px
1103
+ }
1104
+
1105
+ .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1106
+ font-size: 16px;
1107
+ line-height: 20px;
1108
+ font-weight: 300;
1109
+ text-align: center;
1110
+ padding: 10px 30px 20px
1111
+ }
1112
+
1113
+ .rpt_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1114
+ font-size: 14px
1115
+ }
1116
+
1117
+ .rpt_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1118
+ font-size: 12px
1119
+ }
1120
+
1121
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_subtitle {
1122
+ font-size: 16px;
1123
+ line-height: 18px;
1124
+ padding: 10px 10px 20px
1125
+ }
1126
+
1127
+ .rpt_4_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1128
+ font-size: 14px;
1129
+ line-height: 17px
1130
+ }
1131
+
1132
+ .rpt_4_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1133
+ font-size: 13px;
1134
+ line-height: 16px
1135
+ }
1136
+
1137
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_subtitle {
1138
+ font-size: 15px;
1139
+ line-height: 18px;
1140
+ padding: 10px 10px 20px
1141
+ }
1142
+
1143
+ .rpt_5_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1144
+ font-size: 13px;
1145
+ line-height: 17px
1146
+ }
1147
+
1148
+ .rpt_5_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1149
+ font-size: 12px;
1150
+ line-height: 16px
1151
+ }
1152
+
1153
+ .rpt_plans .rpt_plan .rpt_head .rpt_description {
1154
+ font-size: 14px;
1155
+ line-height: 20px;
1156
+ padding: 10px 20px;
1157
+ font-weight: 300;
1158
+ text-align: center;
1159
+ color: #ffffff
1160
+ }
1161
+
1162
+ .rpt_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1163
+ font-size: 12px
1164
+ }
1165
+
1166
+ .rpt_style_bic .rpt_plan .rpt_head .rpt_description, .rpt_style_loc .rpt_plan .rpt_head .rpt_description {
1167
+ color: #f5f5f5
1168
+ }
1169
+
1170
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_description {
1171
+ font-size: 13px;
1172
+ line-height: 18px
1173
+ }
1174
+
1175
+ .rpt_4_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1176
+ font-size: 12px;
1177
+ line-height: 17px
1178
+ }
1179
+
1180
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_description {
1181
+ font-size: 12px;
1182
+ line-height: 18px
1183
+ }
1184
+
1185
+ .rpt_5_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1186
+ font-size: 11px;
1187
+ line-height: 17px
1188
+ }
1189
+
1190
+ .rpt_plans .rpt_plan .rpt_features {
1191
+ padding: 20px;
1192
+ background: #f0ecfb;
1193
+ text-align: center
1194
+ }
1195
+
1196
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1197
+ font-size: 16px;
1198
+ padding: 6px 16px;
1199
+ border-bottom: 1px dotted #d3d3d3
1200
+ }
1201
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature a {
1202
+ color: #333333;
1203
+ }
1204
+
1205
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature:last-child {
1206
+ border-bottom: none
1207
+ }
1208
+
1209
+ .rpt_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1210
+ font-size: 14px
1211
+ }
1212
+
1213
+ .rpt_style_bic .rpt_plan .rpt_features, .rpt_style_loc .rpt_plan .rpt_features, .rpt_style_swl .rpt_plan .rpt_features {
1214
+ background: #fff
1215
+ }
1216
+
1217
+ .rpt_style_swl .rpt_plan .rpt_features .rpt_feature {
1218
+ padding: 5px 16px
1219
+ }
1220
+
1221
+ .rpt_4_plans .rpt_plan .rpt_features .rpt_feature {
1222
+ padding: 6px 10px;
1223
+ font-size: 14px
1224
+ }
1225
+
1226
+ .rpt_4_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1227
+ font-size: 12px
1228
+ }
1229
+
1230
+ .rpt_5_plans .rpt_plan .rpt_features .rpt_feature {
1231
+ padding: 6px 10px;
1232
+ font-size: 13px
1233
+ }
1234
+
1235
+ .rpt_5_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1236
+ font-size: 11px
1237
+ }
1238
+
1239
+ .rpt_plans .rpt_plan .rpt_foot {
1240
+ display: block;
1241
+ padding: 10px 30px;
1242
+ border-top: #7559C0 solid 2px;
1243
+ background: #7559C0;
1244
+ text-align: center;
1245
+ color: #fff;
1246
+ font-size: 24px;
1247
+ text-decoration: none;
1248
+ font-weight: 300;
1249
+ transition: All .5s ease;
1250
+ -webkit-transition: All .5s ease;
1251
+ -moz-transition: All .5s ease;
1252
+ -o-transition: All .5s ease
1253
+ }
1254
+
1255
+ .rpt_plans .rpt_sm_button .rpt_plan .rpt_foot {
1256
+ font-size: 19px
1257
+ }
1258
+
1259
+ .rpt_style_basic .rpt_plan .rpt_foot {
1260
+ border-bottom-right-radius: 8px;
1261
+ border-bottom-left-radius: 8px
1262
+ }
1263
+
1264
+ .rpt_style_swl .rpt_plan .rpt_foot {
1265
+ border-top: none;
1266
+ padding: 10px 30px 20px;
1267
+ color: #000;
1268
+ background: #333
1269
+ }
1270
+
1271
+ .rpt_4_plans .rpt_plan .rpt_foot {
1272
+ padding: 4px 20px;
1273
+ font-size: 19px
1274
+ }
1275
+
1276
+ .rpt_4_plans .rpt_sm_button .rpt_plan .rpt_foot, .rpt_5_plans .rpt_plan .rpt_foot {
1277
+ padding: 4px 20px;
1278
+ font-size: 17px
1279
+ }
1280
+
1281
+ .rpt_5_plans .rpt_sm_button .rpt_plan .rpt_foot {
1282
+ font-size: 16px
1283
+ }
1284
+
1285
+ .rpt_plans .rpt_plan .rpt_foot:hover {
1286
+ opacity: .8
1287
+ }
1288
+
1289
+ .rpt_style_swl .rpt_plan .rpt_foot:hover {
1290
+ opacity: 1
1291
+ }
1292
+
1293
+ .rpt_plans .rpt_recommended_plan .rpt_foot {
1294
+ font-size: 30px;
1295
+ padding: 16px 0
1296
+ }
1297
+
1298
+ .rpt_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1299
+ font-size: 26px
1300
+ }
1301
+
1302
+ .rpt_4_plans .rpt_recommended_plan .rpt_foot {
1303
+ font-size: 22px;
1304
+ font-weight: 300;
1305
+ padding: 10px 0
1306
+ }
1307
+
1308
+ .rpt_4_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1309
+ font-size: 19px;
1310
+ padding: 10px 0
1311
+ }
1312
+
1313
+ .rpt_5_plans .rpt_recommended_plan .rpt_foot {
1314
+ font-size: 20px;
1315
+ font-weight: 300;
1316
+ padding: 10px 0
1317
+ }
1318
+
1319
+ .rpt_5_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1320
+ font-size: 18px;
1321
+ padding: 10px 0
1322
+ }
1323
+
1324
+ .rpt_custom_btn {
1325
+ border-bottom-right-radius: 5px;
1326
+ border-bottom-left-radius: 5px;
1327
+ text-align: center;
1328
+ padding: 16px 20px
1329
+ }
1330
+
1331
+ .rpt_plans .rpt_recommended_plan {
1332
+ position: relative;
1333
+ top: -10px
1334
+ }
1335
+
1336
+ .rpt_recommended_plan img.rpt_recommended {
1337
+ position: absolute !important;
1338
+ left: 10px !important
1339
+ }
1340
+
1341
+ .rpt_style_bic .rpt_recommended_plan, .rpt_style_loc .rpt_recommended_plan {
1342
+ -webkit-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1343
+ -moz-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1344
+ box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39)
1345
+ }
1346
+
1347
+ a.rpt_tooltip {
1348
+ display: block;
1349
+ outline: 0;
1350
+ position: relative
1351
+ }
1352
+
1353
+ a.rpt_tooltip strong {
1354
+ line-height: 30px
1355
+ }
1356
+
1357
+ a.rpt_tooltip > span.intool {
1358
+ width: 90%;
1359
+ padding: 10px;
1360
+ margin-top: 56px;
1361
+ opacity: 0;
1362
+ visibility: hidden;
1363
+ z-index: 10;
1364
+ position: absolute;
1365
+ top: -15px;
1366
+ display: block;
1367
+ color: #f5f5f5;
1368
+ font-size: 13px;
1369
+ line-height: 20px;
1370
+ background: #333;
1371
+ font-weight: 300;
1372
+ text-align: center
1373
+ }
1374
+
1375
+ a.rpt_tooltip:hover {
1376
+ cursor: zoom-in
1377
+ }
1378
+
1379
+ a.rpt_tooltip .rpt_tooltip_plus {
1380
+ text-decoration: none !important;
1381
+ display: inline;
1382
+ font-size: 12px;
1383
+ font-weight: 700;
1384
+ position: relative;
1385
+ top: -6px
1386
+ }
1387
+
1388
+ .rpt_feature:hover a.rpt_tooltip > span.intool {
1389
+ opacity: .98;
1390
+ text-decoration: none;
1391
+ visibility: visible;
1392
+ overflow: visible
1393
+ }
1394
+
1395
+ a.rpt_tooltip span.intool b {
1396
+ width: 10px;
1397
+ height: 10px;
1398
+ margin-right: 35%;
1399
+ margin-top: -15px;
1400
+ position: absolute;
1401
+ -webkit-transform: rotate(-45deg);
1402
+ -moz-transform: rotate(-45deg);
1403
+ -o-transform: rotate(-45deg);
1404
+ transform: rotate(-45deg);
1405
+ display: none \0/;
1406
+ background: #333
1407
+ }
1408
+
1409
+ .rpt_3_plans a.rpt_tooltip > span.intool {
1410
+ margin-right: -1%
1411
+ }
1412
+
1413
+ .rpt_4_plans a.rpt_tooltip > span.intool {
1414
+ margin-right: 0
1415
+ }
1416
+
1417
+ .rpt_5_plans a.rpt_tooltip > span.intool {
1418
+ margin-right: -2%
1419
+ }
1420
+
1421
+ .entry-content .rpt_plan a, .rpt_plan a {
1422
+ border-bottom: none !important;
1423
+ text-decoration: none;
1424
+ }
1425
+
1426
+ .rpt_plans .rpt_plan .rpt_icon {
1427
+ max-width: 30px;
1428
+ max-height: 30px
1429
+ }
1430
+
1431
+ .rpt_plans .rpt_plan img {
1432
+ display: inline;
1433
+ margin: 0 10px 0 0;
1434
+ padding: 0;
1435
+ -webkit-box-shadow: 0 0 0 0 transparent;
1436
+ -moz-box-shadow: 0 0 0 0 transparent;
1437
+ box-shadow: 0 0 0 0 transparent;
1438
+ border: none
1439
+ }
1440
+
1441
+ .mystickymenu-testimonial {
1442
+ position: relative;
1443
+ }
1444
+ .mystickymenu-testimonial .testimonial-data {
1445
+ position: relative;
1446
+ }
1447
+ .mystickymenu-testimonial .testimonial-data {
1448
+ position: relative;
1449
+ margin-right: 30px;
1450
+ padding: 10px 10px 10px 40px;
1451
+ background: #f5f5f5;
1452
+ font-size: 16px;
1453
+ line-height: 22px;
1454
+ }
1455
+ .mystickymenu-testimonial .testimonial-image {
1456
+ position: absolute;
1457
+ height: 60px;
1458
+ width: 60px;
1459
+ overflow: hidden;
1460
+ border-radius: 30px;
1461
+ top: 50%;
1462
+ margin-top: -30px;
1463
+ z-index: 1;
1464
+ }
1465
+ .mystickymenu-testimonial .testimonial-image img {
1466
+ width: 100%;
1467
+ height: auto;
1468
+ }
1469
+ .mystickymenu-testimonial-list {
1470
+ width: 100%;
1471
+ max-width: 1080px;
1472
+ margin: 30px auto;
1473
+ }
1474
+ .testimonial-title {
1475
+ font-weight: bold;
1476
+ font-size: 18px;
1477
+ padding: 0 0 5px 0;
1478
+ }
1479
+ .testimonial-author {
1480
+ font-size: 16px;
1481
+ font-style: italic;
1482
+ font-weight: 500;
1483
+ padding: 5px 0 0 0;
1484
+ }
1485
+ p.udner-title strong {
1486
+ font-size: 30px;
1487
+ padding-bottom: 40px;
1488
+ display: block;
1489
+ color: #b97fcf;
1490
+ text-align: center;
1491
+ }
1492
+ p.udner-title {
1493
+ margin: 0;
1494
+ padding: 0;
1495
+ }
1496
+ @media only screen and (max-width: 640px) {
1497
+ .rpt_plans .rpt_plan {
1498
+ width: 96%;
1499
+ margin: 10px 2% 20px !important
1500
+ }
1501
+
1502
+ .rpt_plans .rpt_plan .rpt_title {
1503
+ position: relative;
1504
+ font-size: 26px !important;
1505
+ line-height: 35px !important
1506
+ }
1507
+
1508
+ .rpt_plans .rpt_plan .rpt_head .rpt_price {
1509
+ font-size: 74px !important;
1510
+ line-height: 100px !important
1511
+ }
1512
+
1513
+ .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1514
+ font-size: 17px !important;
1515
+ line-height: 28px !important;
1516
+ padding: 10px 40px 20px
1517
+ }
1518
+
1519
+ .rpt_plans .rpt_plan .rpt_head .rpt_description {
1520
+ font-size: 15px !important;
1521
+ line-height: 26px !important;
1522
+ padding: 0 40px 30px
1523
+ }
1524
+
1525
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1526
+ padding: 6px 16px;
1527
+ font-size: 14px !important
1528
+ }
1529
+
1530
+ .rpt_plans .rpt_plan .rpt_foot {
1531
+ padding: 10px 40px;
1532
+ text-align: center;
1533
+ color: #fff;
1534
+ font-size: 20px
1535
+ }
1536
+
1537
+ .rpt_plans .rpt_recommended_plan .rpt_foot {
1538
+ font-size: 30px;
1539
+ font-weight: 300;
1540
+ padding: 20px 0
1541
+ }
1542
+
1543
+ .rpt_plan .rpt_head .rpt_price .rpt_currency {
1544
+ top: -36px !important;
1545
+ right: -10px !important;
1546
+ font-size: 35px !important
1547
+ }
1548
+ }
1549
+
1550
+ #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature, #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature a, #rpt_pricr .rpt_plan_ori .rpt_foot, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_description, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price .rpt_currency, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_recurrence, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_subtitle, #rpt_pricr .rpt_plan_ori .rpt_title {
1551
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
1552
+ font-weight: 300 !important
1553
+ }
1554
+
1555
+ .client-testimonial {
1556
+ margin: 20px auto 0px;
1557
+ -webkit-border-radius: 5px;
1558
+ -moz-border-radius: 5px;
1559
+ border-radius: 5px;
1560
+ }
1561
+ .client-testimonial span.dashicons.dashicons-yes {
1562
+ background: #00bd00;
1563
+ color: #fff;
1564
+ border-radius: 50%;
1565
+ -webkit-border-radius: 50%;
1566
+ -moz-border-radius: 50%;
1567
+ }
1568
+ .client-testimonial p.text-center {
1569
+ text-align: center;
1570
+ margin: 6px 0;
1571
+ font-size: 14px;
1572
+ }
1573
+ .client-testimonial .payment {
1574
+ margin: 20px 0;
1575
+ text-align: center;
1576
+ }
1577
+ .testimonial-image {
1578
+ width: 10%;
1579
+ display: inline-block;
1580
+ vertical-align: middle;
1581
+ }
1582
+ .testimonial-content {
1583
+ width: 85%;
1584
+ display: inline-block;
1585
+ vertical-align: middle;
1586
+ padding-right: 15px;
1587
+ }
1588
+ .testimonial-image img {
1589
+ border-radius: 50%;
1590
+ -webkit-border-radius: 50%;
1591
+ -moz-border-radius: 50%;
1592
+ width: 100%;
1593
+ height: auto;
1594
+ }
1595
+ .client-testimonial .author {
1596
+ font-weight: bold;
1597
+ padding: 5px 0 0 0;
1598
+ font-size: 14px;
1599
+ }
1600
+ .testimonial-box {
1601
+ padding: 15px;
1602
+ background: #d6efff;
1603
+ -webkit-border-radius: 5px;
1604
+ -moz-border-radius: 5px;
1605
+ border-radius: 5px;
1606
+ }
1607
+
1608
+ /*01-08-2019 welcome bar css*/
1609
+ #sticky-header-welcome-bar *, #sticky-header-welcome-bar ::before, #sticky-header-welcome-bar ::after {
1610
+ -webkit-box-sizing: border-box;
1611
+ -moz-box-sizing: border-box;
1612
+ box-sizing: border-box;
1613
+ }
1614
+ #sticky-header-welcome-bar .iris-picker, #sticky-header-welcome-bar .iris-picker * {
1615
+ -moz-box-sizing: content-box;
1616
+ -webkit-box-sizing: content-box;
1617
+ box-sizing: content-box;
1618
+ }
1619
+ .mysticky-welcomebar-switch {
1620
+ display: inline-block;
1621
+ width:55px;
1622
+ height:30px;
1623
+ position: relative;
1624
+ }
1625
+ .mysticky-welcomebar-switch input {
1626
+ opacity: 0;
1627
+ width: 0;
1628
+ height: 0;
1629
+ }
1630
+ .mysticky-welcomebar-switch .slider {
1631
+ border-radius: 15px;
1632
+ position: absolute;
1633
+ cursor: pointer;
1634
+ top: 0;
1635
+ right: 0;
1636
+ left: 0;
1637
+ bottom: 0;
1638
+ background-color: #ccc;
1639
+ border: 2px solid #ccc;
1640
+ -webkit-transition: .4s;
1641
+ transition: .4s;
1642
+ }
1643
+ .mysticky-welcomebar-switch .slider:before {
1644
+ border-radius: 50%;
1645
+ position: absolute;
1646
+ content: "";
1647
+ height: 24px;
1648
+ width: 25px;
1649
+ left: 2px;
1650
+ top: 1px;
1651
+ background-color: #ffffff;
1652
+ -webkit-transition: .4s;
1653
+ transition: .4s;
1654
+ }
1655
+
1656
+ .mysticky-welcomebar-switch .slider:before {
1657
+ border-radius: 50%;
1658
+ position: absolute;
1659
+ content: "";
1660
+ height: 24px;
1661
+ width: 25px;
1662
+ left: 2px;
1663
+ top: 1px;
1664
+ background-color: #ffffff;
1665
+ -webkit-transition: .4s;
1666
+ transition: .4s;
1667
+ }
1668
+ .mysticky-welcomebar-switch input:checked + .slider {
1669
+ background-color: #7761DF;
1670
+ border: 2px solid #7761DF;
1671
+ }
1672
+ .mysticky-welcomebar-switch input:focus + .slider {
1673
+ box-shadow: 0 0 1px #2196F3;
1674
+ }
1675
+ .mysticky-welcomebar-switch input:checked + .slider:before {
1676
+ -webkit-transform: translateX(24px);
1677
+ -ms-transform: translateX(24px);
1678
+ transform: translateX(24px);
1679
+ }
1680
+
1681
+
1682
+ .welcombar-status-switch{
1683
+ display: inline-block;
1684
+ width:46px;
1685
+ height:24px;
1686
+ position: relative;
1687
+ }
1688
+
1689
+ .welcombar-status-switch .slider:before {
1690
+ border-radius: 50%;
1691
+ position: absolute;
1692
+ content: "";
1693
+ height: 15px;
1694
+ width: 15px;
1695
+ left: 2px;
1696
+ top: 2px;
1697
+ background-color: #ffffff;
1698
+ -webkit-transition: .4s;
1699
+ transition: .4s;
1700
+ }
1701
+ .mysticky-welcomebar-form {
1702
+ background-color: #f8fcfd;
1703
+ border: 1px solid #E1E6E6;
1704
+ padding: 20px;
1705
+ border-radius: 7px;
1706
+ position: relative;
1707
+ }
1708
+ .mysticky-welcomebar-header-title h3 {
1709
+ margin: 0;
1710
+ font-size: 26px;
1711
+ color: #4F4F4F;
1712
+ line-height: 1.2;
1713
+ display: inline-block;
1714
+ vertical-align: top;
1715
+ }
1716
+ .mysticky-welcomebar-header-title h3 + .mysticky-welcomebar-switch {
1717
+ margin-right: 20px;
1718
+ }
1719
+ .mysticky-welcomebar-subheader-title {
1720
+ padding: 40px 0 30px;
1721
+ }
1722
+ .mysticky-welcomebar-subheader-title h4 {
1723
+ margin: 0;
1724
+ font-weight: 400;
1725
+ font-size: 22px;
1726
+ line-height: 1.2;
1727
+ color: #4F4F4F;
1728
+ }
1729
+ .mysticky-welcomebar-setting-content {
1730
+ display: flex;
1731
+ align-items: center;
1732
+ padding-bottom: 20px;
1733
+ }
1734
+ .mysticky-welcomebar-setting-content.show-on-apper {
1735
+ align-items: flex-start;
1736
+ }
1737
+ .mysticky-welcomebar-setting-content > label {
1738
+ font-size: 18px;
1739
+ line-height: 1.2;
1740
+ color: #4F4F4F;
1741
+ font-weight: 500;
1742
+ margin-top: 10px;
1743
+ width: 255px;
1744
+ padding-left: 10px;
1745
+ }
1746
+ .mysticky-welcomebar-setting-content.show-on-apper > label {
1747
+ margin-top: 10px;
1748
+ }
1749
+ .mysticky-welcomebar-setting-content-left {
1750
+ width: 100%;
1751
+ align-items: center;
1752
+ display: flex;
1753
+ }
1754
+ /*----------------------*/
1755
+ /*.mysticky-welcomebar-setting-wrap{
1756
+ height: 100vh;
1757
+ }*/
1758
+ .mysticky-welcomebar-setting-wrap .myStickymenu-upgrade {
1759
+ display: inline-block;
1760
+ vertical-align: middle;
1761
+ float: none;
1762
+ margin-right: 12px;
1763
+ }
1764
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-position .myStickymenu-upgrade {
1765
+ margin-right: 50px;
1766
+ }
1767
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-remove-getbar .myStickymenu-upgrade {
1768
+ margin-right: 130px;
1769
+ }
1770
+ .mysticky-welcomebar-setting-content-left.mysticky-welcomebar-colorpicker .wp-picker-container{
1771
+ display: inline-block;
1772
+ }
1773
+ .mysticky-welcomebar-setting-content-left label {
1774
+ display: inline-block;
1775
+ vertical-align: top;
1776
+ width: 100px;
1777
+ padding-left: 10px;
1778
+ }
1779
+ .mysticky-welcomebar-setting-content-left .wp-picker-input-wrap label {
1780
+ width: auto;
1781
+ }
1782
+ .mysticky-welcomebar-setting-content-left .mysticky-welcomebar-trigger-wrap label {
1783
+ width: auto;
1784
+ }
1785
+ #mystickymenu .mysticky-welcomebar-setting-content-left .px-wrap input {
1786
+ padding-left: 60px;
1787
+ }
1788
+ .mysticky-welcomebar-setting-content-left select ,
1789
+ .mysticky-welcomebar-setting-content-left input[type="text"] ,
1790
+ .mysticky-welcomebar-setting-content-left textarea {
1791
+ width: 400px;
1792
+ height: 42px;
1793
+ border-radius: 20px;
1794
+ color: #32373c;
1795
+ display: block;
1796
+ padding: 0 10px;
1797
+ box-shadow: none;
1798
+ border: 1px solid #DCE2E2;
1799
+ margin: 0;
1800
+ font-size: 14px;
1801
+ font-weight: 400;
1802
+ }
1803
+
1804
+ .mysticky-welcomebar-setting-content-left input::placeholder,
1805
+ .mysticky-welcomebar-setting-content-left input:-ms-input-placeholder,
1806
+ .mysticky-welcomebar-setting-content-left input::-ms-input-placeholder {
1807
+ color: #b5b7b9;
1808
+ opacity:0.6;
1809
+ }
1810
+ .mysticky-welcomebar-setting-content-left select {
1811
+ padding-left: 22px;
1812
+ }
1813
+ .mysticky-welcomebar-setting-content-left textarea {
1814
+ height: 100px;
1815
+ border-radius: 10px;
1816
+ padding-top: 9px;
1817
+ }
1818
+ #mystickymenu .wp-picker-container input[type="text"].wp-color-picker {
1819
+ border-radius: 0;
1820
+ height: 32px;
1821
+ border: 1px solid #DCE2E2;
1822
+ }
1823
+ #mystickymenu .wp-picker-input-wrap .button {
1824
+ height: 32px;
1825
+ }
1826
+ #mystickymenu .form-table .wp-picker-input-wrap label {
1827
+ padding-left: 10px;
1828
+ }
1829
+ .mysticky-welcomebar-setting-action {
1830
+ display: inline-block;
1831
+ vertical-align: top;
1832
+ }
1833
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
1834
+ padding-right: 10px;
1835
+ }
1836
+ .mysticky-welcomebar-redirect label {
1837
+ width: auto;
1838
+ padding-left: 0;
1839
+ padding-top: 10px;
1840
+ }
1841
+ .mysticky-welcomebar-expirydate {
1842
+ position: relative;
1843
+ display: inline-block;
1844
+ vertical-align: top;
1845
+ }
1846
+ .mysticky-welcomebar-setting-content-left .mysticky-welcomebar-expirydate input {
1847
+ padding-right: 55px;
1848
+ }
1849
+ .mysticky-welcomebar-expirydate .dashicons {
1850
+ position: absolute;
1851
+ top: 0;
1852
+ right: 0;
1853
+ bottom: 0;
1854
+ color: #a7a7a7;
1855
+ border-left: 1px solid #a7a7a7;
1856
+ width: 46px;
1857
+ height: 100%;
1858
+ line-height: 40px;
1859
+ }
1860
+ a.create-rule {
1861
+ background-color: #7761DF;
1862
+ color: #fff;
1863
+ display: inline-block;
1864
+ margin: 10px 0 0;
1865
+ vertical-align: top;
1866
+ text-decoration: none;
1867
+ padding: 5px 12px;
1868
+ border-radius: 20px;
1869
+ box-shadow: none;
1870
+ outline: none;
1871
+ }
1872
+ .mysticky-welcomebar-upgrade-main {
1873
+ position: relative;
1874
+ vertical-align: top;
1875
+ width: 100%;
1876
+ padding-left: 10px;
1877
+ padding-bottom: 0;
1878
+ }
1879
+ .mysticky-welcomebar-upgrade-main .myStickymenu-upgrade {
1880
+ float: left;
1881
+ }
1882
+ .mysticky-welcomebar-page-option {
1883
+ margin-bottom: 20px;
1884
+ position: relative;
1885
+ }
1886
+ .mysticky-welcomebar-page-option select {
1887
+ width: 230px;
1888
+ }
1889
+ .mysticky-welcomebar-page-option .myStickymenu-upgrade {
1890
+ display: none;
1891
+ position: absolute;
1892
+ top: 9px;
1893
+ right: 50%;
1894
+ -webkit-transform: translateX(-50%);
1895
+ -moz-transform: translateX(-50%);
1896
+ transform: translateX(-50%);
1897
+ text-align: center;
1898
+ margin-right: 0;
1899
+ }
1900
+ .mysticky-welcomebar-page-option .myStickymenu-upgrade a {
1901
+ padding-top: 5px;
1902
+ padding-bottom: 7px;
1903
+ padding-right: 20px;
1904
+ padding-left: 20px;
1905
+ font-size: 14px;
1906
+ box-shadow: 0 0 3px #999;
1907
+ }
1908
+ .mysticky-welcomebar-page-option:hover .myStickymenu-upgrade {
1909
+ display: block;
1910
+ }
1911
+ .mysticky-welcomebar-page-option .url-content {
1912
+ /*display: flex;*/
1913
+ overflow:hidden;
1914
+ align-items: center;
1915
+ }
1916
+ .mysticky-welcomebar-page-option .url-content > div {
1917
+ padding: 0 5px;
1918
+ float: right;
1919
+
1920
+ }
1921
+
1922
+ .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-values,
1923
+ .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-option{
1924
+ width: 20%;
1925
+ }
1926
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
1927
+ width: 28%;
1928
+ text-align: left;
1929
+ margin-top: 10px;
1930
+ }
1931
+
1932
+ /*.mysticky-welcomebar-page-option .url-content select {
1933
+ width: 120px;
1934
+ }
1935
+ */
1936
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
1937
+ height: 38px;
1938
+ padding: 0 15px;
1939
+ border-radius: 0;
1940
+ }
1941
+
1942
+ .mysticky-page-option .myStickymenu-upgrade {
1943
+ float: none;
1944
+ position: absolute;
1945
+ top: 0;
1946
+ right: 50%;
1947
+ /* left: 0; */
1948
+ text-align: center;
1949
+ /* background-color: rgba(0,0,0,0.6); */
1950
+ bottom: 0;
1951
+ border-radius: 10px;
1952
+ display: none;
1953
+ align-items: center;
1954
+ justify-content: center;
1955
+ -webkit-transform: translateX(-50%);
1956
+ -moz-transform: translateX(-50%);
1957
+ transform: translateX(-50%);
1958
+ }
1959
+ .mysticky-page-option:hover .myStickymenu-upgrade {
1960
+ display: flex;
1961
+ }
1962
+ .mysticky-page-option .myStickymenu-upgrade a {
1963
+ padding-top: 5px;
1964
+ padding-bottom: 7px;
1965
+ padding-right: 20px;
1966
+ padding-left: 20px;
1967
+ font-size: 14px;
1968
+ box-shadow: 0 0 3px #999;
1969
+ }
1970
+ .mysticky-page-option {
1971
+ background-color: #fff;
1972
+ padding: 10px;
1973
+ margin-bottom: 10px;
1974
+ border: 1px solid #DCE2E2;
1975
+ border-radius: 10px;
1976
+ position: relative;
1977
+ }
1978
+ .mysticky-page-option .url-content {
1979
+ display: flex;
1980
+ align-items: center;
1981
+ }
1982
+ .mysticky-page-option .url-content > div {
1983
+ padding: 0 5px;
1984
+ }
1985
+ .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1986
+ width: 260px;
1987
+ text-align: left;
1988
+ }
1989
+ .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1990
+ width: 300px;
1991
+ }
1992
+ .mysticky-page-option .url-content select {
1993
+ width: 250px;
1994
+ }
1995
+ .mysticky-page-option .url-content input[type="text"] {
1996
+ height: 38px;
1997
+ padding: 0 15px;
1998
+ border-radius: 0;
1999
+ }
2000
+ .mystickymenu-page-target-wrap {
2001
+ padding-bottom: 20px;
2002
+ }
2003
+
2004
+ .mysticky-welcomebar-remove-rule ,
2005
+ .mysticky-remove-rule {
2006
+ color: #fff;
2007
+ background-color: #666;
2008
+ text-decoration: none;
2009
+ display: inline-block;
2010
+ vertical-align: top;
2011
+ width: 38px;
2012
+ height: 38px;
2013
+ text-align: center;
2014
+ border-radius: 4px;
2015
+ font-size: 22px;
2016
+ line-height: 35px;
2017
+ }
2018
+ .mysticky-welcomebar-page-options {
2019
+ display: inline-block;
2020
+ vertical-align: top;
2021
+ }
2022
+ .mysticky-welcomebar-setting-left {
2023
+ /*position: absolute;
2024
+ right: 20px;*/
2025
+ /*left: 50px;*/
2026
+ /*width: 500px;*/
2027
+ }
2028
+ .mysticky-welcomebar-setting-right{
2029
+ position: fixed;
2030
+ top: 32px !important;
2031
+ left:40px;
2032
+ }
2033
+ .mysticky-welcomebar-setting-right{
2034
+ margin-top: 0px;
2035
+ position: absolute;
2036
+ }
2037
+
2038
+ .mysticky-welcomebar-header-title::after {
2039
+ content: "";
2040
+ display: block;
2041
+ clear: both;
2042
+ }
2043
+ .mysticky-welcomebar-preview-window {
2044
+ float: left;
2045
+ }
2046
+ .mysticky-welcomebar-header-title {
2047
+ padding-bottom: 20px;
2048
+ }
2049
+ .mysticky-welcomebar-preview-window ul {
2050
+ margin: 0;
2051
+ padding: 0;
2052
+ }
2053
+ .mysticky-welcomebar-preview-window ul li {
2054
+ color: #7761DF;
2055
+ display: inline-block;
2056
+ vertical-align: top;
2057
+ width: 36px;
2058
+ height: 36px;
2059
+ background-color: #DFDDF7;
2060
+ border-radius: 50%;
2061
+ text-align: center;
2062
+ line-height: 36px;
2063
+ margin-bottom: 0;
2064
+ margin-right: 10px;
2065
+ }
2066
+ .mysticky-welcomebar-preview-window ul li.preview-active {
2067
+ color: #fff;
2068
+ background-color: #7761DF;
2069
+ }
2070
+ .mysticky-welcomebar-preview-window ul li .dashicons {
2071
+ line-height: 36px;
2072
+ }
2073
+ .mysticky-welcomebar-preview-screen {
2074
+ background-color: #ffffff;
2075
+ border: 1px solid #DCE2E2;
2076
+ border-radius: 10px;
2077
+ margin: 0 auto;
2078
+ padding: 0;
2079
+ height: 400px;
2080
+ position: relative !important;
2081
+ overflow: hidden;
2082
+ max-width: 100%;
2083
+ -webkit-transition: all 0.5s ease 0s;
2084
+ -moz-transition: all 0.5s ease 0s;
2085
+ transition: all 0.5s ease 0s;
2086
+ }
2087
+ .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
2088
+ max-width: 320px;
2089
+ }
2090
+ /*----------------------------*/
2091
+ .mysticky-welcomebar-submit {
2092
+ float: left;
2093
+ padding-top: 50px;
2094
+ margin-left: -20px;
2095
+ }
2096
+ .mysticky-welcomebar-form-reset .mysticky-welcomebar-submit {
2097
+ margin-left: 0;
2098
+ padding-top: 30px;
2099
+ }
2100
+ .mysticky-welcomebar-submit input.button-secondary {
2101
+ background: #969696;
2102
+ border-color: #969696;
2103
+ color: #ffffff;
2104
+ text-transform: uppercase;
2105
+ border-radius: 31px;
2106
+ font-size: 26px;
2107
+ margin-left: 10px;
2108
+ padding-right: 23px;
2109
+ padding-left: 23px;
2110
+ height: 60px;
2111
+ width: 200px;
2112
+ border: 0;
2113
+ box-shadow: none;
2114
+ font-weight: 600;
2115
+ text-shadow: none;
2116
+ }
2117
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-buttons {
2118
+ padding-left: 0;
2119
+ }
2120
+ .ui-dialog-buttonset .green-btn.ui-button {
2121
+ background-color: #00c67c;
2122
+ border-color: #00c67c;
2123
+ color: #fff;
2124
+ }
2125
+ .mysticky-welcomebar-setting-content-left.mysticky-welcomebar-setting-redirect-wrap {
2126
+ display: block;
2127
+ }
2128
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-redirect-wrap .myStickymenu-upgrade {
2129
+ margin-top: 7px;
2130
+ }
2131
+ .updates-form-form {
2132
+ min-height: calc(100vh - 280px);
2133
+ }
2134
+ .popup-form-content {
2135
+ background: #ffffff;
2136
+ min-height: 100px;
2137
+ width: 450px;
2138
+ text-align: center;
2139
+ margin-top: 50px;
2140
+ border: solid 1px #c1c1c1;
2141
+ }
2142
+ .updates-content-buttons button {
2143
+ margin: 10px 3px !important;
2144
+ float: right;
2145
+ }
2146
+ .updates-content-buttons a span {
2147
+ -webkit-animation: fa-spin 0.75s infinite linear;
2148
+ animation: fa-spin 0.75s infinite linear;
2149
+ }
2150
+ .updates-content-buttons a:hover, .updates-content-buttons a:focus {
2151
+ color: #ffffff;
2152
+ background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
2153
+ }
2154
+ .updates-content-buttons a:focus {
2155
+ outline: 0;
2156
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50,100,150,.4);
2157
+ }
2158
+ .updates-content-buttons button.form-cancel-btn {
2159
+ float: left !important;
2160
+ }
2161
+ .form-submit-btn {
2162
+ background-color: #3085d6;
2163
+ }
2164
+ .updates-content-buttons a span {
2165
+ -webkit-animation: fa-spin 0.75s infinite linear;
2166
+ animation: fa-spin 0.75s infinite linear;
2167
+ }
2168
+ .add-update-mystickymenu-title {
2169
+ font-size: 20px;
2170
+ line-height: 30px;
2171
+ padding: 20px 20px 0;
2172
+ }
2173
+ .mystickymenu-form-input {
2174
+ padding: 10px 20px;
2175
+ }
2176
+ .mystickymenu-form-input input {
2177
+ width: 100%;
2178
+ transition: border-color .3s,box-shadow .3s;
2179
+ border: 1px solid #d9d9d9;
2180
+ border-radius: .1875em;
2181
+ font-size: 1.125em;
2182
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
2183
+ box-sizing: border-box;
2184
+ height: 2.625em;
2185
+ margin: 1em auto;
2186
+ }
2187
+ .updates-content-buttons {
2188
+ background: #c1c1c1;
2189
+ padding: 0 20px;
2190
+ }
2191
+ div#wp-mysticky_bar_text-wrap {
2192
+ /*width: 40%;*/
2193
+ }
2194
+
2195
+ .mystickymenu-popup {
2196
+ position: fixed;
2197
+ width: 100%;
2198
+ height: 100%;
2199
+ top: 0;
2200
+ right: 0;
2201
+ z-index: 100001;
2202
+ background: rgba(0, 0, 0, .75)
2203
+ }
2204
+
2205
+ .mystickymenu-popup-box {
2206
+ padding: 0;
2207
+ width: 600px;
2208
+ max-width: 100%;
2209
+ margin: auto;
2210
+ top: 50%;
2211
+ position: absolute;
2212
+ right: 0;
2213
+ left: 0;
2214
+ border-radius: 5px;
2215
+ transform: translate(0, -50%);
2216
+ -webkit-transform: translate(0, -50%);
2217
+ -moz-transform: translate(0, -50%);
2218
+ text-align: center;
2219
+ background: #fcfcfc
2220
+ }
2221
+
2222
+ .mystickymenu-popup-header {
2223
+ padding: 15px;
2224
+ font-size: 20px;
2225
+ border-bottom: solid 1px #e6e6e6
2226
+ }
2227
+
2228
+ .mystickymenu-popup-content {
2229
+ background: #fff;
2230
+ padding: 15px;
2231
+ font-size: 14px;
2232
+ line-height: 20px
2233
+ }
2234
+
2235
+ .mystickymenu-popup-content iframe {
2236
+ margin: 30px 0
2237
+ }
2238
+
2239
+ .mystickymenu-popup-footer {
2240
+ padding: 15px;
2241
+ border-top: solid 1px #e6e6e6
2242
+ }
2243
+
2244
+ .mystickymenu-popup-footer button {
2245
+ border: none;
2246
+ padding: 10px 20px;
2247
+ border-radius: 4px;
2248
+ background: #00c478;
2249
+ color: #fff;
2250
+ cursor: pointer;
2251
+ }
2252
+
2253
+ .close-mystickymenu-popup {
2254
+ margin: 0;
2255
+ padding: 0;
2256
+ background: 0 0;
2257
+ border: none;
2258
+ float: left;
2259
+ background: #000;
2260
+ border-radius: 50%;
2261
+ color: #fff;
2262
+ text-align: center;
2263
+ width: 24px;
2264
+ height: 24px;
2265
+ cursor: pointer;
2266
+ }
2267
+
2268
+ .close-mystickymenu-popup span {
2269
+ line-height: 24px
2270
+ }
2271
+ @-webkit-keyframes fa-spin {
2272
+ 0% {
2273
+ -webkit-transform: rotate(0deg);
2274
+ transform: rotate(0deg);
2275
+ }
2276
+ 100% {
2277
+ -webkit-transform: rotate(359deg);
2278
+ transform: rotate(359deg);
2279
+ }
2280
+ }
2281
+ @media only screen and (max-width: 1490px) {
2282
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2283
+ padding-right: 10px;
2284
+ }
2285
+ .mysticky-welcomebar-setting-left {
2286
+ /*width: 600px;*/
2287
+ }
2288
+ }
2289
+ @media only screen and (max-width: 1355px) {
2290
+ .mysticky-welcomebar-page-option .url-content select {
2291
+ width: 130px;
2292
+ }
2293
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
2294
+ width: 180px;
2295
+ }
2296
+ .mysticky-welcomebar-setting-action {
2297
+ display: block;
2298
+ }
2299
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2300
+ padding-right: 0;
2301
+ padding-top: 10px;
2302
+ }
2303
+ }
2304
+ @media only screen and (max-width: 1200px) {
2305
+ .mysticky-welcomebar-page-option .url-content select {
2306
+ width: 110px;
2307
+ }
2308
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
2309
+ width: 230px;
2310
+ }
2311
+ .mysticky-welcomebar-page-option {
2312
+ padding: 10px 3px;
2313
+ }
2314
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
2315
+ width: 150px;
2316
+ }
2317
+ }
2318
+ @media only screen and (max-width: 1100px) {
2319
+ .mysticky-welcomebar-setting-left {
2320
+ width: 340px;
2321
+ left: 40px;
2322
+ }
2323
+ }
2324
+ @media only screen and (max-width: 1024px) {
2325
+ .mysticky-welcomebar-setting-left {
2326
+ left: 40px;
2327
+ width: 310px;
2328
+ }
2329
+ .mysticky-welcomebar-setting-content > label {
2330
+ font-size: 16px;
2331
+ width: 175px;
2332
+ padding-left: 10px;
2333
+ }
2334
+ .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
2335
+ max-width: 250px;
2336
+ }
2337
+ }
2338
+
2339
+
2340
+
2341
+ .mysticky-custom-fields-tooltip{
2342
+ position: relative;
2343
+ margin-right: 20px;
2344
+ }
2345
+ .mysticky-custom-fields-tooltip:hover p {
2346
+ bottom: 100%;
2347
+ opacity: 1;
2348
+ visibility: visible;
2349
+ }
2350
+
2351
+ .mysticky-custom-fields-tooltip a.mysticky-tooltip {
2352
+ width: 20px;
2353
+ height: 20px;
2354
+ line-height: 20px;
2355
+ border-radius: 35px;
2356
+ padding: 0;
2357
+ text-align: center;
2358
+ font-size: 12px;
2359
+ display: inline-block;
2360
+ color: #ffffff;
2361
+ text-decoration: none;
2362
+ }
2363
+ .mysticky-custom-fields-tooltip a.mysticky-tooltip .dashicons{
2364
+ text-transform: uppercase;
2365
+ color: #1E1E1E;
2366
+ }
2367
+ .mysticky-custom-fields-tooltip p {
2368
+ margin: 0;
2369
+ margin-bottom: 0px;
2370
+ background-color: #000;
2371
+ width: 380px;
2372
+ padding: 10px 10px;
2373
+ border-radius: 8px;
2374
+ color: #fff;
2375
+ position: absolute;
2376
+ bottom: 200%;
2377
+ right: -20px;
2378
+ margin-bottom: 10px;
2379
+ -webkit-transition: all 0.5s ease 0s;
2380
+ -moz-transition: all 0.5s ease 0s;
2381
+ transition: all 0.5s ease 0s;
2382
+ opacity: 0;
2383
+ visibility: hidden;
2384
+ }
2385
+ .mysticky-custom-fields-tooltip p::before {
2386
+ content: "";
2387
+ border-top: 10px solid #000;
2388
+ border-right: 10px solid transparent;
2389
+ border-left: 10px solid transparent;
2390
+ width: 0;
2391
+ height: 0;
2392
+ position: absolute;
2393
+ bottom: -8px;
2394
+ right: 25px;
2395
+ }
2396
+
2397
+ .mysticky-welcomebar-poptin-content{
2398
+ font-size: 18px;
2399
+ display: flex;
2400
+ align-content: center;
2401
+ }
2402
+ .mysticky-welcomebar-poptin-content a{
2403
+ display: inline-block;
2404
+ padding: 0 5px;
2405
+ text-decoration: none;
2406
+ }
2407
+ .mysticky-welcome-poptin-logo{width: 100px;}
2408
+
2409
+
2410
+ /*--------------------------------New Add---------------------------*/
2411
+
2412
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn{
2413
+ padding-right: 25px !important;
2414
+ }
2415
+
2416
+ .mysticky-welcomebar-setting-right .mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed {
2417
+ position:relative; !important;
2418
+ }
2419
+ .wp-editor-area{height: 100px !important;}
2420
+
2421
+ .mysticky-welcomebar-setting-content-right select, .mysticky-welcomebar-setting-content-right input[type="text"], .mysticky-welcomebar-setting-content-right textarea {
2422
+ width: 400px;
2423
+ height: 42px;
2424
+ border-radius: 20px;
2425
+ color: #32373c;
2426
+ display: block;
2427
+ padding: 0 10px;
2428
+ box-shadow: none;
2429
+ border: 1px solid #DCE2E2;
2430
+ margin: 0;
2431
+ font-size: 14px;
2432
+ font-weight: 400;
2433
+ align-items: center;
2434
+ }
2435
+ .mysticky-welcomebar-expirydate-gmt{float: left;}
2436
+ .mysticky_welcome_expiry1{padding-right: 50px !important;}
2437
+
2438
+ /*.plan-price{
2439
+ left: 12px !important;
2440
+ }
2441
+ */
2442
+
2443
+
2444
+
2445
+ /*===============================================================================================*/
2446
+
2447
+ /*----------------------------------------------------- Welcome-bar php CSS -------------------------*/
2448
+
2449
+ /*===============================================================================================*/
2450
+
2451
+
2452
+ /*.mysticky-welcomebar-fixed .mysticky-w-close-btn {
2453
+ display: none;
2454
+ vertical-align: top;
2455
+ width: 30px;
2456
+ height: 30px;
2457
+ text-align: center;
2458
+ text-decoration: none;
2459
+ line-height: 20px;
2460
+ border-radius: 5px;
2461
+ color: #000;
2462
+ position: absolute;
2463
+ font-family: Lato;
2464
+ top: 5px;
2465
+ left: 5px !important;
2466
+ text-shadow: 0 0 0px #fff;
2467
+ -webkit-transition: all 0.5s ease 0s;
2468
+ -moz-transition: all 0.5s ease 0s;
2469
+ transition: all 0.5s ease 0s;
2470
+ -webkit-transform-origin: 50% 50%;
2471
+ -moz-transform-origin: 50% 50%;
2472
+ transform-origin: 50% 50%;
2473
+ }
2474
+
2475
+
2476
+ .mysticky-welcomebar-fixed .mysticky-w-close-btn:hover {
2477
+ opacity: 1;
2478
+ -webkit-transform: rotate(180deg);
2479
+ -moz-transform: rotate(180deg);
2480
+ transform: rotate(180deg);
2481
+ }*/
2482
+
2483
+
2484
+
2485
+
2486
+
2487
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2488
+ display: none;
2489
+ vertical-align: top;
2490
+ width: 20px;
2491
+ height: 20px;
2492
+ text-align: center;
2493
+ text-decoration: none;
2494
+ line-height: 20px;
2495
+ border-radius: 5px;
2496
+ color: #000;
2497
+ position: absolute;
2498
+ font-family: Lato;
2499
+ top: 5px;
2500
+ left: 5px !important;
2501
+ text-shadow: 0 0 0px #fff;
2502
+ -webkit-transition: all 0.5s ease 0s;
2503
+ -moz-transition: all 0.5s ease 0s;
2504
+ transition: all 0.5s ease 0s;
2505
+ -webkit-transform-origin: 50% 50%;
2506
+ -moz-transform-origin: 50% 50%;
2507
+ transform-origin: 50% 50%;
2508
+ }
2509
+
2510
+
2511
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
2512
+ opacity: 1;
2513
+ -webkit-transform: rotate(180deg);
2514
+ -moz-transform: rotate(180deg);
2515
+ transform: rotate(180deg);
2516
+ }
2517
+
2518
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close span.dashicons {
2519
+ font-size: 27px;
2520
+ }
2521
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2522
+ display: inline-block;
2523
+ }
2524
+
2525
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
2526
+ /*padding-left: 30px;*/
2527
+ margin: 0 15px;
2528
+ display: none;
2529
+ }
2530
+
2531
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
2532
+ opacity: 1;
2533
+ -webkit-transform: rotate(180deg);
2534
+ -moz-transform: rotate(180deg);
2535
+ transform: rotate(180deg);
2536
+ }
2537
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2538
+ display: inline-block;
2539
+ }
2540
+
2541
+
2542
+ @media only screen and (max-width: 1024px) {
2543
+ .mysticky-welcomebar-fixed {
2544
+ padding: 0 10px 0 10px;
2545
+ }
2546
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2547
+ width: 20px;
2548
+ height: 20px;
2549
+ line-height: 20px;
2550
+ right: 0px;
2551
+ }
2552
+ }
2553
+
2554
+ @media only screen and (max-width: 767px) {
2555
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2556
+ display: none;
2557
+ }
2558
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-mobile .mysticky-welcomebar-close {
2559
+ display: inline-block;
2560
+ }
2561
+
2562
+ }
2563
+
2564
+ @media only screen and (max-width: 480px) {
2565
+
2566
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2567
+ right: 7px;
2568
+ }
2569
+ }
2570
+
2571
+ /* tooltip css */
2572
+ .tooltip {
2573
+ position: relative;
2574
+ display: inline-block;
2575
+ border-bottom: 1px dotted black;
2576
+ }
2577
+
2578
+ .tooltip .tooltiptext {
2579
+ visibility: hidden;
2580
+ width: 80px;
2581
+ background-color: black;
2582
+ color: #fff;
2583
+ text-align: center;
2584
+ border-radius: 6px;
2585
+ padding: 5px 0;
2586
+ position: absolute;
2587
+ z-index: 1;
2588
+ bottom: 150%;
2589
+ left: 50%;
2590
+ margin-left: -45px;
2591
+ }
2592
+
2593
+ .tooltip .tooltiptext::after {
2594
+ content: "";
2595
+ position: absolute;
2596
+ top: 100%;
2597
+ left: 50%;
2598
+ margin-left: -5px;
2599
+ border-width: 5px;
2600
+ border-style: solid;
2601
+ border-color: black transparent transparent transparent;
2602
+ }
2603
+
2604
+ .tooltip:hover .tooltiptext {
2605
+ visibility: visible;
2606
+ }
2607
+
2608
+
2609
+ /*---------------------------------------------------------------------------// 22-12-21 //-----------------------*/
2610
+
2611
+ .mystickymenu-wrap{text-align:center;}
2612
+ /*.mystickymenu-wrap .mystickymenu-welcome-img img{width:40%; height:auto;}*/
2613
+
2614
+ .mystickymenu-newwelcomebar-contents a,
2615
+ .mystickymenu-widgets-btn-wrap a{
2616
+ display:inline-flex;
2617
+ color:#fff !important;
2618
+ font-size:16px;
2619
+ font-weight:400;
2620
+ font-family: 'Lato', sans-serif;
2621
+ padding:10px 20px;
2622
+ text-decoration:none;
2623
+ background:#6558F5;
2624
+ border-radius:5px;
2625
+ align-items: center;
2626
+ box-shadow: 0px 12px 12px -6px rgba(101, 107, 232, 0.25);
2627
+ }
2628
+
2629
+ .mystickymenu-tab-boxes{display:flex; justify-content: center; margin-top:50px;}
2630
+ .mystickymenu-tab-box{
2631
+ width:25%;
2632
+ margin:10px;
2633
+ display:flex;
2634
+ border:1px solid #C3CFD9;
2635
+ flex-direction: column;
2636
+ justify-content: space-between;
2637
+ padding-bottom:15px;
2638
+ background-color:#fff;
2639
+ }
2640
+ .mystickymenu-tab-box .stickymenu-settings{margin:0 35px;}
2641
+ .mystickymenu-tab-box .stickymenu-box-header{ color:#4B5C6B; font-size:15px; font-weight:600;
2642
+ padding:8px 0; background:#DFE6ED; text-align:center; line-height:20px;}
2643
+ .stickymenu-box-container p{font-size:14px;}
2644
+
2645
+ .mystickymenu-action-popup .mystickymenu-action-popup-footer button.btn-enable,
2646
+ .mystickymenu-tab-box .stickymenu-box-button a{
2647
+ display: inline-flex;
2648
+ color: rgba(21, 25, 32, 0.5);
2649
+ font-size: 16px;
2650
+ font-weight: 400;
2651
+ font-family: 'Lato', sans-serif;
2652
+ padding: 12px 61px;
2653
+ text-decoration: none;
2654
+ border: 1px solid rgba(86, 103, 137, 0.26);
2655
+ border-radius: 8px;
2656
+ align-items: center;
2657
+ background: none;
2658
+ line-height: 24px;
2659
+ }
2660
+ .mystickymenu-tab-box ul.documents-wrap-list{ text-align:right; list-style-type:disc; margin:15px 35px 15px 15px;}
2661
+ .mystickymenu-tab-box ul.documents-wrap-list li{color:#6558F5; font-size:25px;}
2662
+ .mystickymenu-tab-box ul.documents-wrap-list li a{color:#6558F5; font-size:14px;}
2663
+
2664
+ /**/
2665
+ .mystickymenu-widgets table, td, th{ border:1px solid #EBEBEB;}
2666
+ .mystickymenu-wrap table.mystickymenu-widgets-lists{border-collapse:collapse; width:100%;
2667
+ margin:24px 0 0 0; background-color:#fff;}/*---------------------------------------------------------------------20-1-22-----*/
2668
+
2669
+ .mystickymenu-wrap table.mystickymenu-widgets-lists tr th{padding:8px !important; background:#F6F5FE; vertical-align: middle !important;}
2670
+ .mystickymenu-wrap table.mystickymenu-widgets-lists tr td{padding:6px !important; vertical-align: middle !important;}
2671
+ .mystickymenu-wrap table.mystickymenu-widgets-lists .tooltip{border:none;}
2672
+
2673
+ /**/
2674
+ .mystickymenupopup-overlay{
2675
+ display:none;
2676
+ position: fixed;
2677
+ top: 0;
2678
+ left: 0;
2679
+ width: 100%;
2680
+ height: 100%;
2681
+ background-color: rgba(0,0,0,0.3);
2682
+ z-index: 9;
2683
+ }
2684
+
2685
+ .mystickymenu-action-popup{
2686
+ position: fixed;
2687
+ top: 80px;
2688
+ left: 50%;
2689
+ -webkit-transform: translateX(-50%);
2690
+ -moz-transform: translateX(-50%);
2691
+ transform: translateX(-50%);
2692
+ z-index: 10;
2693
+ width: 500px;
2694
+ background-color: #fff;
2695
+ padding: 0 0 28px 0;
2696
+ box-shadow: 0px 10px 15px rgb(0 0 0 / 10%), 0px 4px 6px rgb(0 0 0 / 5%);
2697
+ border-radius:10px;
2698
+
2699
+ }
2700
+ .mystickymenu-action-popup-header h3{margin:0; position:relative;}
2701
+ /*.mystickymenu-action-popup-header h3:after{
2702
+ content:"";
2703
+ display:block;
2704
+ height:3px;
2705
+ width:4.5rem;
2706
+ text-align:center;
2707
+ margin: 10px auto;
2708
+ background:#4797DE;
2709
+ }*/
2710
+ .mystickymenu-action-popup-header{
2711
+ padding: 25px 25px 40px 25px;
2712
+ border-bottom: 1px solid #EAEFF2;
2713
+ }
2714
+
2715
+ .mystickymenu-action-popup-header h3{
2716
+ margin: 0 12px !important;
2717
+ position:relative;
2718
+ float:left;
2719
+
2720
+ }
2721
+
2722
+ .mystickymenu-action-popup-header span{
2723
+ float:right;
2724
+ }
2725
+ .mystickymenu-action-popup-footer button{cursor: pointer !important;}
2726
+ .mystickymenu-action-popup .mystickymenu-action-popup-footer button.btn-disable-cancel{
2727
+ display: inline-flex;
2728
+ color: #fff;
2729
+ background: #F33;
2730
+ font-size: 16px;
2731
+ font-weight: 400;
2732
+ font-family: 'Lato', sans-serif;
2733
+ padding: 12px 82px;
2734
+ text-decoration: none;
2735
+ border-radius: 8px;
2736
+ align-items: center;
2737
+ margin-right: 15px;
2738
+ border: none;
2739
+ line-height: 24px;
2740
+
2741
+ }
2742
+ .mystickymenu-action-popup .mystickymenu-action-popup-body{margin:10px 30px;}
2743
+
2744
+ /*#stickymenu_status_popupbox .mystickymenu-action-popup-body{margin:30px 56px;}*/
2745
+
2746
+ .mystickymenu-action-popup .mystickymenu-action-popup-body p{
2747
+ text-align: left;
2748
+ float: left;
2749
+ margin-left: 0;
2750
+ padding: 0 10px;
2751
+ font-size: 16px;
2752
+ font-weight: 400;
2753
+ font-style: normal;
2754
+ color: #181749;
2755
+ }
2756
+ /**/
2757
+ .first-widget-popup{
2758
+ text-align:center;
2759
+ position: fixed;
2760
+ top: 50px;
2761
+ left: 50%;
2762
+ -webkit-transform: translateX(-50%);
2763
+ -moz-transform: translateX(-50%);
2764
+ transform: translateX(-50%);
2765
+ z-index: 10;
2766
+ width: 500px;
2767
+ background-color: #fff;
2768
+ padding: 30px;
2769
+ box-shadow: 0px 10px 15px rgb(0 0 0 / 10%), 0px 4px 6px rgb(0 0 0 / 5%);
2770
+ border-radius:10px;
2771
+
2772
+ }
2773
+ .first-widget-popup h4,p,span,button,.first-widget-popup a{
2774
+ font-family:'Lato', sans-serif;
2775
+ }
2776
+
2777
+ .mystickymenu_container_popupbox{
2778
+ margin-top:10px;
2779
+ }
2780
+ .first-widget-popup h4{
2781
+ font-weight: 600;
2782
+ font-size: 24px;
2783
+ line-height: 34px;
2784
+ color: #181749;
2785
+ margin:16px 0 0 0;
2786
+ }
2787
+ .first-widget-popup p{
2788
+ font-size: 16px;
2789
+ margin-top: 24px;
2790
+ padding: 0 32px;
2791
+ font-weight: 400;
2792
+ line-height: 24px;
2793
+ font-style: normal;
2794
+ }
2795
+ .first-widget-popup a.btn-back-dashboard{
2796
+ display:inline-flex;
2797
+ color:#fff;
2798
+ font-size:16px;
2799
+ font-weight:400;
2800
+ font-family: 'Lato', sans-serif;
2801
+ padding:10px 20px;
2802
+ text-decoration:none;
2803
+ background:#6558F5;
2804
+ border-radius:8px;
2805
+ align-items: center;
2806
+ margin: 36px 0 10px 0;
2807
+ }
2808
+ .close-chaty-maxvisitor-popup{
2809
+ position:absolute;
2810
+ top:17px;
2811
+ left:17px;
2812
+ }
2813
+
2814
+
2815
+ .mysticky-stickymenu-header-title h3{
2816
+ color:#1d2327;
2817
+ display: inline-block;
2818
+ }
2819
+ .stickymenu-switch{
2820
+ display: inline-block;
2821
+ width: 55px;
2822
+ height: 30px;
2823
+ position: relative;
2824
+ margin: 0 0 8px 10px;
2825
+ }
2826
+
2827
+ .stickymenu-switch .slider:before{
2828
+ background-color: #ffffff;
2829
+ }
2830
+
2831
+ .stickymenu-switch input:checked + .slider {
2832
+ background-color: #7761DF;
2833
+ border: 2px solid #7761DF;
2834
+ }
2835
+
2836
+ .wrap.mystickymenu-wrap .mystickymenu-dashboard{
2837
+ /*background: #fff !important;
2838
+ padding: 15px 0;
2839
+ border-radius: 10px;*/
2840
+ }
2841
+ a.copyicon{text-decoration:none; color:#000;}
2842
+ /*.copyicon .dashicons{display:block;}*/
2843
+
2844
+ /*----------------------------------------------------------NEW 3-1-22--------------------------------------*/
2845
+ .mystickymenu-dashboard{text-align:right;}
2846
+ .mystickymenu-dashboard .welcomebars-list-table{
2847
+ background:#fff;
2848
+ /*border-radius:15px;*/
2849
+ padding:20px 40px;
2850
+ text-align:center;
2851
+ }
2852
+ .mystickymenu-dashboard h3{margin:5px 0;}
2853
+
2854
+ .mystickymenu-dashboard .header-section{
2855
+ display: flex;
2856
+ justify-content: space-between;
2857
+ padding: 0 0 20px 0;
2858
+ border-bottom: 1px solid #EBEBEB;
2859
+ width: 100%;
2860
+ margin: 0 0 24px 0;
2861
+ }/*--------------------------------------------------------------------------------------------------30-2-2022----*/
2862
+
2863
+ .mystickymenu-dashboard .heading-title{display:inline-flex;}
2864
+ .mystickymenu-dashboard .mystickymenu-widgets-btn-wrap{display:inline-flex;}
2865
+
2866
+ .mystickymenu-dashboard .mystickymenu-tab-boxs-wrap{display:block; justify-content:space-between; margin:20px 0;}/*00000000000000000000*/
2867
+ .contactus-tab-option,.mystickymenu-tab-documentation{width:49%;} /*0000000000000000000000000000000000000000000000000000000000*/
2868
+ .mystickymenu-new302box{display:flex; justify-content:space-between; flex-wrap:wrap;} /*000000000000000000000000000000000000000000000*/
2869
+
2870
+ .stickymenu-tab-option{margin-bottom:15px;}
2871
+ .mystickymenu-dashboard .msm-bgbox{display:block; background:#f7f7f7; padding:0;
2872
+ box-sizing:border-box;} /*-------------------------------------------------------*/
2873
+
2874
+ /*---------------------------------------------------------------------------------------------------------6-1-22-----*/
2875
+
2876
+ .stickymenu-box-container ul.documents-wrap-list{ text-align:right; list-style-type:disc; margin:15px 30px 15px 15px;}
2877
+ .stickymenu-box-container ul.documents-wrap-list li{color:#6558F5; font-size:25px; margin-bottom:8px;} /*------6-1-22--*/
2878
+ .stickymenu-box-container ul.documents-wrap-list li a{color:#6558F5; font-family: 'Lato', sans-serif; font-size:16px;}
2879
+
2880
+ .msm-bgbox .stickymenu-box-button{display: block; padding:0 48px 15px 15px;}
2881
+
2882
+ .msm-bgbox .stickymenu-box-button a{
2883
+ display:inline-flex;
2884
+ color:#6558F5;
2885
+ font-size:16px;
2886
+ font-weight:500;
2887
+ font-family: 'Lato', sans-serif;
2888
+ padding:0 15px;
2889
+ text-decoration:none;
2890
+ border:1px solid #6558F5 !important;
2891
+ border-radius:5px;
2892
+ align-items: center;
2893
+ background:none;
2894
+ line-height:34px;
2895
+ }
2896
+ .contactus-title, .premio-footer-option,
2897
+ .stickymenu-settings{display:flex; justify-content:space-between; align-items: center;}
2898
+ .premio-footer-option{margin-top:6px;}
2899
+ .premio-footer-option h3{color:#6558F5;}
2900
+ .premio-footer-option h4{margin:5px 0;}
2901
+ .premio-footer-option .premio-content-list{width:62%; margin:0;}
2902
+
2903
+ a.copyicon1{color:#6558F5; line-height:23px; text-decoration:underline;}
2904
+ a.copyicon1 span{text-decoration:none;}
2905
+ .dashicons-facebook-alt{color:#3B5998 !important;}
2906
+ .dashicons-twitter{color:#00ACEE !important;}
2907
+ /*--------------*/
2908
+
2909
+ .new-welcomebar-section-wrap{background:#fff; display:flex; padding:25px; justify-content: space-between;}
2910
+
2911
+ .mystickymenu-welcome-img, .mystickymenu-newwelcomebar-contents,
2912
+ .new-welcomebar-section-wrap .mystickymenu-features{width:auto;}
2913
+
2914
+ .mystickymenu-wrap .mystickymenu-welcome-img img{width:80%; height:auto; text-align:center;}
2915
+ .mystickymenu-newwelcomebar-contents{margin:0 10px;}
2916
+ .mystickymenu-features{text-align:center;}
2917
+
2918
+
2919
+ .mystickymenu-features .mystickymenu-features-list{ text-align:left; list-style-type:disc;
2920
+ background: #F6F5FE;
2921
+ padding: 30px 15px 15px 15px;
2922
+ border-radius: 15px;
2923
+ margin-top: -20px;
2924
+ }
2925
+ .mystickymenu-features-list ul.documents-wrap-list{margin:15px 30px 15px 15px;}
2926
+
2927
+ .mystickymenu-features .mystickymenu-features-list li{color:#6558F5; font-family: 'Lato', sans-serif; font-size:16px;}/*----6-1-22-------*/
2928
+
2929
+ .documents-wrap-list{ text-align:right; list-style-type:disc;}
2930
+ .documents-wrap-list li{color:#6558F5; font-size:14px; margin-bottom:10px;}
2931
+
2932
+ .mystickymenu-feature-title{
2933
+ display:inline-flex;
2934
+ color:#fff;
2935
+ font-size:15px;
2936
+ font-weight:500;
2937
+ padding:10px 20px;
2938
+ text-decoration:none;
2939
+ background:#6558F5;
2940
+ border-radius:5px;
2941
+ align-items: center;
2942
+ }
2943
+ .mystickymenu-feature-title img{width:22px; margin-left:7px;}
2944
+
2945
+ .welcomebars-list-table .mysticky-welcomebar-switch .slider{
2946
+ background-color: #FF424D;
2947
+ border: 2px solid #FF424D;
2948
+ }
2949
+
2950
+ .mystickymenu-action-popup-footer{
2951
+ text-align:center;
2952
+ display:inline-block;
2953
+ margin-top:15px;
2954
+ }
2955
+ #stickymenu_status_popupbox .mystickymenu-action-popup-footer{
2956
+ display: block;
2957
+ }
2958
+
2959
+ .welcombar-enabled-status .mystickymenu-action-popup-footer{
2960
+ display: block;
2961
+ }
2962
+
2963
+ /*--------------------------------------------------------// 6-1-22 //------------------*/
2964
+ .mystickymenu-newwelcomebar-contents h2{font-family: 'Lato', sans-serif; font-size:28px; font-weight:bold;}
2965
+
2966
+ .premio-content-list span, .premio-footer-option label, .settings-content p, .contactus-contents-buttons span.folous,
2967
+ .stickymenu-box-button,
2968
+ .mystickymenu-newwelcomebar-contents p{font-family: 'Lato', sans-serif; font-size:16px; font-weight:400;color: #181749;font-style: normal;font-weight: 400;line-height: 24px;}
2969
+
2970
+ .premio-content-list h4{font-family: 'Lato', sans-serif; font-size:16px; font-weight:bold;}
2971
+
2972
+ .contactus-title h3,
2973
+ .stickymenubox-title-section h3{font-family: 'Lato', sans-serif; font-size:20px; font-weight:bold;}
2974
+
2975
+ /**/
2976
+ .stickymenu-tab-option{padding:0 0 10px 0 !important;}
2977
+ /*.stickymenubox-title-section{border-bottom:1px solid #EBEBEB; padding:24px 20px;}*/
2978
+
2979
+ .stickymenubox-title-section h3,
2980
+ .mystickymenu-tab-documentation h3, .contactus-title
2981
+ {border-bottom:1px solid #EBEBEB; padding:24px 40px; margin:0;}/*------------------------------------------------20-1-22---*/
2982
+ .contactus-title h3{margin:0;}
2983
+
2984
+ .stickymenubox-title-section h3{margin:0 !important;}
2985
+
2986
+ .premio-footer-option, .stickymenu-box-container, .stickymenu-box-button,
2987
+ .stickymenu-settings{padding:15px 40px 15px 20px; } /*--------------------------------------------------------------------20-1-22---*/
2988
+ .mystickymenu-dashboard .heading-title h3{font-family: 'Lato', sans-serif; font-size: 28px !important;
2989
+ font-weight:600 !important; color:#1d2327 !important;}/*------------------------------------------------20-1-22---*/
2990
+
2991
+ .mystickymenu-newwelcomebar-contents p{margin:0;} /*------------------------------------------------20-1-22--new-*/
2992
+ a.add_new_welcombar{margin:auto 0;} /*------------------------------------------------20-1-22--new-*/
2993
+ .new-welcomebar-section-wrap .mystickymenu-newwelcomebar-contents a{margin-top:30px;}
2994
+
2995
+ .premio-footer-option h3 img{width:70px; height:auto; margin-left:10px;}
2996
+
2997
+ .add_new_welcombar:hover{
2998
+ opacity: 0.9;
2999
+ }
3000
+
3001
+ .tooltip img{
3002
+ width:35px;
3003
+ }
3004
+ .mystickymenu-features{
3005
+ max-width: 400px;
3006
+ }
3007
+
3008
+ .mystickymenu-newwelcomebar-contents{
3009
+ max-width: 432px;
3010
+ }
3011
+
3012
+ #stickymenu_status_ok{
3013
+ background-color:#28C67C;
3014
+ }
3015
+
3016
+ .mysticky-welcomebar-content{
3017
+ width:72%;
3018
+ text-align:center;
3019
+ }
3020
+ .mysticky-welcomebar-content p{
3021
+ word-wrap: break-word;
3022
+ width: 100%;
3023
+ }
3024
+
3025
+ .mystickymenu-widgets-lists tr td{
3026
+ font-size:16px;
3027
+ }
3028
+
3029
+ .mystickymenu-widgets-lists tr th{
3030
+ font-size:16px;
3031
+ }
3032
+
3033
+ #welcomebar-save-confirm{
3034
+ width: 677px;
3035
+ padding: 0 10px 28px 10px;
3036
+ }
3037
+
3038
+ #welcomebar-save-confirm .mystickymenu-action-popup-footer{
3039
+ display: block;
3040
+ }
3041
+
3042
+ /*table.mystickymenu-widgets-lists,*/
3043
+
3044
+ table.mystickymenu-widgets-lists td{
3045
+ border:0.5px solid #F1F1F1;
3046
+ }
3047
+
3048
+ /*border radiuse in dashboard table */
3049
+ table.mystickymenu-widgets-lists th{
3050
+ border-top: 0 !important;
3051
+ border-bottom: 1px solid #F1F1F1 !important;
3052
+ border-left: 1px solid #F1F1F1 !important;
3053
+ border-right: 1px solid #F1F1F1 !important;
3054
+ }
3055
+
3056
+ .mystickymenu-dashboard table tr:first-child th:first-child {
3057
+ border-top-left-radius: 10px;
3058
+ border-top: 0 !important;
3059
+ border-left: 0 !important;
3060
+ border-bottom: 0.2px #F1F1F1 !important;
3061
+ border-right: 0.2px #F1F1F1 !important;
3062
+ }
3063
+
3064
+ .mystickymenu-dashboard table tr:first-child th:last-child {
3065
+ border-top-right-radius: 10px;
3066
+ border-top: 0 !important;
3067
+ border-left: 0.2px #F1F1F1 !important;
3068
+ border-bottom: 0.2px #F1F1F1 !important;
3069
+ border-right: 0 !important;
3070
+ }
3071
+
3072
+
3073
+ /*----------------------------------------------------------------------# 21-1-22 #-----------*/
3074
+
3075
+ @media only screen and (max-width: 1366px) {
3076
+ .premio-content-list h4 {font-size: 15px;}
3077
+ .premio-footer-option .premio-content-list {width: 60%;}
3078
+
3079
+ }
3080
+
3081
+ @media only screen and (max-width: 820px) {
3082
+ .mystickymenu-tab-boxs-wrap{flex-wrap: wrap;}
3083
+ .mystickymenu-tab-stickymenu, .mystickymenu-tab-documentation, .contactus-tab-option{display:block; width:100%;}
3084
+ .mystickymenu-tab-documentation{margin-top:15px;}
3085
+
3086
+ .new-welcomebar-section-wrap {justify-content: center; flex-wrap: wrap;}
3087
+ .mystickymenu-welcome-img{text-align:center;}
3088
+ .mystickymenu-newwelcomebar-contents{text-align:center; margin:15px 0;}
3089
+
3090
+ .price-table-middle ul li a{width:65%;}
3091
+ .right_tooltip:after {left: unset !important;}
3092
+
3093
+ .cus-tooltip .tooltip__content img{width:396px; margin-top:5px;}
3094
+
3095
+ }
3096
+
3097
+ @media only screen and (max-width: 576px) {
3098
+ .stickymenu-settings{flex-wrap:wrap; justify-content: center;}
3099
+ .premio-footer-option{flex-wrap:wrap; justify-content: center;}
3100
+ .msm-bgbox .stickymenu-box-button {text-align: center;}
3101
+ .premio-footer-option .premio-content-list {width: auto; margin:15px 0;}
3102
+ .premio-footer-option, .stickymenu-box-container, .stickymenu-box-button, .stickymenu-settings
3103
+ {padding: 15px 20px;}
3104
+
3105
+ /*.price-table-middle ul li a{width:65%;}*/
3106
+ .right_tooltip:after {left: unset !important;}
3107
+ .cus-tooltip .tooltip__content{width:120% !important;}
3108
+ .cus-tooltip .tooltip__content img{width:100% !important; margin-top:5px;}
3109
+ }
3110
+
3111
+
3112
+
3113
+ /*-------------------# 27-1-22 #--------*/
3114
+ @media only screen and (min-width: 821px) {
3115
+ .right_tooltip{right: unset !important; left:0 !important;}
3116
+ .right_tooltip:after{right: 130px !important;}
3117
+
3118
+ /*.cus-tooltip .tooltip__content{width:100% !important;}*/
3119
+ .cus-tooltip .tooltip__content img{width:396px; margin-top:5px;}
3120
+
3121
+ }
3122
+
3123
+ /*--------------------------------------------------------------*/
3124
+
3125
+
3126
+
3127
+
3128
+ .new_widget_row{
3129
+ max-width: unset;
3130
+ }
3131
+
3132
+
3133
+
3134
+ /* ToolTip Side */
3135
+ .html-tooltip {
3136
+ position: relative;
3137
+ display: inline-block;
3138
+
3139
+ }
3140
+
3141
+ .dashicons,
3142
+ .dashicons-before:before {
3143
+ font-family: dashicons;
3144
+ display: inline-block;
3145
+ line-height: 1;
3146
+ font-weight: 400;
3147
+ font-style: normal;
3148
+ color: #9e9e9e;
3149
+ speak: none;
3150
+ text-decoration: inherit;
3151
+ text-transform: none;
3152
+ text-rendering: auto;
3153
+ -webkit-font-smoothing: antialiased;
3154
+ -moz-osx-font-smoothing: grayscale;
3155
+ width: 20px;
3156
+ height: 20px;
3157
+ font-size: 20px;
3158
+ vertical-align: top;
3159
+ text-align: center;
3160
+ transition: color 0.1s ease-in;
3161
+ }
3162
+
3163
+ .dashicons-editor-help:before {
3164
+ content: "";
3165
+ }
3166
+
3167
+ .html-tooltip.side .tooltip-text {
3168
+ bottom: 125%;
3169
+ right: 100%;
3170
+ margin-right: 0;
3171
+ top: 5px;
3172
+ transform: translateY(-50%);
3173
+ -webkit-transform: translateY(-50%);
3174
+ }
3175
+
3176
+ .html-tooltip .tooltip-text {
3177
+ visibility: hidden;
3178
+ width: 417px;
3179
+ background-color: #333;
3180
+ color: #fff;
3181
+ text-align: left;
3182
+ border-radius: 6px;
3183
+ padding: 10px;
3184
+ position: absolute;
3185
+ z-index: 1201;
3186
+ bottom: 125%;
3187
+ left: 50%;
3188
+ margin-right: -150px;
3189
+ opacity: 0;
3190
+ transition: opacity 0.3s;
3191
+ font-size: 12px;
3192
+ line-height: 18px;
3193
+ top: 100%;
3194
+ height: 125px;
3195
+ }
3196
+
3197
+ .html-tooltip:hover .tooltip-text {
3198
+ visibility: visible;
3199
+ opacity: 1;
3200
+ z-index: 9999999;
3201
+ }
3202
+
3203
+ .html-tooltip.side .tooltip-text:after {
3204
+ top: 50%;
3205
+ left: -5px;
3206
+ transform: rotate(180deg);
3207
+ -webkit-transform: rotate(90deg);
3208
+ }
3209
+
3210
+ .html-tooltip .tooltip-text:after {
3211
+ content: "";
3212
+ position: absolute;
3213
+ top: -10px;
3214
+ left: 50%;
3215
+ margin-right: -5px;
3216
+ border-width: 5px;
3217
+ border-style: solid;
3218
+ border-color: #333 transparent transparent transparent;
3219
+ transform: rotate(180deg);
3220
+ -webkit-transform: rotate(180deg);
3221
+ }
3222
+
3223
+ .html-tooltip .tooltip-text img {
3224
+ width: 100%;
3225
+ height: auto;
3226
+ display: block;
3227
+ margin: 10px 0 0 0;
3228
+ }
3229
+
3230
+ .price-table-middle ul li .html-tooltip.side{
3231
+ position: absolute;
3232
+ margin: 14px 0;
3233
+ }
3234
+
3235
+ .html-tooltip.side .price-plan-box{
3236
+ margin-right: -147px !important;
3237
+ top: -62px !important;
3238
+ height: 115px;
3239
+ text-align: left;
3240
+ }
3241
+
3242
+ .span.tooltip-text.top.price-plan-box::before {
3243
+ border-width: 5px;
3244
+ border-style: solid;
3245
+ border-color: #1849ab transparent transparent transparent;
3246
+ content: "";
3247
+ left: 25px;
3248
+ margin-right: -5px;
3249
+ position: absolute;
3250
+ top: 100%;
3251
+ }
3252
+
3253
+
3254
+ .html-tooltip-box{
3255
+ padding: 0 0 48px 0 !important;
3256
+ }
3257
+
3258
+
3259
+ /***/
3260
+
3261
+ .cus-tooltip span.tooltip-text::after {
3262
+ border-width: 5px;
3263
+ border-style: solid;
3264
+ border-color: #1849ab transparent transparent transparent;
3265
+ content: "";
3266
+ left: 25px;
3267
+ margin-left: -5px;
3268
+ position: absolute;
3269
+ top: 100%;
3270
+ }
3271
+
3272
+ .mystickymenu-widgets-lists thead tr{
3273
+ height: 63px;
3274
+ }
3275
+
3276
+ .mystickymenu-widgets-lists tr{
3277
+ height: 88px;
3278
+ }
3279
+
3280
+ .mysticky-welcomebar-backword-page a{
3281
+ text-decoration: none;
3282
+ }
3283
+
3284
+ .mysticky-welcomebar-backword-page{
3285
+ padding: 0;
3286
+ margin: 0;
3287
+ /*float: right;*/
3288
+ text-align:end;
3289
+ }
3290
+
3291
+ .back-dashboard:before{
3292
+ content: "\f345";
3293
+ }
3294
+
3295
+ .mysticky-stickymenu-backword-page{text-align:end; padding:0 15px; float: left; margin-top: 28px;}
3296
+ .mysticky-stickymenu-backword-page a{text-decoration:none;}
3297
+
3298
+
3299
+ .save_view_dashboard{
3300
+ width: auto !important;
3301
+ background: #6558F5 !important;
3302
+ border: 1px solid #6558F5 !important;
3303
+ margin-left:10px !important;
3304
+ }
3305
+
3306
+ .save_view_dashboard:hover{
3307
+ opacity: 0.8 !important;
3308
+ }
3309
+
3310
+ #mysticky_welcomebar_fontsize{
3311
+ color:#32373c !important;
3312
+ }
css/mystickymenu-admin.css CHANGED
@@ -1,2310 +1,3320 @@
1
- @font-face {
2
- font-family: 'poppinsregular';
3
- src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
4
- url('../fonts/poppins-regular-webfont.woff') format('woff');
5
- font-weight: normal;
6
- font-style: normal;
7
-
8
- }
9
-
10
- @font-face {
11
- font-family: 'poppinsbold';
12
- src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'),
13
- url('../fonts/poppins-bold-webfont.woff') format('woff');
14
- font-weight: normal;
15
- font-style: normal;
16
-
17
- }
18
-
19
- @font-face {
20
- font-family: 'poppins_lightregular';
21
- src: url('../fonts/poppins-light-webfont.woff2') format('woff2'),
22
- url('../fonts/poppins-light-webfont.woff') format('woff');
23
- font-weight: normal;
24
- font-style: normal;
25
-
26
- }
27
-
28
- #custom-handle {
29
- width: 3em;
30
- height: 1.6em;
31
- top: 50%;
32
- margin-top: -.8em;
33
- text-align: center;
34
- line-height: 1.6em;
35
- }
36
-
37
- #mystickymenu {
38
- font-family: 'poppinsregular', sans-serif;
39
- }
40
-
41
- .main-content {
42
- float: left;
43
- width: 65%;
44
- }
45
-
46
- .main-sidebar {
47
- float: right;
48
- width: 30%;
49
- background: #ffffff;
50
- border: 1px solid #e5e5e5;
51
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
52
- }
53
-
54
- .main-sidebar h3 {
55
- margin: 0;
56
- padding: 8px 12px;
57
- border-bottom: 1px solid #ececec;
58
- }
59
-
60
- .main-sidebar .inner {
61
- padding: 10px;
62
- }
63
-
64
- .main-sidebar p {
65
- padding: 8px;
66
- margin: 0;
67
- border-top: solid 1px #e5e5e5;
68
- }
69
-
70
- /*.mystickyinput {padding-top: 6px;}*/
71
- @media screen and (max-width: 782px) {
72
- .main-content, .main-sidebar {
73
- width: 100%;
74
- float: none;
75
- clear: both;
76
- }
77
- }
78
-
79
- .myssticky-remove-hand {
80
- cursor: default;
81
- }
82
-
83
- /* */
84
- .mystickymenu-content-section input[type="number"]#myfixed_zindex {
85
- -moz-appearance: textfield-multiline;
86
- }
87
-
88
- .mystickymenu-content-section input[type="number"] {
89
- -moz-appearance: textfield;
90
- }
91
-
92
- .mystickymenu-content-section input[type="number"]::-webkit-inner-spin-button, .mystickymenu-content-section input[type="number"]::-webkit-outer-spin-button {
93
- -webkit-appearance: none;
94
- margin: 0;
95
- }
96
-
97
- .mystickymenu-content-section .mysticky-number {
98
- display: inline-block;
99
- margin: 0 0 10px;
100
- position: relative;
101
- }
102
-
103
- #mystickymenu .mystickymenu-content-section .mysticky-number {
104
- /*width: 90px;*/
105
- }
106
-
107
- #mystickymenu input[type=number] {
108
- color: #A7A7A7;
109
- border-radius: 21px;
110
- background-color: #ffffff;
111
- border: 1px solid #DCE2E2;
112
- font-size: 14px;
113
- font-weight: 400;
114
- height: 42px;
115
- padding: 0 10px 0 12px;
116
- margin: 0;
117
- width: 310px;
118
- box-shadow: none;
119
- }
120
-
121
- .pt_number {
122
- display: inline-block;
123
- vertical-align: top;
124
- margin-top: 7px;
125
- }
126
-
127
- .mysticky-welcomebar-setting-content-right input[type="text"]:disabled {
128
- color: #a0a5aa;
129
- border-color: #ddd;
130
- background-color: #f7f7f7;
131
- }
132
-
133
- .mystickymenu-content-section .mysticky-number:focus {
134
- outline: 0;
135
- }
136
-
137
- .mystickymenu-content-section .mysticky-number .pt_number {
138
- float: left;
139
- position: relative;
140
- height: 30px;
141
- }
142
-
143
- .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton {
144
- position: relative;
145
- cursor: pointer;
146
- border-left: 1px solid #b7b7b7;
147
- width: 15px;
148
- text-align: center;
149
- color: #333;
150
- font-size: 14px;
151
- line-height: 1.1;
152
- -webkit-transform: translateX(-100%);
153
- transform: translateX(-100%);
154
- -webkit-user-select: none;
155
- -moz-user-select: none;
156
- -ms-user-select: none;
157
- user-select: none;
158
- }
159
-
160
- .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton:active {
161
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
162
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
163
- }
164
-
165
- .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberup {
166
- position: absolute;
167
- height: 50%;
168
- top: 0;
169
- border-bottom: 1px solid #b7b7b7;
170
- }
171
-
172
- .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberdown {
173
- position: absolute;
174
- bottom: 0px;
175
- height: 50%;
176
- }
177
-
178
- /* */
179
-
180
- input#mysticky_class_selector {
181
- border-radius: 24px;
182
- border: 1px solid #E6E5EC;
183
- height: 46px;
184
- padding: 0 26px;
185
- width: 49%
186
- }
187
-
188
- .mystickymenu-content-section {
189
- background-color: #F9FCFC;
190
- border-radius: 7px;
191
- margin-bottom: 20px;
192
- border: 1px solid #E1E6E6;
193
- }
194
-
195
- input#myfixed_disable_small_screen {
196
- border-radius: 21px;
197
- }
198
-
199
- input#mysticky_active_on_height_home {
200
- border-radius: 21px;
201
- }
202
-
203
- textarea#myfixed_cssstyle {
204
- width: 100%;
205
- margin-top: 12px;
206
- border-radius: 10px;
207
- background-color: #fff;
208
- height: 120px;
209
- resize: none;
210
- border: 1px solid #DCE2E2;
211
- padding: 10px 10px;
212
- }
213
-
214
- label {
215
- font-size: 15px;
216
- }
217
-
218
- .sticky-class-sec tr td {
219
- width: 50%;
220
- }
221
-
222
- .px-wrap {
223
- position: relative;
224
- display: inline-block;
225
- vertical-align: top;
226
- }
227
-
228
- .mystickymenu-content-option {
229
- padding: 20px 20px 0;
230
- }
231
-
232
- .mystickymenu-heading {
233
- padding-bottom: 20px;
234
- }
235
-
236
- .myStickymenu-header-title {
237
- background-color: #B2D2FC;
238
- padding: 13px 20px;
239
- border-radius: 10px 10px 0 0;
240
- }
241
-
242
- .myStickymenu-header-title h3 {
243
- margin: 0;
244
- color: #1F4B84;
245
- font-size: 18px;
246
- font-weight: 600;
247
- line-height: 1.2;
248
- }
249
-
250
- .mystickymenu-heading p {
251
- background-color: #D6EFFF;
252
- color: #1F4B84;
253
- border-radius: 0 0 10px 10px;
254
- padding: 13px 20px;
255
- margin: 0;
256
- font-size: 14px;
257
- line-height: 28px;
258
- }
259
-
260
- .mystickynumber {
261
- position: relative;
262
- padding-left: 30px;
263
- }
264
-
265
- .pt_numberbutton.pt_numberup {
266
- height: 25px;
267
- width: 25px;
268
- line-height: 25px;
269
- background-color: #808080;
270
- border-radius: 50%;
271
- position: relative;
272
- margin-left: 5px;
273
- display: inline-block;
274
- color: white;
275
- font-size: 21px;
276
- cursor: pointer;
277
- text-align: center;
278
- margin-top: 2px;
279
- }
280
-
281
- .pt_numberbutton.pt_numberdown {
282
- height: 25px;
283
- width: 25px;
284
- line-height: 25px;
285
- background-color: #808080;
286
- border-radius: 50%;
287
- position: absolute;
288
- top: 8px;
289
- left: 0;
290
- display: inline-block;
291
- color: white;
292
- font-size: 21px;
293
- cursor: pointer;
294
- text-align: center;
295
- }
296
-
297
- span.input-px {
298
- height: 42px;
299
- width: 57px;
300
- background-color: #808080;
301
- position: absolute;
302
- right: 0;
303
- top: 0px;
304
- display: inline-block;
305
- vertical-align: top;
306
- font-size: 14px;
307
- border-radius: 0 21px 21px 0;
308
- color: #fff;
309
- line-height: 42px;
310
- text-align: center;
311
- }
312
-
313
- .mysticky_device_upgrade {
314
- background-color: #f0ecfb;
315
- border-radius: 20px;
316
- padding: 15px 40px 20px 20px;
317
- }
318
-
319
- .mystickymenu-content-section.mystickymenu-content-upgrade {
320
- background-color: #f4f4fd;
321
- }
322
-
323
- .myStickymenu-upgrade a {
324
- background: #E1DAF6;
325
- border-radius: 20px;
326
- color: #7559C0;
327
- padding-top: 2px;
328
- padding-bottom: 6px;
329
- padding-left: 10px;
330
- padding-right: 10px;
331
- font-weight: bold;
332
- text-transform: uppercase;
333
- font-size: 12px;
334
- display: inline-block;
335
- vertical-align: top;
336
- line-height: 1;
337
- }
338
- .myStickymenu-upgrade {
339
- float: right;
340
- }
341
-
342
- .myStickymenu-upgrade a:before {
343
- content: "\f160";
344
- font-family: dashicons;
345
- position: relative;
346
- top: 3px;
347
- font-size: 16px;
348
- }
349
-
350
- .mystickymenu-input-section ul.mystickymenu-input-multicheckbox li {
351
- display: inline-block;
352
- width: 21%;
353
- }
354
-
355
- input#submit.button.button-primary {
356
- background: #00c67c;
357
- border-color: #00c67c;
358
- text-transform: uppercase;
359
- border-radius: 31px;
360
- font-size: 26px;
361
- padding-left: 23px;
362
- padding-right: 23px;
363
- height: 60px;
364
- width: 200px;
365
- border: 0;
366
- box-shadow: none;
367
- font-weight: 600;
368
- text-shadow: none;
369
- }
370
-
371
- input.button.button-secondary.confirm {
372
- background: #969696;
373
- border-color: #969696;
374
- text-transform: uppercase;
375
- font-size: 26px;
376
- padding-left: 23px;
377
- padding-right: 23px;
378
- float: right;
379
- color: white;
380
- margin-right: 10px;
381
- height: 60px;
382
- width: 200px;
383
- border-radius: 31px;
384
- font-weight: 600;
385
- }
386
-
387
- table ul.mystickymenu-input-multicheckbox {
388
- width: 100%;
389
- display: inline-flex;
390
- }
391
-
392
- p.myStickymenu-review a {
393
- font-size: 20px;
394
- }
395
-
396
- table ul.mystickymenu-input-multicheckbox li {
397
- padding-right: 21px;
398
- }
399
-
400
- table {
401
- width: 100%;
402
- }
403
-
404
- #mystickymenu table tr td {
405
- padding: 20px;
406
- }
407
-
408
- div#mystickymenu {
409
- overflow-x: hidden;
410
- overflow-y: hidden;
411
- }
412
-
413
- label.mysticky_title {
414
- font-weight: 500;
415
- font-size: 18px;
416
- line-height: 1.2;
417
- color: #4F4F4F;
418
- }
419
-
420
- .mystickymenu-content-option p label.mysticky_text {
421
- margin-left: 0px;
422
- }
423
-
424
- span.mysticky_text {
425
- font-size: 14px;
426
- color: #9E9E9E;
427
- margin-left: 20px;
428
- font-style: italic;
429
- }
430
-
431
- label.mysticky_text {
432
- font-size: 14px;
433
- /*color: #9E9E9E;*/
434
- margin-left: 20px;
435
- font-style: italic;
436
- }
437
-
438
- select#mystickymenu-select {
439
- border-radius: 24px;
440
- border: 1px solid #E6E5EC;
441
- height: 46px;
442
- box-shadow: none;
443
- padding: 0 26px;
444
- width: 49%;
445
- display: inline-block;
446
- vertical-align: top;
447
- }
448
-
449
- .mystickymenu-input-section {
450
- margin-top: 9px;
451
- }
452
-
453
- label.mysticky_title.css-style-title {
454
- font-size: 20px;
455
- }
456
-
457
- span.wp-color-result-text {
458
- display: none;
459
- }
460
-
461
- button.button.wp-color-result {
462
- border-radius: 50%;
463
- height: 30px !important;
464
- }
465
- button.button.wp-color-result .color-alpha {
466
- border-radius: 50% !important;
467
- height: 28px !important;
468
- }
469
-
470
- .mystickymenu-content-section h3 {
471
- margin-left: 20px;
472
- font-weight: 600;
473
- font-size: 26px;
474
- line-height: 1.2;
475
- color: #4F4F4F;
476
- margin: 0;
477
- padding: 24px 20px;
478
- }
479
-
480
- .form-table {
481
- margin-top: 0;
482
- }
483
-
484
- ul.mystickymenu-input-multicheckbox li span {
485
- font-size: 16px;
486
- color: #4F4F4F;
487
- }
488
-
489
- .mystickymenu-input-section label {
490
- /*color: #9E9E9E;*/
491
- font-size: 16px;
492
- }
493
- #mystickymenu .mystickymenu-input-section input.mystickymenu_normal_text{
494
- border-radius: 0px;
495
- height: 35px;
496
- margin: 10px;
497
- }
498
- #mystickymenu .mystickymenu-input-section span.description{
499
- font-style: normal;
500
- font-size: 16px;
501
- }
502
- .myStickymenu-upgrade a {
503
- text-decoration: none;
504
- color: #7559C0;
505
- }
506
-
507
- #mystickymenu p.submit {
508
- margin-top: 0;
509
- padding-top: 0;
510
- float: right;
511
- }
512
-
513
- td {
514
- vertical-align: top !important;
515
- }
516
- p.description.mystuckymenu-class-id {
517
- display: flex;
518
- margin: 12px 0 0 0;
519
- line-height: 1.5;
520
- }
521
-
522
- p.description.mystuckymenu-class-id .dashicons-controls-play{
523
- background: #a4a5a5;
524
- color: #ffffff;
525
- border-radius: 50%;
526
- }
527
- p.description.mystuckymenu-class-id .dashicons-controls-play::before {
528
- margin-left: 2px;
529
- }
530
- p.description {
531
- color: rgba(79, 79, 79, 0.5);
532
- font-size: 12px;
533
- line-height: 1.2;
534
- margin: 5px 0 0;
535
- }
536
-
537
- div#slider.ui-slider {
538
- width: 229px;
539
- background-color: #DCE2E2;
540
- height: 2px;
541
- border: 0;
542
- border-radius: 2px;
543
- position: relative;
544
- }
545
-
546
- .mystickymenu-content-section .ui-state-active, .ui-widget-content .ui-state-active {
547
- color: #454545;
548
- }
549
-
550
- #mystickymenu #custom-handle {
551
- width: 1.6em;
552
- border-radius: 50%;
553
- background-color: #fff;
554
- box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
555
- border: 0;
556
- position: absolute;
557
- }
558
- .sticky-header-menu {
559
- text-align: center;
560
- padding: 0 0 20px 0;
561
- }
562
- .sticky-header-menu ul {
563
- display: inline-block;
564
- padding: 1px;
565
- background-color: #D6EFFF;
566
- -webkit-border-radius: 23px;
567
- -moz-border-radius: 23px;
568
- border-radius: 23px;
569
- }
570
- .sticky-header-menu ul li {
571
- display: inline-block;
572
- margin: 0;
573
- }
574
- .sticky-header-menu ul li a {
575
- display: inline-block;
576
- padding: 0 20px;
577
- line-height: 40px;
578
- height: 40px;
579
- font-size: 16px;
580
- text-decoration: none;
581
- -webkit-border-radius: 20px;
582
- -moz-border-radius: 20px;
583
- border-radius: 20px;
584
- }
585
- .sticky-header-menu ul li a:hover {
586
- background: #f0ecfb;
587
- color: #7559C0;
588
- }
589
- .sticky-header-menu ul li a.active {
590
- background: #E1DAF6;
591
- color: #7559C0;
592
- }
593
- /*.sticky-header-content {
594
- display: none;
595
- }*/
596
- .mysticky-welcomebar-setting-content-right label.mysticky-welcomebar-switch {
597
- width: 55px;
598
- }
599
-
600
- /*New Welcomebar Page css*/
601
- .mystickymenu-new-widget-wrap, .mystickymenu-new-widget-wrap * {
602
- box-sizing: border-box;
603
- }
604
- .mystickymenu-new-widget-wrap {
605
- border-radius: 10px;
606
- box-shadow: 0 0 6px #ccc;
607
- padding: 10px;
608
- margin: 20px auto 0 auto;
609
- width: 100%;
610
- max-width: 776px;
611
- background: #fff url(../images/new_widget_bg.png) no-repeat right bottom;
612
- background-size: auto 100%;
613
- font-family: Poppins;
614
- line-height: 20px;
615
- }
616
- .mystickymenu-new-widget-wrap h2 {
617
- font-style: normal;
618
- font-weight: 600;
619
- font-size: 20px;
620
- line-height: 30px;
621
- color: #1e1e1e;
622
- margin: 0;
623
- text-align: center;
624
- }
625
- a.new-upgrade-button {
626
- height: 40px;
627
- background: #7761DF;
628
- border-radius: 100px;
629
- border: solid 1px #7761DF;
630
- display: inline-block;
631
- text-align: center;
632
- color: #fff;
633
- line-height: 40px;
634
- margin: 10px 0 10px 10px;
635
- padding: 0 25px;
636
- text-decoration: none;
637
- text-transform: uppercase;
638
- }
639
- .mystickymenu-new-widget-row ul {
640
- display: flex;
641
- align-items: center;
642
- flex-wrap: wrap;
643
- margin-top: 0;
644
- margin-bottom: 0;
645
- }
646
- .mystickymenu-new-widget-row ul li {
647
- width: 33.33%;
648
- padding: 10px 10px 0px;
649
- margin-bottom: 0;
650
- }
651
- .mystickymenu-feature {
652
- margin: 30px 0 0 0;
653
- background: #fff;
654
- border: 1px solid #605dec;
655
- box-sizing: border-box;
656
- border-radius: 4px;
657
- padding: 30px 15px 10px 15px;
658
- min-height: 186px;
659
- position: relative;
660
- }
661
- .mystickymenu-feature-top {
662
- width: 50px;
663
- height: 50px;
664
- border: solid 1px #605dec;
665
- border-radius: 50%;
666
- position: absolute;
667
- left: 0;
668
- right: 0;
669
- margin: 0 auto;
670
- top: -25px;
671
- background: #fff;
672
- z-index: 11;
673
- padding: 10px;
674
- }
675
- .feature-title {
676
- font-family: Poppins;
677
- font-style: normal;
678
- font-weight: 700;
679
- font-size: 13px;
680
- line-height: 18px;
681
- color: #1e1e1e;
682
- }
683
- .feature-description {
684
- font-family: Poppins;
685
- font-style: normal;
686
- font-weight: 400;
687
- font-size: 13px;
688
- line-height: 18px;
689
- color: #1e1e1e;
690
- }
691
- .mystickymenu-feature-top img {
692
- width: auto;
693
- height: auto;
694
- max-width: 100%;
695
- max-height: 100%;
696
- }
697
- /* Finish new Welcome bar screen css */
698
- @media only screen and (min-width: 1024px) and (max-width: 1200px) {
699
- .pt_numberbutton.pt_numberdown {
700
- position: relative;
701
- margin-left: -75px;
702
- top: -29px;
703
- }
704
-
705
- .pt_numberbutton.pt_numberup {
706
- position: relative;
707
- top: -29px;
708
- left: 70px;
709
- }
710
-
711
- /* span.input-px { */
712
- /* position: relative; */
713
- /* left: 112px; */
714
- /* top: -24px !important; */
715
- /* margin-left: -20px; */
716
- /* } */
717
- }
718
-
719
-
720
-
721
- #rpt_pricr {
722
- width: 100%;
723
- max-width: 1024px;
724
- margin: 0 auto;
725
- padding: 25px 25px 25px 25px;
726
- background: #fff;
727
-
728
- -webkit-border-radius: 5px;
729
- -moz-border-radius: 5px;
730
- border-radius: 5px;
731
- }
732
- #rpt_pricr h2 {
733
- padding: 50px 0 30px;
734
- text-align: center;
735
- font-size: 24px;
736
- }
737
- .rpt_plans .rpt_plan {
738
- -moz-box-sizing: border-box;
739
- -webkit-box-sizing: border-box
740
- }
741
-
742
- .rpt_2_plans .rpt_plan {
743
- margin-right: 2%;
744
- width: 49%;
745
- float: left
746
- }
747
-
748
- .rpt_2_plans .rpt_plan:last-child {
749
- margin-right: 0
750
- }
751
-
752
- .rpt_3_plans .rpt_plan {
753
- margin-right: 2%;
754
- width: 32%;
755
- float: left
756
- }
757
-
758
- .rpt_3_plans .rpt_plan:last-child {
759
- margin-right: 0
760
- }
761
-
762
- .rpt_4_plans .rpt_plan {
763
- margin-right: 1%;
764
- width: 24.25%;
765
- float: left
766
- }
767
-
768
- .rpt_4_plans .rpt_plan:last-child {
769
- margin-right: 0
770
- }
771
-
772
- .rpt_5_plans .rpt_plan {
773
- margin-right: .5%;
774
- width: 19.6%;
775
- float: left
776
- }
777
-
778
- .rpt_5_plans .rpt_plan:last-child {
779
- margin-right: 0
780
- }
781
-
782
- .rpt_style_bic .rpt_plan, .rpt_style_loc .rpt_plan {
783
- -webkit-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
784
- -moz-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
785
- box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19)
786
- }
787
-
788
- .rpt_plans .rpt_plan .rpt_title img {
789
- margin-right: 10px;
790
- position: relative;
791
- vertical-align: middle
792
- }
793
-
794
- .rpt_plans .rpt_plan .rpt_title {
795
- background: #6371db;
796
- font-weight: 300;
797
- padding: 24px 18px;
798
- font-size: 26px;
799
- color: #fff;
800
- line-height: 35px;
801
- height: auto;
802
- }
803
-
804
- .rpt_plans .rpt_plan .rpt_title span {
805
- display: inline-block;
806
- position: relative;
807
- top: -10px
808
- }
809
-
810
- .rpt_style_basic .rpt_plan .rpt_title {
811
- border-bottom: #6371db solid 1px;
812
- border-top-left-radius: 8px;
813
- border-top-right-radius: 8px;
814
- }
815
-
816
- .rpt_style_spec .rpt_plan .rpt_title {
817
- color: #fff
818
- }
819
-
820
- .rpt_style_bic .rpt_plan .rpt_title, .rpt_style_loc .rpt_plan .rpt_title, .rpt_style_swl .rpt_plan .rpt_title {
821
- background: #333
822
- }
823
-
824
- .rpt_plans .rpt_sm_title .rpt_plan .rpt_title {
825
- font-size: 20px;
826
- line-height: 18px
827
- }
828
-
829
- .rpt_plans .rpt_xsm_title .rpt_plan .rpt_title {
830
- font-size: 15px;
831
- line-height: 15px
832
- }
833
-
834
- .rpt_4_plans .rpt_plan .rpt_title {
835
- font-size: 17px;
836
- line-height: 15px
837
- }
838
-
839
- .rpt_4_plans .rpt_sm_title .rpt_plan .rpt_title {
840
- font-size: 15px;
841
- line-height: 13px
842
- }
843
-
844
- .rpt_4_plans .rpt_xsm_title .rpt_plan .rpt_title {
845
- font-size: 13px;
846
- line-height: 11px
847
- }
848
-
849
- .rpt_5_plans .rpt_plan .rpt_title {
850
- font-size: 15px;
851
- line-height: 13px
852
- }
853
-
854
- .rpt_5_plans .rpt_sm_title .rpt_plan .rpt_title {
855
- font-size: 13px;
856
- line-height: 11px
857
- }
858
-
859
- .rpt_5_plans .rpt_xsm_title .rpt_plan .rpt_title {
860
- font-size: 12px;
861
- line-height: 10px
862
- }
863
-
864
- .rpt_plans .rpt_recommended_plan .rpt_title {
865
- background: #6371db
866
- }
867
-
868
- .rpt_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
869
- position: relative;
870
- top: -44px;
871
- left: -10px;
872
- font-size: 35px;
873
- line-height: 0
874
- }
875
-
876
- .rpt_4_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
877
- top: -36px
878
- }
879
-
880
- .rpt_5_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
881
- top: -26px
882
- }
883
-
884
- .rpt_sm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
885
- font-size: 30px;
886
- top: -44px;
887
- left: -4px
888
- }
889
-
890
- .rpt_xsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
891
- font-size: 25px;
892
- top: -30px;
893
- left: -4px
894
- }
895
-
896
- .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
897
- font-size: 21px;
898
- top: -14px;
899
- left: -4px
900
- }
901
-
902
- .rpt_style_basic .rpt_plan .rpt_head {
903
- background: #ec86c6
904
- }
905
-
906
- .rpt_style_spec .rpt_plan .rpt_head {
907
- background: #fff
908
- }
909
-
910
- .rpt_style_swl .rpt_plan .rpt_head {
911
- background: #fff
912
- }
913
-
914
- .rpt_plans .rpt_plan .rpt_head .rpt_price {
915
- padding: 6px 10px;
916
- font-size: 74px;
917
- line-height: 80px;
918
- font-weight: 300;
919
- text-align: center;
920
- color: #ffffff
921
- }
922
-
923
- .rpt_style_basic .rpt_plan .rpt_head .rpt_price, .rpt_style_spec .rpt_plan .rpt_head .rpt_price {
924
- text-shadow: 1px 2px 7px rgba(0, 0, 0, .6)
925
- }
926
-
927
- .rpt_style_swl .rpt_plan .rpt_head .rpt_price {
928
- color: #000
929
- }
930
-
931
- .rpt_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
932
- font-size: 62px
933
- }
934
-
935
- .rpt_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
936
- font-size: 56px
937
- }
938
-
939
- .rpt_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
940
- font-size: 38px
941
- }
942
-
943
- .rpt_4_plans .rpt_plan .rpt_head .rpt_price {
944
- font-size: 69px;
945
- line-height: 80px
946
- }
947
-
948
- .rpt_4_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
949
- font-size: 53px;
950
- line-height: 65px
951
- }
952
-
953
- .rpt_4_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
954
- font-size: 47px;
955
- line-height: 64px
956
- }
957
-
958
- .rpt_4_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
959
- font-size: 31px;
960
- line-height: 60px
961
- }
962
-
963
- .rpt_5_plans .rpt_plan .rpt_head .rpt_price {
964
- font-size: 59px;
965
- line-height: 80px
966
- }
967
-
968
- .rpt_5_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
969
- font-size: 44px;
970
- line-height: 60px
971
- }
972
-
973
- .rpt_5_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
974
- font-size: 37px;
975
- line-height: 53px
976
- }
977
-
978
- .rpt_5_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
979
- font-size: 24px;
980
- line-height: 50px
981
- }
982
-
983
- .rpt_plans .rpt_recommended_plan .rpt_head .rpt_price {
984
- font-size: 98px
985
- }
986
-
987
- .rpt_4_plans .rpt_recommended_plan .rpt_head .rpt_price {
988
- font-size: 74px
989
- }
990
-
991
- .rpt_5_plans .rpt_recommended_plan .rpt_head .rpt_price {
992
- font-size: 67px
993
- }
994
-
995
- .rpt_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
996
- font-size: 83px
997
- }
998
-
999
- .rpt_4_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1000
- font-size: 60px
1001
- }
1002
-
1003
- .rpt_5_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1004
- font-size: 54px
1005
- }
1006
-
1007
- .rpt_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1008
- font-size: 55px
1009
- }
1010
-
1011
- .rpt_4_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1012
- font-size: 49px
1013
- }
1014
-
1015
- .rpt_5_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1016
- font-size: 41px
1017
- }
1018
-
1019
- .rpt_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1020
- font-size: 42px
1021
- }
1022
-
1023
- .rpt_4_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1024
- font-size: 34px
1025
- }
1026
-
1027
- .rpt_5_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1028
- font-size: 26px
1029
- }
1030
-
1031
- .rpt_plans .rpt_plan .rpt_head .rpt_recurrence {
1032
- font-size: 13px;
1033
- font-weight: 300;
1034
- line-height: 18px;
1035
- padding: 20px 10px 10px;
1036
- color: #ffffff;
1037
- text-align: center
1038
- }
1039
-
1040
- .rpt_style_spec .rpt_plan .rpt_head .rpt_recurrence {
1041
- color: #d3d3d3
1042
- }
1043
-
1044
- .rpt_style_bic .rpt_plan .rpt_head .rpt_recurrence, .rpt_style_loc .rpt_plan .rpt_head .rpt_recurrence {
1045
- color: #f5f5f5
1046
- }
1047
-
1048
- .rpt_style_swl .rpt_plan .rpt_head .rpt_recurrence {
1049
- color: grey
1050
- }
1051
-
1052
- .rpt_plans .rpt_sm_recurrence .rpt_plan .rpt_head .rpt_recurrence {
1053
- font-size: 11px;
1054
- padding: 20px 40px 4px
1055
- }
1056
-
1057
- .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1058
- font-size: 16px;
1059
- line-height: 20px;
1060
- font-weight: 300;
1061
- text-align: center;
1062
- padding: 10px 30px 20px
1063
- }
1064
-
1065
- .rpt_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1066
- font-size: 14px
1067
- }
1068
-
1069
- .rpt_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1070
- font-size: 12px
1071
- }
1072
-
1073
- .rpt_4_plans .rpt_plan .rpt_head .rpt_subtitle {
1074
- font-size: 16px;
1075
- line-height: 18px;
1076
- padding: 10px 10px 20px
1077
- }
1078
-
1079
- .rpt_4_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1080
- font-size: 14px;
1081
- line-height: 17px
1082
- }
1083
-
1084
- .rpt_4_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1085
- font-size: 13px;
1086
- line-height: 16px
1087
- }
1088
-
1089
- .rpt_5_plans .rpt_plan .rpt_head .rpt_subtitle {
1090
- font-size: 15px;
1091
- line-height: 18px;
1092
- padding: 10px 10px 20px
1093
- }
1094
-
1095
- .rpt_5_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1096
- font-size: 13px;
1097
- line-height: 17px
1098
- }
1099
-
1100
- .rpt_5_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1101
- font-size: 12px;
1102
- line-height: 16px
1103
- }
1104
-
1105
- .rpt_plans .rpt_plan .rpt_head .rpt_description {
1106
- font-size: 14px;
1107
- line-height: 20px;
1108
- padding: 10px 20px;
1109
- font-weight: 300;
1110
- text-align: center;
1111
- color: #ffffff
1112
- }
1113
-
1114
- .rpt_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1115
- font-size: 12px
1116
- }
1117
-
1118
- .rpt_style_bic .rpt_plan .rpt_head .rpt_description, .rpt_style_loc .rpt_plan .rpt_head .rpt_description {
1119
- color: #f5f5f5
1120
- }
1121
-
1122
- .rpt_4_plans .rpt_plan .rpt_head .rpt_description {
1123
- font-size: 13px;
1124
- line-height: 18px
1125
- }
1126
-
1127
- .rpt_4_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1128
- font-size: 12px;
1129
- line-height: 17px
1130
- }
1131
-
1132
- .rpt_5_plans .rpt_plan .rpt_head .rpt_description {
1133
- font-size: 12px;
1134
- line-height: 18px
1135
- }
1136
-
1137
- .rpt_5_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1138
- font-size: 11px;
1139
- line-height: 17px
1140
- }
1141
-
1142
- .rpt_plans .rpt_plan .rpt_features {
1143
- padding: 20px;
1144
- background: #f0ecfb;
1145
- text-align: center
1146
- }
1147
-
1148
- .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1149
- font-size: 16px;
1150
- padding: 6px 16px;
1151
- border-bottom: 1px dotted #d3d3d3
1152
- }
1153
- .rpt_plans .rpt_plan .rpt_features .rpt_feature a {
1154
- color: #333333;
1155
- }
1156
-
1157
- .rpt_plans .rpt_plan .rpt_features .rpt_feature:last-child {
1158
- border-bottom: none
1159
- }
1160
-
1161
- .rpt_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1162
- font-size: 14px
1163
- }
1164
-
1165
- .rpt_style_bic .rpt_plan .rpt_features, .rpt_style_loc .rpt_plan .rpt_features, .rpt_style_swl .rpt_plan .rpt_features {
1166
- background: #fff
1167
- }
1168
-
1169
- .rpt_style_swl .rpt_plan .rpt_features .rpt_feature {
1170
- padding: 5px 16px
1171
- }
1172
-
1173
- .rpt_4_plans .rpt_plan .rpt_features .rpt_feature {
1174
- padding: 6px 10px;
1175
- font-size: 14px
1176
- }
1177
-
1178
- .rpt_4_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1179
- font-size: 12px
1180
- }
1181
-
1182
- .rpt_5_plans .rpt_plan .rpt_features .rpt_feature {
1183
- padding: 6px 10px;
1184
- font-size: 13px
1185
- }
1186
-
1187
- .rpt_5_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1188
- font-size: 11px
1189
- }
1190
-
1191
- .rpt_plans .rpt_plan .rpt_foot {
1192
- display: block;
1193
- padding: 10px 30px;
1194
- border-top: #7559C0 solid 2px;
1195
- background: #7559C0;
1196
- text-align: center;
1197
- color: #fff;
1198
- font-size: 24px;
1199
- text-decoration: none;
1200
- font-weight: 300;
1201
- transition: All .5s ease;
1202
- -webkit-transition: All .5s ease;
1203
- -moz-transition: All .5s ease;
1204
- -o-transition: All .5s ease
1205
- }
1206
-
1207
- .rpt_plans .rpt_sm_button .rpt_plan .rpt_foot {
1208
- font-size: 19px
1209
- }
1210
-
1211
- .rpt_style_basic .rpt_plan .rpt_foot {
1212
- border-bottom-left-radius: 8px;
1213
- border-bottom-right-radius: 8px
1214
- }
1215
-
1216
- .rpt_style_swl .rpt_plan .rpt_foot {
1217
- border-top: none;
1218
- padding: 10px 30px 20px;
1219
- color: #000;
1220
- background: #333
1221
- }
1222
-
1223
- .rpt_4_plans .rpt_plan .rpt_foot {
1224
- padding: 4px 20px;
1225
- font-size: 19px
1226
- }
1227
-
1228
- .rpt_4_plans .rpt_sm_button .rpt_plan .rpt_foot, .rpt_5_plans .rpt_plan .rpt_foot {
1229
- padding: 4px 20px;
1230
- font-size: 17px
1231
- }
1232
-
1233
- .rpt_5_plans .rpt_sm_button .rpt_plan .rpt_foot {
1234
- font-size: 16px
1235
- }
1236
-
1237
- .rpt_plans .rpt_plan .rpt_foot:hover {
1238
- opacity: .8
1239
- }
1240
-
1241
- .rpt_style_swl .rpt_plan .rpt_foot:hover {
1242
- opacity: 1
1243
- }
1244
-
1245
- .rpt_plans .rpt_recommended_plan .rpt_foot {
1246
- font-size: 30px;
1247
- padding: 16px 0
1248
- }
1249
-
1250
- .rpt_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1251
- font-size: 26px
1252
- }
1253
-
1254
- .rpt_4_plans .rpt_recommended_plan .rpt_foot {
1255
- font-size: 22px;
1256
- font-weight: 300;
1257
- padding: 10px 0
1258
- }
1259
-
1260
- .rpt_4_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1261
- font-size: 19px;
1262
- padding: 10px 0
1263
- }
1264
-
1265
- .rpt_5_plans .rpt_recommended_plan .rpt_foot {
1266
- font-size: 20px;
1267
- font-weight: 300;
1268
- padding: 10px 0
1269
- }
1270
-
1271
- .rpt_5_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1272
- font-size: 18px;
1273
- padding: 10px 0
1274
- }
1275
-
1276
- .rpt_custom_btn {
1277
- border-bottom-left-radius: 5px;
1278
- border-bottom-right-radius: 5px;
1279
- text-align: center;
1280
- padding: 16px 20px
1281
- }
1282
-
1283
- .rpt_plans .rpt_recommended_plan {
1284
- position: relative;
1285
- top: -10px
1286
- }
1287
-
1288
- .rpt_recommended_plan img.rpt_recommended {
1289
- position: absolute !important;
1290
- right: 10px !important
1291
- }
1292
-
1293
- .rpt_style_bic .rpt_recommended_plan, .rpt_style_loc .rpt_recommended_plan {
1294
- -webkit-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1295
- -moz-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1296
- box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39)
1297
- }
1298
-
1299
- a.rpt_tooltip {
1300
- display: block;
1301
- outline: 0;
1302
- position: relative
1303
- }
1304
-
1305
- a.rpt_tooltip strong {
1306
- line-height: 30px
1307
- }
1308
-
1309
- a.rpt_tooltip > span.intool {
1310
- width: 90%;
1311
- padding: 10px;
1312
- margin-top: 56px;
1313
- opacity: 0;
1314
- visibility: hidden;
1315
- z-index: 10;
1316
- position: absolute;
1317
- top: -15px;
1318
- display: block;
1319
- color: #f5f5f5;
1320
- font-size: 13px;
1321
- line-height: 20px;
1322
- background: #333;
1323
- font-weight: 300;
1324
- text-align: center
1325
- }
1326
-
1327
- a.rpt_tooltip:hover {
1328
- cursor: zoom-in
1329
- }
1330
-
1331
- a.rpt_tooltip .rpt_tooltip_plus {
1332
- text-decoration: none !important;
1333
- display: inline;
1334
- font-size: 12px;
1335
- font-weight: 700;
1336
- position: relative;
1337
- top: -6px
1338
- }
1339
-
1340
- .rpt_feature:hover a.rpt_tooltip > span.intool {
1341
- opacity: .98;
1342
- text-decoration: none;
1343
- visibility: visible;
1344
- overflow: visible
1345
- }
1346
-
1347
- a.rpt_tooltip span.intool b {
1348
- width: 10px;
1349
- height: 10px;
1350
- margin-left: 35%;
1351
- margin-top: -15px;
1352
- position: absolute;
1353
- -webkit-transform: rotate(-45deg);
1354
- -moz-transform: rotate(-45deg);
1355
- -o-transform: rotate(-45deg);
1356
- transform: rotate(-45deg);
1357
- display: none \0/;
1358
- background: #333
1359
- }
1360
-
1361
- .rpt_3_plans a.rpt_tooltip > span.intool {
1362
- margin-left: -1%
1363
- }
1364
-
1365
- .rpt_4_plans a.rpt_tooltip > span.intool {
1366
- margin-left: 0
1367
- }
1368
-
1369
- .rpt_5_plans a.rpt_tooltip > span.intool {
1370
- margin-left: -2%
1371
- }
1372
-
1373
- .entry-content .rpt_plan a, .rpt_plan a {
1374
- border-bottom: none !important;
1375
- text-decoration: none;
1376
- }
1377
-
1378
- .rpt_plans .rpt_plan .rpt_icon {
1379
- max-width: 30px;
1380
- max-height: 30px
1381
- }
1382
-
1383
- .rpt_plans .rpt_plan img {
1384
- display: inline;
1385
- margin: 0 10px 0 0;
1386
- padding: 0;
1387
- -webkit-box-shadow: 0 0 0 0 transparent;
1388
- -moz-box-shadow: 0 0 0 0 transparent;
1389
- box-shadow: 0 0 0 0 transparent;
1390
- border: none
1391
- }
1392
-
1393
- .mystickymenu-testimonial {
1394
- position: relative;
1395
- }
1396
- .mystickymenu-testimonial .testimonial-data {
1397
- position: relative;
1398
- }
1399
- .mystickymenu-testimonial .testimonial-data {
1400
- position: relative;
1401
- margin-left: 30px;
1402
- padding: 10px 10px 10px 40px;
1403
- background: #f5f5f5;
1404
- font-size: 16px;
1405
- line-height: 22px;
1406
- }
1407
- .mystickymenu-testimonial .testimonial-image {
1408
- position: absolute;
1409
- height: 60px;
1410
- width: 60px;
1411
- overflow: hidden;
1412
- border-radius: 30px;
1413
- top: 50%;
1414
- margin-top: -30px;
1415
- z-index: 1;
1416
- }
1417
- .mystickymenu-testimonial .testimonial-image img {
1418
- width: 100%;
1419
- height: auto;
1420
- }
1421
- .mystickymenu-testimonial-list {
1422
- width: 100%;
1423
- max-width: 1080px;
1424
- margin: 30px auto;
1425
- }
1426
- .testimonial-title {
1427
- font-weight: bold;
1428
- font-size: 18px;
1429
- padding: 0 0 5px 0;
1430
- }
1431
- .testimonial-author {
1432
- font-size: 16px;
1433
- font-style: italic;
1434
- font-weight: 500;
1435
- padding: 5px 0 0 0;
1436
- }
1437
- p.udner-title strong {
1438
- font-size: 30px;
1439
- padding-bottom: 40px;
1440
- display: block;
1441
- color: #b97fcf;
1442
- text-align: center;
1443
- }
1444
- p.udner-title {
1445
- margin: 0;
1446
- padding: 0;
1447
- }
1448
- @media only screen and (max-width: 640px) {
1449
- .rpt_plans .rpt_plan {
1450
- width: 96%;
1451
- margin: 10px 2% 20px !important
1452
- }
1453
-
1454
- .rpt_plans .rpt_plan .rpt_title {
1455
- position: relative;
1456
- font-size: 26px !important;
1457
- line-height: 35px !important
1458
- }
1459
-
1460
- .rpt_plans .rpt_plan .rpt_head .rpt_price {
1461
- font-size: 74px !important;
1462
- line-height: 100px !important
1463
- }
1464
-
1465
- .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1466
- font-size: 17px !important;
1467
- line-height: 28px !important;
1468
- padding: 10px 40px 20px
1469
- }
1470
-
1471
- .rpt_plans .rpt_plan .rpt_head .rpt_description {
1472
- font-size: 15px !important;
1473
- line-height: 26px !important;
1474
- padding: 0 40px 30px
1475
- }
1476
-
1477
- .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1478
- padding: 6px 16px;
1479
- font-size: 14px !important
1480
- }
1481
-
1482
- .rpt_plans .rpt_plan .rpt_foot {
1483
- padding: 10px 40px;
1484
- text-align: center;
1485
- color: #fff;
1486
- font-size: 20px
1487
- }
1488
-
1489
- .rpt_plans .rpt_recommended_plan .rpt_foot {
1490
- font-size: 30px;
1491
- font-weight: 300;
1492
- padding: 20px 0
1493
- }
1494
-
1495
- .rpt_plan .rpt_head .rpt_price .rpt_currency {
1496
- top: -36px !important;
1497
- left: -10px !important;
1498
- font-size: 35px !important
1499
- }
1500
- }
1501
-
1502
- #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature, #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature a, #rpt_pricr .rpt_plan_ori .rpt_foot, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_description, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price .rpt_currency, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_recurrence, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_subtitle, #rpt_pricr .rpt_plan_ori .rpt_title {
1503
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
1504
- font-weight: 300 !important
1505
- }
1506
-
1507
- .client-testimonial {
1508
- margin: 20px auto 0px;
1509
- -webkit-border-radius: 5px;
1510
- -moz-border-radius: 5px;
1511
- border-radius: 5px;
1512
- }
1513
- .client-testimonial span.dashicons.dashicons-yes {
1514
- background: #00bd00;
1515
- color: #fff;
1516
- border-radius: 50%;
1517
- -webkit-border-radius: 50%;
1518
- -moz-border-radius: 50%;
1519
- }
1520
- .client-testimonial p.text-center {
1521
- text-align: center;
1522
- margin: 6px 0;
1523
- font-size: 14px;
1524
- }
1525
- .client-testimonial .payment {
1526
- margin: 20px 0;
1527
- text-align: center;
1528
- }
1529
- .testimonial-image {
1530
- width: 10%;
1531
- display: inline-block;
1532
- vertical-align: middle;
1533
- }
1534
- .testimonial-content {
1535
- width: 85%;
1536
- display: inline-block;
1537
- vertical-align: middle;
1538
- padding-left: 15px;
1539
- }
1540
- .testimonial-image img {
1541
- border-radius: 50%;
1542
- -webkit-border-radius: 50%;
1543
- -moz-border-radius: 50%;
1544
- width: 100%;
1545
- height: auto;
1546
- }
1547
- .client-testimonial .author {
1548
- font-weight: bold;
1549
- padding: 5px 0 0 0;
1550
- font-size: 14px;
1551
- }
1552
- .testimonial-box {
1553
- padding: 15px;
1554
- background: #d6efff;
1555
- -webkit-border-radius: 5px;
1556
- -moz-border-radius: 5px;
1557
- border-radius: 5px;
1558
- }
1559
-
1560
- /*01-08-2019 welcome bar css*/
1561
- #sticky-header-welcome-bar *, #sticky-header-welcome-bar ::before, #sticky-header-welcome-bar ::after {
1562
- -webkit-box-sizing: border-box;
1563
- -moz-box-sizing: border-box;
1564
- box-sizing: border-box;
1565
- }
1566
- #sticky-header-welcome-bar .iris-picker, #sticky-header-welcome-bar .iris-picker * {
1567
- -moz-box-sizing: content-box;
1568
- -webkit-box-sizing: content-box;
1569
- box-sizing: content-box;
1570
- }
1571
- .mysticky-welcomebar-switch {
1572
- display: inline-block;
1573
- width:55px;
1574
- height:30px;
1575
- position: relative;
1576
- }
1577
- .mysticky-welcomebar-switch input {
1578
- opacity: 0;
1579
- width: 0;
1580
- height: 0;
1581
- }
1582
- .mysticky-welcomebar-switch .slider {
1583
- border-radius: 15px;
1584
- position: absolute;
1585
- cursor: pointer;
1586
- top: 0;
1587
- left: 0;
1588
- right: 0;
1589
- bottom: 0;
1590
- background-color: #ccc;
1591
- border: 2px solid #ccc;
1592
- -webkit-transition: .4s;
1593
- transition: .4s;
1594
- }
1595
- .mysticky-welcomebar-switch .slider:before {
1596
- border-radius: 50%;
1597
- position: absolute;
1598
- content: "";
1599
- height: 24px;
1600
- width: 24px;
1601
- left: 2px;
1602
- top: 1px;
1603
- background-color: #ffffff;
1604
- -webkit-transition: .4s;
1605
- transition: .4s;
1606
- }
1607
- .mysticky-welcomebar-switch input:checked + .slider {
1608
- background-color: #7761DF;
1609
- border: 2px solid #7761DF;
1610
- }
1611
- .mysticky-welcomebar-switch input:focus + .slider {
1612
- box-shadow: 0 0 1px #2196F3;
1613
- }
1614
- .mysticky-welcomebar-switch input:checked + .slider:before {
1615
- -webkit-transform: translateX(24px);
1616
- -ms-transform: translateX(24px);
1617
- transform: translateX(24px);
1618
- }
1619
- .mysticky-welcomebar-form {
1620
- background-color: #f8fcfd;
1621
- border: 1px solid #E1E6E6;
1622
- padding: 20px;
1623
- border-radius: 7px;
1624
- position: relative;
1625
- }
1626
- .mysticky-welcomebar-header-title h3 {
1627
- margin: 0;
1628
- font-size: 26px;
1629
- color: #4F4F4F;
1630
- line-height: 1.2;
1631
- display: inline-block;
1632
- vertical-align: top;
1633
- }
1634
- .mysticky-welcomebar-header-title h3 + .mysticky-welcomebar-switch {
1635
- margin-left: 20px;
1636
- }
1637
- .mysticky-welcomebar-subheader-title {
1638
- padding: 40px 0 30px;
1639
- }
1640
- .mysticky-welcomebar-subheader-title h4 {
1641
- margin: 0;
1642
- font-weight: 400;
1643
- font-size: 22px;
1644
- line-height: 1.2;
1645
- color: #4F4F4F;
1646
- }
1647
- .mysticky-welcomebar-setting-content {
1648
- display: flex;
1649
- /*align-items: center;*/
1650
- padding-bottom: 20px;
1651
- }
1652
- .mysticky-welcomebar-setting-content.show-on-apper {
1653
- align-items: flex-start;
1654
- }
1655
- .mysticky-welcomebar-setting-content > label {
1656
- font-size: 18px;
1657
- line-height: 1.2;
1658
- color: #4F4F4F;
1659
- font-weight: 500;
1660
- margin-top: 10px;
1661
- width: 210px;
1662
- padding-right: 10px;
1663
- }
1664
- .mysticky-welcomebar-setting-content.show-on-apper > label {
1665
- margin-top: 10px;
1666
- }
1667
- .mysticky-welcomebar-setting-content-right {
1668
- width: 100%;
1669
- align-items: center;
1670
- display: flex;
1671
- }
1672
- .mysticky-welcomebar-setting-wrap .myStickymenu-upgrade {
1673
- display: inline-block;
1674
- vertical-align: top;
1675
- float: none;
1676
- margin-left: 20px;
1677
- }
1678
- .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-position .myStickymenu-upgrade {
1679
- margin-left: 50px;
1680
- }
1681
- .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-remove-getbar .myStickymenu-upgrade {
1682
- margin-left: 130px;
1683
- }
1684
- .mysticky-welcomebar-setting-content-right.mysticky-welcomebar-colorpicker .wp-picker-container{
1685
- display: inline-block;
1686
- }
1687
- .mysticky-welcomebar-setting-content-right label {
1688
- display: inline-block;
1689
- vertical-align: top;
1690
- width: 100px;
1691
- padding-right: 10px;
1692
- }
1693
- .mysticky-welcomebar-setting-content-right .wp-picker-input-wrap label {
1694
- width: auto;
1695
- }
1696
- .mysticky-welcomebar-setting-content-right .mysticky-welcomebar-trigger-wrap label {
1697
- width: auto;
1698
- }
1699
- #mystickymenu .mysticky-welcomebar-setting-content-right .px-wrap input {
1700
- padding-right: 60px;
1701
- }
1702
- .mysticky-welcomebar-setting-content-right select ,
1703
- .mysticky-welcomebar-setting-content-right input[type="text"] ,
1704
- .mysticky-welcomebar-setting-content-right textarea {
1705
- width: 400px;
1706
- height: 42px;
1707
- border-radius: 20px;
1708
- color: #32373c;
1709
- display: block;
1710
- padding: 0 10px;
1711
- box-shadow: none;
1712
- border: 1px solid #DCE2E2;
1713
- margin: 0;
1714
- font-size: 14px;
1715
- font-weight: 400;
1716
- }
1717
-
1718
- .mysticky-welcomebar-setting-content-right input::placeholder,
1719
- .mysticky-welcomebar-setting-content-right input:-ms-input-placeholder,
1720
- .mysticky-welcomebar-setting-content-right input::-ms-input-placeholder {
1721
- color: #b5b7b9;
1722
- opacity:0.6;
1723
- }
1724
- .mysticky-welcomebar-setting-content-right select {
1725
- padding-right: 22px;
1726
- }
1727
- .mysticky-welcomebar-setting-content-right textarea {
1728
- height: 100px;
1729
- border-radius: 10px;
1730
- padding-top: 9px;
1731
- }
1732
- #mystickymenu .wp-picker-container input[type="text"].wp-color-picker {
1733
- border-radius: 0;
1734
- height: 32px;
1735
- border: 1px solid #DCE2E2;
1736
- }
1737
- #mystickymenu .wp-picker-input-wrap .button {
1738
- height: 32px;
1739
- }
1740
- #mystickymenu .form-table .wp-picker-input-wrap label {
1741
- padding-right: 10px;
1742
- }
1743
- .mysticky-welcomebar-setting-action {
1744
- display: inline-block;
1745
- vertical-align: top;
1746
- }
1747
- .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
1748
- padding-left: 10px;
1749
- }
1750
- .mysticky-welcomebar-redirect label {
1751
- width: auto;
1752
- padding-right: 0;
1753
- padding-top: 10px;
1754
- }
1755
- .mysticky-welcomebar-expirydate {
1756
- position: relative;
1757
- display: inline-block;
1758
- vertical-align: top;
1759
- }
1760
- .mysticky-welcomebar-setting-content-right .mysticky-welcomebar-expirydate input {
1761
- padding-left: 55px;
1762
- }
1763
- .mysticky-welcomebar-expirydate .dashicons {
1764
- position: absolute;
1765
- top: 0;
1766
- left: 0;
1767
- bottom: 0;
1768
- color: #a7a7a7;
1769
- border-right: 1px solid #a7a7a7;
1770
- width: 46px;
1771
- height: 100%;
1772
- line-height: 40px;
1773
- }
1774
- a.create-rule {
1775
- background-color: #7761DF;
1776
- color: #fff;
1777
- display: inline-block;
1778
- margin: 10px 0 0;
1779
- vertical-align: top;
1780
- text-decoration: none;
1781
- padding: 5px 12px;
1782
- border-radius: 20px;
1783
- box-shadow: none;
1784
- outline: none;
1785
- }
1786
- .mysticky-welcomebar-upgrade-main {
1787
- position: relative;
1788
- vertical-align: top;
1789
- width: 100%;
1790
- padding-right: 10px;
1791
- padding-bottom: 0;
1792
- }
1793
- .mysticky-welcomebar-upgrade-main .myStickymenu-upgrade {
1794
- float: right;
1795
- }
1796
- .mysticky-welcomebar-page-option {
1797
- margin-bottom: 20px;
1798
- position: relative;
1799
- }
1800
- .mysticky-welcomebar-page-option select {
1801
- width: 230px;
1802
- }
1803
- .mysticky-welcomebar-page-option .myStickymenu-upgrade {
1804
- display: none;
1805
- position: absolute;
1806
- top: 9px;
1807
- left: 50%;
1808
- -webkit-transform: translateX(-50%);
1809
- -moz-transform: translateX(-50%);
1810
- transform: translateX(-50%);
1811
- text-align: center;
1812
- margin-left: 0;
1813
- }
1814
- .mysticky-welcomebar-page-option .myStickymenu-upgrade a {
1815
- padding-top: 5px;
1816
- padding-bottom: 7px;
1817
- padding-left: 20px;
1818
- padding-right: 20px;
1819
- font-size: 14px;
1820
- box-shadow: 0 0 3px #999;
1821
- }
1822
- .mysticky-welcomebar-page-option:hover .myStickymenu-upgrade {
1823
- display: block;
1824
- }
1825
- .mysticky-welcomebar-page-option .url-content {
1826
- /*display: flex;*/
1827
- overflow:hidden;
1828
- align-items: center;
1829
- }
1830
- .mysticky-welcomebar-page-option .url-content > div {
1831
- padding: 0 5px;
1832
- float: left;
1833
-
1834
- }
1835
-
1836
- .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-values,
1837
- .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-option{
1838
- width: 20%;
1839
- }
1840
- .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
1841
- width: 28%;
1842
- text-align: right;
1843
- margin-top: 10px;
1844
- }
1845
-
1846
- /*.mysticky-welcomebar-page-option .url-content select {
1847
- width: 120px;
1848
- }
1849
- */
1850
- .mysticky-welcomebar-page-option .url-content input[type="text"] {
1851
- height: 38px;
1852
- padding: 0 15px;
1853
- border-radius: 0;
1854
- }
1855
-
1856
- .mysticky-page-option .myStickymenu-upgrade {
1857
- float: none;
1858
- position: absolute;
1859
- top: 0;
1860
- left: 50%;
1861
- /* right: 0; */
1862
- text-align: center;
1863
- /* background-color: rgba(0,0,0,0.6); */
1864
- bottom: 0;
1865
- border-radius: 10px;
1866
- display: none;
1867
- align-items: center;
1868
- justify-content: center;
1869
- -webkit-transform: translateX(-50%);
1870
- -moz-transform: translateX(-50%);
1871
- transform: translateX(-50%);
1872
- }
1873
- .mysticky-page-option:hover .myStickymenu-upgrade {
1874
- display: flex;
1875
- }
1876
- .mysticky-page-option .myStickymenu-upgrade a {
1877
- padding-top: 5px;
1878
- padding-bottom: 7px;
1879
- padding-left: 20px;
1880
- padding-right: 20px;
1881
- font-size: 14px;
1882
- box-shadow: 0 0 3px #999;
1883
- }
1884
- .mysticky-page-option {
1885
- background-color: #fff;
1886
- padding: 10px;
1887
- margin-bottom: 10px;
1888
- border: 1px solid #DCE2E2;
1889
- border-radius: 10px;
1890
- position: relative;
1891
- }
1892
- .mysticky-page-option .url-content {
1893
- display: flex;
1894
- align-items: center;
1895
- }
1896
- .mysticky-page-option .url-content > div {
1897
- padding: 0 5px;
1898
- }
1899
- .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1900
- width: 260px;
1901
- text-align: right;
1902
- }
1903
- .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1904
- width: 300px;
1905
- }
1906
- .mysticky-page-option .url-content select {
1907
- width: 250px;
1908
- }
1909
- .mysticky-page-option .url-content input[type="text"] {
1910
- height: 38px;
1911
- padding: 0 15px;
1912
- border-radius: 0;
1913
- }
1914
- .mystickymenu-page-target-wrap {
1915
- padding-bottom: 20px;
1916
- }
1917
-
1918
- .mysticky-welcomebar-remove-rule ,
1919
- .mysticky-remove-rule {
1920
- color: #fff;
1921
- background-color: #666;
1922
- text-decoration: none;
1923
- display: inline-block;
1924
- vertical-align: top;
1925
- width: 38px;
1926
- height: 38px;
1927
- text-align: center;
1928
- border-radius: 4px;
1929
- font-size: 22px;
1930
- line-height: 35px;
1931
- }
1932
- .mysticky-welcomebar-page-options {
1933
- display: inline-block;
1934
- vertical-align: top;
1935
- }
1936
- .mysticky-welcomebar-setting-right {
1937
- position: absolute;
1938
- top: 32px;
1939
- right: 50px;
1940
- width: 500px;
1941
- }
1942
- .mysticky-welcomebar-header-title::after {
1943
- content: "";
1944
- display: block;
1945
- clear: both;
1946
- }
1947
- .mysticky-welcomebar-preview-window {
1948
- float: right;
1949
- }
1950
- .mysticky-welcomebar-header-title {
1951
- padding-bottom: 20px;
1952
- }
1953
- .mysticky-welcomebar-preview-window ul {
1954
- margin: 0;
1955
- padding: 0;
1956
- }
1957
- .mysticky-welcomebar-preview-window ul li {
1958
- color: #7761DF;
1959
- display: inline-block;
1960
- vertical-align: top;
1961
- width: 36px;
1962
- height: 36px;
1963
- background-color: #DFDDF7;
1964
- border-radius: 50%;
1965
- text-align: center;
1966
- line-height: 36px;
1967
- margin-bottom: 0;
1968
- margin-left: 10px;
1969
- }
1970
- .mysticky-welcomebar-preview-window ul li.preview-active {
1971
- color: #fff;
1972
- background-color: #7761DF;
1973
- }
1974
- .mysticky-welcomebar-preview-window ul li .dashicons {
1975
- line-height: 36px;
1976
- }
1977
- .mysticky-welcomebar-preview-screen {
1978
- background-color: #ffffff;
1979
- border: 1px solid #DCE2E2;
1980
- border-radius: 10px;
1981
- margin: 0 auto;
1982
- padding: 0;
1983
- height: 400px;
1984
- position: relative;
1985
- overflow: hidden;
1986
- max-width: 100%;
1987
- -webkit-transition: all 0.5s ease 0s;
1988
- -moz-transition: all 0.5s ease 0s;
1989
- transition: all 0.5s ease 0s;
1990
- }
1991
- .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
1992
- max-width: 320px;
1993
- }
1994
- .mysticky-welcomebar-submit {
1995
- float: right;
1996
- padding-top: 50px;
1997
- margin-right: -20px;
1998
- }
1999
- .mysticky-welcomebar-form-reset .mysticky-welcomebar-submit {
2000
- margin-right: 0;
2001
- padding-top: 30px;
2002
- }
2003
- .mysticky-welcomebar-submit input.button-secondary {
2004
- background: #969696;
2005
- border-color: #969696;
2006
- color: #ffffff;
2007
- text-transform: uppercase;
2008
- border-radius: 31px;
2009
- font-size: 26px;
2010
- margin-right: 10px;
2011
- padding-left: 23px;
2012
- padding-right: 23px;
2013
- height: 60px;
2014
- width: 200px;
2015
- border: 0;
2016
- box-shadow: none;
2017
- font-weight: 600;
2018
- text-shadow: none;
2019
- }
2020
- .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-buttons {
2021
- padding-right: 0;
2022
- }
2023
- .ui-dialog-buttonset .green-btn.ui-button {
2024
- background-color: #00c67c;
2025
- border-color: #00c67c;
2026
- color: #fff;
2027
- }
2028
- .mysticky-welcomebar-setting-content-right.mysticky-welcomebar-setting-redirect-wrap {
2029
- display: block;
2030
- }
2031
- .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-redirect-wrap .myStickymenu-upgrade {
2032
- margin-top: 7px;
2033
- }
2034
- .updates-form-form {
2035
- min-height: calc(100vh - 280px);
2036
- }
2037
- .popup-form-content {
2038
- background: #ffffff;
2039
- min-height: 100px;
2040
- width: 450px;
2041
- text-align: center;
2042
- margin-top: 50px;
2043
- border: solid 1px #c1c1c1;
2044
- }
2045
- .updates-content-buttons button {
2046
- margin: 10px 3px !important;
2047
- float: left;
2048
- }
2049
- .updates-content-buttons a span {
2050
- -webkit-animation: fa-spin 0.75s infinite linear;
2051
- animation: fa-spin 0.75s infinite linear;
2052
- }
2053
- .updates-content-buttons a:hover, .updates-content-buttons a:focus {
2054
- color: #ffffff;
2055
- background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
2056
- }
2057
- .updates-content-buttons a:focus {
2058
- outline: 0;
2059
- box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50,100,150,.4);
2060
- }
2061
- .updates-content-buttons button.form-cancel-btn {
2062
- float: right !important;
2063
- }
2064
- .form-submit-btn {
2065
- background-color: #3085d6;
2066
- }
2067
- .updates-content-buttons a span {
2068
- -webkit-animation: fa-spin 0.75s infinite linear;
2069
- animation: fa-spin 0.75s infinite linear;
2070
- }
2071
- .add-update-mystickymenu-title {
2072
- font-size: 20px;
2073
- line-height: 30px;
2074
- padding: 20px 20px 0;
2075
- }
2076
- .mystickymenu-form-input {
2077
- padding: 10px 20px;
2078
- }
2079
- .mystickymenu-form-input input {
2080
- width: 100%;
2081
- transition: border-color .3s,box-shadow .3s;
2082
- border: 1px solid #d9d9d9;
2083
- border-radius: .1875em;
2084
- font-size: 1.125em;
2085
- box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
2086
- box-sizing: border-box;
2087
- height: 2.625em;
2088
- margin: 1em auto;
2089
- }
2090
- .updates-content-buttons {
2091
- background: #c1c1c1;
2092
- padding: 0 20px;
2093
- }
2094
- div#wp-mysticky_bar_text-wrap {
2095
- width: 40%;
2096
- }
2097
-
2098
- .mystickymenu-popup {
2099
- position: fixed;
2100
- width: 100%;
2101
- height: 100%;
2102
- top: 0;
2103
- left: 0;
2104
- z-index: 100001;
2105
- background: rgba(0, 0, 0, .75)
2106
- }
2107
-
2108
- .mystickymenu-popup-box {
2109
- padding: 0;
2110
- width: 600px;
2111
- max-width: 100%;
2112
- margin: auto;
2113
- top: 50%;
2114
- position: absolute;
2115
- left: 0;
2116
- right: 0;
2117
- border-radius: 5px;
2118
- transform: translate(0, -50%);
2119
- -webkit-transform: translate(0, -50%);
2120
- -moz-transform: translate(0, -50%);
2121
- text-align: center;
2122
- background: #fcfcfc
2123
- }
2124
-
2125
- .mystickymenu-popup-header {
2126
- padding: 15px;
2127
- font-size: 20px;
2128
- border-bottom: solid 1px #e6e6e6
2129
- }
2130
-
2131
- .mystickymenu-popup-content {
2132
- background: #fff;
2133
- padding: 15px;
2134
- font-size: 14px;
2135
- line-height: 20px
2136
- }
2137
-
2138
- .mystickymenu-popup-content iframe {
2139
- margin: 30px 0
2140
- }
2141
-
2142
- .mystickymenu-popup-footer {
2143
- padding: 15px;
2144
- border-top: solid 1px #e6e6e6
2145
- }
2146
-
2147
- .mystickymenu-popup-footer button {
2148
- border: none;
2149
- padding: 10px 20px;
2150
- border-radius: 4px;
2151
- background: #00c478;
2152
- color: #fff;
2153
- cursor: pointer;
2154
- }
2155
-
2156
- .close-mystickymenu-popup {
2157
- margin: 0;
2158
- padding: 0;
2159
- background: 0 0;
2160
- border: none;
2161
- float: right;
2162
- background: #000;
2163
- border-radius: 50%;
2164
- color: #fff;
2165
- text-align: center;
2166
- width: 24px;
2167
- height: 24px;
2168
- cursor: pointer;
2169
- }
2170
-
2171
- .close-mystickymenu-popup span {
2172
- line-height: 24px
2173
- }
2174
- @-webkit-keyframes fa-spin {
2175
- 0% {
2176
- -webkit-transform: rotate(0deg);
2177
- transform: rotate(0deg);
2178
- }
2179
- 100% {
2180
- -webkit-transform: rotate(359deg);
2181
- transform: rotate(359deg);
2182
- }
2183
- }
2184
- @media only screen and (max-width: 1490px) {
2185
- .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2186
- padding-left: 10px;
2187
- }
2188
- .mysticky-welcomebar-setting-right {
2189
- width: 400px;
2190
- }
2191
- }
2192
- @media only screen and (max-width: 1355px) {
2193
- .mysticky-welcomebar-page-option .url-content select {
2194
- width: 130px;
2195
- }
2196
- .mysticky-welcomebar-page-option .url-content input[type="text"] {
2197
- width: 180px;
2198
- }
2199
- .mysticky-welcomebar-setting-action {
2200
- display: block;
2201
- }
2202
- .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2203
- padding-left: 0;
2204
- padding-top: 10px;
2205
- }
2206
- }
2207
- @media only screen and (max-width: 1200px) {
2208
- .mysticky-welcomebar-page-option .url-content select {
2209
- width: 110px;
2210
- }
2211
- .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
2212
- width: 230px;
2213
- }
2214
- .mysticky-welcomebar-page-option {
2215
- padding: 10px 3px;
2216
- }
2217
- .mysticky-welcomebar-page-option .url-content input[type="text"] {
2218
- width: 150px;
2219
- }
2220
- }
2221
- @media only screen and (max-width: 1100px) {
2222
- .mysticky-welcomebar-setting-right {
2223
- width: 340px;
2224
- right: 40px;
2225
- }
2226
- }
2227
- @media only screen and (max-width: 1024px) {
2228
- .mysticky-welcomebar-setting-right {
2229
- right: 40px;
2230
- width: 310px;
2231
- }
2232
- .mysticky-welcomebar-setting-content > label {
2233
- font-size: 16px;
2234
- width: 200px;
2235
- padding-right: 10px;
2236
- }
2237
- .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
2238
- max-width: 250px;
2239
- }
2240
- }
2241
-
2242
-
2243
-
2244
- .mysticky-custom-fields-tooltip{
2245
- position: relative;
2246
- margin-left: 20px;
2247
- }
2248
- .mysticky-custom-fields-tooltip:hover p {
2249
- bottom: 100%;
2250
- opacity: 1;
2251
- visibility: visible;
2252
- }
2253
-
2254
- .mysticky-custom-fields-tooltip a.mysticky-tooltip {
2255
- width: 20px;
2256
- height: 20px;
2257
- line-height: 20px;
2258
- border-radius: 35px;
2259
- padding: 0;
2260
- text-align: center;
2261
- font-size: 12px;
2262
- display: inline-block;
2263
- color: #ffffff;
2264
- text-decoration: none;
2265
- }
2266
- .mysticky-custom-fields-tooltip a.mysticky-tooltip .dashicons{
2267
- text-transform: uppercase;
2268
- color: #1E1E1E;
2269
- }
2270
- .mysticky-custom-fields-tooltip p {
2271
- margin: 0;
2272
- margin-bottom: 0px;
2273
- background-color: #000;
2274
- width: 380px;
2275
- padding: 10px 10px;
2276
- border-radius: 8px;
2277
- color: #fff;
2278
- position: absolute;
2279
- bottom: 200%;
2280
- left: -20px;
2281
- margin-bottom: 10px;
2282
- -webkit-transition: all 0.5s ease 0s;
2283
- -moz-transition: all 0.5s ease 0s;
2284
- transition: all 0.5s ease 0s;
2285
- opacity: 0;
2286
- visibility: hidden;
2287
- }
2288
- .mysticky-custom-fields-tooltip p::before {
2289
- content: "";
2290
- border-top: 10px solid #000;
2291
- border-left: 10px solid transparent;
2292
- border-right: 10px solid transparent;
2293
- width: 0;
2294
- height: 0;
2295
- position: absolute;
2296
- bottom: -8px;
2297
- left: 25px;
2298
- }
2299
-
2300
- .mysticky-welcomebar-poptin-content{
2301
- font-size: 18px;
2302
- display: flex;
2303
- align-content: center;
2304
- }
2305
- .mysticky-welcomebar-poptin-content a{
2306
- display: inline-block;
2307
- padding: 0 5px;
2308
- text-decoration: none;
2309
- }
2310
- .mysticky-welcome-poptin-logo{width: 100px;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ a:active, a:focus, li:focus, li:active {
2
+ outline: none !important;
3
+ border: none !important;
4
+ text-decoration: none !important;
5
+ box-shadow: none !important;
6
+ -webkit-tap-highlight-color: transparent !important;
7
+ -webkit-user-select: none; / Chrome/Safari /
8
+ -moz-user-select: none; / Firefox /
9
+ -ms-user-select: none; / IE10+ /
10
+ user-select: none;
11
+ }
12
+
13
+ div#wpcontent{background:none !important;}
14
+
15
+
16
+ /*@font-face {
17
+ font-family: 'poppinsregular';
18
+ src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
19
+ url('../fonts/poppins-regular-webfont.woff') format('woff');
20
+ font-weight: normal;
21
+ font-style: normal;
22
+ }
23
+
24
+ @font-face {
25
+ font-family: 'poppinsbold';
26
+ src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'),
27
+ url('../fonts/poppins-bold-webfont.woff') format('woff');
28
+ font-weight: normal;
29
+ font-style: normal;
30
+ }
31
+
32
+ @font-face {
33
+ font-family: 'poppins_lightregular';
34
+ src: url('../fonts/poppins-light-webfont.woff2') format('woff2'),
35
+ url('../fonts/poppins-light-webfont.woff') format('woff');
36
+ font-weight: normal;
37
+ font-style: normal;
38
+ }
39
+ */
40
+ @font-face {
41
+ font-family: 'Lato', sans-serif;
42
+ src: url('../fonts/lato-v20-latin-regular.woff') format('woff');
43
+ font-weight: normal;
44
+ font-style: normal;
45
+ }
46
+
47
+ @font-face {
48
+ font-family: 'Lato', sans-serif;
49
+ src: url('../fonts/lato-v20-latin-300.woff') format('woff');
50
+ font-weight: 300;
51
+ font-style: normal;
52
+ }
53
+
54
+ @font-face {
55
+ font-family: 'Lato', sans-serif;
56
+ src: url('../fonts/lato-v20-latin-700.woff') format('woff');
57
+ font-weight: 700;
58
+ font-style: normal;
59
+ }
60
+
61
+ @font-face {
62
+ font-family: 'Lato', sans-serif;
63
+ src: url('../fonts/lato-semibold.woff') format('woff');
64
+ font-weight: semibold;
65
+ font-style: normal;
66
+ }
67
+
68
+ #custom-handle {
69
+ width: 3em;
70
+ height: 1.6em;
71
+ top: 50%;
72
+ margin-top: -.8em;
73
+ text-align: center;
74
+ line-height: 1.6em;
75
+ }
76
+
77
+ #mystickymenu {
78
+ font-family: 'Lato', sans-serif;
79
+ /*background: #fff;
80
+ padding: 0 0 15px 0;
81
+ border-radius: 10px;*/
82
+ }
83
+
84
+ .main-content {
85
+ float: left;
86
+ width: 65%;
87
+ }
88
+
89
+ .main-sidebar {
90
+ float: right;
91
+ width: 30%;
92
+ background: #ffffff;
93
+ border: 1px solid #e5e5e5;
94
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
95
+ }
96
+
97
+ .main-sidebar h3 {
98
+ margin: 0;
99
+ padding: 8px 12px;
100
+ border-bottom: 1px solid #ececec;
101
+ }
102
+
103
+ .main-sidebar .inner {
104
+ padding: 10px;
105
+ }
106
+
107
+ .main-sidebar p {
108
+ padding: 8px;
109
+ margin: 0;
110
+ border-top: solid 1px #e5e5e5;
111
+ }
112
+
113
+ /*.mystickyinput {padding-top: 6px;}*/
114
+ @media screen and (max-width: 782px) {
115
+ .main-content, .main-sidebar {
116
+ width: 100%;
117
+ float: none;
118
+ clear: both;
119
+ }
120
+ }
121
+
122
+ .myssticky-remove-hand {
123
+ cursor: default;
124
+ }
125
+
126
+ /* */
127
+ .mystickymenu-content-section input[type="number"]#myfixed_zindex {
128
+ -moz-appearance: textfield-multiline;
129
+ }
130
+
131
+ .mystickymenu-content-section input[type="number"] {
132
+ -moz-appearance: textfield;
133
+ }
134
+
135
+ .mystickymenu-content-section input[type="number"]::-webkit-inner-spin-button, .mystickymenu-content-section input[type="number"]::-webkit-outer-spin-button {
136
+ -webkit-appearance: none;
137
+ margin: 0;
138
+ }
139
+
140
+ .mystickymenu-content-section .mysticky-number {
141
+ display: inline-block;
142
+ margin: 0 0 10px;
143
+ position: relative;
144
+ }
145
+
146
+ #mystickymenu .mystickymenu-content-section .mysticky-number {
147
+ /*width: 90px;*/
148
+ }
149
+
150
+ #mystickymenu input[type=number] {
151
+ color: #A7A7A7;
152
+ border-radius: 21px;
153
+ background-color: #ffffff;
154
+ border: 1px solid #DCE2E2;
155
+ font-size: 14px;
156
+ font-weight: 400;
157
+ height: 42px;
158
+ padding: 0 10px 0 12px;
159
+ margin: 0;
160
+ width: 310px;
161
+ box-shadow: none;
162
+ }
163
+
164
+ .pt_number {
165
+ display: inline-block;
166
+ vertical-align: top;
167
+ margin-top: 7px;
168
+ }
169
+
170
+ .mysticky-welcomebar-setting-content-right input[type="text"]:disabled {
171
+ color: #a0a5aa;
172
+ border-color: #ddd;
173
+ background-color: #f7f7f7;
174
+ }
175
+
176
+ .mystickymenu-content-section .mysticky-number:focus {
177
+ outline: 0;
178
+ }
179
+
180
+ .mystickymenu-content-section .mysticky-number .pt_number {
181
+ float: left;
182
+ position: relative;
183
+ height: 30px;
184
+ }
185
+
186
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton {
187
+ position: relative;
188
+ cursor: pointer;
189
+ border-left: 1px solid #b7b7b7;
190
+ width: 15px;
191
+ text-align: center;
192
+ color: #333;
193
+ font-size: 14px;
194
+ line-height: 1.1;
195
+ -webkit-transform: translateX(-100%);
196
+ transform: translateX(-100%);
197
+ -webkit-user-select: none;
198
+ -moz-user-select: none;
199
+ -ms-user-select: none;
200
+ user-select: none;
201
+ }
202
+
203
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton:active {
204
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
205
+ -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
206
+ }
207
+
208
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberup {
209
+ position: absolute;
210
+ height: 50%;
211
+ top: 0;
212
+ border-bottom: 1px solid #b7b7b7;
213
+ }
214
+
215
+ .mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberdown {
216
+ position: absolute;
217
+ bottom: 0px;
218
+ height: 50%;
219
+ }
220
+
221
+ /* */
222
+
223
+ input#mysticky_class_selector {
224
+ border-radius: 24px;
225
+ border: 1px solid #E6E5EC;
226
+ height: 46px;
227
+ padding: 0 26px;
228
+ width: 49%
229
+ }
230
+
231
+ .mystickymenu-content-section {
232
+ background-color: #F9FCFC;
233
+ border-radius: 7px;
234
+ margin-bottom: 20px;
235
+ border: 1px solid #E1E6E6;
236
+ }
237
+
238
+ input#myfixed_disable_small_screen {
239
+ border-radius: 21px;
240
+ }
241
+
242
+ input#mysticky_active_on_height_home {
243
+ border-radius: 21px;
244
+ }
245
+
246
+ textarea#myfixed_cssstyle {
247
+ width: 100%;
248
+ margin-top: 12px;
249
+ border-radius: 10px;
250
+ background-color: #fff;
251
+ height: 120px;
252
+ resize: none;
253
+ border: 1px solid #DCE2E2;
254
+ padding: 10px 10px;
255
+ }
256
+
257
+ label {
258
+ font-size: 15px;
259
+ }
260
+
261
+ .sticky-class-sec tr td {
262
+ width: 50%;
263
+ }
264
+
265
+ .px-wrap {
266
+ position: relative;
267
+ display: inline-block;
268
+ vertical-align: top;
269
+ }
270
+
271
+ .mystickymenu-content-option {
272
+ padding: 20px 20px 0;
273
+ }
274
+
275
+ .mystickymenu-heading {
276
+ padding-bottom: 20px;
277
+ }
278
+
279
+ .myStickymenu-header-title {
280
+ background-color: #B2D2FC;
281
+ padding: 13px 20px;
282
+ border-radius: 10px 10px 0 0;
283
+ }
284
+
285
+ .myStickymenu-header-title h3 {
286
+ margin: 0;
287
+ color: #1F4B84;
288
+ font-size: 18px;
289
+ font-weight: 600;
290
+ line-height: 1.2;
291
+ }
292
+
293
+ .mystickymenu-heading p {
294
+ background-color: #D6EFFF;
295
+ color: #1F4B84;
296
+ border-radius: 0 0 10px 10px;
297
+ padding: 13px 20px;
298
+ margin: 0;
299
+ font-size: 14px;
300
+ line-height: 28px;
301
+ }
302
+
303
+ .mystickynumber {
304
+ position: relative;
305
+ padding-left: 30px;
306
+ }
307
+
308
+ .pt_numberbutton.pt_numberup {
309
+ height: 25px;
310
+ width: 25px;
311
+ line-height: 25px;
312
+ background-color: #808080;
313
+ border-radius: 50%;
314
+ position: relative;
315
+ margin-left: 5px;
316
+ display: inline-block;
317
+ color: white;
318
+ font-size: 21px;
319
+ cursor: pointer;
320
+ text-align: center;
321
+ margin-top: 2px;
322
+ }
323
+
324
+ .pt_numberbutton.pt_numberdown {
325
+ height: 25px;
326
+ width: 25px;
327
+ line-height: 25px;
328
+ background-color: #808080;
329
+ border-radius: 50%;
330
+ position: absolute;
331
+ top: 8px;
332
+ left: 0;
333
+ display: inline-block;
334
+ color: white;
335
+ font-size: 21px;
336
+ cursor: pointer;
337
+ text-align: center;
338
+ }
339
+
340
+ span.input-px {
341
+ height: 42px;
342
+ width: 57px;
343
+ background-color: #808080;
344
+ position: absolute;
345
+ right: 0;
346
+ top: 0px;
347
+ display: inline-block;
348
+ vertical-align: top;
349
+ font-size: 14px;
350
+ border-radius: 0 21px 21px 0;
351
+ color: #fff;
352
+ line-height: 42px;
353
+ text-align: center;
354
+ }
355
+
356
+ .mysticky_device_upgrade {
357
+ background-color: #f0ecfb;
358
+ border-radius: 20px;
359
+ padding: 15px 40px 20px 20px;
360
+ }
361
+
362
+ .mystickymenu-content-section.mystickymenu-content-upgrade {
363
+ background-color: #f4f4fd;
364
+ }
365
+
366
+ .myStickymenu-upgrade a {
367
+ background: #E1DAF6;
368
+ border-radius: 20px;
369
+ color: #7559C0;
370
+ padding-top: 2px;
371
+ padding-bottom: 6px;
372
+ padding-left: 10px;
373
+ padding-right: 10px;
374
+ font-weight: bold;
375
+ text-transform: uppercase;
376
+ font-size: 12px;
377
+ display: inline-block;
378
+ vertical-align: top;
379
+ line-height: 1;
380
+ }
381
+ .myStickymenu-upgrade {
382
+ float: right;
383
+ }
384
+
385
+ .myStickymenu-upgrade a:before {
386
+ content: "\f160";
387
+ font-family: dashicons;
388
+ position: relative;
389
+ top: 3px;
390
+ font-size: 16px;
391
+ }
392
+
393
+ .mystickymenu-input-section ul.mystickymenu-input-multicheckbox li {
394
+ display: inline-block;
395
+ width: 21%;
396
+ }
397
+
398
+ input#submit.button.button-primary {
399
+ background: #00c67c;
400
+ border-color: #00c67c;
401
+ text-transform: uppercase;
402
+ border-radius: 31px;
403
+ font-size: 26px;
404
+ padding-left: 23px;
405
+ padding-right: 23px;
406
+ height: 60px;
407
+ width: 200px;
408
+ border: 0;
409
+ box-shadow: none;
410
+ font-weight: 600;
411
+ text-shadow: none;
412
+ }
413
+
414
+ input.button.button-secondary.confirm {
415
+ background: #969696;
416
+ border-color: #969696;
417
+ text-transform: uppercase;
418
+ font-size: 26px;
419
+ padding-left: 23px;
420
+ padding-right: 23px;
421
+ float: right;
422
+ color: white;
423
+ margin-right: 10px;
424
+ height: 60px;
425
+ width: 200px;
426
+ border-radius: 31px;
427
+ font-weight: 600;
428
+ }
429
+
430
+ table ul.mystickymenu-input-multicheckbox {
431
+ width: 100%;
432
+ display: inline-flex;
433
+ }
434
+
435
+ p.myStickymenu-review a {
436
+ font-size: 20px;
437
+ }
438
+
439
+ table ul.mystickymenu-input-multicheckbox li {
440
+ padding-right: 21px;
441
+ }
442
+
443
+ table {
444
+ width: 100%;
445
+ }
446
+
447
+ #mystickymenu table tr td {
448
+ padding: 20px;
449
+ }
450
+
451
+ div#mystickymenu {
452
+ overflow-x: hidden;
453
+ overflow-y: hidden;
454
+ }
455
+
456
+ label.mysticky_title {
457
+ font-weight: 500;
458
+ font-size: 18px;
459
+ line-height: 1.2;
460
+ color: #4F4F4F;
461
+ }
462
+
463
+ .mystickymenu-content-option p label.mysticky_text {
464
+ margin-left: 0px;
465
+ }
466
+
467
+ span.mysticky_text {
468
+ font-size: 14px;
469
+ color: #9E9E9E;
470
+ margin-left: 20px;
471
+ font-style: italic;
472
+ }
473
+
474
+ label.mysticky_text {
475
+ font-size: 14px;
476
+ /*color: #9E9E9E;*/
477
+ margin-left: 20px;
478
+ font-style: italic;
479
+ }
480
+
481
+ select#mystickymenu-select {
482
+ border-radius: 24px;
483
+ border: 1px solid #E6E5EC;
484
+ height: 46px;
485
+ box-shadow: none;
486
+ padding: 0 26px;
487
+ width: 49%;
488
+ display: inline-block;
489
+ vertical-align: top;
490
+ }
491
+
492
+ .mystickymenu-input-section {
493
+ margin-top: 9px;
494
+ }
495
+
496
+ label.mysticky_title.css-style-title {
497
+ font-size: 20px;
498
+ }
499
+
500
+ span.wp-color-result-text {
501
+ display: none;
502
+ }
503
+
504
+ button.button.wp-color-result {
505
+ border-radius: 50%;
506
+ height: 30px !important;
507
+ }
508
+ button.button.wp-color-result .color-alpha {
509
+ border-radius: 50% !important;
510
+ height: 28px !important;
511
+ }
512
+
513
+ .mystickymenu-content-section h3 {
514
+ margin-left: 20px;
515
+ font-weight: 600;
516
+ font-size: 26px;
517
+ line-height: 1.2;
518
+ color: #4F4F4F;
519
+ margin: 0;
520
+ padding: 24px 20px;
521
+ }
522
+
523
+ .form-table {
524
+ margin-top: 0;
525
+ }
526
+
527
+ ul.mystickymenu-input-multicheckbox li span {
528
+ font-size: 16px;
529
+ color: #4F4F4F;
530
+ }
531
+
532
+ .mystickymenu-input-section label {
533
+ /*color: #9E9E9E;*/
534
+ font-size: 16px;
535
+ }
536
+ #mystickymenu .mystickymenu-input-section input.mystickymenu_normal_text{
537
+ border-radius: 0px;
538
+ height: 35px;
539
+ margin: 10px;
540
+ }
541
+ #mystickymenu .mystickymenu-input-section span.description{
542
+ font-style: normal;
543
+ font-size: 16px;
544
+ }
545
+ .myStickymenu-upgrade a {
546
+ text-decoration: none;
547
+ color: #7559C0;
548
+ }
549
+
550
+ #mystickymenu p.submit {
551
+ margin-top: 0;
552
+ padding-top: 0;
553
+ float: right;
554
+ }
555
+
556
+ td {
557
+ vertical-align: top !important;
558
+ }
559
+ p.description.mystuckymenu-class-id {
560
+ display: flex;
561
+ margin: 12px 0 0 0;
562
+ line-height: 1.5;
563
+ }
564
+
565
+ p.description.mystuckymenu-class-id .dashicons-controls-play{
566
+ background: #a4a5a5;
567
+ color: #ffffff;
568
+ border-radius: 50%;
569
+ }
570
+ p.description.mystuckymenu-class-id .dashicons-controls-play::before {
571
+ margin-left: 2px;
572
+ }
573
+ p.description {
574
+ color: rgba(79, 79, 79, 0.5);
575
+ font-size: 12px;
576
+ line-height: 1.2;
577
+ margin: 5px 0 0;
578
+ }
579
+
580
+ div#slider.ui-slider {
581
+ width: 229px;
582
+ background-color: #DCE2E2;
583
+ height: 2px;
584
+ border: 0;
585
+ border-radius: 2px;
586
+ position: relative;
587
+ }
588
+
589
+ .mystickymenu-content-section .ui-state-active, .ui-widget-content .ui-state-active {
590
+ color: #454545;
591
+ }
592
+
593
+ #mystickymenu #custom-handle {
594
+ width: 1.6em;
595
+ border-radius: 50%;
596
+ background-color: #fff;
597
+ box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
598
+ border: 0;
599
+ position: absolute;
600
+ }
601
+ .sticky-header-menu {
602
+ text-align: center;
603
+ padding: 0 0 20px 0;
604
+ }
605
+ .sticky-header-menu ul {
606
+ display: inline-block;
607
+ padding: 1px;
608
+ background-color: #D6EFFF;
609
+ -webkit-border-radius: 23px;
610
+ -moz-border-radius: 23px;
611
+ border-radius: 23px;
612
+ }
613
+ .sticky-header-menu ul li {
614
+ display: inline-block;
615
+ margin: 0;
616
+ }
617
+ .sticky-header-menu ul li a {
618
+ display: inline-block;
619
+ padding: 0 20px;
620
+ line-height: 40px;
621
+ height: 40px;
622
+ font-size: 16px;
623
+ text-decoration: none;
624
+ -webkit-border-radius: 20px;
625
+ -moz-border-radius: 20px;
626
+ border-radius: 20px;
627
+ }
628
+ .sticky-header-menu ul li a:hover {
629
+ background: #f0ecfb;
630
+ color: #7559C0;
631
+ }
632
+ .sticky-header-menu ul li a.active {
633
+ background: #E1DAF6;
634
+ color: #7559C0;
635
+ }
636
+ /*.sticky-header-content {
637
+ display: none;
638
+ }*/
639
+ .mysticky-welcomebar-setting-content-right label.mysticky-welcomebar-switch {
640
+ width: 55px;
641
+ }
642
+
643
+ /*New Welcomebar Page css*/
644
+ .mystickymenu-new-widget-wrap, .mystickymenu-new-widget-wrap * {
645
+ box-sizing: border-box;
646
+ }
647
+ .mystickymenu-new-widget-wrap {
648
+ border-radius: 10px;
649
+ box-shadow: 0 0 6px #ccc;
650
+ padding: 10px;
651
+ margin: 20px auto 0 auto;
652
+ width: 100%;
653
+ max-width: 776px;
654
+ background: #fff url(../images/new_widget_bg.png) no-repeat right bottom;
655
+ background-size: auto 100%;
656
+ font-family: 'Lato', sans-serif;
657
+ line-height: 20px;
658
+ }
659
+ .mystickymenu-new-widget-wrap h2 {
660
+ font-style: normal;
661
+ font-weight: 600;
662
+ font-size: 20px;
663
+ line-height: 30px;
664
+ color: #1e1e1e;
665
+ margin: 0;
666
+ text-align: center;
667
+ }
668
+ a.new-upgrade-button {
669
+ height: 40px;
670
+ background: #7761DF;
671
+ border-radius: 100px;
672
+ border: solid 1px #7761DF;
673
+ display: inline-block;
674
+ text-align: center;
675
+ color: #fff;
676
+ line-height: 40px;
677
+ margin: 10px 0 10px 10px;
678
+ padding: 0 25px;
679
+ text-decoration: none;
680
+ text-transform: uppercase;
681
+ }
682
+ .mystickymenu-new-widget-row ul {
683
+ display: flex;
684
+ align-items: center;
685
+ flex-wrap: wrap;
686
+ margin-top: 0;
687
+ margin-bottom: 0;
688
+ }
689
+ .mystickymenu-new-widget-row ul li {
690
+ width: 33.33%;
691
+ padding: 10px 10px 0px;
692
+ margin-bottom: 0;
693
+ }
694
+ .mystickymenu-feature {
695
+ margin: 30px 0 0 0;
696
+ background: #fff;
697
+ border: 1px solid #605dec;
698
+ box-sizing: border-box;
699
+ border-radius: 4px;
700
+ padding: 30px 15px 10px 15px;
701
+ min-height: 186px;
702
+ position: relative;
703
+ }
704
+ .mystickymenu-feature-top {
705
+ width: 50px;
706
+ height: 50px;
707
+ border: solid 1px #605dec;
708
+ border-radius: 50%;
709
+ position: absolute;
710
+ left: 0;
711
+ right: 0;
712
+ margin: 0 auto;
713
+ top: -25px;
714
+ background: #fff;
715
+ z-index: 11;
716
+ padding: 10px;
717
+ }
718
+ .feature-title {
719
+ font-family: 'Lato', sans-serif;
720
+ font-style: normal;
721
+ font-weight: 700;
722
+ font-size: 13px;
723
+ line-height: 18px;
724
+ color: #1e1e1e;
725
+ }
726
+ .feature-description {
727
+ font-family: 'Lato', sans-serif;
728
+ font-style: normal;
729
+ font-weight: 400;
730
+ font-size: 13px;
731
+ line-height: 18px;
732
+ color: #1e1e1e;
733
+ }
734
+ .mystickymenu-feature-top img {
735
+ width: auto;
736
+ height: auto;
737
+ max-width: 100%;
738
+ max-height: 100%;
739
+ }
740
+ /* Finish new Welcome bar screen css */
741
+ @media only screen and (min-width: 1024px) and (max-width: 1200px) {
742
+ .pt_numberbutton.pt_numberdown {
743
+ position: relative;
744
+ margin-left: -75px;
745
+ top: -29px;
746
+ }
747
+
748
+ .pt_numberbutton.pt_numberup {
749
+ position: relative;
750
+ top: -29px;
751
+ left: 70px;
752
+ }
753
+
754
+ /* span.input-px { */
755
+ /* position: relative; */
756
+ /* left: 112px; */
757
+ /* top: -24px !important; */
758
+ /* margin-left: -20px; */
759
+ /* } */
760
+ }
761
+
762
+
763
+
764
+ #rpt_pricr {
765
+ width: 100%;
766
+ max-width: 1024px;
767
+ margin: 0 auto;
768
+ padding: 25px 25px 25px 25px;
769
+ background: #fff;
770
+
771
+ -webkit-border-radius: 5px;
772
+ -moz-border-radius: 5px;
773
+ border-radius: 5px;
774
+ }
775
+ #rpt_pricr h2 {
776
+ padding: 50px 0 30px;
777
+ text-align: center;
778
+ font-size: 24px;
779
+ }
780
+ .rpt_plans .rpt_plan {
781
+ -moz-box-sizing: border-box;
782
+ -webkit-box-sizing: border-box
783
+ }
784
+
785
+ .rpt_2_plans .rpt_plan {
786
+ margin-right: 2%;
787
+ width: 49%;
788
+ float: left
789
+ }
790
+
791
+ .rpt_2_plans .rpt_plan:last-child {
792
+ margin-right: 0
793
+ }
794
+
795
+ .rpt_3_plans .rpt_plan {
796
+ margin-right: 2%;
797
+ width: 32%;
798
+ float: left
799
+ }
800
+
801
+ .rpt_3_plans .rpt_plan:last-child {
802
+ margin-right: 0
803
+ }
804
+
805
+ .rpt_4_plans .rpt_plan {
806
+ margin-right: 1%;
807
+ width: 24.25%;
808
+ float: left
809
+ }
810
+
811
+ .rpt_4_plans .rpt_plan:last-child {
812
+ margin-right: 0
813
+ }
814
+
815
+ .rpt_5_plans .rpt_plan {
816
+ margin-right: .5%;
817
+ width: 19.6%;
818
+ float: left
819
+ }
820
+
821
+ .rpt_5_plans .rpt_plan:last-child {
822
+ margin-right: 0
823
+ }
824
+
825
+ .rpt_style_bic .rpt_plan, .rpt_style_loc .rpt_plan {
826
+ -webkit-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
827
+ -moz-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
828
+ box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19)
829
+ }
830
+
831
+ .rpt_plans .rpt_plan .rpt_title img {
832
+ margin-right: 10px;
833
+ position: relative;
834
+ vertical-align: middle
835
+ }
836
+
837
+ .rpt_plans .rpt_plan .rpt_title {
838
+ background: #6371db;
839
+ font-weight: 300;
840
+ padding: 24px 18px;
841
+ font-size: 26px;
842
+ color: #fff;
843
+ line-height: 35px;
844
+ height: auto;
845
+ }
846
+
847
+ .rpt_plans .rpt_plan .rpt_title span {
848
+ display: inline-block;
849
+ position: relative;
850
+ top: -10px
851
+ }
852
+
853
+ .rpt_style_basic .rpt_plan .rpt_title {
854
+ border-bottom: #6371db solid 1px;
855
+ border-top-left-radius: 8px;
856
+ border-top-right-radius: 8px;
857
+ }
858
+
859
+ .rpt_style_spec .rpt_plan .rpt_title {
860
+ color: #fff
861
+ }
862
+
863
+ .rpt_style_bic .rpt_plan .rpt_title, .rpt_style_loc .rpt_plan .rpt_title, .rpt_style_swl .rpt_plan .rpt_title {
864
+ background: #333
865
+ }
866
+
867
+ .rpt_plans .rpt_sm_title .rpt_plan .rpt_title {
868
+ font-size: 20px;
869
+ line-height: 18px
870
+ }
871
+
872
+ .rpt_plans .rpt_xsm_title .rpt_plan .rpt_title {
873
+ font-size: 15px;
874
+ line-height: 15px
875
+ }
876
+
877
+ .rpt_4_plans .rpt_plan .rpt_title {
878
+ font-size: 17px;
879
+ line-height: 15px
880
+ }
881
+
882
+ .rpt_4_plans .rpt_sm_title .rpt_plan .rpt_title {
883
+ font-size: 15px;
884
+ line-height: 13px
885
+ }
886
+
887
+ .rpt_4_plans .rpt_xsm_title .rpt_plan .rpt_title {
888
+ font-size: 13px;
889
+ line-height: 11px
890
+ }
891
+
892
+ .rpt_5_plans .rpt_plan .rpt_title {
893
+ font-size: 15px;
894
+ line-height: 13px
895
+ }
896
+
897
+ .rpt_5_plans .rpt_sm_title .rpt_plan .rpt_title {
898
+ font-size: 13px;
899
+ line-height: 11px
900
+ }
901
+
902
+ .rpt_5_plans .rpt_xsm_title .rpt_plan .rpt_title {
903
+ font-size: 12px;
904
+ line-height: 10px
905
+ }
906
+
907
+ .rpt_plans .rpt_recommended_plan .rpt_title {
908
+ background: #6371db
909
+ }
910
+
911
+ .rpt_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
912
+ position: relative;
913
+ top: -44px;
914
+ left: -10px;
915
+ font-size: 35px;
916
+ line-height: 0
917
+ }
918
+
919
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
920
+ top: -36px
921
+ }
922
+
923
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
924
+ top: -26px
925
+ }
926
+
927
+ .rpt_sm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
928
+ font-size: 30px;
929
+ top: -44px;
930
+ left: -4px
931
+ }
932
+
933
+ .rpt_xsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
934
+ font-size: 25px;
935
+ top: -30px;
936
+ left: -4px
937
+ }
938
+
939
+ .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
940
+ font-size: 21px;
941
+ top: -14px;
942
+ left: -4px
943
+ }
944
+
945
+ .rpt_style_basic .rpt_plan .rpt_head {
946
+ background: #ec86c6
947
+ }
948
+
949
+ .rpt_style_spec .rpt_plan .rpt_head {
950
+ background: #fff
951
+ }
952
+
953
+ .rpt_style_swl .rpt_plan .rpt_head {
954
+ background: #fff
955
+ }
956
+
957
+ .rpt_plans .rpt_plan .rpt_head .rpt_price {
958
+ padding: 6px 10px;
959
+ font-size: 74px;
960
+ line-height: 80px;
961
+ font-weight: 300;
962
+ text-align: center;
963
+ color: #ffffff
964
+ }
965
+
966
+ .rpt_style_basic .rpt_plan .rpt_head .rpt_price, .rpt_style_spec .rpt_plan .rpt_head .rpt_price {
967
+ text-shadow: 1px 2px 7px rgba(0, 0, 0, .6)
968
+ }
969
+
970
+ .rpt_style_swl .rpt_plan .rpt_head .rpt_price {
971
+ color: #000
972
+ }
973
+
974
+ .rpt_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
975
+ font-size: 62px
976
+ }
977
+
978
+ .rpt_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
979
+ font-size: 56px
980
+ }
981
+
982
+ .rpt_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
983
+ font-size: 38px
984
+ }
985
+
986
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_price {
987
+ font-size: 69px;
988
+ line-height: 80px
989
+ }
990
+
991
+ .rpt_4_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
992
+ font-size: 53px;
993
+ line-height: 65px
994
+ }
995
+
996
+ .rpt_4_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
997
+ font-size: 47px;
998
+ line-height: 64px
999
+ }
1000
+
1001
+ .rpt_4_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
1002
+ font-size: 31px;
1003
+ line-height: 60px
1004
+ }
1005
+
1006
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_price {
1007
+ font-size: 59px;
1008
+ line-height: 80px
1009
+ }
1010
+
1011
+ .rpt_5_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
1012
+ font-size: 44px;
1013
+ line-height: 60px
1014
+ }
1015
+
1016
+ .rpt_5_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
1017
+ font-size: 37px;
1018
+ line-height: 53px
1019
+ }
1020
+
1021
+ .rpt_5_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
1022
+ font-size: 24px;
1023
+ line-height: 50px
1024
+ }
1025
+
1026
+ .rpt_plans .rpt_recommended_plan .rpt_head .rpt_price {
1027
+ font-size: 98px
1028
+ }
1029
+
1030
+ .rpt_4_plans .rpt_recommended_plan .rpt_head .rpt_price {
1031
+ font-size: 74px
1032
+ }
1033
+
1034
+ .rpt_5_plans .rpt_recommended_plan .rpt_head .rpt_price {
1035
+ font-size: 67px
1036
+ }
1037
+
1038
+ .rpt_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1039
+ font-size: 83px
1040
+ }
1041
+
1042
+ .rpt_4_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1043
+ font-size: 60px
1044
+ }
1045
+
1046
+ .rpt_5_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
1047
+ font-size: 54px
1048
+ }
1049
+
1050
+ .rpt_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1051
+ font-size: 55px
1052
+ }
1053
+
1054
+ .rpt_4_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1055
+ font-size: 49px
1056
+ }
1057
+
1058
+ .rpt_5_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1059
+ font-size: 41px
1060
+ }
1061
+
1062
+ .rpt_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1063
+ font-size: 42px
1064
+ }
1065
+
1066
+ .rpt_4_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1067
+ font-size: 34px
1068
+ }
1069
+
1070
+ .rpt_5_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
1071
+ font-size: 26px
1072
+ }
1073
+
1074
+ .rpt_plans .rpt_plan .rpt_head .rpt_recurrence {
1075
+ font-size: 13px;
1076
+ font-weight: 300;
1077
+ line-height: 18px;
1078
+ padding: 20px 10px 10px;
1079
+ color: #ffffff;
1080
+ text-align: center
1081
+ }
1082
+
1083
+ .rpt_style_spec .rpt_plan .rpt_head .rpt_recurrence {
1084
+ color: #d3d3d3
1085
+ }
1086
+
1087
+ .rpt_style_bic .rpt_plan .rpt_head .rpt_recurrence, .rpt_style_loc .rpt_plan .rpt_head .rpt_recurrence {
1088
+ color: #f5f5f5
1089
+ }
1090
+
1091
+ .rpt_style_swl .rpt_plan .rpt_head .rpt_recurrence {
1092
+ color: grey
1093
+ }
1094
+
1095
+ .rpt_plans .rpt_sm_recurrence .rpt_plan .rpt_head .rpt_recurrence {
1096
+ font-size: 11px;
1097
+ padding: 20px 40px 4px
1098
+ }
1099
+
1100
+ .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1101
+ font-size: 16px;
1102
+ line-height: 20px;
1103
+ font-weight: 300;
1104
+ text-align: center;
1105
+ padding: 10px 30px 20px
1106
+ }
1107
+
1108
+ .rpt_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1109
+ font-size: 14px
1110
+ }
1111
+
1112
+ .rpt_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1113
+ font-size: 12px
1114
+ }
1115
+
1116
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_subtitle {
1117
+ font-size: 16px;
1118
+ line-height: 18px;
1119
+ padding: 10px 10px 20px
1120
+ }
1121
+
1122
+ .rpt_4_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1123
+ font-size: 14px;
1124
+ line-height: 17px
1125
+ }
1126
+
1127
+ .rpt_4_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1128
+ font-size: 13px;
1129
+ line-height: 16px
1130
+ }
1131
+
1132
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_subtitle {
1133
+ font-size: 15px;
1134
+ line-height: 18px;
1135
+ padding: 10px 10px 20px
1136
+ }
1137
+
1138
+ .rpt_5_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1139
+ font-size: 13px;
1140
+ line-height: 17px
1141
+ }
1142
+
1143
+ .rpt_5_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
1144
+ font-size: 12px;
1145
+ line-height: 16px
1146
+ }
1147
+
1148
+ .rpt_plans .rpt_plan .rpt_head .rpt_description {
1149
+ font-size: 14px;
1150
+ line-height: 20px;
1151
+ padding: 10px 20px;
1152
+ font-weight: 300;
1153
+ text-align: center;
1154
+ color: #ffffff
1155
+ }
1156
+
1157
+ .rpt_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1158
+ font-size: 12px
1159
+ }
1160
+
1161
+ .rpt_style_bic .rpt_plan .rpt_head .rpt_description, .rpt_style_loc .rpt_plan .rpt_head .rpt_description {
1162
+ color: #f5f5f5
1163
+ }
1164
+
1165
+ .rpt_4_plans .rpt_plan .rpt_head .rpt_description {
1166
+ font-size: 13px;
1167
+ line-height: 18px
1168
+ }
1169
+
1170
+ .rpt_4_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1171
+ font-size: 12px;
1172
+ line-height: 17px
1173
+ }
1174
+
1175
+ .rpt_5_plans .rpt_plan .rpt_head .rpt_description {
1176
+ font-size: 12px;
1177
+ line-height: 18px
1178
+ }
1179
+
1180
+ .rpt_5_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
1181
+ font-size: 11px;
1182
+ line-height: 17px
1183
+ }
1184
+
1185
+ .rpt_plans .rpt_plan .rpt_features {
1186
+ padding: 20px;
1187
+ background: #f0ecfb;
1188
+ text-align: center
1189
+ }
1190
+
1191
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1192
+ font-size: 16px;
1193
+ padding: 6px 16px;
1194
+ border-bottom: 1px dotted #d3d3d3
1195
+ }
1196
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature a {
1197
+ color: #333333;
1198
+ }
1199
+
1200
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature:last-child {
1201
+ border-bottom: none
1202
+ }
1203
+
1204
+ .rpt_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1205
+ font-size: 14px
1206
+ }
1207
+
1208
+ .rpt_style_bic .rpt_plan .rpt_features, .rpt_style_loc .rpt_plan .rpt_features, .rpt_style_swl .rpt_plan .rpt_features {
1209
+ background: #fff
1210
+ }
1211
+
1212
+ .rpt_style_swl .rpt_plan .rpt_features .rpt_feature {
1213
+ padding: 5px 16px
1214
+ }
1215
+
1216
+ .rpt_4_plans .rpt_plan .rpt_features .rpt_feature {
1217
+ padding: 6px 10px;
1218
+ font-size: 14px
1219
+ }
1220
+
1221
+ .rpt_4_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1222
+ font-size: 12px
1223
+ }
1224
+
1225
+ .rpt_5_plans .rpt_plan .rpt_features .rpt_feature {
1226
+ padding: 6px 10px;
1227
+ font-size: 13px
1228
+ }
1229
+
1230
+ .rpt_5_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
1231
+ font-size: 11px
1232
+ }
1233
+
1234
+ .rpt_plans .rpt_plan .rpt_foot {
1235
+ display: block;
1236
+ padding: 10px 30px;
1237
+ border-top: #7559C0 solid 2px;
1238
+ background: #7559C0;
1239
+ text-align: center;
1240
+ color: #fff;
1241
+ font-size: 24px;
1242
+ text-decoration: none;
1243
+ font-weight: 300;
1244
+ transition: All .5s ease;
1245
+ -webkit-transition: All .5s ease;
1246
+ -moz-transition: All .5s ease;
1247
+ -o-transition: All .5s ease
1248
+ }
1249
+
1250
+ .rpt_plans .rpt_sm_button .rpt_plan .rpt_foot {
1251
+ font-size: 19px
1252
+ }
1253
+
1254
+ .rpt_style_basic .rpt_plan .rpt_foot {
1255
+ border-bottom-left-radius: 8px;
1256
+ border-bottom-right-radius: 8px
1257
+ }
1258
+
1259
+ .rpt_style_swl .rpt_plan .rpt_foot {
1260
+ border-top: none;
1261
+ padding: 10px 30px 20px;
1262
+ color: #000;
1263
+ background: #333
1264
+ }
1265
+
1266
+ .rpt_4_plans .rpt_plan .rpt_foot {
1267
+ padding: 4px 20px;
1268
+ font-size: 19px
1269
+ }
1270
+
1271
+ .rpt_4_plans .rpt_sm_button .rpt_plan .rpt_foot, .rpt_5_plans .rpt_plan .rpt_foot {
1272
+ padding: 4px 20px;
1273
+ font-size: 17px
1274
+ }
1275
+
1276
+ .rpt_5_plans .rpt_sm_button .rpt_plan .rpt_foot {
1277
+ font-size: 16px
1278
+ }
1279
+
1280
+ .rpt_plans .rpt_plan .rpt_foot:hover {
1281
+ opacity: .8
1282
+ }
1283
+
1284
+ .rpt_style_swl .rpt_plan .rpt_foot:hover {
1285
+ opacity: 1
1286
+ }
1287
+
1288
+ .rpt_plans .rpt_recommended_plan .rpt_foot {
1289
+ font-size: 30px;
1290
+ padding: 16px 0
1291
+ }
1292
+
1293
+ .rpt_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1294
+ font-size: 26px
1295
+ }
1296
+
1297
+ .rpt_4_plans .rpt_recommended_plan .rpt_foot {
1298
+ font-size: 22px;
1299
+ font-weight: 300;
1300
+ padding: 10px 0
1301
+ }
1302
+
1303
+ .rpt_4_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1304
+ font-size: 19px;
1305
+ padding: 10px 0
1306
+ }
1307
+
1308
+ .rpt_5_plans .rpt_recommended_plan .rpt_foot {
1309
+ font-size: 20px;
1310
+ font-weight: 300;
1311
+ padding: 10px 0
1312
+ }
1313
+
1314
+ .rpt_5_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
1315
+ font-size: 18px;
1316
+ padding: 10px 0
1317
+ }
1318
+
1319
+ .rpt_custom_btn {
1320
+ border-bottom-left-radius: 5px;
1321
+ border-bottom-right-radius: 5px;
1322
+ text-align: center;
1323
+ padding: 16px 20px
1324
+ }
1325
+
1326
+ .rpt_plans .rpt_recommended_plan {
1327
+ position: relative;
1328
+ top: -10px
1329
+ }
1330
+
1331
+ .rpt_recommended_plan img.rpt_recommended {
1332
+ position: absolute !important;
1333
+ right: 10px !important
1334
+ }
1335
+
1336
+ .rpt_style_bic .rpt_recommended_plan, .rpt_style_loc .rpt_recommended_plan {
1337
+ -webkit-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1338
+ -moz-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
1339
+ box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39)
1340
+ }
1341
+
1342
+ a.rpt_tooltip {
1343
+ display: block;
1344
+ outline: 0;
1345
+ position: relative
1346
+ }
1347
+
1348
+ a.rpt_tooltip strong {
1349
+ line-height: 30px
1350
+ }
1351
+
1352
+ a.rpt_tooltip > span.intool {
1353
+ width: 90%;
1354
+ padding: 10px;
1355
+ margin-top: 56px;
1356
+ opacity: 0;
1357
+ visibility: hidden;
1358
+ z-index: 10;
1359
+ position: absolute;
1360
+ top: -15px;
1361
+ display: block;
1362
+ color: #f5f5f5;
1363
+ font-size: 13px;
1364
+ line-height: 20px;
1365
+ background: #333;
1366
+ font-weight: 300;
1367
+ text-align: center
1368
+ }
1369
+
1370
+ a.rpt_tooltip:hover {
1371
+ cursor: zoom-in
1372
+ }
1373
+
1374
+ a.rpt_tooltip .rpt_tooltip_plus {
1375
+ text-decoration: none !important;
1376
+ display: inline;
1377
+ font-size: 12px;
1378
+ font-weight: 700;
1379
+ position: relative;
1380
+ top: -6px
1381
+ }
1382
+
1383
+ .rpt_feature:hover a.rpt_tooltip > span.intool {
1384
+ opacity: .98;
1385
+ text-decoration: none;
1386
+ visibility: visible;
1387
+ overflow: visible
1388
+ }
1389
+
1390
+ a.rpt_tooltip span.intool b {
1391
+ width: 10px;
1392
+ height: 10px;
1393
+ margin-left: 35%;
1394
+ margin-top: -15px;
1395
+ position: absolute;
1396
+ -webkit-transform: rotate(-45deg);
1397
+ -moz-transform: rotate(-45deg);
1398
+ -o-transform: rotate(-45deg);
1399
+ transform: rotate(-45deg);
1400
+ display: none \0/;
1401
+ background: #333
1402
+ }
1403
+
1404
+ .rpt_3_plans a.rpt_tooltip > span.intool {
1405
+ margin-left: -1%
1406
+ }
1407
+
1408
+ .rpt_4_plans a.rpt_tooltip > span.intool {
1409
+ margin-left: 0
1410
+ }
1411
+
1412
+ .rpt_5_plans a.rpt_tooltip > span.intool {
1413
+ margin-left: -2%
1414
+ }
1415
+
1416
+ .entry-content .rpt_plan a, .rpt_plan a {
1417
+ border-bottom: none !important;
1418
+ text-decoration: none;
1419
+ }
1420
+
1421
+ .rpt_plans .rpt_plan .rpt_icon {
1422
+ max-width: 30px;
1423
+ max-height: 30px
1424
+ }
1425
+
1426
+ .rpt_plans .rpt_plan img {
1427
+ display: inline;
1428
+ margin: 0 10px 0 0;
1429
+ padding: 0;
1430
+ -webkit-box-shadow: 0 0 0 0 transparent;
1431
+ -moz-box-shadow: 0 0 0 0 transparent;
1432
+ box-shadow: 0 0 0 0 transparent;
1433
+ border: none
1434
+ }
1435
+
1436
+ .mystickymenu-testimonial {
1437
+ position: relative;
1438
+ }
1439
+ .mystickymenu-testimonial .testimonial-data {
1440
+ position: relative;
1441
+ }
1442
+ .mystickymenu-testimonial .testimonial-data {
1443
+ position: relative;
1444
+ margin-left: 30px;
1445
+ padding: 10px 10px 10px 40px;
1446
+ background: #f5f5f5;
1447
+ font-size: 16px;
1448
+ line-height: 22px;
1449
+ }
1450
+ .mystickymenu-testimonial .testimonial-image {
1451
+ position: absolute;
1452
+ height: 60px;
1453
+ width: 60px;
1454
+ overflow: hidden;
1455
+ border-radius: 30px;
1456
+ top: 50%;
1457
+ margin-top: -30px;
1458
+ z-index: 1;
1459
+ }
1460
+ .mystickymenu-testimonial .testimonial-image img {
1461
+ width: 100%;
1462
+ height: auto;
1463
+ }
1464
+ .mystickymenu-testimonial-list {
1465
+ width: 100%;
1466
+ max-width: 1080px;
1467
+ margin: 30px auto;
1468
+ }
1469
+ .testimonial-title {
1470
+ font-weight: bold;
1471
+ font-size: 18px;
1472
+ padding: 0 0 5px 0;
1473
+ }
1474
+ .testimonial-author {
1475
+ font-size: 16px;
1476
+ font-style: italic;
1477
+ font-weight: 500;
1478
+ padding: 5px 0 0 0;
1479
+ }
1480
+ p.udner-title strong {
1481
+ font-size: 30px;
1482
+ padding-bottom: 40px;
1483
+ display: block;
1484
+ color: #b97fcf;
1485
+ text-align: center;
1486
+ }
1487
+ p.udner-title {
1488
+ margin: 0;
1489
+ padding: 0;
1490
+ }
1491
+ @media only screen and (max-width: 640px) {
1492
+ .rpt_plans .rpt_plan {
1493
+ width: 96%;
1494
+ margin: 10px 2% 20px !important
1495
+ }
1496
+
1497
+ .rpt_plans .rpt_plan .rpt_title {
1498
+ position: relative;
1499
+ font-size: 26px !important;
1500
+ line-height: 35px !important
1501
+ }
1502
+
1503
+ .rpt_plans .rpt_plan .rpt_head .rpt_price {
1504
+ font-size: 74px !important;
1505
+ line-height: 100px !important
1506
+ }
1507
+
1508
+ .rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
1509
+ font-size: 17px !important;
1510
+ line-height: 28px !important;
1511
+ padding: 10px 40px 20px
1512
+ }
1513
+
1514
+ .rpt_plans .rpt_plan .rpt_head .rpt_description {
1515
+ font-size: 15px !important;
1516
+ line-height: 26px !important;
1517
+ padding: 0 40px 30px
1518
+ }
1519
+
1520
+ .rpt_plans .rpt_plan .rpt_features .rpt_feature {
1521
+ padding: 6px 16px;
1522
+ font-size: 14px !important
1523
+ }
1524
+
1525
+ .rpt_plans .rpt_plan .rpt_foot {
1526
+ padding: 10px 40px;
1527
+ text-align: center;
1528
+ color: #fff;
1529
+ font-size: 20px
1530
+ }
1531
+
1532
+ .rpt_plans .rpt_recommended_plan .rpt_foot {
1533
+ font-size: 30px;
1534
+ font-weight: 300;
1535
+ padding: 20px 0
1536
+ }
1537
+
1538
+ .rpt_plan .rpt_head .rpt_price .rpt_currency {
1539
+ top: -36px !important;
1540
+ left: -10px !important;
1541
+ font-size: 35px !important
1542
+ }
1543
+ }
1544
+
1545
+ #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature, #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature a, #rpt_pricr .rpt_plan_ori .rpt_foot, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_description, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price .rpt_currency, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_recurrence, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_subtitle, #rpt_pricr .rpt_plan_ori .rpt_title {
1546
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
1547
+ font-weight: 300 !important
1548
+ }
1549
+
1550
+ .client-testimonial {
1551
+ margin: 20px auto 0px;
1552
+ -webkit-border-radius: 5px;
1553
+ -moz-border-radius: 5px;
1554
+ border-radius: 5px;
1555
+ }
1556
+ .client-testimonial span.dashicons.dashicons-yes {
1557
+ background: #00bd00;
1558
+ color: #fff;
1559
+ border-radius: 50%;
1560
+ -webkit-border-radius: 50%;
1561
+ -moz-border-radius: 50%;
1562
+ }
1563
+ .client-testimonial p.text-center {
1564
+ text-align: center;
1565
+ margin: 6px 0;
1566
+ font-size: 14px;
1567
+ }
1568
+ .client-testimonial .payment {
1569
+ margin: 20px 0;
1570
+ text-align: center;
1571
+ }
1572
+ .testimonial-image {
1573
+ width: 10%;
1574
+ display: inline-block;
1575
+ vertical-align: middle;
1576
+ }
1577
+ .testimonial-content {
1578
+ width: 85%;
1579
+ display: inline-block;
1580
+ vertical-align: middle;
1581
+ padding-left: 15px;
1582
+ }
1583
+ .testimonial-image img {
1584
+ border-radius: 50%;
1585
+ -webkit-border-radius: 50%;
1586
+ -moz-border-radius: 50%;
1587
+ width: 100%;
1588
+ height: auto;
1589
+ }
1590
+ .client-testimonial .author {
1591
+ font-weight: bold;
1592
+ padding: 5px 0 0 0;
1593
+ font-size: 14px;
1594
+ }
1595
+ .testimonial-box {
1596
+ padding: 15px;
1597
+ background: #d6efff;
1598
+ -webkit-border-radius: 5px;
1599
+ -moz-border-radius: 5px;
1600
+ border-radius: 5px;
1601
+ }
1602
+
1603
+ /*01-08-2019 welcome bar css*/
1604
+ #sticky-header-welcome-bar *, #sticky-header-welcome-bar ::before, #sticky-header-welcome-bar ::after {
1605
+ -webkit-box-sizing: border-box;
1606
+ -moz-box-sizing: border-box;
1607
+ box-sizing: border-box;
1608
+ }
1609
+ #sticky-header-welcome-bar .iris-picker, #sticky-header-welcome-bar .iris-picker * {
1610
+ -moz-box-sizing: content-box;
1611
+ -webkit-box-sizing: content-box;
1612
+ box-sizing: content-box;
1613
+ }
1614
+ .mysticky-welcomebar-switch {
1615
+ display: inline-block;
1616
+ width:55px;
1617
+ height:30px;
1618
+ position: relative;
1619
+ }
1620
+ .mysticky-welcomebar-switch input {
1621
+ opacity: 0;
1622
+ width: 0;
1623
+ height: 0;
1624
+ }
1625
+
1626
+ .mysticky-welcomebar-switch .slider:before {
1627
+ border-radius: 50%;
1628
+ position: absolute;
1629
+ content: "";
1630
+ height: 24px;
1631
+ width: 25px;
1632
+ left: 2px;
1633
+ top: 1px;
1634
+ background-color: #ffffff;
1635
+ -webkit-transition: .4s;
1636
+ transition: .4s;
1637
+ }
1638
+ .mysticky-welcomebar-switch .slider {
1639
+ border-radius: 15px;
1640
+ position: absolute;
1641
+ cursor: pointer;
1642
+ top: 0;
1643
+ left: 0;
1644
+ right: 0;
1645
+ bottom: 0;
1646
+ background-color: #ccc;
1647
+ border: 2px solid #ccc;
1648
+ -webkit-transition: .4s;
1649
+ transition: .4s;
1650
+ }
1651
+ ..mysticky-welcomebar-switch .slider:before {
1652
+ border-radius: 50%;
1653
+ position: absolute;
1654
+ content: "";
1655
+ height: 24px;
1656
+ width: 25px;
1657
+ left: 2px;
1658
+ top: 1px;
1659
+ background-color: #ffffff;
1660
+ -webkit-transition: .4s;
1661
+ transition: .4s;
1662
+ }
1663
+
1664
+
1665
+ .mysticky-welcomebar-switch input:checked + .slider {
1666
+ background-color: #7761DF;
1667
+ border: 2px solid #7761DF;
1668
+ }
1669
+ .mysticky-welcomebar-switch input:focus + .slider {
1670
+ box-shadow: 0 0 1px #2196F3;
1671
+ }
1672
+ .mysticky-welcomebar-switch input:checked + .slider:before {
1673
+ -webkit-transform: translateX(24px);
1674
+ -ms-transform: translateX(24px);
1675
+ transform: translateX(24px);
1676
+ }
1677
+
1678
+ .welcombar-status-switch{
1679
+ display: inline-block;
1680
+ width:46px;
1681
+ height:24px;
1682
+ position: relative;
1683
+ }
1684
+
1685
+ .welcombar-status-switch .slider:before {
1686
+ border-radius: 50%;
1687
+ position: absolute;
1688
+ content: "";
1689
+ height: 15px;
1690
+ width: 15px;
1691
+ left: 2px;
1692
+ top: 2px;
1693
+ background-color: #ffffff;
1694
+ -webkit-transition: .4s;
1695
+ transition: .4s;
1696
+ }
1697
+ .mysticky-welcomebar-form {
1698
+ background-color: #f8fcfd;
1699
+ border: 1px solid #E1E6E6;
1700
+ padding: 20px;
1701
+ border-radius: 7px;
1702
+ position: relative;
1703
+ }
1704
+ .mysticky-welcomebar-header-title h3 {
1705
+ margin: 0;
1706
+ font-size: 26px;
1707
+ color: #4F4F4F;
1708
+ line-height: 1.2;
1709
+ display: inline-block;
1710
+ vertical-align: top;
1711
+ }
1712
+ .mysticky-welcomebar-header-title h3 + .mysticky-welcomebar-switch {
1713
+ margin-left: 20px;
1714
+ }
1715
+ .mysticky-welcomebar-subheader-title {
1716
+ padding: 40px 0 30px;
1717
+ }
1718
+ .mysticky-welcomebar-subheader-title h4 {
1719
+ margin: 0;
1720
+ font-weight: 400;
1721
+ font-size: 22px;
1722
+ line-height: 1.2;
1723
+ color: #4F4F4F;
1724
+ }
1725
+ .mysticky-welcomebar-setting-content {
1726
+ display: flex;
1727
+ /*align-items: center;*/
1728
+ padding-bottom: 20px;
1729
+ }
1730
+ .mysticky-welcomebar-setting-content.show-on-apper {
1731
+ align-items: flex-start;
1732
+ }
1733
+ .mysticky-welcomebar-setting-content > label {
1734
+ font-size: 18px;
1735
+ line-height: 1.2;
1736
+ color: #4F4F4F;
1737
+ font-weight: 500;
1738
+ margin-top: 10px;
1739
+ width: 255px;
1740
+ padding-right: 10px;
1741
+ }
1742
+ .mysticky-welcomebar-setting-content.show-on-apper > label {
1743
+ margin-top: 10px;
1744
+ }
1745
+ .mysticky-welcomebar-setting-content-right {
1746
+ width: 100%;
1747
+ align-items: center;
1748
+ display: flex;
1749
+ }
1750
+ .mysticky-welcomebar-setting-wrap .myStickymenu-upgrade {
1751
+ display: inline-block;
1752
+ vertical-align: top;
1753
+ float: none;
1754
+ margin-left: 20px;
1755
+ }
1756
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-position .myStickymenu-upgrade {
1757
+ margin-left: 50px;
1758
+ }
1759
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-remove-getbar .myStickymenu-upgrade {
1760
+ margin-left: 130px;
1761
+ }
1762
+ .mysticky-welcomebar-setting-content-right.mysticky-welcomebar-colorpicker .wp-picker-container{
1763
+ display: inline-block;
1764
+ }
1765
+ .mysticky-welcomebar-setting-content-right label {
1766
+ display: inline-block;
1767
+ vertical-align: top;
1768
+ width: 100px;
1769
+ padding-right: 10px;
1770
+ }
1771
+ .mysticky-welcomebar-setting-content-right .wp-picker-input-wrap label {
1772
+ width: auto;
1773
+ }
1774
+ .mysticky-welcomebar-setting-content-right .mysticky-welcomebar-trigger-wrap label {
1775
+ width: auto;
1776
+ }
1777
+ #mystickymenu .mysticky-welcomebar-setting-content-right .px-wrap input {
1778
+ padding-right: 60px;
1779
+ }
1780
+ .mysticky-welcomebar-setting-content-right select ,
1781
+ .mysticky-welcomebar-setting-content-right input[type="text"] ,
1782
+ .mysticky-welcomebar-setting-content-right textarea {
1783
+ width: 400px;
1784
+ height: 42px;
1785
+ border-radius: 20px;
1786
+ color: #32373c;
1787
+ display: block;
1788
+ padding: 0 10px;
1789
+ box-shadow: none;
1790
+ border: 1px solid #DCE2E2;
1791
+ margin: 0;
1792
+ font-size: 14px;
1793
+ font-weight: 400;
1794
+ }
1795
+
1796
+ .mysticky-welcomebar-setting-content-right input::placeholder,
1797
+ .mysticky-welcomebar-setting-content-right input:-ms-input-placeholder,
1798
+ .mysticky-welcomebar-setting-content-right input::-ms-input-placeholder {
1799
+ color: #b5b7b9;
1800
+ opacity:0.6;
1801
+ }
1802
+ .mysticky-welcomebar-setting-content-right select {
1803
+ padding-right: 22px;
1804
+ }
1805
+ .mysticky-welcomebar-setting-content-right textarea {
1806
+ height: 100px;
1807
+ border-radius: 10px;
1808
+ padding-top: 9px;
1809
+ }
1810
+ #mystickymenu .wp-picker-container input[type="text"].wp-color-picker {
1811
+ border-radius: 0;
1812
+ height: 32px;
1813
+ border: 1px solid #DCE2E2;
1814
+ }
1815
+ #mystickymenu .wp-picker-input-wrap .button {
1816
+ height: 32px;
1817
+ }
1818
+ #mystickymenu .form-table .wp-picker-input-wrap label {
1819
+ padding-right: 10px;
1820
+ }
1821
+ .mysticky-welcomebar-setting-action {
1822
+ display: inline-block;
1823
+ vertical-align: top;
1824
+ }
1825
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
1826
+ padding-left: 10px;
1827
+ }
1828
+ .mysticky-welcomebar-redirect label {
1829
+ width: auto;
1830
+ padding-right: 0;
1831
+ padding-top: 10px;
1832
+ }
1833
+ .mysticky-welcomebar-expirydate {
1834
+ position: relative;
1835
+ display: inline-block;
1836
+ vertical-align: top;
1837
+ }
1838
+ .mysticky-welcomebar-setting-content-right .mysticky-welcomebar-expirydate input {
1839
+ padding-left: 55px;
1840
+ }
1841
+ .mysticky-welcomebar-expirydate .dashicons {
1842
+ position: absolute;
1843
+ top: 0;
1844
+ left: 0;
1845
+ bottom: 0;
1846
+ color: #a7a7a7;
1847
+ border-right: 1px solid #a7a7a7;
1848
+ width: 46px;
1849
+ height: 100%;
1850
+ line-height: 40px;
1851
+ }
1852
+ a.create-rule {
1853
+ background-color: #7761DF;
1854
+ color: #fff;
1855
+ display: inline-block;
1856
+ margin: 10px 0 0;
1857
+ vertical-align: top;
1858
+ text-decoration: none;
1859
+ padding: 5px 12px;
1860
+ border-radius: 20px;
1861
+ box-shadow: none;
1862
+ outline: none;
1863
+ }
1864
+ .mysticky-welcomebar-upgrade-main {
1865
+ position: relative;
1866
+ vertical-align: top;
1867
+ width: 100%;
1868
+ padding-right: 10px;
1869
+ padding-bottom: 0;
1870
+ }
1871
+ .mysticky-welcomebar-upgrade-main .myStickymenu-upgrade {
1872
+ float: right;
1873
+ }
1874
+ .mysticky-welcomebar-page-option {
1875
+ margin-bottom: 20px;
1876
+ position: relative;
1877
+ }
1878
+ .mysticky-welcomebar-page-option select {
1879
+ width: 230px;
1880
+ }
1881
+ .mysticky-welcomebar-page-option .myStickymenu-upgrade {
1882
+ display: none;
1883
+ position: absolute;
1884
+ top: 9px;
1885
+ left: 50%;
1886
+ -webkit-transform: translateX(-50%);
1887
+ -moz-transform: translateX(-50%);
1888
+ transform: translateX(-50%);
1889
+ text-align: center;
1890
+ margin-left: 0;
1891
+ }
1892
+ .mysticky-welcomebar-page-option .myStickymenu-upgrade a {
1893
+ padding-top: 5px;
1894
+ padding-bottom: 7px;
1895
+ padding-left: 20px;
1896
+ padding-right: 20px;
1897
+ font-size: 14px;
1898
+ box-shadow: 0 0 3px #999;
1899
+ }
1900
+ .mysticky-welcomebar-page-option:hover .myStickymenu-upgrade {
1901
+ display: block;
1902
+ }
1903
+ .mysticky-welcomebar-page-option .url-content {
1904
+ /*display: flex;*/
1905
+ overflow:hidden;
1906
+ align-items: center;
1907
+ }
1908
+ .mysticky-welcomebar-page-option .url-content > div {
1909
+ padding: 0 5px;
1910
+ float: left;
1911
+
1912
+ }
1913
+
1914
+ .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-values,
1915
+ .mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-option{
1916
+ width: 20%;
1917
+ }
1918
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
1919
+ width: 28%;
1920
+ text-align: right;
1921
+ margin-top: 10px;
1922
+ }
1923
+
1924
+ /*.mysticky-welcomebar-page-option .url-content select {
1925
+ width: 120px;
1926
+ }
1927
+ */
1928
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
1929
+ height: 38px;
1930
+ padding: 0 15px;
1931
+ border-radius: 0;
1932
+ }
1933
+
1934
+ .mysticky-page-option .myStickymenu-upgrade {
1935
+ float: none;
1936
+ position: absolute;
1937
+ top: 0;
1938
+ left: 50%;
1939
+ /* right: 0; */
1940
+ text-align: center;
1941
+ /* background-color: rgba(0,0,0,0.6); */
1942
+ bottom: 0;
1943
+ border-radius: 10px;
1944
+ display: none;
1945
+ align-items: center;
1946
+ justify-content: center;
1947
+ -webkit-transform: translateX(-50%);
1948
+ -moz-transform: translateX(-50%);
1949
+ transform: translateX(-50%);
1950
+ }
1951
+ .mysticky-page-option:hover .myStickymenu-upgrade {
1952
+ display: flex;
1953
+ }
1954
+ .mysticky-page-option .myStickymenu-upgrade a {
1955
+ padding-top: 5px;
1956
+ padding-bottom: 7px;
1957
+ padding-left: 20px;
1958
+ padding-right: 20px;
1959
+ font-size: 14px;
1960
+ box-shadow: 0 0 3px #999;
1961
+ }
1962
+ .mysticky-page-option {
1963
+ background-color: #fff;
1964
+ padding: 10px;
1965
+ margin-bottom: 10px;
1966
+ border: 1px solid #DCE2E2;
1967
+ border-radius: 10px;
1968
+ position: relative;
1969
+ }
1970
+ .mysticky-page-option .url-content {
1971
+ display: flex;
1972
+ align-items: center;
1973
+ }
1974
+ .mysticky-page-option .url-content > div {
1975
+ padding: 0 5px;
1976
+ }
1977
+ .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1978
+ width: 260px;
1979
+ text-align: right;
1980
+ }
1981
+ .mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
1982
+ width: 300px;
1983
+ }
1984
+ .mysticky-page-option .url-content select {
1985
+ width: 250px;
1986
+ }
1987
+ .mysticky-page-option .url-content input[type="text"] {
1988
+ height: 38px;
1989
+ padding: 0 15px;
1990
+ border-radius: 0;
1991
+ }
1992
+ .mystickymenu-page-target-wrap {
1993
+ padding-bottom: 20px;
1994
+ }
1995
+
1996
+ .mysticky-welcomebar-remove-rule ,
1997
+ .mysticky-remove-rule {
1998
+ color: #fff;
1999
+ background-color: #666;
2000
+ text-decoration: none;
2001
+ display: inline-block;
2002
+ vertical-align: top;
2003
+ width: 38px;
2004
+ height: 38px;
2005
+ text-align: center;
2006
+ border-radius: 4px;
2007
+ font-size: 22px;
2008
+ line-height: 35px;
2009
+ }
2010
+ .mysticky-welcomebar-page-options {
2011
+ display: inline-block;
2012
+ vertical-align: top;
2013
+ }
2014
+ /**/
2015
+ .mysticky-welcomebar-setting-right {
2016
+ position: absolute;
2017
+ top: 32px;
2018
+ right: 50px;
2019
+ width: 500px;
2020
+ }
2021
+ .mysticky-welcomebar-header-title::after {
2022
+ content: "";
2023
+ display: block;
2024
+ clear: both;
2025
+ }
2026
+ .mysticky-welcomebar-preview-window {
2027
+ float: right;
2028
+ }
2029
+ .mysticky-welcomebar-header-title {
2030
+ padding-bottom: 20px;
2031
+ }
2032
+ .mysticky-welcomebar-preview-window ul {
2033
+ margin: 0;
2034
+ padding: 0;
2035
+ }
2036
+ .mysticky-welcomebar-preview-window ul li {
2037
+ color: #7761DF;
2038
+ display: inline-block;
2039
+ vertical-align: top;
2040
+ width: 36px;
2041
+ height: 36px;
2042
+ background-color: #DFDDF7;
2043
+ border-radius: 50%;
2044
+ text-align: center;
2045
+ line-height: 36px;
2046
+ margin-bottom: 0;
2047
+ margin-left: 10px;
2048
+ }
2049
+ .mysticky-welcomebar-preview-window ul li.preview-active {
2050
+ color: #fff;
2051
+ background-color: #7761DF;
2052
+ }
2053
+ .mysticky-welcomebar-preview-window ul li .dashicons {
2054
+ line-height: 36px;
2055
+ }
2056
+ .mysticky-welcomebar-preview-screen {
2057
+ background-color: #ffffff;
2058
+ border: 1px solid #DCE2E2;
2059
+ border-radius: 10px;
2060
+ margin: 0 auto;
2061
+ padding: 0;
2062
+ height: 400px;
2063
+ position: relative;
2064
+ overflow: hidden;
2065
+ max-width: 100%;
2066
+ -webkit-transition: all 0.5s ease 0s;
2067
+ -moz-transition: all 0.5s ease 0s;
2068
+ transition: all 0.5s ease 0s;
2069
+ }
2070
+ .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
2071
+ max-width: 320px;
2072
+ }
2073
+ .mysticky-welcomebar-submit {
2074
+ float: right;
2075
+ padding-top: 50px;
2076
+ margin-right: -20px;
2077
+ }
2078
+ .mysticky-welcomebar-form-reset .mysticky-welcomebar-submit {
2079
+ margin-right: 0;
2080
+ padding-top: 30px;
2081
+ }
2082
+ .mysticky-welcomebar-submit input.button-secondary {
2083
+ background: #969696;
2084
+ border-color: #969696;
2085
+ color: #ffffff;
2086
+ text-transform: uppercase;
2087
+ border-radius: 31px;
2088
+ font-size: 26px;
2089
+ margin-right: 10px;
2090
+ padding-left: 23px;
2091
+ padding-right: 23px;
2092
+ height: 60px;
2093
+ width: 200px;
2094
+ border: 0;
2095
+ box-shadow: none;
2096
+ font-weight: 600;
2097
+ text-shadow: none;
2098
+ }
2099
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-buttons {
2100
+ padding-right: 0;
2101
+ }
2102
+ .ui-dialog-buttonset .green-btn.ui-button {
2103
+ background-color: #00c67c;
2104
+ border-color: #00c67c;
2105
+ color: #fff;
2106
+ }
2107
+ .mysticky-welcomebar-setting-content-right.mysticky-welcomebar-setting-redirect-wrap {
2108
+ display: block;
2109
+ }
2110
+ .mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-redirect-wrap .myStickymenu-upgrade {
2111
+ margin-top: 7px;
2112
+ }
2113
+ .updates-form-form {
2114
+ min-height: calc(100vh - 280px);
2115
+ }
2116
+ .popup-form-content {
2117
+ background: #ffffff;
2118
+ min-height: 100px;
2119
+ width: 450px;
2120
+ text-align: center;
2121
+ margin-top: 50px;
2122
+ border: solid 1px #c1c1c1;
2123
+ }
2124
+ .updates-content-buttons button {
2125
+ margin: 10px 3px !important;
2126
+ float: left;
2127
+ }
2128
+ .updates-content-buttons a span {
2129
+ -webkit-animation: fa-spin 0.75s infinite linear;
2130
+ animation: fa-spin 0.75s infinite linear;
2131
+ }
2132
+ .updates-content-buttons a:hover, .updates-content-buttons a:focus {
2133
+ color: #ffffff;
2134
+ background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
2135
+ }
2136
+ .updates-content-buttons a:focus {
2137
+ outline: 0;
2138
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50,100,150,.4);
2139
+ }
2140
+ .updates-content-buttons button.form-cancel-btn {
2141
+ float: right !important;
2142
+ }
2143
+ .form-submit-btn {
2144
+ background-color: #3085d6;
2145
+ }
2146
+ .updates-content-buttons a span {
2147
+ -webkit-animation: fa-spin 0.75s infinite linear;
2148
+ animation: fa-spin 0.75s infinite linear;
2149
+ }
2150
+ .add-update-mystickymenu-title {
2151
+ font-size: 20px;
2152
+ line-height: 30px;
2153
+ padding: 20px 20px 0;
2154
+ }
2155
+ .mystickymenu-form-input {
2156
+ padding: 10px 20px;
2157
+ }
2158
+ .mystickymenu-form-input input {
2159
+ width: 100%;
2160
+ transition: border-color .3s,box-shadow .3s;
2161
+ border: 1px solid #d9d9d9;
2162
+ border-radius: .1875em;
2163
+ font-size: 1.125em;
2164
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
2165
+ box-sizing: border-box;
2166
+ height: 2.625em;
2167
+ margin: 1em auto;
2168
+ }
2169
+ .updates-content-buttons {
2170
+ background: #c1c1c1;
2171
+ padding: 0 20px;
2172
+ }
2173
+ div#wp-mysticky_bar_text-wrap {
2174
+ width: 40%;
2175
+ }
2176
+
2177
+ .mystickymenu-popup {
2178
+ position: fixed;
2179
+ width: 100%;
2180
+ height: 100%;
2181
+ top: 0;
2182
+ left: 0;
2183
+ z-index: 100001;
2184
+ background: rgba(0, 0, 0, .75)
2185
+ }
2186
+
2187
+ .mystickymenu-popup-box {
2188
+ padding: 0;
2189
+ width: 600px;
2190
+ max-width: 100%;
2191
+ margin: auto;
2192
+ top: 50%;
2193
+ position: absolute;
2194
+ left: 0;
2195
+ right: 0;
2196
+ border-radius: 5px;
2197
+ transform: translate(0, -50%);
2198
+ -webkit-transform: translate(0, -50%);
2199
+ -moz-transform: translate(0, -50%);
2200
+ text-align: center;
2201
+ background: #fcfcfc
2202
+ }
2203
+
2204
+ .mystickymenu-popup-header {
2205
+ padding: 15px;
2206
+ font-size: 20px;
2207
+ border-bottom: solid 1px #e6e6e6
2208
+ }
2209
+
2210
+ .mystickymenu-popup-content {
2211
+ background: #fff;
2212
+ padding: 15px;
2213
+ font-size: 14px;
2214
+ line-height: 20px
2215
+ }
2216
+
2217
+ .mystickymenu-popup-content iframe {
2218
+ margin: 30px 0
2219
+ }
2220
+
2221
+ .mystickymenu-popup-footer {
2222
+ padding: 15px;
2223
+ border-top: solid 1px #e6e6e6
2224
+ }
2225
+
2226
+ .mystickymenu-popup-footer button {
2227
+ border: none;
2228
+ padding: 10px 20px;
2229
+ border-radius: 4px;
2230
+ background: #00c478;
2231
+ color: #fff;
2232
+ cursor: pointer;
2233
+ }
2234
+
2235
+ .close-mystickymenu-popup {
2236
+ margin: 0;
2237
+ padding: 0;
2238
+ background: 0 0;
2239
+ border: none;
2240
+ float: right;
2241
+ background: #000;
2242
+ border-radius: 50%;
2243
+ color: #fff;
2244
+ text-align: center;
2245
+ width: 24px;
2246
+ height: 24px;
2247
+ cursor: pointer;
2248
+ }
2249
+
2250
+ .close-mystickymenu-popup span {
2251
+ line-height: 24px
2252
+ }
2253
+ @-webkit-keyframes fa-spin {
2254
+ 0% {
2255
+ -webkit-transform: rotate(0deg);
2256
+ transform: rotate(0deg);
2257
+ }
2258
+ 100% {
2259
+ -webkit-transform: rotate(359deg);
2260
+ transform: rotate(359deg);
2261
+ }
2262
+ }
2263
+ @media only screen and (max-width: 1490px) {
2264
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2265
+ padding-left: 10px;
2266
+ }
2267
+ .mysticky-welcomebar-setting-right {
2268
+ width: 400px;
2269
+ }
2270
+ }
2271
+ @media only screen and (max-width: 1355px) {
2272
+ .mysticky-welcomebar-page-option .url-content select {
2273
+ width: 130px;
2274
+ }
2275
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
2276
+ width: 180px;
2277
+ }
2278
+ .mysticky-welcomebar-setting-action {
2279
+ display: block;
2280
+ }
2281
+ .mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
2282
+ padding-left: 0;
2283
+ padding-top: 10px;
2284
+ }
2285
+ }
2286
+ @media only screen and (max-width: 1200px) {
2287
+ .mysticky-welcomebar-page-option .url-content select {
2288
+ width: 110px;
2289
+ }
2290
+ .mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
2291
+ width: 230px;
2292
+ }
2293
+ .mysticky-welcomebar-page-option {
2294
+ padding: 10px 3px;
2295
+ }
2296
+ .mysticky-welcomebar-page-option .url-content input[type="text"] {
2297
+ width: 150px;
2298
+ }
2299
+ }
2300
+ @media only screen and (max-width: 1100px) {
2301
+ .mysticky-welcomebar-setting-right {
2302
+ width: 340px;
2303
+ right: 40px;
2304
+ }
2305
+ }
2306
+ @media only screen and (max-width: 1024px) {
2307
+ .mysticky-welcomebar-setting-right {
2308
+ right: 40px;
2309
+ width: 310px;
2310
+ }
2311
+ .mysticky-welcomebar-setting-content > label {
2312
+ font-size: 16px;
2313
+ width: 200px;
2314
+ padding-right: 10px;
2315
+ }
2316
+ .mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
2317
+ max-width: 250px;
2318
+ }
2319
+ }
2320
+
2321
+
2322
+
2323
+ .mysticky-custom-fields-tooltip{
2324
+ position: relative;
2325
+ margin-left: 20px;
2326
+ }
2327
+ .mysticky-custom-fields-tooltip:hover p {
2328
+ bottom: 100%;
2329
+ opacity: 1;
2330
+ visibility: visible;
2331
+ }
2332
+
2333
+ .mysticky-custom-fields-tooltip a.mysticky-tooltip {
2334
+ width: 20px;
2335
+ height: 20px;
2336
+ line-height: 20px;
2337
+ border-radius: 35px;
2338
+ padding: 0;
2339
+ text-align: center;
2340
+ font-size: 12px;
2341
+ display: inline-block;
2342
+ color: #ffffff;
2343
+ text-decoration: none;
2344
+ }
2345
+ .mysticky-custom-fields-tooltip a.mysticky-tooltip .dashicons{
2346
+ text-transform: uppercase;
2347
+ color: #1E1E1E;
2348
+ }
2349
+ .mysticky-custom-fields-tooltip p {
2350
+ margin: 0;
2351
+ margin-bottom: 0px;
2352
+ background-color: #000;
2353
+ width: 380px;
2354
+ padding: 10px 10px;
2355
+ border-radius: 8px;
2356
+ color: #fff;
2357
+ position: absolute;
2358
+ bottom: 200%;
2359
+ left: -20px;
2360
+ margin-bottom: 10px;
2361
+ -webkit-transition: all 0.5s ease 0s;
2362
+ -moz-transition: all 0.5s ease 0s;
2363
+ transition: all 0.5s ease 0s;
2364
+ opacity: 0;
2365
+ visibility: hidden;
2366
+ }
2367
+ .mysticky-custom-fields-tooltip p::before {
2368
+ content: "";
2369
+ border-top: 10px solid #000;
2370
+ border-left: 10px solid transparent;
2371
+ border-right: 10px solid transparent;
2372
+ width: 0;
2373
+ height: 0;
2374
+ position: absolute;
2375
+ bottom: -8px;
2376
+ left: 25px;
2377
+ }
2378
+
2379
+ .mysticky-welcomebar-poptin-content{
2380
+ font-size: 18px;
2381
+ display: flex;
2382
+ align-content: center;
2383
+ }
2384
+ .mysticky-welcomebar-poptin-content a{
2385
+ display: inline-block;
2386
+ padding: 0 5px;
2387
+ text-decoration: none;
2388
+ }
2389
+ .mysticky-welcome-poptin-logo{width: 100px;}
2390
+
2391
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn{left: 15px !important;}
2392
+
2393
+
2394
+
2395
+
2396
+
2397
+
2398
+ /*===============================================================================================*/
2399
+
2400
+ /*----------------------------------------------------- Welcome-bar php CSS -------------------------*/
2401
+
2402
+ /*===============================================================================================*/
2403
+
2404
+
2405
+
2406
+ /*.mysticky-welcomebar-fixed .mysticky-w-close-btn {
2407
+ display: none;
2408
+ vertical-align: top;
2409
+ width: 30px;
2410
+ height: 30px;
2411
+ text-align: center;
2412
+ text-decoration: none;
2413
+ line-height: 20px;
2414
+ border-radius: 5px;
2415
+ color: #000;
2416
+ position: absolute;
2417
+ font-family: Lato;
2418
+ top: 5px;
2419
+ left: 5px !important;
2420
+ text-shadow: 0 0 0px #fff;
2421
+ -webkit-transition: all 0.5s ease 0s;
2422
+ -moz-transition: all 0.5s ease 0s;
2423
+ transition: all 0.5s ease 0s;
2424
+ -webkit-transform-origin: 50% 50%;
2425
+ -moz-transform-origin: 50% 50%;
2426
+ transform-origin: 50% 50%;
2427
+
2428
+ background: #000;
2429
+ }
2430
+
2431
+
2432
+ .mysticky-welcomebar-fixed .mysticky-w-close-btn:hover {
2433
+ opacity: 1;
2434
+ -webkit-transform: rotate(180deg);
2435
+ -moz-transform: rotate(180deg);
2436
+ transform: rotate(180deg);
2437
+ }*/
2438
+
2439
+
2440
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2441
+ display: none;
2442
+ vertical-align: top;
2443
+ width: 20px;
2444
+ height: 20px;
2445
+ text-align: center;
2446
+ text-decoration: none;
2447
+ line-height: 20px;
2448
+ border-radius: 5px;
2449
+ color: #000;
2450
+ position: absolute;
2451
+ font-family: Lato;
2452
+ top: 5px;
2453
+ right: 5px !important;
2454
+ text-shadow: 0 0 0px #fff;
2455
+ -webkit-transition: all 0.5s ease 0s;
2456
+ -moz-transition: all 0.5s ease 0s;
2457
+ transition: all 0.5s ease 0s;
2458
+ -webkit-transform-origin: 50% 50%;
2459
+ -moz-transform-origin: 50% 50%;
2460
+ transform-origin: 50% 50%;
2461
+ }
2462
+
2463
+
2464
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
2465
+ opacity: 1;
2466
+ -webkit-transform: rotate(180deg);
2467
+ -moz-transform: rotate(180deg);
2468
+ transform: rotate(180deg);
2469
+ }
2470
+
2471
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close span.dashicons {
2472
+ font-size: 27px;
2473
+ }
2474
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2475
+ display: inline-block;
2476
+ }
2477
+
2478
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
2479
+ /*padding-left: 30px;*/
2480
+ margin: 0 15px;
2481
+ display: none;
2482
+ }
2483
+
2484
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
2485
+ opacity: 1;
2486
+ -webkit-transform: rotate(180deg);
2487
+ -moz-transform: rotate(180deg);
2488
+ transform: rotate(180deg);
2489
+ }
2490
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2491
+ display: inline-block;
2492
+ }
2493
+
2494
+
2495
+ @media only screen and (max-width: 1024px) {
2496
+ .mysticky-welcomebar-fixed {
2497
+ padding: 0 10px 0 10px;
2498
+ }
2499
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2500
+ width: 20px;
2501
+ height: 20px;
2502
+ line-height: 20px;
2503
+ right: 0px;
2504
+ }
2505
+ }
2506
+
2507
+ @media only screen and (max-width: 767px) {
2508
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
2509
+ display: none;
2510
+ }
2511
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-mobile .mysticky-welcomebar-close {
2512
+ display: inline-block;
2513
+ }
2514
+
2515
+ }
2516
+
2517
+ @media only screen and (max-width: 480px) {
2518
+
2519
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
2520
+ right: 7px;
2521
+ }
2522
+ }
2523
+
2524
+
2525
+ /* tooltip css */
2526
+ .tooltip {
2527
+ position: relative;
2528
+ display: inline-block;
2529
+ border-bottom: 1px dotted black;
2530
+ }
2531
+
2532
+ .tooltip .tooltiptext {
2533
+ visibility: hidden;
2534
+ width: 80px;
2535
+ background-color: black;
2536
+ color: #fff;
2537
+ text-align: center;
2538
+ border-radius: 6px;
2539
+ padding: 5px 0;
2540
+ position: absolute;
2541
+ z-index: 1;
2542
+ bottom: 150%;
2543
+ left: 50%;
2544
+ margin-left: -45px;
2545
+ }
2546
+
2547
+ .tooltip .tooltiptext::after {
2548
+ content: "";
2549
+ position: absolute;
2550
+ top: 100%;
2551
+ left: 50%;
2552
+ margin-left: -5px;
2553
+ border-width: 5px;
2554
+ border-style: solid;
2555
+ border-color: black transparent transparent transparent;
2556
+ }
2557
+
2558
+ .tooltip:hover .tooltiptext {
2559
+ visibility: visible;
2560
+ }
2561
+
2562
+
2563
+ /*---------------------------------------------------------------------------// 22-12-21 //-----------------------*/
2564
+
2565
+ .mystickymenu-wrap{text-align:center;}
2566
+
2567
+
2568
+ .mystickymenu-newwelcomebar-contents a,
2569
+ .mystickymenu-widgets-btn-wrap a{
2570
+ display:inline-flex;
2571
+ color:#fff !important;
2572
+ font-size:16px;
2573
+ font-weight:500;
2574
+ font-family: 'Lato', sans-serif;
2575
+ padding: 12px 20px 10px 20px;
2576
+ text-decoration:none;
2577
+ background:#6558F5;
2578
+ border-radius:5px;
2579
+ align-items: center;
2580
+ box-shadow: 0px 12px 12px -6px rgba(101, 107, 232, 0.25);
2581
+ }
2582
+
2583
+ .mystickymenu-tab-boxes{display:flex; justify-content: center; margin-top:50px;}
2584
+ .mystickymenu-tab-box{
2585
+ width:25%;
2586
+ margin:10px;
2587
+ display:flex;
2588
+ border:1px solid #C3CFD9;
2589
+ flex-direction: column;
2590
+ justify-content: space-between;
2591
+ padding-bottom:15px;
2592
+ background-color:#fff;
2593
+ }
2594
+ .mystickymenu-tab-box .stickymenu-settings{margin:0 35px;}
2595
+ .mystickymenu-tab-box .stickymenu-box-header{ color:#4B5C6B; font-size:15px; font-weight:600;
2596
+ padding:8px 0; background:#DFE6ED; text-align:center; line-height:20px;}
2597
+ .stickymenu-box-container p{font-size:14px;}
2598
+
2599
+ .mystickymenu-action-popup .mystickymenu-action-popup-footer button.btn-enable,
2600
+ .mystickymenu-tab-box .stickymenu-box-button a{
2601
+ display: inline-flex;
2602
+ color: rgba(21, 25, 32, 0.5);
2603
+ font-size: 15px;
2604
+ font-weight: 500;
2605
+ padding: 12px 61px;
2606
+ text-decoration: none;
2607
+ border: 1px solid rgba(86, 103, 137, 0.26);
2608
+ border-radius: 8px;
2609
+ align-items: center;
2610
+ background: none;
2611
+ line-height: 24px;
2612
+
2613
+ }
2614
+ .mystickymenu-tab-box ul.documents-wrap-list{ text-align:left; list-style-type:disc; margin:15px 15px 15px 30px;}
2615
+ .mystickymenu-tab-box ul.documents-wrap-list li{color:#6558F5; font-size:25px;}
2616
+ .mystickymenu-tab-box ul.documents-wrap-list li a{color:#6558F5; font-size:14px;}
2617
+
2618
+ /*table.mystickymenu-widgets-lists,*/
2619
+
2620
+ table.mystickymenu-widgets-lists td{
2621
+ border:0.5px solid #F1F1F1;
2622
+ }
2623
+
2624
+ /*border radiuse in dashboard table */
2625
+ table.mystickymenu-widgets-lists th{
2626
+ border-top: 0 !important;
2627
+ border-bottom: 1px solid #F1F1F1 !important;
2628
+ border-left: 1px solid #F1F1F1 !important;
2629
+ border-right: 1px solid #F1F1F1 !important;
2630
+ }
2631
+
2632
+ .mystickymenu-dashboard table tr:first-child th:first-child {
2633
+ border-top-left-radius: 10px;
2634
+ border-top: 0 !important;
2635
+ border-left: 0 !important;
2636
+ border-bottom: 0.2px #F1F1F1 !important;
2637
+ border-right: 0.2px #F1F1F1 !important;
2638
+ }
2639
+
2640
+ .mystickymenu-dashboard table tr:first-child th:last-child {
2641
+ border-top-right-radius: 10px;
2642
+ border-top: 0 !important;
2643
+ border-left: 0.2px #F1F1F1 !important;
2644
+ border-bottom: 0.2px #F1F1F1 !important;
2645
+ border-right: 0 !important;
2646
+ }
2647
+
2648
+
2649
+ .mystickymenu-wrap table.mystickymenu-widgets-lists{border-collapse:collapse; width:100%;
2650
+ margin:24px 0 0 0; background-color:#fff;}/*---------------------------------------------------------------------20-1-22-----*/
2651
+
2652
+ .mystickymenu-wrap table.mystickymenu-widgets-lists tr th{padding:8px !important; background:#F6F5FE; vertical-align: middle !important;}
2653
+ .mystickymenu-wrap table.mystickymenu-widgets-lists tr td{padding:6px !important; vertical-align: middle !important;}
2654
+ .mystickymenu-wrap table.mystickymenu-widgets-lists .tooltip{border:none;}
2655
+
2656
+ /**/
2657
+ .mystickymenupopup-overlay{
2658
+ display:none;
2659
+ position: fixed;
2660
+ top: 0;
2661
+ left: 0;
2662
+ width: 100%;
2663
+ height: 100%;
2664
+ background-color: rgba(0,0,0,0.3);
2665
+ z-index: 9;
2666
+ }
2667
+
2668
+ .mystickymenu-action-popup{
2669
+ position: fixed;
2670
+ top: 80px;
2671
+ left: 50%;
2672
+ -webkit-transform: translateX(-50%);
2673
+ -moz-transform: translateX(-50%);
2674
+ transform: translateX(-50%);
2675
+ z-index: 10;
2676
+ width: 500px;
2677
+ background-color: #fff;
2678
+ padding: 0 0 28px 0;
2679
+ box-shadow: 0px 10px 15px rgb(0 0 0 / 10%), 0px 4px 6px rgb(0 0 0 / 5%);
2680
+ border-radius:10px;
2681
+
2682
+ }
2683
+ .mystickymenu-action-popup-header h3{margin:0; position:relative;}
2684
+ /*.mystickymenu-action-popup-header h3:after{
2685
+ content:"";
2686
+ display:block;
2687
+ height:3px;
2688
+ width:4.5rem;
2689
+ text-align:center;
2690
+ margin: 10px auto;
2691
+ background:#4797DE;
2692
+ }*/
2693
+ .mystickymenu-action-popup-footer button{cursor: pointer !important;}
2694
+ .mystickymenu-action-popup .mystickymenu-action-popup-footer button.btn-disable-cancel{
2695
+ display: inline-flex;
2696
+ color: #fff;
2697
+ background: #F33;
2698
+ font-size: 15px;
2699
+ font-weight: 500;
2700
+ padding: 12px 82px;
2701
+ text-decoration: none;
2702
+ border-radius: 8px;
2703
+ align-items: center;
2704
+ margin-left: 15px;
2705
+ border: none;
2706
+ line-height: 24px;
2707
+ }
2708
+ .mystickymenu-action-popup .mystickymenu-action-popup-body{margin:10px 30px;}
2709
+
2710
+ /*#stickymenu_status_popupbox .mystickymenu-action-popup-body{margin:30px 56px;}*/
2711
+
2712
+ /**/
2713
+ .first-widget-popup{
2714
+ text-align:center;
2715
+ position: fixed;
2716
+ top: 50%;
2717
+ left: 50%;
2718
+ -webkit-transform: translate(-50%,-50%);
2719
+ -moz-transform: translate(-50%,-50%);
2720
+ transform: translate(-50%,-50%);
2721
+ z-index: 10;
2722
+ width: 500px;
2723
+ background-color: #fff;
2724
+ padding: 30px;
2725
+ box-shadow: 0px 10px 15px rgb(0 0 0 / 10%), 0px 4px 6px rgb(0 0 0 / 5%);
2726
+ border-radius:10px;
2727
+ font-family:'Lato', sans-serif;
2728
+
2729
+ }
2730
+
2731
+ .mystickymenu_container_popupbox{
2732
+ margin-top:10px;
2733
+ }
2734
+
2735
+ .first-widget-popup h4,p,span,button,.first-widget-popup a{
2736
+ font-family:'Lato', sans-serif;
2737
+ }
2738
+
2739
+
2740
+
2741
+ .first-widget-popup h4{
2742
+ font-weight: 600;
2743
+ font-size: 24px;
2744
+ line-height: 34px;
2745
+ color: #181749;
2746
+ margin:16px 0 0 0;
2747
+ }
2748
+ .first-widget-popup p{
2749
+ font-size: 16px;
2750
+ margin-top: 24px;
2751
+ padding: 0 32px;
2752
+ font-weight: 400;
2753
+ line-height: 24px;
2754
+ font-style: normal;
2755
+ }
2756
+ .first-widget-popup a.btn-back-dashboard{
2757
+ display:inline-flex;
2758
+ color:#fff;
2759
+ font-size:15px;
2760
+ font-weight:500;
2761
+ padding:10px 20px;
2762
+ text-decoration:none;
2763
+ background:#6558F5;
2764
+ border-radius:8px;
2765
+ align-items: center;
2766
+ margin: 36px 0 10px 0;
2767
+ }
2768
+ .close-chaty-maxvisitor-popup{
2769
+ position:absolute;
2770
+ top:17px;
2771
+ right:17px;
2772
+ }
2773
+
2774
+ .mysticky-stickymenu-header-title h3{
2775
+ color:#1d2327;
2776
+ display: inline-block;
2777
+ }
2778
+ .stickymenu-switch{
2779
+ display: inline-block;
2780
+ width: 55px;
2781
+ height: 30px;
2782
+ position: relative;
2783
+ margin: 0 0 8px 10px;
2784
+ }
2785
+
2786
+ .stickymenu-switch .slider:before{
2787
+ background-color: #ffffff;
2788
+ }
2789
+
2790
+ .stickymenu-switch input:checked + .slider {
2791
+ background-color: #7761DF;
2792
+ border: 2px solid #7761DF;
2793
+ }
2794
+
2795
+ .wrap.mystickymenu-wrap .mystickymenu-dashboard{
2796
+ /*background: #fff !important;
2797
+ padding: 15px 0;
2798
+ border-radius: 10px;*/
2799
+ }
2800
+
2801
+ .firstwidget-popup-contain a{
2802
+ color: #3c434a;
2803
+ text-decoration: none;
2804
+ }
2805
+
2806
+ a.copyicon{text-decoration:none; color:#000;}
2807
+ /*.copyicon .dashicons{display:block;}*/
2808
+
2809
+ /*----------------------------------------------------------NEW 3-1-22--------------------------------------*/
2810
+ .mystickymenu-dashboard{text-align:left;}
2811
+ .mystickymenu-dashboard .welcomebars-list-table{
2812
+ background:#fff;
2813
+ /*border-radius:15px;*/
2814
+ padding: 0 40px 20px 40px;
2815
+ text-align:center;
2816
+ }
2817
+ /*.mystickymenu-dashboard h3{margin:5px 0;}*/
2818
+
2819
+
2820
+ .mystickymenu-dashboard .header-section{
2821
+ display: flex;
2822
+ justify-content: space-between;
2823
+ padding: 0;
2824
+ border-bottom: 1px solid #EBEBEB;
2825
+ width: 100%;
2826
+ margin: 0 0 24px 0;
2827
+ }/*--------------------------------------------------------------------------------------------------30-2-2022----*/
2828
+
2829
+
2830
+ .mystickymenu-dashboard .heading-title{display:inline-flex;}
2831
+ .mystickymenu-dashboard .mystickymenu-widgets-btn-wrap{display:inline-flex;}
2832
+
2833
+ .mystickymenu-dashboard .mystickymenu-tab-boxs-wrap{display:block; justify-content:space-between; margin:20px 0;}/*00000000000000000000*/
2834
+ .contactus-tab-option,.mystickymenu-tab-documentation{width:49%;} /*0000000000000000000000000000000000000000000000000000000000*/
2835
+
2836
+ .mystickymenu-new302box{display:flex; justify-content:space-between; flex-wrap:wrap;} /*00000000000000000000000000000000000000000*/
2837
+
2838
+ .stickymenu-tab-option{margin-bottom:15px;}
2839
+
2840
+ .mystickymenu-dashboard .msm-bgbox{display:block; background:#f7f7f7; padding:0;
2841
+ box-sizing:border-box;} /*-------------------------------------------------------*/
2842
+
2843
+
2844
+ /*---------------------------------------------------------------------------------------------------------6-1-22-----*/
2845
+
2846
+ .stickymenu-box-container ul.documents-wrap-list{ text-align:left; list-style-type:disc; margin:15px 15px 15px 30px;}
2847
+ .stickymenu-box-container ul.documents-wrap-list li{color:#6558F5; font-size:25px; margin-bottom:8px;} /*------6-1-22--*/
2848
+ .stickymenu-box-container ul.documents-wrap-list li a{color:#6558F5; font-family: 'Lato', sans-serif; font-size:16px;}
2849
+
2850
+ .msm-bgbox .stickymenu-box-button{display: block; padding:0 15px 15px 48px;}
2851
+
2852
+
2853
+ .msm-bgbox .stickymenu-box-button a{
2854
+ display:inline-flex;
2855
+ color:#6558F5;
2856
+ font-size:16px;
2857
+ font-weight:400;
2858
+ font-family: 'Lato', sans-serif;
2859
+ padding:0 15px;
2860
+ text-decoration:none;
2861
+ border:1px solid #6558F5 !important;
2862
+ border-radius:5px;
2863
+ align-items: center;
2864
+ background:none;
2865
+ line-height:34px;
2866
+
2867
+ }
2868
+ .contactus-title, .premio-footer-option,
2869
+ .stickymenu-settings{display:flex; justify-content:space-between; align-items: center;}
2870
+ .premio-footer-option{margin-top:6px;}
2871
+ .premio-footer-option h3{color:#6558F5;}
2872
+ .premio-footer-option h4{margin:5px 0 8px 0;}
2873
+ .premio-footer-option .premio-content-list{width:62%; margin:0 ;}
2874
+
2875
+ a.copyicon1{color:#6558F5; line-height:23px; text-decoration:underline;}
2876
+ a.copyicon1 span{text-decoration:none;}
2877
+ .dashicons-facebook-alt{color:#3B5998 !important;}
2878
+ .dashicons-twitter{color:#00ACEE !important;}
2879
+ /*--------------*/
2880
+
2881
+ .new-welcomebar-section-wrap{background:#fff; display:flex; padding:25px; justify-content: space-between;}
2882
+
2883
+ .mystickymenu-welcome-img, .mystickymenu-newwelcomebar-contents,
2884
+ .new-welcomebar-section-wrap .mystickymenu-features{width:auto;}
2885
+
2886
+ .mystickymenu-wrap .mystickymenu-welcome-img img{max-width:80%; height:auto; text-align:center;}
2887
+ .mystickymenu-newwelcomebar-contents{margin:0 10px;}
2888
+ .mystickymenu-features{text-align:center;}
2889
+
2890
+ /*------------------------------------------------------------------------------------------------*/
2891
+ .mystickymenu-features .mystickymenu-features-list{ text-align:left; list-style-type:disc;
2892
+ background: #F6F5FE;
2893
+ padding: 30px 15px 15px 15px;
2894
+ border-radius: 15px;
2895
+ margin-top: -20px;
2896
+ }
2897
+ .mystickymenu-features-list ul.documents-wrap-list{margin:15px 15px 15px 30px;}
2898
+
2899
+
2900
+
2901
+ .mystickymenu-features .mystickymenu-features-list li{color:#6558F5; font-family: 'Lato', sans-serif; font-size:16px;}/*----6-1-22-------*/
2902
+
2903
+ .documents-wrap-list{ text-align:left; list-style-type:disc;}
2904
+ .documents-wrap-list li{ margin-bottom:16px;}
2905
+
2906
+ .mystickymenu-feature-title{
2907
+ display:inline-flex;
2908
+ color:#fff;
2909
+ font-size:16px;
2910
+ font-weight:500;
2911
+ font-family: 'Lato', sans-serif;
2912
+ padding:10px 20px;
2913
+ text-decoration:none;
2914
+ background:#6558F5;
2915
+ border-radius:5px;
2916
+ align-items: center;
2917
+ margin-top:15px;
2918
+ }/*----------------------------------------------------------------------*/
2919
+
2920
+ .mystickymenu-feature-title img{width:22px; margin-right:7px;}
2921
+ .welcomebars-list-table .mysticky-welcomebar-switch .slider{
2922
+ background-color: #FF424D;
2923
+ border: 2px solid #FF424D;
2924
+ }
2925
+
2926
+
2927
+ .mystickymenu-action-popup-footer{
2928
+ text-align:center;
2929
+ display:inline-block;
2930
+ margin-top:15px;
2931
+ }
2932
+ #stickymenu_status_popupbox .mystickymenu-action-popup-footer{
2933
+ display: block;
2934
+ }
2935
+
2936
+ .welcombar-enabled-status .mystickymenu-action-popup-footer{
2937
+ display: block;
2938
+ }
2939
+
2940
+ #mysticky-sticky-save-confirm .mystickymenu-action-popup-footer{
2941
+ display: block;
2942
+ }
2943
+
2944
+ .mystickymenu-action-popup-header{
2945
+ padding: 25px 25px 40px 25px;
2946
+ border-bottom: 1px solid #EAEFF2;
2947
+ }
2948
+ .mystickymenu-action-popup-header h3{
2949
+ margin:0 0 0 15px;
2950
+ position:relative;
2951
+ float:left;
2952
+
2953
+ }
2954
+
2955
+ .mystickymenu-action-popup .mystickymenu-action-popup-body p{
2956
+ text-align: left;
2957
+ float: left;
2958
+ margin-left: 0;
2959
+ padding: 0 10px;
2960
+ font-size: 16px;
2961
+ font-weight: 400;
2962
+ font-style: normal;
2963
+ color: #181749;
2964
+ }
2965
+
2966
+ .mystickymenu-action-popup-header span{
2967
+ float:right;
2968
+ }
2969
+
2970
+ /*--------------------------------------------------------// 6-1-22 //------------------*/
2971
+ .mystickymenu-newwelcomebar-contents h2{font-family: 'Lato', sans-serif; font-size:28px; font-weight:bold;}
2972
+
2973
+ .premio-content-list span, .premio-footer-option label, .settings-content p, .contactus-contents-buttons span.folous,
2974
+ .stickymenu-box-button,
2975
+ .mystickymenu-newwelcomebar-contents p{font-family: 'Lato', sans-serif; font-size:16px;color: #181749;font-style: normal;font-weight: 400;line-height: 24px;}
2976
+
2977
+ .premio-content-list h4{font-family: 'Lato', sans-serif; font-size:16px; font-weight:bold;}
2978
+
2979
+ .contactus-title h3,
2980
+ .stickymenubox-title-section h3{font-family: 'Lato', sans-serif; font-size:20px; font-weight:bold;}
2981
+
2982
+ /**/
2983
+ .stickymenu-tab-option{padding:0 0 10px 0 !important;}
2984
+ /*.stickymenubox-title-section{border-bottom:1px solid #EBEBEB; padding:24px 20px;}*/
2985
+
2986
+ .stickymenubox-title-section h3,
2987
+ .mystickymenu-tab-documentation h3, .contactus-title
2988
+ {border-bottom:1px solid #EBEBEB; padding:24px 40px; margin:0;} /*------------------------------------------------------------20-1-22---*/
2989
+ .contactus-title h3{margin:0;}
2990
+
2991
+ .stickymenubox-title-section h3{margin:0 !important;}
2992
+
2993
+ .premio-footer-option, .stickymenu-box-container, .stickymenu-box-button,
2994
+ .stickymenu-settings{padding:15px 20px 15px 40px; } /*--------------------------------------------------------------------20-1-22---*/
2995
+ .mystickymenu-dashboard .heading-title h3{font-family: 'Lato', sans-serif; font-size: 28px !important;
2996
+ font-weight:600 !important; color:#1d2327 !important;}/*------------------------------------------------20-1-22---*/
2997
+
2998
+ .mystickymenu-newwelcomebar-contents p{margin:0;} /*------------------------------------------------20-1-22--new-*/
2999
+ a.add_new_welcombar{margin:auto 0;} /*------------------------------------------------20-1-22--new-*/
3000
+ .new-welcomebar-section-wrap .mystickymenu-newwelcomebar-contents a{margin-top:30px;}
3001
+
3002
+
3003
+ .premio-footer-option h3 img{width:70px; height:auto; margin-right:10px;}
3004
+
3005
+ /* price-pan css */
3006
+
3007
+ .plan-center {
3008
+ text-align: center;
3009
+ }
3010
+
3011
+ .price-permonth {
3012
+ padding: 2px 15px;
3013
+ display: inline-block;
3014
+ margin-bottom: 15px;
3015
+ text-align: center;
3016
+ border-radius: 56px;
3017
+ border: 1px solid #BEECFF;
3018
+ background-color: #EAF9FF;
3019
+ }
3020
+
3021
+ .price-table.plus-feature .price-permonth {
3022
+ border: 1px solid #F2D8C3;
3023
+ background-color: #FCF2EA;
3024
+ }
3025
+
3026
+
3027
+ .price-table.agency-feature .price-permonth {
3028
+ border: 1px solid #C7C6F9;
3029
+ background-color: #ECEEFD;
3030
+ }
3031
+
3032
+ .add_new_welcombar:hover{
3033
+ opacity: 0.9;
3034
+ }
3035
+
3036
+ .tooltip img{
3037
+ width:35px;
3038
+ }
3039
+
3040
+ .mystickymenu-features{
3041
+ max-width: 400px;
3042
+ }
3043
+
3044
+ .mystickymenu-newwelcomebar-contents{
3045
+ max-width: 432px;
3046
+ }
3047
+
3048
+ #stickymenu_status_ok{
3049
+ background-color:#28C67C;
3050
+ }
3051
+
3052
+ .mysticky-welcomebar-content{
3053
+ width:72%;
3054
+ text-align:center;
3055
+ }
3056
+ .mysticky-welcomebar-content p{
3057
+ word-wrap: break-word;
3058
+ width: 100%;
3059
+ }
3060
+
3061
+ .mystickymenu-widgets-lists tr td{
3062
+ font-size:16px;
3063
+ }
3064
+
3065
+ .mystickymenu-widgets-lists tr th{
3066
+ font-size:16px;
3067
+ }
3068
+
3069
+ #welcomebar-save-confirm{
3070
+ width: 677px;
3071
+ padding: 0 10px 28px 10px;
3072
+ }
3073
+
3074
+ #welcomebar-save-confirm .mystickymenu-action-popup-footer{
3075
+ display: block;
3076
+ }
3077
+
3078
+ #mysticky-sticky-save-confirm{
3079
+ width:634px;
3080
+ }
3081
+ #stickymenu_status_ok{
3082
+ padding: 12px 40px;
3083
+ }
3084
+
3085
+
3086
+ /*----------------------------------------------------------------------# 21-1-22 #-----------*/
3087
+
3088
+ @media only screen and (max-width: 1366px) {
3089
+ .premio-content-list h4 {font-size: 15px;}
3090
+ .premio-footer-option .premio-content-list {width: 60%;}
3091
+
3092
+ }
3093
+
3094
+ @media only screen and (max-width: 820px) {
3095
+ .mystickymenu-tab-boxs-wrap{flex-wrap: wrap;}
3096
+ .mystickymenu-tab-stickymenu, .mystickymenu-tab-documentation, .contactus-tab-option{display:block; width:100%;}
3097
+ .mystickymenu-tab-documentation{margin-top:15px;}
3098
+
3099
+ .new-welcomebar-section-wrap {justify-content: center; flex-wrap: wrap;}
3100
+ .mystickymenu-welcome-img{text-align:center;}
3101
+ .mystickymenu-newwelcomebar-contents{text-align:center; margin:15px 0;}
3102
+
3103
+ .price-table-middle ul li a{width:65%;}
3104
+ .right_tooltip:after {left: 80px !important;}
3105
+
3106
+ }
3107
+
3108
+ @media only screen and (max-width: 576px) {
3109
+ .stickymenu-settings{flex-wrap:wrap; justify-content: center;}
3110
+ .premio-footer-option{flex-wrap:wrap; justify-content: center;}
3111
+ .msm-bgbox .stickymenu-box-button {text-align: center;}
3112
+ .premio-footer-option .premio-content-list {width: auto; margin:15px 0;}
3113
+ .premio-footer-option, .stickymenu-box-container, .stickymenu-box-button, .stickymenu-settings
3114
+ {padding: 15px 20px;}
3115
+
3116
+ /*.price-table-middle ul li a{width:65%;}*/
3117
+ .right_tooltip:after {left: 80px !important;}
3118
+ .cus-tooltip .tooltip__content{width:145% !important;}
3119
+ .cus-tooltip .tooltip__content img{width:100% !important;}
3120
+
3121
+
3122
+ }
3123
+
3124
+ /*-------------------# 27-1-22 #--------*/
3125
+ @media only screen and (min-width: 821px) {
3126
+ .right_tooltip{left: unset !important; right:0 !important;}
3127
+ .right_tooltip:after{left: 130px !important;}
3128
+ }
3129
+
3130
+
3131
+ /*--------------------------------------------------------------*/
3132
+
3133
+ .new_widget_row{
3134
+ max-width: unset;
3135
+ }
3136
+
3137
+
3138
+ /* ToolTip Side */
3139
+ .html-tooltip {
3140
+ position: relative;
3141
+ display: inline-block;
3142
+
3143
+ }
3144
+
3145
+ .dashicons,
3146
+ .dashicons-before:before {
3147
+ font-family: dashicons;
3148
+ display: inline-block;
3149
+ line-height: 1;
3150
+ font-weight: 400;
3151
+ font-style: normal;
3152
+ color: #9e9e9e;
3153
+ speak: none;
3154
+ text-decoration: inherit;
3155
+ text-transform: none;
3156
+ text-rendering: auto;
3157
+ -webkit-font-smoothing: antialiased;
3158
+ -moz-osx-font-smoothing: grayscale;
3159
+ width: 20px;
3160
+ height: 20px;
3161
+ font-size: 20px;
3162
+ vertical-align: top;
3163
+ text-align: center;
3164
+ transition: color 0.1s ease-in;
3165
+ }
3166
+
3167
+ .dashicons-editor-help:before {
3168
+ content: "";
3169
+ }
3170
+
3171
+ .html-tooltip.side .tooltip-text {
3172
+ bottom: 125%;
3173
+ left: 100%;
3174
+ margin-left: 0;
3175
+ top: 5px;
3176
+ transform: translateY(-50%);
3177
+ -webkit-transform: translateY(-50%);
3178
+ }
3179
+
3180
+ .html-tooltip .tooltip-text {
3181
+ visibility: hidden;
3182
+ width: 417px;
3183
+ background-color: #333;
3184
+ color: #fff;
3185
+ text-align: left;
3186
+ border-radius: 6px;
3187
+ padding: 10px;
3188
+ position: absolute;
3189
+ z-index: 1201;
3190
+ bottom: 125%;
3191
+ left: 50%;
3192
+ margin-left: -150px;
3193
+ opacity: 0;
3194
+ transition: opacity 0.3s;
3195
+ font-size: 12px;
3196
+ line-height: 18px;
3197
+ top: 100%;
3198
+ height: 125px;
3199
+ }
3200
+
3201
+ .html-tooltip:hover .tooltip-text {
3202
+ visibility: visible;
3203
+ opacity: 1;
3204
+ z-index: 9999999;
3205
+ }
3206
+
3207
+ .html-tooltip.side .tooltip-text:after {
3208
+ top: 50%;
3209
+ left: -5px;
3210
+ transform: rotate(180deg);
3211
+ -webkit-transform: rotate(90deg);
3212
+ }
3213
+
3214
+ .html-tooltip .tooltip-text:after {
3215
+ content: "";
3216
+ position: absolute;
3217
+ top: -10px;
3218
+ left: 50%;
3219
+ margin-left: -5px;
3220
+ border-width: 5px;
3221
+ border-style: solid;
3222
+ border-color: #333 transparent transparent transparent;
3223
+ transform: rotate(180deg);
3224
+ -webkit-transform: rotate(180deg);
3225
+ }
3226
+
3227
+ .html-tooltip .tooltip-text img {
3228
+ width: 100%;
3229
+ height: auto;
3230
+ display: block;
3231
+ margin: 10px 0 0 0;
3232
+ }
3233
+
3234
+ .price-table-middle ul li .html-tooltip.side{
3235
+ position: absolute;
3236
+ margin: 14px 0;
3237
+ }
3238
+
3239
+ .html-tooltip.side .price-plan-box{
3240
+ margin-left: -147px !important;
3241
+ top: -62px !important;
3242
+ height: 115px;
3243
+ text-align: left;
3244
+ }
3245
+
3246
+ .span .tooltip-text .top .price-plan-box::after
3247
+ border-width: 5px;
3248
+ border-style: solid;
3249
+ border-color: #1849ab transparent transparent transparent;
3250
+ content: "";
3251
+ left: 25px;
3252
+ margin-left: -5px;
3253
+ position: absolute;
3254
+ top: 100%;
3255
+ }
3256
+
3257
+ /***/
3258
+
3259
+ .cus-tooltip span.tooltip-text::after {
3260
+ border-width: 5px;
3261
+ border-style: solid;
3262
+ border-color: #1849ab transparent transparent transparent;
3263
+ content: "";
3264
+ left: 25px;
3265
+ margin-left: -5px;
3266
+ position: absolute;
3267
+ top: 100%;
3268
+ }
3269
+
3270
+ .html-tooltip-box{
3271
+ padding: 0 0 48px 0 !important;
3272
+ }
3273
+
3274
+ .mystickymenu-widgets-lists thead tr{
3275
+ height: 63px;
3276
+ }
3277
+
3278
+ .mystickymenu-widgets-lists tr{
3279
+ height: 88px;
3280
+ }
3281
+
3282
+ .tooltip__content img{
3283
+ width: 396px;
3284
+ height: auto;
3285
+ margin-top:5px;
3286
+ }
3287
+
3288
+ .mysticky-welcomebar-backword-page a{
3289
+ text-decoration: none;
3290
+ }
3291
+
3292
+ .mysticky-welcomebar-backword-page{
3293
+ padding: 0;
3294
+ margin: 0;
3295
+ float: right;
3296
+ }
3297
+
3298
+
3299
+ .mysticky-stickymenu-backword-page{text-align:end; padding:0 15px; float: right; margin-top: 28px;}
3300
+ .mysticky-stickymenu-backword-page a{text-decoration:none;}
3301
+
3302
+
3303
+
3304
+
3305
+
3306
+ .save_view_dashboard{
3307
+ width: auto !important;
3308
+ background: #6558F5 !important;
3309
+ border: 1px solid #6558F5 !important;
3310
+ margin-left:10px !important;
3311
+ }
3312
+
3313
+ .save_view_dashboard:hover{
3314
+ opacity: 0.8 !important;
3315
+ }
3316
+
3317
+ #mysticky_welcomebar_fontsize{
3318
+ color:#32373c !important;
3319
+ }
3320
+
fonts/lato-semibold.woff ADDED
Binary file
fonts/lato-v20-latin-300.woff ADDED
Binary file
fonts/lato-v20-latin-700.woff ADDED
Binary file
fonts/lato-v20-latin-900.woff ADDED
Binary file
fonts/lato-v20-latin-regular.woff ADDED
Binary file
fonts/poppins-bold-webfont.woff DELETED
Binary file
fonts/poppins-bold-webfont.woff2 DELETED
Binary file
fonts/poppins-light-webfont.woff DELETED
Binary file
fonts/poppins-light-webfont.woff2 DELETED
Binary file
fonts/poppins-regular-webfont.ttf DELETED
Binary file
fonts/poppins-regular-webfont.woff DELETED
Binary file
fonts/poppins-regular-webfont.woff2 DELETED
Binary file
images/Premio.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg width="103" height="30" viewBox="0 0 103 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.85263 5.9993C10.2822 5.9993 11.5771 6.37223 12.7373 7.11809C13.8976 7.84324 14.8091 8.85844 15.4722 10.1637C16.1559 11.469 16.4977 12.9503 16.4977 14.6078C16.4977 16.2653 16.1663 17.757 15.5032 19.083C14.8402 20.3882 13.9287 21.4138 12.7684 22.1596C11.6289 22.8848 10.365 23.2474 8.97694 23.2474C7.98246 23.2474 7.03977 23.0505 6.14888 22.6569C5.27871 22.2425 4.55356 21.7452 3.97345 21.1652V27.2564C3.97345 27.7951 3.79735 28.2405 3.44513 28.5927C3.09292 28.9656 2.64748 29.1521 2.1088 29.1521C1.57011 29.1521 1.12468 28.976 0.77246 28.6238C0.420247 28.2715 0.244141 27.8158 0.244141 27.2564V8.20581C0.244141 7.66713 0.420247 7.22169 0.77246 6.86947C1.12468 6.49654 1.57011 6.31007 2.1088 6.31007C2.64748 6.31007 3.09292 6.49654 3.44513 6.86947C3.79735 7.22169 3.97345 7.66713 3.97345 8.20581V8.33012C4.47069 7.70857 5.16476 7.16988 6.05565 6.71408C6.94654 6.23756 7.87887 5.9993 8.85263 5.9993ZM8.38647 19.8288C9.71242 19.8288 10.8001 19.3316 11.6496 18.3371C12.4991 17.3426 12.9238 16.0995 12.9238 14.6078C12.9238 13.1161 12.4991 11.8834 11.6496 10.9096C10.8209 9.91507 9.73319 9.41783 8.38647 9.41783C7.03977 9.41783 5.9417 9.91507 5.09224 10.9096C4.24279 11.8834 3.81806 13.1161 3.81806 14.6078C3.81806 16.0995 4.24279 17.3426 5.09224 18.3371C5.9417 19.3316 7.03977 19.8288 8.38647 19.8288ZM28.2465 5.9993C28.868 5.9993 29.386 6.1754 29.8003 6.52762C30.2354 6.87983 30.453 7.29419 30.453 7.77072C30.453 8.41299 30.2873 8.8999 29.9557 9.23137C29.6243 9.54214 29.2306 9.69753 28.7748 9.69753C28.464 9.69753 28.1119 9.62499 27.7181 9.47999C27.656 9.4593 27.511 9.41783 27.2831 9.35568C27.0759 9.29352 26.848 9.26244 26.5994 9.26244C26.0607 9.26244 25.5427 9.42822 25.0455 9.75969C24.5482 10.0912 24.1339 10.5988 23.8024 11.2825C23.4916 11.9455 23.3362 12.7431 23.3362 13.6755V21.0408C23.3362 21.5796 23.1601 22.0353 22.8079 22.4083C22.4557 22.7605 22.0103 22.9366 21.4716 22.9366C20.9329 22.9366 20.4875 22.7605 20.1352 22.4083C19.7831 22.0353 19.6069 21.5796 19.6069 21.0408V8.20581C19.6069 7.66713 19.7831 7.22169 20.1352 6.86947C20.4875 6.49654 20.9329 6.31007 21.4716 6.31007C22.0103 6.31007 22.4557 6.49654 22.8079 6.86947C23.1601 7.22169 23.3362 7.66713 23.3362 8.20581V8.60981C23.8128 7.76036 24.4965 7.11809 25.3873 6.683C26.2783 6.2272 27.2313 5.9993 28.2465 5.9993ZM47.3012 14.2349C47.2805 14.7321 47.0837 15.1361 46.7107 15.4469C46.3378 15.7577 45.9027 15.913 45.4055 15.913H35.1499C35.3985 17.1355 35.9683 18.0989 36.8591 18.8033C37.75 19.487 38.7549 19.8288 39.8737 19.8288C40.7231 19.8288 41.3861 19.7563 41.8626 19.6113C42.3392 19.4455 42.7121 19.2798 42.9814 19.114C43.2715 18.9276 43.4683 18.8033 43.5719 18.7411C43.9448 18.5546 44.2971 18.4614 44.6285 18.4614C45.0636 18.4614 45.4365 18.6168 45.7473 18.9276C46.0581 19.2383 46.2135 19.6009 46.2135 20.0153C46.2135 20.5747 45.9234 21.0823 45.3433 21.5381C44.7632 22.0146 43.9863 22.4187 43.0125 22.7501C42.0387 23.0816 41.0546 23.2474 40.0601 23.2474C38.3198 23.2474 36.797 22.8848 35.4917 22.1596C34.2071 21.4345 33.2127 20.44 32.5083 19.1762C31.8039 17.8916 31.4516 16.4518 31.4516 14.8564C31.4516 13.0746 31.8246 11.5104 32.5704 10.1637C33.3163 8.81697 34.3004 7.79144 35.5228 7.08701C36.7452 6.36187 38.0505 5.9993 39.4386 5.9993C40.806 5.9993 42.0906 6.37223 43.2922 7.11809C44.5146 7.86395 45.4883 8.86882 46.2135 10.1326C46.9387 11.3964 47.3012 12.7638 47.3012 14.2349ZM39.4386 9.41783C37.0352 9.41783 35.616 10.547 35.1809 12.8053H43.3233V12.5877C43.2404 11.7176 42.8156 10.9717 42.0491 10.3502C41.2825 9.72861 40.4124 9.41783 39.4386 9.41783ZM69.5862 5.9993C71.6374 5.9993 73.0566 6.63121 73.8439 7.89503C74.6312 9.13813 75.0248 10.8681 75.0248 13.085V21.0408C75.0248 21.5796 74.8487 22.0353 74.4965 22.4083C74.1443 22.7605 73.6989 22.9366 73.1601 22.9366C72.6215 22.9366 72.1761 22.7605 71.8238 22.4083C71.4717 22.0353 71.2955 21.5796 71.2955 21.0408V13.085C71.2955 11.9455 71.0676 11.0546 70.6118 10.4123C70.1767 9.7493 69.3998 9.41783 68.281 9.41783C67.1208 9.41783 66.2092 9.77007 65.5461 10.4745C64.9039 11.1582 64.5827 12.0283 64.5827 13.085V21.0408C64.5827 21.5796 64.4067 22.0353 64.0544 22.4083C63.7023 22.7605 63.2568 22.9366 62.7181 22.9366C62.1795 22.9366 61.734 22.7605 61.3817 22.4083C61.0296 22.0353 60.8534 21.5796 60.8534 21.0408V13.085C60.8534 11.9455 60.6256 11.0546 60.1697 10.4123C59.7346 9.7493 58.9577 9.41783 57.8389 9.41783C56.6787 9.41783 55.7671 9.77007 55.1041 10.4745C54.4618 11.1582 54.1407 12.0283 54.1407 13.085V21.0408C54.1407 21.5796 53.9646 22.0353 53.6123 22.4083C53.2602 22.7605 52.8147 22.9366 52.276 22.9366C51.7374 22.9366 51.2919 22.7605 50.9397 22.4083C50.5875 22.0353 50.4114 21.5796 50.4114 21.0408V8.20581C50.4114 7.66713 50.5875 7.22169 50.9397 6.86947C51.2919 6.49654 51.7374 6.31007 52.276 6.31007C52.8147 6.31007 53.2602 6.49654 53.6123 6.86947C53.9646 7.22169 54.1407 7.66713 54.1407 8.20581V8.70305C54.7001 7.95719 55.4045 7.32527 56.2539 6.80731C57.1241 6.26863 58.0875 5.9993 59.1442 5.9993C61.7547 5.9993 63.4226 7.13881 64.1477 9.41783C64.6242 8.54766 65.339 7.76036 66.292 7.05594C67.2658 6.35151 68.3639 5.9993 69.5862 5.9993ZM82.5727 21.0408C82.5727 21.5796 82.3967 22.0353 82.0444 22.4083C81.6923 22.7605 81.2468 22.9366 80.7081 22.9366C80.1695 22.9366 79.724 22.7605 79.3718 22.4083C79.0196 22.0353 78.8434 21.5796 78.8434 21.0408V8.20581C78.8434 7.66713 79.0196 7.22169 79.3718 6.86947C79.724 6.49654 80.1695 6.31007 80.7081 6.31007C81.2468 6.31007 81.6923 6.49654 82.0444 6.86947C82.3967 7.22169 82.5727 7.66713 82.5727 8.20581V21.0408ZM80.677 4.29003C79.9726 4.29003 79.4754 4.17608 79.1853 3.94818C78.8953 3.72027 78.7502 3.31626 78.7502 2.73615V2.14568C78.7502 1.56557 78.9056 1.16156 79.2164 0.933651C79.5271 0.705748 80.0244 0.591797 80.7081 0.591797C81.4333 0.591797 81.9409 0.705748 82.2309 0.933651C82.521 1.16156 82.666 1.56557 82.666 2.14568V2.73615C82.666 3.33699 82.5106 3.75135 82.1998 3.97925C81.9098 4.18644 81.4022 4.29003 80.677 4.29003ZM102.379 14.6389C102.379 16.2964 102.006 17.7881 101.261 19.114C100.515 20.4193 99.4891 21.4345 98.1838 22.1596C96.899 22.8848 95.4801 23.2474 93.9262 23.2474C92.3519 23.2474 90.9223 22.8848 89.6375 22.1596C88.3531 21.4345 87.3378 20.4193 86.592 19.114C85.8461 17.7881 85.4732 16.2964 85.4732 14.6389C85.4732 12.9814 85.8461 11.5 86.592 10.1948C87.3378 8.86882 88.3531 7.84324 89.6375 7.11809C90.9223 6.37223 92.3519 5.9993 93.9262 5.9993C95.4801 5.9993 96.899 6.37223 98.1838 7.11809C99.4891 7.84324 100.515 8.86882 101.261 10.1948C102.006 11.5 102.379 12.9814 102.379 14.6389ZM98.65 14.6389C98.65 13.6237 98.4324 12.7224 97.9974 11.9351C97.5827 11.1271 97.0135 10.5055 96.2881 10.0705C95.584 9.63538 94.7964 9.41783 93.9262 9.41783C93.056 9.41783 92.2587 9.63538 91.5332 10.0705C90.8291 10.5055 90.259 11.1271 89.824 11.9351C89.4093 12.7224 89.2024 13.6237 89.2024 14.6389C89.2024 15.654 89.4093 16.5553 89.824 17.3426C90.259 18.1299 90.8291 18.7411 91.5332 19.1762C92.2587 19.6113 93.056 19.8288 93.9262 19.8288C94.7964 19.8288 95.584 19.6113 96.2881 19.1762C97.0135 18.7411 97.5827 18.1299 97.9974 17.3426C98.4324 16.5553 98.65 15.654 98.65 14.6389Z" fill="#6558F5"/>
3
+ </svg>
images/copy-icon.svg ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="40" height="40" rx="20" fill="#F6F5FE"/>
3
+ <path d="M16 15V23C16 23.5304 16.2107 24.0391 16.5858 24.4142C16.9609 24.7893 17.4696 25 18 25H24M16 15V13C16 12.4696 16.2107 11.9609 16.5858 11.5858C16.9609 11.2107 17.4696 11 18 11H22.586C22.8512 11.0001 23.1055 11.1055 23.293 11.293L27.707 15.707C27.8946 15.8945 27.9999 16.1488 28 16.414V23C28 23.5304 27.7893 24.0391 27.4142 24.4142C27.0391 24.7893 26.5304 25 26 25H24M16 15H14C13.4696 15 12.9609 15.2107 12.5858 15.5858C12.2107 15.9609 12 16.4696 12 17V27C12 27.5304 12.2107 28.0391 12.5858 28.4142C12.9609 28.7893 13.4696 29 14 29H22C22.5304 29 23.0391 28.7893 23.4142 28.4142C23.7893 28.0391 24 27.5304 24 27V25M16 15V23C16 24.1046 16.8954 25 18 25H24" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
images/copy.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 45 45" height="45px" id="Layer_1" version="1.1" viewBox="0 0 45 45" width="45px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><rect fill="#231F20" height="23" transform="matrix(-0.7071 -0.7072 0.7072 -0.7071 38.2666 48.6029)" width="11" x="23.7" y="4.875"/><path d="M44.087,3.686l-2.494-2.494c-1.377-1.377-3.61-1.377-4.987,0L34.856,2.94l7.778,7.778l1.749-1.749 C45.761,7.593,45.465,5.063,44.087,3.686z" fill="#231F20"/><polygon fill="#231F20" points="16,22.229 16,30 23.246,30 "/><path d="M29,40H5V16h12.555l5-5H3.5C1.843,11,0,11.843,0,13.5v28C0,43.156,1.843,45,3.5,45h28 c1.656,0,2.5-1.844,2.5-3.5V23.596l-5,5V40z" fill="#231F20"/></g></svg>
images/countdown.gif ADDED
Binary file
images/crown.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg width="220" height="194" viewBox="0 0 220 194" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M220 85.8651C220 73.1371 209.645 62.7821 196.917 62.7821C184.189 62.7821 173.834 73.1371 173.834 85.8651C173.834 91.6551 175.982 96.9491 179.515 101.005L155.653 122.895L125.22 60.0021L143.007 39.1101L110.125 0.487061L77.244 39.1111L94.239 59.0731L64.023 122.537L40.496 100.993C44.024 96.9381 46.167 91.6491 46.167 85.8651C46.167 73.1371 35.812 62.7821 23.084 62.7821C10.355 62.7821 0 73.1371 0 85.8651C0 97.6591 8.895 107.41 20.328 108.778L27.401 193.513H192.6L199.673 108.778C211.105 107.41 220 97.6591 220 85.8651Z" fill="white"/>
3
+ </svg>
images/delete-icon.svg ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="40" height="40" rx="20" fill="#F6F5FE"/>
3
+ <path d="M16.4375 12.6875H16.25C16.3531 12.6875 16.4375 12.6031 16.4375 12.5V12.6875H23.5625V12.5C23.5625 12.6031 23.6469 12.6875 23.75 12.6875H23.5625V14.375H25.25V12.5C25.25 11.6727 24.5773 11 23.75 11H16.25C15.4227 11 14.75 11.6727 14.75 12.5V14.375H16.4375V12.6875ZM28.25 14.375H11.75C11.3352 14.375 11 14.7102 11 15.125V15.875C11 15.9781 11.0844 16.0625 11.1875 16.0625H12.6031L13.182 28.3203C13.2195 29.1195 13.8805 29.75 14.6797 29.75H25.3203C26.1219 29.75 26.7805 29.1219 26.818 28.3203L27.3969 16.0625H28.8125C28.9156 16.0625 29 15.9781 29 15.875V15.125C29 14.7102 28.6648 14.375 28.25 14.375ZM25.1398 28.0625H14.8602L14.293 16.0625H25.707L25.1398 28.0625Z" fill="black"/>
4
+ </svg>
images/edit-icon.svg ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="40" height="40" rx="20" fill="#F6F5FE"/>
3
+ <path d="M30.0317 13.3351L26.1184 9.40172C25.8598 9.14443 25.5098 9 25.145 9C24.7802 9 24.4303 9.14443 24.1717 9.40172L10.2984 23.2551L9.0317 28.7217C8.988 28.9216 8.9895 29.1286 9.03608 29.3278C9.08266 29.527 9.17315 29.7133 9.30094 29.873C9.42873 30.0327 9.59058 30.1619 9.77468 30.2511C9.95878 30.3402 10.1605 30.3872 10.365 30.3884C10.4603 30.398 10.5564 30.398 10.6517 30.3884L16.1784 29.1217L30.0317 15.2817C30.289 15.0231 30.4334 14.6732 30.4334 14.3084C30.4334 13.9436 30.289 13.5937 30.0317 13.3351V13.3351ZM15.5117 27.9217L10.3317 29.0084L11.5117 23.9284L21.8917 13.5884L25.8917 17.5884L15.5117 27.9217ZM26.785 16.6217L22.785 12.6217L25.105 10.3151L29.0384 14.3151L26.785 16.6217Z" fill="black"/>
4
+ </svg>
images/firstwelcombar.svg ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="500" height="356" viewBox="0 0 500 356" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M400.717 322.752V76.715C400.717 74.9394 399.277 73.5 397.502 73.5H70.2689C68.4933 73.5 67.0539 74.9394 67.0539 76.715V322.752C67.0539 326.304 69.9327 329.182 73.4839 329.182H394.287C397.838 329.182 400.717 326.304 400.717 322.752Z" fill="#FAFAFA"/>
3
+ <rect x="162.729" y="146.08" width="49.064" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
4
+ <rect x="162.729" y="160.927" width="170.088" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
5
+ <rect x="282.118" y="187.318" width="50.6994" height="36.2904" fill="#FAFCFD"/>
6
+ <path d="M313.748 200.516L298.472 217.011H327.911L313.748 200.516Z" fill="#C4C4C4"/>
7
+ <ellipse cx="293.566" cy="199.693" rx="3.27093" ry="3.29913" fill="#C4C4C4"/>
8
+ <path d="M299.237 206.289L289.477 217.011H308.285L299.237 206.289Z" fill="#DEDEDE"/>
9
+ <rect x="228.147" y="187.318" width="50.6994" height="36.2904" fill="#FAFCFD"/>
10
+ <path d="M259.778 200.516L244.502 217.011H273.94L259.778 200.516Z" fill="#C4C4C4"/>
11
+ <ellipse cx="239.595" cy="199.693" rx="3.27093" ry="3.29913" fill="#C4C4C4"/>
12
+ <path d="M245.267 206.289L235.507 217.011H254.315L245.267 206.289Z" fill="#DEDEDE"/>
13
+ <rect x="174.177" y="187.318" width="50.6994" height="36.2904" fill="#FAFCFD"/>
14
+ <path d="M205.808 200.516L190.532 217.011H219.97L205.808 200.516Z" fill="#C4C4C4"/>
15
+ <ellipse cx="185.625" cy="199.693" rx="3.27093" ry="3.29913" fill="#C4C4C4"/>
16
+ <path d="M191.296 206.289L181.537 217.011H200.344L191.296 206.289Z" fill="#DEDEDE"/>
17
+ <path d="M67.0539 117.213V79.93C67.0539 76.3788 69.9327 73.5 73.4839 73.5H394.259C397.81 73.5 400.689 76.3788 400.689 79.93V117.213H67.0539Z" fill="#5046C2"/>
18
+ <rect x="125.931" y="89.9971" width="11.4483" height="11.5469" rx="5.72413" fill="white"/>
19
+ <rect x="141.468" y="85.8701" width="48.6349" height="6.26223" rx="3.13112" fill="#978DFF"/>
20
+ <rect x="141.468" y="98.3945" width="167.635" height="6.26223" rx="3.13112" fill="white"/>
21
+ <path d="M100.581 329.183V117.214H67.054V322.753C67.054 326.304 69.9327 329.183 73.4839 329.183H100.581Z" fill="#F0F0F2"/>
22
+ <rect x="162.729" y="279.696" width="49.064" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
23
+ <rect x="162.729" y="294.542" width="170.088" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
24
+ <rect x="162.729" y="239.28" width="49.064" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
25
+ <rect x="162.729" y="254.127" width="170.088" height="6.59825" rx="3.29913" fill="#E1E7E9"/>
26
+ <path d="M34.9216 162.84L34.598 155.977" stroke="#ACACAD" stroke-width="2.41123" stroke-miterlimit="10" stroke-linecap="round"/>
27
+ <path d="M27.3197 161.419L21.2609 157.227" stroke="#ACACAD" stroke-width="2.41123" stroke-miterlimit="10" stroke-linecap="round"/>
28
+ <path d="M27.956 171.079L21.9758 170.375" stroke="#ACACAD" stroke-width="2.41123" stroke-miterlimit="10" stroke-linecap="round"/>
29
+ <path d="M335.27 133.071L339.687 112.773C340.442 109.303 343.865 107.112 347.332 107.88L493.722 140.286C497.189 141.053 499.388 144.489 498.633 147.958L494.216 168.257L335.27 133.071Z" fill="#6558F5"/>
30
+ <rect width="1.76141" height="11.7969" rx="0.880705" transform="matrix(0.971439 0.237623 -0.233764 0.972213 352.747 116.39)" fill="white"/>
31
+ <rect width="1.77516" height="11.7055" rx="0.887579" transform="matrix(0.256712 -0.966319 0.965526 0.260942 346.718 121.404)" fill="white"/>
32
+ <rect width="23.7309" height="3.89702" rx="1.94851" transform="matrix(0.976364 0.216135 -0.212624 0.977134 374.868 121.86)" fill="white"/>
33
+ <rect width="81.7958" height="3.89702" rx="1.94851" transform="matrix(0.976364 0.216135 -0.212624 0.977134 373.211 129.478)" fill="white"/>
34
+ <path d="M398.419 328.876H403.421L402.855 337.364H399.102L398.419 328.876Z" fill="#FFD2AB"/>
35
+ <path d="M441.163 321.869L445.591 319.596L448.785 326.194L445.294 327.965L441.163 321.869Z" fill="#FFD2AB"/>
36
+ <path d="M458.557 162.373C459.078 160.526 458.35 160.14 458.764 158.867C459.178 157.594 459.977 156.076 460.608 156.722C461.238 157.369 460.241 158.508 460.876 160.38C461.05 160.89 462.856 161.217 462.856 161.217L465.331 161.815C464.748 162.594 464.012 163.242 463.169 163.72C461.808 164.469 462.265 164.651 461.251 165.935C459.005 168.783 457.35 166.223 457.783 164.681C458.217 163.14 458.036 164.218 458.557 162.373Z" fill="#FFD2AB"/>
37
+ <path d="M367.586 140.97C367.806 140.167 367.806 139.319 367.585 138.517C367.198 137.395 366.502 136.014 366.028 136.473C365.554 136.931 366.747 139.364 365.521 140.099C365.035 140.39 364.387 140.178 363.492 139.991C362.424 139.769 361.113 139.455 361.113 139.455C361.286 140.298 361.629 141.096 362.12 141.8C363.03 143.261 363.713 143.057 364.772 145.259C365.831 147.461 368.77 146.035 368.089 144.593C367.66 143.437 367.489 142.2 367.586 140.97V140.97Z" fill="#FFD2AB"/>
38
+ <path d="M395.235 232.228L416.324 235.751L407.007 279.608L403.846 329.767C403.016 330.283 402.069 330.577 401.095 330.619C400.024 330.549 398.979 330.259 398.023 329.767C398.023 329.767 395.912 299.826 395.235 281.69C394.557 263.553 395.235 232.228 395.235 232.228Z" fill="#0F2438"/>
39
+ <path d="M406.762 238.738L425.347 233.045C425.347 233.045 428.364 269.427 429.912 275.888C431.46 282.348 447.382 321.113 447.382 321.113C446.806 321.932 446.141 322.683 445.401 323.354C444.28 324.332 441.752 324.246 441.752 324.246C441.752 324.246 420.382 285.81 419.043 283.914C417.704 282.018 411.621 265.933 409.53 256.896C408.202 250.913 407.278 244.847 406.762 238.738V238.738Z" fill="#173450"/>
40
+ <path d="M395.576 191.552C398.883 193.834 418.969 195.45 424.09 194.632C429.212 193.815 435.574 189.576 442.143 184.256C448.712 178.936 457.846 163.117 457.846 163.117C458.28 163.813 458.903 164.367 459.641 164.714C460.383 165.047 461.181 165.237 461.992 165.276C461.992 165.276 453.772 184.586 445.833 192.681C437.893 200.776 428.555 204.841 427.586 208.001C426.618 211.162 427.685 227.369 425.061 233.987C422.437 240.606 397.382 242.821 395.576 236.535C393.771 230.25 392.452 213.24 390.378 208.005C388.305 202.77 382.299 194.843 377.568 188.229C372.836 181.616 363.818 145.128 363.818 145.128C364.644 145.369 365.52 145.369 366.346 145.128C367.072 144.787 367.703 144.269 368.183 143.622C368.183 143.622 376.829 168.638 382.715 177.614C388.601 186.59 392.269 189.278 395.576 191.552Z" fill="#6558F5"/>
41
+ <path d="M393.012 207.087C394.571 212.229 395.667 217.502 396.289 222.842C397.386 232.022 397.537 236.025 398.896 237.333C400.256 238.641 401.583 240.466 407.656 240.061C413.728 239.656 414.733 239.409 416.705 238.966C418.228 238.561 419.711 238.016 421.135 237.336C421.135 237.336 423.159 236.59 424.475 232.46C425.121 230.429 425.155 228.141 425.562 223.55C425.969 218.959 426.053 208.727 426.89 206.618C427.375 205.397 432.874 202.15 438.041 198.143C440.07 196.554 442.264 194.915 444.045 193.232C445.26 192.083 446.552 190.897 447.314 190.113C451.467 185.836 461.992 165.274 461.992 165.274C461.992 165.274 453.772 184.584 445.833 192.679C437.893 200.774 428.555 204.838 427.586 207.999C426.618 211.16 427.685 227.367 425.061 233.985C422.437 240.603 397.383 242.817 395.577 236.53C393.772 230.243 392.453 213.234 390.379 207.999C388.306 202.764 382.3 194.838 377.569 188.224C372.837 181.61 363.818 145.128 363.818 145.128C365.609 148.66 367.118 152.329 368.332 156.102C371.663 166.533 375.708 181.636 379.458 187.356C385.343 196.327 390.768 201.365 393.012 207.087Z" fill="#5B50DE"/>
42
+ <path d="M398.82 334.677C399.068 334.908 399.363 335.083 399.684 335.191C400.004 335.299 400.344 335.337 400.68 335.303C401.668 335.235 402.627 334.938 403.481 334.434C403.481 334.434 405.295 338.976 403.481 339.649C401.667 340.322 390.322 342.136 389.67 339.646C389.017 337.155 398.82 334.677 398.82 334.677Z" fill="#FBC103"/>
43
+ <path d="M444.282 326.697C444.603 326.807 444.943 326.846 445.28 326.813C445.617 326.78 445.943 326.675 446.237 326.505C447.112 326.038 447.867 325.372 448.445 324.561C448.445 324.561 451.934 327.967 450.548 329.326C449.162 330.685 439.524 336.994 437.927 334.994C436.329 332.994 444.282 326.697 444.282 326.697Z" fill="#FBC103"/>
44
+ <path d="M405.032 187.789L412.847 185.693C412.847 185.693 412.41 190.079 412.483 191.561C412.578 192.609 412.838 193.636 413.252 194.603C413.252 194.603 413.105 195.176 411.348 195.784C410.06 196.181 408.683 196.181 407.395 195.784C406.934 195.618 406.511 195.359 406.152 195.022C405.794 194.686 405.506 194.28 405.308 193.828C405.308 193.828 405.347 192.218 405.032 187.789Z" fill="#FFD2AB"/>
45
+ <path d="M397.851 178.949C397.566 178.566 395.613 181.133 396.434 182.377C397.254 183.621 398.076 182.377 398.076 182.377C398.133 181.229 398.057 180.079 397.851 178.949V178.949Z" fill="#F1B785"/>
46
+ <path d="M404.91 187.31L412.847 185.694C412.847 185.694 412.784 183.872 413.084 186.366C413.192 187.254 411.91 188.566 409.988 189.843C408.894 190.611 407.725 191.264 406.5 191.792C405.341 192.141 405.252 191.465 405.252 191.465C405.252 191.465 405.155 189.379 405.104 188.843C405.097 188.326 405.032 187.812 404.91 187.31V187.31Z" fill="#F1B785"/>
47
+ <path d="M407.766 167.166C410.545 167.177 413.206 168.3 415.163 170.289C417.121 172.278 418.214 174.97 418.204 177.773C418.204 183.632 411.4 189.942 405.727 189.59C400.054 189.238 396.939 183.632 396.939 177.773C397.017 174.93 398.192 172.231 400.215 170.249C402.237 168.268 404.947 167.162 407.766 167.166V167.166Z" fill="#FFD2AB"/>
48
+ <path d="M399.178 166.989C399.178 166.989 395.032 162.259 392.042 168.155C389.051 174.051 394.556 175.352 396.458 175.559C399.172 175.681 399.539 175.628 402.194 175.051C404.312 174.534 407.971 175.188 407.699 176.422C407.428 177.657 407.36 179.919 408.311 180.947C409.262 181.975 410.622 179.85 410.622 179.85C410.719 179.58 410.911 179.355 411.161 179.216C411.411 179.077 411.703 179.035 411.981 179.096C412.932 179.37 412.729 181.769 411.981 182.386C410.962 183.321 410.291 184.579 410.079 185.951C409.977 186.954 409.977 187.965 412.43 188.79C412.634 189.749 412.254 189.379 414.224 188.145C416.194 186.911 417.427 182.555 417.427 182.555C417.427 182.555 419.892 180.231 419.934 175.058C419.976 169.885 414.224 167.722 414.224 167.722C414.224 167.722 412.886 164.627 407.156 163.61C401.426 162.593 399.178 166.989 399.178 166.989Z" fill="#0F2437"/>
49
+ <g filter="url(#filter0_d_41_287)">
50
+ <rect x="34.3447" y="170" width="94.0393" height="42.0639" rx="3.21498" fill="#5046C2"/>
51
+ <rect x="34.3447" y="217.836" width="94.0393" height="112.17" rx="3.21498" fill="#FAFAFA"/>
52
+ <rect x="45.793" y="182.371" width="23.7142" height="6.59825" rx="3.21498" fill="#978DFF"/>
53
+ <rect x="45.793" y="226.909" width="23.7142" height="6.59825" rx="3.21498" fill="#E1E7E9"/>
54
+ <rect x="45.793" y="259.902" width="23.7142" height="6.59825" rx="3.21498" fill="#E1E7E9"/>
55
+ <rect x="45.793" y="292.892" width="23.7142" height="6.59825" rx="3.21498" fill="#E1E7E9"/>
56
+ <rect x="45.793" y="197.217" width="37.6157" height="6.59825" rx="3.21498" fill="white"/>
57
+ <rect x="45.793" y="241.757" width="37.6157" height="6.59825" fill="#E1E7E9"/>
58
+ <rect x="45.793" y="274.746" width="37.6157" height="6.59825" fill="#E1E7E9"/>
59
+ <rect x="45.793" y="307.738" width="37.6157" height="6.59825" fill="#E1E7E9"/>
60
+ </g>
61
+ <path d="M66.9955 16.1268L61.3827 13.5851C61.0157 13.4189 60.5842 13.5598 60.3856 13.9108C60.1871 14.2618 60.2862 14.7081 60.6148 14.9423L65.5657 18.471C69.3064 21.1371 70.6716 26.0799 68.8296 30.2881L66.5523 35.491C66.387 35.8688 66.5371 36.3148 66.8943 36.5204C67.2514 36.726 67.7085 36.6295 67.9469 36.2937L71.2297 31.6696C73.8849 27.9295 78.7985 26.6008 82.9771 28.4929L88.5076 30.9973C88.8746 31.1635 89.3061 31.0226 89.5047 30.6716C89.7032 30.3207 89.6041 29.8743 89.2755 29.6401L84.2509 26.0589C80.5435 23.4165 79.1653 18.5332 80.9439 14.3418L82.6486 10.3245C82.8083 9.94802 82.6615 9.50978 82.3074 9.30594L82.2845 9.29278C81.9304 9.08893 81.4816 9.18437 81.2415 9.51459L78.6795 13.0384C76.0063 16.7149 71.1369 18.0021 66.9955 16.1268Z" fill="#48A0E0"/>
62
+ <path d="M400.021 44.694L401.004 44.8016C401.29 44.833 401.507 45.0748 401.507 45.3628C401.507 45.6508 401.29 45.8927 401.004 45.924L400.101 46.0229C395.54 46.5222 391.963 50.1648 391.546 54.7334L391.38 56.5432C391.357 56.8039 391.138 57.0035 390.876 57.0035C390.614 57.0035 390.396 56.8039 390.372 56.5432L390.207 54.7334C389.789 50.1647 386.212 46.5222 381.652 46.0229L380.749 45.924C380.462 45.8927 380.246 45.6508 380.246 45.3628C380.246 45.0748 380.462 44.833 380.749 44.8016L381.732 44.694C386.256 44.1986 389.818 40.608 390.277 36.08L390.367 35.1942C390.394 34.9331 390.614 34.7344 390.876 34.7344C391.139 34.7344 391.359 34.9331 391.385 35.1942L391.475 36.08C391.934 40.608 395.497 44.1986 400.021 44.694Z" fill="#5BC77B"/>
63
+ <path d="M201.312 38.9196L202.295 39.0272C202.581 39.0585 202.798 39.3004 202.798 39.5884C202.798 39.8764 202.581 40.1183 202.295 40.1496L201.392 40.2485C196.831 40.7478 193.254 44.3903 192.837 48.9589L192.671 50.7688C192.648 51.0295 192.429 51.2291 192.167 51.2291C191.905 51.2291 191.687 51.0295 191.663 50.7688L191.498 48.9589C191.08 44.3903 187.503 40.7478 182.943 40.2485L182.04 40.1496C181.753 40.1183 181.537 39.8764 181.537 39.5884C181.537 39.3004 181.753 39.0585 182.04 39.0272L183.023 38.9196C187.547 38.4242 191.109 34.8336 191.568 30.3056L191.658 29.4198C191.685 29.1587 191.905 28.96 192.167 28.96C192.43 28.96 192.65 29.1587 192.676 29.4198L192.766 30.3056C193.225 34.8336 196.788 38.4242 201.312 38.9196Z" fill="#C75B61"/>
64
+ <path d="M17.0659 48.4544C15.1986 51.7547 11.0387 52.8952 7.77923 51.0191C4.51976 49.1429 3.37728 44.9504 5.24461 41.6501C7.11194 38.3497 11.2719 37.2092 14.5313 39.0854C17.7908 40.9615 18.9333 45.154 17.0659 48.4544Z" stroke="#AB79DF" stroke-width="2.74965"/>
65
+ <ellipse rx="5.31526" ry="5.36108" transform="matrix(-1 0 0 1 427.265 12.0544)" fill="#F1AE54"/>
66
+ <ellipse rx="5.31526" ry="5.36108" transform="matrix(-1 0 0 1 273.532 28.5505)" fill="#5F87AC"/>
67
+ <path d="M50.0642 109.683C48.1968 112.983 44.0369 114.124 40.7775 112.248C37.518 110.371 36.3755 106.179 38.2428 102.879C40.1102 99.5782 44.2701 98.4377 47.5296 100.314C50.789 102.19 51.9315 106.383 50.0642 109.683Z" stroke="#F2BA69" stroke-width="2.74965"/>
68
+ <path d="M440.553 74.3232H436.874V83.2584H427.674V86.8324H436.874V95.7676H440.553V86.8324H449.753V83.2584H440.553V74.3232Z" fill="#4CA4E2"/>
69
+ <defs>
70
+ <filter id="filter0_d_41_287" x="15.0549" y="157.14" width="132.619" height="198.586" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
71
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
72
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
73
+ <feOffset dy="6.42996"/>
74
+ <feGaussianBlur stdDeviation="9.64493"/>
75
+ <feComposite in2="hardAlpha" operator="out"/>
76
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
77
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_41_287"/>
78
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_41_287" result="shape"/>
79
+ </filter>
80
+ </defs>
81
+ </svg>
images/firstwidget_header.svg ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="199" height="196" viewBox="0 0 199 196" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M97.905 51.1423C97.905 54.3606 95.91 57.6823 93.453 57.6823C90.995 57.6823 89 54.3675 89 51.1423C89 47.9172 90.993 46 93.453 46C95.912 46 97.905 47.9172 97.905 51.1423Z" fill="#DEDBFF"/>
3
+ <path d="M91.598 70.32H91.368C91.368 69.219 91.945 68.667 92.503 68.134C93.062 67.601 93.57 67.113 93.57 66.107C93.57 65.1 93.066 64.606 92.517 64.075C91.968 63.5435 91.381 62.9895 91.381 61.8884C91.381 60.7873 91.958 60.2425 92.517 59.7069C93.076 59.1712 93.584 58.6862 93.584 57.6816H93.814C93.814 58.7805 93.237 59.3322 92.678 59.8678C92.119 60.4034 91.598 60.8884 91.598 61.893C91.598 62.8975 92.117 63.3964 92.666 63.9205C93.216 64.445 93.802 65.006 93.802 66.107C93.802 67.208 93.225 67.759 92.666 68.293C92.108 68.826 91.598 69.313 91.598 70.32Z" fill="#799EB0"/>
4
+ <path d="M93.453 57.3516L92.678 58.9492H94.225L93.453 57.3516Z" fill="#407BFF"/>
5
+ <path d="M93.713 57.9878H93.191C93.11 57.9872 93.032 57.9548 92.975 57.8976C92.918 57.8404 92.886 57.763 92.885 57.6821C92.885 57.6008 92.917 57.5228 92.974 57.4651C93.032 57.4074 93.109 57.3746 93.191 57.374H93.713C93.753 57.374 93.793 57.382 93.83 57.3975C93.867 57.413 93.901 57.4357 93.93 57.4644C93.958 57.493 93.98 57.527 93.996 57.5644C94.011 57.6017 94.019 57.6417 94.018 57.6821C94.018 57.7631 93.986 57.8409 93.929 57.8982C93.871 57.9556 93.794 57.9878 93.713 57.9878Z" fill="#455A64"/>
6
+ <path d="M45.927 76.032C46.021 76.125 64.381 69.848 64.381 69.848L57.305 53.7266L40.979 59.9604L49.968 65.099L45.927 76.032Z" fill="#799EB0"/>
7
+ <path d="M54.54 58.5793V36.6316C54.54 36.6316 79.866 32.0209 98.115 32.296C116.364 32.5711 135.155 35.5477 135.155 35.5477V56.6206C135.155 56.6206 77.958 51.5367 54.54 58.5793Z" fill="#799EB0"/>
8
+ <path d="M54.408 58.6018L64.359 69.942V56.6211C64.359 56.6211 56.039 57.6115 54.408 58.6018Z" fill="#5A7685"/>
9
+ <path d="M54.54 36.626C54.623 36.626 54.656 41.5778 54.623 47.6301C54.59 53.6823 54.491 58.6342 54.413 58.6342C54.336 58.6342 54.297 53.7153 54.33 47.6301C54.363 41.5448 54.457 36.626 54.54 36.626Z" fill="#5A7685"/>
10
+ <path d="M143.724 74.348C143.63 74.441 125.27 68.164 125.27 68.164L132.33 52.0371L148.672 58.2599L139.677 63.3988L143.724 74.348Z" fill="#799EB0"/>
11
+ <path d="M135.255 56.9183L125.303 68.258V55.9004C128.64 56.0141 131.965 56.3541 135.255 56.9183Z" fill="#5A7685"/>
12
+ <path d="M135.144 35.5479C135.222 35.5479 135.31 40.3291 135.338 46.2328C135.365 52.1365 135.338 56.9178 135.244 56.9178C135.15 56.9178 135.078 52.1365 135.05 46.2328C135.022 40.3291 135.061 35.5479 135.144 35.5479Z" fill="#5A7685"/>
13
+ <path d="M68.82 46.255C68.768 45.6231 68.904 44.99 69.211 44.4347C69.519 43.8794 69.984 43.4267 70.549 43.1331C71.113 42.8395 71.752 42.7181 72.386 42.7841C73.019 42.8501 73.619 43.1005 74.111 43.504L73.337 44.4283C73.128 44.2391 72.881 44.098 72.611 44.0153C72.342 43.9325 72.057 43.9101 71.778 43.9496C71.282 44.0182 70.834 44.2799 70.533 44.6772C70.231 45.0744 70.1 45.5747 70.169 46.0679C70.238 46.5611 70.501 47.0069 70.9 47.3072C71.299 47.6074 71.802 47.7376 72.297 47.669C72.578 47.6322 72.848 47.533 73.085 47.3788C73.322 47.2245 73.522 47.019 73.668 46.7777L74.641 47.4544C74.281 47.9764 73.774 48.3809 73.183 48.6173C72.593 48.8537 71.946 48.9115 71.322 48.7834C70.699 48.6554 70.128 48.3472 69.68 47.8974C69.232 47.4477 68.927 46.8763 68.803 46.255H68.82Z" fill="white"/>
14
+ <path d="M74.8509 45.4298C74.7489 44.7945 74.8399 44.1432 75.1129 43.5601C75.3859 42.9769 75.8289 42.4889 76.3839 42.1591C76.9389 41.8294 77.5809 41.6731 78.2269 41.7105C78.8719 41.7479 79.4909 41.9773 80.0039 42.369C80.5169 42.7607 80.8999 43.2966 81.1039 43.9074C81.3069 44.5182 81.3209 45.1756 81.1449 45.7947C80.9689 46.4137 80.6099 46.9658 80.1139 47.3795C79.6189 47.7931 79.0109 48.0493 78.3679 48.1148C77.9579 48.1798 77.5389 48.1611 77.1369 48.0597C76.7349 47.9583 76.3579 47.7764 76.0289 47.5251C75.6999 47.2738 75.4259 46.9584 75.2229 46.5982C75.0209 46.2379 74.8939 45.8404 74.8509 45.4298ZM79.8879 44.9126C79.8429 44.5556 79.6929 44.2197 79.4579 43.9467C79.2219 43.6737 78.9109 43.4758 78.5629 43.3777C78.2159 43.2795 77.8469 43.2854 77.5019 43.3947C77.1579 43.5039 76.8529 43.7117 76.6269 43.992C76.3999 44.2724 76.2609 44.6129 76.2279 44.9712C76.1949 45.3294 76.2679 45.6895 76.4389 46.0066C76.6099 46.3236 76.8709 46.5835 77.1889 46.754C77.5079 46.9244 77.8689 46.9977 78.2289 46.9648C78.4779 46.9486 78.7199 46.8812 78.9399 46.767C79.1609 46.6528 79.3559 46.4942 79.5109 46.3012C79.6669 46.1083 79.7809 45.8853 79.8459 45.6462C79.9109 45.4072 79.9249 45.1574 79.8879 44.9126Z" fill="white"/>
15
+ <path d="M87.882 47.2616L87.644 43.7513L86.102 46.7555L85.494 46.794L83.586 44.087L83.813 47.5202L82.536 47.6028L82.182 41.7541L83.288 41.6826L85.72 45.1764L87.65 41.4075L88.755 41.3359L89.153 47.1791L87.882 47.2616Z" fill="white"/>
16
+ <path d="M95.4939 43.2564C95.5279 44.5659 94.5659 45.4022 92.9959 45.4572L91.8069 45.4902L91.8569 47.1078L90.4909 47.1463L90.325 41.2536L92.8739 41.1821C94.4499 41.1601 95.4499 41.9469 95.4939 43.2564ZM94.1119 43.2949C94.1119 42.6511 93.6649 42.288 92.8299 42.31L91.7239 42.343L91.7849 44.3788L92.8909 44.3458C93.7199 44.3238 94.1289 43.9331 94.1119 43.2949Z" fill="white"/>
17
+ <path d="M96.556 41.127H97.916V45.8807H100.868V46.9811H96.556V41.127Z" fill="white"/>
18
+ <path d="M106.148 46.0515V47.1519L101.587 47.0198L101.758 41.1602L106.181 41.2922L106.148 42.3926L103.052 42.2991L103.019 43.5756L105.75 43.6526L105.716 44.709L102.985 44.6264L102.947 45.9855L106.148 46.0515Z" fill="white"/>
19
+ <path d="M108.669 42.5181L106.789 42.408L106.855 41.3076L111.975 41.6157L111.908 42.7161L110.029 42.6006L109.741 47.3489L108.381 47.2663L108.669 42.5181Z" fill="white"/>
20
+ <path d="M116.934 46.855L116.834 47.9554L112.29 47.5372L112.843 41.7051L117.265 42.1122L117.166 43.2126L114.081 42.9045L113.965 44.1755L116.685 44.4231L116.591 45.474L113.865 45.2264L113.744 46.5744L116.934 46.855Z" fill="white"/>
21
+ <path d="M118.636 42.2383L121.284 42.5904C123.192 42.8435 124.347 44.1585 124.115 45.8916C123.883 47.6248 122.412 48.6427 120.505 48.3676L117.857 48.0154L118.636 42.2383ZM120.588 47.2837C120.828 47.3221 121.074 47.3122 121.311 47.2544C121.548 47.1967 121.77 47.0924 121.966 46.9476C122.161 46.8028 122.326 46.6205 122.449 46.4114C122.573 46.2024 122.653 45.9708 122.685 45.7304C122.717 45.4899 122.701 45.2455 122.636 45.0116C122.572 44.7776 122.461 44.5589 122.311 44.3683C122.16 44.1776 121.972 44.019 121.759 43.9017C121.546 43.7844 121.311 43.7108 121.069 43.6853L119.836 43.5203L119.355 47.1186L120.588 47.2837Z" fill="white"/>
22
+ <path d="M144 37.0254L144.786 38L147 37.0254L146.352 36L144 37.0254Z" fill="#455A64"/>
23
+ <path d="M137 18.5C137 18.9945 136.853 19.4778 136.579 19.8889C136.304 20.3 135.914 20.6205 135.457 20.8097C135 20.9989 134.497 21.0484 134.012 20.952C133.527 20.8555 133.082 20.6174 132.732 20.2678C132.383 19.9181 132.144 19.4727 132.048 18.9877C131.952 18.5028 132.001 18.0001 132.19 17.5433C132.38 17.0865 132.7 16.696 133.111 16.4213C133.522 16.1466 134.006 16 134.5 16C135.163 16.0017 135.797 16.2657 136.266 16.7341C136.734 17.2026 136.998 17.8375 137 18.5Z" fill="#FF725E"/>
24
+ <path d="M43 30.0001C43 30.1985 42.941 30.3923 42.83 30.5571C42.72 30.7218 42.563 30.8499 42.379 30.9252C42.196 31.0005 41.994 31.0195 41.8 30.9798C41.605 30.9401 41.427 30.8434 41.288 30.7022C41.149 30.561 41.055 30.3815 41.018 30.1867C40.981 29.9918 41.002 29.7903 41.08 29.6078C41.158 29.4254 41.288 29.2701 41.454 29.1619C41.621 29.0537 41.815 28.9974 42.014 29.0001C42.277 29.0037 42.527 29.1106 42.712 29.2978C42.897 29.4849 43 29.7372 43 30.0001Z" fill="#FF725E"/>
25
+ <path d="M83 63L82 64.722L84.192 68L85 66.273L83 63Z" fill="#455A64"/>
26
+ <path d="M65.249 16.6211L70.86 22.3157L78.76 19.3446L79.075 21.2978L75.653 28.2689L78.81 33.4739L78.545 35.0309L70.899 33.749L66.377 38.6843L65.315 37.8865L64.381 31.6087L57.249 27.9113L56.934 26.4753L64.115 24.522L65.249 16.6211Z" fill="#EDCB54"/>
27
+ <path d="M65.249 15.0195L70.86 20.7197L78.76 19.3441L75.051 26.4198L78.81 33.4734L70.899 32.1529L65.315 37.886L64.138 29.9906L56.934 26.4748L64.115 22.9205L65.249 15.0195Z" fill="#FFDB5A"/>
28
+ <path d="M123.435 16.6211L117.818 22.3157L109.918 19.3446L109.603 21.2978L113.025 28.2689L109.868 33.4739L110.134 35.0309L117.779 33.749L122.301 38.6843L123.363 37.8865L124.297 31.6087L131.429 27.9113L131.744 26.4753L124.563 24.522L123.435 16.6211Z" fill="#EDCB54"/>
29
+ <path d="M123.435 15.0195L117.818 20.7197L109.918 19.3441L113.627 26.4198L109.868 33.4734L117.779 32.1529L123.363 37.886L124.54 29.9906L131.744 26.4748L124.563 22.9205L123.435 15.0195Z" fill="#FFDB5A"/>
30
+ <path d="M94.157 6.62305L98.8279 15.7069L109.603 15.0742L109.238 17.5721L102.394 24.7853L104.246 32.3286L103.334 34.1278L94.4939 29.6656L87.0909 33.9792L86.1019 32.5982L87.3619 24.5817L80.0759 17.3685L80.2419 15.5034L89.7509 15.839L94.157 6.62305Z" fill="#EDCB54"/>
31
+ <path d="M94.765 4.67578L99.4359 13.7542L109.603 15.0747L102.366 22.3043L104.246 32.3291L95.1069 27.7184L86.1019 32.5987L87.6879 22.5189L80.2419 15.5038L90.364 13.8862L94.765 4.67578Z" fill="#FFDB5A"/>
32
+ <path d="M198.322 106.23C198.322 108.883 196.677 111.605 194.662 111.605C192.647 111.605 191 108.883 191 106.23C191 103.576 192.645 102 194.662 102C196.68 102 198.322 103.576 198.322 106.23Z" fill="#407BFF"/>
33
+ <path d="M194.662 111.334L194.026 112.65H195.298L194.662 111.334Z" fill="#407BFF"/>
34
+ <path opacity="0.7" d="M198.322 106.23C198.322 108.883 196.677 111.605 194.662 111.605C192.647 111.605 191 108.883 191 106.23C191 103.576 192.645 102 194.662 102C196.68 102 198.322 103.576 198.322 106.23Z" fill="white"/>
35
+ <path d="M196.565 122H196.384C196.384 121.178 195.956 120.767 195.504 120.333C195.052 119.9 194.569 119.443 194.569 118.535C194.569 117.628 195.046 117.165 195.504 116.737C195.962 116.309 196.384 115.898 196.384 115.07C196.384 114.243 195.956 113.837 195.504 113.404C195.052 112.971 194.569 112.513 194.569 111.605H194.753C194.753 112.428 195.178 112.842 195.63 113.275C196.082 113.708 196.565 114.166 196.565 115.07C196.565 115.975 196.09 116.441 195.63 116.869C195.169 117.296 194.753 117.707 194.753 118.535C194.753 119.363 195.178 119.772 195.63 120.202C196.082 120.632 196.565 121.096 196.565 122Z" fill="#799EB0"/>
36
+ <path opacity="0.7" d="M194.662 111.334L194.026 112.65H195.298L194.662 111.334Z" fill="white"/>
37
+ <path d="M194.876 111.858H194.446C194.379 111.858 194.315 111.832 194.267 111.784C194.22 111.737 194.194 111.673 194.194 111.606C194.194 111.539 194.221 111.476 194.268 111.429C194.316 111.383 194.379 111.356 194.446 111.356H194.876C194.943 111.356 195.006 111.383 195.054 111.429C195.101 111.476 195.128 111.539 195.128 111.606C195.128 111.673 195.102 111.737 195.054 111.784C195.007 111.832 194.943 111.858 194.876 111.858Z" fill="#455A64"/>
38
+ <path d="M21.674 64.163C21.674 68.021 19.282 71.999 16.337 71.999C13.392 71.999 11 68.029 11 64.163C11 60.2979 13.408 58 16.345 58C19.282 58 21.674 60.2979 21.674 64.163Z" fill="#DEDBFF"/>
39
+ <path d="M14.124 87.15H13.849C13.849 85.83 14.54 85.169 15.21 84.53C15.879 83.891 16.488 83.306 16.488 82.1C16.488 80.893 15.868 80.298 15.21 79.67C14.551 79.041 13.849 78.369 13.849 77.049C13.849 75.73 14.54 75.068 15.21 74.429C15.879 73.79 16.488 73.206 16.488 71.999H16.764C16.764 73.319 16.072 73.98 15.403 74.619C14.733 75.258 14.122 75.843 14.122 77.049C14.122 78.256 14.744 78.848 15.403 79.479C16.061 80.11 16.764 80.78 16.764 82.1C16.764 83.419 16.072 84.081 15.403 84.72C14.733 85.359 14.124 85.943 14.124 87.15Z" fill="#799EB0"/>
40
+ <path d="M16.3449 71.603L15.4189 73.52H17.2709L16.3449 71.603Z" fill="#407BFF"/>
41
+ <path d="M16.656 72.361H16.031C15.934 72.36 15.84 72.321 15.772 72.252C15.703 72.182 15.665 72.089 15.665 71.991C15.665 71.894 15.704 71.802 15.773 71.733C15.841 71.665 15.934 71.626 16.031 71.625H16.656C16.754 71.625 16.847 71.664 16.917 71.732C16.986 71.801 17.025 71.894 17.026 71.991C17.026 72.089 16.987 72.183 16.917 72.253C16.848 72.322 16.754 72.361 16.656 72.361Z" fill="#455A64"/>
42
+ <path d="M80 2.5C80 2.9945 79.853 3.4778 79.579 3.8889C79.304 4.3 78.914 4.6205 78.457 4.8097C78 4.9989 77.497 5.0484 77.012 4.952C76.527 4.8555 76.082 4.6174 75.732 4.2678C75.383 3.9181 75.144 3.4727 75.048 2.9877C74.952 2.5028 75.001 2.0001 75.19 1.5433C75.38 1.0865 75.7 0.695999 76.111 0.421299C76.522 0.146599 77.006 0 77.5 0C78.163 0.0017 78.797 0.2657 79.266 0.7341C79.734 1.2026 79.998 1.8375 80 2.5Z" fill="#5BC77B"/>
43
+ <path d="M172.022 189.481V83.215C172.022 81.439 170.583 80 168.807 80H23.975C22.199 80 20.76 81.439 20.76 83.215V189.481C20.76 193.032 23.639 195.911 27.19 195.911H165.592C169.143 195.911 172.022 193.032 172.022 189.481Z" fill="#FAFAFA"/>
44
+ <path d="M84.88 112.903H65.6287C64.8027 112.903 64.1331 113.573 64.1331 114.399V114.399C64.1331 115.225 64.8027 115.894 65.6287 115.894H84.88C85.706 115.894 86.3757 115.225 86.3757 114.399V114.399C86.3757 113.573 85.706 112.903 84.88 112.903Z" fill="#E1E7E9"/>
45
+ <path d="M139.745 119.634H65.6287C64.8027 119.634 64.1331 120.304 64.1331 121.13C64.1331 121.956 64.8027 122.625 65.6287 122.625H139.745C140.571 122.625 141.241 121.956 141.241 121.13C141.241 120.304 140.571 119.634 139.745 119.634Z" fill="#E1E7E9"/>
46
+ <path d="M141.241 131.599H118.257V148.051H141.241V131.599Z" fill="#FAFCFD"/>
47
+ <path d="M132.596 137.581L125.671 145.059H139.016L132.596 137.581Z" fill="#C4C4C4"/>
48
+ <path d="M123.446 138.704C124.265 138.704 124.929 138.034 124.929 137.208C124.929 136.382 124.265 135.712 123.446 135.712C122.627 135.712 121.963 136.382 121.963 137.208C121.963 138.034 122.627 138.704 123.446 138.704Z" fill="#C4C4C4"/>
49
+ <path d="M126.017 140.198L121.593 145.059H130.119L126.017 140.198Z" fill="#DEDEDE"/>
50
+ <path d="M116.774 131.599H93.79V148.051H116.774V131.599Z" fill="#FAFCFD"/>
51
+ <path d="M108.129 137.581L101.204 145.059H114.549L108.129 137.581Z" fill="#C4C4C4"/>
52
+ <path d="M98.9789 138.704C99.7979 138.704 100.462 138.034 100.462 137.208C100.462 136.382 99.7979 135.712 98.9789 135.712C98.16 135.712 97.4961 136.382 97.4961 137.208C97.4961 138.034 98.16 138.704 98.9789 138.704Z" fill="#C4C4C4"/>
53
+ <path d="M101.55 140.198L97.126 145.059H105.652L101.55 140.198Z" fill="#DEDEDE"/>
54
+ <path d="M92.307 131.599H69.323V148.051H92.307V131.599Z" fill="#FAFCFD"/>
55
+ <path d="M83.662 137.581L76.7371 145.059H90.0831L83.662 137.581Z" fill="#C4C4C4"/>
56
+ <path d="M74.513 138.704C75.332 138.704 75.9958 138.034 75.9958 137.208C75.9958 136.382 75.332 135.712 74.513 135.712C73.6941 135.712 73.0302 136.382 73.0302 137.208C73.0302 138.034 73.6941 138.704 74.513 138.704Z" fill="#C4C4C4"/>
57
+ <path d="M77.084 140.198L72.6589 145.059H81.1859L77.084 140.198Z" fill="#DEDEDE"/>
58
+ <path d="M20.76 99.817V86.43C20.76 82.879 23.639 80 27.19 80H165.58C169.131 80 172.01 82.879 172.01 86.43V99.817H20.76Z" fill="#5046C2"/>
59
+ <path d="M35 90C35 88.3431 33.6569 87 32 87C30.3431 87 29 88.3431 29 90C29 91.6569 30.3431 93 32 93C33.6569 93 35 91.6569 35 90Z" fill="white"/>
60
+ <path d="M74 88H61C59.8954 88 59 88.8954 59 90C59 91.1046 59.8954 92 61 92H74C75.1046 92 76 91.1046 76 90C76 88.8954 75.1046 88 74 88Z" fill="#978DFF"/>
61
+ <path d="M95 88H82C80.8954 88 80 88.8954 80 90C80 91.1046 80.8954 92 82 92H95C96.1046 92 97 91.1046 97 90C97 88.8954 96.1046 88 95 88Z" fill="#978DFF"/>
62
+ <path d="M116 88H103C101.895 88 101 88.8954 101 90C101 91.1046 101.895 92 103 92H116C117.105 92 118 91.1046 118 90C118 88.8954 117.105 88 116 88Z" fill="#978DFF"/>
63
+ <path d="M137 88H124C122.895 88 122 88.8954 122 90C122 91.1046 122.895 92 124 92H137C138.105 92 139 91.1046 139 90C139 88.8954 138.105 88 137 88Z" fill="#978DFF"/>
64
+ <path d="M35.959 195.911V99.817H20.76V189.481C20.76 193.032 23.639 195.911 27.19 195.911H35.959Z" fill="#F0F0F2"/>
65
+ <path d="M172 196V100H21V189.57C21 193.121 23.879 196 27.43 196H172Z" fill="#F0F0F2" fill-opacity="0.5"/>
66
+ <path d="M84.88 173.478H65.6287C64.8027 173.478 64.1331 174.148 64.1331 174.974V174.974C64.1331 175.8 64.8027 176.469 65.6287 176.469H84.88C85.706 176.469 86.3757 175.8 86.3757 174.974V174.974C86.3757 174.148 85.706 173.478 84.88 173.478Z" fill="#E1E7E9"/>
67
+ <path d="M139.745 180.207H65.6287C64.8027 180.207 64.1331 180.877 64.1331 181.703V181.703C64.1331 182.529 64.8027 183.198 65.6287 183.198H139.745C140.571 183.198 141.241 182.529 141.241 181.703C141.241 180.877 140.571 180.207 139.745 180.207Z" fill="#E1E7E9"/>
68
+ <path d="M84.88 155.154H65.6287C64.8027 155.154 64.1331 155.824 64.1331 156.65V156.65C64.1331 157.476 64.8027 158.145 65.6287 158.145H84.88C85.706 158.145 86.3757 157.476 86.3757 156.65V156.65C86.3757 155.824 85.706 155.154 84.88 155.154Z" fill="#E1E7E9"/>
69
+ <path d="M139.745 161.886H65.6287C64.8027 161.886 64.1331 162.556 64.1331 163.382V163.382C64.1331 164.208 64.8027 164.877 65.6287 164.877H139.745C140.571 164.877 141.241 164.208 141.241 163.382C141.241 162.556 140.571 161.886 139.745 161.886Z" fill="#E1E7E9"/>
70
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M103 131C96.373 131 91 136.373 91 143C91 149.627 96.373 155 103 155C109.627 155 115 149.627 115 143C115 136.373 109.627 131 103 131ZM108.201 140.971C108.297 140.861 108.37 140.734 108.416 140.596C108.462 140.458 108.479 140.312 108.468 140.167C108.457 140.022 108.416 139.881 108.349 139.751C108.283 139.622 108.191 139.508 108.079 139.415C107.967 139.321 107.838 139.252 107.699 139.209C107.56 139.167 107.413 139.153 107.269 139.167C107.124 139.182 106.984 139.226 106.856 139.296C106.729 139.366 106.616 139.461 106.526 139.575L101.835 145.203L99.408 142.774C99.202 142.575 98.926 142.466 98.64 142.468C98.354 142.47 98.081 142.585 97.878 142.787C97.676 142.99 97.561 143.263 97.559 143.549C97.556 143.835 97.666 144.111 97.865 144.317L101.138 147.589C101.245 147.697 101.373 147.78 101.515 147.835C101.656 147.89 101.807 147.914 101.958 147.908C102.11 147.901 102.258 147.862 102.394 147.795C102.53 147.728 102.65 147.633 102.747 147.516L108.201 140.971Z" fill="#5046C2"/>
71
+ <g filter="url(#filter0_i_128_218)">
72
+ <path d="M45.3477 123.747H9.146C7.37041 123.747 5.93103 125.186 5.93103 126.962V139.601C5.93103 141.377 7.37041 142.816 9.146 142.816H45.3477C47.1233 142.816 48.5627 141.377 48.5627 139.601V126.962C48.5627 125.186 47.1233 123.747 45.3477 123.747Z" fill="#5046C2"/>
73
+ <path d="M45.4167 145H9.21497C7.43938 145 6 146.439 6 148.215V192.636C6 194.412 7.43938 195.851 9.21497 195.851H45.4167C47.1923 195.851 48.6317 194.412 48.6317 192.636V148.215C48.6317 146.439 47.1923 145 45.4167 145Z" fill="#FAFAFA"/>
74
+ <path d="M48.728 193V148C48.728 146.343 47.385 145 45.728 145H9C7.343 145 6 146.343 6 148V193C6 194.657 7.343 196 9 196H45.728C47.385 196 48.728 194.657 48.728 193Z" fill="#F0F0F2" fill-opacity="0.5"/>
75
+ <path d="M20.3761 129.355H12.6167C11.7907 129.355 11.1211 130.025 11.1211 130.851V130.851C11.1211 131.677 11.7907 132.346 12.6167 132.346H20.3761C21.2021 132.346 21.8717 131.677 21.8717 130.851V130.851C21.8717 130.025 21.2021 129.355 20.3761 129.355Z" fill="#978DFF"/>
76
+ <path d="M20.3761 149.546H12.6167C11.7907 149.546 11.1211 150.216 11.1211 151.042C11.1211 151.868 11.7907 152.537 12.6167 152.537H20.3761C21.2021 152.537 21.8717 151.868 21.8717 151.042C21.8717 150.216 21.2021 149.546 20.3761 149.546Z" fill="#E1E7E9"/>
77
+ <path d="M20.3761 164.504H12.6167C11.7907 164.504 11.1211 165.174 11.1211 166V166C11.1211 166.826 11.7907 167.495 12.6167 167.495H20.3761C21.2021 167.495 21.8717 166.826 21.8717 166V166C21.8717 165.174 21.2021 164.504 20.3761 164.504Z" fill="#E1E7E9"/>
78
+ <path d="M20.3761 179.458H12.6167C11.7907 179.458 11.1211 180.128 11.1211 180.954V180.954C11.1211 181.78 11.7907 182.449 12.6167 182.449H20.3761C21.2021 182.449 21.8717 181.78 21.8717 180.954V180.954C21.8717 180.128 21.2021 179.458 20.3761 179.458Z" fill="#E1E7E9"/>
79
+ <path d="M26.6782 136.085H12.6167C11.7907 136.085 11.1211 136.755 11.1211 137.581C11.1211 138.407 11.7907 139.076 12.6167 139.076H26.6782C27.5042 139.076 28.1738 138.407 28.1738 137.581C28.1738 136.755 27.5042 136.085 26.6782 136.085Z" fill="white"/>
80
+ <path d="M28.1738 156.277H11.1211V159.268H28.1738V156.277Z" fill="#E1E7E9"/>
81
+ <path d="M28.1738 171.232H11.1211V174.223H28.1738V171.232Z" fill="#E1E7E9"/>
82
+ <path d="M28.1738 186.188H11.1211V189.179H28.1738V186.188Z" fill="#E1E7E9"/>
83
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M27 165C23.686 165 21 167.686 21 171C21 174.314 23.686 177 27 177C30.314 177 33 174.314 33 171C33 167.686 30.314 165 27 165ZM29.601 169.985C29.649 169.931 29.685 169.867 29.708 169.798C29.731 169.729 29.74 169.656 29.734 169.583C29.728 169.511 29.708 169.44 29.675 169.376C29.641 169.311 29.595 169.254 29.539 169.207C29.484 169.161 29.419 169.126 29.349 169.105C29.28 169.083 29.207 169.076 29.134 169.084C29.062 169.091 28.992 169.113 28.928 169.148C28.864 169.183 28.808 169.23 28.763 169.287L26.417 172.101L25.204 170.887C25.101 170.788 24.963 170.733 24.82 170.734C24.677 170.735 24.54 170.793 24.439 170.894C24.338 170.995 24.281 171.132 24.279 171.275C24.278 171.418 24.333 171.555 24.433 171.658L26.069 173.295C26.123 173.348 26.187 173.39 26.257 173.417C26.328 173.445 26.404 173.457 26.479 173.454C26.555 173.45 26.629 173.431 26.697 173.398C26.765 173.364 26.825 173.316 26.873 173.258L29.601 169.985Z" fill="#5046C2"/>
84
+ </g>
85
+ <path d="M189.064 75.544C189.064 80.265 186.137 85.138 182.532 85.138C178.927 85.138 176 80.275 176 75.544C176 70.813 178.924 68 182.532 68C186.141 68 189.064 70.813 189.064 75.544Z" fill="#DEDBFF"/>
86
+ <path d="M179.811 103.679H179.474C179.474 102.063 180.32 101.254 181.14 100.472C181.959 99.6889 182.704 98.9739 182.704 97.4969C182.704 96.0199 181.966 95.2949 181.16 94.5159C180.354 93.7369 179.494 92.9239 179.494 91.3089C179.494 89.6939 180.34 88.8939 181.16 88.1089C181.979 87.3229 182.725 86.6109 182.725 85.1379H183.062C183.062 86.7499 182.215 87.5589 181.396 88.3449C180.576 89.1309 179.811 89.8419 179.811 91.3159C179.811 92.7899 180.573 93.5209 181.379 94.2899C182.185 95.0589 183.045 95.8819 183.045 97.4969C183.045 99.1129 182.198 99.9219 181.379 100.704C180.56 101.487 179.811 102.202 179.811 103.679Z" fill="#799EB0"/>
87
+ <path d="M182.532 84.652L181.396 86.996H183.665L182.532 84.652Z" fill="#407BFF"/>
88
+ <path d="M182.913 85.586H182.148C182.029 85.585 181.915 85.538 181.832 85.454C181.748 85.37 181.7 85.256 181.699 85.137C181.699 85.018 181.746 84.904 181.83 84.819C181.914 84.734 182.028 84.686 182.148 84.686H182.913C182.972 84.686 183.031 84.697 183.086 84.72C183.14 84.743 183.19 84.776 183.232 84.818C183.273 84.86 183.306 84.91 183.329 84.965C183.351 85.02 183.362 85.078 183.362 85.137C183.362 85.256 183.315 85.37 183.23 85.455C183.146 85.539 183.032 85.586 182.913 85.586Z" fill="#455A64"/>
89
+ <path d="M6.85202 92.847C6.85202 95.222 5.37902 97.673 3.56602 97.673C1.75202 97.673 0.280029 95.227 0.280029 92.847C0.280029 90.467 1.75002 89.052 3.56602 89.052C5.38102 89.052 6.85202 90.467 6.85202 92.847Z" fill="#C6D7FF"/>
90
+ <path d="M2.19699 107H2.02698C2.02698 106.187 2.45299 105.78 2.86499 105.387C3.27699 104.993 3.65198 104.633 3.65198 103.89C3.65198 103.147 3.28098 102.783 2.87498 102.391C2.46998 101.999 2.03699 101.59 2.03699 100.777C2.03699 99.965 2.46298 99.563 2.87498 99.167C3.28698 98.772 3.66199 98.414 3.66199 97.673H3.83199C3.83199 98.484 3.40599 98.891 2.99399 99.286C2.58199 99.681 2.19699 100.039 2.19699 100.781C2.19699 101.522 2.57999 101.89 2.98499 102.277C3.39099 102.664 3.82298 103.078 3.82298 103.89C3.82298 104.703 3.39799 105.11 2.98499 105.504C2.57299 105.897 2.19699 106.257 2.19699 107Z" fill="#799EB0"/>
91
+ <path d="M3.56601 97.429L2.99402 98.608H4.13602L3.56601 97.429Z" fill="#407BFF"/>
92
+ <path d="M3.757 97.8981H3.37199C3.31199 97.8981 3.255 97.8741 3.213 97.8321C3.171 97.7891 3.147 97.7321 3.146 97.6731C3.146 97.6131 3.17001 97.5551 3.21201 97.5121C3.25501 97.4701 3.31199 97.4461 3.37199 97.4451H3.757C3.787 97.4451 3.81599 97.4511 3.84399 97.4631C3.87099 97.4741 3.89601 97.4911 3.91701 97.5121C3.93801 97.5331 3.955 97.5581 3.966 97.5861C3.977 97.6131 3.983 97.6431 3.983 97.6731C3.983 97.7321 3.95901 97.7901 3.91701 97.8321C3.87401 97.8741 3.817 97.8981 3.757 97.8981Z" fill="#455A64"/>
93
+ <defs>
94
+ <filter id="filter0_i_128_218" x="5.93103" y="123.747" width="42.797" height="80.2531" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
95
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
96
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
97
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
98
+ <feOffset dy="8"/>
99
+ <feGaussianBlur stdDeviation="12"/>
100
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
101
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
102
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_128_218"/>
103
+ </filter>
104
+ </defs>
105
+ </svg>
images/plusicon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg fill="#000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 25 2 C 12.309295 2 2 12.309295 2 25 C 2 37.690705 12.309295 48 25 48 C 37.690705 48 48 37.690705 48 25 C 48 12.309295 37.690705 2 25 2 z M 25 4 C 36.609824 4 46 13.390176 46 25 C 46 36.609824 36.609824 46 25 46 C 13.390176 46 4 36.609824 4 25 C 4 13.390176 13.390176 4 25 4 z M 24 13 L 24 24 L 13 24 L 13 26 L 24 26 L 24 37 L 26 37 L 26 26 L 37 26 L 37 24 L 26 24 L 26 13 L 24 13 z"/></svg>
images/update-bg.jpg ADDED
Binary file
images/wcupdate_email.svg ADDED
@@ -0,0 +1,342 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="978.649" height="850.995" viewBox="0 0 978.649 850.995">
2
+ <defs>
3
+ <clipPath id="clip-path">
4
+ <rect id="Rectangle_124" data-name="Rectangle 124" width="697" height="612.153" fill="#fff"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g id="Group_456" data-name="Group 456" transform="translate(16123.666 93.667)">
8
+ <ellipse id="Ellipse_21" data-name="Ellipse 21" cx="418.325" cy="420.45" rx="418.325" ry="420.45" transform="translate(-16047.985 -83.572)" fill="#442392"/>
9
+ <path id="Path_465" data-name="Path 465" d="M949.2,443.183l-8.854-44.271L1051.02,348Z" transform="translate(-16196.036 -351)" fill="#ff8c7a"/>
10
+ <path id="Path_466" data-name="Path 466" d="M943.469,404.511,965.6,373.52l17.708-4.426Z" transform="translate(-16190.308 -312.328)" fill="#bd6a66"/>
11
+ <path id="Path_467" data-name="Path 467" d="M1076.8,348l-33.2,95.183-46.486-30.991L1076.8,348,966.126,398.912l-39.845-6.641Z" transform="translate(-16221.818 -351)" fill="#f7beb7"/>
12
+ <path id="Path_468" data-name="Path 468" d="M712.716,560.54l6.843-34.221L634,486.961Z" transform="translate(-16757.666 -96.238)" fill="#ff8c7a"/>
13
+ <path id="Path_469" data-name="Path 469" d="M681.711,530.648,664.6,506.69l-13.691-3.42Z" transform="translate(-16726.666 -66.338)" fill="#bd6a66"/>
14
+ <path id="Path_470" data-name="Path 470" d="M634,486.961l25.67,73.579L695.6,536.584,634,486.961l85.558,39.358,30.8-5.134Z" transform="translate(-16757.666 -96.238)" fill="#f7beb7"/>
15
+ <path id="Path_471" data-name="Path 471" d="M888,425.217c16.972-7.378,51.8-8.412,55.338,46.484,17.708,66.4,48.7,22.134,50.912,13.28s6.641-39.845-11.067-39.845S969.9,480.549,1003.1,476.126s30.988-39.839,26.563-50.909-13.282-28.778,4.426-42.061" transform="translate(-16292 -286.547)" fill="none" stroke="#9da3a1" stroke-width="1.563" stroke-dasharray="1.56 1.56"/>
16
+ <path id="Path_472" data-name="Path 472" d="M775.5,546.507c-12.835-5.876-39.177-6.7-41.857,37.034-13.393,52.9-36.833,17.632-38.508,10.577s-5.021-31.742,8.373-31.742,10.044,28.214-15.068,24.69S665,555.327,668.349,546.507,678.393,523.58,665,513" transform="translate(-16700.834 -48.5)" fill="none" stroke="#9da3a1" stroke-width="1.563" stroke-dasharray="1.56 1.56"/>
17
+ <rect id="Rectangle_109" data-name="Rectangle 109" width="5" height="22" transform="translate(-15449.001 -14)" fill="#fff"/>
18
+ <rect id="Rectangle_110" data-name="Rectangle 110" width="6" height="23" transform="translate(-15458.001) rotate(-90)" fill="#fff"/>
19
+ <rect id="Rectangle_111" data-name="Rectangle 111" width="8.854" height="35.417" transform="translate(-15683.084 -84.813)" fill="#fff"/>
20
+ <rect id="Rectangle_112" data-name="Rectangle 112" width="8.854" height="35.417" transform="translate(-15696.366 -62.676) rotate(-90)" fill="#fff"/>
21
+ <rect id="Rectangle_113" data-name="Rectangle 113" width="8.854" height="35.417" transform="translate(-15838.033 17.009)" fill="#e3b4ae"/>
22
+ <rect id="Rectangle_114" data-name="Rectangle 114" width="8.854" height="35.417" transform="translate(-15851.313 39.146) rotate(-90)" fill="#e3b4ae"/>
23
+ <circle id="Ellipse_22" data-name="Ellipse 22" cx="11.068" cy="11.068" r="11.068" transform="translate(-15541.418 -93.667)" fill="#6434d9"/>
24
+ <circle id="Ellipse_23" data-name="Ellipse 23" cx="11.068" cy="11.068" r="11.068" transform="translate(-15860.168 -31.688)" fill="#601fff"/>
25
+ <rect id="Rectangle_115" data-name="Rectangle 115" width="5.667" height="22.667" transform="translate(-15814.834 667.259) rotate(180)" fill="#fff"/>
26
+ <rect id="Rectangle_116" data-name="Rectangle 116" width="5.667" height="22.667" transform="translate(-15806.334 653.092) rotate(90)" fill="#fff"/>
27
+ <rect id="Rectangle_117" data-name="Rectangle 117" width="8.854" height="35.417" transform="translate(-15581.084 737.741) rotate(180)" fill="#fff"/>
28
+ <rect id="Rectangle_118" data-name="Rectangle 118" width="8.854" height="35.417" transform="translate(-15567.801 715.604) rotate(90)" fill="#fff"/>
29
+ <rect id="Rectangle_119" data-name="Rectangle 119" width="8.854" height="35.417" transform="translate(-15426.135 635.917) rotate(180)" fill="#e3b4ae"/>
30
+ <rect id="Rectangle_120" data-name="Rectangle 120" width="8.854" height="35.417" transform="translate(-15412.854 613.783) rotate(90)" fill="#e3b4ae"/>
31
+ <circle id="Ellipse_24" data-name="Ellipse 24" cx="11.068" cy="11.068" r="11.068" transform="translate(-15722.75 746.593) rotate(180)" fill="#6434d9"/>
32
+ <circle id="Ellipse_25" data-name="Ellipse 25" cx="11.068" cy="11.068" r="11.068" transform="translate(-15404 684.614) rotate(180)" fill="#601fff"/>
33
+ <g id="Group_455" data-name="Group 455" transform="translate(-15933.833 70.074)" clip-path="url(#clip-path)">
34
+ <path id="Path_483" data-name="Path 483" d="M822.82,392.45s.609-.5,1.76-1.391" transform="translate(-477.663 -342.133)" fill="none" stroke="#16a5a5" stroke-miterlimit="10" stroke-width="0.536"/>
35
+ <path id="Path_484" data-name="Path 484" d="M798.551,633.514V646.08a21.87,21.87,0,0,0,13.226-3.037L981.5,540.654c5.162-3.119,7.44-20.153,3.584-24.2-.544.569-2.847,11.163-3.584,11.614L811.777,630.482A21.7,21.7,0,0,1,798.551,633.514Z" transform="translate(-522.156 -112.24)" fill="#4505b3"/>
36
+ <path id="Path_485" data-name="Path 485" d="M706.871,586.691,968.449,738.741a21.591,21.591,0,0,0,8.948,2.842V729.017a21.7,21.7,0,0,0,13.226-3.037l169.725-102.408a9.559,9.559,0,0,0,1.918-1.536,9.212,9.212,0,0,0-2.057-1.609l-146.92-85.391-117.2-68.122a18.783,18.783,0,0,0-19.187.164L713.073,561.553c-.995.606-12.311-.519-10.245,3.8C699.09,569.852,701.405,583.52,706.871,586.691Z" transform="translate(-701 -207.746)" fill="#6b5bdf"/>
37
+ <path id="Path_486" data-name="Path 486" d="M769.057,379.34V589.5a17.176,17.176,0,0,0,8.565,14.861l275.992,159.953c.912.518-.878,6.378.068,6.531,5.562,1.184,13.985-8.5,13.985-14.623V548.207a24.5,24.5,0,0,0-2.459-10.789l-11.594,7.12a24.733,24.733,0,0,0-9.583-9.982L773.973,378.039a10.373,10.373,0,0,0-4.556-1.422A10.256,10.256,0,0,0,769.057,379.34Z" transform="translate(-576.229 -368.61)" fill="#4505b3"/>
38
+ <path id="Path_487" data-name="Path 487" d="M765.121,387.309V597.491a17.2,17.2,0,0,0,8.568,14.861l275.992,159.927a9.36,9.36,0,0,0,13.968-6.908,9.191,9.191,0,0,0,.071-1.184V556.207a25.033,25.033,0,0,0-12.47-21.627L781.189,378.058a10.675,10.675,0,0,0-9.4-.666l-.077.04a10.6,10.6,0,0,0-4.21,3.148l-.026.023A10.506,10.506,0,0,0,765.121,387.309Z" transform="translate(-583.445 -368.629)" fill="#6b5bdf"/>
39
+ <path id="Path_488" data-name="Path 488" d="M1047.141,549.7a14.972,14.972,0,0,0-7.455-12.929L769.633,380.251h-.111l-.249-.091-.377.15-.167.2a.559.559,0,0,0-.054.3V590.977a7.137,7.137,0,0,0,3.556,6.174l274.918,159.31Z" transform="translate(-576.935 -362.114)" fill="#fff"/>
40
+ <path id="Path_489" data-name="Path 489" d="M767.477,382.553a10.663,10.663,0,0,1,9.4.663l270.051,156.522a24.747,24.747,0,0,1,9.585,9.985l11.594-7.12a24.857,24.857,0,0,0-10.021-10.838l-16.586-9.6L788.016,375.243a10.587,10.587,0,0,0-12.373,1.216l-.074.045Z" transform="translate(-579.125 -373.787)" fill="#6b5bdf"/>
41
+ <path id="Path_490" data-name="Path 490" d="M703.621,580.035a9.761,9.761,0,0,0,2.626,2.227L967.83,734.288a21.929,21.929,0,0,0,8.945,2.864A21.691,21.691,0,0,0,990,734.115l169.725-102.408a9.642,9.642,0,0,0,1.918-1.536,9.138,9.138,0,0,0-2.06-14.175L1034.3,543.165,895.472,462.483a18.826,18.826,0,0,0-19.187.145L706.106,565.3a9.847,9.847,0,0,0-2.485,14.739Z" transform="translate(-700.377 -215.875)" fill="#a29afb"/>
42
+ <path id="Path_491" data-name="Path 491" d="M736.545,531.394l215.1,125.454a11.383,11.383,0,0,0,11.608-.094L1052.2,603.1a4.79,4.79,0,0,0-.068-8.245L835.709,468.627a9.875,9.875,0,0,0-10.064.082l-89.173,53.8a5.162,5.162,0,0,0,.074,8.885Z" transform="translate(-640.546 -202.376)" fill="#525575"/>
43
+ <path id="Path_492" data-name="Path 492" d="M828.063,511.686l7.267-4.395a.8.8,0,0,1,.819,0l7.837,4.533a.389.389,0,0,1,.142.139.395.395,0,0,1,0,.388.369.369,0,0,1-.142.139l-7.245,4.389a.941.941,0,0,1-.946,0l-7.729-4.477a.418.418,0,0,1-.207-.357.416.416,0,0,1,.2-.36Z" transform="translate(-468.425 -129.248)" fill="#3d415b"/>
44
+ <path id="Path_493" data-name="Path 493" d="M832.3,514.275a.942.942,0,0,1-.946,0l-7.732-4.477a.391.391,0,0,1-.15-.153.418.418,0,0,1,.15-.567l7.268-4.395a.833.833,0,0,1,.411-.11.825.825,0,0,1,.408.11l7.84,4.539a.384.384,0,0,1,.139.139.376.376,0,0,1,0,.388.408.408,0,0,1-.139.139Z" transform="translate(-476.574 -134.022)" fill="#3d415b"/>
45
+ <path id="Path_494" data-name="Path 494" d="M827.858,511.67a.924.924,0,0,1-.946,0L819.18,507.2a.439.439,0,0,1-.153-.153.41.41,0,0,1-.054-.207.42.42,0,0,1,.054-.21.431.431,0,0,1,.153-.15l7.268-4.4a.786.786,0,0,1,.408-.11.8.8,0,0,1,.411.11l7.837,4.536a.384.384,0,0,1,.193.334.385.385,0,0,1-.051.193.379.379,0,0,1-.142.142Z" transform="translate(-484.716 -138.792)" fill="#3d415b"/>
46
+ <path id="Path_495" data-name="Path 495" d="M823.406,509.063a.942.942,0,0,1-.946,0l-7.729-4.457a.4.4,0,0,1-.153-.153.405.405,0,0,1-.057-.207.423.423,0,0,1,.057-.21.418.418,0,0,1,.153-.153l7.265-4.4a.819.819,0,0,1,.822,0L830.648,504a.4.4,0,0,1,.142.142.389.389,0,0,1,0,.385.4.4,0,0,1-.142.142Z" transform="translate(-492.878 -143.552)" fill="#3d415b"/>
47
+ <path id="Path_496" data-name="Path 496" d="M818.96,506.471a.936.936,0,0,1-.944,0L810.285,502a.409.409,0,0,1-.15-.153.411.411,0,0,1,0-.417.41.41,0,0,1,.15-.153l7.268-4.394a.813.813,0,0,1,.819,0l7.837,4.536a.377.377,0,0,1,.142.142.386.386,0,0,1,.054.193.4.4,0,0,1-.2.334Z" transform="translate(-501.024 -148.329)" fill="#3d415b"/>
48
+ <path id="Path_497" data-name="Path 497" d="M814.51,503.869a.92.92,0,0,1-.944,0l-7.732-4.474a.414.414,0,0,1-.15-.567.39.39,0,0,1,.15-.153l7.268-4.4a.813.813,0,0,1,.819,0l7.837,4.533a.378.378,0,0,1,.142.142.389.389,0,0,1,0,.385.378.378,0,0,1-.142.142Z" transform="translate(-509.184 -153.1)" fill="#3d415b"/>
49
+ <path id="Path_498" data-name="Path 498" d="M810.066,501.269a.942.942,0,0,1-.946,0l-7.729-4.474a.4.4,0,0,1-.153-.153.4.4,0,0,1-.054-.207.42.42,0,0,1,.054-.21.416.416,0,0,1,.153-.153l7.264-4.4a.839.839,0,0,1,.822,0l7.837,4.539a.392.392,0,0,1,.139.142.385.385,0,0,1,0,.382.392.392,0,0,1-.139.142Z" transform="translate(-517.329 -157.866)" fill="#3d415b"/>
50
+ <path id="Path_499" data-name="Path 499" d="M805.619,498.669a.924.924,0,0,1-.946,0l-7.729-4.474a.416.416,0,0,1-.153-.153.4.4,0,0,1,0-.414.4.4,0,0,1,.153-.153l7.265-4.4a.819.819,0,0,1,.822,0l7.831,4.547a.424.424,0,0,1,.139.145.384.384,0,0,1,0,.383.392.392,0,0,1-.139.142Z" transform="translate(-525.488 -162.633)" fill="#3d415b"/>
51
+ <path id="Path_500" data-name="Path 500" d="M801.169,496.069a.936.936,0,0,1-.944,0l-7.732-4.474a.432.432,0,0,1-.15-.153.4.4,0,0,1,0-.414.409.409,0,0,1,.15-.153l7.268-4.4a.8.8,0,0,1,.411-.111.787.787,0,0,1,.408.111l7.84,4.533a.389.389,0,0,1,0,.669Z" transform="translate(-533.64 -167.4)" fill="#3d415b"/>
52
+ <path id="Path_501" data-name="Path 501" d="M796.722,493.466a.929.929,0,0,1-.473.13.919.919,0,0,1-.47-.13L788.047,489a.409.409,0,0,1-.207-.36.454.454,0,0,1,.054-.21.432.432,0,0,1,.153-.15l7.268-4.4a.8.8,0,0,1,.819,0l7.837,4.536a.349.349,0,0,1,.139.142.389.389,0,0,1,0,.385.367.367,0,0,1-.139.142Z" transform="translate(-541.793 -172.172)" fill="#3d415b"/>
53
+ <path id="Path_502" data-name="Path 502" d="M792.273,490.866a.907.907,0,0,1-.946,0L783.6,486.4a.439.439,0,0,1-.153-.153.41.41,0,0,1-.054-.207.42.42,0,0,1,.054-.21.43.43,0,0,1,.153-.15l7.265-4.4a.8.8,0,0,1,.819,0l7.84,4.536a.369.369,0,0,1,.139.142.389.389,0,0,1,0,.385.39.39,0,0,1-.139.142Z" transform="translate(-549.95 -176.939)" fill="#3d415b"/>
54
+ <path id="Path_503" data-name="Path 503" d="M787.822,488.257a.926.926,0,0,1-.473.128.915.915,0,0,1-.47-.128l-7.721-4.463a.432.432,0,0,1-.15-.153.413.413,0,0,1-.057-.207.416.416,0,0,1,.207-.36l7.248-4.395a.791.791,0,0,1,.408-.113.808.808,0,0,1,.411.113l7.84,4.533a.35.35,0,0,1,.139.142.389.389,0,0,1,0,.385.369.369,0,0,1-.139.142Z" transform="translate(-558.09 -181.702)" fill="#3d415b"/>
55
+ <path id="Path_504" data-name="Path 504" d="M783.378,485.666a.924.924,0,0,1-.946,0L774.7,481.2a.433.433,0,0,1-.15-.153.413.413,0,0,1-.057-.207.416.416,0,0,1,.207-.36l7.265-4.4a.8.8,0,0,1,.819,0l7.843,4.536a.4.4,0,0,1,.139.142.389.389,0,0,1-.139.527Z" transform="translate(-566.257 -186.472)" fill="#3d415b"/>
56
+ <path id="Path_505" data-name="Path 505" d="M778.932,483.057a.929.929,0,0,1-.949,0l-7.721-4.46a.442.442,0,0,1-.153-.153.425.425,0,0,1,0-.414.417.417,0,0,1,.153-.153l7.262-4.4a.8.8,0,0,1,.822,0l7.84,4.533a.371.371,0,0,1,.139.142.389.389,0,0,1,0,.385.392.392,0,0,1-.139.142Z" transform="translate(-574.399 -191.235)" fill="#3d415b"/>
57
+ <path id="Path_506" data-name="Path 506" d="M822.963,514.758l7.265-4.395a.789.789,0,0,1,.408-.113.808.808,0,0,1,.411.113l7.837,4.536a.384.384,0,0,1,.193.334.383.383,0,0,1-.051.193.377.377,0,0,1-.142.142l-7.245,4.383a.929.929,0,0,1-.949,0l-7.727-4.471a.439.439,0,0,1-.153-.153.454.454,0,0,1-.054-.21.433.433,0,0,1,.054-.207A.417.417,0,0,1,822.963,514.758Z" transform="translate(-477.781 -123.616)" fill="#3d415b"/>
58
+ <path id="Path_507" data-name="Path 507" d="M826.6,507.757l7.837,4.536a.384.384,0,0,1,.193.334.385.385,0,0,1-.051.193.38.38,0,0,1-.142.142l-7.245,4.383a.929.929,0,0,1-.949,0l-7.729-4.471a.417.417,0,0,1-.153-.153.41.41,0,0,1-.054-.207.42.42,0,0,1,.054-.21.409.409,0,0,1,.153-.15l7.262-4.4a.817.817,0,0,1,.414-.113A.808.808,0,0,1,826.6,507.757Z" transform="translate(-485.934 -128.394)" fill="#3d415b"/>
59
+ <path id="Path_508" data-name="Path 508" d="M821.8,514.752l-7.732-4.474a.433.433,0,0,1-.15-.153.413.413,0,0,1-.057-.207.423.423,0,0,1,.057-.21.4.4,0,0,1,.15-.15l7.268-4.4a.8.8,0,0,1,.822,0L830,509.695a.4.4,0,0,1,.142.142.375.375,0,0,1,.051.193.382.382,0,0,1-.051.193.423.423,0,0,1-.142.142l-7.245,4.386a.937.937,0,0,1-.949,0Z" transform="translate(-494.084 -133.153)" fill="#3d415b"/>
60
+ <path id="Path_509" data-name="Path 509" d="M817.707,502.556l7.84,4.539a.39.39,0,0,1,.139.142.378.378,0,0,1,.054.193.393.393,0,0,1-.054.193.381.381,0,0,1-.139.139l-7.248,4.386a.925.925,0,0,1-.946,0l-7.732-4.474a.4.4,0,0,1-.15-.15.423.423,0,0,1-.057-.21.426.426,0,0,1,.207-.36l7.268-4.4a.835.835,0,0,1,.411-.11A.824.824,0,0,1,817.707,502.556Z" transform="translate(-502.241 -137.923)" fill="#3d415b"/>
61
+ <path id="Path_510" data-name="Path 510" d="M813.262,499.957l7.837,4.533a.375.375,0,0,1,.142.142.389.389,0,0,1,0,.385.375.375,0,0,1-.142.142l-7.245,4.383a.924.924,0,0,1-.946,0l-7.732-4.471a.411.411,0,0,1-.207-.36.453.453,0,0,1,.054-.21.43.43,0,0,1,.153-.15l7.268-4.4a.8.8,0,0,1,.819,0Z" transform="translate(-510.39 -142.694)" fill="#3d415b"/>
62
+ <path id="Path_511" data-name="Path 511" d="M808.817,497.352l7.837,4.539a.371.371,0,0,1,.142.139.393.393,0,0,1,.051.193.384.384,0,0,1-.193.334l-7.245,4.386a.947.947,0,0,1-.949,0l-7.729-4.474a.4.4,0,0,1-.153-.153.406.406,0,0,1,0-.414.419.419,0,0,1,.153-.153l7.265-4.4a.828.828,0,0,1,.822,0Z" transform="translate(-518.545 -147.464)" fill="#3d415b"/>
63
+ <path id="Path_512" data-name="Path 512" d="M804.367,494.756l7.84,4.539a.392.392,0,0,1,.139.142.384.384,0,0,1,0,.382.39.39,0,0,1-.139.142l-7.251,4.386a.9.9,0,0,1-.943,0l-7.732-4.474a.417.417,0,0,1-.207-.36.413.413,0,0,1,.057-.207.433.433,0,0,1,.15-.153l7.267-4.4a.835.835,0,0,1,.411-.11A.814.814,0,0,1,804.367,494.756Z" transform="translate(-526.698 -152.223)" fill="#3d415b"/>
64
+ <path id="Path_513" data-name="Path 513" d="M799.92,492.155l7.837,4.533a.405.405,0,0,1,.142.145.4.4,0,0,1,0,.382.377.377,0,0,1-.142.142l-7.248,4.386a.937.937,0,0,1-.944,0l-7.732-4.477a.39.39,0,0,1-.15-.153.406.406,0,0,1,0-.414.41.41,0,0,1,.15-.153l7.268-4.4a.8.8,0,0,1,.411-.108A.79.79,0,0,1,799.92,492.155Z" transform="translate(-534.85 -156.997)" fill="#3d415b"/>
65
+ <path id="Path_514" data-name="Path 514" d="M795.471,489.555l7.837,4.536a.389.389,0,0,1,.139.142.389.389,0,0,1,0,.385.44.44,0,0,1-.139.142l-7.242,4.378a.942.942,0,0,1-.946,0l-7.729-4.474a.39.39,0,0,1-.153-.15.42.42,0,0,1-.054-.21.409.409,0,0,1,.054-.207.416.416,0,0,1,.153-.153l7.265-4.395a.774.774,0,0,1,.408-.108A.8.8,0,0,1,795.471,489.555Z" transform="translate(-542.996 -161.764)" fill="#3d415b"/>
66
+ <path id="Path_515" data-name="Path 515" d="M791.03,486.953l7.837,4.536a.391.391,0,0,1,.139.142.389.389,0,0,1,0,.385.437.437,0,0,1-.139.142l-7.248,4.383a.924.924,0,0,1-.946,0l-7.729-4.477a.389.389,0,0,1-.153-.15.423.423,0,0,1-.057-.21.421.421,0,0,1,.209-.36l7.265-4.394a.777.777,0,0,1,.411-.11A.809.809,0,0,1,791.03,486.953Z" transform="translate(-551.154 -166.535)" fill="#3d415b"/>
67
+ <path id="Path_516" data-name="Path 516" d="M786.58,484.344l7.84,4.533a.39.39,0,0,1,.139.527.4.4,0,0,1-.139.142l-7.251,4.389a.944.944,0,0,1-.47.128.956.956,0,0,1-.473-.128l-7.732-4.477a.433.433,0,0,1-.15-.153.406.406,0,0,1,0-.414.41.41,0,0,1,.15-.153l7.268-4.366a.8.8,0,0,1,.405-.128A.778.778,0,0,1,786.58,484.344Z" transform="translate(-559.307 -171.294)" fill="#3d415b"/>
68
+ <path id="Path_517" data-name="Path 517" d="M782.139,481.75l7.837,4.536a.369.369,0,0,1,.139.142.389.389,0,0,1,0,.385.351.351,0,0,1-.139.142l-7.248,4.386a.955.955,0,0,1-.473.128.944.944,0,0,1-.47-.128l-7.732-4.474a.416.416,0,0,1-.153-.153.425.425,0,0,1,0-.414.417.417,0,0,1,.153-.153l7.267-4.4a.788.788,0,0,1,.408-.11A.8.8,0,0,1,782.139,481.75Z" transform="translate(-567.449 -176.068)" fill="#3d415b"/>
69
+ <path id="Path_518" data-name="Path 518" d="M769.6,483.55l7.265-4.4a.819.819,0,0,1,.822,0l7.837,4.533a.413.413,0,0,1,.139.142.389.389,0,0,1,0,.385.39.39,0,0,1-.139.142l-7.242,4.392a.942.942,0,0,1-.946,0l-7.729-4.477a.411.411,0,0,1-.21-.357.391.391,0,0,1,.054-.21A.387.387,0,0,1,769.6,483.55Z" transform="translate(-575.609 -180.831)" fill="#3d415b"/>
70
+ <path id="Path_519" data-name="Path 519" d="M781.079,481.746l-7.248,4.386a.944.944,0,0,1-.47.127.956.956,0,0,1-.473-.127l-7.732-4.463a.41.41,0,0,1-.15-.153.406.406,0,0,1,0-.414.433.433,0,0,1,.15-.153l7.265-4.4a.806.806,0,0,1,.411-.11.788.788,0,0,1,.408.11l7.843,4.536a.417.417,0,0,1,.13.142.4.4,0,0,1,.048.187.358.358,0,0,1-.051.187A.37.37,0,0,1,781.079,481.746Z" transform="translate(-583.76 -185.597)" fill="#3d415b"/>
71
+ <path id="Path_520" data-name="Path 520" d="M813.416,515.952a.391.391,0,0,1-.15-.153.414.414,0,0,1-.057-.207.425.425,0,0,1,.057-.21.411.411,0,0,1,.15-.153l7.265-4.394a.786.786,0,0,1,.408-.11.8.8,0,0,1,.411.11l2.964,1.714h.051l3.069,1.791,1.754,1.014,12.591,7.355a.4.4,0,0,1,.142.142.378.378,0,0,1,.051.193.385.385,0,0,1-.051.193.4.4,0,0,1-.142.142l-7.245,4.383a.929.929,0,0,1-.949,0l-14.206-8.3Z" transform="translate(-495.283 -122.745)" fill="#3d415b"/>
72
+ <path id="Path_521" data-name="Path 521" d="M817.644,517.821a.929.929,0,0,1-.949,0l-7.726-4.471a.439.439,0,0,1-.153-.153.409.409,0,0,1-.054-.207.419.419,0,0,1,.054-.21.431.431,0,0,1,.153-.15l7.264-4.4a.792.792,0,0,1,.408-.113.807.807,0,0,1,.411.113l7.837,4.536a.384.384,0,0,1,.193.334.384.384,0,0,1-.051.193.378.378,0,0,1-.142.142Z" transform="translate(-503.436 -127.521)" fill="#3d415b"/>
73
+ <path id="Path_522" data-name="Path 522" d="M812.6,505.637l7.837,4.536a.384.384,0,0,1,0,.666l-7.239,4.375a.929.929,0,0,1-.949,0l-7.729-4.474a.418.418,0,0,1-.153-.153.413.413,0,0,1-.056-.207.423.423,0,0,1,.056-.21.411.411,0,0,1,.153-.15l7.262-4.4a.806.806,0,0,1,.411-.1A.833.833,0,0,1,812.6,505.637Z" transform="translate(-511.595 -132.292)" fill="#3d415b"/>
74
+ <path id="Path_523" data-name="Path 523" d="M808.158,503.031l7.84,4.536a.4.4,0,0,1,.142.142.409.409,0,0,1,.051.193.418.418,0,0,1-.051.193.428.428,0,0,1-.142.142l-7.248,4.383a.918.918,0,0,1-.473.127.933.933,0,0,1-.473-.127l-7.732-4.471a.433.433,0,0,1-.15-.153.413.413,0,0,1-.057-.207.423.423,0,0,1,.057-.21.4.4,0,0,1,.15-.15l7.267-4.4a.809.809,0,0,1,.411-.113A.79.79,0,0,1,808.158,503.031Z" transform="translate(-519.747 -137.058)" fill="#3d415b"/>
75
+ <path id="Path_524" data-name="Path 524" d="M803.711,500.422l7.837,4.536a.376.376,0,0,1,.142.142.38.38,0,0,1,.054.193.388.388,0,0,1-.054.193.378.378,0,0,1-.142.142L804.3,510.01a.924.924,0,0,1-.946,0l-7.732-4.471a.426.426,0,0,1-.207-.36.422.422,0,0,1,.057-.21.4.4,0,0,1,.15-.15l7.268-4.375a.787.787,0,0,1,.405-.122A.778.778,0,0,1,803.711,500.422Z" transform="translate(-527.9 -141.816)" fill="#3d415b"/>
76
+ <path id="Path_525" data-name="Path 525" d="M799.264,497.829l7.837,4.536a.377.377,0,0,1,.142.142.384.384,0,0,1,0,.382.377.377,0,0,1-.142.142l-7.248,4.386a.93.93,0,0,1-.473.13.919.919,0,0,1-.47-.13l-7.732-4.474a.439.439,0,0,1-.153-.153.41.41,0,0,1-.054-.207.42.42,0,0,1,.054-.21.432.432,0,0,1,.153-.15l7.268-4.394a.789.789,0,0,1,.408-.113A.808.808,0,0,1,799.264,497.829Z" transform="translate(-536.053 -146.595)" fill="#3d415b"/>
77
+ <path id="Path_526" data-name="Path 526" d="M794.812,495.223l7.84,4.539a.392.392,0,0,1,.139.142.384.384,0,0,1,0,.382.39.39,0,0,1-.139.142l-7.242,4.395a.924.924,0,0,1-.946,0l-7.729-4.471a.419.419,0,0,1-.209-.36.426.426,0,0,1,.056-.21.39.39,0,0,1,.153-.15l7.265-4.4a.825.825,0,0,1,.405-.116A.811.811,0,0,1,794.812,495.223Z" transform="translate(-544.204 -151.358)" fill="#3d415b"/>
78
+ <path id="Path_527" data-name="Path 527" d="M790.367,492.623l7.837,4.536a.353.353,0,0,1,.139.142.391.391,0,0,1,0,.385.373.373,0,0,1-.139.142l-7.248,4.383a.918.918,0,0,1-.943,0l-7.727-4.462a.409.409,0,0,1-.15-.153.406.406,0,0,1,0-.414.409.409,0,0,1,.15-.153l7.268-4.4a.812.812,0,0,1,.813-.009Z" transform="translate(-552.353 -156.125)" fill="#3d415b"/>
79
+ <path id="Path_528" data-name="Path 528" d="M785.924,490.027l7.837,4.536a.378.378,0,0,1,.142.142.4.4,0,0,1,.048.19.412.412,0,0,1-.048.193.4.4,0,0,1-.142.142l-7.248,4.386a.919.919,0,0,1-.943,0l-7.732-4.474a.411.411,0,0,1-.207-.36.452.452,0,0,1,.054-.21.41.41,0,0,1,.153-.15l7.267-4.395a.791.791,0,0,1,.408-.113A.807.807,0,0,1,785.924,490.027Z" transform="translate(-560.51 -160.899)" fill="#3d415b"/>
80
+ <path id="Path_529" data-name="Path 529" d="M781.122,497.017l-7.729-4.474a.419.419,0,0,1-.153-.153.423.423,0,0,1,0-.414.4.4,0,0,1,.153-.153l7.265-4.4a.819.819,0,0,1,.822,0l7.837,4.536a.416.416,0,0,1,.139.142.389.389,0,0,1,0,.385.392.392,0,0,1-.139.142l-7.248,4.386a.941.941,0,0,1-.946,0Z" transform="translate(-568.659 -165.662)" fill="#3d415b"/>
81
+ <path id="Path_530" data-name="Path 530" d="M776.21,484.831a.8.8,0,0,1,.822,0l7.837,4.533a.394.394,0,0,1,.139.142.384.384,0,0,1,0,.383.393.393,0,0,1-.139.142l-7.25,4.386a.916.916,0,0,1-.47.127.926.926,0,0,1-.473-.127l-7.732-4.477a.415.415,0,0,1-.207-.36.412.412,0,0,1,.056-.207.43.43,0,0,1,.15-.153Z" transform="translate(-576.817 -170.425)" fill="#3d415b"/>
82
+ <path id="Path_531" data-name="Path 531" d="M780.734,486.99l7.84,4.539a.394.394,0,0,1,.139.142.384.384,0,0,1,0,.382.394.394,0,0,1-.139.142l-7.248,4.386a.942.942,0,0,1-.947,0l-2.709-1.567a.162.162,0,0,1-.116-.031l-17.5-10.245a.417.417,0,0,1-.153-.153.425.425,0,0,1,0-.414.418.418,0,0,1,.153-.153l7.265-4.4a.787.787,0,0,1,.408-.11.8.8,0,0,1,.411.11l12.585,7.364Z" transform="translate(-593.119 -179.973)" fill="#3d415b"/>
83
+ <path id="Path_532" data-name="Path 532" d="M812.756,520.9l7.265-4.386a.808.808,0,0,1,.411-.113.789.789,0,0,1,.408.113l7.843,4.536a.394.394,0,0,1,.139.142.375.375,0,0,1,.051.19.385.385,0,0,1-.051.193.393.393,0,0,1-.139.142l-7.248,4.386a.925.925,0,0,1-.947,0l-7.729-4.474a.469.469,0,0,1-.156-.153.415.415,0,0,1,0-.419A.424.424,0,0,1,812.756,520.9Z" transform="translate(-496.497 -112.336)" fill="#3d415b"/>
84
+ <path id="Path_533" data-name="Path 533" d="M824.234,519.1l-7.245,4.386a.93.93,0,0,1-.949,0l-7.729-4.46a.418.418,0,0,1-.153-.153.41.41,0,0,1-.054-.207.42.42,0,0,1,.054-.21.411.411,0,0,1,.153-.15l7.262-4.4a.819.819,0,0,1,.822,0l7.84,4.536a.4.4,0,0,1,.133.142.393.393,0,0,1,.048.187.4.4,0,0,1-.048.187A.419.419,0,0,1,824.234,519.1Z" transform="translate(-504.643 -117.11)" fill="#3d415b"/>
85
+ <path id="Path_534" data-name="Path 534" d="M819.8,516.508l-7.262,4.392a.942.942,0,0,1-.946,0l-7.729-4.477a.41.41,0,0,1-.15-.153.419.419,0,0,1,.15-.567l7.265-4.4a.8.8,0,0,1,.411-.11.785.785,0,0,1,.408.11l7.843,4.533a.385.385,0,0,1,.2.332.38.38,0,0,1-.048.193A.39.39,0,0,1,819.8,516.508Z" transform="translate(-512.797 -121.884)" fill="#3d415b"/>
86
+ <path id="Path_535" data-name="Path 535" d="M807.152,518.3l-7.738-4.482a.41.41,0,0,1-.15-.153.406.406,0,0,1,0-.414.391.391,0,0,1,.15-.153l7.265-4.4a.814.814,0,0,1,.819,0l7.837,4.536a.378.378,0,0,1,.142.142.389.389,0,0,1,0,.385.378.378,0,0,1-.142.142l-7.245,4.386a.968.968,0,0,1-.468.13A.946.946,0,0,1,807.152,518.3Z" transform="translate(-520.954 -126.65)" fill="#3d415b"/>
87
+ <path id="Path_536" data-name="Path 536" d="M802.7,515.7l-7.732-4.474a.408.408,0,0,1-.153-.15.421.421,0,0,1-.054-.21.41.41,0,0,1,.054-.207.438.438,0,0,1,.153-.153l7.267-4.394a.788.788,0,0,1,.408-.11.8.8,0,0,1,.411.11l7.843,4.525a.369.369,0,0,1,.142.139.382.382,0,0,1,.051.193.384.384,0,0,1-.193.334l-7.245,4.386a.917.917,0,0,1-.952.011Z" transform="translate(-529.099 -131.413)" fill="#3d415b"/>
88
+ <path id="Path_537" data-name="Path 537" d="M798.265,513.1l-7.743-4.477a.4.4,0,0,1-.153-.153.406.406,0,0,1,0-.414.4.4,0,0,1,.153-.153l7.287-4.4a.814.814,0,0,1,.819,0l7.837,4.536a.394.394,0,0,1,.2.334.385.385,0,0,1-.2.332L799.22,513.1a.942.942,0,0,1-.476.133A.913.913,0,0,1,798.265,513.1Z" transform="translate(-537.261 -136.18)" fill="#3d415b"/>
89
+ <path id="Path_538" data-name="Path 538" d="M793.806,510.5l-7.732-4.474a.413.413,0,0,1-.15-.567.43.43,0,0,1,.15-.153l7.268-4.4a.8.8,0,0,1,.411-.11.787.787,0,0,1,.408.11l7.845,4.513a.4.4,0,0,1,.142.142.376.376,0,0,1,.051.193.382.382,0,0,1-.051.193.424.424,0,0,1-.142.142l-7.245,4.383a.931.931,0,0,1-.955.025Z" transform="translate(-545.41 -140.943)" fill="#3d415b"/>
90
+ <path id="Path_539" data-name="Path 539" d="M789.361,507.9l-7.732-4.465a.419.419,0,0,1-.153-.153.423.423,0,0,1,0-.414.418.418,0,0,1,.153-.153l7.27-4.409a.8.8,0,0,1,.819,0l7.828,4.522a.383.383,0,0,1,.193.334.393.393,0,0,1-.051.193.371.371,0,0,1-.142.139l-7.245,4.386a.941.941,0,0,1-.941.02Z" transform="translate(-553.56 -145.722)" fill="#3d415b"/>
91
+ <path id="Path_540" data-name="Path 540" d="M784.912,505.3l-7.732-4.477a.415.415,0,0,1-.153-.153.425.425,0,0,1,0-.414.439.439,0,0,1,.153-.153l7.268-4.395a.786.786,0,0,1,.408-.11.8.8,0,0,1,.411.11l7.843,4.525a.384.384,0,0,1,0,.666l-7.248,4.389a.93.93,0,0,1-.949.011Z" transform="translate(-561.716 -150.484)" fill="#3d415b"/>
92
+ <path id="Path_541" data-name="Path 541" d="M780.468,502.693l-7.732-4.471a.43.43,0,0,1-.15-.153.413.413,0,0,1-.057-.207.418.418,0,0,1,.207-.36l7.265-4.4a.808.808,0,0,1,.411-.113.792.792,0,0,1,.408.113l7.84,4.533a.391.391,0,0,1,.139.142.389.389,0,0,1,0,.385.413.413,0,0,1-.139.142l-7.25,4.383a.913.913,0,0,1-.47.13A.924.924,0,0,1,780.468,502.693Z" transform="translate(-569.863 -155.256)" fill="#3d415b"/>
93
+ <path id="Path_542" data-name="Path 542" d="M776.021,500.1l-7.732-4.477a.426.426,0,0,1-.207-.36.423.423,0,0,1,.057-.21.4.4,0,0,1,.15-.15l7.267-4.4a.8.8,0,0,1,.819,0l7.828,4.525a.348.348,0,0,1,.139.142.389.389,0,0,1,0,.385.375.375,0,0,1-.139.145l-7.248,4.38a.939.939,0,0,1-.935.017Z" transform="translate(-578.016 -160.022)" fill="#3d415b"/>
94
+ <path id="Path_543" data-name="Path 543" d="M771.922,487.893l7.837,4.556a.37.37,0,0,1,.139.142.389.389,0,0,1,0,.385.391.391,0,0,1-.139.142l-7.248,4.383a.925.925,0,0,1-.946,0l-7.724-4.474a.409.409,0,0,1-.207-.36.453.453,0,0,1,.054-.21.409.409,0,0,1,.153-.15l7.256-4.4a.807.807,0,0,1,.824-.017Z" transform="translate(-586.169 -164.797)" fill="#3d415b"/>
95
+ <path id="Path_544" data-name="Path 544" d="M767.128,494.893l-7.729-4.471a.417.417,0,0,1-.153-.153.413.413,0,0,1-.057-.207.423.423,0,0,1,.057-.21.389.389,0,0,1,.153-.15l7.265-4.4a.8.8,0,0,1,.819,0l7.826,4.525a.392.392,0,0,1,.139.142.384.384,0,0,1,0,.382.394.394,0,0,1-.139.142l-7.25,4.386a.913.913,0,0,1-.462.133A.9.9,0,0,1,767.128,494.893Z" transform="translate(-594.32 -169.556)" fill="#3d415b"/>
96
+ <path id="Path_545" data-name="Path 545" d="M770.875,487.895l-7.25,4.383a.945.945,0,0,1-.47.128.956.956,0,0,1-.473-.128l-7.732-4.477a.41.41,0,0,1-.15-.153.4.4,0,0,1,0-.414.41.41,0,0,1,.15-.153L762.2,482.7a.816.816,0,0,1,.408-.11.825.825,0,0,1,.408.11l7.84,4.539a.371.371,0,0,1,.19.323.363.363,0,0,1-.042.19A.4.4,0,0,1,770.875,487.895Z" transform="translate(-602.473 -174.33)" fill="#3d415b"/>
97
+ <path id="Path_546" data-name="Path 546" d="M807.652,523.983l7.265-4.4a.814.814,0,0,1,.819,0l7.84,4.536a.39.39,0,0,1,.139.142.384.384,0,0,1,0,.383.389.389,0,0,1-.139.142l-7.248,4.386a.947.947,0,0,1-.949,0l-7.727-4.474a.4.4,0,0,1-.15-.15.421.421,0,0,1-.057-.207.428.428,0,0,1,.207-.36Z" transform="translate(-505.851 -106.704)" fill="#3d415b"/>
98
+ <path id="Path_547" data-name="Path 547" d="M811.886,526.573a.942.942,0,0,1-.946,0l-7.729-4.477a.39.39,0,0,1-.15-.153.406.406,0,0,1,0-.414.41.41,0,0,1,.15-.153l7.265-4.4a.814.814,0,0,1,.819,0l7.84,4.536a.39.39,0,0,1,.139.527.35.35,0,0,1-.139.142Z" transform="translate(-513.992 -111.481)" fill="#3d415b"/>
99
+ <path id="Path_548" data-name="Path 548" d="M806.489,523.971l-7.729-4.466a.439.439,0,0,1-.153-.153.429.429,0,0,1,0-.417.44.44,0,0,1,.153-.153l7.265-4.395a.789.789,0,0,1,.408-.113.808.808,0,0,1,.411.113l7.831,4.508a.379.379,0,0,1,.142.142.389.389,0,0,1,0,.385.379.379,0,0,1-.142.142l-7.245,4.386a.942.942,0,0,1-.941.02Z" transform="translate(-522.153 -116.237)" fill="#3d415b"/>
100
+ <path id="Path_549" data-name="Path 549" d="M802.043,521.374l-7.727-4.474a.411.411,0,0,1-.153-.15.426.426,0,0,1-.057-.21.42.42,0,0,1,.21-.36l7.262-4.4a.819.819,0,0,1,.822,0l7.837,4.536a.382.382,0,0,1,0,.666L803,521.363a.94.94,0,0,1-.955.011Z" transform="translate(-530.304 -121.007)" fill="#3d415b"/>
101
+ <path id="Path_550" data-name="Path 550" d="M797.6,518.772l-7.729-4.474a.431.431,0,0,1-.15-.153.412.412,0,0,1-.057-.207.423.423,0,0,1,.057-.21.4.4,0,0,1,.15-.15l7.268-4.395a.809.809,0,0,1,.411-.113.79.79,0,0,1,.408.113l7.84,4.536a.371.371,0,0,1,.139.142.38.38,0,0,1,.054.193.388.388,0,0,1-.054.193.371.371,0,0,1-.139.142l-7.248,4.383a.922.922,0,0,1-.473.13A.939.939,0,0,1,797.6,518.772Z" transform="translate(-538.457 -125.778)" fill="#3d415b"/>
102
+ <path id="Path_551" data-name="Path 551" d="M793.152,516.172,785.42,511.7a.432.432,0,0,1-.153-.15.45.45,0,0,1-.054-.21.41.41,0,0,1,.207-.36l7.267-4.4a.813.813,0,0,1,.819,0l7.837,4.539a.372.372,0,0,1,.142.139.382.382,0,0,1-.142.527l-7.245,4.375a.924.924,0,0,1-.946.011Z" transform="translate(-546.609 -130.544)" fill="#3d415b"/>
103
+ <path id="Path_552" data-name="Path 552" d="M788.7,513.573l-7.729-4.477a.415.415,0,0,1-.153-.153.423.423,0,0,1,0-.414.438.438,0,0,1,.153-.153l7.265-4.4a.819.819,0,0,1,.822,0l7.831,4.536a.4.4,0,0,1,.142.142.385.385,0,0,1,.051.193.383.383,0,0,1-.193.334l-7.245,4.389a.955.955,0,0,1-.944,0Z" transform="translate(-554.762 -135.315)" fill="#3d415b"/>
104
+ <path id="Path_553" data-name="Path 553" d="M784.257,510.97l-7.729-4.477a.39.39,0,0,1-.153-.15.423.423,0,0,1-.057-.21.42.42,0,0,1,.21-.36l7.265-4.392a.8.8,0,0,1,.822,0l7.837,4.536a.384.384,0,0,1,.193.334.385.385,0,0,1-.051.193.4.4,0,0,1-.142.142l-7.253,4.372a.942.942,0,0,1-.468.133A.93.93,0,0,1,784.257,510.97Z" transform="translate(-562.917 -140.081)" fill="#3d415b"/>
105
+ <path id="Path_554" data-name="Path 554" d="M779.8,508.365l-7.715-4.471a.411.411,0,0,1-.15-.153.415.415,0,0,1-.056-.207.425.425,0,0,1,.056-.21.384.384,0,0,1,.15-.15l7.268-4.4a.814.814,0,0,1,.819,0l7.837,4.536a.384.384,0,0,1,.193.334.383.383,0,0,1-.051.193.4.4,0,0,1-.142.142l-7.248,4.383a.9.9,0,0,1-.479.136A.9.9,0,0,1,779.8,508.365Z" transform="translate(-571.059 -144.852)" fill="#3d415b"/>
106
+ <path id="Path_555" data-name="Path 555" d="M775.365,505.771l-7.732-4.477a.416.416,0,0,1-.153-.153.425.425,0,0,1,0-.414.417.417,0,0,1,.153-.153l7.267-4.4a.788.788,0,0,1,.408-.11.805.805,0,0,1,.411.11l7.837,4.533a.379.379,0,0,1,.142.142.384.384,0,0,1,.051.193.384.384,0,0,1-.193.334l-7.256,4.38a.968.968,0,0,1-.468.13A.955.955,0,0,1,775.365,505.771Z" transform="translate(-579.219 -149.618)" fill="#3d415b"/>
107
+ <path id="Path_556" data-name="Path 556" d="M770.913,503.168l-7.721-4.474a.41.41,0,0,1-.153-.15.425.425,0,0,1-.057-.21.42.42,0,0,1,.21-.36l7.25-4.4a.806.806,0,0,1,.411-.11.789.789,0,0,1,.408.11l7.84,4.539a.406.406,0,0,1,.139.139.376.376,0,0,1,0,.388.407.407,0,0,1-.139.139l-7.25,4.386a.925.925,0,0,1-.938,0Z" transform="translate(-587.366 -154.385)" fill="#3d415b"/>
108
+ <path id="Path_557" data-name="Path 557" d="M766.47,500.568l-7.732-4.474a.418.418,0,0,1,0-.72l7.268-4.4a.806.806,0,0,1,.411-.11.789.789,0,0,1,.408.11l7.84,4.533a.412.412,0,0,1,.139.142.389.389,0,0,1,0,.385.389.389,0,0,1-.139.142l-7.25,4.386a.91.91,0,0,1-.944,0Z" transform="translate(-595.526 -159.152)" fill="#3d415b"/>
109
+ <path id="Path_558" data-name="Path 558" d="M762.022,497.966l-7.729-4.474a.418.418,0,0,1-.153-.153.436.436,0,0,1-.054-.207.456.456,0,0,1,.054-.21.44.44,0,0,1,.153-.153l7.268-4.4a.832.832,0,0,1,.819,0l7.837,4.539a.35.35,0,0,1,.139.142.384.384,0,0,1,0,.382.35.35,0,0,1-.139.142l-7.25,4.375a.945.945,0,0,1-.943.014Z" transform="translate(-603.676 -163.922)" fill="#3d415b"/>
110
+ <path id="Path_559" data-name="Path 559" d="M765.769,490.978l-7.248,4.383a.9.9,0,0,1-.944,0l-7.732-4.471a.44.44,0,0,1-.153-.153.41.41,0,0,1-.054-.207.421.421,0,0,1,.054-.21.433.433,0,0,1,.153-.15l7.268-4.4a.79.79,0,0,1,.408-.113.807.807,0,0,1,.411.113l7.837,4.536a.369.369,0,0,1,.139.142.389.389,0,0,1,0,.385A.39.39,0,0,1,765.769,490.978Z" transform="translate(-611.828 -168.698)" fill="#3d415b"/>
111
+ <path id="Path_560" data-name="Path 560" d="M809.816,522.66a.791.791,0,0,1,.816,0l7.84,4.533a.351.351,0,0,1,.139.142.389.389,0,0,1,0,.385.378.378,0,0,1-.139.145l-7.248,4.38a.926.926,0,0,1-.473.128.916.916,0,0,1-.47-.128l-7.732-4.477a.43.43,0,0,1-.153-.15.449.449,0,0,1-.054-.21.411.411,0,0,1,.207-.36Z" transform="translate(-515.206 -101.072)" fill="#3d415b"/>
112
+ <path id="Path_561" data-name="Path 561" d="M805.361,520.06a.8.8,0,0,1,.822,0l7.84,4.53a.39.39,0,0,1,.139.142.389.389,0,0,1,0,.385.439.439,0,0,1-.139.142l-7.245,4.383a.925.925,0,0,1-.946,0l-7.729-4.471a.418.418,0,0,1-.153-.153.409.409,0,0,1-.054-.207.419.419,0,0,1,.054-.21.39.39,0,0,1,.153-.15Z" transform="translate(-523.359 -105.838)" fill="#3d415b"/>
113
+ <path id="Path_562" data-name="Path 562" d="M800.918,517.46a.808.808,0,0,1,.411-.113.8.8,0,0,1,.408.113l7.843,4.533a.39.39,0,0,1,.139.142.389.389,0,0,1,0,.385.438.438,0,0,1-.139.142l-7.248,4.383a.925.925,0,0,1-.946,0l-7.729-4.471a.432.432,0,0,1-.15-.153.412.412,0,0,1-.057-.207.423.423,0,0,1,.057-.21.4.4,0,0,1,.15-.15Z" transform="translate(-531.51 -110.605)" fill="#3d415b"/>
114
+ <path id="Path_563" data-name="Path 563" d="M796.471,514.855a.814.814,0,0,1,.819,0l7.84,4.536a.368.368,0,0,1,.139.142.389.389,0,0,1,0,.385.35.35,0,0,1-.139.142l-7.245,4.386a.942.942,0,0,1-.947,0l-7.729-4.477a.389.389,0,0,1-.15-.153.406.406,0,0,1,0-.414.39.39,0,0,1,.15-.153Z" transform="translate(-539.663 -115.375)" fill="#3d415b"/>
115
+ <path id="Path_564" data-name="Path 564" d="M774.237,501.851a.819.819,0,0,1,.822,0l3.825,2.216a.749.749,0,0,1,.482.085l53.93,31.711a.419.419,0,0,1,.139.142.389.389,0,0,1,0,.385.417.417,0,0,1-.139.142l-7.245,4.386a.946.946,0,0,1-.949,0l-12.475-7.338a.738.738,0,0,1-.125-.031l-7.729-4.474c-.068-.037-.065-.113-.1-.173l-4.516-2.658a.76.76,0,0,1-.25-.065l-7.732-4.477c-.091-.051-.1-.145-.136-.232l-4.358-2.564a.861.861,0,0,1-.374-.1l-7.732-4.474a.358.358,0,0,1-.122-.13.366.366,0,0,1-.051-.173l-4.21-2.476a.961.961,0,0,1-.485-.119l-7.729-4.474a.417.417,0,0,1-.153-.153.41.41,0,0,1-.054-.207.409.409,0,0,1,.207-.363Z" transform="translate(-580.425 -139.216)" fill="#3d415b"/>
116
+ <path id="Path_565" data-name="Path 565" d="M769.792,499.258a.8.8,0,0,1,.822,0l7.837,4.536a.384.384,0,0,1,.193.334.384.384,0,0,1-.051.193.4.4,0,0,1-.142.142l-7.248,4.383a.924.924,0,0,1-.946,0l-7.729-4.474a.388.388,0,0,1-.153-.15.41.41,0,0,1,0-.417.415.415,0,0,1,.153-.153Z" transform="translate(-588.584 -143.975)" fill="#3d415b"/>
117
+ <path id="Path_566" data-name="Path 566" d="M765.347,496.651a.814.814,0,0,1,.819,0l7.84,4.533a.417.417,0,0,1,.139.142.388.388,0,0,1,.054.193.38.38,0,0,1-.054.193.393.393,0,0,1-.139.142l-7.251,4.386a.918.918,0,0,1-.943,0l-7.732-4.474a.39.39,0,0,1-.15-.153.418.418,0,0,1,.15-.567Z" transform="translate(-596.733 -148.749)" fill="#3d415b"/>
118
+ <path id="Path_567" data-name="Path 567" d="M760.894,494.051a.819.819,0,0,1,.822,0l7.837,4.539a.394.394,0,0,1,.139.142.385.385,0,0,1,0,.382.392.392,0,0,1-.139.142l-7.242,4.386a.937.937,0,0,1-.943,0l-7.732-4.474a.43.43,0,0,1-.153-.15.42.42,0,0,1-.054-.21.41.41,0,0,1,.054-.207.438.438,0,0,1,.153-.153Z" transform="translate(-604.882 -153.516)" fill="#3d415b"/>
119
+ <path id="Path_568" data-name="Path 568" d="M756.451,491.451a.819.819,0,0,1,.822,0l7.837,4.539a.394.394,0,0,1,.139.142.384.384,0,0,1,0,.382.394.394,0,0,1-.139.142l-7.25,4.386a.915.915,0,0,1-.47.133.925.925,0,0,1-.473-.133l-7.723-4.474a.41.41,0,0,1-.153-.15.423.423,0,0,1-.057-.21.413.413,0,0,1,.057-.207.418.418,0,0,1,.153-.153Z" transform="translate(-613.033 -158.283)" fill="#3d415b"/>
120
+ <path id="Path_569" data-name="Path 569" d="M744.737,493.247l7.267-4.4a.819.819,0,0,1,.822,0l7.837,4.533a.446.446,0,0,1,.139.142.4.4,0,0,1,.051.193.387.387,0,0,1-.051.193.4.4,0,0,1-.139.142l-7.251,4.389a.944.944,0,0,1-.47.128.956.956,0,0,1-.473-.128l-7.732-4.477a.384.384,0,0,1-.147-.153.42.42,0,0,1,.147-.564Z" transform="translate(-621.19 -163.053)" fill="#3d415b"/>
121
+ <path id="Path_570" data-name="Path 570" d="M828.074,511.883l7.729,4.471a.929.929,0,0,0,.949,0L844,511.97a.4.4,0,0,0,.142-.142.382.382,0,0,0,.051-.193A.384.384,0,0,0,844,511.3l-7.831-4.55a.8.8,0,0,0-.411-.11.788.788,0,0,0-.408.11l-7.265,4.4a.459.459,0,0,0-.162.15.443.443,0,0,0-.062.213.436.436,0,0,0,.057.215A.419.419,0,0,0,828.074,511.883Z" transform="translate(-468.425 -130.233)" fill="#83869b"/>
122
+ <path id="Path_571" data-name="Path 571" d="M823.617,509.265l7.732,4.477a.942.942,0,0,0,.946,0l7.248-4.386a.385.385,0,0,0,.139-.139.376.376,0,0,0,0-.388.384.384,0,0,0-.139-.139l-7.84-4.536a.817.817,0,0,0-.408-.11.833.833,0,0,0-.411.11l-7.268,4.4a.448.448,0,0,0-.147.153.42.42,0,0,0,0,.411A.44.44,0,0,0,823.617,509.265Z" transform="translate(-476.571 -134.996)" fill="#83869b"/>
123
+ <path id="Path_572" data-name="Path 572" d="M819.181,506.678l7.732,4.474a.924.924,0,0,0,.946,0l7.245-4.386a.369.369,0,0,0,.142-.139.393.393,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.55a.8.8,0,0,0-.411-.11.789.789,0,0,0-.408.11l-7.267,4.4a.412.412,0,0,0-.159.153.407.407,0,0,0-.06.212.421.421,0,0,0,.218.366Z" transform="translate(-484.734 -139.77)" fill="#83869b"/>
124
+ <path id="Path_573" data-name="Path 573" d="M814.728,504.066l7.729,4.474a.929.929,0,0,0,.949,0l7.245-4.386a.384.384,0,0,0,.193-.334.385.385,0,0,0-.051-.193.4.4,0,0,0-.142-.142l-7.837-4.533a.819.819,0,0,0-.822,0l-7.265,4.4a.41.41,0,0,0-.15.153.4.4,0,0,0,0,.411A.389.389,0,0,0,814.728,504.066Z" transform="translate(-492.878 -144.533)" fill="#83869b"/>
125
+ <path id="Path_574" data-name="Path 574" d="M810.289,501.471l7.732,4.477a.927.927,0,0,0,.473.128.917.917,0,0,0,.47-.128l7.25-4.386a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.414.414,0,0,0-.142-.139l-7.846-4.55a.785.785,0,0,0-.408-.11.8.8,0,0,0-.411.11l-7.267,4.395a.438.438,0,0,0-.159.156.425.425,0,0,0-.057.212.438.438,0,0,0,.063.213A.383.383,0,0,0,810.289,501.471Z" transform="translate(-501.042 -149.31)" fill="#83869b"/>
126
+ <path id="Path_575" data-name="Path 575" d="M805.834,498.867l7.732,4.474a.936.936,0,0,0,.944,0l7.248-4.386a.38.38,0,0,0,.142-.142.375.375,0,0,0,.051-.193.383.383,0,0,0-.051-.193.4.4,0,0,0-.142-.142l-7.837-4.536a.814.814,0,0,0-.819,0l-7.268,4.4a.414.414,0,0,0-.15.567A.391.391,0,0,0,805.834,498.867Z" transform="translate(-509.184 -154.07)" fill="#83869b"/>
127
+ <path id="Path_576" data-name="Path 576" d="M801.4,496.271l7.732,4.477a.937.937,0,0,0,.944,0l7.248-4.386a.354.354,0,0,0,.139-.142.394.394,0,0,0-.139-.527l-7.848-4.547a.819.819,0,0,0-.822,0l-7.265,4.4a.411.411,0,0,0-.156.156.4.4,0,0,0-.054.213.417.417,0,0,0,.059.21A.411.411,0,0,0,801.4,496.271Z" transform="translate(-517.344 -158.844)" fill="#83869b"/>
128
+ <path id="Path_577" data-name="Path 577" d="M796.944,493.666l7.729,4.474a.954.954,0,0,0,.473.127.964.964,0,0,0,.473-.127l7.248-4.386a.392.392,0,0,0,.139-.142.39.39,0,0,0,0-.385.443.443,0,0,0-.139-.142l-7.837-4.536a.819.819,0,0,0-.822,0l-7.265,4.4a.417.417,0,0,0-.153.153.4.4,0,0,0,0,.414A.4.4,0,0,0,796.944,493.666Z" transform="translate(-525.488 -163.603)" fill="#83869b"/>
129
+ <path id="Path_578" data-name="Path 578" d="M792.508,491.074l7.729,4.471a.907.907,0,0,0,.946,0l7.248-4.383a.412.412,0,0,0,.139-.142.389.389,0,0,0,0-.385.39.39,0,0,0-.139-.142l-7.857-4.55a.832.832,0,0,0-.819,0l-7.267,4.4a.441.441,0,0,0-.156.159.431.431,0,0,0-.054.213.426.426,0,0,0,.065.213A.419.419,0,0,0,792.508,491.074Z" transform="translate(-533.655 -168.377)" fill="#83869b"/>
130
+ <path id="Path_579" data-name="Path 579" d="M788.054,488.462l7.732,4.477a.944.944,0,0,0,.47.127.954.954,0,0,0,.473-.127l7.248-4.389a.35.35,0,0,0,.139-.142.389.389,0,0,0,0-.385.367.367,0,0,0-.139-.142l-7.837-4.533a.814.814,0,0,0-.819,0l-7.273,4.386a.406.406,0,0,0-.156.153.436.436,0,0,0-.057.213.393.393,0,0,0,.06.21A.432.432,0,0,0,788.054,488.462Z" transform="translate(-541.801 -173.14)" fill="#83869b"/>
131
+ <path id="Path_580" data-name="Path 580" d="M783.6,485.864l7.729,4.474a.942.942,0,0,0,.947,0l7.248-4.386a.393.393,0,0,0,.139-.142.389.389,0,0,0,0-.385.417.417,0,0,0-.139-.142l-7.837-4.536a.819.819,0,0,0-.822,0l-7.265,4.4a.4.4,0,0,0-.153.153.425.425,0,0,0,0,.414A.4.4,0,0,0,783.6,485.864Z" transform="translate(-549.946 -177.907)" fill="#83869b"/>
132
+ <path id="Path_581" data-name="Path 581" d="M779.165,483.268l7.729,4.471a.907.907,0,0,0,.946,0l7.245-4.383a.413.413,0,0,0,.139-.142.389.389,0,0,0,0-.385.391.391,0,0,0-.139-.142l-7.857-4.542a.791.791,0,0,0-.408-.113.8.8,0,0,0-.408.113l-7.267,4.4a.387.387,0,0,0-.147.156.44.44,0,0,0-.051.21.407.407,0,0,0,.062.2A.416.416,0,0,0,779.165,483.268Z" transform="translate(-558.097 -182.682)" fill="#83869b"/>
133
+ <path id="Path_582" data-name="Path 582" d="M774.71,480.662l7.727,4.477a.947.947,0,0,0,.949,0l7.245-4.386a.389.389,0,0,0,.139-.142.384.384,0,0,0,0-.383.39.39,0,0,0-.139-.142l-7.84-4.539a.819.819,0,0,0-.822,0l-7.262,4.395a.416.416,0,0,0-.153.153.442.442,0,0,0-.054.207.424.424,0,0,0,.057.21A.412.412,0,0,0,774.71,480.662Z" transform="translate(-566.25 -187.44)" fill="#83869b"/>
134
+ <path id="Path_583" data-name="Path 583" d="M770.257,478.064l7.729,4.474a.942.942,0,0,0,.946,0l7.245-4.386a.369.369,0,0,0,.139-.142.389.389,0,0,0,0-.385.369.369,0,0,0-.139-.142l-7.84-4.536a.809.809,0,0,0-.411-.113.79.79,0,0,0-.408.113l-7.262,4.406a.463.463,0,0,0-.147.15.428.428,0,0,0-.051.2.42.42,0,0,0,.051.2A.447.447,0,0,0,770.257,478.064Z" transform="translate(-574.392 -192.212)" fill="#83869b"/>
135
+ <path id="Path_584" data-name="Path 584" d="M822.964,514.944l7.729,4.474a.942.942,0,0,0,.946,0l7.245-4.386a.4.4,0,0,0,.142-.142.385.385,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.533a.807.807,0,0,0-.411-.113.792.792,0,0,0-.408.113l-7.265,4.4a.425.425,0,0,0-.15.15.409.409,0,0,0-.054.207.4.4,0,0,0,.054.207A.433.433,0,0,0,822.964,514.944Z" transform="translate(-477.773 -124.593)" fill="#83869b"/>
136
+ <path id="Path_585" data-name="Path 585" d="M818.512,512.337l7.729,4.488a.947.947,0,0,0,.949,0l7.245-4.386a.377.377,0,0,0,.142-.142.389.389,0,0,0,0-.385.377.377,0,0,0-.142-.142l-7.837-4.536a.819.819,0,0,0-.822,0l-7.262,4.4a.408.408,0,0,0-.145.15.456.456,0,0,0-.054.2.42.42,0,0,0,.051.2A.44.44,0,0,0,818.512,512.337Z" transform="translate(-485.921 -129.347)" fill="#83869b"/>
137
+ <path id="Path_586" data-name="Path 586" d="M814.069,509.748l7.732,4.471a.929.929,0,0,0,.949,0l7.245-4.383a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.142-.142l-7.837-4.533a.8.8,0,0,0-.822,0l-7.268,4.4a.392.392,0,0,0-.147.15.421.421,0,0,0-.057.207.405.405,0,0,0,.057.207A.4.4,0,0,0,814.069,509.748Z" transform="translate(-494.081 -134.119)" fill="#83869b"/>
138
+ <path id="Path_587" data-name="Path 587" d="M809.623,507.147l7.732,4.474a.947.947,0,0,0,.473.127.956.956,0,0,0,.473-.127l7.245-4.386a.377.377,0,0,0,.142-.142.389.389,0,0,0,0-.385.379.379,0,0,0-.142-.142l-7.837-4.536a.8.8,0,0,0-.819,0l-7.267,4.395a.426.426,0,0,0-.207.36.423.423,0,0,0,.057.21A.411.411,0,0,0,809.623,507.147Z" transform="translate(-502.237 -138.893)" fill="#83869b"/>
139
+ <path id="Path_588" data-name="Path 588" d="M805.178,504.542l7.732,4.474a.924.924,0,0,0,.946,0l7.245-4.383a.4.4,0,0,0,.142-.142.386.386,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.536a.807.807,0,0,0-.411-.113.791.791,0,0,0-.408.113l-7.267,4.395a.438.438,0,0,0-.153.153.41.41,0,0,0-.054.207.42.42,0,0,0,.054.21A.408.408,0,0,0,805.178,504.542Z" transform="translate(-510.387 -143.664)" fill="#83869b"/>
140
+ <path id="Path_589" data-name="Path 589" d="M800.735,501.947l7.729,4.477a.932.932,0,0,0,.476.122.963.963,0,0,0,.47-.136l7.248-4.386a.384.384,0,0,0,.193-.334.382.382,0,0,0-.051-.193.4.4,0,0,0-.142-.142l-7.837-4.533a.819.819,0,0,0-.822,0l-7.265,4.4a.421.421,0,0,0-.159.578A.4.4,0,0,0,800.735,501.947Z" transform="translate(-518.547 -148.438)" fill="#83869b"/>
141
+ <path id="Path_590" data-name="Path 590" d="M796.293,499.348l7.732,4.474a.927.927,0,0,0,.473.128.916.916,0,0,0,.47-.128l7.25-4.383a.4.4,0,0,0,.193-.334.38.38,0,0,0-.054-.193.368.368,0,0,0-.139-.142l-7.845-4.55a.814.814,0,0,0-.819,0l-7.267,4.4a.439.439,0,0,0-.159.156.418.418,0,0,0-.057.212.413.413,0,0,0,.062.213A.386.386,0,0,0,796.293,499.348Z" transform="translate(-526.701 -153.208)" fill="#83869b"/>
142
+ <path id="Path_591" data-name="Path 591" d="M791.838,496.74l7.732,4.474a.92.92,0,0,0,.944,0l7.248-4.386a.368.368,0,0,0,.139-.142.389.389,0,0,0,0-.385.368.368,0,0,0-.139-.142l-7.837-4.536a.814.814,0,0,0-.819,0l-7.268,4.4a.418.418,0,0,0-.153.153.423.423,0,0,0,0,.414A.44.44,0,0,0,791.838,496.74Z" transform="translate(-534.843 -157.967)" fill="#83869b"/>
143
+ <path id="Path_592" data-name="Path 592" d="M787.388,494.138l7.732,4.477a.937.937,0,0,0,.943,0l7.248-4.389a.353.353,0,0,0,.139-.142.386.386,0,0,0,0-.383.353.353,0,0,0-.139-.142l-7.837-4.536a.813.813,0,0,0-.819,0l-7.273,4.4a.418.418,0,0,0-.147.153.412.412,0,0,0-.051.207.406.406,0,0,0,.2.354Z" transform="translate(-542.996 -162.734)" fill="#83869b"/>
144
+ <path id="Path_593" data-name="Path 593" d="M782.943,491.538l7.732,4.474a.926.926,0,0,0,.473.128.915.915,0,0,0,.47-.128l7.251-4.386a.392.392,0,0,0,.139-.142.384.384,0,0,0,0-.382.39.39,0,0,0-.139-.142l-7.837-4.539a.818.818,0,0,0-.822,0l-7.268,4.4a.431.431,0,0,0-.15.153.406.406,0,0,0,0,.414A.411.411,0,0,0,782.943,491.538Z" transform="translate(-551.151 -167.504)" fill="#83869b"/>
145
+ <path id="Path_594" data-name="Path 594" d="M778.495,488.936l7.732,4.474a.919.919,0,0,0,.943,0l7.25-4.386a.388.388,0,0,0,.139-.142.415.415,0,0,0,.051-.193.4.4,0,0,0-.051-.19.421.421,0,0,0-.139-.145l-7.84-4.533a.794.794,0,0,0-.408-.111.8.8,0,0,0-.411.111l-7.267,4.4a.417.417,0,0,0-.15.564A.411.411,0,0,0,778.495,488.936Z" transform="translate(-559.3 -172.271)" fill="#83869b"/>
146
+ <path id="Path_595" data-name="Path 595" d="M774.054,486.347l7.732,4.471a.919.919,0,0,0,.47.13.929.929,0,0,0,.473-.13l7.248-4.383a.39.39,0,0,0,.139-.142.389.389,0,0,0,0-.385.35.35,0,0,0-.139-.142l-7.828-4.55a.787.787,0,0,0-.408-.11.8.8,0,0,0-.411.11l-7.268,4.395a.438.438,0,0,0-.161.153.42.42,0,0,0-.06.213.392.392,0,0,0,.057.215A.411.411,0,0,0,774.054,486.347Z" transform="translate(-567.456 -177.049)" fill="#83869b"/>
147
+ <path id="Path_596" data-name="Path 596" d="M769.612,483.744l7.729,4.468a.924.924,0,0,0,.946,0l7.245-4.386a.391.391,0,0,0,.139-.142.389.389,0,0,0,0-.385.415.415,0,0,0-.139-.142l-7.843-4.542a.814.814,0,0,0-.819,0l-7.265,4.4a.393.393,0,0,0-.159.153.383.383,0,0,0-.057.215.409.409,0,0,0,.059.212A.414.414,0,0,0,769.612,483.744Z" transform="translate(-575.617 -181.815)" fill="#83869b"/>
148
+ <path id="Path_597" data-name="Path 597" d="M765.156,481.135l7.729,4.477a.942.942,0,0,0,.946,0l7.245-4.386a.375.375,0,0,0,.142-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.142-.142l-7.831-4.542a.788.788,0,0,0-.408-.11.8.8,0,0,0-.411.11l-7.265,4.4a.433.433,0,0,0-.153.15.417.417,0,0,0-.059.21.45.45,0,0,0,.054.21A.438.438,0,0,0,765.156,481.135Z" transform="translate(-583.76 -186.582)" fill="#83869b"/>
149
+ <path id="Path_598" data-name="Path 598" d="M814.48,516.029l17.309,10.115a.929.929,0,0,0,.949,0l7.245-4.386a.39.39,0,0,0,.139-.142.384.384,0,0,0,0-.383.389.389,0,0,0-.139-.142l-17.425-10.18a.814.814,0,0,0-.819,0l-7.267,4.4a.43.43,0,0,0-.15.153.414.414,0,0,0-.051.21.4.4,0,0,0,.056.207A.433.433,0,0,0,814.48,516.029Z" transform="translate(-493.339 -122.604)" fill="#83869b"/>
150
+ <path id="Path_599" data-name="Path 599" d="M813.425,515.432l7.729,4.476a.932.932,0,0,0,.476.122.922.922,0,0,0,.47-.139l7.245-4.383a.377.377,0,0,0,.142-.142.371.371,0,0,0,0-.385.378.378,0,0,0-.142-.142L821.5,510.3a.8.8,0,0,0-.819,0l-7.265,4.4a.393.393,0,0,0-.159.153.412.412,0,0,0-.06.215.4.4,0,0,0,.063.213A.419.419,0,0,0,813.425,515.432Z" transform="translate(-495.298 -123.732)" fill="#83869b"/>
151
+ <path id="Path_600" data-name="Path 600" d="M808.964,512.821,816.7,517.3a.942.942,0,0,0,.947,0l7.248-4.386a.389.389,0,0,0,.139-.142.38.38,0,0,0,.054-.193.387.387,0,0,0-.054-.193.412.412,0,0,0-.139-.142l-7.84-4.536a.789.789,0,0,0-.408-.113.808.808,0,0,0-.411.113l-7.265,4.395a.429.429,0,0,0-.15.153.413.413,0,0,0-.057.207.421.421,0,0,0,.054.21A.43.43,0,0,0,808.964,512.821Z" transform="translate(-503.44 -128.491)" fill="#83869b"/>
152
+ <path id="Path_601" data-name="Path 601" d="M804.523,510.219l7.729,4.471a.929.929,0,0,0,.949,0l7.245-4.383a.376.376,0,0,0,.142-.142.389.389,0,0,0,0-.385.376.376,0,0,0-.142-.142l-7.837-4.536a.8.8,0,0,0-.822,0l-7.27,4.4a.418.418,0,0,0-.153.153.424.424,0,0,0,.006.414A.4.4,0,0,0,804.523,510.219Z" transform="translate(-511.593 -133.261)" fill="#83869b"/>
153
+ <path id="Path_602" data-name="Path 602" d="M800.07,507.616l7.732,4.474a.93.93,0,0,0,.949,0L816,507.706a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.142-.142l-7.837-4.533a.8.8,0,0,0-.822,0l-7.268,4.4a.437.437,0,0,0-.147.15.418.418,0,0,0,0,.411A.445.445,0,0,0,800.07,507.616Z" transform="translate(-519.74 -138.024)" fill="#83869b"/>
154
+ <path id="Path_603" data-name="Path 603" d="M795.627,505.016l7.732,4.471a.925.925,0,0,0,.947,0l7.248-4.383a.394.394,0,0,0,.139-.142.388.388,0,0,0,.054-.193.38.38,0,0,0-.054-.193.394.394,0,0,0-.139-.142l-7.846-4.533a.8.8,0,0,0-.819,0l-7.268,4.4a.414.414,0,0,0-.145.564A.41.41,0,0,0,795.627,505.016Z" transform="translate(-527.897 -142.795)" fill="#83869b"/>
155
+ <path id="Path_604" data-name="Path 604" d="M791.179,502.416l7.732,4.471a.887.887,0,0,0,.47.133.9.9,0,0,0,.473-.133L807.1,502.5a.378.378,0,0,0,.142-.142.386.386,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.533a.807.807,0,0,0-.411-.113.79.79,0,0,0-.408.113l-7.268,4.4a.425.425,0,0,0-.15.15.417.417,0,0,0-.054.207.4.4,0,0,0,.054.207A.431.431,0,0,0,791.179,502.416Z" transform="translate(-536.046 -147.561)" fill="#83869b"/>
156
+ <path id="Path_605" data-name="Path 605" d="M786.741,499.822l7.732,4.462a.927.927,0,0,0,.473.128.916.916,0,0,0,.47-.128l7.251-4.383a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.142-.142L794.83,494.7a.8.8,0,0,0-.822,0l-7.267,4.395a.41.41,0,0,0-.159.153.421.421,0,0,0-.06.213.437.437,0,0,0,.06.213A.432.432,0,0,0,786.741,499.822Z" transform="translate(-544.208 -152.339)" fill="#83869b"/>
157
+ <path id="Path_606" data-name="Path 606" d="M782.287,497.211l7.732,4.474a.937.937,0,0,0,.944,0l7.25-4.386a.392.392,0,0,0,.139-.142.384.384,0,0,0,0-.382.389.389,0,0,0-.139-.142l-7.84-4.539a.825.825,0,0,0-.408-.11.835.835,0,0,0-.411.11l-7.268,4.4a.431.431,0,0,0-.15.153.413.413,0,0,0-.057.207.417.417,0,0,0,.207.36Z" transform="translate(-552.353 -157.106)" fill="#83869b"/>
158
+ <path id="Path_607" data-name="Path 607" d="M777.85,494.625l7.732,4.474a.92.92,0,0,0,.944,0l7.248-4.406a.35.35,0,0,0,.139-.142.384.384,0,0,0,0-.382.35.35,0,0,0-.139-.142l-7.837-4.536a.834.834,0,0,0-.411-.11.816.816,0,0,0-.408.11l-7.268,4.4a.42.42,0,0,0-.161.153.42.42,0,0,0,0,.431A.444.444,0,0,0,777.85,494.625Z" transform="translate(-560.513 -161.876)" fill="#83869b"/>
159
+ <path id="Path_608" data-name="Path 608" d="M773.393,492.013l7.729,4.474a.942.942,0,0,0,.946,0l7.248-4.383a.424.424,0,0,0,.139-.144.384.384,0,0,0,0-.382.391.391,0,0,0-.139-.142l-7.837-4.536a.8.8,0,0,0-.822,0l-7.265,4.394a.419.419,0,0,0-.153.153.41.41,0,0,0-.054.207.42.42,0,0,0,.054.21A.391.391,0,0,0,773.393,492.013Z" transform="translate(-568.659 -166.635)" fill="#83869b"/>
160
+ <path id="Path_609" data-name="Path 609" d="M768.943,489.406l7.729,4.482a.924.924,0,0,0,.946,0l7.248-4.386a.391.391,0,0,0,.139-.142.389.389,0,0,0,0-.385.414.414,0,0,0-.139-.142l-7.837-4.536a.819.819,0,0,0-.822,0l-7.265,4.4a.4.4,0,0,0-.147.153.412.412,0,0,0-.054.2.423.423,0,0,0,.054.2A.4.4,0,0,0,768.943,489.406Z" transform="translate(-576.806 -171.398)" fill="#83869b"/>
161
+ <path id="Path_610" data-name="Path 610" d="M764.5,486.81l7.732,4.477a.927.927,0,0,0,.473.127.917.917,0,0,0,.47-.127l7.25-4.389a.391.391,0,0,0,.139-.142.384.384,0,0,0,0-.383.392.392,0,0,0-.139-.142l-7.84-4.533a.8.8,0,0,0-.819,0l-7.268,4.395a.415.415,0,0,0-.2.36.442.442,0,0,0,.054.207A.424.424,0,0,0,764.5,486.81Z" transform="translate(-584.963 -176.169)" fill="#83869b"/>
162
+ <path id="Path_611" data-name="Path 611" d="M760.053,484.21l17.5,10.245a.941.941,0,0,0,.946,0l7.248-4.386a.4.4,0,0,0,.142-.142.385.385,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-17.612-10.308a.832.832,0,0,0-.408-.111.816.816,0,0,0-.408.111l-7.268,4.4a.437.437,0,0,0-.153.153.425.425,0,0,0,0,.414A.416.416,0,0,0,760.053,484.21Z" transform="translate(-593.116 -180.939)" fill="#83869b"/>
163
+ <path id="Path_612" data-name="Path 612" d="M812.758,521.093l7.729,4.477a.942.942,0,0,0,.946,0l7.245-4.386a.351.351,0,0,0,.139-.142.384.384,0,0,0,0-.383.352.352,0,0,0-.139-.142l-7.843-4.542a.805.805,0,0,0-.411-.11.789.789,0,0,0-.408.11l-7.265,4.4a.412.412,0,0,0-.15.153.42.42,0,0,0-.054.21.415.415,0,0,0,.056.207A.434.434,0,0,0,812.758,521.093Z" transform="translate(-496.493 -113.32)" fill="#83869b"/>
164
+ <path id="Path_613" data-name="Path 613" d="M808.311,518.494l7.727,4.474a.947.947,0,0,0,.949,0l7.245-4.386a.4.4,0,0,0,.139-.142.385.385,0,0,0,.051-.193.393.393,0,0,0-.051-.193.443.443,0,0,0-.139-.142l-7.84-4.536a.819.819,0,0,0-.822,0l-7.259,4.4a.416.416,0,0,0-.153.153.425.425,0,0,0,0,.414A.4.4,0,0,0,808.311,518.494Z" transform="translate(-504.643 -118.087)" fill="#83869b"/>
165
+ <path id="Path_614" data-name="Path 614" d="M803.858,515.893l7.738,4.471a.924.924,0,0,0,.946,0l7.245-4.383a.375.375,0,0,0,.142-.142.383.383,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.536a.814.814,0,0,0-.819,0l-7.279,4.412a.407.407,0,0,0-.142.153.412.412,0,0,0,0,.4A.426.426,0,0,0,803.858,515.893Z" transform="translate(-512.79 -122.854)" fill="#83869b"/>
166
+ <path id="Path_615" data-name="Path 615" d="M799.414,513.291l7.732,4.477a.942.942,0,0,0,.947,0l7.245-4.389a.394.394,0,0,0,.2-.334.388.388,0,0,0-.054-.193.381.381,0,0,0-.142-.142l-7.837-4.533a.813.813,0,0,0-.819,0l-7.267,4.394a.391.391,0,0,0-.15.153.406.406,0,0,0,0,.414A.391.391,0,0,0,799.414,513.291Z" transform="translate(-520.954 -127.62)" fill="#83869b"/>
167
+ <path id="Path_616" data-name="Path 616" d="M794.98,510.708l7.735,4.474a.947.947,0,0,0,.949,0l7.25-4.409a.377.377,0,0,0,.142-.142.383.383,0,0,0,.051-.193.384.384,0,0,0-.193-.334l-7.837-4.536a.8.8,0,0,0-.822,0l-7.265,4.4a.413.413,0,0,0-.235.368.422.422,0,0,0,.059.218A.4.4,0,0,0,794.98,510.708Z" transform="translate(-529.114 -132.407)" fill="#83869b"/>
168
+ <path id="Path_617" data-name="Path 617" d="M790.522,508.089l7.729,4.474a.947.947,0,0,0,.949,0l7.245-4.386a.378.378,0,0,0,.142-.142.389.389,0,0,0,0-.385.379.379,0,0,0-.142-.142l-7.837-4.533a.819.819,0,0,0-.822,0l-7.265,4.395a.4.4,0,0,0-.153.153.406.406,0,0,0,0,.414A.418.418,0,0,0,790.522,508.089Z" transform="translate(-537.261 -137.157)" fill="#83869b"/>
169
+ <path id="Path_618" data-name="Path 618" d="M786.08,505.5l7.729,4.477a.929.929,0,0,0,.949,0l7.25-4.4a.384.384,0,0,0,.193-.334.382.382,0,0,0-.051-.193.4.4,0,0,0-.142-.142l-7.837-4.536a.8.8,0,0,0-.822,0l-7.265,4.395a.42.42,0,0,0-.161.153.437.437,0,0,0-.06.213.41.41,0,0,0,.06.215A.385.385,0,0,0,786.08,505.5Z" transform="translate(-545.414 -141.933)" fill="#83869b"/>
170
+ <path id="Path_619" data-name="Path 619" d="M781.636,502.891l7.732,4.474a.955.955,0,0,0,.473.128.944.944,0,0,0,.47-.128l7.251-4.386a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.142-.142l-7.84-4.536a.79.79,0,0,0-.408-.113.809.809,0,0,0-.411.113l-7.284,4.395a.4.4,0,0,0-.15.156.417.417,0,0,0-.051.21.413.413,0,0,0,.062.207A.4.4,0,0,0,781.636,502.891Z" transform="translate(-553.567 -146.696)" fill="#83869b"/>
171
+ <path id="Path_620" data-name="Path 620" d="M777.182,500.289l7.724,4.477a.937.937,0,0,0,.943,0l7.256-4.392a.391.391,0,0,0,.139-.142.385.385,0,0,0,.054-.193.378.378,0,0,0-.054-.193.391.391,0,0,0-.139-.142l-7.84-4.533a.8.8,0,0,0-.408-.113.808.808,0,0,0-.411.113l-7.268,4.4a.41.41,0,0,0-.15.153.414.414,0,0,0,0,.414A.409.409,0,0,0,777.182,500.289Z" transform="translate(-561.712 -151.466)" fill="#83869b"/>
172
+ <path id="Path_621" data-name="Path 621" d="M772.736,497.689l7.732,4.471a.931.931,0,0,0,.473.13.919.919,0,0,0,.47-.13l7.25-4.383a.414.414,0,0,0,.139-.142.39.39,0,0,0,0-.385.39.39,0,0,0-.139-.142l-7.837-4.536a.8.8,0,0,0-.822,0l-7.268,4.4a.418.418,0,0,0-.207.36.413.413,0,0,0,.057.207A.43.43,0,0,0,772.736,497.689Z" transform="translate(-569.863 -156.233)" fill="#83869b"/>
173
+ <path id="Path_622" data-name="Path 622" d="M768.3,495.094l7.732,4.474a.9.9,0,0,0,.944,0l7.239-4.4a.352.352,0,0,0,.139-.142.389.389,0,0,0,0-.385.37.37,0,0,0-.139-.142l-7.834-4.536a.814.814,0,0,0-.819,0l-7.268,4.4a.458.458,0,0,0-.159.153.413.413,0,0,0,.164.578Z" transform="translate(-578.024 -161.007)" fill="#83869b"/>
174
+ <path id="Path_623" data-name="Path 623" d="M763.856,492.5l7.732,4.477a.943.943,0,0,0,.47.128.954.954,0,0,0,.473-.128l7.248-4.389a.378.378,0,0,0,.142-.142.406.406,0,0,0,.051-.19.418.418,0,0,0-.051-.193.378.378,0,0,0-.142-.142l-7.843-4.562a.835.835,0,0,0-.411-.111.816.816,0,0,0-.408.111l-7.268,4.4a.435.435,0,0,0-.164.156.422.422,0,0,0-.059.218.416.416,0,0,0,.229.368Z" transform="translate(-586.184 -165.781)" fill="#83869b"/>
175
+ <path id="Path_624" data-name="Path 624" d="M759.4,489.889l7.729,4.471a.925.925,0,0,0,.946,0l7.248-4.383a.417.417,0,0,0,.139-.142.389.389,0,0,0,0-.385.394.394,0,0,0-.139-.142l-7.837-4.536a.8.8,0,0,0-.822,0l-7.265,4.4a.41.41,0,0,0-.153.15.423.423,0,0,0-.057.21.412.412,0,0,0,.057.207A.418.418,0,0,0,759.4,489.889Z" transform="translate(-594.32 -170.533)" fill="#83869b"/>
176
+ <path id="Path_625" data-name="Path 625" d="M754.955,487.284l7.732,4.471a.9.9,0,0,0,.943,0l7.251-4.383a.447.447,0,0,0,.139-.142.4.4,0,0,0,.051-.193.388.388,0,0,0-.051-.193.4.4,0,0,0-.139-.142l-7.84-4.533a.789.789,0,0,0-.408-.113.807.807,0,0,0-.411.113l-7.273,4.386a.424.424,0,0,0-.153.156.407.407,0,0,0,0,.419A.4.4,0,0,0,754.955,487.284Z" transform="translate(-602.477 -175.303)" fill="#83869b"/>
177
+ <path id="Path_626" data-name="Path 626" d="M807.656,524.169l7.732,4.474a.919.919,0,0,0,.47.13.93.93,0,0,0,.473-.13l7.245-4.383a.4.4,0,0,0,.19-.334.385.385,0,0,0-.051-.193.352.352,0,0,0-.139-.142l-7.84-4.536a.806.806,0,0,0-.411-.113.791.791,0,0,0-.408.113l-7.264,4.395a.41.41,0,0,0-.15.153.423.423,0,0,0-.056.21.4.4,0,0,0,.056.207A.41.41,0,0,0,807.656,524.169Z" transform="translate(-505.847 -107.681)" fill="#83869b"/>
178
+ <path id="Path_627" data-name="Path 627" d="M803.217,521.575l7.727,4.474a.946.946,0,0,0,.949,0l7.245-4.386a.391.391,0,0,0,.139-.142.389.389,0,0,0,0-.385.413.413,0,0,0-.139-.142l-7.84-4.547a.819.819,0,0,0-.822,0l-7.262,4.4a.4.4,0,0,0-.162.153.434.434,0,0,0-.057.213.392.392,0,0,0,.06.212A.419.419,0,0,0,803.217,521.575Z" transform="translate(-514.007 -112.458)" fill="#83869b"/>
179
+ <path id="Path_628" data-name="Path 628" d="M798.759,518.965l7.729,4.477a.936.936,0,0,0,.473.127.922.922,0,0,0,.473-.127l7.248-4.389a.4.4,0,0,0,.139-.139.389.389,0,0,0,0-.385.405.405,0,0,0-.139-.139l-7.843-4.539a.817.817,0,0,0-.408-.111.834.834,0,0,0-.411.111l-7.265,4.4a.4.4,0,0,0-.147.153.409.409,0,0,0-.054.207.433.433,0,0,0,.054.207A.425.425,0,0,0,798.759,518.965Z" transform="translate(-522.149 -117.218)" fill="#83869b"/>
180
+ <path id="Path_629" data-name="Path 629" d="M794.323,516.375l7.729,4.474a.925.925,0,0,0,.946,0l7.245-4.395a.384.384,0,0,0,.193-.334.39.39,0,0,0-.051-.193.37.37,0,0,0-.142-.139l-7.845-4.542a.805.805,0,0,0-.411-.11.787.787,0,0,0-.408.11l-7.265,4.4a.442.442,0,0,0-.159.156.4.4,0,0,0-.054.213.393.393,0,0,0,.06.213A.41.41,0,0,0,794.323,516.375Z" transform="translate(-530.313 -121.992)" fill="#83869b"/>
181
+ <path id="Path_630" data-name="Path 630" d="M789.868,513.76l7.729,4.477a.942.942,0,0,0,.946,0l7.248-4.386a.4.4,0,0,0,.142-.142.406.406,0,0,0,.051-.193.416.416,0,0,0-.051-.193.422.422,0,0,0-.142-.142l-7.84-4.533a.816.816,0,0,0-.408-.11.835.835,0,0,0-.411.11l-7.271,4.392a.43.43,0,0,0-.15.153.45.45,0,0,0-.054.21.413.413,0,0,0,.057.207A.433.433,0,0,0,789.868,513.76Z" transform="translate(-538.46 -126.755)" fill="#83869b"/>
182
+ <path id="Path_631" data-name="Path 631" d="M785.432,511.173l7.729,4.474a.929.929,0,0,0,.949,0l7.245-4.386a.369.369,0,0,0,.142-.139.382.382,0,0,0-.142-.527l-7.854-4.55a.789.789,0,0,0-.408-.11.806.806,0,0,0-.411.11l-7.268,4.395a.412.412,0,0,0-.156.156.449.449,0,0,0-.054.215.42.42,0,0,0,.062.213A.4.4,0,0,0,785.432,511.173Z" transform="translate(-546.624 -131.529)" fill="#83869b"/>
183
+ <path id="Path_632" data-name="Path 632" d="M780.973,508.565l7.729,4.474a.939.939,0,0,0,.476.13.928.928,0,0,0,.473-.13l7.245-4.386a.391.391,0,0,0,.142-.139.4.4,0,0,0,0-.388.369.369,0,0,0-.142-.139l-7.837-4.539a.819.819,0,0,0-.822,0l-7.265,4.4a.438.438,0,0,0-.153.153.41.41,0,0,0-.054.207.42.42,0,0,0,.054.21A.43.43,0,0,0,780.973,508.565Z" transform="translate(-554.762 -136.288)" fill="#83869b"/>
184
+ <path id="Path_633" data-name="Path 633" d="M776.531,505.968l7.732,4.477a.932.932,0,0,0,.476.122.945.945,0,0,0,.47-.136l7.248-4.386a.4.4,0,0,0,.142-.142.389.389,0,0,0,0-.385.394.394,0,0,0-.142-.142l-7.84-4.533a.788.788,0,0,0-.408-.11.807.807,0,0,0-.411.11l-7.267,4.4a.405.405,0,0,0-.156.153.4.4,0,0,0,0,.422A.4.4,0,0,0,776.531,505.968Z" transform="translate(-562.921 -141.066)" fill="#83869b"/>
185
+ <path id="Path_634" data-name="Path 634" d="M772.1,503.363l7.732,4.474a.944.944,0,0,0,.47.127.957.957,0,0,0,.473-.127l7.248-4.386a.384.384,0,0,0,.193-.334.383.383,0,0,0-.051-.193.4.4,0,0,0-.142-.142l-7.837-4.536a.814.814,0,0,0-.819,0l-7.29,4.386a.425.425,0,0,0-.153.156.417.417,0,0,0-.054.215.432.432,0,0,0,.065.213A.414.414,0,0,0,772.1,503.363Z" transform="translate(-571.074 -145.825)" fill="#83869b"/>
186
+ <path id="Path_635" data-name="Path 635" d="M767.63,500.761l7.732,4.474a.918.918,0,0,0,.943,0l7.248-4.386a.384.384,0,0,0,.193-.334.385.385,0,0,0-.051-.193.378.378,0,0,0-.142-.142l-7.837-4.533a.814.814,0,0,0-.819,0l-7.267,4.4a.432.432,0,0,0-.15.153.42.42,0,0,0,0,.411A.41.41,0,0,0,767.63,500.761Z" transform="translate(-579.219 -150.592)" fill="#83869b"/>
187
+ <path id="Path_636" data-name="Path 636" d="M763.192,498.165l7.729,4.477a.941.941,0,0,0,.946,0l7.248-4.386a.391.391,0,0,0,.139-.142.384.384,0,0,0,0-.383.391.391,0,0,0-.139-.142l-7.854-4.547a.79.79,0,0,0-.408-.113.808.808,0,0,0-.411.113l-7.25,4.4a.42.42,0,0,0-.21.36.426.426,0,0,0,.057.21A.411.411,0,0,0,763.192,498.165Z" transform="translate(-587.366 -155.371)" fill="#83869b"/>
188
+ <path id="Path_637" data-name="Path 637" d="M758.738,495.561l7.732,4.474a.955.955,0,0,0,.473.128.945.945,0,0,0,.47-.128l7.25-4.386a.39.39,0,0,0,.139-.142.389.389,0,0,0,0-.385.413.413,0,0,0-.139-.142l-7.84-4.536a.788.788,0,0,0-.408-.11.8.8,0,0,0-.411.11l-7.268,4.4a.418.418,0,0,0,0,.72Z" transform="translate(-595.526 -160.129)" fill="#83869b"/>
189
+ <path id="Path_638" data-name="Path 638" d="M754.288,492.956l7.732,4.477a.955.955,0,0,0,.473.127.944.944,0,0,0,.47-.127l7.251-4.386a.391.391,0,0,0,.139-.142.39.39,0,0,0-.139-.527l-7.84-4.533a.787.787,0,0,0-.408-.11.806.806,0,0,0-.411.11l-7.267,4.4a.415.415,0,0,0-.145.153.382.382,0,0,0-.054.2.392.392,0,0,0,.054.2A.415.415,0,0,0,754.288,492.956Z" transform="translate(-603.668 -164.895)" fill="#83869b"/>
190
+ <path id="Path_639" data-name="Path 639" d="M749.842,490.359l7.744,4.474a.945.945,0,0,0,.47.128.957.957,0,0,0,.473-.128l7.248-4.386a.353.353,0,0,0,.139-.142.389.389,0,0,0,0-.385.373.373,0,0,0-.139-.142l-7.837-4.536a.8.8,0,0,0-.411-.11.794.794,0,0,0-.408.11l-7.268,4.4a.415.415,0,0,0-.156.15.405.405,0,0,0-.057.207.41.41,0,0,0,.051.207A.4.4,0,0,0,749.842,490.359Z" transform="translate(-611.825 -169.666)" fill="#83869b"/>
191
+ <path id="Path_640" data-name="Path 640" d="M802.541,527.229l7.729,4.488a.907.907,0,0,0,.947,0l7.248-4.383a.418.418,0,0,0,.139-.142.389.389,0,0,0,0-.385.4.4,0,0,0-.139-.142l-7.84-4.533a.814.814,0,0,0-.819,0l-7.265,4.4a.4.4,0,0,0-.142.15.415.415,0,0,0-.051.2.4.4,0,0,0,.051.2A.4.4,0,0,0,802.541,527.229Z" transform="translate(-515.195 -102.036)" fill="#83869b"/>
192
+ <path id="Path_641" data-name="Path 641" d="M798.105,524.645l7.732,4.477a.937.937,0,0,0,.944,0l7.245-4.386a.378.378,0,0,0,.142-.142.39.39,0,0,0-.142-.527l-7.84-4.536a.8.8,0,0,0-.819,0l-7.265,4.394a.434.434,0,0,0-.15.153.413.413,0,0,0-.057.207.454.454,0,0,0,.057.21A.432.432,0,0,0,798.105,524.645Z" transform="translate(-523.357 -106.808)" fill="#83869b"/>
193
+ <path id="Path_642" data-name="Path 642" d="M793.659,522.044l7.729,4.471a.924.924,0,0,0,.946,0l7.245-4.383a.387.387,0,0,0,.139-.142.389.389,0,0,0,0-.385.367.367,0,0,0-.139-.142l-7.84-4.536a.8.8,0,0,0-.822,0l-7.262,4.4a.389.389,0,0,0-.15.153.406.406,0,0,0,0,.414A.438.438,0,0,0,793.659,522.044Z" transform="translate(-531.51 -111.582)" fill="#83869b"/>
194
+ <path id="Path_643" data-name="Path 643" d="M789.218,519.449l7.726,4.474a.938.938,0,0,0,.949-.014l7.245-4.386a.39.39,0,0,0,.139-.142.384.384,0,0,0,0-.382.393.393,0,0,0-.139-.142l-7.843-4.533a.789.789,0,0,0-.408-.113.808.808,0,0,0-.411.113l-7.265,4.395a.425.425,0,0,0-.212.365.4.4,0,0,0,.059.213A.394.394,0,0,0,789.218,519.449Z" transform="translate(-539.667 -116.356)" fill="#83869b"/>
195
+ <path id="Path_644" data-name="Path 644" d="M768.506,507.257l53.816,31.651a.925.925,0,0,0,.946,0l7.248-4.386a.4.4,0,0,0,.139-.139.376.376,0,0,0,0-.388.407.407,0,0,0-.139-.139l-53.933-31.728a.813.813,0,0,0-.819,0l-7.264,4.4a.429.429,0,0,0-.159.153.413.413,0,0,0,.164.578Z" transform="translate(-577.644 -138.708)" fill="#83869b"/>
196
+ <path id="Path_645" data-name="Path 645" d="M780.329,514.247l7.727,4.474a.929.929,0,0,0,.949,0l7.245-4.386a.4.4,0,0,0,.142-.142.378.378,0,0,0,.051-.193.385.385,0,0,0-.051-.193.423.423,0,0,0-.142-.142l-7.845-4.547a.794.794,0,0,0-.408-.11.8.8,0,0,0-.411.11l-7.264,4.4a.405.405,0,0,0-.156.153.411.411,0,0,0-.06.215.44.44,0,0,0,.063.213A.41.41,0,0,0,780.329,514.247Z" transform="translate(-555.974 -125.893)" fill="#83869b"/>
197
+ <path id="Path_646" data-name="Path 646" d="M775.866,511.637l7.732,4.477a.935.935,0,0,0,.473.128.919.919,0,0,0,.473-.128l7.248-4.386a.4.4,0,0,0,.193-.334.38.38,0,0,0-.054-.193.371.371,0,0,0-.139-.142l-7.84-4.533a.791.791,0,0,0-.408-.113.809.809,0,0,0-.411.113l-7.268,4.395a.416.416,0,0,0-.2.36.439.439,0,0,0,.054.207A.422.422,0,0,0,775.866,511.637Z" transform="translate(-564.12 -130.652)" fill="#83869b"/>
198
+ <path id="Path_647" data-name="Path 647" d="M771.422,509.037l7.732,4.474a.924.924,0,0,0,.946,0l7.245-4.383a.4.4,0,0,0,.142-.142.388.388,0,0,0,.054-.193.4.4,0,0,0-.2-.334l-7.837-4.536a.8.8,0,0,0-.819,0l-7.273,4.4a.43.43,0,0,0-.2.363.417.417,0,0,0,.207.354Z" transform="translate(-572.272 -135.423)" fill="#83869b"/>
199
+ <path id="Path_648" data-name="Path 648" d="M766.974,506.435l7.729,4.474a.93.93,0,0,0,.949,0l7.245-4.386a.375.375,0,0,0,.193-.332.4.4,0,0,0-.051-.2.39.39,0,0,0-.142-.139l-7.837-4.536a.819.819,0,0,0-.822,0l-7.265,4.4a.433.433,0,0,0-.15.153.4.4,0,0,0-.054.207.417.417,0,0,0,.054.207A.424.424,0,0,0,766.974,506.435Z" transform="translate(-580.422 -140.189)" fill="#83869b"/>
200
+ <path id="Path_649" data-name="Path 649" d="M762.529,503.838l7.732,4.471a.918.918,0,0,0,.943,0l7.25-4.383a.39.39,0,0,0,.139-.142.386.386,0,0,0,.054-.193.377.377,0,0,0-.054-.193.391.391,0,0,0-.139-.142l-7.84-4.536a.792.792,0,0,0-.408-.113.809.809,0,0,0-.411.113l-7.268,4.395a.426.426,0,0,0-.207.36.423.423,0,0,0,.057.21A.429.429,0,0,0,762.529,503.838Z" transform="translate(-588.576 -144.96)" fill="#83869b"/>
201
+ <path id="Path_650" data-name="Path 650" d="M758.088,501.243l7.732,4.474a.9.9,0,0,0,.944,0l7.248-4.386a.37.37,0,0,0,.142-.139.382.382,0,0,0-.142-.527l-7.831-4.55a.814.814,0,0,0-.819,0l-7.267,4.4a.416.416,0,0,0-.221.366.434.434,0,0,0,.057.213A.4.4,0,0,0,758.088,501.243Z" transform="translate(-596.733 -149.734)" fill="#83869b"/>
202
+ <path id="Path_651" data-name="Path 651" d="M753.638,498.636l7.732,4.468a.944.944,0,0,0,.47.127.955.955,0,0,0,.473-.127l7.248-4.386a.384.384,0,0,0,.193-.334.385.385,0,0,0-.051-.193.38.38,0,0,0-.142-.142l-7.837-4.533a.8.8,0,0,0-.411-.11.786.786,0,0,0-.408.11l-7.268,4.4a.42.42,0,0,0-.21.363.4.4,0,0,0,.057.207A.4.4,0,0,0,753.638,498.636Z" transform="translate(-604.882 -154.497)" fill="#83869b"/>
203
+ <path id="Path_652" data-name="Path 652" d="M749.193,496.032l7.729,4.474a.942.942,0,0,0,.946,0l7.248-4.386a.391.391,0,0,0,.139-.142.389.389,0,0,0,0-.385.413.413,0,0,0-.139-.142l-7.837-4.539a.818.818,0,0,0-.822,0l-7.265,4.4a.4.4,0,0,0-.156.153.411.411,0,0,0,0,.417A.4.4,0,0,0,749.193,496.032Z" transform="translate(-613.037 -159.271)" fill="#83869b"/>
204
+ <path id="Path_653" data-name="Path 653" d="M744.75,493.444l7.732,4.474a.919.919,0,0,0,.944,0l7.25-4.4a.423.423,0,0,0,.139-.145.384.384,0,0,0,0-.382.391.391,0,0,0-.139-.142l-7.84-4.536a.813.813,0,0,0-.819,0l-7.268,4.394a.463.463,0,0,0-.161.153.417.417,0,0,0,.161.584Z" transform="translate(-621.197 -164.037)" fill="#83869b"/>
205
+ <path id="Path_654" data-name="Path 654" d="M974.658,556.8,933.482,533.56,894.342,556.8l41.177,23.248Z" transform="translate(-346.54 -80.881)" fill="#d6d5d4"/>
206
+ <path id="Path_655" data-name="Path 655" d="M894.408,541.765v11.622l41.174,23.245V565.01Z" transform="translate(-346.419 -65.839)" fill="#b2afad"/>
207
+ <path id="Path_656" data-name="Path 656" d="M948.081,541.765l-39.14,23.245v11.622l39.14-23.245Z" transform="translate(-319.775 -65.839)" fill="#bcbbbb"/>
208
+ <path id="Path_657" data-name="Path 657" d="M920.593,469.5l-7.52-4.244-7.146,4.244,7.517,4.244Z" transform="translate(-325.299 -206.107)" fill="#87837f"/>
209
+ <path id="Path_658" data-name="Path 658" d="M905.928,466.753V679.93l7.517,4.244V471Z" transform="translate(-325.299 -203.361)" fill="#b2afad"/>
210
+ <path id="Path_659" data-name="Path 659" d="M915.73,466.753,908.582,471V684.174l7.149-4.244Z" transform="translate(-320.433 -203.361)" fill="#d6d5d4"/>
211
+ <path id="Path_660" data-name="Path 660" d="M982.016,471.808V525.44L916.79,563.424V509.814a34.385,34.385,0,0,0-17.309-29.829,16.274,16.274,0,0,0-15.059-.66L947.2,442.747a16.311,16.311,0,0,1,17.518-.757,34.367,34.367,0,0,1,17.3,29.818Z" transform="translate(-364.726 -252.777)" fill="#e5e4e3"/>
212
+ <path id="Path_661" data-name="Path 661" d="M922.96,485.215v53.61l-41.9-23.99V469.666a16.189,16.189,0,0,1,6.984-13.439l2.539-1.476h.014a16.273,16.273,0,0,1,15.059.66,34.38,34.38,0,0,1,17.309,29.8Z" transform="translate(-370.9 -228.175)" fill="#b2afad"/>
213
+ <path id="Path_662" data-name="Path 662" d="M886.06,453.755l-2.539,1.49A15.2,15.2,0,0,1,886.06,453.755Z" transform="translate(-366.378 -227.19)" fill="#525575"/>
214
+ <path id="Path_663" data-name="Path 663" d="M882.5,477.714l30.2,17.281V488.2l-30.2-17.275Z" transform="translate(-368.254 -195.712)" fill="#87837f"/>
215
+ <path id="Path_664" data-name="Path 664" d="M879.428,475.7l32.292,18.6,10.333-11.755-32.291-18.6Z" transform="translate(-373.882 -208.516)" fill="#e5e4e3"/>
216
+ <path id="Path_665" data-name="Path 665" d="M879.428,468.088l32.292,18.6v5.094l-32.292-18.6Z" transform="translate(-373.882 -200.913)" fill="#adaaa6"/>
217
+ <path id="Path_666" data-name="Path 666" d="M901.157,470.505l-10.333,11.758v5.091l10.333-6.709Z" transform="translate(-352.989 -196.482)" fill="#87837f"/>
218
+ <path id="Path_667" data-name="Path 667" d="M917.2,463.815l-10.959,6.267V467.62l10.959-6.273Z" transform="translate(-324.723 -213.272)" fill="#87837f"/>
219
+ <path id="Path_668" data-name="Path 668" d="M917.2,465.723,906.242,472v-2.468l10.959-6.267Z" transform="translate(-324.723 -209.763)" fill="#87837f"/>
220
+ <path id="Path_669" data-name="Path 669" d="M917.2,467.638l-10.959,6.27v-2.465l10.959-6.27Z" transform="translate(-324.723 -206.257)" fill="#87837f"/>
221
+ <g id="Group_453" data-name="Group 453" transform="translate(510.858 502.449)" opacity="0.25">
222
+ <path id="Path_670" data-name="Path 670" d="M951.077,623.26c38.533,0,69.771-16.147,69.771-36.065s-31.238-36.068-69.771-36.068S881.3,567.276,881.3,587.194,912.541,623.26,951.077,623.26Z" transform="translate(-881.303 -551.126)" fill="#1d2035" opacity="0.04"/>
223
+ <path id="Path_671" data-name="Path 671" d="M949.986,621.824c37.6,0,68.088-15.756,68.088-35.193s-30.484-35.2-68.088-35.2-68.088,15.756-68.088,35.2S912.382,621.824,949.986,621.824Z" transform="translate(-880.212 -550.559)" fill="#1d2035" opacity="0.07"/>
224
+ <path id="Path_672" data-name="Path 672" d="M948.894,620.385c36.675,0,66.4-15.365,66.4-34.323s-29.73-34.323-66.4-34.323-66.4,15.368-66.4,34.323S912.222,620.385,948.894,620.385Z" transform="translate(-879.123 -550.002)" fill="#1d2035" opacity="0.11"/>
225
+ <path id="Path_673" data-name="Path 673" d="M947.8,618.951c35.742,0,64.719-14.977,64.719-33.453s-28.977-33.45-64.719-33.45-64.716,14.977-64.716,33.45S912.062,618.951,947.8,618.951Z" transform="translate(-878.03 -549.436)" fill="#1d2035" opacity="0.15"/>
226
+ <path id="Path_674" data-name="Path 674" d="M946.712,617.517c34.813,0,63.033-14.586,63.033-32.581s-28.22-32.58-63.033-32.58-63.03,14.586-63.03,32.58S911.9,617.517,946.712,617.517Z" transform="translate(-876.941 -548.871)" fill="#1d2035" opacity="0.19"/>
227
+ <path id="Path_675" data-name="Path 675" d="M945.624,616.084c33.881,0,61.347-14.2,61.347-31.711s-27.466-31.711-61.347-31.711-61.347,14.2-61.347,31.711S911.743,616.084,945.624,616.084Z" transform="translate(-875.851 -548.308)" fill="#1d2035" opacity="0.22"/>
228
+ <path id="Path_676" data-name="Path 676" d="M944.532,614.648c32.949,0,59.658-13.807,59.658-30.838s-26.71-30.841-59.658-30.841-59.659,13.807-59.659,30.841S911.583,614.648,944.532,614.648Z" transform="translate(-874.758 -547.747)" fill="#1d2035" opacity="0.26"/>
229
+ <path id="Path_677" data-name="Path 677" d="M943.44,613.216c32.017,0,57.973-13.419,57.973-29.968s-25.956-29.971-57.973-29.971-57.973,13.419-57.973,29.971S911.42,613.216,943.44,613.216Z" transform="translate(-873.669 -547.182)" fill="#1d2035" opacity="0.3"/>
230
+ <path id="Path_678" data-name="Path 678" d="M942.352,611.78c31.084,0,56.287-13.028,56.287-29.1s-25.2-29.1-56.287-29.1-56.29,13.028-56.29,29.1S911.264,611.78,942.352,611.78Z" transform="translate(-872.578 -546.616)" fill="#1d2035" opacity="0.33"/>
231
+ <path id="Path_679" data-name="Path 679" d="M941.262,610.343c30.155,0,54.6-12.637,54.6-28.226s-24.446-28.226-54.6-28.226-54.6,12.637-54.6,28.226S911.1,610.343,941.262,610.343Z" transform="translate(-871.485 -546.055)" fill="#1d2035" opacity="0.37"/>
232
+ <path id="Path_680" data-name="Path 680" d="M940.167,608.91c29.226,0,52.918-12.248,52.918-27.356S969.393,554.2,940.167,554.2s-52.915,12.246-52.915,27.353S910.944,608.91,940.167,608.91Z" transform="translate(-870.396 -545.488)" fill="#1d2035" opacity="0.41"/>
233
+ <path id="Path_681" data-name="Path 681" d="M939.074,607.475c28.294,0,51.229-11.857,51.229-26.483s-22.936-26.483-51.229-26.483-51.227,11.857-51.227,26.483S910.784,607.475,939.074,607.475Z" transform="translate(-869.304 -544.924)" fill="#1d2035" opacity="0.44"/>
234
+ <path id="Path_682" data-name="Path 682" d="M937.987,606.039c27.361,0,49.543-11.467,49.543-25.611s-22.182-25.61-49.543-25.61-49.544,11.467-49.544,25.61S910.625,606.039,937.987,606.039Z" transform="translate(-868.213 -544.357)" fill="#1d2035" opacity="0.48"/>
235
+ <path id="Path_683" data-name="Path 683" d="M936.895,604.6c26.432,0,47.858-11.075,47.858-24.738s-21.426-24.741-47.858-24.741-47.858,11.076-47.858,24.741S910.463,604.6,936.895,604.6Z" transform="translate(-867.124 -543.796)" fill="#1d2035" opacity="0.52"/>
236
+ <path id="Path_684" data-name="Path 684" d="M935.805,603.166c25.5,0,46.172-10.684,46.172-23.868s-20.672-23.868-46.172-23.868-46.172,10.687-46.172,23.868S910.305,603.166,935.805,603.166Z" transform="translate(-866.031 -543.235)" fill="#1d2035" opacity="0.56"/>
237
+ <path id="Path_685" data-name="Path 685" d="M934.715,601.732c24.568,0,44.486-10.3,44.486-23s-19.918-23-44.486-23-44.486,10.3-44.486,23S910.144,601.732,934.715,601.732Z" transform="translate(-864.938 -542.669)" fill="#1d2035" opacity="0.59"/>
238
+ <path id="Path_686" data-name="Path 686" d="M933.625,600.3c23.638,0,42.8-9.905,42.8-22.125s-19.162-22.126-42.8-22.126-42.8,9.905-42.8,22.126S909.986,600.3,933.625,600.3Z" transform="translate(-863.851 -542.104)" fill="#1d2035" opacity="0.63"/>
239
+ <path id="Path_687" data-name="Path 687" d="M932.532,598.86c22.7,0,41.112-9.514,41.112-21.253s-18.408-21.253-41.112-21.253-41.115,9.514-41.115,21.253S909.826,598.86,932.532,598.86Z" transform="translate(-862.759 -541.541)" fill="#1d2035" opacity="0.67"/>
240
+ <path id="Path_688" data-name="Path 688" d="M931.44,597.428c21.777,0,39.428-9.126,39.428-20.383s-17.652-20.383-39.428-20.383-39.426,9.126-39.426,20.383S909.666,597.428,931.44,597.428Z" transform="translate(-861.666 -540.977)" fill="#1d2035" opacity="0.7"/>
241
+ <path id="Path_689" data-name="Path 689" d="M930.35,595.99c20.845,0,37.743-8.735,37.743-19.51s-16.9-19.51-37.743-19.51-37.743,8.735-37.743,19.51S909.5,595.99,930.35,595.99Z" transform="translate(-860.579 -540.414)" fill="#1d2035" opacity="0.74"/>
242
+ <path id="Path_690" data-name="Path 690" d="M929.26,594.553c19.916,0,36.057-8.344,36.057-18.641s-16.142-18.638-36.057-18.638S893.2,565.619,893.2,575.913,909.347,594.553,929.26,594.553Z" transform="translate(-859.486 -539.853)" fill="#1d2035" opacity="0.78"/>
243
+ <path id="Path_691" data-name="Path 691" d="M928.168,593.119c18.983,0,34.371-7.953,34.371-17.768s-15.388-17.768-34.371-17.768S893.8,565.539,893.8,575.351,909.185,593.119,928.168,593.119Z" transform="translate(-858.397 -539.288)" fill="#1d2035" opacity="0.81"/>
244
+ <path id="Path_692" data-name="Path 692" d="M927.078,591.682c18.051,0,32.685-7.562,32.685-16.9s-14.634-16.9-32.685-16.9-32.685,7.565-32.685,16.9S909.027,591.682,927.078,591.682Z" transform="translate(-857.305 -538.722)" fill="#1d2035" opacity="0.85"/>
245
+ <path id="Path_693" data-name="Path 693" d="M925.988,590.249c17.119,0,31-7.177,31-16.025s-13.878-16.025-31-16.025-31,7.174-31,16.025S908.869,590.249,925.988,590.249Z" transform="translate(-856.214 -538.161)" fill="#1d2035" opacity="0.89"/>
246
+ <path id="Path_694" data-name="Path 694" d="M924.9,588.812c16.187,0,29.311-6.786,29.311-15.153s-13.124-15.153-29.311-15.153-29.314,6.783-29.314,15.153S908.708,588.812,924.9,588.812Z" transform="translate(-855.121 -537.594)" fill="#1d2035" opacity="0.93"/>
247
+ <path id="Path_695" data-name="Path 695" d="M923.806,587.378c15.258,0,27.625-6.395,27.625-14.28s-12.367-14.283-27.625-14.283-27.628,6.395-27.628,14.283S908.546,587.378,923.806,587.378Z" transform="translate(-854.032 -537.029)" fill="#1d2035" opacity="0.96"/>
248
+ <path id="Path_696" data-name="Path 696" d="M922.715,585.941c14.328,0,25.945-6,25.945-13.407s-11.617-13.41-25.945-13.41-25.942,6-25.942,13.41S908.39,585.941,922.715,585.941Z" transform="translate(-852.941 -536.463)" fill="#1d2035" opacity="0.25"/>
249
+ </g>
250
+ <path id="Path_697" data-name="Path 697" d="M923.1,669.831l-97.963-54.763,121.111-68.853,97.965,54.763Z" transform="translate(-473.408 -57.678)" fill="#a7abf6"/>
251
+ <path id="Path_698" data-name="Path 698" d="M923.1,667.468l-97.963-54.762,121.111-68.85,97.965,54.763Z" transform="translate(-473.408 -62.007)" fill="#d0d0fa"/>
252
+ <path id="Path_699" data-name="Path 699" d="M980.828,563.184l-121.114,68.85v5.06l121.114-68.853Z" transform="translate(-410.022 -26.57)" fill="#7178e1"/>
253
+ <path id="Path_700" data-name="Path 700" d="M825.141,568.153v5.06L923.1,627.976v-5.058Z" transform="translate(-473.408 -17.461)" fill="#a7abf6"/>
254
+ <path id="Path_701" data-name="Path 701" d="M893.675,594.881l-41.3-23.273,42.469-24.143,41.3,23.273Z" transform="translate(-423.486 -55.389)" fill="#a29afb"/>
255
+ <path id="Path_702" data-name="Path 702" d="M889.926,582.754l-41.307-23.273,2.91-1.652,41.3,23.273Z" transform="translate(-430.365 -36.388)" fill="#42a8a8"/>
256
+ <path id="Path_703" data-name="Path 703" d="M921.344,603.79l-75.389-42.608,2.91-1.652,75.386,42.608Z" transform="translate(-435.249 -33.267)" fill="#a29afb"/>
257
+ <path id="Path_704" data-name="Path 704" d="M918.917,605.349l-75.39-42.6,2.91-1.655L921.823,603.7Z" transform="translate(-439.7 -30.409)" fill="#a29afb"/>
258
+ <path id="Path_705" data-name="Path 705" d="M916.486,606.913,841.1,564.306l2.907-1.655L919.4,605.259Z" transform="translate(-444.15 -27.548)" fill="#a29afb"/>
259
+ <path id="Path_706" data-name="Path 706" d="M914.06,608.47l-75.386-42.6,2.9-1.652,75.389,42.6Z" transform="translate(-448.598 -24.684)" fill="#a29afb"/>
260
+ <path id="Path_707" data-name="Path 707" d="M911.635,610.034l-75.389-42.608,2.91-1.652,75.386,42.608Z" transform="translate(-453.049 -21.822)" fill="#a29afb"/>
261
+ <path id="Path_708" data-name="Path 708" d="M909.206,611.6,833.82,568.99l2.907-1.655,75.386,42.608Z" transform="translate(-457.497 -18.96)" fill="#a29afb"/>
262
+ <path id="Path_709" data-name="Path 709" d="M896.526,597.147,869.98,582.193l42.472-24.146L938.991,573Z" transform="translate(-391.203 -35.988)" fill="#a29afb"/>
263
+ <path id="Path_710" data-name="Path 710" d="M829.893,547.548,932.6,613.12l-.065-150.189L829.828,397.359Z" transform="translate(-464.815 -330.583)" fill="#d573b7"/>
264
+ <path id="Path_711" data-name="Path 711" d="M847.387,444.15l.011,30.693,78.662,50.224-.014-30.693Z" transform="translate(-432.624 -244.799)" fill="#fff"/>
265
+ <path id="Path_712" data-name="Path 712" d="M899.611,455.252l-60.177-37.817a5.153,5.153,0,0,1-2.289-3.811c0-1.3,1.028-1.725,2.286-.935l60.18,37.819a5.143,5.143,0,0,1,2.287,3.808C901.9,455.621,900.878,456.04,899.611,455.252Z" transform="translate(-451.401 -303.207)" fill="#abc8ce"/>
266
+ <path id="Path_713" data-name="Path 713" d="M899.624,460.415,839.438,422.6a5.152,5.152,0,0,1-2.292-3.808c0-1.306,1.031-1.725,2.289-.938l60.174,37.817a5.158,5.158,0,0,1,2.287,3.811C901.91,460.784,900.882,461.206,899.624,460.415Z" transform="translate(-451.399 -293.739)" fill="#abc8ce"/>
267
+ <path id="Path_714" data-name="Path 714" d="M899.626,465.578,839.44,427.761a5.165,5.165,0,0,1-2.292-3.808c0-1.306,1.031-1.728,2.287-.935l60.188,37.816a5.149,5.149,0,0,1,2.286,3.808C901.912,465.949,900.884,466.371,899.626,465.578Z" transform="translate(-451.395 -284.275)" fill="#abc8ce"/>
268
+ <path id="Path_715" data-name="Path 715" d="M899.628,470.743l-60.186-37.817a5.166,5.166,0,0,1-2.292-3.811c0-1.3,1.031-1.725,2.286-.935L899.625,466a5.144,5.144,0,0,1,2.287,3.808C901.914,471.112,900.883,471.531,899.628,470.743Z" transform="translate(-451.392 -274.807)" fill="#abc8ce"/>
269
+ <path id="Path_716" data-name="Path 716" d="M903,490.945l-47.926-30.915a6.407,6.407,0,0,1-2.794-4.7c0-1.6,1.255-2.085,2.791-1.1L903,485.154a6.408,6.408,0,0,1,2.793,4.7C905.791,491.435,904.536,491.934,903,490.945Z" transform="translate(-423.651 -227.244)" fill="#fff"/>
270
+ <g id="Group_454" data-name="Group 454" transform="translate(143.231 300.294)" opacity="0.35">
271
+ <path id="Path_717" data-name="Path 717" d="M974.767,614.578c9.03-15.552-33.345-57.015-94.653-92.61s-118.32-51.842-127.35-36.289,33.346,57.015,94.65,92.608S965.738,630.13,974.767,614.578Z" transform="translate(-751.552 -479.777)" fill="#1d2035" opacity="0.04"/>
272
+ <path id="Path_718" data-name="Path 718" d="M970.328,611.919c8.812-15.175-32.541-55.635-92.364-90.369S762.5,470.96,753.692,486.136s32.541,55.638,92.364,90.372S961.517,627.1,970.328,611.919Z" transform="translate(-749.799 -478.676)" fill="#1d2035" opacity="0.07"/>
273
+ <path id="Path_719" data-name="Path 719" d="M965.893,609.264c8.594-14.8-31.733-54.258-90.077-88.134s-112.6-49.337-121.2-34.536,31.733,54.261,90.077,88.134S957.3,624.066,965.893,609.264Z" transform="translate(-748.044 -477.574)" fill="#1d2035" opacity="0.11"/>
274
+ <path id="Path_720" data-name="Path 720" d="M961.459,606.608c8.375-14.427-30.929-52.884-87.791-85.9s-109.746-48.085-118.122-33.657,30.932,52.881,87.791,85.9S953.084,621.032,961.459,606.608Z" transform="translate(-746.29 -476.476)" fill="#1d2035" opacity="0.15"/>
275
+ <path id="Path_721" data-name="Path 721" d="M957.024,603.949c8.157-14.048-30.124-51.5-85.5-83.66s-106.887-46.832-115.045-32.782,30.124,51.507,85.5,83.66S948.867,618,957.024,603.949Z" transform="translate(-744.535 -475.379)" fill="#1d2035" opacity="0.19"/>
276
+ <path id="Path_722" data-name="Path 722" d="M952.584,601.289c7.939-13.674-29.317-50.127-83.215-81.422s-104.029-45.577-111.968-31.9,29.32,50.127,83.218,81.422S944.645,614.963,952.584,601.289Z" transform="translate(-742.782 -474.28)" fill="#1d2035" opacity="0.22"/>
277
+ <path id="Path_723" data-name="Path 723" d="M948.149,598.635c7.721-13.3-28.512-48.75-80.928-79.186s-101.17-44.325-108.891-31.028,28.512,48.75,80.928,79.186S940.428,611.932,948.149,598.635Z" transform="translate(-741.027 -473.179)" fill="#1d2035" opacity="0.26"/>
278
+ <path id="Path_724" data-name="Path 724" d="M943.715,595.978c7.5-12.923-27.707-47.373-78.642-76.948s-98.311-43.072-105.817-30.15,27.707,47.373,78.645,76.948S936.213,608.9,943.715,595.978Z" transform="translate(-739.273 -472.077)" fill="#1d2035" opacity="0.3"/>
279
+ <path id="Path_725" data-name="Path 725" d="M939.274,593.321c7.284-12.546-26.9-46-76.353-74.709s-95.452-41.82-102.737-29.271,26.9,45.994,76.355,74.709S931.99,605.867,939.274,593.321Z" transform="translate(-737.518 -470.975)" fill="#1d2035" opacity="0.33"/>
280
+ <path id="Path_726" data-name="Path 726" d="M934.839,590.665c7.066-12.172-26.095-44.619-74.069-72.474s-92.59-40.568-99.657-28.4,26.092,44.619,74.066,72.474S927.773,602.834,934.839,590.665Z" transform="translate(-735.763 -469.878)" fill="#1d2035" opacity="0.37"/>
281
+ <path id="Path_727" data-name="Path 727" d="M928.814,587.805c6.82-11.73-25.132-43.03-71.366-69.91S768.2,478.733,761.384,490.46s25.135,43.027,71.369,69.91S922,599.532,928.814,587.805Z" transform="translate(-735.207 -468.338)" fill="#1d2035" opacity="0.41"/>
282
+ <path id="Path_728" data-name="Path 728" d="M925.969,585.35c6.63-11.418-24.483-41.862-69.5-68S769.6,479.29,762.967,490.708s24.486,41.862,69.5,68S919.339,596.769,925.969,585.35Z" transform="translate(-732.256 -467.68)" fill="#1d2035" opacity="0.44"/>
283
+ <path id="Path_729" data-name="Path 729" d="M919.989,582.51c6.384-10.982-23.531-40.284-66.818-65.453s-83.558-36.666-89.941-25.684,23.531,40.284,66.819,65.453S913.6,593.492,919.989,582.51Z" transform="translate(-731.717 -466.149)" fill="#1d2035" opacity="0.48"/>
284
+ <path id="Path_730" data-name="Path 730" d="M917.1,580.034c6.194-10.667-22.874-39.106-64.92-63.521s-81.158-35.558-87.352-24.891,22.873,39.109,64.923,63.521S910.9,590.7,917.1,580.034Z" transform="translate(-728.745 -465.481)" fill="#1d2035" opacity="0.52"/>
285
+ <path id="Path_731" data-name="Path 731" d="M912.658,577.38c5.976-10.293-22.066-37.729-62.634-61.285s-78.3-34.306-84.274-24.013,22.066,37.729,62.634,61.282S906.683,587.671,912.658,577.38Z" transform="translate(-726.993 -464.379)" fill="#1d2035" opacity="0.56"/>
286
+ <path id="Path_732" data-name="Path 732" d="M908.221,574.722c5.757-9.917-21.261-36.352-60.344-59.047s-75.44-33.051-81.2-23.134,21.261,36.349,60.347,59.044S902.464,584.636,908.221,574.722Z" transform="translate(-725.236 -463.276)" fill="#1d2035" opacity="0.59"/>
287
+ <path id="Path_733" data-name="Path 733" d="M903.786,572.065c5.539-9.54-20.454-34.975-58.061-56.808s-72.579-31.8-78.118-22.259,20.454,34.975,58.061,56.808S898.246,581.605,903.786,572.065Z" transform="translate(-723.481 -462.175)" fill="#1d2035" opacity="0.63"/>
288
+ <path id="Path_734" data-name="Path 734" d="M899.35,569.409c5.321-9.166-19.649-33.6-55.774-54.573s-69.72-30.546-75.044-21.38,19.652,33.595,55.774,54.57S894.029,578.575,899.35,569.409Z" transform="translate(-721.731 -461.077)" fill="#1d2035" opacity="0.67"/>
289
+ <path id="Path_735" data-name="Path 735" d="M894.915,566.753c5.1-8.792-18.844-32.221-53.488-52.334s-66.864-29.3-71.967-20.508,18.844,32.221,53.488,52.335S889.812,575.542,894.915,566.753Z" transform="translate(-719.976 -459.98)" fill="#1d2035" opacity="0.7"/>
290
+ <path id="Path_736" data-name="Path 736" d="M890.476,564.091c4.885-8.412-18.037-30.841-51.2-50.1s-64-28.042-68.887-19.627,18.037,30.841,51.2,50.1S885.591,572.506,890.476,564.091Z" transform="translate(-718.218 -458.881)" fill="#1d2035" opacity="0.74"/>
291
+ <path id="Path_737" data-name="Path 737" d="M886.039,561.435c4.667-8.038-17.232-29.464-48.912-47.858s-61.146-26.789-65.81-18.754,17.232,29.464,48.912,47.858S881.373,569.471,886.039,561.435Z" transform="translate(-716.464 -457.781)" fill="#1d2035" opacity="0.78"/>
292
+ <path id="Path_738" data-name="Path 738" d="M881.606,558.778c4.448-7.658-16.428-28.084-46.625-45.62s-58.287-25.537-62.736-17.875,16.428,28.084,46.628,45.62S877.157,566.439,881.606,558.778Z" transform="translate(-714.711 -456.679)" fill="#1d2035" opacity="0.81"/>
293
+ <path id="Path_739" data-name="Path 739" d="M877.17,556.122c4.23-7.285-15.623-26.707-44.339-43.381s-55.429-24.287-59.659-17,15.62,26.71,44.339,43.384S872.94,563.407,877.17,556.122Z" transform="translate(-712.956 -455.582)" fill="#1d2035" opacity="0.85"/>
294
+ <path id="Path_740" data-name="Path 740" d="M872.731,553.465c4.012-6.911-14.815-25.33-42.052-41.146S778.111,489.287,774.1,496.2s14.815,25.33,42.052,41.143S868.719,560.373,872.731,553.465Z" transform="translate(-711.202 -454.48)" fill="#1d2035" opacity="0.89"/>
295
+ <path id="Path_741" data-name="Path 741" d="M868.3,550.806c3.794-6.534-14.011-23.953-39.766-38.907s-49.708-21.78-53.5-15.243,14.008,23.953,39.766,38.9S864.5,557.339,868.3,550.806Z" transform="translate(-709.447 -453.382)" fill="#1d2035" opacity="0.93"/>
296
+ <path id="Path_742" data-name="Path 742" d="M863.862,548.153c3.576-6.157-13.2-22.576-37.479-36.669s-46.852-20.528-50.428-14.371,13.206,22.576,37.479,36.672S860.286,554.313,863.862,548.153Z" transform="translate(-707.694 -452.277)" fill="#1d2035" opacity="0.96"/>
297
+ <path id="Path_743" data-name="Path 743" d="M859.42,545.494c3.357-5.783-12.4-21.2-35.19-34.433s-43.99-19.272-47.348-13.49,12.4,21.2,35.19,34.431S856.063,551.277,859.42,545.494Z" transform="translate(-705.939 -451.178)" fill="#1d2035" opacity="0.35"/>
298
+ </g>
299
+ <path id="Path_744" data-name="Path 744" d="M763.885,432.106V565.112a10.872,10.872,0,0,0,5.42,9.412L943.977,675.739c.581.328-.558,4.032.042,4.136,3.519.748,16.785-10.361,16.785-14.237V534a15.54,15.54,0,0,0-1.553-6.825l-15.274,9.486a15.679,15.679,0,0,0-6.075-6.321L767,431.29a6.512,6.512,0,0,0-2.887-.912A6.47,6.47,0,0,0,763.885,432.106Z" transform="translate(-585.711 -270.048)" fill="#ea7c32"/>
300
+ <path id="Path_745" data-name="Path 745" d="M767.571,419.622c-.731-.49-1.045-.748-.909-.748C767.013,418.874,767.316,419.146,767.571,419.622Z" transform="translate(-580.676 -291.139)" fill="#83869b"/>
301
+ <path id="Path_746" data-name="Path 746" d="M961.07,574a15.26,15.26,0,0,0-.734-1.354L890.492,414.624a16.428,16.428,0,0,0-24.25-6.964l-89.31,60.514a7.027,7.027,0,0,0-.946.68v13.41l-7.157-4.134a6.732,6.732,0,0,0-5.941-.417l76.826,125.109L945.807,583.5l15.266-9.5Z" transform="translate(-587.54 -316.888)" fill="#d86d25"/>
302
+ <path id="Path_747" data-name="Path 747" d="M762.676,436.557l13.693-9.129V457.6Z" transform="translate(-587.927 -275.456)" fill="#ea7c32"/>
303
+ <path id="Path_748" data-name="Path 748" d="M774.178,403.341l135.816,76.03a9.513,9.513,0,0,1,4.777,6.942V681.288a5.919,5.919,0,0,1-8.984,5.069L775.8,613.605A13.245,13.245,0,0,1,769,602.133l.255-195.506A3.278,3.278,0,0,1,774.178,403.341Z" transform="translate(-576.341 -320.443)" fill="#fff"/>
304
+ <path id="Path_749" data-name="Path 749" d="M819.259,445.611l-41.191-22.6a.911.911,0,0,1-.312-.295.928.928,0,0,1-.142-.4V419.5c0-.249.2-.34.453-.2l41.191,22.6a.912.912,0,0,1,.312.295.9.9,0,0,1,.142.405v2.819C819.716,445.659,819.511,445.75,819.259,445.611Z" transform="translate(-560.539 -290.489)" fill="#d8d8d8"/>
305
+ <path id="Path_750" data-name="Path 750" d="M839.1,510.823l-37.476-20.712a.9.9,0,0,1-.453-.7V435.7c0-.249.2-.34.453-.2L839.1,456.208a.93.93,0,0,1,.309.295.9.9,0,0,1,.142.405v53.712C839.554,510.868,839.353,510.959,839.1,510.823Z" transform="translate(-517.348 -260.776)" fill="#d8d8d8"/>
306
+ <path id="Path_751" data-name="Path 751" d="M834.987,458.247l-56.919-30.83a.911.911,0,0,1-.312-.295.94.94,0,0,1-.142-.4v-2.813c0-.249.2-.34.453-.2l56.919,30.821a.9.9,0,0,1,.309.295.894.894,0,0,1,.142.4v2.822C835.438,458.289,835.234,458.383,834.987,458.247Z" transform="translate(-560.539 -282.402)" fill="#d8d8d8"/>
307
+ <path id="Path_752" data-name="Path 752" d="M834.987,462.661l-56.919-30.829a.909.909,0,0,1-.453-.7v-2.822c0-.249.2-.34.453-.207l56.919,30.847a.961.961,0,0,1,.309.295.9.9,0,0,1,.142.405v2.819C835.438,462.7,835.234,462.8,834.987,462.661Z" transform="translate(-560.539 -274.326)" fill="#d8d8d8"/>
308
+ <path id="Path_753" data-name="Path 753" d="M834.987,467.068l-56.919-30.832a.894.894,0,0,1-.309-.292.942.942,0,0,1-.145-.4v-2.822c0-.249.2-.34.453-.207l56.919,30.832a.922.922,0,0,1,.309.292.981.981,0,0,1,.142.4v2.822C835.438,467.11,835.234,467.2,834.987,467.068Z" transform="translate(-560.539 -266.247)" fill="#d8d8d8"/>
309
+ <path id="Path_754" data-name="Path 754" d="M834.987,471.477l-56.919-30.832a.9.9,0,0,1-.453-.7v-2.822c0-.244.2-.34.453-.2l56.919,30.827a.933.933,0,0,1,.309.295.906.906,0,0,1,.142.405v2.819C835.438,471.519,835.234,471.61,834.987,471.477Z" transform="translate(-560.539 -258.164)" fill="#d8d8d8"/>
310
+ <path id="Path_755" data-name="Path 755" d="M834.987,475.884l-56.919-30.829a.909.909,0,0,1-.453-.7v-2.822c0-.246.2-.34.453-.2l56.919,30.829a.915.915,0,0,1,.45.7v2.822C835.438,475.929,835.234,476.009,834.987,475.884Z" transform="translate(-560.539 -250.081)" fill="#d8d8d8"/>
311
+ <path id="Path_756" data-name="Path 756" d="M819.259,479.473l-41.191-22.6a.911.911,0,0,1-.312-.295.928.928,0,0,1-.142-.4v-2.822c0-.246.2-.34.453-.2l41.191,22.6a.91.91,0,0,1,.312.295.9.9,0,0,1,.142.405v2.819C819.716,479.536,819.511,479.609,819.259,479.473Z" transform="translate(-560.539 -228.406)" fill="#d8d8d8"/>
312
+ <path id="Path_757" data-name="Path 757" d="M834.987,492.1l-56.919-30.815a.91.91,0,0,1-.312-.295.941.941,0,0,1-.142-.4v-2.822c0-.247.2-.34.453-.2l56.919,30.829a.9.9,0,0,1,.309.295.894.894,0,0,1,.142.4v2.822C835.438,492.161,835.234,492.252,834.987,492.1Z" transform="translate(-560.539 -220.323)" fill="#d8d8d8"/>
313
+ <path id="Path_758" data-name="Path 758" d="M834.987,496.523l-56.919-30.83a.911.911,0,0,1-.312-.295.941.941,0,0,1-.142-.4v-2.822c0-.249.2-.34.453-.2L834.987,492.8a.9.9,0,0,1,.309.295.9.9,0,0,1,.142.4v2.822C835.438,496.569,835.234,496.659,834.987,496.523Z" transform="translate(-560.539 -212.244)" fill="#d8d8d8"/>
314
+ <path id="Path_759" data-name="Path 759" d="M834.987,500.929,778.068,470.1a.912.912,0,0,1-.312-.295.94.94,0,0,1-.142-.405v-2.819c0-.249.2-.34.453-.2L834.987,497.2a.932.932,0,0,1,.309.295.906.906,0,0,1,.142.405v2.819C835.438,500.978,835.234,501.068,834.987,500.929Z" transform="translate(-560.539 -204.161)" fill="#d8d8d8"/>
315
+ <path id="Path_760" data-name="Path 760" d="M950.376,543.724V675.349a7.4,7.4,0,0,1-.048.748,5.92,5.92,0,0,1-8.832,4.369L766.813,579.248a10.883,10.883,0,0,1-5.42-9.412V436.831a6.615,6.615,0,0,1,1.516-4.253v-.02a6.778,6.778,0,0,1,2.672-1.983l.045-.023,76.826,125.111,106.094-19.315A15.83,15.83,0,0,1,950.376,543.724Z" transform="translate(-590.279 -269.729)" fill="#ffac73"/>
316
+ <path id="Path_761" data-name="Path 761" d="M728.758,395.944s3.037,1.332,18.094,13.263,40.279,28.917,40.279,28.917l47.606,21.188s-4.582-.694-6.157,7.84c-1.031,5.573.671,8.6.671,8.6l-57-17.133-41.219-27.163Z" transform="translate(-650.11 -333.177)" fill="#5e00ff"/>
317
+ <path id="Path_762" data-name="Path 762" d="M743.381,485s4.658,9.163,13.574,12.367,6.967,5.434.7,8.361-12.682-2.785-19.51-4.6-12.96-1.116-14.215-6.548a20.316,20.316,0,0,1,0-9.582Z" transform="translate(-659.99 -169.9)" fill="#1d2035"/>
318
+ <path id="Path_763" data-name="Path 763" d="M732.7,491.969s3.241,6.593,9.934,9.109,13.282,8.5,5.805,12.127-11.387-2.938-19.187-5.315-14.629-2.507-16.861-6.828,1.252-9.109,1.252-9.109Z" transform="translate(-681.482 -157.162)" fill="#1d2035"/>
319
+ <path id="Path_764" data-name="Path 764" d="M755.894,431.557s5.364,70.482,4.678,87.553-6.007,19.7-6.536,38.443S752.874,583,752.874,583s-1.4,4.111-8.384,4.431a24.717,24.717,0,0,1-11.753-2.216s-4.763-25.092-3.494-40.021,5.083-22.551,5.083-22.551l-16.136-70.831Z" transform="translate(-669.483 -267.887)" fill="#fff"/>
320
+ <path id="Path_765" data-name="Path 765" d="M756.8,445.4l-12.161,79.719a112.206,112.206,0,0,0-5.771,30.144c-.688,16.258,0,39.624,0,39.624a15.419,15.419,0,0,1-13.546,5.08c-8.806-1.014-9.483-5.08-9.483-5.08s-4.063-10.838-3.037-36.578,5.771-38.947,5.771-38.947-.329-31.447-5.922-44.849-4.236-38.7-4.236-38.7Z" transform="translate(-687.665 -260.08)" fill="#fff"/>
321
+ <path id="Path_766" data-name="Path 766" d="M774.384,396.684c-6.27-5.576-50.408,10.684-61.789,18.827s-11.144,27.415-2.085,52.717,3.329,45.146,3.329,45.146,21.763,13.835,42.9,11.325,25.321-22.689,25.321-22.689,1.856-86.754,0-94.424A17.746,17.746,0,0,0,774.384,396.684Z" transform="translate(-695.736 -333.911)" fill="#705fdf"/>
322
+ <path id="Path_767" data-name="Path 767" d="M748.662,384.274s3.341,13.41,3.287,18.221-2.9,18.986-5.531,21.06-6.639,1.779-6.639,1.779l1.479,8.455s1.111,5.933-9.307,8.307-17.83-8.789-17.83-8.789a46.04,46.04,0,0,0,.042-16.867c-1.779-8.251-3.672-29.113,4.709-33.8S748.662,384.274,748.662,384.274Z" transform="translate(-679.676 -360.734)" fill="#ffbdbd"/>
323
+ <path id="Path_768" data-name="Path 768" d="M749.545,398.929c-10.407,2.952-16.2.728-16.2.728s3.476,4.137.875,7.253.433,13.756-1.108,14.045-2.734-9.554-7.35-8.647-2.754,3.309-1.606,7.027,2.652,5.987-.83,7.633-13.13-7.177-14.881-17.309,4.21-14.512,4.21-14.512-5.012-12.532,13.594-15.13,26.163.527,30.733-3.7S771.059,392.831,749.545,398.929Z" transform="translate(-687.948 -370.202)" fill="#e58800"/>
324
+ <path id="Path_769" data-name="Path 769" d="M731.7,400.443s-6.616.839-10.041-2.207-4.46-3.853-4.46-3.853a33.208,33.208,0,0,0,5.633,8.1c3.819,4.063,2.825,14.345,2.825,14.345s7.834-1.533,7.239-6.457S731.7,400.443,731.7,400.443Z" transform="translate(-671.309 -336.039)" fill="#eaa2a2"/>
325
+ <path id="Path_770" data-name="Path 770" d="M730.589,432.965s7.562,1.122,11.129-1.621,11.373-3.7,11.373-3.7a6.688,6.688,0,0,1-3.7,3.975c-3.015,1.368-3.426,2.862,3.7,3.136s13.569-1.1,10.279,4.933-14.663,6.854-20.695,6.718-16.156-2.34-16.156-2.34S726.722,435.94,730.589,432.965Z" transform="translate(-654.211 -275.06)" fill="#ffbdbd"/>
326
+ <path id="Path_771" data-name="Path 771" d="M715.375,404.975c-8.6-2.048-15.11,7.769-11.724,25.534s10.5,48.569,10.5,48.569l57.341,12a33.38,33.38,0,0,1,.884-10.52,12.578,12.578,0,0,1,4.647-6.944s-41.48-7.752-44.285-12.631S730,408.457,715.375,404.975Z" transform="translate(-697.814 -317.111)" fill="#5e00ff"/>
327
+ <path id="Path_772" data-name="Path 772" d="M771.575,393.882l77.361,43.293a5.925,5.925,0,0,1,2.975,4.321V562.908a3.688,3.688,0,0,1-5.6,3.159l-73.732-41.259a8.236,8.236,0,0,1-4.25-7.143l.159-121.743a2.037,2.037,0,0,1,.15-1.13,2.015,2.015,0,0,1,.74-.873,2.031,2.031,0,0,1,2.193-.037Z" transform="translate(-577.554 -337.513)" fill="#fff"/>
328
+ <path id="Path_773" data-name="Path 773" d="M797.931,419.7l-25.65-14.073a.6.6,0,0,1-.2-.181.583.583,0,0,1-.088-.252v-1.76c0-.153.127-.21.283-.128l25.65,14.073a.534.534,0,0,1,.193.181.575.575,0,0,1,.091.252v1.76C798.215,419.72,798.087,419.779,797.931,419.7Z" transform="translate(-570.837 -319.754)" fill="#a29afb" opacity="0.36"/>
329
+ <path id="Path_774" data-name="Path 774" d="M810.286,460.3l-23.338-12.894a.546.546,0,0,1-.193-.184.539.539,0,0,1-.088-.252V413.527c0-.156.125-.213.281-.127l23.338,12.9a.54.54,0,0,1,.193.181.577.577,0,0,1,.088.252v33.448C810.561,460.331,810.443,460.388,810.286,460.3Z" transform="translate(-543.942 -301.248)" fill="#a29afb" opacity="0.36"/>
330
+ <path id="Path_775" data-name="Path 775" d="M807.721,427.567l-35.439-19.2a.577.577,0,0,1-.2-.184.56.56,0,0,1-.088-.249v-1.76c0-.153.127-.21.283-.125l35.439,19.2a.6.6,0,0,1,.2.181.583.583,0,0,1,.088.252v1.76C808,427.592,807.876,427.652,807.721,427.567Z" transform="translate(-570.837 -314.721)" fill="#a29afb" opacity="0.36"/>
331
+ <path id="Path_776" data-name="Path 776" d="M807.721,430.309l-35.439-19.2a.579.579,0,0,1-.2-.184.571.571,0,0,1-.088-.252v-1.754c0-.156.127-.213.283-.127l35.439,19.193a.57.57,0,0,1,.193.184.55.55,0,0,1,.088.249v1.754C808,430.337,807.876,430.394,807.721,430.309Z" transform="translate(-570.837 -309.688)" fill="#a29afb" opacity="0.36"/>
332
+ <path id="Path_777" data-name="Path 777" d="M807.721,433.056l-35.439-19.2a.576.576,0,0,1-.2-.184.57.57,0,0,1-.088-.252V411.67c0-.156.127-.213.283-.127l35.439,19.2a.555.555,0,0,1,.2.184.571.571,0,0,1,.088.252v1.754C808,433.084,807.876,433.141,807.721,433.056Z" transform="translate(-570.837 -304.652)" fill="#a29afb" opacity="0.36"/>
333
+ <path id="Path_778" data-name="Path 778" d="M807.721,435.8l-35.439-19.2a.552.552,0,0,1-.283-.434v-1.76c0-.153.127-.212.283-.127l35.439,19.2a.578.578,0,0,1,.2.184.559.559,0,0,1,.088.249v1.754C808,435.832,807.876,435.888,807.721,435.8Z" transform="translate(-570.837 -299.625)" fill="#a29afb" opacity="0.36"/>
334
+ <path id="Path_779" data-name="Path 779" d="M807.721,438.545l-35.439-19.2a.571.571,0,0,1-.2-.181.583.583,0,0,1-.088-.252v-1.757c0-.153.127-.213.283-.127l35.439,19.2a.6.6,0,0,1,.2.181.583.583,0,0,1,.088.252v1.757C808,438.571,807.876,438.63,807.721,438.545Z" transform="translate(-570.837 -294.592)" fill="#a29afb" opacity="0.36"/>
335
+ <path id="Path_780" data-name="Path 780" d="M797.931,440.782l-25.65-14.07a.563.563,0,0,1-.283-.436v-1.754c0-.156.127-.212.283-.127l25.65,14.068a.543.543,0,0,1,.193.184.561.561,0,0,1,.091.252v1.757C798.215,440.821,798.087,440.867,797.931,440.782Z" transform="translate(-570.837 -281.092)" fill="#a29afb" opacity="0.36"/>
336
+ <path id="Path_781" data-name="Path 781" d="M807.721,448.652l-35.439-19.2a.542.542,0,0,1-.2-.181.571.571,0,0,1-.088-.252v-1.754c0-.156.127-.212.283-.127l35.439,19.2a.562.562,0,0,1,.283.436v1.754C808,448.68,807.876,448.737,807.721,448.652Z" transform="translate(-570.837 -276.059)" fill="#a29afb" opacity="0.36"/>
337
+ <path id="Path_782" data-name="Path 782" d="M807.721,451.407,772.281,432.2a.545.545,0,0,1-.2-.181.57.57,0,0,1-.088-.252V430.01c0-.153.127-.213.283-.128l35.439,19.2a.579.579,0,0,1,.2.184.56.56,0,0,1,.088.249v1.757C808,451.424,807.876,451.483,807.721,451.407Z" transform="translate(-570.837 -271.028)" fill="#a29afb" opacity="0.36"/>
338
+ <path id="Path_783" data-name="Path 783" d="M807.721,454.144l-35.439-19.2a.572.572,0,0,1-.2-.181.583.583,0,0,1-.088-.252v-1.757c0-.153.127-.213.283-.128l35.439,19.213a.578.578,0,0,1,.2.184.558.558,0,0,1,.088.252v1.754C808,454.169,807.876,454.229,807.721,454.144Z" transform="translate(-570.837 -265.996)" fill="#a29afb" opacity="0.36"/>
339
+ <path id="Path_784" data-name="Path 784" d="M767.22,418.8s9.177.547,12.753,3.428,5.015,4.312,5.015,4.312.428,2.867-3.437,1.147l-3.87-1.72-.462,12.5-12.878-6.681S761.913,423.937,767.22,418.8Z" transform="translate(-585.89 -291.269)" fill="#ffbdbd"/>
340
+ </g>
341
+ </g>
342
+ </svg>
js/iris-script.js CHANGED
@@ -10,7 +10,56 @@
10
  factory(jQuery);
11
  }
12
  }(function ($, undefined) {
13
- var priceOptions = {"50_websites":{"1_year":{"price":79,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=3"},"2_year":{"price":125,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=15"},"lifetime":{"price":199,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=9"}},"500_websites":{"1_year":{"price":139,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=16"},"2_year":{"price":225,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=17"},"lifetime":{"price":359,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=18"}},"1000_websites":{"1_year":{"price":199,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=19"},"2_year":{"price":315,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=20"},"lifetime":{"price":499,"link":"https:\/\/go.premio.io\/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=21"}}};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  $(document).ready(function($){
15
  $('.my-color-field').wpColorPicker();
16
  $(document).on('click', '.sticky-header-upgrade-now', function(e){
@@ -41,10 +90,15 @@
41
  minimumResultsForSearch: -1
42
  });
43
  }
 
 
44
  $(document).on("change", ".multiple-options", function(){
 
45
  priceText = $(this).find("option:selected").attr("data-header");
46
  thisValue = $(this).val();
47
  thisPrice = $(this).find("option:selected").attr("data-price");
 
 
48
  if(!$(this).hasClass("has-multiple-websites")) {
49
  $(this).closest(".price-table").find("a.cart-link").attr("href", thisValue);
50
  $(this).closest(".price-table").find(".plan-price").text("$" + thisPrice);
@@ -52,26 +106,40 @@
52
  var webOption = $(".multiple-web-options").val();
53
  var priceSettings = priceOptions[webOption];
54
  var yearPlan = $(".multiple-options.has-multiple-websites option:selected").attr("data-option");
55
- if(priceSettings[yearPlan] != undefined) {
 
56
  priceSettings = priceSettings[yearPlan];
57
  thisValue = priceSettings.link;
58
  thisPrice = priceSettings.price;
 
59
  }
60
  }
61
  thisOption = $(this).find("option:selected").attr("data-option");
62
  if(thisOption == "1_year") {
63
  thisPrice = thisPrice+"<span>/year</span>";
 
64
  priceText = "Renewals for <b>25% off</b>";
65
  } else if(thisOption == "2_year") {
66
  thisPrice = thisPrice+"<span>/2 years</span>";
 
67
  priceText = "Renewals for <b>25% off</b>";
68
  } else {
69
  thisPrice = thisPrice+"<span>/lifetime</span>";
 
70
  priceText = "For lifetime";
71
  }
 
72
  $(this).closest(".price-table").find("a.cart-link").attr("href", thisValue);
73
  $(this).closest(".price-table").find(".plan-price").html("$" + thisPrice);
74
  $(this).closest(".price-table").find(".price-offer").html(priceText);
 
 
 
 
 
 
 
 
75
  });
76
 
77
  $(document).on("change", ".multiple-web-options", function(){
10
  factory(jQuery);
11
  }
12
  }(function ($, undefined) {
13
+ var priceOptions = {
14
+ "50_websites": {
15
+ "1_year": {
16
+ "price": 99,
17
+ "per_month":8.5,
18
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=28"
19
+ },
20
+ "2_year": {
21
+ "price": 149,
22
+ "per_month":6.5,
23
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=29"
24
+ },
25
+ "lifetime": {
26
+ "price": 249,
27
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=30"
28
+ }
29
+ },
30
+ "500_websites": {
31
+ "1_year": {
32
+ "price": 179,
33
+ "per_month":15,
34
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=31"
35
+ },
36
+ "2_year": {
37
+ "price": 269,
38
+ "per_month":11.5,
39
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=32"
40
+ },
41
+ "lifetime": {
42
+ "price": 499,
43
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=33"
44
+ }
45
+ },
46
+ "1000_websites": {
47
+ "1_year": {
48
+ "price": 249,
49
+ "per_month":21,
50
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=34"
51
+ },
52
+ "2_year": {
53
+ "price": 375,
54
+ "per_month":16,
55
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=35"
56
+ },
57
+ "lifetime": {
58
+ "price": 619,
59
+ "link": "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=36"
60
+ }
61
+ }
62
+ };
63
  $(document).ready(function($){
64
  $('.my-color-field').wpColorPicker();
65
  $(document).on('click', '.sticky-header-upgrade-now', function(e){
90
  minimumResultsForSearch: -1
91
  });
92
  }
93
+
94
+
95
  $(document).on("change", ".multiple-options", function(){
96
+
97
  priceText = $(this).find("option:selected").attr("data-header");
98
  thisValue = $(this).val();
99
  thisPrice = $(this).find("option:selected").attr("data-price");
100
+ thisperMonth = $(this).find("option:selected").attr("data-per-month");
101
+ console.log("thisperMonth == " + thisperMonth);
102
  if(!$(this).hasClass("has-multiple-websites")) {
103
  $(this).closest(".price-table").find("a.cart-link").attr("href", thisValue);
104
  $(this).closest(".price-table").find(".plan-price").text("$" + thisPrice);
106
  var webOption = $(".multiple-web-options").val();
107
  var priceSettings = priceOptions[webOption];
108
  var yearPlan = $(".multiple-options.has-multiple-websites option:selected").attr("data-option");
109
+
110
+ if(priceSettings[yearPlan] != undefined) {
111
  priceSettings = priceSettings[yearPlan];
112
  thisValue = priceSettings.link;
113
  thisPrice = priceSettings.price;
114
+ thisperMonth = priceSettings.per_month;
115
  }
116
  }
117
  thisOption = $(this).find("option:selected").attr("data-option");
118
  if(thisOption == "1_year") {
119
  thisPrice = thisPrice+"<span>/year</span>";
120
+ per_month = "Less than <b>$" + thisperMonth + "</b>/mo · <b>Billed Annually</b>";
121
  priceText = "Renewals for <b>25% off</b>";
122
  } else if(thisOption == "2_year") {
123
  thisPrice = thisPrice+"<span>/2 years</span>";
124
+ per_month = "Less than <b>$" + thisperMonth + "</b>/mo · <b>Billed Annually</b>";
125
  priceText = "Renewals for <b>25% off</b>";
126
  } else {
127
  thisPrice = thisPrice+"<span>/lifetime</span>";
128
+ per_month = "<b>Best value</b>";
129
  priceText = "For lifetime";
130
  }
131
+
132
  $(this).closest(".price-table").find("a.cart-link").attr("href", thisValue);
133
  $(this).closest(".price-table").find(".plan-price").html("$" + thisPrice);
134
  $(this).closest(".price-table").find(".price-offer").html(priceText);
135
+ $(this).closest(".price-table").find(".price-permonth").html(per_month);
136
+
137
+ if ( per_month == '' ) {
138
+ $(this).closest(".price-table").find(".price-permonth").hide();
139
+ } else {
140
+ $(this).closest(".price-table").find(".price-permonth").show();
141
+ }
142
+
143
  });
144
 
145
  $(document).on("change", ".multiple-web-options", function(){
js/mystickymenu-admin.js CHANGED
@@ -1,421 +1,725 @@
1
- (function( $ ) {
2
- "use strict";
3
-
4
- jQuery(document).ready(function($){
5
-
6
- $(document).on("click", ".updates-form button", function(){
7
- var updateStatus = 0;
8
- if($(this).hasClass("yes")) {
9
- updateStatus = 1;
10
- }
11
- $(".updates-form button").attr("disabled", true);
12
- $.ajax({
13
- url: ajaxurl,
14
- data: "action=sticky_menu_update_status&status="+updateStatus+"&nonce="+$("#myStickymenu_update_nonce").val()+"&email="+$("#myStickymenu_update_email").val(),
15
- type: 'post',
16
- cache: false,
17
- success: function(){
18
- window.location.reload();
19
- }
20
- })
21
- });
22
-
23
- var handle = $( "#custom-handle" );
24
- $( "#slider" ).slider({
25
- create: function() {
26
- handle.text( $( this ).slider( "value" ) );
27
- handle.text( $('#myfixed_opacity').val() );
28
- handle.css('left', $('#myfixed_opacity').val() + '%')
29
- },
30
- slide: function( event, ui ) {
31
- $('#myfixed_opacity').val(ui.value);
32
- handle.text( ui.value );
33
- }
34
- });
35
- jQuery(
36
- '<div class="pt_number"><div class="pt_numberbutton pt_numberup">+</div><div class="pt_numberbutton pt_numberdown">-</div></div>'
37
- ).insertAfter("input.mysticky-number1");
38
-
39
- jQuery(".mystickynumber1").each(function() {
40
-
41
- var spinner = jQuery(this),
42
- input = spinner.find('input[type="number"]'),
43
- btnUp = spinner.find(".pt_numberup"),
44
- btnDown = spinner.find(".pt_numberdown"),
45
- min = input.attr("min"),
46
- max = input.attr("max"),
47
- valOfAmout = input.val(),
48
- newVal = 0;
49
-
50
- btnUp.on("click", function() {
51
-
52
- var oldValue = parseFloat(input.val());
53
-
54
- if (oldValue >= max) {
55
- var newVal = oldValue;
56
- } else {
57
- var newVal = oldValue + 1;
58
- }
59
- spinner.find("input").val(newVal);
60
- spinner.find("input").trigger("change");
61
- console.log(newVal);
62
- });
63
- btnDown.on("click", function() {
64
- var oldValue = parseFloat(input.val());
65
- if (oldValue <= min) {
66
- var newVal = oldValue;
67
- } else {
68
- var newVal = oldValue - 1;
69
- }
70
- spinner.find("input").val(newVal);
71
- spinner.find("input").trigger("change");
72
- });
73
- });
74
-
75
-
76
- $(".confirm").on( 'click', function() {
77
- return window.confirm("Reset to default settings?");
78
- });
79
-
80
- var flag = 0;
81
- $( "#mystickymenu-select option" ).each(function( i ) {
82
-
83
- if ($('select#mystickymenu-select option:selected').val() !== '' ) {
84
- flag = 1;
85
- }
86
- if( $('select#mystickymenu-select option:selected').val() == $(this).val() ){
87
- $('#mysticky_class_selector').show();
88
- }else {
89
- $('#mysticky_class_selector').hide();
90
- }
91
- });
92
- if ( flag === 0 ) {
93
- $('#mysticky_class_selector').show();
94
- $("select#mystickymenu-select option[value=custom]").attr('selected', 'selected');
95
- }
96
-
97
- $("#mystickymenu-select").on( 'change', function() {
98
- if ($(this).val() == 'custom' ) {
99
- $('#mysticky_class_selector').show();
100
- }else {
101
- $('#mysticky_class_selector').hide();
102
- }
103
-
104
- });
105
- /*02-08-2019 welcom bar js*/
106
- $( '.mysticky-welcomebar-action' ).on( 'change', function(){
107
- var mysticky_welcomebar_action = $( this ).val();
108
- if ( mysticky_welcomebar_action == 'redirect_to_url' ) {
109
- $( '.mysticky-welcomebar-redirect' ).show();
110
- $( '.mysticky-welcomebar-redirect-container' ).show();
111
- } else {
112
- $( '.mysticky-welcomebar-redirect' ).hide();
113
- $( '.mysticky-welcomebar-redirect-container' ).hide();
114
- }
115
- if ( mysticky_welcomebar_action == 'poptin_popup' ) {
116
- $( '.mysticky-welcomebar-poptin-popup' ).show();
117
- } else {
118
- $( '.mysticky-welcomebar-poptin-popup' ).hide();
119
- }
120
- if ( $('.mysticky-welcomebar-action option:selected').attr('data-href') !== '' && mysticky_welcomebar_action == 'thankyou_screen' ) {
121
- window.open( $( '.mysticky-welcomebar-action option:selected' ).attr('data-href') , '_blank');
122
- }
123
- } );
124
- //$( '#mysticky_welcomebar_expirydate' ).datepicker( );
125
- //$( "#mysticky_welcomebar_expirydate" ).datepicker( "option", "dateFormat", 'mm/dd/yy' );
126
-
127
- var page_option_content = "";
128
- page_option_content = $( '.mysticky-welcomebar-page-options-html' ).html();
129
- $( '.mysticky-welcomebar-page-options-html' ).remove();
130
-
131
- $( '#create-rule' ).on( 'click', function(){
132
- var append_html = page_option_content.replace(/__count__/g, '1', page_option_content);
133
- $( '.mysticky-welcomebar-page-options' ).append( append_html );
134
- $( '.mysticky-welcomebar-page-options' ).show();
135
- $( this ).parent().remove();
136
- });
137
- $( '.sticky-header-menu ul li a' ).on( 'click', function(){
138
- if ( $( "#sticky-header-welcome-bar" ).is( ":visible" ) ) {
139
- check_for_preview_pos();
140
- }
141
- } );
142
- jQuery(window).on('scroll', function(){
143
- if ( $( "#sticky-header-welcome-bar" ).is( ":visible" ) ) {
144
- check_for_preview_pos();
145
- }
146
- });
147
- /*Mysticky page target*/
148
- var mysticky_total_page_option = 0;
149
- var mysticky_page_option_content = "";
150
- mysticky_total_page_option = $( '.mysticky-page-option' ).length;
151
- mysticky_page_option_content = $( '.mysticky-page-options-html' ).html();
152
- $( '.mysticky-page-options-html' ).remove();
153
-
154
- $( '#mysticky_create-rule' ).on( 'click', function(){
155
-
156
- var append_html = mysticky_page_option_content.replace(/__count__/g, mysticky_total_page_option, mysticky_page_option_content);
157
- mysticky_total_page_option++;
158
- $( '.mysticky-page-options' ).append( append_html );
159
- $( '.mysticky-page-options .mysticky-page-option' ).removeClass( 'last' );
160
- $( '.mysticky-page-options .mysticky-page-option:last' ).addClass( 'last' );
161
-
162
- if( $( '.mysticky-page-option .myStickymenu-upgrade' ).length > 0 ) {
163
- $( this ).remove();
164
- }
165
- });
166
- $( document ).on( 'click', '.mysticky-remove-rule', function() {
167
- $( this ).closest( '.mysticky-page-option' ).remove();
168
- $( '.mysticky-page-options .mysticky-page-option' ).removeClass( 'last' );
169
- $( '.mysticky-page-options .mysticky-page-option:last' ).addClass( 'last' );
170
- });
171
- $( document ).on( 'change', '.mysticky-url-options', function() {
172
- var current_val = jQuery( this ).val();
173
- var mysticky_welcomebar_siteURL = jQuery( '#mysticky_welcomebar_site_url' ).val();
174
- var mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL;
175
- if( current_val == 'page_has_url' ) {
176
- mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL;
177
- } else if( current_val == 'page_contains' ) {
178
- mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + '%s%';
179
- } else if( current_val == 'page_start_with' ) {
180
- mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + 's%';
181
- } else if( current_val == 'page_end_with' ) {
182
- mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + '%s';
183
- }
184
- $( this ).closest( '.url-content' ).find( '.mysticky-welcomebar-url' ).text( mysticky_welcomebar_newURL );
185
- });
186
- /* welcome bar live preview */
187
- /* Apply Wp Color Picker */
188
- var myOptions = {
189
- change: function(event, ui){
190
- var color_id = $(this).attr('id');
191
- var slug = $(this).data('slug');
192
-
193
- var color_code = ui.color.toString();
194
- if ( color_id === 'mysticky_welcomebar_bgcolor'){
195
- $('.mysticky-welcomebar-fixed').css('background-color', color_code );
196
- }
197
- if ( color_id === 'mysticky_welcomebar_bgtxtcolor'){
198
- $('.mysticky-welcomebar-fixed .mysticky-welcomebar-content p').css('color', color_code );
199
- }
200
- if ( color_id === 'mysticky_welcomebar_btncolor'){
201
- $('.mysticky-welcomebar-btn a').css('background-color', color_code );
202
- }
203
- if ( color_id === 'mysticky_welcomebar_btntxtcolor'){
204
- $('.mysticky-welcomebar-btn a').css('color', color_code );
205
- }
206
- }
207
- };
208
- $('.mysticky-welcomebar-setting-wrap .my-color-field').wpColorPicker(myOptions);
209
-
210
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_x_desktop]"]' ).on( 'change', function(){
211
- if( $( this ).prop( "checked" ) == true ) {
212
- $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-showx-desktop' );
213
- } else {
214
- $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-showx-desktop' );
215
- }
216
- } );
217
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_x_mobile]"]' ).on( 'change', function(){
218
- if( $( this ).prop( "checked" ) == true ) {
219
- $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-showx-mobile' );
220
- } else {
221
- $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-showx-mobile' );
222
- }
223
- } );
224
-
225
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).on( 'change', function(){
226
- if( $( this ).prop( "checked" ) == true ) {
227
- $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-btn-desktop' );
228
- } else {
229
- $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-btn-desktop' );
230
- }
231
-
232
- if( $( this ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).prop( "checked" ) == false ) {
233
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
234
- 'pointer-events': 'none',
235
- 'opacity': '0.5'
236
- });
237
- } else {
238
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
239
- 'pointer-events': '',
240
- 'opacity': ''
241
- });
242
- }
243
- } );
244
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).on( 'change', function(){
245
- if( $( this ).prop( "checked" ) == true ) {
246
- $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-btn-mobile' );
247
- } else {
248
- $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-btn-mobile' );
249
- }
250
-
251
- if( $( this ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).prop( "checked" ) == false ) {
252
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
253
- 'pointer-events': 'none',
254
- 'opacity': '0.5'
255
- });
256
- } else {
257
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
258
- 'pointer-events': '',
259
- 'opacity': ''
260
- });
261
- }
262
- } );
263
- if( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).prop( "checked" ) == false ) {
264
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
265
- 'pointer-events': 'none',
266
- 'opacity': '0.5'
267
- });
268
- } else {
269
- $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
270
- 'pointer-events': '',
271
- 'opacity': ''
272
- });
273
- }
274
-
275
- $( 'select[name="mysticky_option_welcomebar[mysticky_welcomebar_font]"]' ).on( 'change', function(){
276
- var myfixed_font_val = $( this ).val();
277
- $( 'head' ).append( '<link href="https://fonts.googleapis.com/css?family='+ myfixed_font_val +':400,600,700" rel="stylesheet" type="text/css" class="sfba-google-font">' );
278
- $( '.mysticky-welcomebar-fixed' ).css( 'font-family', myfixed_font_val );
279
- } );
280
-
281
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_fontsize]"]' ).on( 'keyup click', function(){
282
- var mysticky_welcomebar_fontsize_val = $( this ).val();
283
- $( '.mysticky-welcomebar-fixed p' ).css( 'font-size', mysticky_welcomebar_fontsize_val + 'px' );
284
- $( '.mysticky-welcomebar-btn a' ).css( 'font-size', mysticky_welcomebar_fontsize_val + 'px' );
285
- } );
286
-
287
- $( '#wp-mysticky_bar_text-wrap .wp-editor-tabs button' ).on( 'click', function(){
288
- if ( $("#wp-mysticky_bar_text-wrap").hasClass("tmce-active") ){
289
-
290
- }
291
- } );
292
-
293
- $( document ).on( 'click', '#qt_mysticky_bar_text_toolbar .ed_button', function(){
294
- $( 'textarea[name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]"]' ).trigger( 'change keyup click' );
295
- } );
296
-
297
- $( 'textarea[name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]"]' ).on( 'change keyup click', function(e){
298
- var mysticky_bar_text_val = $( this ).val().replace(/(?:\r\n|\r|\n)/g, '<br />');
299
- $( '.mysticky-welcomebar-content' ).html( "<p>" + mysticky_bar_text_val + "</p>");
300
- } );
301
-
302
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_text]"]' ).on( 'keyup', function(){
303
- var mysticky_btn_text_val = $( this ).val();
304
-
305
- $( '.mysticky-welcomebar-btn a' ).text( mysticky_btn_text_val );
306
- } );
307
-
308
- /* DATE: 11-12-2019 start */
309
- $( 'select[name="mysticky_option_welcomebar[mysticky_welcomebar_attentionselect]"]' ).on( 'change', function(){
310
- $(".mysticky-welcomebar-fixed").removeClass (function (index, className) {
311
- return (className.match (/(^|\s)mysticky-welcomebar-attention-\S+/g) || []).join(' ');
312
- });
313
- $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-attention-' + $(this).val() );
314
-
315
- } );
316
- /* DATE: 11-12-2019 End */
317
- $("#myStickymenu-entry-effect").on( 'change', function() {
318
- $(".mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed").removeClass('entry-effect');
319
- $(".mysticky-welcomebar-fixed").removeClass (function (index, className) {
320
- return (className.match (/(^|\s)mysticky-welcomebar-entry-effect-\S+/g) || []).join(' ');
321
- });
322
- $( '.mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-entry-effect-' + $(this).val() );
323
- setTimeout( function(){
324
- $(".mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed").addClass('entry-effect');
325
- }, 1000 );
326
-
327
- });
328
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
329
-
330
- $( '.mysticky-welcomebar-submit input#submit' ).on( 'click', function(e){
331
- var welcomebar_action = $('.mysticky-welcomebar-action').find(":selected").val();
332
- var poptin_popup_link = $('#mysticky_welcomebar_poptin_popup_link').val().toLowerCase();
333
- var welcome_save_anyway = $('#welcome_save_anyway').val();
334
- console.log(poptin_popup_link);
335
- if ( welcomebar_action == 'poptin_popup' && welcome_save_anyway == '' && (poptin_popup_link == '' || poptin_popup_link.indexOf('popt.in') == '-1' ) ) {
336
- e.preventDefault();
337
- $( "#mysticky-welcomebar-poptin-popup-confirm" ).dialog({
338
- resizable: false,
339
- modal: true,
340
- draggable: false,
341
- height: 'auto',
342
- width: 500,
343
- buttons: {
344
- "Keep editing": {
345
- click:function () {
346
- $( this ).dialog('close');
347
- $("body,html").animate({
348
- scrollTop: $("#mysticky_welcomebar_poptin_popup_link").offset().top - 200
349
- }, 500)
350
- $('#mysticky_welcomebar_poptin_popup_link').focus();
351
- $('#mysticky_welcomebar_poptin_popup_link').css( 'border', '1px solid #FF0000' );
352
- },
353
- text: 'Keep editing',
354
- class: 'green-btn'
355
- },
356
- "Save anyway": function () {
357
- $( 'input#welcome_save_anyway' ).val('1');
358
- $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
359
- $( this ).dialog( 'close' );
360
- }
361
- }
362
- });
363
- return false;
364
- }
365
-
366
- if ( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked' ) == false && $( 'input#save_welcome_bar' ).val() == '' ) {
367
- e.preventDefault();
368
- $( "#mysticky-welcomebar-save-confirm" ).dialog({
369
- resizable: false,
370
- modal: true,
371
- draggable: false,
372
- height: 'auto',
373
- width: 600,
374
- buttons: {
375
- "Yes, show it on my site": {
376
- click:function () {
377
- $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked', true );
378
- $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
379
- $( this ).dialog('close');
380
- },
381
- text: 'Yes, show it on my site',
382
- class: 'green-btn'
383
- },
384
- "Just save and keep it off": function () {
385
- $( 'input#save_welcome_bar' ).val('1');
386
- $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
387
- $( this ).dialog( 'close' );
388
- }
389
- }
390
- });
391
- }
392
- //return false;
393
- } );
394
-
395
- });
396
- $( window ).on('load', function(){
397
- $( '.mysticky-welcomebar-url-options' ).each( function(){
398
- $( this ).trigger( 'change' );
399
- });
400
- });
401
- function check_for_preview_pos() {
402
- var mysticky_welcomebar_form_pos = $( '#sticky-header-welcome-bar' ).offset().top;
403
- if($(".show-on-apper").length && $(".mysticky-welcomebar-setting-right").length) {
404
- var topPos = $(".show-on-apper").offset().top - $(window).scrollTop() - 700;
405
- if (topPos < 0) {
406
- topPos = Math.abs(topPos);
407
- jQuery(".mysticky-welcomebar-setting-right").css("margin-top", ((-1)*topPos)+"px");
408
- } else {
409
- jQuery(".mysticky-welcomebar-setting-right").css("margin-top", "0");
410
- }
411
- }
412
- if ( ( mysticky_welcomebar_form_pos + 32 ) < $(window).scrollTop() ) {
413
- $( '.mysticky-welcomebar-setting-right' ).css( 'position', 'fixed' );
414
- $( '.mysticky-welcomebar-setting-right' ).css( 'right', '70px' );
415
- } else {
416
- $( '.mysticky-welcomebar-setting-right' ).css( 'position', 'absolute' );
417
- $( '.mysticky-welcomebar-setting-right' ).css( 'right', '50px' );
418
- }
419
- }
420
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  })(jQuery);
1
+ (function( $ ) {
2
+ "use strict";
3
+
4
+ jQuery(document).ready(function($){
5
+
6
+ $(document).on("click", ".updates-form button", function(){
7
+ var updateStatus = 0;
8
+ if($(this).hasClass("yes")) {
9
+ updateStatus = 1;
10
+ }
11
+ $(".updates-form button").attr("disabled", true);
12
+ $.ajax({
13
+ url: ajaxurl,
14
+ data: "action=sticky_menu_update_status&status="+updateStatus+"&nonce="+$("#myStickymenu_update_nonce").val()+"&email="+$("#myStickymenu_update_email").val(),
15
+ type: 'post',
16
+ cache: false,
17
+ success: function(){
18
+ window.location.reload();
19
+ }
20
+ })
21
+ });
22
+
23
+ $(document).on("click", ".skip-dolatter", function(){
24
+ var updateStatus = 0;
25
+ $(".updates-form button").attr("disabled", true);
26
+ $.ajax({
27
+ url: ajaxurl,
28
+ data: "action=sticky_menu_update_status&status="+updateStatus+"&nonce="+$("#myStickymenu_update_nonce").val()+"&email="+$("#myStickymenu_update_email").val(),
29
+ type: 'post',
30
+ cache: false,
31
+ success: function(){
32
+ window.location.reload();
33
+ }
34
+ })
35
+ });
36
+
37
+ var handle = $( "#custom-handle" );
38
+ $( "#slider" ).slider({
39
+ create: function() {
40
+ handle.text( $( this ).slider( "value" ) );
41
+ handle.text( $('#myfixed_opacity').val() );
42
+ handle.css('left', $('#myfixed_opacity').val() + '%')
43
+ },
44
+ slide: function( event, ui ) {
45
+ $('#myfixed_opacity').val(ui.value);
46
+ handle.text( ui.value );
47
+ }
48
+ });
49
+ jQuery(
50
+ '<div class="pt_number"><div class="pt_numberbutton pt_numberup">+</div><div class="pt_numberbutton pt_numberdown">-</div></div>'
51
+ ).insertAfter("input.mysticky-number1");
52
+
53
+ jQuery(".mystickynumber1").each(function() {
54
+
55
+ var spinner = jQuery(this),
56
+ input = spinner.find('input[type="number"]'),
57
+ btnUp = spinner.find(".pt_numberup"),
58
+ btnDown = spinner.find(".pt_numberdown"),
59
+ min = input.attr("min"),
60
+ max = input.attr("max"),
61
+ valOfAmout = input.val(),
62
+ newVal = 0;
63
+
64
+ btnUp.on("click", function() {
65
+
66
+ var oldValue = parseFloat(input.val());
67
+
68
+ if (oldValue >= max) {
69
+ var newVal = oldValue;
70
+ } else {
71
+ var newVal = oldValue + 1;
72
+ }
73
+ spinner.find("input").val(newVal);
74
+ spinner.find("input").trigger("change");
75
+ console.log(newVal);
76
+ });
77
+ btnDown.on("click", function() {
78
+ var oldValue = parseFloat(input.val());
79
+ if (oldValue <= min) {
80
+ var newVal = oldValue;
81
+ } else {
82
+ var newVal = oldValue - 1;
83
+ }
84
+ spinner.find("input").val(newVal);
85
+ spinner.find("input").trigger("change");
86
+ });
87
+ });
88
+
89
+
90
+ $(".confirm").on( 'click', function() {
91
+ return window.confirm("Reset to default settings?");
92
+ });
93
+
94
+ var flag = 0;
95
+ $( "#mystickymenu-select option" ).each(function( i ) {
96
+
97
+ if ($('select#mystickymenu-select option:selected').val() !== '' ) {
98
+ flag = 1;
99
+ }
100
+ if( $('select#mystickymenu-select option:selected').val() == $(this).val() ){
101
+ $('#mysticky_class_selector').show();
102
+ }else {
103
+ $('#mysticky_class_selector').hide();
104
+ }
105
+ });
106
+ if ( flag === 0 ) {
107
+ $('#mysticky_class_selector').show();
108
+ $("select#mystickymenu-select option[value=custom]").attr('selected', 'selected');
109
+ }
110
+
111
+ $("#mystickymenu-select").on( 'change', function() {
112
+ if ($(this).val() == 'custom' ) {
113
+ $('#mysticky_class_selector').show();
114
+ }else {
115
+ $('#mysticky_class_selector').hide();
116
+ }
117
+
118
+ });
119
+ /*02-08-2019 welcom bar js*/
120
+ $( '.mysticky-welcomebar-action' ).on( 'change', function(){
121
+ var mysticky_welcomebar_action = $( this ).val();
122
+ if ( mysticky_welcomebar_action == 'redirect_to_url' ) {
123
+ $( '.mysticky-welcomebar-redirect' ).show();
124
+ $( '.mysticky-welcomebar-redirect-container' ).show();
125
+ } else {
126
+ $( '.mysticky-welcomebar-redirect' ).hide();
127
+ $( '.mysticky-welcomebar-redirect-container' ).hide();
128
+ }
129
+ if ( mysticky_welcomebar_action == 'poptin_popup' ) {
130
+ $( '.mysticky-welcomebar-poptin-popup' ).show();
131
+ } else {
132
+ $( '.mysticky-welcomebar-poptin-popup' ).hide();
133
+ }
134
+ if ( $('.mysticky-welcomebar-action option:selected').attr('data-href') !== '' && mysticky_welcomebar_action == 'thankyou_screen' ) {
135
+ window.open( $( '.mysticky-welcomebar-action option:selected' ).attr('data-href') , '_blank');
136
+ }
137
+ } );
138
+ //$( '#mysticky_welcomebar_expirydate' ).datepicker( );
139
+ //$( "#mysticky_welcomebar_expirydate" ).datepicker( "option", "dateFormat", 'mm/dd/yy' );
140
+
141
+ var page_option_content = "";
142
+ page_option_content = $( '.mysticky-welcomebar-page-options-html' ).html();
143
+ $( '.mysticky-welcomebar-page-options-html' ).remove();
144
+
145
+ $( '#create-rule' ).on( 'click', function(){
146
+ var append_html = page_option_content.replace(/__count__/g, '1', page_option_content);
147
+ $( '.mysticky-welcomebar-page-options' ).append( append_html );
148
+ $( '.mysticky-welcomebar-page-options' ).show();
149
+ $( this ).parent().remove();
150
+ });
151
+ $( '.sticky-header-menu ul li a' ).on( 'click', function(){
152
+ if ( $( "#sticky-header-welcome-bar" ).is( ":visible" ) ) {
153
+ check_for_preview_pos();
154
+ }
155
+ } );
156
+ jQuery(window).on('scroll', function(){
157
+ if ( $( "#sticky-header-welcome-bar" ).is( ":visible" ) ) {
158
+ check_for_preview_pos();
159
+ }
160
+ });
161
+ /*Mysticky page target*/
162
+ var mysticky_total_page_option = 0;
163
+ var mysticky_page_option_content = "";
164
+ mysticky_total_page_option = $( '.mysticky-page-option' ).length;
165
+ mysticky_page_option_content = $( '.mysticky-page-options-html' ).html();
166
+ $( '.mysticky-page-options-html' ).remove();
167
+
168
+ $( '#mysticky_create-rule' ).on( 'click', function(){
169
+
170
+ var append_html = mysticky_page_option_content.replace(/__count__/g, mysticky_total_page_option, mysticky_page_option_content);
171
+ mysticky_total_page_option++;
172
+ $( '.mysticky-page-options' ).append( append_html );
173
+ $( '.mysticky-page-options .mysticky-page-option' ).removeClass( 'last' );
174
+ $( '.mysticky-page-options .mysticky-page-option:last' ).addClass( 'last' );
175
+
176
+ if( $( '.mysticky-page-option .myStickymenu-upgrade' ).length > 0 ) {
177
+ $( this ).remove();
178
+ }
179
+ });
180
+ $( document ).on( 'click', '.mysticky-remove-rule', function() {
181
+ $( this ).closest( '.mysticky-page-option' ).remove();
182
+ $( '.mysticky-page-options .mysticky-page-option' ).removeClass( 'last' );
183
+ $( '.mysticky-page-options .mysticky-page-option:last' ).addClass( 'last' );
184
+ });
185
+ $( document ).on( 'change', '.mysticky-url-options', function() {
186
+ var current_val = jQuery( this ).val();
187
+ var mysticky_welcomebar_siteURL = jQuery( '#mysticky_welcomebar_site_url' ).val();
188
+ var mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL;
189
+ if( current_val == 'page_has_url' ) {
190
+ mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL;
191
+ } else if( current_val == 'page_contains' ) {
192
+ mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + '%s%';
193
+ } else if( current_val == 'page_start_with' ) {
194
+ mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + 's%';
195
+ } else if( current_val == 'page_end_with' ) {
196
+ mysticky_welcomebar_newURL = mysticky_welcomebar_siteURL + '%s';
197
+ }
198
+ $( this ).closest( '.url-content' ).find( '.mysticky-welcomebar-url' ).text( mysticky_welcomebar_newURL );
199
+ });
200
+ /* welcome bar live preview */
201
+ /* Apply Wp Color Picker */
202
+ var myOptions = {
203
+ change: function(event, ui){
204
+ var color_id = $(this).attr('id');
205
+ var slug = $(this).data('slug');
206
+
207
+ var color_code = ui.color.toString();
208
+ if ( color_id === 'mysticky_welcomebar_bgcolor'){
209
+ $('.mysticky-welcomebar-fixed').css('background-color', color_code );
210
+ }
211
+ if ( color_id === 'mysticky_welcomebar_bgtxtcolor'){
212
+ $('.mysticky-welcomebar-fixed .mysticky-welcomebar-content p').css('color', color_code );
213
+ }
214
+ if ( color_id === 'mysticky_welcomebar_btncolor'){
215
+ $('.mysticky-welcomebar-btn a').css('background-color', color_code );
216
+ }
217
+ if ( color_id === 'mysticky_welcomebar_btntxtcolor'){
218
+ $('.mysticky-welcomebar-btn a').css('color', color_code );
219
+ }
220
+ }
221
+ };
222
+ $('.mysticky-welcomebar-setting-wrap .my-color-field').wpColorPicker(myOptions);
223
+
224
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_x_desktop]"]' ).on( 'change', function(){
225
+ if( $( this ).prop( "checked" ) == true ) {
226
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-showx-desktop' );
227
+ } else {
228
+ $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-showx-desktop' );
229
+ }
230
+ } );
231
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_x_mobile]"]' ).on( 'change', function(){
232
+ if( $( this ).prop( "checked" ) == true ) {
233
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-showx-mobile' );
234
+ } else {
235
+ $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-showx-mobile' );
236
+ }
237
+ } );
238
+
239
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).on( 'change', function(){
240
+ if( $( this ).prop( "checked" ) == true ) {
241
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-btn-desktop' );
242
+ } else {
243
+ $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-btn-desktop' );
244
+ }
245
+
246
+ if( $( this ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).prop( "checked" ) == false ) {
247
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
248
+ 'pointer-events': 'none',
249
+ 'opacity': '0.5'
250
+ });
251
+ } else {
252
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
253
+ 'pointer-events': '',
254
+ 'opacity': ''
255
+ });
256
+ }
257
+ } );
258
+
259
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).on( 'change', function(){
260
+ if( $( this ).prop( "checked" ) == true ) {
261
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-btn-mobile' );
262
+ } else {
263
+ $( '.mysticky-welcomebar-fixed' ).removeClass( 'mysticky-welcomebar-btn-mobile' );
264
+ }
265
+
266
+ if( $( this ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).prop( "checked" ) == false ) {
267
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
268
+ 'pointer-events': 'none',
269
+ 'opacity': '0.5'
270
+ });
271
+ } else {
272
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
273
+ 'pointer-events': '',
274
+ 'opacity': ''
275
+ });
276
+ }
277
+ } );
278
+ if( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]"]' ).prop( "checked" ) == false && $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]"]' ).prop( "checked" ) == false ) {
279
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
280
+ 'pointer-events': 'none',
281
+ 'opacity': '0.5'
282
+ });
283
+ } else {
284
+ $( ".mysticky_welcomebar_disable, .mysticky_welcomebar_btn_color button.wp-color-result" ).css({
285
+ 'pointer-events': '',
286
+ 'opacity': ''
287
+ });
288
+ }
289
+
290
+ $( 'select[name="mysticky_option_welcomebar[mysticky_welcomebar_font]"]' ).on( 'change', function(){
291
+ var myfixed_font_val = $( this ).val();
292
+ if( myfixed_font_val == 'System Stack'){
293
+ myfixed_font_val = '-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"';
294
+ }
295
+ $( 'head' ).append( '<link href="https://fonts.googleapis.com/css?family='+ myfixed_font_val +':400,600,700" rel="stylesheet" type="text/css" class="sfba-google-font">' );
296
+ $( '.mysticky-welcomebar-fixed' ).css( 'font-family', myfixed_font_val );
297
+ } );
298
+
299
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_fontsize]"]' ).on( 'keyup click', function(){
300
+ var mysticky_welcomebar_fontsize_val = $( this ).val();
301
+ $( '.mysticky-welcomebar-fixed p' ).css( 'font-size', mysticky_welcomebar_fontsize_val + 'px' );
302
+ $( '.mysticky-welcomebar-btn a' ).css( 'font-size', mysticky_welcomebar_fontsize_val + 'px' );
303
+ } );
304
+
305
+ $( '#wp-mysticky_bar_text-wrap .wp-editor-tabs button' ).on( 'click', function(){
306
+ if ( $("#wp-mysticky_bar_text-wrap").hasClass("tmce-active") ){
307
+
308
+ }
309
+ } );
310
+
311
+ $( document ).on( 'click', '#qt_mysticky_bar_text_toolbar .ed_button', function(){
312
+ $( 'textarea[name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]"]' ).trigger( 'change keyup click' );
313
+ } );
314
+
315
+ $( 'textarea[name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]"]' ).on( 'change keyup click', function(e){
316
+ var mysticky_bar_text_val = $( this ).val().replace(/(?:\r\n|\r|\n)/g, '<br />');
317
+ $( '.mysticky-welcomebar-content' ).html( "<p>" + mysticky_bar_text_val + "</p>");
318
+ } );
319
+
320
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_btn_text]"]' ).on( 'keyup', function(){
321
+ var mysticky_btn_text_val = $( this ).val();
322
+
323
+ $( '.mysticky-welcomebar-btn a' ).text( mysticky_btn_text_val );
324
+ } );
325
+
326
+ /* DATE: 11-12-2019 start */
327
+ $( 'select[name="mysticky_option_welcomebar[mysticky_welcomebar_attentionselect]"]' ).on( 'change', function(){
328
+ $(".mysticky-welcomebar-fixed").removeClass (function (index, className) {
329
+ return (className.match (/(^|\s)mysticky-welcomebar-attention-\S+/g) || []).join(' ');
330
+ });
331
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-attention-' + $(this).val() );
332
+
333
+ } );
334
+ /* DATE: 11-12-2019 End */
335
+ $("#myStickymenu-entry-effect").on( 'change', function() {
336
+ $(".mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed").removeClass('entry-effect');
337
+ $(".mysticky-welcomebar-fixed").removeClass (function (index, className) {
338
+ return (className.match (/(^|\s)mysticky-welcomebar-entry-effect-\S+/g) || []).join(' ');
339
+ });
340
+ $( '.mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-entry-effect-' + $(this).val() );
341
+ setTimeout( function(){
342
+ $(".mysticky-welcomebar-preview-screen .mysticky-welcomebar-fixed").addClass('entry-effect');
343
+ }, 1000 );
344
+
345
+ });
346
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
347
+
348
+ /*$( '.mysticky-welcomebar-submit input#submit' ).on( 'click', function(e){
349
+ var welcomebar_action = $('.mysticky-welcomebar-action').find(":selected").val();
350
+ var poptin_popup_link = $('#mysticky_welcomebar_poptin_popup_link').val().toLowerCase();
351
+ var welcome_save_anyway = $('#welcome_save_anyway').val();
352
+ console.log(poptin_popup_link);
353
+ if ( welcomebar_action == 'poptin_popup' && welcome_save_anyway == '' && (poptin_popup_link == '' || poptin_popup_link.indexOf('popt.in') == '-1' ) ) {
354
+ e.preventDefault();
355
+ $( "#mysticky-welcomebar-poptin-popup-confirm" ).dialog({
356
+ resizable: false,
357
+ modal: true,
358
+ draggable: false,
359
+ height: 'auto',
360
+ width: 500,
361
+ buttons: {
362
+ "Keep editing": {
363
+ click:function () {
364
+ $( this ).dialog('close');
365
+ $("body,html").animate({
366
+ scrollTop: $("#mysticky_welcomebar_poptin_popup_link").offset().top - 200
367
+ }, 500)
368
+ $('#mysticky_welcomebar_poptin_popup_link').focus();
369
+ $('#mysticky_welcomebar_poptin_popup_link').css( 'border', '1px solid #FF0000' );
370
+ },
371
+ text: 'Keep editing',
372
+ class: 'green-btn'
373
+ },
374
+ "Save anyway": function () {
375
+ $( 'input#welcome_save_anyway' ).val('1');
376
+ $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
377
+ $( this ).dialog( 'close' );
378
+ }
379
+ }
380
+ });
381
+ return false;
382
+ }
383
+
384
+ if ( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked' ) == false && $( 'input#save_welcome_bar' ).val() == '' ) {
385
+ e.preventDefault();
386
+ $( "#mysticky-welcomebar-save-confirm" ).dialog({
387
+ resizable: false,
388
+ modal: true,
389
+ draggable: false,
390
+ height: 'auto',
391
+ width: 600,
392
+ buttons: {
393
+ "Yes, show it on my site": {
394
+ click:function () {
395
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked', true );
396
+ $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
397
+ $( this ).dialog('close');
398
+ },
399
+ text: 'Yes, show it on my site',
400
+ class: 'green-btn'
401
+ },
402
+ "Just save and keep it off": function () {
403
+ $( 'input#save_welcome_bar' ).val('1');
404
+ $( '.mysticky-welcomebar-submit input#submit' ).trigger('click');
405
+ $( this ).dialog( 'close' );
406
+ }
407
+ }
408
+ });
409
+ }
410
+ //return false;
411
+ } );*/
412
+
413
+ });
414
+ $( window ).on('load', function(){
415
+ $( '.mysticky-welcomebar-url-options' ).each( function(){
416
+ $( this ).trigger( 'change' );
417
+ });
418
+ });
419
+ function check_for_preview_pos() {
420
+ var mysticky_welcomebar_form_pos = $( '#sticky-header-welcome-bar' ).offset().top;
421
+ if($(".show-on-apper").length && $(".mysticky-welcomebar-setting-right").length) {
422
+ var topPos = $(".show-on-apper").offset().top - $(window).scrollTop() - 700;
423
+ if (topPos < 0) {
424
+ topPos = Math.abs(topPos);
425
+ jQuery(".mysticky-welcomebar-setting-right").css("margin-top", ((-1)*topPos)+"px");
426
+ } else {
427
+ jQuery(".mysticky-welcomebar-setting-right").css("margin-top", "0");
428
+ }
429
+ }
430
+ var position_screen = (isRtl == 1 ) ? 'left' : 'right';
431
+ if ( ( mysticky_welcomebar_form_pos + 32 ) < $(window).scrollTop() ) {
432
+ $( '.mysticky-welcomebar-setting-right' ).css( 'position', 'fixed' );
433
+ $( '.mysticky-welcomebar-setting-right' ).css( position_screen, '70px' );
434
+ } else {
435
+ $( '.mysticky-welcomebar-setting-right' ).css( 'position', 'absolute' );
436
+ $( '.mysticky-welcomebar-setting-right' ).css( position_screen, '50px' );
437
+ }
438
+ }
439
+
440
+ jQuery(document).on("click",".mystickymenu-delete-widget",function(e){
441
+ e.preventDefault();
442
+
443
+ var widget_id = jQuery(this).data("widget-id");
444
+ jQuery("#widget-delete-dialog-"+widget_id).show();
445
+ jQuery("#mystickymenu-delete-popup-overlay-"+widget_id).show();
446
+ });
447
+
448
+ jQuery(document).on("click",".btn-delete",function(e){
449
+ e.preventDefault();
450
+ var delWidId = jQuery(this).data("id");
451
+ jQuery.ajax({
452
+ url: ajaxurl,
453
+ type:'post',
454
+ data: 'action=stickymenu_widget_delete&widget_id=' + delWidId + '&widget_delete=1&wpnonce=' + mystickymenu.ajax_nonce,
455
+ success: function( data ){
456
+ $( '#stickymenu-widget-' + delWidId ).remove();
457
+ setTimeout('location.reload()', 500);
458
+ },
459
+ });
460
+ });
461
+
462
+
463
+ jQuery(document).on("click",".btn-delete-cancel",function(e){
464
+ e.preventDefault();
465
+ var id = jQuery(this).data("id");
466
+ jQuery("#widget-delete-dialog-"+id).hide();
467
+ jQuery("#mystickymenu-delete-popup-overlay-"+id).hide();
468
+ });
469
+
470
+
471
+
472
+ jQuery(document).on("click",".mystickymenu-widget-enabled",function(){
473
+ var widget_id = $(this).data('id');
474
+ if(jQuery(this).prop("checked") != true){
475
+ jQuery('#widget-status-dialog-' + widget_id).show();
476
+ jQuery('#mystickymenu-status-popup-overlay-' + widget_id).show();
477
+ }else{
478
+ var widget_status = 1;
479
+ set_widget_status( widget_id, widget_status );
480
+ }
481
+ });
482
+
483
+ jQuery(document).on("click",".btn-turnoff-status",function(e){
484
+ e.preventDefault();
485
+ var widget_id = $(this).data('id');
486
+ var widget_status = 0;
487
+ set_widget_status( widget_id, widget_status );
488
+ });
489
+
490
+
491
+ jQuery(document).on("click",".btn-nevermind-status",function(e){
492
+ e.preventDefault();
493
+ var widget_id = $(this).data('id');
494
+ var widget_status = 1;
495
+ set_widget_status( widget_id, widget_status );
496
+ jQuery("#mystickymenu-widget-enabled-"+widget_id).prop('checked', true)
497
+
498
+ });
499
+
500
+
501
+ jQuery(document).on("click",".mystickymenupopup-overlay",function(e){
502
+ e.preventDefault();
503
+
504
+ if(jQuery(this).data("fromoverlay") == 'welcombar_delete'){
505
+ jQuery(this).hide();
506
+ console.log("#mystickymenu-delete-popup-overlay-"+jQuery(this).data('id'));
507
+ var delId = jQuery(this).data('id');
508
+ jQuery('#widget-delete-dialog-'+delId).hide();
509
+
510
+ }else{
511
+ var widget_id = $(this).data('id');
512
+ var widget_status = 1;
513
+ set_widget_status( widget_id, widget_status );
514
+ jQuery("#mystickymenu-widget-enabled-"+widget_id).prop('checked', true);
515
+ }
516
+
517
+ });
518
+
519
+
520
+
521
+
522
+ function set_widget_status( widget_id, widget_status ) {
523
+ jQuery.ajax({
524
+ url: ajaxurl,
525
+ type:'post',
526
+ data: 'action=mystickymenu_widget_status&widget_id='+widget_id+'&widget_status=' + widget_status +'&wpnonce=' + mystickymenu.ajax_nonce,
527
+ success: function( data ){
528
+ $('#widget-status-dialog-' + widget_id).hide();
529
+ $('#mystickymenu-status-popup-overlay-' + widget_id).hide();
530
+ },
531
+ });
532
+ }
533
+
534
+ jQuery(document).on("click","#close-first-popup",function(){
535
+ jQuery('.first-widget-popup').hide();
536
+ jQuery('.mystickymenupopup-overlay').hide();
537
+ });
538
+
539
+ jQuery(document).on("click","#first_widget_overlay",function(){
540
+ jQuery('.first-widget-popup').hide();
541
+ jQuery(this).hide();
542
+ });
543
+
544
+
545
+
546
+ jQuery(document).on("click","#btn-config-disable",function(e){
547
+ e.preventDefault();
548
+ jQuery("#stickymenu_status_popupbox").show();
549
+ jQuery("#stickymenuconfig-overlay-popup").show();
550
+ });
551
+
552
+ jQuery(document).on("click","#stickymenuconfig-overlay-popup",function(){
553
+ jQuery("#stickymenu_status_popupbox").hide();
554
+ jQuery(this).hide();
555
+ });
556
+
557
+ jQuery(document).on("click","#stickymenu_status_turnoff",function(e){
558
+ e.preventDefault();
559
+ var stickymenu_status = 0;
560
+ set_stickymenu_status( stickymenu_status );
561
+ });
562
+
563
+ jQuery(document).on("click","#stickymenu_status_nevermind",function(e){
564
+ e.preventDefault();
565
+ jQuery("#stickymenu_status_popupbox").hide();
566
+ jQuery("#stickymenuconfig-overlay-popup").hide();
567
+ });
568
+
569
+ function set_stickymenu_status( stickymenu_status ){
570
+ jQuery.ajax({
571
+ url: ajaxurl,
572
+ type:'post',
573
+ data: 'action=stickymenu_status_update&stickymenu_status=' + stickymenu_status +'&wpnonce=' + mystickymenu.ajax_nonce,
574
+ success: function( data ){
575
+ location.reload();
576
+ },
577
+ });
578
+ }
579
+
580
+ jQuery(document).on("click",".close-button",function(){
581
+ if(jQuery(this).data("from") == 'welcome-bar-status'){
582
+ var id = jQuery(this).data("id");
583
+ jQuery("#widget-status-dialog-"+id).hide();
584
+ jQuery("#mystickymenu-status-popup-overlay-"+id).hide();
585
+ var widget_status = 1;
586
+ set_widget_status( id, widget_status );
587
+ jQuery("#mystickymenu-widget-enabled-"+id).prop('checked', true)
588
+
589
+ }else if( jQuery(this).data("from") == "stickymenu-status"){
590
+ jQuery("#stickymenu_status_popupbox").hide();
591
+ jQuery("#stickymenuconfig-overlay-popup").hide();
592
+
593
+ }else if( jQuery(this).data("from") == "stickymenu-confirm" ){
594
+ jQuery("#mysticky-sticky-save-confirm").hide();
595
+ jQuery("#stickymenu-option-overlay-popup").hide();
596
+ }else if( jQuery(this).data("from") == "welcombar-confirm" ){
597
+ jQuery("#welcomebar-save-confirm").hide();
598
+ jQuery("#welcombar-sbmtvalidation-overlay-popup").hide();
599
+ }else{
600
+ var id = jQuery(this).data("id");
601
+ jQuery("#widget-delete-dialog-"+id).hide();
602
+ jQuery("#mystickymenu-delete-popup-overlay-"+id).hide();
603
+ }
604
+ });
605
+
606
+
607
+ jQuery(document).on("click","#stickymenu-option-overlay-popup",function(){
608
+ $("#mysticky-sticky-save-confirm").hide();
609
+ $(this).hide();
610
+ });
611
+
612
+
613
+ jQuery(document).on("click","#welcombar-sbmtvalidation-overlay-popup",function(){
614
+ $("#welcomebar-save-confirm").hide();
615
+ $(this).hide();
616
+ });
617
+
618
+
619
+ jQuery(document).on("change","#mysticky-welcomebar-countdown-enabled",function(){
620
+ var url = jQuery(this).data("url");
621
+ jQuery(this).prop('checked',false);
622
+ window.open(url, '_blank');
623
+ });
624
+
625
+ jQuery(document).on("click",".btn-save-stickymenu" , function(event){
626
+ if ( $( '#mysticky-stickymenu-form-enabled' ).prop( 'checked' ) == false && $('#save_stickymenu').val() == "" ) {
627
+ event.preventDefault();
628
+ $("#mysticky-sticky-save-confirm").show();
629
+ $("#stickymenu-option-overlay-popup").show();
630
+
631
+ $('#stickymenu_status_ok').attr('data-clickfrom', 'save');
632
+ $('#stickymenu_status_dolater').attr('data-clickfrom', 'save');
633
+ }
634
+ });
635
+
636
+ jQuery(document).on("click",".save_view_dashboard" , function(event){
637
+ if ( $( '#mysticky-stickymenu-form-enabled' ).prop( 'checked' ) == false && $('#save_stickymenu').val() == "" ) {
638
+ event.preventDefault();
639
+ $("#mysticky-sticky-save-confirm").show();
640
+ $("#stickymenu-option-overlay-popup").show();
641
+
642
+ $('#stickymenu_status_ok').attr('data-clickfrom', 'dashboard');
643
+ $('#stickymenu_status_dolater').attr('data-clickfrom', 'dashboard');
644
+ }
645
+ });
646
+
647
+ jQuery(document).on("click","#stickymenu_status_ok",function(){
648
+ //jQuery("html, body").animate({ scrollTop: "20" });
649
+ var clickFrom = $(this).data("clickfrom");
650
+ $('#save_stickymenu').val("1");
651
+ $( '#mysticky-stickymenu-form-enabled' ).prop( 'checked' , true )
652
+ $("#mysticky-sticky-save-confirm").hide();
653
+ $("#stickymenu-option-overlay-popup").hide();
654
+ if(clickFrom == 'dashboard'){
655
+ $('.save_view_dashboard').trigger("click");
656
+ }else{
657
+ $('.btn-save-stickymenu').trigger("click");
658
+ }
659
+ });
660
+
661
+ jQuery(document).on("click","#stickymenu_status_dolater",function(){
662
+ var clickFrom = $(this).data("clickfrom");
663
+ $('#save_stickymenu').val("1");
664
+ if(clickFrom == 'dashboard'){
665
+ $('.save_view_dashboard').trigger("click");
666
+ }else{
667
+ $('.btn-save-stickymenu').trigger("click");
668
+ }
669
+ });
670
+
671
+ jQuery(document).on( 'click','.welcombar_save', function(e){
672
+
673
+ if ( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked' ) == false && $( 'input#save_welcome_bar' ).val() == '' ) {
674
+ e.preventDefault();
675
+ $("#welcomebar-save-confirm").show();
676
+ $("#welcombar-sbmtvalidation-overlay-popup").show();
677
+ $("#welcombar_sbmtbtn_off").attr("data-clickfrom",'save_button');
678
+ $("#welcomebar_yes_sbmtbtn").attr("data-clickfrom",'save_button');
679
+ }
680
+ });
681
+
682
+
683
+ jQuery(document).on( 'click','.save_view_dashboard', function(e){
684
+
685
+ if ( $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked' ) == false && $( 'input#save_welcome_bar' ).val() == '' ) {
686
+ e.preventDefault();
687
+ $("#welcomebar-save-confirm").show();
688
+ $("#welcombar-sbmtvalidation-overlay-popup").show();
689
+ $("#welcombar_sbmtbtn_off").attr("data-clickfrom",'save_dashboard_button');
690
+ $("#welcomebar_yes_sbmtbtn").attr("data-clickfrom",'save_dashboard_button');
691
+ }
692
+ });
693
+
694
+ jQuery(document).on("click","#welcomebar_yes_sbmtbtn",function(){
695
+
696
+ var clickFrom = $(this).data("clickfrom");
697
+
698
+ $("#welcomebar-save-confirm").hide();
699
+ $("#welcombar-sbmtvalidation-overlay-popup").hide();
700
+ $( 'input#welcome_save_anyway' ).val('1');
701
+ $( 'input#save_welcome_bar' ).val('1');
702
+ $( 'input[name="mysticky_option_welcomebar[mysticky_welcomebar_enable]"]' ).prop( 'checked',true );
703
+ if(clickFrom == 'save_dashboard_button'){
704
+ $( '.mysticky-welcomebar-submit input.save_view_dashboard' ).trigger('click');
705
+ }else{
706
+ $( '.mysticky-welcomebar-submit input.welcombar_save' ).trigger('click');
707
+ }
708
+ });
709
+
710
+ jQuery(document).on("click","#welcombar_sbmtbtn_off",function(){
711
+ var clickFrom = $(this).data("clickfrom");
712
+
713
+ $("#welcomebar-save-confirm").hide();
714
+ $("#welcombar-sbmtvalidation-overlay-popup").hide();
715
+ $( 'input#welcome_save_anyway' ).val('1');
716
+ $( 'input#save_welcome_bar' ).val('1');
717
+
718
+ if(clickFrom == 'save_dashboard_button'){
719
+ $( '.mysticky-welcomebar-submit input.save_view_dashboard' ).trigger('click');
720
+ }else{
721
+ $( '.mysticky-welcomebar-submit input.welcombar_save' ).trigger('click');
722
+ }
723
+ });
724
+
725
  })(jQuery);
mystickymenu-affiliate.php CHANGED
@@ -127,7 +127,7 @@ class MyStickyMenu_affiliate_program {
127
  <div class="notice notice-info premio-affiliate <?php echo esc_attr($this->plugin) ?>-premio-affiliate">
128
  <p>Hi there, you've been using My Sticky Menu for a while now. Do you know that <b>My Sticky Menu</b> has an affiliate program? Join now and get <b>25% lifetime commission</b> <a href="javascript:;" class="dismiss-btn"><span class="dashicons dashicons-no-alt"></span> Dismiss</a></p>
129
  <div class="clear clearfix"></div>
130
- <a class="button button-primary affiliate-btn" target="_blank" href="https://premio.io/affiliates/?utm_source=inapp&plugin=mystickymenu&domain=<?php echo $_SERVER['HTTP_HOST'] ?>">Tell me more <span class="dashicons dashicons-arrow-right-alt"></span></a>
131
  </div>
132
  <div class="affiliate-popup">
133
  <div class="affiliate-popup-content">
127
  <div class="notice notice-info premio-affiliate <?php echo esc_attr($this->plugin) ?>-premio-affiliate">
128
  <p>Hi there, you've been using My Sticky Menu for a while now. Do you know that <b>My Sticky Menu</b> has an affiliate program? Join now and get <b>25% lifetime commission</b> <a href="javascript:;" class="dismiss-btn"><span class="dashicons dashicons-no-alt"></span> Dismiss</a></p>
129
  <div class="clear clearfix"></div>
130
+ <a class="button button-primary affiliate-btn" target="_blank" href="https://premio.io/affiliates/?utm_source=inapp&plugin=mystickymenu&domain=<?php echo esc_attr($_SERVER['HTTP_HOST']); ?>">Tell me more <span class="dashicons dashicons-arrow-right-alt"></span></a>
131
  </div>
132
  <div class="affiliate-popup">
133
  <div class="affiliate-popup-content">
mystickymenu-fonts.php CHANGED
@@ -3,6 +3,8 @@ if ( !function_exists('myStickymenu_fonts')) {
3
  function myStickymenu_fonts(){
4
  return array(
5
  // System fonts.
 
 
6
  'Arial' => 'Default',
7
  'Tahoma' => 'Default',
8
  'Verdana' => 'Default',
3
  function myStickymenu_fonts(){
4
  return array(
5
  // System fonts.
6
+ 'Inherit' => 'Default',
7
+ 'System Stack' => 'Default',
8
  'Arial' => 'Default',
9
  'Tahoma' => 'Default',
10
  'Verdana' => 'Default',
mystickymenu.php CHANGED
@@ -1,1430 +1,1604 @@
1
- <?php
2
- /*
3
- Plugin Name: myStickymenu
4
- Plugin URI: https://premio.io/
5
- Description: Create a beautiful notification bar or make your menu sticky. If you want to make your menu sticky, go myStickymenu settings and change the sticky Class to .your_navbar_class or #your_navbar_id
6
- Version: 2.5.6
7
- Author: Premio
8
- Author URI: https://premio.io/downloads/mystickymenu/
9
- Text Domain: mystickymenu
10
- Domain Path: /languages
11
- License: GPLv2 or later
12
- */
13
-
14
- defined('ABSPATH') or die("Cannot access pages directly.");
15
- define( 'MYSTICKY_VERSION', '2.5.6' );
16
- define('MYSTICKYMENU_URL', plugins_url('/', __FILE__)); // Define Plugin URL
17
- define('MYSTICKYMENU_PATH', plugin_dir_path(__FILE__)); // Define Plugin Directory Path
18
-
19
- require_once("mystickymenu-fonts.php");
20
- require_once("welcome-bar.php");
21
-
22
- if( is_admin() ) {
23
- include_once 'class-review-box.php';
24
- }
25
-
26
- class MyStickyMenuBackend
27
- {
28
- private $options;
29
-
30
- public function __construct()
31
- {
32
- add_action( 'admin_menu', array( $this, 'add_plugin_page' ) );
33
- add_action( 'admin_init', array( $this, 'mysticky_load_transl') );
34
-
35
- add_action( 'admin_init', array( $this, 'mysticky_default_options' ) );
36
- add_action( 'admin_enqueue_scripts', array( $this, 'mysticky_admin_script' ) );
37
-
38
- add_filter( 'plugin_action_links_mystickymenu/mystickymenu.php', array( $this, 'mystickymenu_settings_link' ) );
39
-
40
- add_action( 'activated_plugin', array( $this, 'mystickymenu_activation_redirect' ) );
41
-
42
- add_action("wp_ajax_sticky_menu_update_status", array($this, 'sticky_menu_update_status'));
43
-
44
- add_action("wp_ajax_mystickymenu_update_popup_status", array($this, 'mystickymenu_popup_status'));
45
-
46
- add_action( 'admin_footer', array( $this, 'mystickymenu_deactivate' ) );
47
- add_action( 'wp_ajax_mystickymenu_plugin_deactivate', array( $this, 'mystickymenu_plugin_deactivate' ) );
48
- }
49
-
50
- public function mystickymenu_popup_status() {
51
- if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mystickymenu_update_popup_status')) {
52
- update_option("mystickymenu_intro_box", "hide");
53
- }
54
- echo esc_attr("1");
55
- die;
56
- }
57
-
58
- public function sticky_menu_update_status() {
59
- if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'myStickymenu_update_nonce')) {
60
- $status = self::sanitize_options($_REQUEST['status']);
61
- $email = self::sanitize_options($_REQUEST['email']);
62
- update_option("mystickymenu_update_message", 2);
63
- if($status == 1) {
64
- $url = 'https://go.premio.io/api/update.php?email='.$email.'&plugin=myStickymenu';
65
- $handle = curl_init();
66
- curl_setopt($handle, CURLOPT_URL, $url);
67
- curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
68
- $response = curl_exec($handle);
69
- curl_close($handle);
70
- }
71
- }
72
- echo "1";
73
- die;
74
- }
75
-
76
- public function mystickymenu_settings_link($links){
77
- $settings_link = '<a href="admin.php?page=my-stickymenu-welcomebar">Settings</a>';
78
- $links['go_pro'] = '<a href="'.admin_url("admin.php?page=my-stickymenu-upgrade&type=upgrade").'" style="color: #FF5983; font-weight: bold; display: inline-block; border: solid 1px #FF5983; border-radius: 4px; padding: 0 5px;">'.__( 'Upgrade', 'stars-testimonials' ).'</a>';
79
- array_unshift($links, $settings_link);
80
- return $links;
81
- }
82
-
83
- public function mystickymenu_activation_redirect( $plugin) {
84
- if( $plugin == plugin_basename( __FILE__ ) ) {
85
- $is_shown = get_option("mystickymenu_update_message");
86
- if($is_shown === false) {
87
- add_option("mystickymenu_update_message", 1);
88
- }
89
- $option = get_option("mystickymenu_intro_box");
90
- if($option === false) {
91
- add_option("mystickymenu_intro_box", "show");
92
- }
93
- wp_redirect( admin_url( 'admin.php?page=my-stickymenu-welcomebar' ) ) ;
94
- exit;
95
- }
96
- }
97
-
98
- public function mysticky_admin_script($hook) {
99
-
100
- if ( !isset($_GET['page']) || ( isset($_GET['page']) && $_GET['page'] != 'my-stickymenu-settings' && $_GET['page'] != 'my-stickymenu-welcomebar' && $_GET['page'] != 'my-stickymenu-new-welcomebar' && $_GET['page'] != 'my-stickymenu-upgrade' && $_GET['page'] != 'msm-recommended-plugins' )) {
101
- return;
102
- }
103
-
104
- wp_enqueue_style('mystickymenuAdminStyle', plugins_url('/css/mystickymenu-admin.css', __FILE__), array(), MYSTICKY_VERSION );
105
- wp_enqueue_style( 'wp-color-picker' );
106
- //wp_enqueue_script( 'wp-color-picker-alpha', plugins_url('/js/wp-color-picker-alpha.min.js', __FILE__), array( 'wp-color-picker' ), MYSTICKY_VERSION );
107
- wp_enqueue_style( 'wp-jquery-ui-dialog' );
108
- wp_enqueue_style('jquery-ui');
109
-
110
- wp_enqueue_script('jquery-ui');
111
- wp_enqueue_script('jquery-ui-slider');
112
- //wp_enqueue_script('jquery-ui-datepicker');
113
- wp_enqueue_script( 'jquery-ui-dialog' );
114
- wp_enqueue_script( 'my-script-handle', plugins_url('js/iris-script.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
115
-
116
- if($hook == "mystickymenu_page_my-stickymenu-upgrade") {
117
- wp_enqueue_script( 'my-select2', plugins_url('js/select2.min.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
118
- wp_enqueue_style('my-css-select2', plugins_url('css/select2.min.css', __FILE__), array(), MYSTICKY_VERSION );
119
- wp_enqueue_style('my-css-admin-settings', plugins_url('css/admin-setting.css', __FILE__), array(), MYSTICKY_VERSION );
120
- }
121
-
122
- wp_enqueue_script('mystickymenuAdminScript', plugins_url('/js/mystickymenu-admin.js', __FILE__), array( 'jquery', 'jquery-ui-slider' ), MYSTICKY_VERSION);
123
- }
124
-
125
- public function mysticky_load_transl(){
126
- load_plugin_textdomain('mystickymenu', FALSE, dirname(plugin_basename(__FILE__)).'/languages/');
127
- }
128
-
129
- function sanitize_options($value) {
130
- $value = stripslashes($value);
131
- $value = filter_var($value, FILTER_SANITIZE_STRING);
132
- return $value;
133
- }
134
-
135
- public function add_plugin_page(){
136
- if ( isset($_GET['hide_msmrecommended_plugin']) && $_GET['hide_msmrecommended_plugin'] == 1) {
137
- update_option('hide_msmrecommended_plugin',true);
138
- }
139
- $hide_msmrecommended_plugin = get_option('hide_msmrecommended_plugin');
140
- // This page will be under "Settings"
141
- add_menu_page(
142
- 'Settings Admin',
143
- 'myStickymenu',
144
- 'manage_options',
145
- 'my-stickymenu-welcomebar',
146
- array( $this, 'mystickystickymenu_admin_welcomebar_page' )
147
- );
148
- add_submenu_page(
149
- 'my-stickymenu-welcomebar',
150
- 'Settings Admin',
151
- 'Welcome Bar',
152
- 'manage_options',
153
- 'my-stickymenu-welcomebar',
154
- array( $this, 'mystickystickymenu_admin_welcomebar_page' )
155
- );
156
-
157
- add_submenu_page(
158
- 'my-stickymenu-welcomebar',
159
- 'Settings Admin',
160
- '+ Create New Welcome Bar',
161
- 'manage_options',
162
- 'my-stickymenu-new-welcomebar',
163
- array( $this, 'mystickystickymenu_admin_new_welcomebar_page' )
164
- );
165
-
166
- add_submenu_page(
167
- 'my-stickymenu-welcomebar',
168
- 'Settings Admin',
169
- 'Sticky menu settings',
170
- 'manage_options',
171
- 'my-stickymenu-settings',
172
- array( $this, 'create_admin_page' )
173
- );
174
-
175
-
176
- if ( !$hide_msmrecommended_plugin){
177
- add_submenu_page(
178
- 'my-stickymenu-welcomebar',
179
- 'msm-recommended-plugins',
180
- 'Recommended Plugins',
181
- 'manage_options',
182
- 'msm-recommended-plugins',
183
- array( $this, 'mystickymenu_recommended_plugins' )
184
- );
185
- }
186
- add_submenu_page(
187
- 'my-stickymenu-welcomebar',
188
- 'Upgrade to Pro',
189
- 'Upgrade to Pro',
190
- 'manage_options',
191
- 'my-stickymenu-upgrade',
192
- array( $this, 'mystickymenu_admin_upgrade_to_pro' )
193
- );
194
- }
195
-
196
- public function create_admin_page(){
197
-
198
- $upgarde_url = admin_url("admin.php?page=my-stickymenu-upgrade");
199
- // Set class property
200
- if (isset($_POST['mysticky_option_name']) && !empty($_POST['mysticky_option_name']) && isset($_POST['nonce'])) {
201
- if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mysticky_option_backend_update')) {
202
- $post = $_POST['mysticky_option_name'];
203
- foreach($post as $key=>$value) {
204
- $post[$key] = self::sanitize_options($value);
205
- }
206
-
207
- $post['device_desktop'] = 'on';
208
- $post['device_mobile'] = 'on';
209
- update_option( 'mysticky_option_name', $post);
210
- $this->mysticky_clear_all_caches();
211
- echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Settings saved.','mystickymenu'). '</p></strong></div>';
212
- } else {
213
- wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
214
- echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
215
- }
216
- }
217
-
218
- $mysticky_options = get_option( 'mysticky_option_name');
219
- $is_old = get_option("has_sticky_header_old_version");
220
- $is_old = ($is_old == "yes")?true:false;
221
- $nonce = wp_create_nonce('mysticky_option_backend_update');
222
- $pro_url = "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
223
-
224
- $is_shown = get_option("mystickymenu_update_message");
225
- if($is_shown == 1) {
226
-
227
- include_once MYSTICKYMENU_PATH . '/update.php';
228
- } else {
229
-
230
- $option = get_option("mystickymenu_intro_box");
231
- if($option == "show") {
232
- include_once dirname(__FILE__) . "/mystickymenu-popup.php";
233
- }
234
- ?>
235
- <style>
236
- div#wpcontent {
237
- background: rgba(101,114,219,1);
238
- background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
239
- background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
240
- background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
241
- background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
242
- background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
243
- background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
244
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
245
- }
246
- </style>
247
- <div id="mystickymenu" class="wrap mystickymenu">
248
- <div class="sticky-header-menu">
249
- <ul>
250
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-welcomebar' ) ?>" ><?php _e('Welcome Bar', 'mystickymenu'); ?></a></li>
251
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-settings' ) ?>" class="active" ><?php _e('Sticky Menu', 'mystickymenu'); ?></a></li>
252
-
253
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-upgrade' ) ?>"><?php _e('Upgrade to Pro', 'mystickymenu'); ?></a></li>
254
- </ul>
255
- </div>
256
- <div id="sticky-header-settings" class="sticky-header-content">
257
- <div class="mystickymenu-heading">
258
- <div class="myStickymenu-header-title">
259
- <h3><?php esc_attr_e('How To Make a Sticky Header', 'mystickymenu'); ?></h3>
260
- </div>
261
- <p><?php _e("Add sticky menu / header to any theme. <br />Simply change 'Sticky Class' to HTML element class desired to be sticky (div id can be used as well).", 'mystickymenu'); ?></p>
262
- </div>
263
-
264
- <form class="mysticky-form" method="post" action="#">
265
- <div class="mystickymenu-content-section sticky-class-sec">
266
- <table>
267
- <tr>
268
- <td>
269
- <label class="mysticky_title"><?php _e("Sticky Class", 'mystickymenu')?></label>
270
- <br /><br />
271
- <?php $nav_menus = wp_get_nav_menus();
272
- $menu_locations = get_nav_menu_locations();
273
- $locations = get_registered_nav_menus();
274
- ?>
275
- <select name="mysticky_option_name[mysticky_class_id_selector]" id="mystickymenu-select">
276
- <option value=""><?php _e( 'Select Sticky Menu', 'mystickymenu' ); ?></option>
277
-
278
- <?php foreach ( (array) $nav_menus as $_nav_menu ) : ?>
279
- <option value="<?php echo esc_attr( $_nav_menu->slug ); ?>" <?php selected( $_nav_menu->slug, $mysticky_options['mysticky_class_id_selector'] ); ?>>
280
- <?php
281
- echo esc_html( $_nav_menu->name );
282
-
283
- if ( ! empty( $menu_locations ) && in_array( $_nav_menu->term_id, $menu_locations ) ) {
284
- $locations_assigned_to_this_menu = array();
285
- foreach ( array_keys( $menu_locations, $_nav_menu->term_id ) as $menu_location_key ) {
286
- if ( isset( $locations[ $menu_location_key ] ) ) {
287
- $locations_assigned_to_this_menu[] = $locations[ $menu_location_key ];
288
- }
289
- }
290
-
291
- /**
292
- * Filters the number of locations listed per menu in the drop-down select.
293
- *
294
- * @since 3.6.0
295
- *
296
- * @param int $locations Number of menu locations to list. Default 3.
297
- */
298
- $assigned_locations = array_slice( $locations_assigned_to_this_menu, 0, absint( apply_filters( 'wp_nav_locations_listed_per_menu', 3 ) ) );
299
-
300
- // Adds ellipses following the number of locations defined in $assigned_locations.
301
- if ( ! empty( $assigned_locations ) ) {
302
- printf(
303
- ' (%1$s%2$s)',
304
- implode( ', ', $assigned_locations ),
305
- count( $locations_assigned_to_this_menu ) > count( $assigned_locations ) ? ' &hellip;' : ''
306
- );
307
- }
308
- }
309
- ?>
310
- </option>
311
- <?php endforeach; ?>
312
- <option value="custom" <?php selected( 'custom', $mysticky_options['mysticky_class_id_selector'] ); ?>><?php esc_html_e( 'Other Class Or ID', 'mystickymenu' );?></option>
313
- </select>
314
-
315
- <input type="text" size="18" id="mysticky_class_selector" class="mystickyinput" name="mysticky_option_name[mysticky_class_selector]" value="<?php echo $mysticky_options['mysticky_class_selector'];?>" />
316
-
317
- <p class="description mystuckymenu-class-id">
318
- <span class="dashicons dashicons-info"></span>&nbsp;
319
- <span>
320
- <?php echo sprintf(__('Need help finding your ID/Class? Install <a href="%s" target="_blank">CSS Peeper</a> to quickly get your navigation menu ID/Class. Here\'s a quick <a href="%s" target="_blank">video <span class="dashicons dashicons-controls-play"></span></a> of how you can do it.', 'mystickymenu'), 'https://chrome.google.com/webstore/detail/css-peeper/mbnbehikldjhnfehhnaidhjhoofhpehk?hl=en', 'https://www.youtube.com/watch?v=uuNqSkBPnLU');?>
321
- </span>
322
- </p>
323
- </td>
324
- <td>
325
- <div class="mysticky_device_upgrade">
326
- <label class="mysticky_title"><?php _e("Devices", 'mystickymenu')?></label>
327
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
328
-
329
- <ul class="mystickymenu-input-multicheckbox">
330
- <li>
331
- <label>
332
- <input id="disable_css" name="mysticky_option_name[device_desktop]" type="checkbox" checked disabled />
333
- <?php _e( 'Desktop', 'mystickymenu' );?>
334
- </label>
335
- </li>
336
- <li>
337
- <label>
338
- <input id="disable_css" name="mysticky_option_name[device_mobile]" type="checkbox" checked disabled />
339
- <?php _e( 'Mobile', 'mystickymenu' );?>
340
- </label>
341
- </li>
342
- </ul>
343
- </div>
344
- </td>
345
- </tr>
346
- </table>
347
- </div>
348
-
349
-
350
- <div class="mystickymenu-content-section">
351
- <h3><?php esc_html_e( 'Settings', 'mystickymenu' );?></h3>
352
- <table class="form-table">
353
- <tr>
354
- <td>
355
- <label for="myfixed_zindex" class="mysticky_title"><?php _e("Sticky z-index", 'mystickymenu')?></label>
356
- </td>
357
- <td>
358
- <input type="number" min="0" max="2147483647" step="1" class="mysticky-number" id="myfixed_zindex" name="mysticky_option_name[myfixed_zindex]" value="<?php echo $mysticky_options['myfixed_zindex'];?>" />
359
- </td>
360
- <td>
361
- <label class="mysticky_title myssticky-remove-hand"><?php _e("Fade or slide effect", 'mystickymenu')?></label>
362
- </td>
363
- <td>
364
- <label>
365
- <input name="mysticky_option_name[myfixed_fade]" value= "slide" type="radio" <?php checked( @$mysticky_options['myfixed_fade'], 'slide' );?> />
366
- <?php _e("Slide", 'mystickymenu'); ?>
367
- </label>
368
- <label>
369
- <input name="mysticky_option_name[myfixed_fade]" value="fade" type="radio" <?php checked( @$mysticky_options['myfixed_fade'], 'fade' );?> />
370
- <?php _e("Fade", 'mystickymenu'); ?>
371
- </label>
372
- </td>
373
- </tr>
374
- <tr>
375
- <td>
376
- <label for="myfixed_disable_small_screen" class="mysticky_title"><?php _e("Disable at Small Screen Sizes", 'mystickymenu')?></label>
377
- <p class="description"><?php esc_attr_e('Less than chosen screen width, set 0 to disable','mystickymenu');?></p>
378
- </td>
379
- <td>
380
- <div class="px-wrap">
381
- <input type="number" class="" min="0" step="1" id="myfixed_disable_small_screen" name="mysticky_option_name[myfixed_disable_small_screen]" value="<?php echo $mysticky_options['myfixed_disable_small_screen'];?>" />
382
- <span class="input-px">PX</span>
383
- </div>
384
- </td>
385
- <td>
386
- <label for="mysticky_active_on_height" class="mysticky_title"><?php _e("Make visible on Scroll", 'mystickymenu')?></label>
387
- <p class="description"><?php esc_attr_e('If set to 0 auto calculate will be used.','mystickymenu');?></p>
388
- </td>
389
- <td>
390
- <div class="px-wrap">
391
- <input type="number" class="small-text" min="0" step="1" id="mysticky_active_on_height" name="mysticky_option_name[mysticky_active_on_height]" value="<?php echo $mysticky_options['mysticky_active_on_height'];?>" />
392
- <span class="input-px">PX</span>
393
- </div>
394
- </td>
395
- </tr>
396
- <tr>
397
- <td>
398
- <label for="mysticky_active_on_height_home" class="mysticky_title"><?php _e("Make visible on Scroll at homepage", 'mystickymenu')?></label>
399
- <p class="description"><?php _e( 'If set to 0 it will use initial Make visible on Scroll value.', 'mystickymenu' );?></p>
400
- </td>
401
- <td>
402
- <div class="px-wrap">
403
- <input type="number" class="small-text" min="0" step="1" id="mysticky_active_on_height_home" name="mysticky_option_name[mysticky_active_on_height_home]" value="<?php echo $mysticky_options['mysticky_active_on_height_home'];?>" />
404
- <span class="input-px">PX</span>
405
- </div>
406
- </td>
407
- <td>
408
- <label for="myfixed_bgcolor" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Background Color", 'mystickymenu')?></label>
409
- </td>
410
- <td>
411
- <input type="text" id="myfixed_bgcolor" name="mysticky_option_name[myfixed_bgcolor]" class="my-color-field" data-alpha="true" value="<?php echo $mysticky_options['myfixed_bgcolor'];?>" />
412
-
413
- </td>
414
- </tr>
415
- <tr>
416
- <td>
417
- <label for="myfixed_transition_time" class="mysticky_title"><?php _e("Sticky Transition Time", 'mystickymenu')?></label>
418
- </td>
419
- <td>
420
- <input type="number" class="small-text" min="0" step="0.1" id="myfixed_transition_time" name="mysticky_option_name[myfixed_transition_time]" value="<?php echo $mysticky_options['myfixed_transition_time'];?>" />
421
- </td>
422
- <td>
423
- <label for="myfixed_textcolor" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Text Color", 'mystickymenu')?></label>
424
- </td>
425
- <td>
426
- <input type="text" id="myfixed_textcolor" name="mysticky_option_name[myfixed_textcolor]" class="my-color-field" data-alpha="true" value="<?php echo (isset($mysticky_options['myfixed_textcolor'])) ? $mysticky_options['myfixed_textcolor'] : '';?>" />
427
-
428
- </td>
429
- </tr>
430
- <tr>
431
- <td>
432
- <label for="myfixed_opacity" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Opacity", 'mystickymenu')?></label>
433
- <p class="description"><?php _e( 'numbers 1-100.', 'mystickymenu');?></p>
434
- </td>
435
- <td>
436
- <input type="hidden" class="small-text mysticky-slider" min="0" step="1" max="100" id="myfixed_opacity" name="mysticky_option_name[myfixed_opacity]" value="<?php echo $mysticky_options['myfixed_opacity'];?>" />
437
- <div id="slider">
438
- <div id="custom-handle" class="ui-slider-handle"><?php //echo $mysticky_options['myfixed_opacity'];?></div>
439
- </div>
440
-
441
- </td>
442
- </tr>
443
- </table>
444
- </div>
445
-
446
- <div class="mystickymenu-content-section <?php echo !$is_old?"mystickymenu-content-upgrade":""?>" >
447
-
448
- <div class="mystickymenu-content-option">
449
- <label class="mysticky_title css-style-title"><?php _e("Hide on Scroll Down", 'mystickymenu'); ?></label>
450
- <?php if(!$is_old) { ?><span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span><?php } ?>
451
- <p>
452
- <label class="mysticky_text">
453
- <input id="myfixed_disable_scroll_down" name="mysticky_option_name[myfixed_disable_scroll_down]" type="checkbox" <?php checked( @$mysticky_options['myfixed_disable_scroll_down'], 'on' );?> <?php echo !$is_old?"disabled":"" ?> />
454
- <?php _e("Disable sticky menu at scroll down", 'mystickymenu'); ?>
455
- </label>
456
- </p>
457
- </div>
458
- <div class="mysticky-page-target-setting mystickymenu-content-option">
459
- <label class="mysticky_title"><?php esc_attr_e('Page targeting', 'myStickymenu'); ?></label>
460
- <div class="mystickymenu-input-section mystickymenu-page-target-wrap">
461
- <div class="mysticky-welcomebar-setting-content-right">
462
- <div class="mysticky-page-options" id="mysticky-welcomebar-page-options">
463
- <?php $page_option = (isset($mysticky_options['mysticky_page_settings'])) ? $mysticky_options['mysticky_page_settings'] : array();
464
- $url_options = array(
465
- 'page_contains' => 'pages that contain',
466
- 'page_has_url' => 'a specific page',
467
- 'page_start_with' => 'pages starting with',
468
- 'page_end_with' => 'pages ending with',
469
- );
470
-
471
- if(!empty($page_option) && is_array($page_option)) {
472
- $count = 0;
473
- foreach($page_option as $k=>$option) {
474
- $count++;
475
- ?>
476
- <div class="mysticky-page-option <?php echo $k==count($page_option)?"last":""; ?>">
477
- <div class="url-content">
478
- <div class="mysticky-welcomebar-url-select">
479
- <select name="mysticky_option_name[mysticky_page_settings][<?php echo $count; ?>][shown_on]" id="url_shown_on_<?php echo $count ?>_option">
480
- <option value="show_on" <?php echo $option['shown_on']=="show_on"?"selected":"" ?> ><?php esc_html_e( 'Show on', 'mysticky' )?></option>
481
- <option value="not_show_on" <?php echo $option['shown_on']=="not_show_on"?"selected":"" ?>><?php esc_html_e( "Don't show on", "mysticky" );?></option>
482
- </select>
483
- </div>
484
- <div class="mysticky-welcomebar-url-option">
485
- <select class="mysticky-url-options" name="mysticky_option_name[mysticky_page_settings][<?php echo $count; ?>][option]" id="url_rules_<?php echo $count ?>_option">
486
- <option disabled value=""><?php esc_html_e( "Select Rule", "mysticky" );?></option>
487
- <?php foreach($url_options as $key=>$value) {
488
- $selected = ( isset($option['option']) && $option['option']==$key )?" selected='selected' ":"";
489
- echo '<option '.$selected.' value="'.$key.'">'.$value.'</option>';
490
- } ?>
491
- </select>
492
- </div>
493
- <div class="mysticky-welcomebar-url-box">
494
- <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
495
- </div>
496
- <div class="mysticky-welcomebar-url-values">
497
- <input type="text" value="<?php echo $option['value'] ?>" name="mysticky_option_name[mysticky_page_settings][<?php echo $count; ?>][value]" id="url_rules_<?php echo $count; ?>_value" />
498
- </div>
499
- <div class="mysticky-welcomebar-url-buttons">
500
- <a class="mysticky-remove-rule" href="javascript:;">x</a>
501
- </div>
502
- <div class="clear"></div>
503
- </div>
504
- </div>
505
- <?php
506
- }
507
- }
508
- ?>
509
- </div>
510
- <a href="javascript:void(0);" class="create-rule" id="mysticky_create-rule"><?php esc_html_e( "Add Rule", "mystickymenu" );?></a>
511
- </div>
512
- <input type="hidden" id="mysticky_welcomebar_site_url" value="<?php echo site_url("/") ?>" />
513
- <div class="mysticky-page-options-html" style="display: none;">
514
- <div class="mysticky-page-option">
515
- <div class="url-content">
516
- <div class="mysticky-welcomebar-url-select">
517
- <select name="" id="url_shown_on___count___option">
518
- <option value="show_on"><?php esc_html_e("Show on", "mysticky" );?></option>
519
- <option value="not_show_on"><?php esc_html_e("Don't show on", "mysticky" );?></option>
520
- </select>
521
- </div>
522
- <div class="mysticky-welcomebar-url-option">
523
- <select class="mysticky-url-options" name="" id="url_rules___count___option">
524
- <option selected="selected" disabled value=""><?php esc_html_e("Select Rule", "mysticky" );?></option>
525
- <?php foreach($url_options as $key=>$value) {
526
- echo '<option value="'.$key.'">'.$value.'</option>';
527
- } ?>
528
- </select>
529
- </div>
530
- <div class="mysticky-welcomebar-url-box">
531
- <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
532
- </div>
533
- <div class="mysticky-welcomebar-url-values">
534
- <input type="text" value="" name="mysticky_option_name[mysticky_page_settings][__count__][value]" id="url_rules___count___value" disabled />
535
- </div>
536
- <div class="clear"></div>
537
- </div>
538
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
539
- </div>
540
- </div>
541
- </div>
542
- </div>
543
- <div class="mystickymenu-content-option">
544
- <label class="mysticky_title css-style-title"><?php _e("CSS style", 'mystickymenu'); ?></label>
545
- <span class="mysticky_text"><?php _e( 'Add/edit CSS style. Leave it blank for default style.', 'mystickymenu');?></span>
546
- <div class="mystickymenu-input-section">
547
- <textarea type="text" rows="4" cols="60" id="myfixed_cssstyle" name="mysticky_option_name[myfixed_cssstyle]" <?php echo !$is_old?"disabled":"" ?> ><?php echo @$mysticky_options['myfixed_cssstyle'];?></textarea>
548
- </div>
549
- <p><?php esc_html_e( "CSS ID's and Classes to use:", "mystickymenu" );?></p>
550
- <p>
551
- #mysticky-wrap { }<br/>
552
- #mysticky-nav.wrapfixed { }<br/>
553
- #mysticky-nav.wrapfixed.up { }<br/>
554
- #mysticky-nav.wrapfixed.down { }<br/>
555
- #mysticky-nav .navbar { }<br/>
556
- #mysticky-nav .navbar.myfixed { }<br/>
557
- </p>
558
- </div>
559
-
560
- <div class="mystickymenu-content-option">
561
- <label class="mysticky_title" for="disable_css"><?php _e("Disable CSS style", 'mystickymenu'); ?></label>
562
- <div class="mystickymenu-input-section">
563
- <label>
564
- <input id="disable_css" name="mysticky_option_name[disable_css]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['disable_css'], 'on' );?> />
565
- <?php _e( 'Use this option if you plan to include CSS Style manually', 'mystickymenu' );?>
566
- </label>
567
- </div>
568
- <p></p>
569
- </div>
570
-
571
- <div class="mystickymenu-content-option">
572
- <label class="mysticky_title"><?php _e("Disable at", 'mystickymenu'); ?></label>
573
- <?php if(!$is_old) { ?><span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span><?php } ?>
574
- <div class="mystickymenu-input-section">
575
- <ul class="mystickymenu-input-multicheckbox">
576
- <li>
577
- <label>
578
- <input id="mysticky_disable_at_front_home" name="mysticky_option_name[mysticky_disable_at_front_home]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_front_home'], 'on' );?>/>
579
- <span><?php esc_attr_e('front page', 'mystickymenu' );?></span>
580
- </label>
581
- </li>
582
- <li>
583
- <label>
584
- <input id="mysticky_disable_at_blog" name="mysticky_option_name[mysticky_disable_at_blog]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_blog'], 'on' );?>/>
585
- <span><?php esc_attr_e('blog page', 'mystickymenu' );?></span>
586
- </label>
587
- </li>
588
- <li>
589
- <label>
590
- <input id="mysticky_disable_at_page" name="mysticky_option_name[mysticky_disable_at_page]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_page'], 'on' );?> />
591
- <span><?php esc_attr_e('pages', 'mystickymenu' );?> </span>
592
- </label>
593
- </li>
594
- <li>
595
- <label>
596
- <input id="mysticky_disable_at_tag" name="mysticky_option_name[mysticky_disable_at_tag]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_tag'], 'on' );?> />
597
- <span><?php esc_attr_e('tags', 'mystickymenu' );?> </span>
598
- </label>
599
- </li>
600
- <li>
601
- <label>
602
- <input id="mysticky_disable_at_category" name="mysticky_option_name[mysticky_disable_at_category]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_category'], 'on' );?>/>
603
- <span><?php esc_attr_e('categories', 'mystickymenu' );?></span>
604
- </label>
605
- </li>
606
- <li>
607
- <label>
608
- <input id="mysticky_disable_at_single" name="mysticky_option_name[mysticky_disable_at_single]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_single'], 'on' );?> />
609
- <span><?php esc_attr_e('posts', 'mystickymenu' );?> </span>
610
- </label>
611
- </li>
612
- <li>
613
- <label>
614
- <input id="mysticky_disable_at_archive" name="mysticky_option_name[mysticky_disable_at_archive]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_archive'], 'on' );?> />
615
- <span><?php esc_attr_e('archives', 'mystickymenu' );?> </span>
616
- </label>
617
- </li>
618
- <li>
619
- <label>
620
- <input id="mysticky_disable_at_search" name="mysticky_option_name[mysticky_disable_at_search]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_search'], 'on' );?> />
621
- <span><?php esc_attr_e('search', 'mystickymenu' );?> </span>
622
- </label>
623
- </li>
624
- <li>
625
- <label>
626
- <input id="mysticky_disable_at_404" name="mysticky_option_name[mysticky_disable_at_404]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_404'], 'on' );?>/>
627
- <span><?php esc_attr_e('404', 'mystickymenu' );?> </span>
628
- </label>
629
- </li>
630
- </ul>
631
-
632
- <?php
633
- if (isset ( $mysticky_options['mysticky_disable_at_page'] ) == true ) {
634
- echo '<div class="mystickymenu-input-section">';
635
- _e('<span class="description"><strong>Except for this pages:</strong> </span>', 'mystickymenu');
636
-
637
- printf(
638
- '<input type="text" size="26" class="mystickymenu_normal_text" id="mysticky_enable_at_pages" name="mysticky_option_name[mysticky_enable_at_pages]" value="%s" /> ',
639
- isset( $mysticky_options['mysticky_enable_at_pages'] ) ? esc_attr( $mysticky_options['mysticky_enable_at_pages']) : ''
640
- );
641
-
642
- _e('<span class="description">Comma separated list of pages to enable. It should be page name, id or slug. Example: about-us, 1134, Contact Us. Leave blank if you realy want to disable sticky menu for all pages.</span>', 'mystickymenu');
643
- echo '</div>';
644
- }
645
-
646
- if (isset ( $mysticky_options['mysticky_disable_at_single'] ) == true ) {
647
-
648
- echo '<div class="mystickymenu-input-section">';
649
- _e('<span class="description"><strong>Except for this posts:</strong> </span>', 'mystickymenu');
650
-
651
- printf(
652
- '<input type="text" size="26" class="mystickymenu_normal_text" id="mysticky_enable_at_posts" name="mysticky_option_name[mysticky_enable_at_posts]" value="%s" /> ',
653
- isset( $mysticky_options['mysticky_enable_at_posts'] ) ? esc_attr( $mysticky_options['mysticky_enable_at_posts']) : ''
654
- );
655
-
656
- _e('<span class="description">Comma separated list of posts to enable. It should be post name, id or slug. Example: about-us, 1134, Contact Us. Leave blank if you realy want to disable sticky menu for all posts.</span>', 'mystickymenu');
657
- echo '</div>';
658
-
659
- }
660
- ?>
661
- <p></p>
662
- </div>
663
- </div>
664
-
665
- </div>
666
- <p class="submit">
667
- <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_attr_e('Save', 'mystickymenu');?>">
668
- </p>
669
- <input type="hidden" name="nonce" value="<?php echo $nonce ?>">
670
- </form>
671
- <form class="mysticky-hideformreset" method="post" action="">
672
- <input name="reset_mysticky_options" class="button button-secondary confirm" type="submit" value="<?php esc_attr_e('Reset', 'mystickymenu');?>" >
673
- <input type="hidden" name="action" value="reset" />
674
- <?php $nonce = wp_create_nonce('mysticky_option_backend_reset_nonce'); ?>
675
- <input type="hidden" name="nonce" value="<?php echo $nonce ?>">
676
- </form>
677
- <p class="myStickymenu-review"><a href="https://wordpress.org/support/plugin/mystickymenu/reviews/" target="_blank"><?php esc_attr_e('Leave a review','mystickymenu'); ?></a></p>
678
- </div>
679
- </div>
680
- <?php }
681
- }
682
- public function mystickystickymenu_admin_new_welcomebar_page() {
683
- ?>
684
- <div id="mystickymenu" class="wrap mystickymenu mystickymenu-new-widget-wrap">
685
- <?php include_once dirname(__FILE__) . '/mystickymeny-new-welcomebar.php';?>
686
- </div>
687
- <?php
688
- }
689
-
690
- public function mystickystickymenu_admin_welcomebar_page() {
691
-
692
- $is_shown = get_option("mystickymenu_update_message");
693
- if($is_shown == 1) {
694
-
695
- include_once MYSTICKYMENU_PATH . '/update.php';
696
- return;
697
- }
698
-
699
- /* welcome bar save data */
700
- if (isset($_POST['mysticky_option_welcomebar']) && !empty($_POST['mysticky_option_welcomebar']) && isset($_POST['nonce'])) {
701
- if(!empty($_POST['nonce']) && wp_verify_nonce($_POST['nonce'], 'mysticky_option_welcomebar_update')) {
702
- $mysticky_option_welcomebar = filter_var_array( $_POST['mysticky_option_welcomebar'], FILTER_SANITIZE_STRING );
703
- $mysticky_option_welcomebar['mysticky_welcomebar_bar_text'] = wp_kses_post($_POST['mysticky_option_welcomebar']['mysticky_welcomebar_bar_text']);
704
- $mysticky_option_welcomebar['mysticky_welcomebar_height'] = 60;
705
- $mysticky_option_welcomebar['mysticky_welcomebar_device_desktop'] = 'desktop';
706
- $mysticky_option_welcomebar['mysticky_welcomebar_device_mobile'] = 'mobile';
707
- $mysticky_option_welcomebar['mysticky_welcomebar_trigger'] = 'after_a_few_seconds';
708
- $mysticky_option_welcomebar['mysticky_welcomebar_triggersec'] = '0';
709
- $mysticky_option_welcomebar['mysticky_welcomebar_expirydate'] = '';
710
- $mysticky_option_welcomebar['mysticky_welcomebar_page_settings'] = '';
711
- update_option( 'mysticky_option_welcomebar', $mysticky_option_welcomebar);
712
- $this->mysticky_clear_all_caches();
713
- echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Settings saved.','mystickymenu'). '</p></strong></div>';
714
- } else {
715
- wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
716
- echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
717
- }
718
- }
719
- if (isset($_POST['mysticky_welcomebar_reset']) && !empty($_POST['mysticky_welcomebar_reset']) && isset($_POST['nonce_reset'])) {
720
- if(!empty($_POST['nonce_reset']) && wp_verify_nonce($_POST['nonce_reset'], 'mysticky_option_welcomebar_reset')) {
721
- $mysticky_option_welcomebar_reset = mysticky_welcomebar_pro_widget_default_fields();
722
- update_option( 'mysticky_option_welcomebar', $mysticky_option_welcomebar_reset);
723
- $this->mysticky_clear_all_caches();
724
- echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Reset Settings saved.','mystickymenu'). '</p></strong></div>';
725
- } else {
726
- wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
727
- echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
728
- }
729
- }
730
-
731
- $mysticky_options = get_option( 'mysticky_option_name');
732
- $is_old = get_option("has_sticky_header_old_version");
733
- $is_old = ($is_old == "yes")?true:false;
734
- $nonce = wp_create_nonce('mysticky_option_backend_update');
735
- $pro_url = "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
736
-
737
- ?>
738
- <style>
739
- div#wpcontent {
740
- background: rgba(101,114,219,1);
741
- background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
742
- background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
743
- background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
744
- background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
745
- background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
746
- background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
747
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
748
- }
749
- </style>
750
- <div id="mystickymenu" class="wrap mystickymenu">
751
- <div class="sticky-header-menu">
752
- <ul>
753
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-welcomebar' ) ?>" class="active" ><?php _e('Welcome Bar', 'mystickymenu'); ?></a></li>
754
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-settings' ) ?>"><?php _e('Sticky Menu', 'mystickymenu'); ?></a></li>
755
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-upgrade' ) ?>"><?php _e('Upgrade to Pro', 'mystickymenu'); ?></a></li>
756
- </ul>
757
- </div>
758
- <div id="sticky-header-welcome-bar" class="sticky-header-content">
759
- <?php mysticky_welcome_bar_backend(); ?>
760
- </div>
761
- </div>
762
- <?php
763
- }
764
- public function mystickymenu_recommended_plugins() {
765
- include_once 'recommended-plugins.php';
766
- }
767
- public function mystickymenu_admin_upgrade_to_pro() {
768
- $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
769
- ?>
770
- <style>
771
- div#wpcontent {
772
- background: rgba(101,114,219,1);
773
- background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
774
- background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
775
- background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
776
- background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
777
- background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
778
- background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
779
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
780
- }
781
- </style>
782
- <div id="mystickymenu" class="wrap mystickymenu">
783
- <div class="sticky-header-menu">
784
- <ul>
785
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-welcomebar' ) ?>" ><?php _e('Welcome Bar', 'mystickymenu'); ?></a></li>
786
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-settings' ) ?>"><?php _e('Sticky Menu', 'mystickymenu'); ?></a></li>
787
- <li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-upgrade' ) ?>" class="active" ><?php _e('Upgrade to Pro', 'mystickymenu'); ?></a></li>
788
- </ul>
789
- </div>
790
- <?php include_once "upgrade-to-pro.php"; ?>
791
- </div>
792
- <?php
793
- }
794
-
795
- public function mysticky_default_options() {
796
-
797
- global $options;
798
- $menu_locations = get_nav_menu_locations();
799
- $menu_object = isset($menu_locations['menu-1']) ? wp_get_nav_menu_object( $menu_locations['menu-1'] ) : array();
800
-
801
- if ( is_object($menu_object) && $menu_object->slug != '' ) {
802
- $mysticky_class_id_selector = $menu_object->slug;
803
- } else {
804
- $mysticky_class_id_selector = 'custom';
805
- }
806
-
807
- $mystickyClass = '.navbar';
808
- $template_name = get_template();
809
- switch( $template_name ){
810
- case 'ashe':
811
- $mysticky_class_id_selector = 'custom';
812
- $mystickyClass = '#main-nav';
813
- break;
814
- case 'astra':
815
- case 'hello-elementor':
816
- case 'sydney':
817
- case 'twentysixteen':
818
- $mysticky_class_id_selector = 'custom';
819
- $mystickyClass = 'header.site-header';
820
- break;
821
- case 'generatepress':
822
- $mysticky_class_id_selector = 'custom';
823
- $mystickyClass = 'nav.main-navigation';
824
- break;
825
- case 'transportex':
826
- $mysticky_class_id_selector = 'custom';
827
- $mystickyClass = '.transportex-menu-full';
828
- break;
829
- case 'hestia':
830
- case 'neve':
831
- $mysticky_class_id_selector = 'custom';
832
- $mystickyClass = 'header.header';
833
- break;
834
- case 'mesmerize':
835
- $mysticky_class_id_selector = 'custom';
836
- $mystickyClass = '.navigation-bar';
837
- break;
838
- case 'oceanwp':
839
- $mysticky_class_id_selector = 'custom';
840
- $mystickyClass = 'header#site-header';
841
- break;
842
- case 'shapely':
843
- $mysticky_class_id_selector = 'custom';
844
- $mystickyClass = '#site-navigation';
845
- break;
846
- case 'storefront':
847
- $mysticky_class_id_selector = 'custom';
848
- $mystickyClass = '.storefront-primary-navigation';
849
- break;
850
- case 'twentynineteen':
851
- $mysticky_class_id_selector = 'custom';
852
- $mystickyClass = '#site-navigation';
853
- break;
854
- case 'twentyseventeen':
855
- $mysticky_class_id_selector = 'custom';
856
- $mystickyClass = '.navigation-top';
857
- break;
858
- default:
859
- break;
860
- }
861
-
862
-
863
- $default = array(
864
- 'mysticky_class_id_selector' => $mysticky_class_id_selector,
865
- 'mysticky_class_selector' => $mystickyClass,
866
- 'device_desktop' => 'on',
867
- 'device_mobile' => 'on',
868
- 'myfixed_zindex' => '99990',
869
- 'myfixed_bgcolor' => '#f7f5e7',
870
- 'myfixed_opacity' => '90',
871
- 'myfixed_transition_time' => '0.3',
872
- 'myfixed_disable_small_screen' => '0',
873
- 'myfixed_disable_large_screen' => '0',
874
- 'mysticky_active_on_height' => '0',
875
- 'mysticky_active_on_height_home'=> '0',
876
- 'myfixed_fade' => 'slide',
877
- 'myfixed_cssstyle' => '#mysticky-nav .myfixed { margin:0 auto; float:none; border:0px; background:none; max-width:100%; }'
878
- );
879
-
880
- if ( get_option('mysticky_option_name') == false && current_user_can( 'manage_options' ) ) {
881
- $status = get_option("sticky_header_status");
882
- if($status == false) {
883
- update_option("sticky_header_status", "done");
884
- update_option("has_sticky_header_old_version", "no");
885
- }
886
- update_option( 'mysticky_option_name', $default );
887
- } else {
888
- $status = get_option("sticky_header_status");
889
- if($status == false) {
890
- update_option("sticky_header_status", "done");
891
- update_option("has_sticky_header_old_version", "yes");
892
- }
893
- }
894
-
895
- if(isset($_POST['reset_mysticky_options']) && current_user_can( 'manage_options' )) {
896
- if(isset($_REQUEST['nonce']) && !empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mysticky_option_backend_reset_nonce')) {
897
- update_option('mysticky_option_name', $default);
898
- } else {
899
-
900
- }
901
- }
902
-
903
- if ( !get_option( 'update_mysticky_version_2_6') && current_user_can( 'manage_options' )) {
904
- $mysticky_option_name = get_option( 'mysticky_option_name' );
905
- $mysticky_option_name['mysticky_class_id_selector'] = 'custom';
906
- if ($mysticky_option_name['myfixed_fade'] == 'on'){
907
- $mysticky_option_name['myfixed_fade'] = 'slide';
908
- }else{
909
- $mysticky_option_name['myfixed_fade'] = 'fade';
910
- }
911
- update_option( 'mysticky_option_name', $mysticky_option_name );
912
- update_option( 'update_mysticky_version_2_6', true );
913
- }
914
- }
915
-
916
- /*
917
- * clear cache when any option is updated
918
- *
919
- */
920
- public function mysticky_clear_all_caches(){
921
-
922
- try {
923
- global $wp_fastest_cache;
924
-
925
- // if W3 Total Cache is being used, clear the cache
926
- if (function_exists('w3tc_flush_all')) {
927
- w3tc_flush_all();
928
- }
929
- /* if WP Super Cache is being used, clear the cache */
930
- if (function_exists('wp_cache_clean_cache')) {
931
- global $file_prefix, $supercachedir;
932
- if (empty($supercachedir) && function_exists('get_supercache_dir')) {
933
- $supercachedir = get_supercache_dir();
934
- }
935
- wp_cache_clean_cache($file_prefix);
936
- }
937
-
938
- if (class_exists('WpeCommon')) {
939
- //be extra careful, just in case 3rd party changes things on us
940
- if (method_exists('WpeCommon', 'purge_memcached')) {
941
- //WpeCommon::purge_memcached();
942
- }
943
- if (method_exists('WpeCommon', 'clear_maxcdn_cache')) {
944
- //WpeCommon::clear_maxcdn_cache();
945
- }
946
- if (method_exists('WpeCommon', 'purge_varnish_cache')) {
947
- //WpeCommon::purge_varnish_cache();
948
- }
949
- }
950
-
951
- if (method_exists('WpFastestCache', 'deleteCache') && !empty($wp_fastest_cache)) {
952
- $wp_fastest_cache->deleteCache();
953
- }
954
- if (function_exists('rocket_clean_domain')) {
955
- rocket_clean_domain();
956
- // Preload cache.
957
- if (function_exists('run_rocket_sitemap_preload')) {
958
- run_rocket_sitemap_preload();
959
- }
960
- }
961
-
962
- if (class_exists("autoptimizeCache") && method_exists("autoptimizeCache", "clearall")) {
963
- autoptimizeCache::clearall();
964
- }
965
-
966
- if (class_exists("LiteSpeed_Cache_API") && method_exists("autoptimizeCache", "purge_all")) {
967
- LiteSpeed_Cache_API::purge_all();
968
- }
969
-
970
- if ( class_exists( '\Hummingbird\Core\Utils' ) ) {
971
-
972
- $modules = \Hummingbird\Core\Utils::get_active_cache_modules();
973
- foreach ( $modules as $module => $name ) {
974
- $mod = \Hummingbird\Core\Utils::get_module( $module );
975
-
976
- if ( $mod->is_active() ) {
977
- if ( 'minify' === $module ) {
978
- $mod->clear_files();
979
- } else {
980
- $mod->clear_cache();
981
- }
982
- }
983
- }
984
- }
985
-
986
- } catch (Exception $e) {
987
- return 1;
988
- }
989
- }
990
-
991
- public function mystickymenu_deactivate() {
992
- global $pagenow;
993
-
994
- if ( 'plugins.php' !== $pagenow ) {
995
- return;
996
- }
997
- include dirname(__FILE__) . "/mystickymenu-deactivate-form.php";
998
- }
999
- public function mystickymenu_plugin_deactivate() {
1000
- global $current_user;
1001
- if ( ! current_user_can( 'manage_options' ) ) {
1002
- wp_die(0);
1003
- }
1004
- check_ajax_referer( 'mystickymenu_deactivate_nonce', 'nonce' );
1005
-
1006
- $postData = $_POST;
1007
- $errorCounter = 0;
1008
- $response = array();
1009
- $response['status'] = 0;
1010
- $response['message'] = "";
1011
- $response['valid'] = 1;
1012
- if(!isset($postData['reason']) || empty($postData['reason'])) {
1013
- $errorCounter++;
1014
- $response['message'] = "Please provide reason";
1015
- } else if(!isset($postData['reason']) || empty($postData['reason'])) {
1016
- $errorCounter++;
1017
- $response['message'] = "Please provide reason";
1018
- } else {
1019
- $nonce = $postData['nonce'];
1020
- if(!wp_verify_nonce($nonce, 'mystickymenu_deactivate_nonce')) {
1021
- $response['message'] = __("Your request is not valid", "mystickymenu");
1022
- $errorCounter++;
1023
- $response['valid'] = 0;
1024
- }
1025
- }
1026
- if($errorCounter == 0) {
1027
- global $current_user;
1028
- $plugin_info = get_plugin_data( dirname(__FILE__) . "/mystickymenu.php" );
1029
- $postData = $_POST;
1030
- $email = "none@none.none";
1031
-
1032
- if (isset($postData['email_id']) && !empty($postData['email_id']) && filter_var($postData['email_id'], FILTER_VALIDATE_EMAIL)) {
1033
- $email = $postData['email_id'];
1034
- }
1035
- $domain = site_url();
1036
- $user_name = $current_user->first_name . " " . $current_user->last_name;
1037
-
1038
- $response['status'] = 1;
1039
-
1040
- /* sending message to Crisp */
1041
- $post_message = array();
1042
-
1043
- $message_data = array();
1044
- $message_data['key'] = "Plugin";
1045
- $message_data['value'] = "My Sticky Menu";
1046
- $post_message[] = $message_data;
1047
-
1048
- $message_data = array();
1049
- $message_data['key'] = "Plugin Version";
1050
- $message_data['value'] = $plugin_info['Version'];
1051
- $post_message[] = $message_data;
1052
-
1053
- $message_data = array();
1054
- $message_data['key'] = "Domain";
1055
- $message_data['value'] = $domain;
1056
- $post_message[] = $message_data;
1057
-
1058
- $message_data = array();
1059
- $message_data['key'] = "Email";
1060
- $message_data['value'] = $email;
1061
- $post_message[] = $message_data;
1062
-
1063
- $message_data = array();
1064
- $message_data['key'] = "WordPress Version";
1065
- $message_data['value'] = esc_attr(get_bloginfo('version'));
1066
- $post_message[] = $message_data;
1067
-
1068
- $message_data = array();
1069
- $message_data['key'] = "PHP Version";
1070
- $message_data['value'] = PHP_VERSION;
1071
- $post_message[] = $message_data;
1072
-
1073
- $message_data = array();
1074
- $message_data['key'] = "Message";
1075
- $message_data['value'] = $postData['reason'];
1076
- $post_message[] = $message_data;
1077
-
1078
- $api_params = array(
1079
- 'domain' => $domain,
1080
- 'email' => $email,
1081
- 'url' => site_url(),
1082
- 'name' => $user_name,
1083
- 'message' => $post_message,
1084
- 'plugin' => "My Sticky Menu",
1085
- 'type' => "Uninstall",
1086
- );
1087
-
1088
- /* Sending message to Crisp API */
1089
- $crisp_response = wp_safe_remote_post("https://go.premio.io/crisp/crisp-send-message.php", array('body' => $api_params, 'timeout' => 15, 'sslverify' => true));
1090
-
1091
- if (is_wp_error($crisp_response)) {
1092
- wp_safe_remote_post("https://go.premio.io/crisp/crisp-send-message.php", array('body' => $api_params, 'timeout' => 15, 'sslverify' => false));
1093
- }
1094
- }
1095
- echo json_encode($response);
1096
- wp_die();
1097
- }
1098
- }
1099
-
1100
-
1101
-
1102
- class MyStickyMenuFrontend
1103
- {
1104
-
1105
- public function __construct()
1106
- {
1107
- add_action( 'wp_head', array( $this, 'mysticky_build_stylesheet_content' ) );
1108
- add_action( 'wp_enqueue_scripts', array( $this, 'mysticky_disable_at' ) );
1109
- }
1110
-
1111
- public function mysticky_build_stylesheet_content() {
1112
-
1113
- $mysticky_options = get_option( 'mysticky_option_name' );
1114
-
1115
- if (isset($mysticky_options['disable_css'])) {
1116
- //do nothing
1117
- } else {
1118
- $mysticky_options['disable_css'] = false;
1119
- }
1120
-
1121
- if ($mysticky_options ['disable_css'] == false ) {
1122
-
1123
- echo '<style id="mystickymenu" type="text/css">';
1124
- echo '#mysticky-nav { width:100%; position: static; }';
1125
- echo '#mysticky-nav.wrapfixed { position:fixed; left: 0px; margin-top:0px; z-index: '. $mysticky_options ['myfixed_zindex'] .'; -webkit-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -moz-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -o-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=' . $mysticky_options ['myfixed_opacity'] . ')"; filter: alpha(opacity=' . $mysticky_options ['myfixed_opacity'] . '); opacity:' . $mysticky_options ['myfixed_opacity'] / 100 . '; background-color: ' . $mysticky_options ['myfixed_bgcolor'] . ';}';
1126
-
1127
- echo '#mysticky-nav.wrapfixed .myfixed{ background-color: ' . $mysticky_options ['myfixed_bgcolor'] . '; position: relative;top: auto;left: auto;right: auto;}';
1128
-
1129
- if ( isset($mysticky_options ['myfixed_textcolor']) && $mysticky_options ['myfixed_textcolor'] != '' ) {
1130
- echo '#mysticky-nav.wrapfixed ul li.menu-item a { color: ' . $mysticky_options ['myfixed_textcolor'] . ';}';
1131
- }
1132
-
1133
-
1134
- if ($mysticky_options ['myfixed_disable_small_screen'] > 0 ){
1135
- //echo '@media (max-width: '.$mysticky_options['myfixed_disable_small_screen'].'px) {#mysticky-nav.wrapfixed {position: static;} }';
1136
- };
1137
- if ( !isset( $mysticky_options['myfixed_cssstyle'] ) ) {
1138
- echo '#mysticky-nav .myfixed { margin:0 auto; float:none; border:0px; background:none; max-width:100%; }';
1139
- }
1140
- if ( isset( $mysticky_options['myfixed_cssstyle'] ) && $mysticky_options['myfixed_cssstyle'] != '' ) {
1141
- echo $mysticky_options ['myfixed_cssstyle'];
1142
- }
1143
- echo '</style>';
1144
- $template_name = get_template();
1145
- ?>
1146
- <style type="text/css">
1147
- <?php if( $template_name == 'hestia' ) { ?>
1148
- #mysticky-nav.wrapfixed {box-shadow: 0 1px 10px -6px #0000006b,0 1px 10px 0 #0000001f,0 4px 5px -2px #0000001a;}
1149
- #mysticky-nav.wrapfixed .navbar {position: relative;background-color: transparent;box-shadow: none;}
1150
- <?php } ?>
1151
- <?php if( $template_name == 'shapely' ) { ?>
1152
- #mysticky-nav.wrapfixed #site-navigation {position: relative;}
1153
- <?php } ?>
1154
- <?php if( $template_name == 'storefront' ) { ?>
1155
- #mysticky-nav.wrapfixed > .site-header {margin-bottom: 0;}
1156
- #mysticky-nav.wrapfixed > .storefront-primary-navigation {padding: 10px 0;}
1157
- <?php } ?>
1158
- <?php if( $template_name == 'transportex' ) { ?>
1159
- #mysticky-nav.wrapfixed > .transportex-menu-full {margin: 0 auto;}
1160
- .transportex-headwidget #mysticky-nav.wrapfixed .navbar-wp {top: 0;}
1161
- <?php } ?>
1162
- <?php if( $template_name == 'twentynineteen' ) { ?>
1163
- #mysticky-nav.wrapfixed {padding: 10px;}
1164
- <?php } ?>
1165
- <?php if( $template_name == 'twentysixteen' ) { ?>
1166
- #mysticky-nav.wrapfixed > .site-header {padding-top: 0;padding-bottom: 0;}
1167
- <?php } ?>
1168
- <?php if( $template_name == 'twentytwenty' ) { ?>
1169
- #site-header {background: transparent;}
1170
- <?php } ?>
1171
- </style>
1172
- <?php
1173
- }
1174
- }
1175
-
1176
- public function mystickymenu_google_fonts_url() {
1177
- $welcomebar = get_option( 'mysticky_option_welcomebar' );
1178
-
1179
- $default_fonts = array('Arial', 'Tahoma', 'Verdana', 'Helvetica', 'Times New Roman', 'Trebuchet MS', 'Georgia' );
1180
- $fonts_url = '';
1181
- $fonts = array();
1182
- $font_args = array();
1183
- $base_url = "https://fonts.googleapis.com/css";
1184
- $fonts['family']['Lato'] = 'Lato:400,500,600,700';
1185
- if ( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] !='' && !in_array( $welcomebar['mysticky_welcomebar_font'], $default_fonts) ) {
1186
- $fonts['family'][$welcomebar['mysticky_welcomebar_font']] = $welcomebar['mysticky_welcomebar_font'] . ':400,500,600,700';
1187
- }
1188
- if ( isset($welcomebar['mysticky_welcomebar_btnfont']) && $welcomebar['mysticky_welcomebar_btnfont'] !='' && !in_array( $welcomebar['mysticky_welcomebar_btnfont'], $default_fonts) ) {
1189
- $fonts['family'][$welcomebar['mysticky_welcomebar_btnfont']] = $welcomebar['mysticky_welcomebar_btnfont'] . ':400,500,600,700';
1190
- }
1191
-
1192
- /* Prepapre URL if font family defined. */
1193
- if( !empty( $fonts['family'] ) ) {
1194
-
1195
- /* format family to string */
1196
- if( is_array($fonts['family']) ){
1197
- $fonts['family'] = implode( '|', $fonts['family'] );
1198
- }
1199
-
1200
- $font_args['family'] = urlencode( trim( $fonts['family'] ) );
1201
-
1202
- if( !empty( $fonts['subsets'] ) ){
1203
-
1204
- /* format subsets to string */
1205
- if( is_array( $fonts['subsets'] ) ){
1206
- $fonts['subsets'] = implode( ',', $fonts['subsets'] );
1207
- }
1208
-
1209
- $font_args['subsets'] = urlencode( trim( $fonts['subsets'] ) );
1210
- }
1211
-
1212
- $fonts_url = add_query_arg( $font_args, $base_url );
1213
- }
1214
-
1215
- return esc_url_raw( $fonts_url );
1216
- }
1217
-
1218
- public function mystickymenu_script() {
1219
-
1220
- $mysticky_options = get_option( 'mysticky_option_name' );
1221
-
1222
- if ( is_admin_bar_showing() ) {
1223
- $top = "true";
1224
- } else {
1225
- $top = "false";
1226
- }
1227
-
1228
- $welcomebar = get_option( 'mysticky_option_welcomebar' );
1229
- if ( isset($welcomebar['mysticky_welcomebar_enable']) && $welcomebar['mysticky_welcomebar_enable'] == 1 ) {
1230
- wp_enqueue_style('google-fonts', $this->mystickymenu_google_fonts_url(),array(), MYSTICKY_VERSION );
1231
- }
1232
-
1233
- // needed for update 1.7 => 1.8 ... will be removed in the future ()
1234
- if (isset($mysticky_options['mysticky_active_on_height_home'])) {
1235
- //do nothing
1236
- } else {
1237
- $mysticky_options['mysticky_active_on_height_home'] = $mysticky_options['mysticky_active_on_height'];
1238
- }
1239
-
1240
-
1241
- if ($mysticky_options['mysticky_active_on_height_home'] == 0 ) {
1242
- $mysticky_options['mysticky_active_on_height_home'] = $mysticky_options['mysticky_active_on_height'];
1243
- }
1244
-
1245
-
1246
- if ( is_front_page() && is_home() ) {
1247
-
1248
- $mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
1249
-
1250
- } elseif ( is_front_page()){
1251
-
1252
- $mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
1253
-
1254
- }
1255
- wp_register_script('detectmobilebrowser', plugins_url( 'js/detectmobilebrowser.js', __FILE__ ), array('jquery'), MYSTICKY_VERSION, true);
1256
- wp_enqueue_script( 'detectmobilebrowser' );
1257
-
1258
- wp_register_script('mystickymenu', plugins_url( 'js/mystickymenu.min.js', __FILE__ ), array('jquery'), MYSTICKY_VERSION, true);
1259
- wp_enqueue_script( 'mystickymenu' );
1260
-
1261
- $myfixed_disable_scroll_down = isset($mysticky_options['myfixed_disable_scroll_down']) ? $mysticky_options['myfixed_disable_scroll_down'] : 'false';
1262
- $mystickyTransition = isset($mysticky_options['myfixed_fade']) ? $mysticky_options['myfixed_fade'] : 'fade';
1263
- $mystickyDisableLarge = isset($mysticky_options['myfixed_disable_large_screen']) ? $mysticky_options['myfixed_disable_large_screen'] : '0';
1264
-
1265
- $mystickyClass = ( $mysticky_options['mysticky_class_id_selector'] != 'custom') ? '.menu-' . $mysticky_options['mysticky_class_id_selector'] .'-container' : $mysticky_options['mysticky_class_selector'];
1266
-
1267
- if ( $mysticky_options['mysticky_class_id_selector'] != 'custom' ) {
1268
- $template_name = get_template();
1269
- switch( $template_name ){
1270
- case 'ashe':
1271
- $mystickyClass = '#main-nav';
1272
- break;
1273
- case 'astra':
1274
- case 'hello-elementor':
1275
- case 'sydney':
1276
- case 'twentysixteen':
1277
- $mystickyClass = 'header.site-header';
1278
- break;
1279
- case 'generatepress':
1280
- $mystickyClass = 'nav.main-navigation';
1281
- break;
1282
- case 'transportex':
1283
- $mystickyClass = '.transportex-menu-full';
1284
- break;
1285
- case 'hestia':
1286
- case 'neve':
1287
- $mystickyClass = 'header.header';
1288
- break;
1289
- case 'mesmerize':
1290
- $mystickyClass = '.navigation-bar';
1291
- break;
1292
- case 'oceanwp':
1293
- $mystickyClass = 'header#site-header';
1294
- break;
1295
- case 'shapely':
1296
- $mystickyClass = '#site-navigation';
1297
- break;
1298
- case 'storefront':
1299
- $mystickyClass = '.storefront-primary-navigation';
1300
- break;
1301
- case 'twentynineteen':
1302
- $mystickyClass = '#site-navigation';
1303
- break;
1304
- case 'twentyseventeen':
1305
- $mystickyClass = '.navigation-top';
1306
- break;
1307
- default:
1308
- break;
1309
- }
1310
- }
1311
-
1312
-
1313
- $mysticky_translation_array = array(
1314
- 'mystickyClass' => $mystickyClass,
1315
- 'activationHeight' => $mysticky_options['mysticky_active_on_height'],
1316
- 'disableWidth' => $mysticky_options['myfixed_disable_small_screen'],
1317
- 'disableLargeWidth' => $mystickyDisableLarge,
1318
- 'adminBar' => $top,
1319
- 'device_desktop' => true,
1320
- 'device_mobile' => true,
1321
- 'mystickyTransition' => $mystickyTransition,
1322
- 'mysticky_disable_down' => $myfixed_disable_scroll_down,
1323
-
1324
-
1325
- );
1326
- wp_localize_script( 'mystickymenu', 'option', $mysticky_translation_array );
1327
- }
1328
-
1329
- public function mysticky_disable_at() {
1330
-
1331
-
1332
- $mysticky_options = get_option( 'mysticky_option_name' );
1333
-
1334
- $mysticky_disable_at_front_home = isset($mysticky_options['mysticky_disable_at_front_home']);
1335
- $mysticky_disable_at_blog = isset($mysticky_options['mysticky_disable_at_blog']);
1336
- $mysticky_disable_at_page = isset($mysticky_options['mysticky_disable_at_page']);
1337
- $mysticky_disable_at_tag = isset($mysticky_options['mysticky_disable_at_tag']);
1338
- $mysticky_disable_at_category = isset($mysticky_options['mysticky_disable_at_category']);
1339
- $mysticky_disable_at_single = isset($mysticky_options['mysticky_disable_at_single']);
1340
- $mysticky_disable_at_archive = isset($mysticky_options['mysticky_disable_at_archive']);
1341
- $mysticky_disable_at_search = isset($mysticky_options['mysticky_disable_at_search']);
1342
- $mysticky_disable_at_404 = isset($mysticky_options['mysticky_disable_at_404']);
1343
- $mysticky_enable_at_pages = isset($mysticky_options['mysticky_enable_at_pages']) ? $mysticky_options['mysticky_enable_at_pages'] : '';
1344
- $mysticky_enable_at_posts = isset($mysticky_options['mysticky_enable_at_posts']) ? $mysticky_options['mysticky_enable_at_posts'] : '';
1345
-
1346
- // Trim input to ignore empty spaces
1347
- $mysticky_enable_at_pages_exp = array_map('trim', explode(',', $mysticky_enable_at_pages));
1348
- $mysticky_enable_at_posts_exp = array_map('trim', explode(',', $mysticky_enable_at_posts));
1349
-
1350
-
1351
-
1352
-
1353
- if ( is_front_page() && is_home() ) { /* Default homepage */
1354
-
1355
- if ( $mysticky_disable_at_front_home == false ) {
1356
- $this->mystickymenu_script();
1357
- }
1358
- } elseif ( is_front_page()){ /* Static homepage */
1359
-
1360
- if ( $mysticky_disable_at_front_home == false ) {
1361
- $this->mystickymenu_script();
1362
- }
1363
-
1364
- } elseif ( is_home()){ /* Blog page */
1365
-
1366
- if ( $mysticky_disable_at_blog == false ) {
1367
- $this->mystickymenu_script();
1368
- }
1369
-
1370
- } elseif ( is_page() ){ /* Single page*/
1371
-
1372
- if ( $mysticky_disable_at_page == false ) {
1373
- $this->mystickymenu_script();
1374
- }
1375
- if ( is_page( $mysticky_enable_at_pages_exp ) ){
1376
- $this->mystickymenu_script();
1377
- }
1378
-
1379
- } elseif ( is_tag()){ /* Tag page */
1380
-
1381
- if ( $mysticky_disable_at_tag == false ) {
1382
- $this->mystickymenu_script();
1383
- }
1384
-
1385
- } elseif ( is_category()){ /* Category page */
1386
-
1387
- if ( $mysticky_disable_at_category == false ) {
1388
- $this->mystickymenu_script();
1389
- }
1390
-
1391
- } elseif ( is_single()){ /* Single post */
1392
-
1393
- if ( $mysticky_disable_at_single == false ) {
1394
- $this->mystickymenu_script();
1395
- }
1396
-
1397
- if ( is_single( $mysticky_enable_at_posts_exp ) ){
1398
- $this->mystickymenu_script();
1399
- }
1400
-
1401
- } elseif ( is_archive()){ /* Archive */
1402
-
1403
- if ( $mysticky_disable_at_archive == false ) {
1404
- $this->mystickymenu_script();
1405
- }
1406
-
1407
- } elseif ( is_search()){ /* Search */
1408
-
1409
- if ( $mysticky_disable_at_search == false ) {
1410
- $this->mystickymenu_script();
1411
- }
1412
-
1413
- } elseif ( is_404()){ /* 404 */
1414
-
1415
- if ( $mysticky_disable_at_404 == false ) {
1416
- $this->mystickymenu_script();
1417
- }
1418
- }
1419
-
1420
- }
1421
-
1422
- }
1423
-
1424
- if( is_admin() ) {
1425
- new MyStickyMenuBackend();
1426
- require_once 'mystickymenu-affiliate.php';
1427
-
1428
- } else {
1429
- new MyStickyMenuFrontend();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1430
  }
1
+ <?php
2
+ /*
3
+ Plugin Name: myStickymenu
4
+ Plugin URI: https://premio.io/
5
+ Description: Simple sticky (fixed on top) menu implementation for navigation menu and Welcome bar for announcements and promotion. After install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
6
+ Version: 2.5.7
7
+ Author: Premio
8
+ Author URI: https://premio.io/downloads/mystickymenu/
9
+ Text Domain: mystickymenu
10
+ Domain Path: /languages
11
+ License: GPLv2 or later
12
+ */
13
+
14
+ defined('ABSPATH') or die("Cannot access pages directly.");
15
+ define( 'MYSTICKY_VERSION', '2.5.7' );
16
+ define('MYSTICKYMENU_URL', plugins_url('/', __FILE__)); // Define Plugin URL
17
+ define('MYSTICKYMENU_PATH', plugin_dir_path(__FILE__)); // Define Plugin Directory Path
18
+
19
+ require_once("mystickymenu-fonts.php");
20
+ require_once("welcome-bar.php");
21
+
22
+ if( is_admin() ) {
23
+ include_once 'class-review-box.php';
24
+ include_once 'class-upgrade-box.php';
25
+ }
26
+
27
+ class MyStickyMenuBackend
28
+ {
29
+ private $options;
30
+
31
+ public function __construct()
32
+ {
33
+ add_action( 'admin_menu', array( $this, 'add_plugin_page' ) );
34
+ add_action( 'admin_init', array( $this, 'mysticky_load_transl') );
35
+
36
+ add_action( 'admin_init', array( $this, 'mysticky_default_options' ) );
37
+ add_action( 'admin_enqueue_scripts', array( $this, 'mysticky_admin_script' ) );
38
+
39
+ add_filter( 'plugin_action_links_mystickymenu/mystickymenu.php', array( $this, 'mystickymenu_settings_link' ) );
40
+
41
+ add_action( 'activated_plugin', array( $this, 'mystickymenu_activation_redirect' ) );
42
+
43
+ add_action("wp_ajax_sticky_menu_update_status", array($this, 'sticky_menu_update_status'));
44
+
45
+ add_action("wp_ajax_mystickymenu_update_popup_status", array($this, 'mystickymenu_popup_status'));
46
+
47
+ add_action( 'admin_footer', array( $this, 'mystickymenu_deactivate' ) );
48
+ add_action( 'wp_ajax_mystickymenu_plugin_deactivate', array( $this, 'mystickymenu_plugin_deactivate' ) );
49
+ add_action('wp_ajax_stickymenu_widget_delete', array( $this, 'stickymenu_widget_delete' ) );
50
+ add_action('wp_ajax_mystickymenu_widget_status', array( $this, 'mystickymenu_widget_status' ) );
51
+ add_action('wp_ajax_stickymenu_status_update', array( $this, 'stickymenu_status_update' ) );
52
+
53
+
54
+
55
+ }
56
+
57
+
58
+
59
+ public function stickymenu_status_update(){
60
+ check_ajax_referer( 'mystickymenu', 'wpnonce' );
61
+ $mysticky_options = get_option( 'mysticky_option_name' );
62
+ if( isset($_POST['stickymenu_status']) && $_POST['stickymenu_status'] != '' ){
63
+
64
+ $stickymenu_status = $_POST['stickymenu_status'];
65
+ $mysticky_options['stickymenu_enable'] = $stickymenu_status;
66
+ update_option('mysticky_option_name',$mysticky_options);
67
+ }
68
+ wp_die();
69
+ }
70
+
71
+ public function mystickymenu_popup_status() {
72
+ if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mystickymenu_update_popup_status')) {
73
+ update_option("mystickymenu_intro_box", "hide");
74
+ }
75
+ echo esc_attr("1");
76
+ die;
77
+ }
78
+
79
+ public function mystickymenu_widget_status() {
80
+
81
+ check_ajax_referer( 'mystickymenu', 'wpnonce' );
82
+
83
+ if ( isset($_POST['widget_id']) && $_POST['widget_id'] != '' && isset($_POST['widget_status']) && $_POST['widget_status'] != '' ) {
84
+ $welcomebars_widgets = get_option( 'mystickymenu-welcomebars' );
85
+ $widget_id = $_POST['widget_id'];
86
+ $welcomebars_widget_no = '-' . $widget_id ;
87
+
88
+ if( $widget_id == 0 || $welcomebars_widgets[$widget_id] == 'default' ){
89
+ $stickymenu_widget = get_option('mysticky_option_welcomebar');
90
+ $welcomebars_widget_no = '';
91
+ }
92
+ $widget_status = $_POST['widget_status'];
93
+ $stickymenu_widget['mysticky_welcomebar_enable'] = $widget_status;
94
+
95
+ update_option( 'mysticky_option_welcomebar',$stickymenu_widget);
96
+ }
97
+ wp_die();
98
+ }
99
+
100
+ public function stickymenu_widget_delete(){
101
+
102
+ check_ajax_referer( 'mystickymenu', 'wpnonce' );
103
+ if ( isset($_POST['widget_id']) && $_POST['widget_id'] != '' && isset($_POST['widget_delete']) && $_POST['widget_delete'] == 1 ) {
104
+ $welcomebars_widgets = get_option( 'mystickymenu-welcomebars' );
105
+ $widget_id = $_POST['widget_id'];
106
+ unset( $welcomebars_widgets[$widget_id] );
107
+ delete_option( 'mysticky_option_welcomebar');
108
+ update_option( 'mystickymenu-welcomebars', $welcomebars_widgets );
109
+ }
110
+ wp_die();
111
+ }
112
+
113
+ public function sticky_menu_update_status() {
114
+ if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'myStickymenu_update_nonce')) {
115
+ $status = self::sanitize_options($_REQUEST['status']);
116
+ $email = self::sanitize_options($_REQUEST['email']);
117
+ update_option("mystickymenu_update_message", 2);
118
+ if($status == 1) {
119
+ $url = 'https://go.premio.io/api/update.php?email='.$email.'&plugin=myStickymenu';
120
+ $handle = curl_init();
121
+ curl_setopt($handle, CURLOPT_URL, $url);
122
+ curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
123
+ $response = curl_exec($handle);
124
+ curl_close($handle);
125
+ }
126
+ }
127
+ echo "1";
128
+ die;
129
+ }
130
+
131
+
132
+ public function mystickymenu_settings_link($links){
133
+ $settings_link = '<a href="admin.php?page=my-stickymenu-welcomebar">Settings</a>';
134
+ $links['go_pro'] = '<a href="'.admin_url("admin.php?page=my-stickymenu-upgrade&type=upgrade").'" style="color: #FF5983; font-weight: bold; display: inline-block; border: solid 1px #FF5983; border-radius: 4px; padding: 0 5px;">'.__( 'Upgrade', 'stars-testimonials' ).'</a>';
135
+ array_unshift($links, $settings_link);
136
+ return $links;
137
+ }
138
+
139
+ public function mystickymenu_activation_redirect( $plugin) {
140
+ if( $plugin == plugin_basename( __FILE__ ) ) {
141
+ $is_shown = get_option("mystickymenu_update_message");
142
+ if($is_shown === false) {
143
+ add_option("mystickymenu_update_message", 1);
144
+ }
145
+ $option = get_option("mystickymenu_intro_box");
146
+ if($option === false) {
147
+ add_option("mystickymenu_intro_box", "show");
148
+ }
149
+
150
+ $welcomebar_widgets = get_option("mysticky_option_welcomebar");
151
+ if ( $welcomebar_widgets ) {
152
+ wp_redirect( admin_url( 'admin.php?page=my-stickymenu-welcomebar' ) ) ;
153
+ } else {
154
+ wp_redirect( admin_url( 'admin.php?page=my-stickymenu-welcomebar&widget=0' ) ) ;
155
+
156
+ }
157
+
158
+ exit;
159
+ }
160
+ }
161
+
162
+ public function mysticky_admin_script($hook) {
163
+
164
+ if ( !isset($_GET['page']) || ( isset($_GET['page']) && $_GET['page'] != 'my-stickymenu-settings' && $_GET['page'] != 'my-stickymenu-welcomebar' && $_GET['page'] != 'my-stickymenu-new-welcomebar' && $_GET['page'] != 'my-stickymenu-upgrade' && $_GET['page'] != 'msm-recommended-plugins' )) {
165
+ return;
166
+ }
167
+
168
+ wp_enqueue_style('mystickymenuAdminStyle', plugins_url('/css/mystickymenu-admin.css', __FILE__), array(), MYSTICKY_VERSION );
169
+ wp_style_add_data( 'mystickymenuAdminStyle', 'rtl', 'replace' );
170
+ wp_enqueue_style( 'wp-color-picker' );
171
+ //wp_enqueue_script( 'wp-color-picker-alpha', plugins_url('/js/wp-color-picker-alpha.min.js', __FILE__), array( 'wp-color-picker' ), MYSTICKY_VERSION );
172
+ wp_enqueue_style( 'wp-jquery-ui-dialog' );
173
+ wp_enqueue_style('jquery-ui');
174
+
175
+ wp_enqueue_script('jquery-ui');
176
+ wp_enqueue_script('jquery-ui-slider');
177
+ //wp_enqueue_script('jquery-ui-datepicker');
178
+ wp_enqueue_script( 'jquery-ui-dialog' );
179
+ wp_enqueue_script( 'my-script-handle', plugins_url('js/iris-script.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
180
+
181
+ if($hook == "mystickymenu_page_my-stickymenu-upgrade") {
182
+ wp_enqueue_script( 'my-select2', plugins_url('js/select2.min.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
183
+ wp_enqueue_style('my-css-select2', plugins_url('css/select2.min.css', __FILE__), array(), MYSTICKY_VERSION );
184
+ wp_enqueue_style('my-css-admin-settings', plugins_url('css/admin-setting.css', __FILE__), array(), MYSTICKY_VERSION );
185
+
186
+ wp_style_add_data( 'my-css-admin-settings', 'rtl', 'replace' );
187
+ }
188
+
189
+ wp_enqueue_script('mystickymenuAdminScript', plugins_url('/js/mystickymenu-admin.js', __FILE__), array( 'jquery', 'jquery-ui-slider' ), MYSTICKY_VERSION);
190
+
191
+ $locale_settings = array(
192
+ 'ajaxurl' => admin_url('admin-ajax.php'),
193
+ 'mystickymenu_url' => MYSTICKYMENU_URL,
194
+ 'ajax_nonce' => wp_create_nonce('mystickymenu'),
195
+ );
196
+
197
+ wp_localize_script('mystickymenuAdminScript', 'mystickymenu', $locale_settings);
198
+
199
+ }
200
+
201
+ public function mysticky_load_transl(){
202
+ load_plugin_textdomain('mystickymenu', FALSE, dirname(plugin_basename(__FILE__)).'/languages/');
203
+ }
204
+
205
+ function sanitize_options($value) {
206
+ $value = stripslashes($value);
207
+ $value = filter_var($value, FILTER_SANITIZE_STRING);
208
+ return $value;
209
+ }
210
+
211
+ public function add_plugin_page(){
212
+ if ( isset($_GET['hide_msmrecommended_plugin']) && $_GET['hide_msmrecommended_plugin'] == 1) {
213
+ update_option('hide_msmrecommended_plugin',true);
214
+ }
215
+ $hide_msmrecommended_plugin = get_option('hide_msmrecommended_plugin');
216
+ // This page will be under "Settings"
217
+ add_menu_page(
218
+ 'Settings Admin',
219
+ 'myStickymenu',
220
+ 'manage_options',
221
+ 'my-stickymenu-welcomebar',
222
+ array( $this, 'mystickystickymenu_admin_welcomebar_page' )
223
+ );
224
+ add_submenu_page(
225
+ 'my-stickymenu-welcomebar',
226
+ 'Settings Admin',
227
+ 'Dashboard',
228
+ 'manage_options',
229
+ 'my-stickymenu-welcomebar',
230
+ array( $this, 'mystickystickymenu_admin_welcomebar_page' )
231
+ );
232
+
233
+ add_submenu_page(
234
+ 'my-stickymenu-welcomebar',
235
+ 'Settings Admin',
236
+ '+ Create New Welcome Bar',
237
+ 'manage_options',
238
+ 'my-stickymenu-new-welcomebar',
239
+ array( $this, 'mystickystickymenu_admin_new_welcomebar_page' )
240
+ );
241
+
242
+ add_submenu_page(
243
+ 'my-stickymenu-welcomebar',
244
+ 'Settings Admin',
245
+ 'Sticky menu settings',
246
+ 'manage_options',
247
+ 'my-stickymenu-settings',
248
+ array( $this, 'create_admin_page' )
249
+ );
250
+
251
+
252
+ if ( !$hide_msmrecommended_plugin){
253
+ add_submenu_page(
254
+ 'my-stickymenu-welcomebar',
255
+ 'msm-recommended-plugins',
256
+ 'Recommended Plugins',
257
+ 'manage_options',
258
+ 'msm-recommended-plugins',
259
+ array( $this, 'mystickymenu_recommended_plugins' )
260
+ );
261
+ }
262
+ add_submenu_page(
263
+ 'my-stickymenu-welcomebar',
264
+ 'Upgrade to Pro',
265
+ 'Upgrade to Pro',
266
+ 'manage_options',
267
+ 'my-stickymenu-upgrade',
268
+ array( $this, 'mystickymenu_admin_upgrade_to_pro' )
269
+ );
270
+ }
271
+
272
+ public function create_admin_page(){
273
+
274
+ $upgarde_url = admin_url("admin.php?page=my-stickymenu-upgrade");
275
+ // Set class property
276
+ if (isset($_POST['mysticky_option_name']) && !empty($_POST['mysticky_option_name']) && isset($_POST['nonce'])) {
277
+ if(!empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mysticky_option_backend_update')) {
278
+ $post = $_POST['mysticky_option_name'];
279
+ foreach($post as $key=>$value) {
280
+ $post[$key] = self::sanitize_options($value);
281
+ }
282
+
283
+ $post['device_desktop'] = 'on';
284
+ $post['device_mobile'] = 'on';
285
+ update_option( 'mysticky_option_name', $post);
286
+ $this->mysticky_clear_all_caches();
287
+
288
+
289
+ if(isset($_POST['submit']) && $_POST['submit'] == 'SAVE & VIEW DASHBOARD'){
290
+ ?>
291
+ <script>
292
+ window.location.href = <?php echo "'".admin_url("admin.php?page=my-stickymenu-welcomebar")."'";?>;
293
+ </script>
294
+ <?php
295
+
296
+ }
297
+
298
+ echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Settings saved.','mystickymenu'). '</p></strong></div>';
299
+ } else {
300
+ wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
301
+ echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
302
+ }
303
+ }
304
+
305
+ $mysticky_options = get_option( 'mysticky_option_name');
306
+ $is_old = get_option("has_sticky_header_old_version");
307
+ $is_old = ($is_old == "yes")?true:false;
308
+ $nonce = wp_create_nonce('mysticky_option_backend_update');
309
+ $pro_url = "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
310
+
311
+ $is_shown = get_option("mystickymenu_update_message");
312
+ if($is_shown == 1) {
313
+
314
+ include_once MYSTICKYMENU_PATH . '/update.php';
315
+ } else {
316
+
317
+ $option = get_option("mystickymenu_intro_box");
318
+ if($option == "show") {
319
+ include_once dirname(__FILE__) . "/mystickymenu-popup.php";
320
+ }
321
+ ?>
322
+ <style>
323
+ div#wpcontent {
324
+ background: rgba(101,114,219,1);
325
+ background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
326
+ background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
327
+ background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
328
+ background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
329
+ background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
330
+ background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
331
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
332
+ }
333
+ </style>
334
+ <div id="mystickymenu" class="wrap mystickymenu">
335
+
336
+ <div id="sticky-header-settings" class="sticky-header-content">
337
+
338
+ <form class="mysticky-form" id="mystickymenuform" method="post" action="#">
339
+ <div class="mystickymenu-heading">
340
+ <div class="mysticky-stickymenu-header-title mystickymenu-content-section">
341
+ <h3><?php _e('Sticky menu', 'myStickymenu'); ?></h3>
342
+ <label for="mysticky-stickymenu-form-enabled" class="mysticky-welcomebar-switch stickymenu-switch">
343
+ <input type="checkbox" id="mysticky-stickymenu-form-enabled" name="mysticky_option_name[stickymenu_enable]" value="1" <?php checked( @$mysticky_options['stickymenu_enable'], '1' );?> />
344
+ <span class="slider"></span>
345
+ </label>
346
+ <div class="mysticky-stickymenu-backword-page">
347
+ <a href="<?php echo admin_url("admin.php?page=my-stickymenu-welcomebar");?>"><span class="dashicons dashicons-arrow-left-alt2 back-dashboard" style="color: unset;font-size: 17px;"></span> <?php _e('Back to Dashboard', 'myStickymenu'); ?></a>
348
+ </div>
349
+ </div>
350
+ <div class="myStickymenu-header-title">
351
+ <h3><?php esc_attr_e('How To Make a Sticky Header', 'mystickymenu'); ?></h3>
352
+ </div>
353
+ <p><?php _e("Add sticky menu / header to any theme. <br />Simply change 'Sticky Class' to HTML element class desired to be sticky (div id can be used as well).", 'mystickymenu'); ?></p>
354
+ </div>
355
+ <div class="mystickymenu-content-section sticky-class-sec">
356
+ <table>
357
+ <tr>
358
+ <td>
359
+ <label class="mysticky_title"><?php _e("Sticky Class", 'mystickymenu')?></label>
360
+ <br /><br />
361
+ <?php $nav_menus = wp_get_nav_menus();
362
+ $menu_locations = get_nav_menu_locations();
363
+ $locations = get_registered_nav_menus();
364
+ ?>
365
+ <select name="mysticky_option_name[mysticky_class_id_selector]" id="mystickymenu-select">
366
+ <option value=""><?php _e( 'Select Sticky Menu', 'mystickymenu' ); ?></option>
367
+
368
+ <?php foreach ( (array) $nav_menus as $_nav_menu ) : ?>
369
+ <option value="<?php echo esc_attr( $_nav_menu->slug ); ?>" <?php selected( $_nav_menu->slug, $mysticky_options['mysticky_class_id_selector'] ); ?>>
370
+ <?php
371
+ echo esc_html( $_nav_menu->name );
372
+
373
+ if ( ! empty( $menu_locations ) && in_array( $_nav_menu->term_id, $menu_locations ) ) {
374
+ $locations_assigned_to_this_menu = array();
375
+ foreach ( array_keys( $menu_locations, $_nav_menu->term_id ) as $menu_location_key ) {
376
+ if ( isset( $locations[ $menu_location_key ] ) ) {
377
+ $locations_assigned_to_this_menu[] = $locations[ $menu_location_key ];
378
+ }
379
+ }
380
+
381
+ /**
382
+ * Filters the number of locations listed per menu in the drop-down select.
383
+ *
384
+ * @since 3.6.0
385
+ *
386
+ * @param int $locations Number of menu locations to list. Default 3.
387
+ */
388
+ $assigned_locations = array_slice( $locations_assigned_to_this_menu, 0, absint( apply_filters( 'wp_nav_locations_listed_per_menu', 3 ) ) );
389
+
390
+ // Adds ellipses following the number of locations defined in $assigned_locations.
391
+ if ( ! empty( $assigned_locations ) ) {
392
+ printf(
393
+ ' (%1$s%2$s)',
394
+ implode( ', ', $assigned_locations ),
395
+ count( $locations_assigned_to_this_menu ) > count( $assigned_locations ) ? ' &hellip;' : ''
396
+ );
397
+ }
398
+ }
399
+ ?>
400
+ </option>
401
+ <?php endforeach; ?>
402
+ <option value="custom" <?php selected( 'custom', $mysticky_options['mysticky_class_id_selector'] ); ?>><?php esc_html_e( 'Other Class Or ID', 'mystickymenu' );?></option>
403
+ </select>
404
+
405
+ <input type="text" size="18" id="mysticky_class_selector" class="mystickyinput" name="mysticky_option_name[mysticky_class_selector]" value="<?php echo esc_attr($mysticky_options['mysticky_class_selector']);?>" />
406
+
407
+ <p class="description mystuckymenu-class-id">
408
+ <span class="dashicons dashicons-info"></span>&nbsp;
409
+ <span>
410
+ <?php echo sprintf(__('Need help finding your ID/Class? Install <a href="%s" target="_blank">CSS Peeper</a> to quickly get your navigation menu ID/Class. Here\'s a quick <a href="%s" target="_blank">video <span class="dashicons dashicons-controls-play"></span></a> of how you can do it.', 'mystickymenu'), 'https://chrome.google.com/webstore/detail/css-peeper/mbnbehikldjhnfehhnaidhjhoofhpehk?hl=en', 'https://www.youtube.com/watch?v=uuNqSkBPnLU');?>
411
+ </span>
412
+ </p>
413
+ </td>
414
+ <td>
415
+ <div class="mysticky_device_upgrade">
416
+ <label class="mysticky_title"><?php _e("Devices", 'mystickymenu')?></label>
417
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
418
+
419
+ <ul class="mystickymenu-input-multicheckbox">
420
+ <li>
421
+ <label>
422
+ <input id="disable_css" name="mysticky_option_name[device_desktop]" type="checkbox" checked disabled />
423
+ <?php _e( 'Desktop', 'mystickymenu' );?>
424
+ </label>
425
+ </li>
426
+ <li>
427
+ <label>
428
+ <input id="disable_css" name="mysticky_option_name[device_mobile]" type="checkbox" checked disabled />
429
+ <?php _e( 'Mobile', 'mystickymenu' );?>
430
+ </label>
431
+ </li>
432
+ </ul>
433
+ </div>
434
+ </td>
435
+ </tr>
436
+ </table>
437
+ </div>
438
+ <div class="mystickymenu-content-section">
439
+ <h3><?php esc_html_e( 'Settings', 'mystickymenu' );?></h3>
440
+ <table class="form-table">
441
+ <tr>
442
+ <td>
443
+ <label for="myfixed_zindex" class="mysticky_title"><?php _e("Sticky z-index", 'mystickymenu')?></label>
444
+ </td>
445
+ <td>
446
+ <input type="number" min="0" max="2147483647" step="1" class="mysticky-number" id="myfixed_zindex" name="mysticky_option_name[myfixed_zindex]" value="<?php echo esc_attr($mysticky_options['myfixed_zindex']);?>" />
447
+ </td>
448
+ <td>
449
+ <label class="mysticky_title myssticky-remove-hand"><?php _e("Fade or slide effect", 'mystickymenu')?></label>
450
+ </td>
451
+ <td>
452
+ <label>
453
+ <input name="mysticky_option_name[myfixed_fade]" value= "slide" type="radio" <?php checked( @$mysticky_options['myfixed_fade'], 'slide' );?> />
454
+ <?php _e("Slide", 'mystickymenu'); ?>
455
+ </label>
456
+ <label>
457
+ <input name="mysticky_option_name[myfixed_fade]" value="fade" type="radio" <?php checked( @$mysticky_options['myfixed_fade'], 'fade' );?> />
458
+ <?php _e("Fade", 'mystickymenu'); ?>
459
+ </label>
460
+ </td>
461
+ </tr>
462
+ <tr>
463
+ <td>
464
+ <label for="myfixed_disable_small_screen" class="mysticky_title"><?php _e("Disable at Small Screen Sizes", 'mystickymenu')?></label>
465
+ <p class="description"><?php esc_attr_e('Less than chosen screen width, set 0 to disable','mystickymenu');?></p>
466
+ </td>
467
+ <td>
468
+ <div class="px-wrap">
469
+ <input type="number" class="" min="0" step="1" id="myfixed_disable_small_screen" name="mysticky_option_name[myfixed_disable_small_screen]" value="<?php echo esc_attr($mysticky_options['myfixed_disable_small_screen']);?>" />
470
+ <span class="input-px">PX</span>
471
+ </div>
472
+ </td>
473
+ <td>
474
+ <label for="mysticky_active_on_height" class="mysticky_title"><?php _e("Make visible on Scroll", 'mystickymenu')?></label>
475
+ <p class="description"><?php esc_attr_e('If set to 0 auto calculate will be used.','mystickymenu');?></p>
476
+ </td>
477
+ <td>
478
+ <div class="px-wrap">
479
+ <input type="number" class="small-text" min="0" step="1" id="mysticky_active_on_height" name="mysticky_option_name[mysticky_active_on_height]" value="<?php echo esc_attr($mysticky_options['mysticky_active_on_height']);?>" />
480
+ <span class="input-px">PX</span>
481
+ </div>
482
+ </td>
483
+ </tr>
484
+ <tr>
485
+ <td>
486
+ <label for="mysticky_active_on_height_home" class="mysticky_title"><?php _e("Make visible on Scroll at homepage", 'mystickymenu')?></label>
487
+ <p class="description"><?php _e( 'If set to 0 it will use initial Make visible on Scroll value.', 'mystickymenu' );?></p>
488
+ </td>
489
+ <td>
490
+ <div class="px-wrap">
491
+ <input type="number" class="small-text" min="0" step="1" id="mysticky_active_on_height_home" name="mysticky_option_name[mysticky_active_on_height_home]" value="<?php echo esc_attr($mysticky_options['mysticky_active_on_height_home']);;?>" />
492
+ <span class="input-px">PX</span>
493
+ </div>
494
+ </td>
495
+ <td>
496
+ <label for="myfixed_bgcolor" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Background Color", 'mystickymenu')?></label>
497
+ </td>
498
+ <td>
499
+ <input type="text" id="myfixed_bgcolor" name="mysticky_option_name[myfixed_bgcolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($mysticky_options['myfixed_bgcolor']);;?>" />
500
+
501
+ </td>
502
+ </tr>
503
+ <tr>
504
+ <td>
505
+ <label for="myfixed_transition_time" class="mysticky_title"><?php _e("Sticky Transition Time", 'mystickymenu')?></label>
506
+ </td>
507
+ <td>
508
+ <input type="number" class="small-text" min="0" step="0.1" id="myfixed_transition_time" name="mysticky_option_name[myfixed_transition_time]" value="<?php echo esc_attr($mysticky_options['myfixed_transition_time']);?>" />
509
+ </td>
510
+ <td>
511
+ <label for="myfixed_textcolor" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Text Color", 'mystickymenu')?></label>
512
+ </td>
513
+ <td>
514
+ <input type="text" id="myfixed_textcolor" name="mysticky_option_name[myfixed_textcolor]" class="my-color-field" data-alpha="true" value="<?php echo (isset($mysticky_options['myfixed_textcolor'])) ? $mysticky_options['myfixed_textcolor'] : '';?>" />
515
+
516
+ </td>
517
+ </tr>
518
+ <tr>
519
+ <td>
520
+ <label for="myfixed_opacity" class="mysticky_title myssticky-remove-hand"><?php _e("Sticky Opacity", 'mystickymenu')?></label>
521
+ <p class="description"><?php _e( 'numbers 1-100.', 'mystickymenu');?></p>
522
+ </td>
523
+ <td>
524
+ <input type="hidden" class="small-text mysticky-slider" min="0" step="1" max="100" id="myfixed_opacity" name="mysticky_option_name[myfixed_opacity]" value="<?php echo esc_attr($mysticky_options['myfixed_opacity']);;?>" />
525
+ <div id="slider">
526
+ <div id="custom-handle" class="ui-slider-handle"><?php //echo esc_attr($mysticky_options['myfixed_opacity']);?></div>
527
+ </div>
528
+
529
+ </td>
530
+ </tr>
531
+ </table>
532
+ </div>
533
+
534
+ <div class="mystickymenu-content-section <?php echo !$is_old?"mystickymenu-content-upgrade":""?>" >
535
+
536
+ <div class="mystickymenu-content-option">
537
+ <label class="mysticky_title css-style-title"><?php _e("Hide on Scroll Down", 'mystickymenu'); ?></label>
538
+ <?php if(!$is_old) { ?><span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span><?php } ?>
539
+ <p>
540
+ <label class="mysticky_text">
541
+ <input id="myfixed_disable_scroll_down" name="mysticky_option_name[myfixed_disable_scroll_down]" type="checkbox" <?php checked( @$mysticky_options['myfixed_disable_scroll_down'], 'on' );?> <?php echo !$is_old?"disabled":"" ?> />
542
+ <?php _e("Disable sticky menu at scroll down", 'mystickymenu'); ?>
543
+ </label>
544
+ </p>
545
+ </div>
546
+ <div class="mysticky-page-target-setting mystickymenu-content-option">
547
+ <label class="mysticky_title"><?php esc_attr_e('Page targeting', 'myStickymenu'); ?></label>
548
+ <div class="mystickymenu-input-section mystickymenu-page-target-wrap">
549
+ <div class="mysticky-welcomebar-setting-content-right">
550
+ <div class="mysticky-page-options" id="mysticky-welcomebar-page-options">
551
+ <?php $page_option = (isset($mysticky_options['mysticky_page_settings'])) ? $mysticky_options['mysticky_page_settings'] : array();
552
+ $url_options = array(
553
+ 'page_contains' => 'pages that contain',
554
+ 'page_has_url' => 'a specific page',
555
+ 'page_start_with' => 'pages starting with',
556
+ 'page_end_with' => 'pages ending with',
557
+ );
558
+
559
+ if(!empty($page_option) && is_array($page_option)) {
560
+ $count = 0;
561
+ foreach($page_option as $k=>$option) {
562
+ $count++;
563
+ ?>
564
+ <div class="mysticky-page-option <?php echo ( $k==count($page_option) ) ? "last":""; ?>">
565
+ <div class="url-content">
566
+ <div class="mysticky-welcomebar-url-select">
567
+ <select name="mysticky_option_name[mysticky_page_settings][<?php echo esc_attr($count); ?>][shown_on]" id="url_shown_on_<?php echo esc_attr($count); ?>_option">
568
+ <option value="show_on" <?php echo ($option['shown_on']=="show_on" ) ? "selected":"" ?> ><?php esc_html_e( 'Show on', 'mysticky' )?></option>
569
+ <option value="not_show_on" <?php echo ($option['shown_on']=="not_show_on" )? "selected":""; ?>><?php esc_html_e( "Don't show on", "mysticky" );?></option>
570
+ </select>
571
+ </div>
572
+ <div class="mysticky-welcomebar-url-option">
573
+ <select class="mysticky-url-options" name="mysticky_option_name[mysticky_page_settings][<?php echo esc_attr($count);; ?>][option]" id="url_rules_<?php echo esc_attr($count); ?>_option">
574
+ <option disabled value=""><?php esc_html_e( "Select Rule", "mysticky" );?></option>
575
+ <?php foreach($url_options as $key=>$value) {
576
+ $selected = ( isset($option['option']) && $option['option']==$key )?" selected='selected' ":"";
577
+ echo '<option '.$selected.' value="'.$key.'">'.$value.'</option>';
578
+ } ?>
579
+ </select>
580
+ </div>
581
+ <div class="mysticky-welcomebar-url-box">
582
+ <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
583
+ </div>
584
+ <div class="mysticky-welcomebar-url-values">
585
+ <input type="text" value="<?php echo esc_attr($option['value']) ?>" name="mysticky_option_name[mysticky_page_settings][<?php echo esc_attr($count); ?>][value]" id="url_rules_<?php echo esc_attr($count);; ?>_value" />
586
+ </div>
587
+ <div class="mysticky-welcomebar-url-buttons">
588
+ <a class="mysticky-remove-rule" href="javascript:;">x</a>
589
+ </div>
590
+ <div class="clear"></div>
591
+ </div>
592
+ </div>
593
+ <?php
594
+ }
595
+ }
596
+ ?>
597
+ </div>
598
+ <a href="javascript:void(0);" class="create-rule" id="mysticky_create-rule"><?php esc_html_e( "Add Rule", "mystickymenu" );?></a>
599
+ </div>
600
+ <input type="hidden" id="mysticky_welcomebar_site_url" value="<?php echo site_url("/") ?>" />
601
+ <div class="mysticky-page-options-html" style="display: none;">
602
+ <div class="mysticky-page-option">
603
+ <div class="url-content">
604
+ <div class="mysticky-welcomebar-url-select">
605
+ <select name="" id="url_shown_on___count___option">
606
+ <option value="show_on"><?php esc_html_e("Show on", "mysticky" );?></option>
607
+ <option value="not_show_on"><?php esc_html_e("Don't show on", "mysticky" );?></option>
608
+ </select>
609
+ </div>
610
+ <div class="mysticky-welcomebar-url-option">
611
+ <select class="mysticky-url-options" name="" id="url_rules___count___option">
612
+ <option selected="selected" disabled value=""><?php esc_html_e("Select Rule", "mysticky" );?></option>
613
+ <?php foreach($url_options as $key=>$value) {
614
+ echo '<option value="'.$key.'">'.$value.'</option>';
615
+ } ?>
616
+ </select>
617
+ </div>
618
+ <div class="mysticky-welcomebar-url-box">
619
+ <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
620
+ </div>
621
+ <div class="mysticky-welcomebar-url-values">
622
+ <input type="text" value="" name="mysticky_option_name[mysticky_page_settings][__count__][value]" id="url_rules___count___value" disabled />
623
+ </div>
624
+ <div class="clear"></div>
625
+ </div>
626
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
627
+ </div>
628
+ </div>
629
+ </div>
630
+ </div>
631
+ <div class="mystickymenu-content-option">
632
+ <label class="mysticky_title css-style-title"><?php _e("CSS style", 'mystickymenu'); ?></label>
633
+ <span class="mysticky_text"><?php _e( 'Add/edit CSS style. Leave it blank for default style.', 'mystickymenu');?></span>
634
+ <div class="mystickymenu-input-section">
635
+ <textarea type="text" rows="4" cols="60" id="myfixed_cssstyle" name="mysticky_option_name[myfixed_cssstyle]" <?php echo !$is_old?"disabled":"" ?> ><?php echo @$mysticky_options['myfixed_cssstyle'];?></textarea>
636
+ </div>
637
+ <p><?php esc_html_e( "CSS ID's and Classes to use:", "mystickymenu" );?></p>
638
+ <p>
639
+ #mysticky-wrap { }<br/>
640
+ #mysticky-nav.wrapfixed { }<br/>
641
+ #mysticky-nav.wrapfixed.up { }<br/>
642
+ #mysticky-nav.wrapfixed.down { }<br/>
643
+ #mysticky-nav .navbar { }<br/>
644
+ #mysticky-nav .navbar.myfixed { }<br/>
645
+ </p>
646
+ </div>
647
+
648
+ <div class="mystickymenu-content-option">
649
+ <label class="mysticky_title" for="disable_css"><?php _e("Disable CSS style", 'mystickymenu'); ?></label>
650
+ <div class="mystickymenu-input-section">
651
+ <label>
652
+ <input id="disable_css" name="mysticky_option_name[disable_css]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['disable_css'], 'on' );?> />
653
+ <?php _e( 'Use this option if you plan to include CSS Style manually', 'mystickymenu' );?>
654
+ </label>
655
+ </div>
656
+ <p></p>
657
+ </div>
658
+
659
+ <div class="mystickymenu-content-option">
660
+ <label class="mysticky_title"><?php _e("Disable at", 'mystickymenu'); ?></label>
661
+ <?php if(!$is_old) { ?><span class="myStickymenu-upgrade"><a class="sticky-header-upgrade" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span><?php } ?>
662
+ <div class="mystickymenu-input-section">
663
+ <ul class="mystickymenu-input-multicheckbox">
664
+ <li>
665
+ <label>
666
+ <input id="mysticky_disable_at_front_home" name="mysticky_option_name[mysticky_disable_at_front_home]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_front_home'], 'on' );?>/>
667
+ <span><?php esc_attr_e('front page', 'mystickymenu' );?></span>
668
+ </label>
669
+ </li>
670
+ <li>
671
+ <label>
672
+ <input id="mysticky_disable_at_blog" name="mysticky_option_name[mysticky_disable_at_blog]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_blog'], 'on' );?>/>
673
+ <span><?php esc_attr_e('blog page', 'mystickymenu' );?></span>
674
+ </label>
675
+ </li>
676
+ <li>
677
+ <label>
678
+ <input id="mysticky_disable_at_page" name="mysticky_option_name[mysticky_disable_at_page]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_page'], 'on' );?> />
679
+ <span><?php esc_attr_e('pages', 'mystickymenu' );?> </span>
680
+ </label>
681
+ </li>
682
+ <li>
683
+ <label>
684
+ <input id="mysticky_disable_at_tag" name="mysticky_option_name[mysticky_disable_at_tag]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_tag'], 'on' );?> />
685
+ <span><?php esc_attr_e('tags', 'mystickymenu' );?> </span>
686
+ </label>
687
+ </li>
688
+ <li>
689
+ <label>
690
+ <input id="mysticky_disable_at_category" name="mysticky_option_name[mysticky_disable_at_category]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_category'], 'on' );?>/>
691
+ <span><?php esc_attr_e('categories', 'mystickymenu' );?></span>
692
+ </label>
693
+ </li>
694
+ <li>
695
+ <label>
696
+ <input id="mysticky_disable_at_single" name="mysticky_option_name[mysticky_disable_at_single]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_single'], 'on' );?> />
697
+ <span><?php esc_attr_e('posts', 'mystickymenu' );?> </span>
698
+ </label>
699
+ </li>
700
+ <li>
701
+ <label>
702
+ <input id="mysticky_disable_at_archive" name="mysticky_option_name[mysticky_disable_at_archive]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_archive'], 'on' );?> />
703
+ <span><?php esc_attr_e('archives', 'mystickymenu' );?> </span>
704
+ </label>
705
+ </li>
706
+ <li>
707
+ <label>
708
+ <input id="mysticky_disable_at_search" name="mysticky_option_name[mysticky_disable_at_search]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_search'], 'on' );?> />
709
+ <span><?php esc_attr_e('search', 'mystickymenu' );?> </span>
710
+ </label>
711
+ </li>
712
+ <li>
713
+ <label>
714
+ <input id="mysticky_disable_at_404" name="mysticky_option_name[mysticky_disable_at_404]" type="checkbox" <?php echo !$is_old?"disabled":"" ?> <?php checked( @$mysticky_options['mysticky_disable_at_404'], 'on' );?>/>
715
+ <span><?php esc_attr_e('404', 'mystickymenu' );?> </span>
716
+ </label>
717
+ </li>
718
+ </ul>
719
+
720
+ <?php
721
+ if (isset ( $mysticky_options['mysticky_disable_at_page'] ) == true ) {
722
+ echo '<div class="mystickymenu-input-section">';
723
+ _e('<span class="description"><strong>Except for this pages:</strong> </span>', 'mystickymenu');
724
+
725
+ printf(
726
+ '<input type="text" size="26" class="mystickymenu_normal_text" id="mysticky_enable_at_pages" name="mysticky_option_name[mysticky_enable_at_pages]" value="%s" /> ',
727
+ isset( $mysticky_options['mysticky_enable_at_pages'] ) ? esc_attr( $mysticky_options['mysticky_enable_at_pages']) : ''
728
+ );
729
+
730
+ _e('<span class="description">Comma separated list of pages to enable. It should be page name, id or slug. Example: about-us, 1134, Contact Us. Leave blank if you realy want to disable sticky menu for all pages.</span>', 'mystickymenu');
731
+ echo '</div>';
732
+ }
733
+
734
+ if (isset ( $mysticky_options['mysticky_disable_at_single'] ) == true ) {
735
+
736
+ echo '<div class="mystickymenu-input-section">';
737
+ _e('<span class="description"><strong>Except for this posts:</strong> </span>', 'mystickymenu');
738
+
739
+ printf(
740
+ '<input type="text" size="26" class="mystickymenu_normal_text" id="mysticky_enable_at_posts" name="mysticky_option_name[mysticky_enable_at_posts]" value="%s" /> ',
741
+ isset( $mysticky_options['mysticky_enable_at_posts'] ) ? esc_attr( $mysticky_options['mysticky_enable_at_posts']) : ''
742
+ );
743
+
744
+ _e('<span class="description">Comma separated list of posts to enable. It should be post name, id or slug. Example: about-us, 1134, Contact Us. Leave blank if you realy want to disable sticky menu for all posts.</span>', 'mystickymenu');
745
+ echo '</div>';
746
+
747
+ }
748
+ ?>
749
+ <p></p>
750
+ </div>
751
+ </div>
752
+ </div>
753
+
754
+ <div class="mystickymenu-action-popup new-center" id="mysticky-sticky-save-confirm" style="display:none;">
755
+ <div class="mystickymenu-action-popup-header">
756
+ <h3><?php esc_html_e("Turn on Sticky Menu","mystickymenu"); ?></h3>
757
+ <span class="dashicons dashicons-no-alt close-button" data-from = "stickymenu-confirm"></span>
758
+ </div>
759
+ <div class="mystickymenu-action-popup-body">
760
+ <p><?php esc_html_e("Sticky Menu is not turned on. Turn on Sticky Menu to activate sticky menu on your website.","mystickymenu"); ?></p>
761
+ </div>
762
+ <div class="mystickymenu-action-popup-footer">
763
+ <button type="button" class="btn-enable btn-nevermind-status" id="stickymenu_status_dolater" ><?php esc_html_e("Just save & keep it off","mystickymenu"); ?></button>
764
+ <button type="button" class="btn-disable-cancel" id="stickymenu_status_ok" ><?php esc_html_e("Save & Turn on Sticky Menu","mystickymenu"); ?></button>
765
+ </div>
766
+ </div>
767
+ <div class="mystickymenupopup-overlay" id="stickymenu-option-overlay-popup"></div>
768
+
769
+ <p class="submit">
770
+ <input type="submit" name="submit" id="submit" class="button button-primary btn-save-stickymenu" value="<?php esc_attr_e('Save', 'mystickymenu');?>">
771
+
772
+ <input type="submit" name="submit" id="submit" class="button button-primary save_view_dashboard" style="width: auto;" value="<?php _e('SAVE & VIEW DASHBOARD', 'mystickymenu');?>">
773
+ </p>
774
+ <input type="hidden" name="nonce" value="<?php echo esc_attr($nonce); ?>">
775
+ <input type="hidden" id="save_stickymenu" value=""/>
776
+ </form>
777
+ <form class="mysticky-hideformreset" method="post" action="">
778
+ <input name="reset_mysticky_options" class="button button-secondary confirm" type="submit" value="<?php esc_attr_e('Reset', 'mystickymenu');?>" >
779
+ <input type="hidden" name="action" value="reset" />
780
+ <?php $nonce = wp_create_nonce('mysticky_option_backend_reset_nonce'); ?>
781
+ <input type="hidden" name="nonce" value="<?php echo esc_attr($nonce); ?>">
782
+ </form>
783
+ <p class="myStickymenu-review"><a href="https://wordpress.org/support/plugin/mystickymenu/reviews/" target="_blank"><?php esc_attr_e('Leave a review','mystickymenu'); ?></a></p>
784
+ </div>
785
+ </div>
786
+ <?php }
787
+ }
788
+
789
+
790
+ public function mystickystickymenu_admin_welcomebar_page() {
791
+
792
+ $is_shown = get_option("mystickymenu_update_message");
793
+ if($is_shown == 1) {
794
+ include_once MYSTICKYMENU_PATH . '/update.php';
795
+ return;
796
+ }
797
+
798
+ /* welcome bar save data */
799
+
800
+ if (isset($_POST['mysticky_option_welcomebar']) && !empty($_POST['mysticky_option_welcomebar']) && isset($_POST['nonce'])) {
801
+ if(!empty($_POST['nonce']) && wp_verify_nonce($_POST['nonce'], 'mysticky_option_welcomebar_update')) {
802
+ $widgets = get_option( 'mysticky_option_welcomebar' );
803
+ $is_first_widget = 0;
804
+ if( isset($widgets) && $widgets == '' ){
805
+ $is_first_widget = 1;
806
+ }
807
+
808
+
809
+ //
810
+ $welcomebars_widgets[0] = 'Welcome Bar #0';
811
+ update_option( 'mystickymenu-welcomebars', $welcomebars_widgets );
812
+
813
+ $mysticky_option_welcomebar = filter_var_array( $_POST['mysticky_option_welcomebar'], FILTER_SANITIZE_STRING );
814
+ $mysticky_option_welcomebar['mysticky_welcomebar_bar_text'] = wp_kses_post($_POST['mysticky_option_welcomebar']['mysticky_welcomebar_bar_text']);
815
+ $mysticky_option_welcomebar['mysticky_welcomebar_height'] = 60;
816
+ $mysticky_option_welcomebar['mysticky_welcomebar_device_desktop'] = 'desktop';
817
+ $mysticky_option_welcomebar['mysticky_welcomebar_device_mobile'] = 'mobile';
818
+ $mysticky_option_welcomebar['mysticky_welcomebar_trigger'] = 'after_a_few_seconds';
819
+ $mysticky_option_welcomebar['mysticky_welcomebar_triggersec'] = '0';
820
+ $mysticky_option_welcomebar['mysticky_welcomebar_expirydate'] = '';
821
+ $mysticky_option_welcomebar['mysticky_welcomebar_page_settings'] = '';
822
+
823
+ update_option( 'mysticky_option_welcomebar', $mysticky_option_welcomebar);
824
+
825
+ $this->mysticky_clear_all_caches();
826
+
827
+ if($is_first_widget == 1){
828
+ echo '<div class="main-popup-mystickymenu-bg first-widget-popup"><div class="main-popup-mystickymenu-bg mystickymenu_container_popupbox"><div class="firstwidget-popup-contain"><img src="'. MYSTICKYMENU_URL .'/images/firstwidget_header.svg"><h4>Your first welcome bar is up! 🎉</h4> <p> Yay - we’re happy you chose MyStickyMenu for your website. If you run into anything, the <a href=" https://premio.io/help/mystickymenu/?utm_source=firstbar" target="_blank" style="text-decoration: underline !important;"><strong>help center</strong></a> is always here for you.</p><a href="'.admin_url("admin.php?page=my-stickymenu-welcomebar").'" class="mystickymenu btn-black btn-back-dashboard">Back to Dashboard</a></div><div class="popup-modul-close-btn firstwidget-model"><a href="javascript:void(0)" class="close-chaty-maxvisitor-popup" id="close-first-popup"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 5L5 15" stroke="#4A4A4A" stroke-width="2.08" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 5L15 15" stroke="#4A4A4A" stroke-width="2.08" stroke-linecap="round" stroke-linejoin="round"/></svg></a></div></div></div><div class="mystickymenupopup-overlay" id="first_widget_overlay" style="display:block;"></div>';
829
+ }
830
+
831
+ echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Settings saved.','mystickymenu'). '</p></strong></div>';
832
+ } else {
833
+ wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
834
+ echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
835
+ }
836
+ }
837
+
838
+
839
+
840
+ if (isset($_POST['mysticky_welcomebar_reset']) && !empty($_POST['mysticky_welcomebar_reset']) && isset($_POST['nonce_reset'])) {
841
+ if(!empty($_POST['nonce_reset']) && wp_verify_nonce($_POST['nonce_reset'], 'mysticky_option_welcomebar_reset')) {
842
+ $mysticky_option_welcomebar_reset = mysticky_welcomebar_pro_widget_default_fields();
843
+ update_option( 'mysticky_option_welcomebar', $mysticky_option_welcomebar_reset);
844
+ $this->mysticky_clear_all_caches();
845
+ echo '<div class="updated settings-error notice is-dismissible "><p><strong>' . esc_html__('Reset Settings saved.','mystickymenu'). '</p></strong></div>';
846
+ } else {
847
+ wp_verify_nonce($_GET['nonce'], 'wporg_frontend_delete');
848
+ echo '<div class="error settings-error notice is-dismissible "><p><strong>' . esc_html__('Unable to complete your request','mystickymenu'). '</p></strong></div>';
849
+ }
850
+ }
851
+
852
+ if(isset($is_first_widget) && $is_first_widget == 0 && isset($_POST['submit']) && $_POST['submit'] == 'SAVE & VIEW DASHBOARD'){
853
+ ?>
854
+ <script>
855
+ window.location.href = <?php echo "'".admin_url("admin.php?page=my-stickymenu-welcomebar")."'";?>;
856
+ </script>
857
+ <?php
858
+ }
859
+
860
+ $mysticky_options = get_option( 'mysticky_option_name');
861
+ $is_old = get_option("has_sticky_header_old_version");
862
+ $is_old = ($is_old == "yes")?true:false;
863
+ $nonce = wp_create_nonce('mysticky_option_backend_update');
864
+ $pro_url = "https://go.premio.io/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
865
+
866
+ ?>
867
+ <style>
868
+ div#wpcontent {
869
+ background: rgba(101,114,219,1);
870
+ background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
871
+ background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
872
+ background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
873
+ background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
874
+ background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
875
+ background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
876
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
877
+ }
878
+ </style>
879
+ <div id="mystickymenu" class="wrap mystickymenu">
880
+
881
+ <div id="sticky-header-welcome-bar" class="sticky-header-content">
882
+ <?php
883
+
884
+ $welcomebars_widgets = get_option( 'mysticky_option_welcomebar' );
885
+ if ( !isset($_GET['widget']) && isset( $_GET['page'] ) && $_GET['page'] == 'my-stickymenu-welcomebar' ) {
886
+ include_once( 'stickymenu-dashboard.php');
887
+ }elseif ( !isset($_GET['isedit']) && !isset($_GET['save']) && isset($welcomebars_widgets) && !empty($welcomebars_widgets) ) {
888
+ ?>
889
+ <div id="mystickymenu" class="wrap mystickymenu mystickymenu-new-widget-wrap">
890
+ <?php include_once dirname(__FILE__) . '/mystickymeny-new-welcomebar.php';?>
891
+ </div>
892
+ <?php
893
+ }else{
894
+
895
+
896
+ mysticky_welcome_bar_backend();
897
+ }
898
+ ?>
899
+ </div>
900
+ </div>
901
+ <?php
902
+ }
903
+
904
+ public function mystickystickymenu_admin_new_welcomebar_page() {
905
+ $welcomebars_widgets = get_option( 'mysticky_option_welcomebar' );
906
+ if( isset($welcomebars_widgets) && !empty($welcomebars_widgets)){
907
+ ?>
908
+ <div id="mystickymenu" class="wrap mystickymenu mystickymenu-new-widget-wrap">
909
+ <?php include_once dirname(__FILE__) . '/mystickymeny-new-welcomebar.php';?>
910
+ </div>
911
+ <?php
912
+ }else{ ?>
913
+ <div id="mystickymenu" class="wrap mystickymenu">
914
+ <div id="sticky-header-welcome-bar" class="sticky-header-content">
915
+ <?php mysticky_welcome_bar_backend(); ?>
916
+ </div>
917
+ </div>
918
+ <?php
919
+ }
920
+
921
+ }
922
+
923
+ public function mystickymenu_recommended_plugins() {
924
+ include_once 'recommended-plugins.php';
925
+ }
926
+
927
+
928
+
929
+ public function mystickymenu_admin_upgrade_to_pro() {
930
+ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2199&edd_options[price_id]=";
931
+ ?>
932
+ <style>
933
+ div#wpcontent {
934
+ background: rgba(101,114,219,1);
935
+ background: -moz-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
936
+ background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(101,114,219,1)), color-stop(67%, rgba(238,134,198,1)), color-stop(100%, rgba(238,134,198,1)));
937
+ background: -webkit-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
938
+ background: -o-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
939
+ background: -ms-linear-gradient(-45deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
940
+ background: linear-gradient(135deg, rgba(101,114,219,1) 0%, rgba(238,134,198,1) 67%, rgba(238,134,198,1) 100%);
941
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6572db', endColorstr='#ee86c6', GradientType=1 );
942
+ }
943
+ </style>
944
+ <div id="mystickymenu" class="wrap mystickymenu">
945
+ <?php include_once "upgrade-to-pro.php"; ?>
946
+ </div>
947
+ <?php
948
+ }
949
+
950
+ public function mysticky_default_options() {
951
+
952
+ global $options;
953
+ $menu_locations = get_nav_menu_locations();
954
+ $menu_object = isset($menu_locations['menu-1']) ? wp_get_nav_menu_object( $menu_locations['menu-1'] ) : array();
955
+
956
+ if ( is_object($menu_object) && $menu_object->slug != '' ) {
957
+ $mysticky_class_id_selector = $menu_object->slug;
958
+ } else {
959
+ $mysticky_class_id_selector = 'custom';
960
+ }
961
+
962
+ $mystickyClass = '.navbar';
963
+ $template_name = get_template();
964
+ switch( $template_name ){
965
+ case 'ashe':
966
+ $mysticky_class_id_selector = 'custom';
967
+ $mystickyClass = '#main-nav';
968
+ break;
969
+ case 'astra':
970
+ case 'hello-elementor':
971
+ case 'sydney':
972
+ case 'twentysixteen':
973
+ $mysticky_class_id_selector = 'custom';
974
+ $mystickyClass = 'header.site-header';
975
+ break;
976
+ case 'generatepress':
977
+ $mysticky_class_id_selector = 'custom';
978
+ $mystickyClass = 'nav.main-navigation';
979
+ break;
980
+ case 'transportex':
981
+ $mysticky_class_id_selector = 'custom';
982
+ $mystickyClass = '.transportex-menu-full';
983
+ break;
984
+ case 'hestia':
985
+ case 'neve':
986
+ $mysticky_class_id_selector = 'custom';
987
+ $mystickyClass = 'header.header';
988
+ break;
989
+ case 'mesmerize':
990
+ $mysticky_class_id_selector = 'custom';
991
+ $mystickyClass = '.navigation-bar';
992
+ break;
993
+ case 'oceanwp':
994
+ $mysticky_class_id_selector = 'custom';
995
+ $mystickyClass = 'header#site-header';
996
+ break;
997
+ case 'shapely':
998
+ $mysticky_class_id_selector = 'custom';
999
+ $mystickyClass = '#site-navigation';
1000
+ break;
1001
+ case 'storefront':
1002
+ $mysticky_class_id_selector = 'custom';
1003
+ $mystickyClass = '.storefront-primary-navigation';
1004
+ break;
1005
+ case 'twentynineteen':
1006
+ $mysticky_class_id_selector = 'custom';
1007
+ $mystickyClass = '#site-navigation';
1008
+ break;
1009
+ case 'twentyseventeen':
1010
+ $mysticky_class_id_selector = 'custom';
1011
+ $mystickyClass = '.navigation-top';
1012
+ break;
1013
+ default:
1014
+ break;
1015
+ }
1016
+
1017
+
1018
+ $default = array(
1019
+ 'mysticky_class_id_selector' => $mysticky_class_id_selector,
1020
+ 'mysticky_class_selector' => $mystickyClass,
1021
+ 'device_desktop' => 'on',
1022
+ 'device_mobile' => 'on',
1023
+ 'myfixed_zindex' => '99990',
1024
+ 'myfixed_bgcolor' => '#f7f5e7',
1025
+ 'myfixed_opacity' => '90',
1026
+ 'myfixed_transition_time' => '0.3',
1027
+ 'myfixed_disable_small_screen' => '0',
1028
+ 'myfixed_disable_large_screen' => '0',
1029
+ 'mysticky_active_on_height' => '0',
1030
+ 'mysticky_active_on_height_home'=> '0',
1031
+ 'myfixed_fade' => 'slide',
1032
+ 'myfixed_cssstyle' => '#mysticky-nav .myfixed { margin:0 auto; float:none; border:0px; background:none; max-width:100%; }'
1033
+ );
1034
+
1035
+ if ( get_option('mysticky_option_name') == false && current_user_can( 'manage_options' ) ) {
1036
+ $status = get_option("sticky_header_status");
1037
+ if($status == false) {
1038
+ update_option("sticky_header_status", "done");
1039
+ update_option("has_sticky_header_old_version", "no");
1040
+ }
1041
+ update_option( 'mysticky_option_name', $default );
1042
+ } else {
1043
+ $status = get_option("sticky_header_status");
1044
+ if($status == false) {
1045
+ update_option("sticky_header_status", "done");
1046
+ update_option("has_sticky_header_old_version", "yes");
1047
+ }
1048
+ }
1049
+
1050
+ if(isset($_POST['reset_mysticky_options']) && current_user_can( 'manage_options' )) {
1051
+ if(isset($_REQUEST['nonce']) && !empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], 'mysticky_option_backend_reset_nonce')) {
1052
+ update_option('mysticky_option_name', $default);
1053
+ } else {
1054
+
1055
+ }
1056
+ }
1057
+
1058
+ if ( !get_option( 'update_mysticky_version_2_6') && current_user_can( 'manage_options' )) {
1059
+ $mysticky_option_name = get_option( 'mysticky_option_name' );
1060
+ $mysticky_option_name['mysticky_class_id_selector'] = 'custom';
1061
+ if ($mysticky_option_name['myfixed_fade'] == 'on'){
1062
+ $mysticky_option_name['myfixed_fade'] = 'slide';
1063
+ }else{
1064
+ $mysticky_option_name['myfixed_fade'] = 'fade';
1065
+ }
1066
+ update_option( 'mysticky_option_name', $mysticky_option_name );
1067
+ update_option( 'update_mysticky_version_2_6', true );
1068
+ }
1069
+
1070
+ if ( !get_option( 'update_mysticky_version_2_5_7') && current_user_can( 'manage_options' )) {
1071
+ $mysticky_option_name = get_option( 'mysticky_option_name' );
1072
+ $mysticky_option_name['stickymenu_enable'] = 1;
1073
+ update_option( 'mysticky_option_name', $mysticky_option_name );
1074
+ update_option( 'update_mysticky_version_2_5_7', true );
1075
+ }
1076
+ }
1077
+
1078
+ /*
1079
+ * clear cache when any option is updated
1080
+ *
1081
+ */
1082
+ public function mysticky_clear_all_caches(){
1083
+
1084
+ try {
1085
+ global $wp_fastest_cache;
1086
+
1087
+ // if W3 Total Cache is being used, clear the cache
1088
+ if (function_exists('w3tc_flush_all')) {
1089
+ w3tc_flush_all();
1090
+ }
1091
+ /* if WP Super Cache is being used, clear the cache */
1092
+ if (function_exists('wp_cache_clean_cache')) {
1093
+ global $file_prefix, $supercachedir;
1094
+ if (empty($supercachedir) && function_exists('get_supercache_dir')) {
1095
+ $supercachedir = get_supercache_dir();
1096
+ }
1097
+ wp_cache_clean_cache($file_prefix);
1098
+ }
1099
+
1100
+ if (class_exists('WpeCommon')) {
1101
+ //be extra careful, just in case 3rd party changes things on us
1102
+ if (method_exists('WpeCommon', 'purge_memcached')) {
1103
+ //WpeCommon::purge_memcached();
1104
+ }
1105
+ if (method_exists('WpeCommon', 'clear_maxcdn_cache')) {
1106
+ //WpeCommon::clear_maxcdn_cache();
1107
+ }
1108
+ if (method_exists('WpeCommon', 'purge_varnish_cache')) {
1109
+ //WpeCommon::purge_varnish_cache();
1110
+ }
1111
+ }
1112
+
1113
+ if (method_exists('WpFastestCache', 'deleteCache') && !empty($wp_fastest_cache)) {
1114
+ $wp_fastest_cache->deleteCache();
1115
+ }
1116
+ if (function_exists('rocket_clean_domain')) {
1117
+ rocket_clean_domain();
1118
+ // Preload cache.
1119
+ if (function_exists('run_rocket_sitemap_preload')) {
1120
+ run_rocket_sitemap_preload();
1121
+ }
1122
+ }
1123
+
1124
+ if (class_exists("autoptimizeCache") && method_exists("autoptimizeCache", "clearall")) {
1125
+ autoptimizeCache::clearall();
1126
+ }
1127
+
1128
+ if (class_exists("LiteSpeed_Cache_API") && method_exists("autoptimizeCache", "purge_all")) {
1129
+ LiteSpeed_Cache_API::purge_all();
1130
+ }
1131
+
1132
+ if ( class_exists( '\Hummingbird\Core\Utils' ) ) {
1133
+
1134
+ $modules = \Hummingbird\Core\Utils::get_active_cache_modules();
1135
+ foreach ( $modules as $module => $name ) {
1136
+ $mod = \Hummingbird\Core\Utils::get_module( $module );
1137
+
1138
+ if ( $mod->is_active() ) {
1139
+ if ( 'minify' === $module ) {
1140
+ $mod->clear_files();
1141
+ } else {
1142
+ $mod->clear_cache();
1143
+ }
1144
+ }
1145
+ }
1146
+ }
1147
+
1148
+ } catch (Exception $e) {
1149
+ return 1;
1150
+ }
1151
+ }
1152
+
1153
+ public function mystickymenu_deactivate() {
1154
+ global $pagenow;
1155
+
1156
+ if ( 'plugins.php' !== $pagenow ) {
1157
+ return;
1158
+ }
1159
+ include dirname(__FILE__) . "/mystickymenu-deactivate-form.php";
1160
+ }
1161
+ public function mystickymenu_plugin_deactivate() {
1162
+ global $current_user;
1163
+ if ( ! current_user_can( 'manage_options' ) ) {
1164
+ wp_die(0);
1165
+ }
1166
+ check_ajax_referer( 'mystickymenu_deactivate_nonce', 'nonce' );
1167
+
1168
+ $postData = $_POST;
1169
+ $errorCounter = 0;
1170
+ $response = array();
1171
+ $response['status'] = 0;
1172
+ $response['message'] = "";
1173
+ $response['valid'] = 1;
1174
+ if(!isset($postData['reason']) || empty($postData['reason'])) {
1175
+ $errorCounter++;
1176
+ $response['message'] = "Please provide reason";
1177
+ } else if(!isset($postData['reason']) || empty($postData['reason'])) {
1178
+ $errorCounter++;
1179
+ $response['message'] = "Please provide reason";
1180
+ } else {
1181
+ $nonce = $postData['nonce'];
1182
+ if(!wp_verify_nonce($nonce, 'mystickymenu_deactivate_nonce')) {
1183
+ $response['message'] = __("Your request is not valid", "mystickymenu");
1184
+ $errorCounter++;
1185
+ $response['valid'] = 0;
1186
+ }
1187
+ }
1188
+ if($errorCounter == 0) {
1189
+ global $current_user;
1190
+ $plugin_info = get_plugin_data( dirname(__FILE__) . "/mystickymenu.php" );
1191
+ $postData = $_POST;
1192
+ $email = "none@none.none";
1193
+
1194
+ if (isset($postData['email_id']) && !empty($postData['email_id']) && filter_var($postData['email_id'], FILTER_VALIDATE_EMAIL)) {
1195
+ $email = $postData['email_id'];
1196
+ }
1197
+ $domain = site_url();
1198
+ $user_name = $current_user->first_name . " " . $current_user->last_name;
1199
+
1200
+ $response['status'] = 1;
1201
+
1202
+ /* sending message to Crisp */
1203
+ $post_message = array();
1204
+
1205
+ $message_data = array();
1206
+ $message_data['key'] = "Plugin";
1207
+ $message_data['value'] = "My Sticky Menu";
1208
+ $post_message[] = $message_data;
1209
+
1210
+ $message_data = array();
1211
+ $message_data['key'] = "Plugin Version";
1212
+ $message_data['value'] = $plugin_info['Version'];
1213
+ $post_message[] = $message_data;
1214
+
1215
+ $message_data = array();
1216
+ $message_data['key'] = "Domain";
1217
+ $message_data['value'] = $domain;
1218
+ $post_message[] = $message_data;
1219
+
1220
+ $message_data = array();
1221
+ $message_data['key'] = "Email";
1222
+ $message_data['value'] = $email;
1223
+ $post_message[] = $message_data;
1224
+
1225
+ $message_data = array();
1226
+ $message_data['key'] = "WordPress Version";
1227
+ $message_data['value'] = esc_attr(get_bloginfo('version'));
1228
+ $post_message[] = $message_data;
1229
+
1230
+ $message_data = array();
1231
+ $message_data['key'] = "PHP Version";
1232
+ $message_data['value'] = PHP_VERSION;
1233
+ $post_message[] = $message_data;
1234
+
1235
+ $message_data = array();
1236
+ $message_data['key'] = "Message";
1237
+ $message_data['value'] = $postData['reason'];
1238
+ $post_message[] = $message_data;
1239
+
1240
+ $api_params = array(
1241
+ 'domain' => $domain,
1242
+ 'email' => $email,
1243
+ 'url' => site_url(),
1244
+ 'name' => $user_name,
1245
+ 'message' => $post_message,
1246
+ 'plugin' => "My Sticky Menu",
1247
+ 'type' => "Uninstall",
1248
+ );
1249
+
1250
+ /* Sending message to Crisp API */
1251
+ $crisp_response = wp_safe_remote_post("https://go.premio.io/crisp/crisp-send-message.php", array('body' => $api_params, 'timeout' => 15, 'sslverify' => true));
1252
+
1253
+ if (is_wp_error($crisp_response)) {
1254
+ wp_safe_remote_post("https://go.premio.io/crisp/crisp-send-message.php", array('body' => $api_params, 'timeout' => 15, 'sslverify' => false));
1255
+ }
1256
+ }
1257
+ echo json_encode($response);
1258
+ wp_die();
1259
+ }
1260
+ }
1261
+
1262
+
1263
+
1264
+ class MyStickyMenuFrontend
1265
+ {
1266
+
1267
+ public function __construct()
1268
+ {
1269
+ add_action( 'wp_head', array( $this, 'mysticky_build_stylesheet_content' ) );
1270
+ add_action( 'wp_enqueue_scripts', array( $this, 'mysticky_disable_at' ) );
1271
+ }
1272
+
1273
+ public function mysticky_build_stylesheet_content() {
1274
+
1275
+ $mysticky_options = get_option( 'mysticky_option_name' );
1276
+
1277
+ if (isset($mysticky_options['disable_css'])) {
1278
+ //do nothing
1279
+ } else {
1280
+ $mysticky_options['disable_css'] = false;
1281
+ }
1282
+
1283
+ if ($mysticky_options ['disable_css'] == false ) {
1284
+
1285
+ echo '<style id="mystickymenu" type="text/css">';
1286
+ echo '#mysticky-nav { width:100%; position: static; }';
1287
+ echo '#mysticky-nav.wrapfixed { position:fixed; left: 0px; margin-top:0px; z-index: '. $mysticky_options ['myfixed_zindex'] .'; -webkit-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -moz-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -o-transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; transition: ' . $mysticky_options ['myfixed_transition_time'] . 's; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=' . $mysticky_options ['myfixed_opacity'] . ')"; filter: alpha(opacity=' . $mysticky_options ['myfixed_opacity'] . '); opacity:' . $mysticky_options ['myfixed_opacity'] / 100 . '; background-color: ' . $mysticky_options ['myfixed_bgcolor'] . ';}';
1288
+
1289
+ echo '#mysticky-nav.wrapfixed .myfixed{ background-color: ' . $mysticky_options ['myfixed_bgcolor'] . '; position: relative;top: auto;left: auto;right: auto;}';
1290
+
1291
+ if ( isset($mysticky_options ['myfixed_textcolor']) && $mysticky_options ['myfixed_textcolor'] != '' ) {
1292
+ echo '#mysticky-nav.wrapfixed ul li.menu-item a { color: ' . $mysticky_options ['myfixed_textcolor'] . ';}';
1293
+ }
1294
+
1295
+
1296
+ if ($mysticky_options ['myfixed_disable_small_screen'] > 0 ){
1297
+ //echo '@media (max-width: '.$mysticky_options['myfixed_disable_small_screen'].'px) {#mysticky-nav.wrapfixed {position: static;} }';
1298
+ };
1299
+ if ( !isset( $mysticky_options['myfixed_cssstyle'] ) ) {
1300
+ echo '#mysticky-nav .myfixed { margin:0 auto; float:none; border:0px; background:none; max-width:100%; }';
1301
+ }
1302
+ if ( isset( $mysticky_options['myfixed_cssstyle'] ) && $mysticky_options['myfixed_cssstyle'] != '' ) {
1303
+ echo $mysticky_options ['myfixed_cssstyle'];
1304
+ }
1305
+ echo '</style>';
1306
+ $template_name = get_template();
1307
+ ?>
1308
+ <style type="text/css">
1309
+ <?php if( $template_name == 'hestia' ) { ?>
1310
+ #mysticky-nav.wrapfixed {box-shadow: 0 1px 10px -6px #0000006b,0 1px 10px 0 #0000001f,0 4px 5px -2px #0000001a;}
1311
+ #mysticky-nav.wrapfixed .navbar {position: relative;background-color: transparent;box-shadow: none;}
1312
+ <?php } ?>
1313
+ <?php if( $template_name == 'shapely' ) { ?>
1314
+ #mysticky-nav.wrapfixed #site-navigation {position: relative;}
1315
+ <?php } ?>
1316
+ <?php if( $template_name == 'storefront' ) { ?>
1317
+ #mysticky-nav.wrapfixed > .site-header {margin-bottom: 0;}
1318
+ #mysticky-nav.wrapfixed > .storefront-primary-navigation {padding: 10px 0;}
1319
+ <?php } ?>
1320
+ <?php if( $template_name == 'transportex' ) { ?>
1321
+ #mysticky-nav.wrapfixed > .transportex-menu-full {margin: 0 auto;}
1322
+ .transportex-headwidget #mysticky-nav.wrapfixed .navbar-wp {top: 0;}
1323
+ <?php } ?>
1324
+ <?php if( $template_name == 'twentynineteen' ) { ?>
1325
+ #mysticky-nav.wrapfixed {padding: 10px;}
1326
+ <?php } ?>
1327
+ <?php if( $template_name == 'twentysixteen' ) { ?>
1328
+ #mysticky-nav.wrapfixed > .site-header {padding-top: 0;padding-bottom: 0;}
1329
+ <?php } ?>
1330
+ <?php if( $template_name == 'twentytwenty' ) { ?>
1331
+ #site-header {background: transparent;}
1332
+ <?php } ?>
1333
+ </style>
1334
+ <?php
1335
+ }
1336
+ }
1337
+
1338
+ public function mystickymenu_google_fonts_url() {
1339
+ $welcomebar = get_option( 'mysticky_option_welcomebar' );
1340
+
1341
+ $default_fonts = array('System Stack','Arial', 'Tahoma', 'Verdana', 'Helvetica', 'Times New Roman', 'Trebuchet MS', 'Georgia' );
1342
+ $fonts_url = '';
1343
+ $fonts = array();
1344
+ $font_args = array();
1345
+ $base_url = "https://fonts.googleapis.com/css";
1346
+ $fonts['family']['Lato'] = 'Lato:400,500,600,700';
1347
+ if ( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] !='' && !in_array( $welcomebar['mysticky_welcomebar_font'], $default_fonts) ) {
1348
+ $fonts['family'][$welcomebar['mysticky_welcomebar_font']] = $welcomebar['mysticky_welcomebar_font'] . ':400,500,600,700';
1349
+ }
1350
+ if ( isset($welcomebar['mysticky_welcomebar_btnfont']) && $welcomebar['mysticky_welcomebar_btnfont'] !='' && !in_array( $welcomebar['mysticky_welcomebar_btnfont'], $default_fonts) ) {
1351
+ $fonts['family'][$welcomebar['mysticky_welcomebar_btnfont']] = $welcomebar['mysticky_welcomebar_btnfont'] . ':400,500,600,700';
1352
+ }
1353
+
1354
+ /* Prepapre URL if font family defined. */
1355
+ if( !empty( $fonts['family'] ) ) {
1356
+
1357
+ /* format family to string */
1358
+ if( is_array($fonts['family']) ){
1359
+ $fonts['family'] = implode( '|', $fonts['family'] );
1360
+ }
1361
+
1362
+ $font_args['family'] = urlencode( trim( $fonts['family'] ) );
1363
+
1364
+ if( !empty( $fonts['subsets'] ) ){
1365
+
1366
+ /* format subsets to string */
1367
+ if( is_array( $fonts['subsets'] ) ){
1368
+ $fonts['subsets'] = implode( ',', $fonts['subsets'] );
1369
+ }
1370
+
1371
+ $font_args['subsets'] = urlencode( trim( $fonts['subsets'] ) );
1372
+ }
1373
+
1374
+ $fonts_url = add_query_arg( $font_args, $base_url );
1375
+ }
1376
+
1377
+ return esc_url_raw( $fonts_url );
1378
+ }
1379
+
1380
+ public function mystickymenu_script() {
1381
+
1382
+ wp_enqueue_script( 'jquery' );
1383
+
1384
+ $mysticky_options = get_option( 'mysticky_option_name' );
1385
+
1386
+ if ( is_admin_bar_showing() ) {
1387
+ $top = "true";
1388
+ } else {
1389
+ $top = "false";
1390
+ }
1391
+
1392
+ $welcomebar = get_option( 'mysticky_option_welcomebar' );
1393
+ if ( isset($welcomebar['mysticky_welcomebar_enable']) && $welcomebar['mysticky_welcomebar_enable'] == 1 ) {
1394
+ wp_enqueue_style('google-fonts', $this->mystickymenu_google_fonts_url(),array(), MYSTICKY_VERSION );
1395
+ }
1396
+
1397
+ if( !isset($mysticky_options['stickymenu_enable']) || isset($mysticky_options['stickymenu_enable']) && $mysticky_options['stickymenu_enable'] == 0){
1398
+ return;
1399
+ }
1400
+ // needed for update 1.7 => 1.8 ... will be removed in the future ()
1401
+ if (isset($mysticky_options['mysticky_active_on_height_home'])) {
1402
+ //do nothing
1403
+ } else {
1404
+ $mysticky_options['mysticky_active_on_height_home'] = $mysticky_options['mysticky_active_on_height'];
1405
+ }
1406
+
1407
+
1408
+ if ($mysticky_options['mysticky_active_on_height_home'] == 0 ) {
1409
+ $mysticky_options['mysticky_active_on_height_home'] = $mysticky_options['mysticky_active_on_height'];
1410
+ }
1411
+
1412
+
1413
+ if ( is_front_page() && is_home() ) {
1414
+
1415
+ $mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
1416
+
1417
+ } elseif ( is_front_page()){
1418
+
1419
+ $mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
1420
+
1421
+ }
1422
+ wp_register_script('detectmobilebrowser', plugins_url( 'js/detectmobilebrowser.js', __FILE__ ), array('jquery'), MYSTICKY_VERSION, true);
1423
+ wp_enqueue_script( 'detectmobilebrowser' );
1424
+
1425
+ wp_register_script('mystickymenu', plugins_url( 'js/mystickymenu.min.js', __FILE__ ), array('jquery'), MYSTICKY_VERSION, true);
1426
+ wp_enqueue_script( 'mystickymenu' );
1427
+
1428
+ $myfixed_disable_scroll_down = isset($mysticky_options['myfixed_disable_scroll_down']) ? $mysticky_options['myfixed_disable_scroll_down'] : 'false';
1429
+ $mystickyTransition = isset($mysticky_options['myfixed_fade']) ? $mysticky_options['myfixed_fade'] : 'fade';
1430
+ $mystickyDisableLarge = isset($mysticky_options['myfixed_disable_large_screen']) ? $mysticky_options['myfixed_disable_large_screen'] : '0';
1431
+
1432
+ $mystickyClass = ( $mysticky_options['mysticky_class_id_selector'] != 'custom') ? '.menu-' . $mysticky_options['mysticky_class_id_selector'] .'-container' : $mysticky_options['mysticky_class_selector'];
1433
+
1434
+ if ( $mysticky_options['mysticky_class_id_selector'] != 'custom' ) {
1435
+ $template_name = get_template();
1436
+ switch( $template_name ){
1437
+ case 'ashe':
1438
+ $mystickyClass = '#main-nav';
1439
+ break;
1440
+ case 'astra':
1441
+ case 'hello-elementor':
1442
+ case 'sydney':
1443
+ case 'twentysixteen':
1444
+ $mystickyClass = 'header.site-header';
1445
+ break;
1446
+ case 'generatepress':
1447
+ $mystickyClass = 'nav.main-navigation';
1448
+ break;
1449
+ case 'transportex':
1450
+ $mystickyClass = '.transportex-menu-full';
1451
+ break;
1452
+ case 'hestia':
1453
+ case 'neve':
1454
+ $mystickyClass = 'header.header';
1455
+ break;
1456
+ case 'mesmerize':
1457
+ $mystickyClass = '.navigation-bar';
1458
+ break;
1459
+ case 'oceanwp':
1460
+ $mystickyClass = 'header#site-header';
1461
+ break;
1462
+ case 'shapely':
1463
+ $mystickyClass = '#site-navigation';
1464
+ break;
1465
+ case 'storefront':
1466
+ $mystickyClass = '.storefront-primary-navigation';
1467
+ break;
1468
+ case 'twentynineteen':
1469
+ $mystickyClass = '#site-navigation';
1470
+ break;
1471
+ case 'twentyseventeen':
1472
+ $mystickyClass = '.navigation-top';
1473
+ break;
1474
+ default:
1475
+ break;
1476
+ }
1477
+ }
1478
+
1479
+
1480
+ $mysticky_translation_array = array(
1481
+ 'mystickyClass' => $mystickyClass,
1482
+ 'activationHeight' => $mysticky_options['mysticky_active_on_height'],
1483
+ 'disableWidth' => $mysticky_options['myfixed_disable_small_screen'],
1484
+ 'disableLargeWidth' => $mystickyDisableLarge,
1485
+ 'adminBar' => $top,
1486
+ 'device_desktop' => true,
1487
+ 'device_mobile' => true,
1488
+ 'mystickyTransition' => $mystickyTransition,
1489
+ 'mysticky_disable_down' => $myfixed_disable_scroll_down,
1490
+
1491
+
1492
+ );
1493
+ wp_localize_script( 'mystickymenu', 'option', $mysticky_translation_array );
1494
+ }
1495
+
1496
+ public function mysticky_disable_at() {
1497
+
1498
+
1499
+ $mysticky_options = get_option( 'mysticky_option_name' );
1500
+
1501
+ $mysticky_disable_at_front_home = isset($mysticky_options['mysticky_disable_at_front_home']);
1502
+ $mysticky_disable_at_blog = isset($mysticky_options['mysticky_disable_at_blog']);
1503
+ $mysticky_disable_at_page = isset($mysticky_options['mysticky_disable_at_page']);
1504
+ $mysticky_disable_at_tag = isset($mysticky_options['mysticky_disable_at_tag']);
1505
+ $mysticky_disable_at_category = isset($mysticky_options['mysticky_disable_at_category']);
1506
+ $mysticky_disable_at_single = isset($mysticky_options['mysticky_disable_at_single']);
1507
+ $mysticky_disable_at_archive = isset($mysticky_options['mysticky_disable_at_archive']);
1508
+ $mysticky_disable_at_search = isset($mysticky_options['mysticky_disable_at_search']);
1509
+ $mysticky_disable_at_404 = isset($mysticky_options['mysticky_disable_at_404']);
1510
+ $mysticky_enable_at_pages = isset($mysticky_options['mysticky_enable_at_pages']) ? $mysticky_options['mysticky_enable_at_pages'] : '';
1511
+ $mysticky_enable_at_posts = isset($mysticky_options['mysticky_enable_at_posts']) ? $mysticky_options['mysticky_enable_at_posts'] : '';
1512
+
1513
+ // Trim input to ignore empty spaces
1514
+ $mysticky_enable_at_pages_exp = array_map('trim', explode(',', $mysticky_enable_at_pages));
1515
+ $mysticky_enable_at_posts_exp = array_map('trim', explode(',', $mysticky_enable_at_posts));
1516
+
1517
+
1518
+
1519
+
1520
+ if ( is_front_page() && is_home() ) { /* Default homepage */
1521
+
1522
+ if ( $mysticky_disable_at_front_home == false ) {
1523
+ $this->mystickymenu_script();
1524
+ }
1525
+ } elseif ( is_front_page()){ /* Static homepage */
1526
+
1527
+ if ( $mysticky_disable_at_front_home == false ) {
1528
+ $this->mystickymenu_script();
1529
+ }
1530
+
1531
+ } elseif ( is_home()){ /* Blog page */
1532
+
1533
+ if ( $mysticky_disable_at_blog == false ) {
1534
+ $this->mystickymenu_script();
1535
+ }
1536
+
1537
+ } elseif ( is_page() ){ /* Single page*/
1538
+
1539
+ if ( $mysticky_disable_at_page == false ) {
1540
+ $this->mystickymenu_script();
1541
+ }
1542
+ if ( is_page( $mysticky_enable_at_pages_exp ) ){
1543
+ $this->mystickymenu_script();
1544
+ }
1545
+
1546
+ } elseif ( is_tag()){ /* Tag page */
1547
+
1548
+ if ( $mysticky_disable_at_tag == false ) {
1549
+ $this->mystickymenu_script();
1550
+ }
1551
+
1552
+ } elseif ( is_category()){ /* Category page */
1553
+
1554
+ if ( $mysticky_disable_at_category == false ) {
1555
+ $this->mystickymenu_script();
1556
+ }
1557
+
1558
+ } elseif ( is_single()){ /* Single post */
1559
+
1560
+ if ( $mysticky_disable_at_single == false ) {
1561
+ $this->mystickymenu_script();
1562
+ }
1563
+
1564
+ if ( is_single( $mysticky_enable_at_posts_exp ) ){
1565
+ $this->mystickymenu_script();
1566
+ }
1567
+
1568
+ } elseif ( is_archive()){ /* Archive */
1569
+
1570
+ if ( $mysticky_disable_at_archive == false ) {
1571
+ $this->mystickymenu_script();
1572
+ }
1573
+
1574
+ } elseif ( is_search()){ /* Search */
1575
+
1576
+ if ( $mysticky_disable_at_search == false ) {
1577
+ $this->mystickymenu_script();
1578
+ }
1579
+
1580
+ } elseif ( is_404()){ /* 404 */
1581
+
1582
+ if ( $mysticky_disable_at_404 == false ) {
1583
+ $this->mystickymenu_script();
1584
+ }
1585
+ }
1586
+
1587
+ }
1588
+
1589
+ }
1590
+
1591
+ if( is_admin() ) {
1592
+ new MyStickyMenuBackend();
1593
+ require_once 'mystickymenu-affiliate.php';
1594
+
1595
+ } else {
1596
+ new MyStickyMenuFrontend();
1597
+ }
1598
+
1599
+
1600
+ register_activation_hook( __FILE__, 'mystickymenu_activate' );
1601
+
1602
+ function mystickymenu_activate() {
1603
+ update_option( 'update_mysticky_version_2_5_7', true );
1604
  }
mystickymeny-new-welcomebar.php CHANGED
@@ -1,7 +1,7 @@
1
  <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins" />
2
  <h2 class="text-center"><?php esc_attr_e( 'Create a new My Sticky Welcome bar for your website. What can you use it for?', 'mystickyelements' ); ?></h2>
3
  <div class="mystickymenu-new-widget-row">
4
- <div class="mystickymenu-features">
5
  <ul>
6
  <li>
7
  <div class="mystickymenu-feature">
1
  <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins" />
2
  <h2 class="text-center"><?php esc_attr_e( 'Create a new My Sticky Welcome bar for your website. What can you use it for?', 'mystickyelements' ); ?></h2>
3
  <div class="mystickymenu-new-widget-row">
4
+ <div class="mystickymenu-features new_widget_row">
5
  <ul>
6
  <li>
7
  <div class="mystickymenu-feature">
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: tomeraharon, galdub, premio
3
  Tags:floating bar, notification bar, menu, header, sticky menu, sticky header, floating menu, floating navigation menu, navigation menu, navigation, sticky navigation menu, welcome bar, hello bar, top bar, sticky bar
4
  Requires at least: 3.5.1
5
  Tested up to: 5.9
6
- Stable tag: 2.5.6
7
  License: GPLv2 or later
8
 
9
  Create a beautiful welcome notification bar. This sticky menu plugin will also make your menu or header stick to the top of page, when scrolled down and up.
@@ -23,18 +23,19 @@ With more than 80,000+ active installs and around 100 five-stars reviews, you ca
23
 
24
  = BENEFITS =
25
  * Improve user experience by letting your visitors access the navigation menu and navigate to the pages they want when they want to.
26
- * Make your website look more modern with sticky menu on desktop and mobile.
27
- * Increase number of pageviews and visitors' time on website
28
- * Create your own floating Welcome Bar and let your visitors know about your latest deals, announcements or any other important information
 
29
 
30
- The sticky header function is localized (multi language support) and responsive (as far as your theme is). Also there is possibility to add custom css code which make this plugin very flexible, customizable and user friendly. You can also use the notification bar in any languauge.
31
 
32
- My Sticky Menu plugin is originally designed for Twenty Thirteen template but should work on any theme, like: OceanWP, Nirvana Template, Travelify, Twenty Sixteen, Twenty Ten, Twenty Eleven, Max Magazine, Graduate, Lawyer theme, Spacious, Suits and more.
33
 
34
- My Sticky Menu is tested and compatible with Elementor website builder, Divi, WPBakery, Gutenberg, Visual composer, Beaver and other WordPress website builders.
35
 
36
  = WITH WELCOME BAR FEATURES YOU CAN: =
37
- * Display your floating bar at top position
38
  * When the user clicks on the welcome bar button you can close the bar, redirect to another URL, or launch a <a href="https://www.poptin.com/?utm_source=msm" target="_blank" title="Poptin pop up">Poptin pop up</a>
39
  * Change the background and button colors for your hello bar
40
  * Change display frequency after submission - show the announcement bar on every page, once a visit, or don't show the announcement bar after it's submitted
@@ -49,7 +50,7 @@ My Sticky Menu is tested and compatible with Elementor website builder, Divi, WP
49
  = WITH MY STICKY MENU YOU CAN: =
50
  * Show sticky header on scroll down/up
51
  * Fade or slide effect
52
- * Disable at small screen
53
  * Choose when to make visible on scroll
54
  * Change the font color when the menu is sticky
55
  * Change the background color
@@ -57,18 +58,22 @@ My Sticky Menu is tested and compatible with Elementor website builder, Divi, WP
57
  * Change the sticky transition time
58
  * Define the z-index of the sticky header
59
  * Set an entrance effect for your sticky menu
 
 
 
60
 
61
  = Welcome Bar Pro Features =
62
- * Multi Welcome Bar - Create a separate notification bar for different pages based on page targeting rules (E.g. seperate notification bar for different languages, different product categories and much more)
63
- * Display your floating bar at bottom position
 
64
  * Change the height of the sticky notification bar
65
  * Open redirect link in a new tab
66
  * Show your notification bar just on mobile or desktop
67
- * Show your notification bar on scroll or after a few seconds
68
  * Set an expiry date for your welcome bar, including settings a timezone
69
  * Display your floating notification bar on specific pages
70
- * New: You can set a thank you screen which appears after the button is clicked (can be used for coupons or any other message you want to show your visitors after they click on the button)
71
- * New: Add a rel Attribute to your notification bar button
72
 
73
  But wait, there's more 😉
74
 
@@ -90,14 +95,14 @@ We don’t store any local data about your visitors. Any time your menu or notif
90
  = Testimonials =
91
 
92
  > "Works great.
93
- One of the key element that i consider when choosing a theme is the sticky menu option. If the theme doesn't have it normally I don't use it. But now that’s not a problem for me anymore."<br><br>
94
 
95
  > "This plugin rocks!
96
  This plugin does exactly what it should. It is simple but powerful. I would suggest to anyone who wants to make their navigation menu sticky! I especially love the hide header on scroll down, show on scroll up feature that is built it. Great work!<br>
97
 
98
 
99
  == Installation ==
100
- After you activate the plugin, you should be able to create your first notification bar with ease, just customize the apperance and save. If you want to create a sticky menu, in most cases the plugin should be able to find the class/ID for the menu, if not then change sticky class/id to .your_navbar_class or #your_navbar_id - you might need to purge cache after saving.
101
 
102
  For example:
103
 
@@ -218,35 +223,35 @@ Wrock Metro Theme (entire header)
218
  == Frequently Asked Questions ==
219
 
220
  = How to find Sticky Class, what should I enter here? =
221
- So this depends on what you want to make sticky and what theme do you use, but for example if you want your menu to be sticky, than you can examine the code (in firefox right click and “View page source”) and find HTML element in which your menu is situated. This element have some class or id, and that’s the Sticky Class we need. If using class than don’t forget to ad dot (.) in front of class name, or hash (#) in front of id. Twenty Thirteen default working class is ".navbar" without of quotes.
222
 
223
  = Is there any way to restrict the width to the width of the header, rather than it being full width? =
224
- Yes, just leave "Sticky Background Color" field blank (clear). Than if needed define custom background color for sticky header inside ".myfixed css class" field using .myfixed class.
225
 
226
- = Ho do I add small logo to the menu? =
227
- That will depend on a theme you use, but if initially your menu and logo are in one div than you can use that div class or id in myStickymenu settings.
228
 
229
- If not you can change that in your header template file and add logo and menu divs inside new div with some custom class or id, than use that class or id in myStickymenu settings as a sticky class.
230
 
231
- In CSS you can style your custom class while not sticky using custom class you added before. Furthermore you can style your menu while sticky using .myfixed class which is added by js to your custom class while sticky is active.
232
 
233
- In some cases you can use the whole header div and than just style it different with .myfixed class, hide what you don’t need using CSS display:none; property, and position logo and menu as you like.
234
 
235
  = Is there a time limit for the free plan? =
236
  No. you can use the free plan as long as you want.
237
 
238
  = Can I use My Sticky Menu plugin on more than 1 domain? =
239
  There 2 ways to do it:
240
- 1. You can install the free Sticky Menu plugin plugin on any website you want
241
  2. You can buy the Pro plan that includes licenses for 5 domains, or the Agency plan that includes licenses for 20 domains.
242
  Check out our <a href="https://premio.io/downloads/mystickymenu/" target="_blank" title="mystickymenu plans page">plans page</a>.
243
 
244
- = How long is my paid Sticky Menu plugin plugin license valid for? =
245
  Once you purchase any <a href="https://premio.io/downloads/mystickymenu/" target="_blank" title="mystickymenu plans page">paid plan</a> of my sticky menu, you can use it forever. Support and updates are available for 1 year. You can renew your license each year to get another year of support and updates.
246
 
247
  = Will Sticky Menu plugin stop working if I don’t renew my license? =
248
  Of course NOT! 🙂
249
- Your Sticky Menu plugin plugin and all your settings will continue to work as before; however, you will no longer receive plugin updates including feature additions, improvements, and support.
250
 
251
  = How do I activate my pro plan? =
252
  Just follow our <a href="https://premio.io/wordpress-premio-pro-version-installation-guide/" target="_blank" title="WordPress installation guide">pro installation guide</a>.
@@ -259,15 +264,26 @@ After installing the plugin, you’ll have the option to turn on the welcome bar
259
 
260
  == Screenshots ==
261
 
262
- 1. You can choose your current menu from the dropdown or enter it ID or class manually
263
- 2. Add you custom CSS
264
- 3. This is how myStickymenu will actually look on your site
265
  4. Design your welcome bar
266
- 5. You can change the background text, call-to-action text, fonts, and colors
267
- 6. Check out welcome bar in action
268
-
 
269
 
270
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
271
  = 2.5.6 =
272
  Z-index welcome bar fix
273
  = 2.5.5 =
3
  Tags:floating bar, notification bar, menu, header, sticky menu, sticky header, floating menu, floating navigation menu, navigation menu, navigation, sticky navigation menu, welcome bar, hello bar, top bar, sticky bar
4
  Requires at least: 3.5.1
5
  Tested up to: 5.9
6
+ Stable tag: 2.5.7
7
  License: GPLv2 or later
8
 
9
  Create a beautiful welcome notification bar. This sticky menu plugin will also make your menu or header stick to the top of page, when scrolled down and up.
23
 
24
  = BENEFITS =
25
  * Improve user experience by letting your visitors access the navigation menu and navigate to the pages they want when they want to.
26
+ * Make your website look more modern with the sticky menu on desktop and mobile.
27
+ * Increase number of pageviews and visitors' time on your website
28
+ * Create your own floating Welcome Bar and let your visitors know about your latest deals, announcements, or any other important information
29
+ * Our MSM dashboard makes it easy for you to manage your top bars and sticky menus in one place!
30
 
31
+ The sticky header function is localized (multi-language support) and responsive (as far as your theme is). Also, there is the possibility to add custom CSS code which makes this plugin very flexible, customizable, and user-friendly. You can also use the notification bar in any language.
32
 
33
+ My Sticky Menu plugin is originally designed for Twenty Thirteen template but should work on any theme, like OceanWP, Nirvana Template, Travelify, Twenty Sixteen, Twenty Ten, Twenty Eleven, Max Magazine, Graduate, Lawyer theme, Spacious, Suits, and more.
34
 
35
+ My Sticky Menu is tested and compatible with Elementor website builder, Divi, WPBakery, Gutenberg, Visual composer, Beaver, and other WordPress website builders.
36
 
37
  = WITH WELCOME BAR FEATURES YOU CAN: =
38
+ * Display your floating bar at the top position
39
  * When the user clicks on the welcome bar button you can close the bar, redirect to another URL, or launch a <a href="https://www.poptin.com/?utm_source=msm" target="_blank" title="Poptin pop up">Poptin pop up</a>
40
  * Change the background and button colors for your hello bar
41
  * Change display frequency after submission - show the announcement bar on every page, once a visit, or don't show the announcement bar after it's submitted
50
  = WITH MY STICKY MENU YOU CAN: =
51
  * Show sticky header on scroll down/up
52
  * Fade or slide effect
53
+ * Disable at a small screen
54
  * Choose when to make visible on scroll
55
  * Change the font color when the menu is sticky
56
  * Change the background color
58
  * Change the sticky transition time
59
  * Define the z-index of the sticky header
60
  * Set an entrance effect for your sticky menu
61
+ * Write your notification bar announcements in different languages - we support both LTR and RTL formats
62
+ * NEW! New and improved dashboard - The new MSM dashboard will help you manage your notification bars, top bars, and sticky menus better.
63
+ * NEW! Disable the sticky menu - You now have the option to disable sticky menu features if you want to use only top bars or welcome bars.
64
 
65
  = Welcome Bar Pro Features =
66
+ * Multi Welcome Bar - Create a separate notification bar for different pages based on page targeting rules (E.g. separate notification bar for different languages, different product categories, and much more)
67
+ * NEW! Countdown timer ⏳ - Add a countdown timer in your notification bar for that much-needed sense of urgency. This new countdown timer notifications bar feature can really increase your conversion rate because it creates a sense of scarcity and urgency on your promotions.
68
+ * Display your floating bar at the bottom position
69
  * Change the height of the sticky notification bar
70
  * Open redirect link in a new tab
71
  * Show your notification bar just on mobile or desktop
72
+ * Show your notification bar on a scroll or after a few seconds
73
  * Set an expiry date for your welcome bar, including settings a timezone
74
  * Display your floating notification bar on specific pages
75
+ * You can set a thank you screen which appears after the button is clicked (can be used for coupons or any other message you want to show your visitors after they click on the button)
76
+ * Add a rel Attribute to your notification bar button
77
 
78
  But wait, there's more 😉
79
 
95
  = Testimonials =
96
 
97
  > "Works great.
98
+ One of the key elements that I consider when choosing a theme is the sticky menu option. If the theme doesn't have it normally I don't use it. But now that’s not a problem for me anymore."<br><br>
99
 
100
  > "This plugin rocks!
101
  This plugin does exactly what it should. It is simple but powerful. I would suggest to anyone who wants to make their navigation menu sticky! I especially love the hide header on scroll down, show on scroll up feature that is built it. Great work!<br>
102
 
103
 
104
  == Installation ==
105
+ After you activate the plugin, you should be able to create your first notification bar with ease, just customize the appearance and save it. If you want to create a sticky menu, in most cases the plugin should be able to find the class/ID for the menu, if not then change sticky class/id to .your_navbar_class or #your_navbar_id - you might need to purge the cache after saving.
106
 
107
  For example:
108
 
223
  == Frequently Asked Questions ==
224
 
225
  = How to find Sticky Class, what should I enter here? =
226
+ So this depends on what you want to make sticky and what theme do you use, but for example, if you want your menu to be sticky, then you can examine the code (in firefox right click and “View page source”) and find HTML element in which your menu is situated. This element has some class or id, and that’s the Sticky Class we need. If using class then don’t forget to ad dot (.) in front of the class name or hash (#) in front of id. Twenty Thirteen default working class is ".navbar" without of quotes.
227
 
228
  = Is there any way to restrict the width to the width of the header, rather than it being full width? =
229
+ Yes, just leave the "Sticky Background Color" field blank (clear). Then if needed define a custom background color for a sticky header inside ".myfixed CSS class" field using .myfixed class.
230
 
231
+ = Ho do I add a small logo to the menu? =
232
+ That will depend on a theme you use, but if initially your menu and logo are in one div then you can use that div class or id in myStickymenu settings.
233
 
234
+ If not you can change that in your header template file and add logo and menu divs inside new div with some custom class or id, then use that class or id in myStickymenu settings as a sticky class.
235
 
236
+ In CSS you can style your custom class while not sticky using the custom class you added before. Furthermore, you can style your menu while sticky using .myfixed class which is added by js to your custom class while sticky is active.
237
 
238
+ In some cases, you can use the whole header div and then just style it differently with .myfixed class, hide what you don’t need to use CSS display:none; property, and position logo and menu as you like.
239
 
240
  = Is there a time limit for the free plan? =
241
  No. you can use the free plan as long as you want.
242
 
243
  = Can I use My Sticky Menu plugin on more than 1 domain? =
244
  There 2 ways to do it:
245
+ 1. You can install the free Sticky Menu plugin on any website you want
246
  2. You can buy the Pro plan that includes licenses for 5 domains, or the Agency plan that includes licenses for 20 domains.
247
  Check out our <a href="https://premio.io/downloads/mystickymenu/" target="_blank" title="mystickymenu plans page">plans page</a>.
248
 
249
+ = How long is my paid Sticky Menu plugin license valid for? =
250
  Once you purchase any <a href="https://premio.io/downloads/mystickymenu/" target="_blank" title="mystickymenu plans page">paid plan</a> of my sticky menu, you can use it forever. Support and updates are available for 1 year. You can renew your license each year to get another year of support and updates.
251
 
252
  = Will Sticky Menu plugin stop working if I don’t renew my license? =
253
  Of course NOT! 🙂
254
+ Your Sticky Menu plugin and all your settings will continue to work as before; however, you will no longer receive plugin updates including feature additions, improvements, and support.
255
 
256
  = How do I activate my pro plan? =
257
  Just follow our <a href="https://premio.io/wordpress-premio-pro-version-installation-guide/" target="_blank" title="WordPress installation guide">pro installation guide</a>.
264
 
265
  == Screenshots ==
266
 
267
+ 1. Check out the welcome bar in action
268
+ 2. The notification bar and sticky menu dashboard
269
+ 3. Add a countdown timer to your notification bar to create an urgency sense
270
  4. Design your welcome bar
271
+ 5. Add your custom CSS
272
+ 6. You can choose your current menu from the dropdown or enter it ID or class manually
273
+ 7. You can change the background text, call-to-action text, fonts, and colors
274
+ 8. This is how myStickymenu will actually look on your site
275
 
276
  == Changelog ==
277
+ = 2.5.7 =
278
+ Improvement: Better support for languages that read from right to left (like Hebrew or Arabic)
279
+ Improvement: We’ve also added inherit & system stack font options to give you flexibility when it comes to font choices on your menu bar.
280
+ Improvement: New MSM dashboard to help you manage your top bars and sticky menus better.
281
+ Improvement: Disabling sticky menu features - you can now disable the sticky menu feature if you want to use top bars only
282
+ Improvement:
283
+ Fixed: Optimized the JS and fix “console.log” on mystickymenu.js bug
284
+
285
+ For Pro plan users:
286
+ Added: You can now put countdown timers on your sticky menu! Best used for promotions or launch announcements!
287
  = 2.5.6 =
288
  Z-index welcome bar fix
289
  = 2.5.5 =
recommended-plugins.php CHANGED
@@ -331,7 +331,7 @@ if ( $data && ! is_wp_error( $data ) ) {
331
  <div class="name column-name">
332
  <h3>
333
  <a href="<?php echo esc_url( $details_link ); ?>" class="thickbox open-plugin-details-modal">
334
- <?php echo $title; ?>
335
  <img src="<?php echo esc_attr( $plugin_icon_url ); ?>" class="plugin-icon" alt="" />
336
  </a>
337
  </h3>
@@ -344,7 +344,7 @@ if ( $data && ! is_wp_error( $data ) ) {
344
  ?>
345
  </div>
346
  <div class="desc column-description">
347
- <p><?php echo $description; ?></p>
348
  <p class="authors"><?php echo $author; ?></p>
349
  </div>
350
  </div>
331
  <div class="name column-name">
332
  <h3>
333
  <a href="<?php echo esc_url( $details_link ); ?>" class="thickbox open-plugin-details-modal">
334
+ <?php echo esc_html($title); ?>
335
  <img src="<?php echo esc_attr( $plugin_icon_url ); ?>" class="plugin-icon" alt="" />
336
  </a>
337
  </h3>
344
  ?>
345
  </div>
346
  <div class="desc column-description">
347
+ <p><?php echo esc_html($description); ?></p>
348
  <p class="authors"><?php echo $author; ?></p>
349
  </div>
350
  </div>
stickymenu-dashboard.php ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $stickymenus_widgets = get_option( 'mysticky_option_welcomebar' );
3
+ if ( !isset( $stickymenus_widgets['mysticky_welcomebar_enable'])) {
4
+ $widget_status = 0;
5
+ }
6
+ if ( isset( $stickymenus_widgets['mysticky_welcomebar_enable']) ) {
7
+ $widget_status = $stickymenus_widgets['mysticky_welcomebar_enable'];
8
+ }
9
+ $mysticky_options = get_option( 'mysticky_option_name' );
10
+ ?>
11
+ <h1></h1>
12
+ <!-- Updated design -->
13
+ <div class="wrap mystickymenu-wrap">
14
+ <div class="mystickymenu-dashboard">
15
+ <?php if(isset($stickymenus_widgets) && !empty($stickymenus_widgets)) : ?>
16
+
17
+
18
+ <div class="mystickymenu-dashboard welcomebars-list-table">
19
+
20
+ <div class="mystickymenu-dashboard header-section">
21
+ <div class="mystickymenu-dashboard heading-title"><h3><?php esc_html_e( 'Dashboard', 'mystickymenu');?></h3></div>
22
+ <div class="mystickymenu-dashboard mystickymenu-widgets-btn-wrap"><a href="<?php echo admin_url('admin.php?page=my-stickymenu-new-welcomebar')?>" class="btn add_new_welcombar"><span class="dashicons dashicons-insert" style="font-size:18px;color:#fff;"></span>&nbsp; <?php echo esc_html_e('Add a New Welcome Bar','mystickymenu');?></a></div>
23
+ </div>
24
+
25
+ <table class="mystickymenu-widgets-lists">
26
+ <thead>
27
+ <tr>
28
+ <th style="text-align: left;padding: 0 0 0 20px !important;"><?php esc_html_e( 'Status', 'mystickymenu');?></th>
29
+ <th style="width:66%;text-align: left;padding: 0 0 0 30px !important;"><?php esc_html_e( 'Welcome bars', 'mystickymenu');?></th>
30
+ <th><?php esc_html_e( 'Quick Action', 'mystickymenu');?></th>
31
+ </tr>
32
+ </thead>
33
+ <tbody>
34
+ <?php if(isset($stickymenus_widgets) && !empty($stickymenus_widgets)) : ?>
35
+ <tr id="stickymenu-widget-0">
36
+ <td style="text-align: left;padding: 0 0 0 20px !important;">
37
+ <label class="mysticky-welcomebar-switch welcombar-status-switch">
38
+ <input type="checkbox" data-id="0" class="mystickymenu-widget-enabled" name ="mystickymenu-widget-enabled" data-id = "0" id = "mystickymenu-widget-enabled-0" value="1" <?php checked( $widget_status, 1 ); ?> />
39
+ <span class="slider round"></span>
40
+ </label>
41
+ <div class="mystickymenu-action-popup welcombar-enabled-status" id="widget-status-dialog-0" style="display:none;">
42
+ <div class="mystickymenu-action-popup-header">
43
+ <h3><?php esc_html_e('Are you sure?','mystickymenu');?></h3>
44
+ <span class="dashicons dashicons-no-alt close-button" data-from = "welcome-bar-status"data-id="0"></span>
45
+ </div>
46
+ <div class="mystickymenu-action-popup-body">
47
+ <p><?php esc_html_e("You're about to turn off the welcome bar. Are you sure about that?",'mystickymenu');?></p>
48
+ </div>
49
+ <div class="mystickymenu-action-popup-footer">
50
+ <button type="button" class="btn-enable btn-nevermind-status" data-id="0"><?php esc_html_e('Nevermind','mystickymenu');?></button>
51
+ <button type="button" class="btn-disable-cancel btn-turnoff-status" data-id="0"><?php esc_html_e('Turn off','mystickymenu');?></button>
52
+ </div>
53
+ </div>
54
+ <div class="mystickymenupopup-overlay" id="mystickymenu-status-popup-overlay-0" data-id="0" data-from="welcomebar-status" data-fromoverlay="welcombar_status"></div>
55
+ </td>
56
+ <td style="text-align: left;padding: 0 0 0 30px !important;"><?php echo esc_html_e('Welcome Bar #0','mystickymenu'); ?></td>
57
+ <td>
58
+ <div class="tooltip">
59
+ <span class="tooltiptext"><?php esc_html_e('Edit','mystickymenu');?></span>
60
+ <a href="<?php echo admin_url("admin.php?page=my-stickymenu-welcomebar&widget=0&isedit=1" );?>" ><img src="<?php echo MYSTICKYMENU_URL; ?>/images/edit-icon.svg" /></a>
61
+ </div>
62
+ <div class="tooltip">
63
+ <span class="tooltiptext"><?php esc_html_e('Duplicate','mystickymenu');?></span>
64
+ <a class="copyicon" href='<?php echo admin_url("admin.php?page=my-stickymenu-new-welcomebar&duplicate_from=1");?>'><img src="<?php echo MYSTICKYMENU_URL; ?>/images/copy-icon.svg" /></a>
65
+ </div>
66
+
67
+ <div class="tooltip">
68
+ <span class="tooltiptext"><?php esc_html_e('Delete','mystickymenu');?></span>
69
+ <a href="javascript:void(0);" class="mystickymenu-delete-widget" id="delete-widget-0" data-widget-id="0"><img src="<?php echo MYSTICKYMENU_URL; ?>/images/delete-icon.svg" /></a>
70
+ </div>
71
+
72
+
73
+ <div class="mystickymenu-action-popup" id="widget-delete-dialog-0" style="display:none;">
74
+ <div class="mystickymenu-action-popup-header">
75
+ <h3><?php esc_html_e('Are you sure?','mystickymenu');?></h3>
76
+ <span class="dashicons dashicons-no-alt close-button" data-from = "welcome-bar-delete"data-id="0"></span>
77
+ </div>
78
+ <div class="mystickymenu-action-popup-body">
79
+ <p><?php esc_html_e("Are you sure want to delete the welcome? You will lose the welcomer permanently and will not be able to retrieve it",'mystickymenu');?></p>
80
+ </div>
81
+ <div class="mystickymenu-action-popup-footer">
82
+ <button type="button" class="btn-enable btn-delete-cancel" data-id="0"><?php esc_html_e('Nevermind','mystickymenu');?></button>
83
+ <button type="button" class="btn-disable-cancel btn-delete" data-id="0"><?php esc_html_e('Delete','mystickymenu');?></button>
84
+ </div>
85
+ </div>
86
+ <div class="mystickymenupopup-overlay" id="mystickymenu-delete-popup-overlay-0" data-id="0" data-fromoverlay="welcombar_delete"></div>
87
+ </td>
88
+ </tr>
89
+ <?php endif; ?>
90
+ </tbody>
91
+ </table>
92
+ </div>
93
+ <?php else:?>
94
+
95
+ <div class="mystickymenu-dashboard new-welcomebar-section-wrap">
96
+ <div class="mystickymenu-welcome-img">
97
+ <img src="<?php echo MYSTICKYMENU_URL; ?>/images/firstwelcombar.svg" />
98
+ </div>
99
+ <div class="mystickymenu-newwelcomebar-contents">
100
+ <h2><?php esc_html_e("Welcome 🎉","mystickymenu");?></h2>
101
+ <p><?php esc_html_e("You're one step away from creating a welcome bar.","mystickymenu")?> </p>
102
+ <p><?php esc_html_e("Add top and bottoms bars for various purposes like showing updates, offers, countdown, flash sales, and more. You can also make any WordPress menu sticky easily.","mystickymenu");?></p>
103
+ <a class="copyicon add_new_welcombar" href="<?php echo admin_url('admin.php?page=my-stickymenu-new-welcomebar')?>" class="btn add_new_welcombar"><span class="dashicons dashicons-arrow-right-alt" style="font-size:18px;color:#fff;"></span>&nbsp; <?php echo esc_html_e('Add a New Welcome Bar','mystickymenu');?></a>
104
+ </div>
105
+ <div class="mystickymenu-features">
106
+ <div class="mystickymenu-feature-title">
107
+ <img src="<?php echo MYSTICKYMENU_URL; ?>/images/crown.svg" alt="My Happy SVG" />
108
+ <?php esc_html_e("Features","mystickymenu");?></div>
109
+ <div class="mystickymenu-features-list">
110
+ <ul class="documents-wrap-list">
111
+ <li><?php esc_html_e("Create new welcome bars with unique customization","mystickymenu");?></li>
112
+ <li><?php esc_html_e("Make your WordPress navigation menu sticky","mystickymenu");?></li>
113
+ <li><?php esc_html_e("Explore more triggers & targeting options","mystickymenu");?></li>
114
+ </ul>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ <?php endif; ?>
119
+ <div class="mystickymenu-tab-boxs-wrap">
120
+ <div class="mystickymenu-tab-stickymenu">
121
+
122
+
123
+
124
+
125
+
126
+ <div class="stickymenu-tab-option msm-bgbox">
127
+ <div class="stickymenubox-title-section"><h3><?php esc_html_e("Sticky menu","mystickymenu");?></h3></div>
128
+ <div class="stickymenu-settings">
129
+ <div class="settings-content">
130
+ <?php
131
+ if(isset($mysticky_options['stickymenu_enable']) && $mysticky_options['stickymenu_enable'] == 1){
132
+ echo '<p>Sticky menu is currently turned on.</p>';
133
+ }else{
134
+ echo '<p>Sticky menu is not currently configured. Configure to enable.</p>';
135
+ }
136
+ ?>
137
+ </div>
138
+
139
+ <div class="stickymenu-box-button settings-buttons">
140
+ <?php if(isset($mysticky_options['stickymenu_enable']) && $mysticky_options['stickymenu_enable'] == 1):
141
+ ?>
142
+ <a href="<?php echo admin_url("admin.php?page=my-stickymenu-settings");?>" id="btn-config-settings" style="color:#6559f6;border-color:#c7c2fb;"><?php esc_html_e("Settings","mystickymenu"); ?></a>
143
+ <a href="javascript:void(0);" id="btn-config-disable" style="color:#d3465c;border-color:#efbcc4;"><?php esc_html_e("Disable","mystickymenu"); ?></a>
144
+ <?php else : ?>
145
+ <a href="<?php echo admin_url("admin.php?page=my-stickymenu-settings");?>"><?php esc_html_e("Configure","mystickymenu"); ?></a>
146
+ <?php endif; ?>
147
+ </div>
148
+
149
+ </div>
150
+ </div>
151
+
152
+
153
+
154
+
155
+ <!-- <div class="contactus-tab-option msm-bgbox">
156
+ <div class="contactus-title">
157
+ <h3>Contact Us</h3>
158
+
159
+ <div class="contactus-contents-buttons"><span class="folous">Follow Us </span> <a href="https://www.facebook.com/groups/premioplugins/" class="facebook-link copyicon" target="_blank"><span class="dashicons dashicons-facebook-alt"></span></a>
160
+ <a href="https://twitter.com/premioplugins" class="tweeter-link copyicon" target="_blank"><span class="dashicons dashicons-twitter"></span></a>
161
+ </div>
162
+
163
+ </div>
164
+ <div class="premio-footer-option">
165
+ <h3>
166
+ <img src="<?php echo MYSTICKYMENU_URL . "images/Premio.svg"; ?>" />
167
+ </h3>
168
+ <div class="premio-content-list">
169
+ <h4>There are a lot of stuff waiting for you 🎉</h4>
170
+ <span>Be among the first to know about our latest features & what we're working on. Plus insider offers & flash sales</span>
171
+ </div>
172
+ <label><a class="copyicon1" href="https://premio.io/" target="_blank"><span class="dashicons dashicons-external"></span>Visit website</a></label>
173
+ </div>
174
+
175
+ </div> -->
176
+
177
+
178
+
179
+
180
+ </div>
181
+
182
+ <!-- Documantation -->
183
+
184
+ <div class="mystickymenu-new302box">
185
+
186
+ <div class="contactus-tab-option msm-bgbox">
187
+ <div class="contactus-title">
188
+ <h3>Contact Us</h3>
189
+
190
+ <div class="contactus-contents-buttons"><span class="folous">Follow Us </span> <a href="https://www.facebook.com/groups/premioplugins/" class="facebook-link copyicon" target="_blank"><span class="dashicons dashicons-facebook-alt"></span></a>
191
+ <a href="https://twitter.com/premioplugins" class="tweeter-link copyicon" target="_blank"><span class="dashicons dashicons-twitter"></span></a>
192
+ </div>
193
+
194
+ </div>
195
+ <div class="premio-footer-option">
196
+ <h3>
197
+ <img src="<?php echo MYSTICKYMENU_URL . "images/Premio.svg"; ?>" />
198
+ </h3>
199
+ <div class="premio-content-list">
200
+ <h4>There are a lot of stuff waiting for you 🎉</h4>
201
+ <span>Be among the first to know about our latest features & what we're working on. Plus insider offers & flash sales</span>
202
+ </div>
203
+ <label><a class="copyicon1" href="https://premio.io/" target="_blank"><span class="dashicons dashicons-external"></span>Visit website</a></label>
204
+ </div>
205
+
206
+ </div>
207
+
208
+
209
+
210
+
211
+ <div class="mystickymenu-tab-documentation msm-bgbox">
212
+ <h3><?php esc_html_e("Documentation","mystickymenu"); ?></h3>
213
+ <div class="stickymenu-box-container">
214
+ <ul class="documents-wrap-list">
215
+ <li><a href="https://premio.io/help/mystickymenu/how-to-use-my-sticky-menu/" target="_blank"><?php esc_html_e('How to use My Sticky Menu?','mystickymenu');?></a></li>
216
+ <li><a href="https://premio.io/help/mystickymenu/how-to-add-your-sticky-menu-on-specific-pages-only/" target="_blank"><?php esc_html_e('How to add your sticky menu on specific pages only','mystickymenu');?></a></li>
217
+ <li><a href="https://premio.io/help/mystickymenu/how-to-create-a-welcome-bar/" target="_blank"><?php esc_html_e('How to create a welcome bar','mystickymenu');?></a></li>
218
+ <!-- <li><a href="https://premio.io/help/mystickymenu/how-to-launch-a-poptin-popup-from-your-welcome-bar/" target="_blank"><?php esc_html_e('How to launch a Poptin popup from your welcome bar','mystickymenu');?></a></li>
219
+ <li><a href="https://premio.io/help/mystickymenu/how-to-create-a-separate-welcome-bar-for-different-pages/" target="_blank"><?php esc_html_e('How to create a separate welcome bar for different pages','mystickymenu');?></a></li> -->
220
+ </ul>
221
+ </div>
222
+ <div class="stickymenu-box-button">
223
+ <span><?php esc_html_e("Need more help? Visit our ","mystickymenu");?></span>
224
+ <a href="https://premio.io/help/mystickymenu/?utm_source=msmhelp" target="_blank"><?php esc_html_e("Help Center","mystickymenu"); ?></a>
225
+ </div>
226
+ </div>
227
+
228
+
229
+ </div>
230
+
231
+
232
+ </div>
233
+
234
+
235
+
236
+ <div class="mystickymenu-action-popup new-center" id="stickymenu_status_popupbox" style="display:none;">
237
+ <div class="mystickymenu-action-popup-header">
238
+ <h3><?php esc_html_e("Are you sure?","mystickymenu"); ?></h3>
239
+ <span class="dashicons dashicons-no-alt close-button" data-from = "stickymenu-status"></span>
240
+ </div>
241
+ <div class="mystickymenu-action-popup-body">
242
+ <p><?php esc_html_e("You’re about to turn off the sticky menu feature. Are you sure about that?","mystickymenu"); ?></p>
243
+ </div>
244
+ <div class="mystickymenu-action-popup-footer">
245
+ <button type="button" class="btn-enable btn-nevermind-status" id="stickymenu_status_nevermind" ><?php esc_html_e("Nevermind","mystickymenu"); ?></button>
246
+ <button type="button" class="btn-disable-cancel" id="stickymenu_status_turnoff" ><?php esc_html_e("Turn off","mystickymenu"); ?></button>
247
+ </div>
248
+ </div>
249
+ <div class="mystickymenupopup-overlay" id="stickymenuconfig-overlay-popup"></div>
250
+ </div>
251
+ </div>
update.php CHANGED
@@ -6,119 +6,13 @@
6
  </style>
7
  <div class="myStickymenu-updates-form">
8
  <div class="updates-form-form-left">
9
- <svg width="261" height="243" viewBox="0 0 261 243" fill="none" xmlns="http://www.w3.org/2000/svg">
10
- <path d="M10.6418 144.346C10.6418 144.346 10.4222 143.702 10.0669 142.505" stroke="#69F0AE" stroke-width="9" stroke-miterlimit="10"/>
11
- <path opacity="0.6" d="M9.02692 138.772C1.17536 108.652 -23.303 -30.1614 222.082 56.4967" stroke="#3C85F7" stroke-width="9" stroke-miterlimit="10" stroke-dasharray="12.04 12.04"/>
12
- <path d="M223.919 57.1403L225.744 57.7839" stroke="#69F0AE" stroke-width="9" stroke-miterlimit="10"/>
13
- <path d="M195.688 164.197C195.69 157.688 193.254 151.414 188.857 146.6C184.46 141.787 178.418 138.782 171.915 138.173C165.411 137.563 158.913 139.394 153.693 143.306C148.472 147.218 144.905 152.93 143.689 159.325L63.0771 157.146L63.9621 170.945C63.9621 170.945 52.4674 197.37 112.88 204.411V231.12H182.721V186.712C186.665 184.412 189.936 181.123 192.211 177.174C194.486 173.224 195.684 168.75 195.688 164.197Z" fill="url(#paint0_linear)"/>
14
- <path d="M66.7297 171.524C66.7297 171.524 55.7227 196.83 113.577 203.581V229.169H180.463V161.4L65.8706 158.308L66.7297 171.524Z" fill="#F6B9AD"/>
15
- <path d="M100.158 65.922C98.4136 68.6639 95.6514 70.6067 92.4743 71.326C89.2972 72.0453 85.9635 71.4827 83.2014 69.7609L47.2896 46.1834C44.5376 44.4457 42.5876 41.6936 41.8657 38.5282C41.1437 35.3627 41.7085 32.0413 43.4365 29.2894C45.1804 26.551 47.9403 24.6107 51.1143 23.8915C54.2883 23.1724 57.6189 23.7327 60.3799 25.4504L96.2916 49.028C99.0458 50.7635 100.998 53.5147 101.723 56.6803C102.447 59.8459 101.885 63.1685 100.158 65.922Z" fill="url(#paint1_linear)"/>
16
- <path d="M98.1685 64.6316C96.5474 67.1803 93.9798 68.9862 91.0267 69.6548C88.0735 70.3235 84.9747 69.8005 82.4073 68.2002L49.0148 46.2831C46.4567 44.668 44.6441 42.1098 43.973 39.1675C43.3019 36.2251 43.8268 33.1378 45.433 30.5797C47.0541 28.0311 49.6216 26.2252 52.5748 25.5565C55.528 24.8879 58.6267 25.4108 61.1942 27.0111L94.5803 48.9314C97.1385 50.5455 98.9518 53.1026 99.6241 56.0442C100.296 58.9859 99.7731 62.0731 98.1685 64.6316Z" fill="#F6B9AD"/>
17
- <path d="M167.763 190.085C181.635 190.085 192.881 178.88 192.881 165.059C192.881 151.238 181.635 140.034 167.763 140.034C153.891 140.034 142.645 151.238 142.645 165.059C142.645 178.88 153.891 190.085 167.763 190.085Z" fill="#F6B9AD"/>
18
- <path d="M163.242 0H67.0204C64.8353 0 63.064 1.76486 63.064 3.94193V183.327C63.064 185.504 64.8353 187.269 67.0204 187.269H163.242C165.427 187.269 167.198 185.504 167.198 183.327V3.94193C167.198 1.76486 165.427 0 163.242 0Z" fill="url(#paint2_linear)"/>
19
- <path d="M161.384 2.53249H68.8776C66.4445 2.53249 64.4722 4.49761 64.4722 6.92171V180.354C64.4722 182.778 66.4445 184.743 68.8776 184.743H161.384C163.817 184.743 165.79 182.778 165.79 180.354V6.92171C165.79 4.49761 163.817 2.53249 161.384 2.53249Z" fill="white"/>
20
- <path opacity="0.9" d="M140.584 7.0987C140.291 9.03104 139.314 10.7951 137.829 12.0717C136.344 13.3484 134.449 14.0533 132.487 14.059H97.4962C95.5353 14.0525 93.6414 13.3472 92.1569 12.0707C90.6725 10.7941 89.6954 9.0305 89.4024 7.0987H70.8635C70.3581 7.09827 69.8576 7.19709 69.3905 7.38951C68.9234 7.58192 68.499 7.86415 68.1415 8.22008C67.7839 8.576 67.5003 8.99864 67.3068 9.46383C67.1133 9.92902 67.0137 10.4277 67.0137 10.9312V176.331C67.0132 176.835 67.1124 177.334 67.3056 177.799C67.4987 178.264 67.7819 178.687 68.1392 179.044C68.4964 179.4 68.9206 179.682 69.3875 179.875C69.8544 180.068 70.3549 180.167 70.8603 180.167H159.401C159.906 180.168 160.407 180.069 160.874 179.876C161.341 179.684 161.766 179.402 162.123 179.046C162.481 178.69 162.764 178.267 162.958 177.802C163.151 177.337 163.251 176.838 163.251 176.335V10.9344C163.251 10.4309 163.152 9.93216 162.959 9.4668C162.766 9.00145 162.483 8.57858 162.125 8.22235C161.768 7.86613 161.344 7.58354 160.877 7.39074C160.41 7.19793 159.91 7.0987 159.404 7.0987H140.584Z" fill="#3C85F7"/>
21
- <path d="M125.919 9.28044H104.631C104.275 9.28044 103.985 9.56858 103.985 9.92402V10.0431C103.985 10.3985 104.275 10.6867 104.631 10.6867H125.919C126.275 10.6867 126.565 10.3985 126.565 10.0431V9.92402C126.565 9.56858 126.275 9.28044 125.919 9.28044Z" fill="#DBDBDB"/>
22
- <path d="M131.36 10.6867C131.828 10.6867 132.207 10.3092 132.207 9.84356C132.207 9.37794 131.828 9.00047 131.36 9.00047C130.893 9.00047 130.514 9.37794 130.514 9.84356C130.514 10.3092 130.893 10.6867 131.36 10.6867Z" fill="#DBDBDB"/>
23
- <path d="M184.002 169.471C176.713 171.151 171.71 166.414 170.024 159.154L153.275 97.1903C152.474 93.6895 153.096 90.0153 155.005 86.9699C156.915 83.9246 159.956 81.7557 163.464 80.9367C166.978 80.1391 170.666 80.7591 173.722 82.6612C176.779 84.5634 178.956 87.5933 179.778 91.0892L193.446 154.643C195.132 161.915 191.289 167.791 184.002 169.471Z" fill="url(#paint3_linear)"/>
24
- <path d="M177.898 92.6093C176.477 86.4812 170.339 82.6613 164.188 84.0772C158.038 85.4931 154.204 91.6086 155.625 97.7367L171.027 164.152C172.448 170.28 178.586 174.1 184.737 172.684C190.887 171.268 194.721 165.152 193.3 159.024L177.898 92.6093Z" fill="#F6B9AD"/>
25
- <path d="M192.778 220.796H97.1768V243H192.778V220.796Z" fill="url(#paint4_linear)"/>
26
- <path d="M190.194 223.371H99.7607V240.747H190.194V223.371Z" fill="#FF8976"/>
27
- <path d="M136.46 58.6881L129.051 53.1308L132.281 48.9475L126.891 44.7321L123.522 48.9862L115.903 43.2744C115.613 43.0574 115.26 42.9401 114.897 42.9401C114.534 42.9401 114.181 43.0574 113.891 43.2744L93.695 58.2537C92.9296 58.8973 92.2126 59.6342 92.2061 61.3204H92.1835L92.1318 84.3992V85.4257C92.131 85.7562 92.1955 86.0835 92.3216 86.3892C92.4478 86.6948 92.6331 86.9727 92.867 87.207C93.101 87.4412 93.3789 87.6273 93.685 87.7545C93.9911 87.8818 94.3194 87.9477 94.6511 87.9485H95.6458L114.795 87.9904L134.942 88.0354C135.274 88.0363 135.603 87.972 135.909 87.8463C136.216 87.7207 136.495 87.536 136.73 87.3029C136.965 87.0699 137.152 86.7929 137.28 86.488C137.407 86.183 137.474 85.8559 137.474 85.5255L137.529 61.462H137.571C137.571 59.7726 137.226 59.3317 136.46 58.6881Z" fill="url(#paint5_linear)"/>
28
- <path d="M135.582 61.8127C135.582 60.2746 135.259 59.882 134.568 59.2867L115.812 45.2341C115.547 45.0359 115.225 44.9288 114.893 44.9288C114.562 44.9288 114.24 45.0359 113.975 45.2341L95.5488 58.9037C95.1056 59.2192 94.749 59.6406 94.512 60.1293C94.275 60.6179 94.1651 61.1581 94.1923 61.7001H94.173L94.1245 82.7581V83.6945C94.1237 84.3033 94.3653 84.8875 94.7965 85.3189C95.2277 85.7503 95.8131 85.9936 96.4241 85.9953H97.3317L114.805 86.0339L133.185 86.0757C133.796 86.0766 134.383 85.8358 134.816 85.4062C135.249 84.9766 135.493 84.3934 135.495 83.7846L135.543 61.8288L135.582 61.8127Z" fill="url(#paint6_linear)"/>
29
- <path d="M94.5117 61.7844L135.152 61.8763L135.101 84.1538C135.101 84.3304 135.065 84.5052 134.997 84.6683C134.929 84.8313 134.829 84.9794 134.703 85.104C134.578 85.2286 134.429 85.3274 134.265 85.3946C134.101 85.4618 133.925 85.4962 133.748 85.4958L95.9598 85.4104C95.5649 85.4095 95.1865 85.2523 94.9079 84.9735C94.6293 84.6947 94.4733 84.317 94.4742 83.9236L94.5246 61.7844L94.5117 61.7844Z" fill="#6C63FF"/>
30
- <path opacity="0.2" d="M94.5117 61.7844L135.152 61.8763L135.101 84.1538C135.101 84.3304 135.065 84.5052 134.997 84.6683C134.929 84.8313 134.829 84.9794 134.703 85.104C134.578 85.2286 134.429 85.3274 134.265 85.3946C134.101 85.4618 133.925 85.4962 133.748 85.4958L95.9598 85.4104C95.5649 85.4095 95.1865 85.2523 94.9079 84.9735C94.6293 84.6947 94.4733 84.317 94.4742 83.9236L94.5246 61.7844L94.5117 61.7844Z" fill="white"/>
31
- <path d="M94.5154 61.7773L94.4702 82.24C94.4694 82.6528 94.5502 83.0618 94.7079 83.4436C94.8657 83.8253 95.0975 84.1724 95.3899 84.4649C95.6823 84.7575 96.0297 84.9897 96.4122 85.1485C96.7947 85.3073 97.2049 85.3894 97.6192 85.3903L131.948 85.4675" fill="#F5F5F5"/>
32
- <path d="M135.158 61.8674L135.113 82.3429C135.112 82.7558 135.03 83.1645 134.871 83.5456C134.711 83.9267 134.478 84.2728 134.184 84.5641C133.891 84.8555 133.542 85.0863 133.159 85.2435C132.776 85.4008 132.366 85.4813 131.951 85.4804L97.6221 85.4032" fill="white"/>
33
- <path d="M113.972 45.7682L95.885 59.0582C95.4505 59.3626 95.1004 59.7715 94.8672 60.2469C94.634 60.7223 94.5252 61.2488 94.5511 61.7773L135.211 61.906C135.211 60.4097 134.888 60.0171 134.216 59.4508L115.79 45.7747C115.528 45.5777 115.21 45.4705 114.882 45.4694C114.554 45.4682 114.235 45.5731 113.972 45.7682Z" fill="#6C63FF"/>
34
- <path opacity="0.2" d="M113.972 45.7682L95.885 59.0582C95.4505 59.3626 95.1004 59.7715 94.8672 60.2469C94.634 60.7223 94.5252 61.2488 94.5511 61.7773L135.211 61.906C135.211 60.4097 134.888 60.0171 134.216 59.4508L115.79 45.7747C115.528 45.5777 115.21 45.4705 114.882 45.4694C114.554 45.4682 114.235 45.5731 113.972 45.7682Z" fill="black"/>
35
- <path d="M130.757 50.3924L125.838 46.5502L113.949 61.5521L107.561 56.6158L103.559 61.684L112.858 68.7602L115.164 70.604L130.757 50.3924Z" fill="url(#paint7_linear)"/>
36
- <path d="M130.395 50.299L125.938 46.8945L114.126 62.2407L107.567 57.2304L104.146 61.6711L112.935 68.3772L115.189 70.0602L130.395 50.299Z" fill="white"/>
37
- <path d="M92.4451 99.6939C90.7137 102.415 87.972 104.343 84.8186 105.057C81.6652 105.771 78.3563 105.213 75.6148 103.504L45.0935 83.7041C42.3622 81.9791 40.427 79.2474 39.7105 76.1056C38.994 72.9638 39.5545 69.6671 41.2694 66.9356C43.0008 64.2144 45.7426 62.2863 48.896 61.5724C52.0494 60.8586 55.3582 61.417 58.0998 63.1256L88.621 82.9254C91.3523 84.6504 93.2875 87.3821 94.004 90.5239C94.7205 93.6657 94.16 96.9624 92.4451 99.6939Z" fill="url(#paint8_linear)"/>
38
- <path d="M90.8236 98.6513C89.2025 101.2 86.6349 103.006 83.6817 103.675C80.7285 104.343 77.6298 103.82 75.0623 102.22L46.4757 83.6752C43.9176 82.06 42.1051 79.5019 41.434 76.5595C40.7628 73.6172 41.2877 70.5298 42.8939 67.9718C44.515 65.4231 47.0826 63.6172 50.0358 62.9486C52.9889 62.2799 56.0877 62.8028 58.6551 64.4031L87.2418 82.9479C89.7998 84.5631 91.6124 87.1212 92.2835 90.0635C92.9546 93.0059 92.4298 96.0933 90.8236 98.6513Z" fill="#F6B9AD"/>
39
- <path d="M86.218 132.394C84.4951 135.104 81.7661 137.023 78.6271 137.734C75.488 138.445 72.1942 137.889 69.4652 136.188L45.3776 120.662C42.6583 118.945 40.7314 116.226 40.0179 113.099C39.3044 109.971 39.8623 106.689 41.5697 103.97C43.2925 101.261 46.0216 99.3413 49.1606 98.6305C52.2996 97.9196 55.5935 98.4754 58.3225 100.177L82.4068 115.706C85.1258 117.422 87.0527 120.14 87.7668 123.267C88.4809 126.394 87.924 129.675 86.218 132.394Z" fill="url(#paint9_linear)"/>
40
- <path d="M80.1721 165.262C78.434 167.996 75.6803 169.934 72.5127 170.651C69.3452 171.369 66.0214 170.808 63.2676 169.091L48.3493 158.247C45.6051 156.515 43.6604 153.771 42.9402 150.616C42.2201 147.46 42.7829 144.148 44.5059 141.404C46.2461 138.672 49.0007 136.737 52.1681 136.022C55.3355 135.307 58.6582 135.87 61.4105 137.588L76.3287 148.429C79.0703 150.161 81.0131 152.902 81.7331 156.056C82.4532 159.21 81.892 162.519 80.1721 165.262Z" fill="url(#paint10_linear)"/>
41
- <path d="M78.9674 164.454C77.3463 167.003 74.7787 168.809 71.8255 169.477C68.8723 170.146 65.7736 169.623 63.2061 168.023L49.2955 157.912C46.7375 156.297 44.9249 153.739 44.2538 150.797C43.5827 147.854 44.1075 144.767 45.7137 142.209C47.3348 139.66 49.9024 137.854 52.8556 137.186C55.8088 136.517 58.9075 137.04 61.475 138.64L75.3856 148.751C77.9436 150.366 79.7562 152.924 80.4273 155.866C81.0984 158.809 80.5736 161.896 78.9674 164.454Z" fill="#F6B9AD"/>
42
- <path d="M148.074 104.122H82.187V123.751H148.074V104.122Z" fill="url(#paint11_linear)"/>
43
- <path d="M145.814 106.052H84.4482V120.211H145.814V106.052Z" fill="#69F0AE"/>
44
- <path d="M259.84 69.0305L261 69.2107L260.819 69.0401H260.916L260.764 68.9886L239.741 49.1245L234.638 57.1468L230.395 64.4643L232.361 64.77L231.489 68.7344L259.84 69.0305Z" fill="url(#paint12_linear)"/>
45
- <path d="M235.52 57.5651L231.645 64.2615L260.066 68.8728L241.76 56.1717L235.52 57.5651Z" fill="#6C63FF"/>
46
- <path opacity="0.2" d="M235.52 57.5651L231.645 64.2615L260.066 68.8728L241.76 56.1717L235.52 57.5651Z" fill="black"/>
47
- <path d="M240.188 50.2283L260.067 68.8728L235.521 57.5651L240.188 50.2283Z" fill="#6C63FF"/>
48
- <path d="M232.691 68.197L259.989 68.7151L234.506 59.6985L232.691 68.197Z" fill="#6C63FF"/>
49
- <path d="M84.8936 131.554C83.2725 134.103 80.7049 135.909 77.7517 136.578C74.7985 137.246 71.6998 136.723 69.1323 135.123L46.4723 120.514C43.9142 118.899 42.1017 116.34 41.4305 113.398C40.7594 110.456 41.2843 107.368 42.8905 104.81C44.509 102.259 47.0754 100.45 50.0288 99.7781C52.9822 99.1063 56.0823 99.6268 58.6517 101.226L81.3118 115.835C83.8743 117.45 85.69 120.011 86.3613 122.958C87.0326 125.904 86.5049 128.995 84.8936 131.554Z" fill="#F6B9AD"/>
50
- <defs>
51
- <linearGradient id="paint0_linear" x1="129.387" y1="231.132" x2="129.387" y2="138.061" gradientUnits="userSpaceOnUse">
52
- <stop stop-color="#808080" stop-opacity="0.25"/>
53
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
54
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
55
- </linearGradient>
56
- <linearGradient id="paint1_linear" x1="24916.3" y1="14199" x2="24916.3" y2="7023.87" gradientUnits="userSpaceOnUse">
57
- <stop stop-color="#808080" stop-opacity="0.25"/>
58
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
59
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
60
- </linearGradient>
61
- <linearGradient id="paint2_linear" x1="56806.2" y1="122524" x2="56806.2" y2="13540.6" gradientUnits="userSpaceOnUse">
62
- <stop stop-color="#808080" stop-opacity="0.25"/>
63
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
64
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
65
- </linearGradient>
66
- <linearGradient id="paint3_linear" x1="29845.7" y1="53620" x2="29845.7" y2="28883.9" gradientUnits="userSpaceOnUse">
67
- <stop stop-color="#808080" stop-opacity="0.25"/>
68
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
69
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
70
- </linearGradient>
71
- <linearGradient id="paint4_linear" x1="61020.9" y1="18572.5" x2="61020.9" y2="17040.4" gradientUnits="userSpaceOnUse">
72
- <stop stop-color="#808080" stop-opacity="0.25"/>
73
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
74
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
75
- </linearGradient>
76
- <linearGradient id="paint5_linear" x1="114.85" y1="88.0322" x2="114.85" y2="42.9365" gradientUnits="userSpaceOnUse">
77
- <stop stop-opacity="0.12"/>
78
- <stop offset="0.55" stop-opacity="0.09"/>
79
- <stop offset="1" stop-opacity="0.02"/>
80
- </linearGradient>
81
- <linearGradient id="paint6_linear" x1="22673.8" y1="14029.1" x2="22673.8" y2="8768.08" gradientUnits="userSpaceOnUse">
82
- <stop stop-color="#808080" stop-opacity="0.25"/>
83
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
84
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
85
- </linearGradient>
86
- <linearGradient id="paint7_linear" x1="15019" y1="7079.44" x2="15023" y2="5279.5" gradientUnits="userSpaceOnUse">
87
- <stop stop-opacity="0.12"/>
88
- <stop offset="0.55" stop-opacity="0.09"/>
89
- <stop offset="1" stop-opacity="0.02"/>
90
- </linearGradient>
91
- <linearGradient id="paint8_linear" x1="21783.4" y1="17691.5" x2="21783.4" y2="11649.7" gradientUnits="userSpaceOnUse">
92
- <stop stop-color="#808080" stop-opacity="0.25"/>
93
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
94
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
95
- </linearGradient>
96
- <linearGradient id="paint9_linear" x1="18747.1" y1="20007.7" x2="18747.1" y2="15107.8" gradientUnits="userSpaceOnUse">
97
- <stop stop-color="#808080" stop-opacity="0.25"/>
98
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
99
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
100
- </linearGradient>
101
- <linearGradient id="paint10_linear" x1="15098.2" y1="21407.6" x2="15098.2" y2="17548.1" gradientUnits="userSpaceOnUse">
102
- <stop stop-color="#808080" stop-opacity="0.25"/>
103
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
104
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
105
- </linearGradient>
106
- <linearGradient id="paint11_linear" x1="22956.9" y1="7652.93" x2="22956.9" y2="6455.55" gradientUnits="userSpaceOnUse">
107
- <stop stop-opacity="0.12"/>
108
- <stop offset="0.55" stop-opacity="0.09"/>
109
- <stop offset="1" stop-opacity="0.02"/>
110
- </linearGradient>
111
- <linearGradient id="paint12_linear" x1="21383.9" y1="21299.4" x2="22083.3" y2="20191.7" gradientUnits="userSpaceOnUse">
112
- <stop stop-color="#808080" stop-opacity="0.25"/>
113
- <stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
114
- <stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
115
- </linearGradient>
116
- </defs>
117
- </svg>
118
  </div>
119
  <div class="updates-form-form-right">
120
  <div class="update-title">Be first</div>
121
- <p>Be among the first to know about our latest features & what we're working on. Plus, insider offer & flash sales.</p>
122
  <div class="updates-form">
123
  <div class="update-form-input">
124
  <div class="mail-icon">
@@ -134,68 +28,123 @@
134
  <input id="myStickymenu_update_email" autocomplete="off" value="<?php echo get_option( 'admin_email' ) ?>" placeholder="Email address">
135
  <button href="javascript:;" class="button button-primary form-submit-btn yes">Sign Up</button>
136
  </div>
137
- <div class="update-form-skip-button">
138
  <button href="javascript:;" class="button button-secondary form-cancel-btn no">Skip</button>
139
- </div>
140
  </div>
 
 
 
 
 
141
  <div class="update-notice">
142
- You can remove yourself from the list whenever you want, no strings attached 😛
143
  </div>
144
  <input type="hidden" id="myStickymenu_update_nonce" value="<?php echo wp_create_nonce("myStickymenu_update_nonce") ?>">
145
  </div>
146
  </div>
147
  <style>
148
 
 
 
 
 
 
 
 
 
 
 
149
  .myStickymenu-updates-form {
150
  width: 768px;
151
- padding: 70px 40px;
152
  box-shadow: 0px 20px 25px rgb(0 0 0 / 10%), 0px 10px 10px rgb(0 0 0 / 4%);
153
  display: flex;
154
  margin: 100px auto 0;
155
- font-family: Rubik, sans-serif;
 
156
  }
157
- .update-title {
158
  font-style: normal;
159
- font-weight: 500;
160
- font-size: 26px;
161
- line-height: 150%;
162
  align-items: center;
163
  color: #334155;
 
 
 
164
  }
165
  .updates-form-form-left {
166
- padding: 50px 20px 50px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  }
 
168
  .updates-form-form-right p {
169
- font-style: normal;
 
170
  font-weight: normal;
171
- font-size: 14px;
172
  line-height: 150%;
173
- position: relative;
174
- padding: 0 0 20px 0;
175
  color: #475569;
176
- margin: 40px 0;
 
177
  }
178
- .updates-form-form-right p:after {
179
  content: "";
180
  border: 1px solid #3C85F7;
181
  position: absolute;
182
  bottom: 5px;
183
  left: 0;
184
  width: 90px;
185
- }
186
  .updates-form {
187
- display: flex;
188
  }
189
  .update-form-input {
190
  position: relative;
191
  }
192
  .update-form-input input {
193
- width: 320px;
194
  background: #F4F4F5;
195
  border: 1px solid #F4F4F5;
196
  box-sizing: border-box;
197
- border-radius: 4px;
198
- height: 40px;
199
  line-height: 40px;
200
  padding: 0 50px 0 40px;
201
  font-size: 13px;
@@ -203,20 +152,38 @@
203
  color: #334155;
204
  }
205
  .update-form-input .form-submit-btn {
206
- background: #3C85F7;
207
- border-radius: 4px;
208
  border: none;
209
  color: #fff;
210
  font-style: normal;
211
  font-weight: 500;
212
  font-size: 13px;
213
  line-height: 150%;
214
- height: 34px;
215
  padding: 0 10px;
216
  position: absolute;
217
  right: 3px;
218
  top: 3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  }
 
 
 
 
 
220
  .updates-form .form-cancel-btn.no {
221
  margin: 0 0 0 3px;
222
  background: transparent;
@@ -235,10 +202,38 @@
235
  left: 10px;
236
  }
237
  .update-notice {
238
- margin: 50px 0 0 0;
239
- font-size: 12px;
240
- padding: 0 110px 0 0;
241
  line-height: 150%;
242
- color: #64748B;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  }
 
 
 
244
  </style>
6
  </style>
7
  <div class="myStickymenu-updates-form">
8
  <div class="updates-form-form-left">
9
+ <div class="updates-form-form-left-text">premio</div>
10
+ <img src="<?php echo MYSTICKYMENU_URL ?>/images/wcupdate_email.svg" style="width: 230px;margin: 60px 0px 20px 0px;" />
11
+ <p>Grow your WordPress websites with our plugins</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </div>
13
  <div class="updates-form-form-right">
14
  <div class="update-title">Be first</div>
15
+ <p>Be among the first to know about our latest features & what we're working on. Plus insider offers & flash sales</p>
16
  <div class="updates-form">
17
  <div class="update-form-input">
18
  <div class="mail-icon">
28
  <input id="myStickymenu_update_email" autocomplete="off" value="<?php echo get_option( 'admin_email' ) ?>" placeholder="Email address">
29
  <button href="javascript:;" class="button button-primary form-submit-btn yes">Sign Up</button>
30
  </div>
31
+ <!-- <div class="update-form-skip-button">
32
  <button href="javascript:;" class="button button-secondary form-cancel-btn no">Skip</button>
33
+ </div> -->
34
  </div>
35
+
36
+ <div class="update-notice-latter">
37
+ <span><a href="javascript:;" class="skip-dolatter form-cancel-btn no">No, I will do it later</a></span>
38
+ </div>
39
+
40
  <div class="update-notice">
41
+ You can remove yourself from the list whenever you want, no strings attached
42
  </div>
43
  <input type="hidden" id="myStickymenu_update_nonce" value="<?php echo wp_create_nonce("myStickymenu_update_nonce") ?>">
44
  </div>
45
  </div>
46
  <style>
47
 
48
+ @font-face {
49
+ font-family: 'Lato';
50
+ src: url('<?php echo MYSTICKYMENU_URL."fonts/Lato-Regular.ttf";?>');
51
+ }
52
+
53
+ #wpwrap{
54
+ background: url('<?php echo MYSTICKYMENU_URL;?>images/update-bg.jpg');
55
+ background-position: bottom center;
56
+ background-size: cover;
57
+ }
58
  .myStickymenu-updates-form {
59
  width: 768px;
60
+ padding: 0 30px 0 0;
61
  box-shadow: 0px 20px 25px rgb(0 0 0 / 10%), 0px 10px 10px rgb(0 0 0 / 4%);
62
  display: flex;
63
  margin: 100px auto 0;
64
+ font-family: Lato, sans-serif;
65
+ background:#ffffff;
66
  }
67
+ .update-title{
68
  font-style: normal;
69
+ font-weight: 700;
70
+ font-size: 30px;
 
71
  align-items: center;
72
  color: #334155;
73
+ position: relative;
74
+ line-height: 36px;
75
+ font-family:Lato;
76
  }
77
  .updates-form-form-left {
78
+ padding: 25px 0px 50px 0px;
79
+ background: linear-gradient(180deg, #3C139A 25.79%, #2A0D76 72.72%);
80
+ border-radius: 14.42px 0px 0px 14.419px;
81
+ text-align:center;
82
+ width: 70%;
83
+ }
84
+ .updates-form-form-left p{
85
+ font-size: 16px;
86
+ line-height: 1.5;
87
+ margin: 0;
88
+ color: #fff;
89
+ padding: 0px 36px;
90
+ font-family:Lato;
91
+ }
92
+
93
+ .updates-form-form-left span{
94
+ color: #fff;
95
+ margin-left: 0px;
96
+ margin-top: 0px;
97
+ position: absolute;
98
+ font-size: 20px;
99
+ line-height: 0.5;
100
+ font-family:Lato;
101
+ }
102
+
103
+ .updates-form-form-left-text{
104
+ color: #fff;
105
+ font-size: 20px;
106
+ font-weight: 600;
107
+ text-align: left;
108
+ padding-left: 30px;
109
+ font-family:Lato;
110
+ }
111
+
112
+ .updates-form-form-right{
113
+ margin-left: 16px;
114
+ padding: 70px 47px 70px 45px;
115
  }
116
+
117
  .updates-form-form-right p {
118
+ font-size: 16px;
119
+ font-style: normal;
120
  font-weight: normal;
 
121
  line-height: 150%;
122
+ position: relative;
 
123
  color: #475569;
124
+ margin: 32px 0px 20px 0px;
125
+ font-family:Lato;
126
  }
127
+ /*.updates-form-form-right p:after {
128
  content: "";
129
  border: 1px solid #3C85F7;
130
  position: absolute;
131
  bottom: 5px;
132
  left: 0;
133
  width: 90px;
134
+ }*/
135
  .updates-form {
136
+ /* display: flex; */
137
  }
138
  .update-form-input {
139
  position: relative;
140
  }
141
  .update-form-input input {
142
+ width: 385px;
143
  background: #F4F4F5;
144
  border: 1px solid #F4F4F5;
145
  box-sizing: border-box;
146
+ border-radius: 8px;
147
+ height: 42px;
148
  line-height: 40px;
149
  padding: 0 50px 0 40px;
150
  font-size: 13px;
152
  color: #334155;
153
  }
154
  .update-form-input .form-submit-btn {
155
+ background: #5A00F0;
156
+ border-radius: 8px;
157
  border: none;
158
  color: #fff;
159
  font-style: normal;
160
  font-weight: 500;
161
  font-size: 13px;
162
  line-height: 150%;
163
+ height: 36px;
164
  padding: 0 10px;
165
  position: absolute;
166
  right: 3px;
167
  top: 3px;
168
+ width: 100px;
169
+ font-family:Lato;
170
+ }
171
+
172
+ .update-form-input #myStickymenu_update_email:hover{
173
+ border-bottom: 1px solid #5A00F0;
174
+ border-radius: 8px 8px 0px 0px;
175
+ }
176
+
177
+ .update-form-input #myStickymenu_update_email:focus-visible{
178
+ border :1px solid #5A00F0 !important;
179
+ outline: 1px !important;
180
+ border-radius: 8px;
181
  }
182
+
183
+ .update-form-input .form-submit-btn:hover{
184
+ background: #5A00F0;
185
+ }
186
+
187
  .updates-form .form-cancel-btn.no {
188
  margin: 0 0 0 3px;
189
  background: transparent;
202
  left: 10px;
203
  }
204
  .update-notice {
205
+ margin: 50px 22px 0 0px;
206
+ font-size: 16px;
 
207
  line-height: 150%;
208
+ color: #28375A;
209
+ text-align:center;
210
+ font-family:Lato;
211
+ }
212
+
213
+ .update-notice-latter{
214
+ margin: 20px 0px;
215
+ width: 100%;
216
+ text-align: center;
217
+ color:#28375A;
218
+ }
219
+
220
+ .update-notice-latter span a{
221
+ text-decoration: underline;
222
+ cursor: pointer;
223
+ color:#28375A;
224
+ }
225
+
226
+
227
+ .update-title:after{
228
+ content: '';
229
+ background: #605DEC;
230
+ width: 19%;
231
+ height: 2px;
232
+ position: absolute;
233
+ bottom: -16px;
234
+ left: 0;
235
  }
236
+
237
+
238
+
239
  </style>
upgrade-to-pro.php CHANGED
@@ -33,15 +33,20 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
33
  <div class="price-table-top">
34
  <div class="price-head">
35
  <div class="plan-name">Basic</div>
36
- <div class="plan-price">$19<span>/year</span></div>
37
  </div>
38
- <div class="price-websites">For small website owners</div>
39
- <div class="price-offer">Renewals for <b>25% off</b></div>
40
- </div>
 
 
 
 
41
  <div class="price-table-middle">
42
  <ul>
43
  <li><a href="javascript:;" class="cus-tooltip">1 website <span class="has-tooltip">*</span><span class="tooltip__content">Use Folders on 1 domain</span></a></li>
44
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
 
45
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
46
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
47
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
@@ -53,18 +58,18 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
53
  <div class="price-table-bottom">
54
  <div class="custom-dd">
55
  <select class="multiple-options">
56
- <option data-option="1_year" data-header="Renewals for 25% off" data-price="19" value="<?php echo esc_url($pro_url."1") ?>">
57
  <?php esc_html_e("Updates & support for 1 year") ?>
58
  </option>
59
- <option data-option="2_year" data-header="For 2 years" data-price="29" value="<?php echo esc_url($pro_url."13") ?>">
60
  <?php esc_html_e("Updates & support for 2 years") ?>
61
  </option>
62
- <option data-option="lifetime" data-header="For lifetime" data-price="59" value="<?php echo esc_url($pro_url."5") ?>">
63
  <?php esc_html_e("Updates & support for lifetime") ?>
64
  </option>
65
  </select>
66
  </div>
67
- <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options[price_id]=1">Buy now</a>
68
  </div>
69
  <div class="bottom-position"></div>
70
  </div>
@@ -74,15 +79,21 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
74
  <div class="price-table-top">
75
  <div class="price-head">
76
  <div class="plan-name">Plus</div>
77
- <div class="plan-price">$39<span>/year</span></div>
78
  </div>
79
- <div class="price-websites">For businesses with multiple websites</div>
80
- <div class="price-offer">Renewals for <b>25% off</b></div>
 
 
 
 
 
81
  </div>
82
  <div class="price-table-middle">
83
  <ul>
84
  <li><a href="javascript:;" class="cus-tooltip">1 website <span class="has-tooltip">*</span><span class="tooltip__content">Use Folders on 1 domain</span></a></li>
85
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
 
86
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
87
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
88
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
@@ -94,18 +105,18 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
94
  <div class="price-table-bottom">
95
  <div class="custom-dd">
96
  <select class="multiple-options">
97
- <option data-option="1_year" data-header="Renewals for 25% off" data-price="39" value="<?php echo esc_url($pro_url."2") ?>">
98
  <?php esc_html_e("Updates & support for 1 year") ?>
99
  </option>
100
- <option data-option="2_year" data-header="For 2 years" data-price="59" value="<?php echo esc_url($pro_url."14") ?>">
101
  <?php esc_html_e("Updates & support for 2 years") ?>
102
  </option>
103
- <option data-option="lifetime" data-header="For lifetime" data-price="99" value="<?php echo esc_url($pro_url."7") ?>">
104
  <?php esc_html_e("Updates & support for lifetime") ?>
105
  </option>
106
  </select>
107
  </div>
108
- <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options%5Bprice_id%5D=2">Buy now</a>
109
  </div>
110
  <div class="bottom-position"></div>
111
  </div>
@@ -115,10 +126,15 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
115
  <div class="price-table-top">
116
  <div class="price-head">
117
  <div class="plan-name">Agency</div>
118
- <div class="plan-price">$79<span>/year</span></div>
119
  </div>
120
- <div class="price-websites">For agencies who manage clients</div>
121
- <div class="price-offer">Renewals for <b>25% off</b></div>
 
 
 
 
 
122
  </div>
123
  <div class="price-table-middle">
124
  <ul>
@@ -132,6 +148,7 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
132
  </div>
133
  </li>
134
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
 
135
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
136
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
137
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
@@ -143,18 +160,18 @@ $pro_url = "https://go.premio.io/checkount/?edd_action=add_to_cart&download_id=2
143
  <div class="price-table-bottom">
144
  <div class="custom-dd">
145
  <select class="multiple-options has-multiple-websites">
146
- <option data-option="1_year" data-header="Renewals for 25% off" data-price="79" value="<?php echo esc_url($pro_url."3") ?>">
147
  <?php esc_html_e("Updates & support for 1 year") ?>
148
  </option>
149
- <option data-option="2_year" data-header="For 2 years" data-price="125" value="<?php echo esc_url($pro_url."15") ?>">
150
  <?php esc_html_e("Updates & support for 2 years") ?>
151
  </option>
152
- <option data-option="lifetime" data-header="For lifetime" data-price="199" value="<?php echo esc_url($pro_url."9") ?>">
153
  <?php esc_html_e("Updates & support for lifetime") ?>
154
  </option>
155
  </select>
156
  </div>
157
- <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options%5Bprice_id%5D=3">Buy now</a>
158
  </div>
159
  <div class="bottom-position"></div>
160
  </div>
33
  <div class="price-table-top">
34
  <div class="price-head">
35
  <div class="plan-name">Basic</div>
36
+ <div class="plan-price">$25<span>/year</span></div>
37
  </div>
38
+
39
+ <div class="plan-center">
40
+ <div class="price-permonth">Less than <b>$2.5</b>/mo · <b>Billed Annually</b></div>
41
+ <div class="price-websites">For small website owners</div>
42
+ <div class="price-offer">Renewals for <b>25% off</b></div>
43
+ </div>
44
+ </div>
45
  <div class="price-table-middle">
46
  <ul>
47
  <li><a href="javascript:;" class="cus-tooltip">1 website <span class="has-tooltip">*</span><span class="tooltip__content">Use Folders on 1 domain</span></a></li>
48
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
49
+ <li><a href="javascript:;" class="cus-tooltip">Countdown timer <span class="has-tooltip">*</span><span class="tooltip__content">Add a countdown timer element to your Welcome Bar to increase conversion rate, announce flash sales, and more<img src="<?php echo MYSTICKYMENU_URL ?>/images/countdown.gif" /></span></a></li>
50
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
51
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
52
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
58
  <div class="price-table-bottom">
59
  <div class="custom-dd">
60
  <select class="multiple-options">
61
+ <option data-option="1_year" data-header="Renewals for 25% off" data-price="25" data-per-month="2.5" value="<?php echo esc_url($pro_url."22") ?>">
62
  <?php esc_html_e("Updates & support for 1 year") ?>
63
  </option>
64
+ <option data-option="2_year" data-header="For 2 years" data-price="39" data-per-month="2" value="<?php echo esc_url($pro_url."23") ?>">
65
  <?php esc_html_e("Updates & support for 2 years") ?>
66
  </option>
67
+ <option data-option="lifetime" data-header="For lifetime" data-price="79" data-per-month="" value="<?php echo esc_url($pro_url."24") ?>">
68
  <?php esc_html_e("Updates & support for lifetime") ?>
69
  </option>
70
  </select>
71
  </div>
72
+ <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options[price_id]=22">Buy now</a>
73
  </div>
74
  <div class="bottom-position"></div>
75
  </div>
79
  <div class="price-table-top">
80
  <div class="price-head">
81
  <div class="plan-name">Plus</div>
82
+ <div class="plan-price">$59<span>/year</span></div>
83
  </div>
84
+
85
+ <div class="plan-center">
86
+ <div class="price-permonth">Less than <b>$5</b>/mo · <b>Billed Annually</b></div>
87
+ <div class="price-websites">For businesses with multiple websites</div>
88
+ <div class="price-offer">Renewals for <b>25% off</b></div>
89
+ </div>
90
+
91
  </div>
92
  <div class="price-table-middle">
93
  <ul>
94
  <li><a href="javascript:;" class="cus-tooltip">1 website <span class="has-tooltip">*</span><span class="tooltip__content">Use Folders on 1 domain</span></a></li>
95
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
96
+ <li><a href="javascript:;" class="cus-tooltip">Countdown timer <span class="has-tooltip">*</span><span class="tooltip__content">Add a countdown timer element to your Welcome Bar to increase conversion rate, announce flash sales, and more<img src="<?php echo MYSTICKYMENU_URL ?>/images/countdown.gif" /></span></a></li>
97
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
98
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
99
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
105
  <div class="price-table-bottom">
106
  <div class="custom-dd">
107
  <select class="multiple-options">
108
+ <option data-option="1_year" data-header="Renewals for 25% off" data-price="59" data-per-month="5" value="<?php echo esc_url($pro_url."25") ?>">
109
  <?php esc_html_e("Updates & support for 1 year") ?>
110
  </option>
111
+ <option data-option="2_year" data-header="For 2 years" data-price="89" data-per-month="4" value="<?php echo esc_url($pro_url."26") ?>">
112
  <?php esc_html_e("Updates & support for 2 years") ?>
113
  </option>
114
+ <option data-option="lifetime" data-header="For lifetime" data-price="149" data-per-month="6.5" value="<?php echo esc_url($pro_url."27") ?>">
115
  <?php esc_html_e("Updates & support for lifetime") ?>
116
  </option>
117
  </select>
118
  </div>
119
+ <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options%5Bprice_id%5D=25">Buy now</a>
120
  </div>
121
  <div class="bottom-position"></div>
122
  </div>
126
  <div class="price-table-top">
127
  <div class="price-head">
128
  <div class="plan-name">Agency</div>
129
+ <div class="plan-price">$99<span>/year</span></div>
130
  </div>
131
+
132
+ <div class="plan-center">
133
+ <div class="price-permonth">Less than <b>$8.5</b>/mo · <b>Billed Annually</b></div>
134
+ <div class="price-websites">For agencies who manage clients</div>
135
+ <div class="price-offer">Renewals for <b>25% off</b></div>
136
+ </div>
137
+
138
  </div>
139
  <div class="price-table-middle">
140
  <ul>
148
  </div>
149
  </li>
150
  <li><a href="javascript:;" class="cus-tooltip">Multi Welcome bar <span class="has-tooltip">*</span><span class="tooltip__content">Create a separate welcome bar for different pages based on page targeting rules (E.g. for different languages, different product categories and much more)</span></a></li>
151
+ <li><a href="javascript:;" class="cus-tooltip">Countdown timer <span class="has-tooltip">*</span><span class="tooltip__content right_tooltip">Add a countdown timer element to your Welcome Bar to increase conversion rate, announce flash sales, and more<img src="<?php echo MYSTICKYMENU_URL ?>/images/countdown.gif" /></span></a></li>
152
  <li><a href="javascript:;" class="cus-tooltip">Show on scroll up/down <span class="has-tooltip">*</span><span class="tooltip__content">You can show the menu when scrolling up, down or both</span></a></li>
153
  <li><a href="javascript:;" class="cus-tooltip">Devices <span class="has-tooltip">*</span><span class="tooltip__content">You can disable the sticky effect on desktop or mobile</span></a></li>
154
  <li><a href="javascript:;" class="cus-tooltip">CSS style <span class="has-tooltip">*</span><span class="tooltip__content">Add CSS of your own to the sticky menu</span></a></li>
160
  <div class="price-table-bottom">
161
  <div class="custom-dd">
162
  <select class="multiple-options has-multiple-websites">
163
+ <option data-option="1_year" data-header="Renewals for 25% off" data-price="79" value="<?php echo esc_url($pro_url."28") ?>">
164
  <?php esc_html_e("Updates & support for 1 year") ?>
165
  </option>
166
+ <option data-option="2_year" data-header="For 2 years" data-price="125" value="<?php echo esc_url($pro_url."29") ?>">
167
  <?php esc_html_e("Updates & support for 2 years") ?>
168
  </option>
169
+ <option data-option="lifetime" data-header="For lifetime" data-price="199" value="<?php echo esc_url($pro_url."30") ?>">
170
  <?php esc_html_e("Updates & support for lifetime") ?>
171
  </option>
172
  </select>
173
  </div>
174
+ <a class="cart-link" target="_blank" href="https://go.premio.io/?edd_action=add_to_cart&amp;download_id=2199&amp;edd_options%5Bprice_id%5D=28">Buy now</a>
175
  </div>
176
  <div class="bottom-position"></div>
177
  </div>
welcome-bar.php CHANGED
@@ -1,1887 +1,1990 @@
1
- <?php
2
-
3
- function mysticky_welcome_bar_backend() {
4
- $upgarde_url = admin_url("admin.php?page=my-stickymenu-upgrade");
5
- $nonce = wp_create_nonce('mysticky_option_welcomebar_update');
6
- $nonce_reset = wp_create_nonce('mysticky_option_welcomebar_reset');
7
-
8
- $welcomebar = get_option( 'mysticky_option_welcomebar' );
9
- if ( $welcomebar == '' || empty($welcomebar)) {
10
- $welcomebar = mysticky_welcomebar_pro_widget_default_fields();
11
- }
12
- $mysticky_welcomebar_showx_desktop = $mysticky_welcomebar_showx_mobile = '';
13
- $mysticky_welcomebar_btn_desktop = $mysticky_welcomebar_btn_mobile = '';
14
- $mysticky_welcomebar_display_desktop = $mysticky_welcomebar_display_mobile = '';
15
- if( isset($welcomebar['mysticky_welcomebar_x_desktop']) ) {
16
- $mysticky_welcomebar_showx_desktop = ' mysticky-welcomebar-showx-desktop';
17
- }
18
- if( isset($welcomebar['mysticky_welcomebar_x_mobile']) ) {
19
- $mysticky_welcomebar_showx_mobile = ' mysticky-welcomebar-showx-mobile';
20
- }
21
- if( isset($welcomebar['mysticky_welcomebar_btn_desktop']) ) {
22
- $mysticky_welcomebar_btn_desktop = ' mysticky-welcomebar-btn-desktop';
23
- }
24
- if( isset($welcomebar['mysticky_welcomebar_btn_mobile']) ) {
25
- $mysticky_welcomebar_btn_mobile = ' mysticky-welcomebar-btn-mobile';
26
- }
27
-
28
- if( !isset($welcomebar['mysticky_welcomebar_redirect_rel']) ) {
29
- $welcomebar['mysticky_welcomebar_redirect_rel'] = '';
30
- }
31
- $display = ' mysticky-welcomebar-attention-'. ( isset($welcomebar['mysticky_welcomebar_attentionselect']) ? $welcomebar['mysticky_welcomebar_attentionselect'] : '' );
32
- $display_entry_effect = (isset($welcomebar['mysticky_welcomebar_entry_effect'])) ? ' mysticky-welcomebar-entry-effect-'.$welcomebar['mysticky_welcomebar_entry_effect'] : ' mysticky-welcomebar-entry-effect-slide-in';
33
- $display_main_class = "mysticky-welcomebar-position-" . $welcomebar['mysticky_welcomebar_position'] . $mysticky_welcomebar_showx_desktop . $mysticky_welcomebar_showx_mobile . $mysticky_welcomebar_btn_desktop . $mysticky_welcomebar_btn_mobile . $display . $display_entry_effect;
34
- ?>
35
- <form class="mysticky-welcomebar-form" id="mysticky_welcomebar_form" method="post" action="#">
36
- <div class="mysticky-welcomebar-header-title">
37
- <h3><?php _e('Welcome Bar', 'myStickymenu'); ?></h3>
38
- <label for="mysticky-welcomebar-contact-form-enabled" class="mysticky-welcomebar-switch">
39
- <input type="checkbox" id="mysticky-welcomebar-contact-form-enabled" name="mysticky_option_welcomebar[mysticky_welcomebar_enable]" value="1" <?php checked( @$welcomebar['mysticky_welcomebar_enable'], '1' );?> />
40
- <span class="slider"></span>
41
- </label>
42
- </div>
43
- <div class="mysticky-welcomebar-setting-wrap">
44
- <div class="mysticky-welcomebar-setting-left">
45
- <div class="mysticky-welcomebar-setting-block">
46
- <div class="mysticky-welcomebar-subheader-title">
47
- <h4><?php _e('Design', 'myStickymenu'); ?></h4>
48
- </div>
49
- <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-setting-position">
50
- <label><?php _e('Position', 'myStickymenu'); ?></label>
51
- <div class="mysticky-welcomebar-setting-content-right">
52
- <label>
53
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_position]" value= "top" type="radio" <?php checked( @$welcomebar['mysticky_welcomebar_position'], 'top' );?> />
54
- <?php _e("Top", 'mystickymenu'); ?>
55
- </label>
56
- <label>
57
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_position]" value="bottom" type="radio" disabled />
58
- <?php _e("Bottom", 'mystickymenu'); ?>
59
- </label>
60
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
61
- </div>
62
- </div>
63
- <div class="mysticky-welcomebar-setting-content">
64
- <label><?php _e('Height', 'myStickymenu'); ?></label>
65
- <div class="mysticky-welcomebar-setting-content-right">
66
- <div class="px-wrap">
67
- <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_height" name="mysticky_option_welcomebar[mysticky_welcomebar_height]" value="60" disabled />
68
- <span class="input-px">PX</span>
69
- </div>
70
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
71
- </div>
72
- </div>
73
- <div class="mysticky-welcomebar-setting-content">
74
- <label><?php _e('Background Color', 'myStickymenu'); ?></label>
75
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker">
76
- <input type="text" id="mysticky_welcomebar_bgcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_bgcolor]" class="my-color-field" data-alpha="true" value="<?php echo $welcomebar['mysticky_welcomebar_bgcolor'];?>" />
77
- </div>
78
- </div>
79
- <div class="mysticky-welcomebar-setting-content">
80
- <label><?php _e('Background Text Color', 'myStickymenu'); ?></label>
81
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker">
82
- <input type="text" id="mysticky_welcomebar_bgtxtcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_bgtxtcolor]" class="my-color-field" data-alpha="true" value="<?php echo $welcomebar['mysticky_welcomebar_bgtxtcolor'];?>" />
83
- </div>
84
- </div>
85
- <div class="mysticky-welcomebar-setting-content">
86
- <label><?php _e('Font', 'myStickymenu'); ?></label>
87
- <div class="mysticky-welcomebar-setting-content-right">
88
- <select name="mysticky_option_welcomebar[mysticky_welcomebar_font]" class="form-fonts">
89
- <option value=""><?php _e( 'Select font family', 'myStickymenu' );?></option>
90
- <?php $group= ''; foreach( myStickymenu_fonts() as $key=>$value):
91
- if ($value != $group){
92
- echo '<optgroup label="' . $value . '">';
93
- $group = $value;
94
- }
95
- ?>
96
- <option value="<?php echo esc_attr($key);?>" <?php selected( @$welcomebar['mysticky_welcomebar_font'], $key ); ?>><?php echo esc_html($key);?></option>
97
- <?php endforeach;?>
98
- </select>
99
- </div>
100
- </div>
101
- <div class="mysticky-welcomebar-setting-content">
102
- <label><?php _e('Font Size', 'myStickymenu'); ?></label>
103
- <div class="mysticky-welcomebar-setting-content-right">
104
- <div class="px-wrap">
105
- <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_fontsize" name="mysticky_option_welcomebar[mysticky_welcomebar_fontsize]" value="<?php echo @$welcomebar['mysticky_welcomebar_fontsize'];?>" />
106
- <span class="input-px">PX</span>
107
- </div>
108
- </div>
109
- </div>
110
- <div class="mysticky-welcomebar-setting-content">
111
- <label><?php _e('Bar Text', 'myStickymenu'); ?></label>
112
- <div class="mysticky-welcomebar-setting-content-right">
113
- <?php
114
- $settings = array(
115
- 'media_buttons' => false,
116
- 'textarea_name' => 'mysticky_option_welcomebar[mysticky_welcomebar_bar_text]',
117
- 'tinymce' => false,
118
- 'quicktags' => array(
119
- 'buttons' => 'strong,em,link'
120
- )
121
- );
122
- wp_editor( stripslashes($welcomebar['mysticky_welcomebar_bar_text']), 'mysticky_bar_text', $settings );
123
- // add more buttons to the html editor
124
- function underline_tag_add_quicktags() {
125
- if ( wp_script_is('quicktags') ){ ?>
126
- <script type="text/javascript">
127
- QTags.addButton( 'underline_tag', 'U', '<u>', '</u>', 'underline', 'underline', 20, '' );
128
- </script>
129
- <?php
130
- }
131
- }
132
- add_action( 'admin_print_footer_scripts', 'underline_tag_add_quicktags' );
133
- ?>
134
- <!--<textarea id="mysticky_bar_text" class="mystickyinput" name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]" rows="4" style="display: none;"><?php echo stripslashes($welcomebar['mysticky_welcomebar_bar_text']);?> </textarea>-->
135
- </div>
136
- </div>
137
- <div class="mysticky-welcomebar-setting-content">
138
- <label><?php _e('Show X', 'myStickymenu'); ?></label>
139
- <div class="mysticky-welcomebar-setting-content-right">
140
- <label>
141
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_x_desktop]" value= "desktop" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_x_desktop'], 'desktop' );?> />
142
- <?php _e( 'Desktop', 'mystickymenu' );?>
143
- </label>
144
- <label>
145
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_x_mobile]" value= "mobile" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_x_mobile'], 'mobile' );?> />
146
- <?php _e( 'Mobile', 'mystickymenu' );?>
147
- </label>
148
- </div>
149
- </div>
150
- </div>
151
- <div class="mysticky-welcomebar-setting-block">
152
- <div class="mysticky-welcomebar-subheader-title">
153
- <h4><?php _e('Button', 'myStickymenu'); ?></h4>
154
- </div>
155
- <div class="mysticky-welcomebar-setting-content">
156
- <label><?php _e('Button', 'myStickymenu'); ?></label>
157
- <div class="mysticky-welcomebar-setting-content-right">
158
- <label>
159
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]" value= "desktop" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_btn_desktop'], 'desktop' );?> />
160
- <?php _e( 'Desktop', 'mystickymenu' );?>
161
- </label>
162
- <label>
163
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]" value= "mobile" type="checkbox"<?php checked( @$welcomebar['mysticky_welcomebar_btn_mobile'], 'mobile' );?> />
164
- <?php _e( 'Mobile', 'mystickymenu' );?>
165
- </label>
166
- </div>
167
- </div>
168
- <div class="mysticky-welcomebar-setting-content">
169
- <label><?php _e('Button Color', 'myStickymenu'); ?></label>
170
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker mysticky_welcomebar_btn_color">
171
- <input type="text" id="mysticky_welcomebar_btncolor" name="mysticky_option_welcomebar[mysticky_welcomebar_btncolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($welcomebar['mysticky_welcomebar_btncolor']);?>" />
172
- </div>
173
- </div>
174
- <div class="mysticky-welcomebar-setting-content">
175
- <label><?php _e('Button Text Color', 'myStickymenu'); ?></label>
176
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker mysticky_welcomebar_btn_color">
177
- <input type="text" id="mysticky_welcomebar_btntxtcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_btntxtcolor]" class="my-color-field" data-alpha="true" value="<?php echo $welcomebar['mysticky_welcomebar_btntxtcolor'];?>" />
178
- </div>
179
- </div>
180
- <div class="mysticky-welcomebar-setting-content">
181
- <label><?php _e('Button Text', 'myStickymenu'); ?></label>
182
- <div class="mysticky-welcomebar-setting-content-right">
183
- <input type="text" id="mysticky_welcomebar_btn_text" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_btn_text]" value="<?php echo stripslashes($welcomebar['mysticky_welcomebar_btn_text']);?>" />
184
- </div>
185
- </div>
186
- <!-- -->
187
- <div class="mysticky-welcomebar-setting-content">
188
- <label><?php _e('Attention Effect', 'myStickymenu'); ?></label>
189
- <div class="mysticky-welcomebar-setting-content-right">
190
- <div class="mysticky-welcomebar-setting-attention">
191
- <select name="mysticky_option_welcomebar[mysticky_welcomebar_attentionselect]" class="mysticky-welcomebar-attention mysticky_welcomebar_disable">
192
- <option value="default" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], ' ' ); ?>><?php _e( 'None', 'myStickymenu' );?></option>
193
- <option value="flash" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'flash' ); ?>><?php _e( 'Flash', 'myStickymenu' );?></option>
194
- <option value="shake" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'shake' ); ?>><?php _e( 'Shake', 'myStickymenu' );?></option>
195
- <option value="swing" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'swing' ); ?>><?php _e( 'Swing', 'myStickymenu' );?></option>
196
- <option value="tada" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'tada' ); ?>><?php _e( 'Tada', 'myStickymenu' );?></option>
197
- <option value="heartbeat" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'heartbeat' ); ?>><?php _e( 'Heartbeat', 'myStickymenu' );?></option>
198
- <option value="wobble" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'wobble' ); ?>><?php _e( 'Wobble', 'myStickymenu' );?></option>
199
- </select>
200
- </div>
201
- </div>
202
- </div>
203
- <!-- -->
204
- <div class="mysticky-welcomebar-setting-content">
205
- <label><?php _e('Button Submission', 'myStickymenu'); ?></label>
206
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-redirect-wrap">
207
- <div class="mysticky-welcomebar-setting-action">
208
- <select name="mysticky_option_welcomebar[mysticky_welcomebar_actionselect]" class="mysticky-welcomebar-action mysticky_welcomebar_disable">
209
- <option value="redirect_to_url" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'redirect_to_url' ); ?>><?php _e( 'Redirect to URL', 'myStickymenu' );?></option>
210
- <option value="close_bar" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'close_bar' ); ?>><?php _e( 'Close bar', 'myStickymenu' );?></option>
211
- <option value="poptin_popup" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'poptin_popup' ); ?> ><?php _e( 'Launch a Poptin pop-up', 'myStickymenu' );?></option>
212
- <option value="thankyou_screen" data-href="<?php echo esc_url($upgarde_url); ?>"><?php _e( 'Thank you screen (Upgrade Now)', 'myStickymenu' );?></option>
213
- </select>
214
- </div>
215
-
216
- </div>
217
- </div>
218
-
219
- <div class="mysticky-welcomebar-poptin-popup" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'poptin_popup' ) : ?> style="display:none;" <?php endif;?>>
220
- <div class="mysticky-welcomebar-setting-content">
221
- <p class="mysticky-welcomebar-poptin-content" >Sign up at <a href="https://www.poptin.com/?utm_source=msm" target="_blank">Poptin</a> for free and launch pop-ups on <a href="https://help.poptin.com/article/show/72942-how-to-show-a-poptin-when-the-visitor-clicks-on-a-button-link-on-your-site" target="_blank">click</a>
222
- </p>
223
- </div>
224
- <div class="mysticky-welcomebar-setting-content">
225
- <label><?php _e('Poptin pop-up direct link', 'myStickymenu'); ?></label>
226
- <div class="mysticky-welcomebar-setting-content-right">
227
- <input type="text" id="mysticky_welcomebar_poptin_popup_link" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_poptin_popup_link]" value="<?php echo (isset($welcomebar['mysticky_welcomebar_poptin_popup_link'])) ? $welcomebar['mysticky_welcomebar_poptin_popup_link'] : '';?>" placeholder="<?php echo esc_url("https://app.popt.in/APIRequest/click/some_id_here"); ?>" />
228
- <input type="hidden" id="welcome_save_anyway" value='' />
229
- </div>
230
- </div>
231
- </div>
232
- <!-- -->
233
-
234
- <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
235
- <label><?php _e('Redirection link', 'myStickymenu'); ?></label>
236
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-action mysticky-welcomebar-redirect" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] == 'close_bar' ) : ?> style="display:none;" <?php endif;?> >
237
- <input type="text" id="mysticky_welcomebar_redirect" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_redirect]" value="<?php echo esc_url($welcomebar['mysticky_welcomebar_redirect']);?>" placeholder="<?php echo esc_url("https://www.yourdomain.com"); ?>" />
238
- </div>
239
- </div>
240
- <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
241
- <label><?php _e( 'Open in a new tab', 'mystickymenu' );?></label>
242
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-newtab mysticky-welcomebar-redirect" >
243
- <label class="mysticky-welcomebar-switch">
244
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_redirect_newtab]" value= "1" type="checkbox" disabled />
245
- <span class="slider"></span>
246
- </label>
247
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
248
- </div>
249
- </div>
250
- <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
251
- <label><?php _e('rel Attribute', 'myStickymenu'); ?>
252
- <span class="mysticky-custom-fields-tooltip">
253
- <a href="javascript:void(0);" class="mysticky-tooltip mysticky-new-custom-btn"><i class="dashicons dashicons-editor-help"></i></a>
254
- <p>Add a "rel" attribute to the button link. You can use it to add a rel="nofollow", "sponsored", or any other "rel" attribute option</p>
255
- </span>
256
- </label>
257
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-newtab mysticky-welcomebar-redirect" >
258
- <input type="text" id="mysticky_welcomebar_redirect_rel" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_redirect_rel]" value="" placeholder="" disabled />
259
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
260
- </div>
261
- </div>
262
- <!-- -->
263
- <div class="mysticky-welcomebar-setting-content">
264
- <label><?php _e('After Submission', 'myStickymenu'); ?></label>
265
- <div class="mysticky-welcomebar-setting-content-right">
266
- <div class="mysticky-welcomebar-setting-action">
267
- <select name="mysticky_option_welcomebar[mysticky_welcomebar_aftersubmission]" class="mysticky-welcomebar-aftersubmission mysticky_welcomebar_disable">
268
- <option value="dont_show_welcomebar" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'dont_show_welcomebar' ); ?>><?php _e( "Don't show the Welcome Bar", 'myStickymenu' );?></option>
269
- <option value="show_welcomebar_next_visit" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'show_welcomebar_next_visit' ); ?>><?php _e( 'Show the Welcome Bar in the next visit', 'myStickymenu' );?></option>
270
- <option value="show_welcomebar_every_page" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'show_welcomebar_every_page' ); ?> ><?php _e( 'Show the Welcome Bar on every page', 'myStickymenu' );?></option>
271
- </select>
272
- </div>
273
- </div>
274
- </div>
275
- <!-- -->
276
- <div class="mysticky-welcomebar-setting-content">
277
- <label><?php _e('Close welcome bar Automatically', 'myStickymenu'); ?></label>
278
- <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-close-automatically-sec">
279
- <label for="mysticky-welcomebar-close-automatically-enabled" class="mysticky-welcomebar-switch">
280
- <input type="checkbox" id="mysticky-welcomebar-close-automatically-enabled" name="mysticky_option_welcomebar[mysticky_welcomebar_enable_automatical]" value="1" disabled />
281
- <span class="slider"></span>
282
- </label>
283
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
284
- <div class="mysticky-welcomebar-setting-action" style="display:none;">
285
- <div class="px-wrap">
286
- <span><?php _e('Close welcome bar after ', 'myStickymenu'); ?></span>
287
- <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_triggersec_automatically" name="mysticky_option_welcomebar[mysticky_welcomebar_triggersec_automatically]" value="0">
288
- <span class="input-px"><?php _e('Sec', 'myStickymenu'); ?></span>
289
- </div>
290
- </div>
291
- </div>
292
- </div>
293
- </div>
294
- <div class="mysticky-welcomebar-setting-block">
295
- <div class="mysticky-welcomebar-subheader-title">
296
- <h4><?php _e('Display Rules', 'myStickymenu'); ?></h4>
297
- </div>
298
- <div class="mysticky-welcomebar-setting-content">
299
- <label><?php _e('Entry effect', 'myStickymenu'); ?></label>
300
- <div class="mysticky-welcomebar-setting-content-right">
301
- <?php $welcomebar['mysticky_welcomebar_entry_effect'] = (isset($welcomebar['mysticky_welcomebar_entry_effect']) && $welcomebar['mysticky_welcomebar_entry_effect']!= '') ? $welcomebar['mysticky_welcomebar_entry_effect'] : 'slide-in'; ?>
302
- <select id="myStickymenu-entry-effect" name="mysticky_option_welcomebar[mysticky_welcomebar_entry_effect]" >
303
- <option value="none" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'none' ); ?>><?php _e( 'No effect', 'myStickymenu' );?></option>
304
- <option value="slide-in" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'slide-in' ); ?>><?php _e( 'Slide in', 'myStickymenu' );?></option>
305
- <option value="fade" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'fade' ); ?>><?php _e( 'Fade', 'myStickymenu' );?></option>
306
- </select>
307
- </div>
308
- </div>
309
- <div class="mysticky-welcomebar-upgrade-main mysticky_device_upgrade">
310
- <span class="myStickymenu-upgrade">
311
- <a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( ' Upgrade Now', 'mystickymenu' );?></a>
312
- </span>
313
- <div class="mysticky-welcomebar-setting-content">
314
- <label><?php _e('Devices', 'myStickymenu'); ?></label>
315
- <div class="mysticky-welcomebar-setting-content-right">
316
- <label>
317
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_device_desktop]" value= "desktop" type="checkbox" checked disabled />
318
- <?php _e( 'Desktop', 'mystickymenu' );?>
319
- </label>
320
- <label>
321
- <input name="mysticky_option_welcomebar[mysticky_welcomebar_device_mobile]" value= "mobile" type="checkbox" checked disabled />
322
- <?php _e( 'Mobile', 'mystickymenu' );?>
323
- </label>
324
- </div>
325
- </div>
326
- <div class="mysticky-welcomebar-setting-content">
327
- <label><?php _e('Trigger', 'myStickymenu'); ?></label>
328
- <div class="mysticky-welcomebar-setting-content-right">
329
- <div class="mysticky-welcomebar-setting-action mysticky-welcomebar-trigger-wrap">
330
- <label>
331
- <input type="radio" name="mysticky_option_welcomebar[mysticky_welcomebar_trigger]" value="after_a_few_seconds" checked disabled />&nbsp;<?php _e( 'After a few seconds', 'myStickymenu' );?>
332
- </label>
333
- <label>
334
- <input type="radio" name="mysticky_option_welcomebar[mysticky_welcomebar_trigger]" value="after_scroll" disabled />&nbsp;<?php _e( 'After Scroll', 'myStickymenu' );?>
335
- </label>
336
- </div>
337
- <div class="mysticky-welcomebar-setting-action mysticky-welcomebar-triggersec">
338
- <div class="px-wrap">
339
- <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_triggersec" name="mysticky_option_welcomebar[mysticky_welcomebar_triggersec]" value="0" disabled />
340
- <span class="input-px"><?php echo ( isset($welcomebar['mysticky_welcomebar_trigger']) && $welcomebar['mysticky_welcomebar_trigger'] == 'after_scroll' ) ? '%' : 'Sec'; ?></span>
341
- </div>
342
- </div>
343
- </div>
344
- </div>
345
- <div class="mysticky-welcomebar-setting-content">
346
- <label><?php _e('Expiry date', 'myStickymenu'); ?></label>
347
- <div class="mysticky-welcomebar-setting-content-right">
348
- <div class="mysticky-welcomebar-expirydate">
349
- <input type="text" id="mysticky_welcomebar_expirydate" name="mysticky_option_welcomebar[mysticky_welcomebar_expirydate]" placeholder="<?php _e('No expiry date', 'myStickymenu'); ?>" value="" disabled />
350
- <span class="dashicons dashicons-calendar-alt"></span>
351
- </div>
352
- <div class="mysticky-welcomebar-expirydate-gmt">
353
- <select name="mysticky_option_welcomebar[mysticky_welcomebar_expirydate_gmt]" id="mysticky_welcomebar_expirydate_gmt" disabled>
354
- <?php for( $i=12; $i>=-12;$i-- ) { ?>
355
- <option value="<?php echo $i ?>"><?php echo "GMT " . ( $i>0 ? "+" : "" ).( $i ) ?></option>
356
- <?php } ?>
357
- </select>
358
- </div>
359
- </div>
360
- </div>
361
- <div class="mysticky-welcomebar-setting-content show-on-apper">
362
- <label><?php _e('Page targeting', 'myStickymenu'); ?></label>
363
- <div class="mysticky-welcomebar-setting-content-right">
364
- <a href="javascript:void(0);" class="create-rule" id="create-rule"><?php esc_html_e( "Add Rule", "mystickyelements" );?></a>
365
- </div>
366
- <?php
367
- $url_options = array(
368
- 'page_contains' => 'pages that contain',
369
- 'page_has_url' => 'a specific page',
370
- 'page_start_with' => 'pages starting with',
371
- 'page_end_with' => 'pages ending with',
372
- );
373
- ?>
374
- <div class="mysticky-welcomebar-page-options-html" style="display: none">
375
- <div class="mysticky-welcomebar-page-option">
376
- <div class="url-content">
377
- <div class="mysticky-welcomebar-url-select">
378
- <select name="" id="url_shown_on___count___option">
379
- <option value="show_on"><?php esc_html_e("Show on", "mysticky" );?></option>
380
- <option value="not_show_on"><?php esc_html_e("Don't show on", "mysticky" );?></option>
381
- </select>
382
- </div>
383
- <div class="mysticky-welcomebar-url-option">
384
- <select class="mysticky-welcomebar-url-options" name="" id="url_rules___count___option">
385
- <option selected="selected" value=""><?php esc_html_e("Select Rule", "mysticky" );?></option>
386
- <?php foreach($url_options as $key=>$value) {
387
- echo '<option value="'.$key.'">'.$value.'</option>';
388
- } ?>
389
- </select>
390
- </div>
391
- <div class="mysticky-welcomebar-url-box">
392
- <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
393
- </div>
394
- <div class="mysticky-welcomebar-url-values">
395
- <input type="text" value="" name="mysticky_option_welcomebar[page_settings][__count__][value]" id="url_rules___count___value" disabled />
396
- </div>
397
- <div class="clear"></div>
398
- </div>
399
- <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
400
- </div>
401
- </div>
402
- <div class="mysticky-welcomebar-page-options mysticky-welcomebar-setting-content-right" id="mysticky-welcomebar-page-options" style="display:none"></div>
403
- </div>
404
- </div>
405
- </div>
406
- </div>
407
- <div class="mysticky-welcomebar-setting-right">
408
- <div class="mysticky-welcomebar-header-title">
409
- <h3><?php _e('Preview', 'mystickyelements'); ?></h3>
410
- </div>
411
- <div class="mysticky-welcomebar-preview-screen">
412
- <link href="https://fonts.googleapis.com/css?family=<?php echo $welcomebar['mysticky_welcomebar_font'] ?>:400,600,700|Lato:400,500,600,700" rel="stylesheet" type="text/css" class="sfba-google-font">
413
- <div class="mysticky-welcomebar-fixed mysticky-welcomebar-display-desktop <?php echo $display_main_class; ?>" >
414
- <div class="mysticky-welcomebar-fixed-wrap">
415
- <div class="mysticky-welcomebar-content">
416
- <?php echo wpautop(isset($welcomebar['mysticky_welcomebar_bar_text'])? stripslashes($welcomebar['mysticky_welcomebar_bar_text']) :"Get 30% off your first purchase");?>
417
- </div>
418
- <div class="mysticky-welcomebar-btn">
419
- <a href="#" ><?php echo isset($welcomebar['mysticky_welcomebar_btn_text']) ? stripslashes($welcomebar['mysticky_welcomebar_btn_text']) : "Got it!";?></a>
420
- </div>
421
- <a href="javascript:void(0)" class="mysticky-welcomebar-close">X</a>
422
- </div>
423
- </div>
424
- </div>
425
- </div>
426
- </div>
427
- <div class="mysticky-welcomebar-submit">
428
- <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php _e('Save', 'mystickymenu');?>">
429
- </div>
430
- <input type="hidden" name="nonce" value="<?php echo $nonce; ?>">
431
- <input type="hidden" name="active_tab_element" value="1">
432
- <input type="hidden" id="save_welcome_bar" name="save_welcome_bar" value="">
433
-
434
- </form>
435
- <form class="mysticky-welcomebar-form-reset" method="post" action="#">
436
- <div class="mysticky-welcomebar-submit">
437
- <input type="submit" name="mysticky_welcomebar_reset" id="reset" class="button button-secondary" value="<?php _e('Reset', 'mystickymenu');?>">
438
- </div>
439
- <input type="hidden" name="nonce_reset" value="<?php echo $nonce_reset; ?>">
440
- <input type="hidden" name="active_tab_element" value="1">
441
- </form>
442
- <div id="mysticky-welcomebar-save-confirm" style="display:none;" title="<?php esc_attr_e( 'myStickymenu is currently off', 'mystickymenu' ); ?>">
443
- <p>
444
- <?php _e('Your Welcome Bar is currently turned off, would you like to save and show it on your site?', 'mystickymenu' ); ?>
445
- </p>
446
- </div>
447
-
448
- <div id="mysticky-welcomebar-poptin-popup-confirm" style="display:none;" title="<?php esc_attr_e( 'Poptin pop-up is not configured properly', 'mystickymenu' ); ?>">
449
- <p>
450
- Seems like you haven't filled up the Poptin pop-up direct link field properly. Please <a href="https://help.poptin.com/article/show/72942-how-to-show-a-poptin-when-the-visitor-clicks-on-a-button-link-on-your-site" target="_blank">check the guide</a> to know how you can copy direct link of a pop-up from Poptin.
451
- </p>
452
- </div>
453
- <script>
454
- jQuery(".mysticky-welcomebar-fixed").on(
455
- "animationend MSAnimationEnd webkitAnimationEnd oAnimationEnd",
456
- function() {
457
- jQuery(this).removeClass("animation-start");
458
- }
459
- );
460
- jQuery(document).ready(function() {
461
- var container = jQuery(".mysticky-welcomebar-fixed");
462
- var refreshId = setInterval(function() {
463
- container.addClass("animation-start");
464
- }, 3500);
465
- });
466
- </script>
467
- <style>
468
- .mysticky-welcomebar-fixed {
469
- background-color: <?php echo $welcomebar['mysticky_welcomebar_bgcolor'] ?>;
470
- font-family: <?php echo $welcomebar['mysticky_welcomebar_font'] ?>;
471
- position: absolute;
472
- left: 0;
473
- right: 0;
474
- opacity: 0;
475
- z-index: 9999999;
476
- -webkit-transition: all 1s ease 0s;
477
- -moz-transition: all 1s ease 0s;
478
- transition: all 1s ease 0s;
479
- }
480
- .mysticky-welcomebar-fixed-wrap {
481
- min-height: 60px;
482
- padding: 20px 10px 20px 10px;
483
- display: flex;
484
- align-items: center;
485
- justify-content: center;
486
- }
487
- .mysticky-welcomebar-preview-mobile-screen .mysticky-welcomebar-fixed{
488
- padding: 0 25px;
489
- }
490
- .mysticky-welcomebar-position-top {
491
- top:0;
492
- }
493
- .mysticky-welcomebar-position-bottom {
494
- bottom:0;
495
- }
496
- .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in {
497
- top: -80px;
498
- }
499
- .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in {
500
- bottom: -80px;
501
- }
502
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect {
503
- top:0;
504
- opacity: 1;
505
- }
506
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect {
507
- bottom:0;
508
- opacity: 1;
509
- }
510
- .mysticky-welcomebar-entry-effect-fade {
511
- opacity: 0;
512
- }
513
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-fade.entry-effect {
514
- opacity: 1;
515
- }
516
- .mysticky-welcomebar-entry-effect-none {
517
- display: none;
518
- }
519
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-none.entry-effect {
520
- display: block;
521
- opacity: 1;
522
- }
523
- .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
524
- top: 0;
525
- }
526
- .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
527
- bottom: 0;
528
- }
529
- .mysticky-welcomebar-fixed .mysticky-welcomebar-content p a,
530
- .mysticky-welcomebar-fixed .mysticky-welcomebar-content p {
531
- color: <?php echo $welcomebar['mysticky_welcomebar_bgtxtcolor'] ?>;
532
- font-size: <?php echo $welcomebar['mysticky_welcomebar_fontsize'] ?>px;
533
- font-family: inherit;
534
- margin: 0;
535
- padding: 0;
536
- line-height: 1.2;
537
- font-weight: 400;
538
- }
539
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
540
- padding-left: 30px;
541
- display: none;
542
- }
543
- .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
544
- display: block;
545
- }
546
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a {
547
- background-color: <?php echo $welcomebar['mysticky_welcomebar_btncolor'] ?>;
548
- font-family: inherit;
549
- color: <?php echo $welcomebar['mysticky_welcomebar_btntxtcolor'] ?>;
550
- border-radius: 4px;
551
- text-decoration: none;
552
- display: inline-block;
553
- vertical-align: top;
554
- line-height: 1.2;
555
- font-size: <?php echo $welcomebar['mysticky_welcomebar_fontsize'] ?>px;
556
- font-weight: 400;
557
- padding: 5px 20px;
558
- white-space: nowrap;
559
- }
560
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a:hover {
561
- /*opacity: 0.7;*/
562
- -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
563
- -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
564
- box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
565
- }
566
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
567
- display: none;
568
- vertical-align: top;
569
- width: 20px;
570
- height: 20px;
571
- text-align: center;
572
- text-decoration: none;
573
- line-height: 20px;
574
- border-radius: 5px;
575
- color: #000;
576
- position: absolute;
577
- font-family: Lato;
578
- top: 5px;
579
- right: 5px;
580
- text-shadow: 0 0 0px #fff;
581
- -webkit-transition: all 0.5s ease 0s;
582
- -moz-transition: all 0.5s ease 0s;
583
- transition: all 0.5s ease 0s;
584
- -webkit-transform-origin: 50% 50%;
585
- -moz-transform-origin: 50% 50%;
586
- transform-origin: 50% 50%;
587
- }
588
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
589
- opacity: 1;
590
- -webkit-transform: rotate(180deg);
591
- -moz-transform: rotate(180deg);
592
- transform: rotate(180deg);
593
- }
594
- .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
595
- display: inline-block;
596
- }
597
- @media only screen and (max-width: 1024px) {
598
- .mysticky-welcomebar-fixed {
599
- padding: 0 10px 0 10px;
600
- }
601
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
602
- width: 20px;
603
- height: 20px;
604
- line-height: 20px;
605
- right: 0px;
606
- }
607
- }
608
-
609
- /* Animated Buttons */
610
- .mysticky-welcomebar-btn a {
611
- -webkit-animation-duration: 1s;
612
- animation-duration: 1s;
613
- }
614
- @-webkit-keyframes flash {
615
- from,
616
- 50%,
617
- to {
618
- opacity: 1;
619
- }
620
-
621
- 25%,
622
- 75% {
623
- opacity: 0;
624
- }
625
- }
626
- @keyframes flash {
627
- from,
628
- 50%,
629
- to {
630
- opacity: 1;
631
- }
632
-
633
- 25%,
634
- 75% {
635
- opacity: 0;
636
- }
637
- }
638
- .mysticky-welcomebar-attention-flash.animation-start .mysticky-welcomebar-btn a {
639
- -webkit-animation-name: flash;
640
- animation-name: flash;
641
- }
642
-
643
- @keyframes shake {
644
- from,
645
- to {
646
- -webkit-transform: translate3d(0, 0, 0);
647
- transform: translate3d(0, 0, 0);
648
- }
649
-
650
- 10%,
651
- 30%,
652
- 50%,
653
- 70%,
654
- 90% {
655
- -webkit-transform: translate3d(-10px, 0, 0);
656
- transform: translate3d(-10px, 0, 0);
657
- }
658
-
659
- 20%,
660
- 40%,
661
- 60%,
662
- 80% {
663
- -webkit-transform: translate3d(10px, 0, 0);
664
- transform: translate3d(10px, 0, 0);
665
- }
666
- }
667
-
668
- .mysticky-welcomebar-attention-shake.animation-start .mysticky-welcomebar-btn a {
669
- -webkit-animation-name: shake;
670
- animation-name: shake;
671
- }
672
-
673
- @-webkit-keyframes swing {
674
- 20% {
675
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
676
- transform: rotate3d(0, 0, 1, 15deg);
677
- }
678
-
679
- 40% {
680
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
681
- transform: rotate3d(0, 0, 1, -10deg);
682
- }
683
-
684
- 60% {
685
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
686
- transform: rotate3d(0, 0, 1, 5deg);
687
- }
688
-
689
- 80% {
690
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
691
- transform: rotate3d(0, 0, 1, -5deg);
692
- }
693
-
694
- to {
695
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
696
- transform: rotate3d(0, 0, 1, 0deg);
697
- }
698
- }
699
-
700
- @keyframes swing {
701
- 20% {
702
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
703
- transform: rotate3d(0, 0, 1, 15deg);
704
- }
705
-
706
- 40% {
707
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
708
- transform: rotate3d(0, 0, 1, -10deg);
709
- }
710
-
711
- 60% {
712
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
713
- transform: rotate3d(0, 0, 1, 5deg);
714
- }
715
-
716
- 80% {
717
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
718
- transform: rotate3d(0, 0, 1, -5deg);
719
- }
720
-
721
- to {
722
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
723
- transform: rotate3d(0, 0, 1, 0deg);
724
- }
725
- }
726
-
727
- .mysticky-welcomebar-attention-swing.animation-start .mysticky-welcomebar-btn a {
728
- -webkit-transform-origin: top center;
729
- transform-origin: top center;
730
- -webkit-animation-name: swing;
731
- animation-name: swing;
732
- }
733
-
734
- @-webkit-keyframes tada {
735
- from {
736
- -webkit-transform: scale3d(1, 1, 1);
737
- transform: scale3d(1, 1, 1);
738
- }
739
-
740
- 10%,
741
- 20% {
742
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
743
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
744
- }
745
-
746
- 30%,
747
- 50%,
748
- 70%,
749
- 90% {
750
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
751
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
752
- }
753
-
754
- 40%,
755
- 60%,
756
- 80% {
757
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
758
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
759
- }
760
-
761
- to {
762
- -webkit-transform: scale3d(1, 1, 1);
763
- transform: scale3d(1, 1, 1);
764
- }
765
- }
766
-
767
- @keyframes tada {
768
- from {
769
- -webkit-transform: scale3d(1, 1, 1);
770
- transform: scale3d(1, 1, 1);
771
- }
772
-
773
- 10%,
774
- 20% {
775
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
776
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
777
- }
778
-
779
- 30%,
780
- 50%,
781
- 70%,
782
- 90% {
783
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
784
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
785
- }
786
-
787
- 40%,
788
- 60%,
789
- 80% {
790
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
791
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
792
- }
793
-
794
- to {
795
- -webkit-transform: scale3d(1, 1, 1);
796
- transform: scale3d(1, 1, 1);
797
- }
798
- }
799
-
800
- .mysticky-welcomebar-attention-tada.animation-start .mysticky-welcomebar-btn a {
801
- -webkit-animation-name: tada;
802
- animation-name: tada;
803
- }
804
-
805
- @-webkit-keyframes heartBeat {
806
- 0% {
807
- -webkit-transform: scale(1);
808
- transform: scale(1);
809
- }
810
-
811
- 14% {
812
- -webkit-transform: scale(1.3);
813
- transform: scale(1.3);
814
- }
815
-
816
- 28% {
817
- -webkit-transform: scale(1);
818
- transform: scale(1);
819
- }
820
-
821
- 42% {
822
- -webkit-transform: scale(1.3);
823
- transform: scale(1.3);
824
- }
825
-
826
- 70% {
827
- -webkit-transform: scale(1);
828
- transform: scale(1);
829
- }
830
- }
831
-
832
- @keyframes heartBeat {
833
- 0% {
834
- -webkit-transform: scale(1);
835
- transform: scale(1);
836
- }
837
-
838
- 14% {
839
- -webkit-transform: scale(1.3);
840
- transform: scale(1.3);
841
- }
842
-
843
- 28% {
844
- -webkit-transform: scale(1);
845
- transform: scale(1);
846
- }
847
-
848
- 42% {
849
- -webkit-transform: scale(1.3);
850
- transform: scale(1.3);
851
- }
852
-
853
- 70% {
854
- -webkit-transform: scale(1);
855
- transform: scale(1);
856
- }
857
- }
858
-
859
- .mysticky-welcomebar-attention-heartbeat.animation-start .mysticky-welcomebar-btn a {
860
- -webkit-animation-name: heartBeat;
861
- animation-name: heartBeat;
862
- -webkit-animation-duration: 1.3s;
863
- animation-duration: 1.3s;
864
- -webkit-animation-timing-function: ease-in-out;
865
- animation-timing-function: ease-in-out;
866
- }
867
-
868
- @-webkit-keyframes wobble {
869
- from {
870
- -webkit-transform: translate3d(0, 0, 0);
871
- transform: translate3d(0, 0, 0);
872
- }
873
-
874
- 15% {
875
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
876
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
877
- }
878
-
879
- 30% {
880
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
881
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
882
- }
883
-
884
- 45% {
885
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
886
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
887
- }
888
-
889
- 60% {
890
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
891
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
892
- }
893
-
894
- 75% {
895
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
896
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
897
- }
898
-
899
- to {
900
- -webkit-transform: translate3d(0, 0, 0);
901
- transform: translate3d(0, 0, 0);
902
- }
903
- }
904
-
905
- @keyframes wobble {
906
- from {
907
- -webkit-transform: translate3d(0, 0, 0);
908
- transform: translate3d(0, 0, 0);
909
- }
910
-
911
- 15% {
912
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
913
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
914
- }
915
-
916
- 30% {
917
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
918
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
919
- }
920
-
921
- 45% {
922
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
923
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
924
- }
925
-
926
- 60% {
927
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
928
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
929
- }
930
-
931
- 75% {
932
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
933
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
934
- }
935
-
936
- to {
937
- -webkit-transform: translate3d(0, 0, 0);
938
- transform: translate3d(0, 0, 0);
939
- }
940
- }
941
-
942
- .mysticky-welcomebar-attention-wobble.animation-start .mysticky-welcomebar-btn a {
943
- -webkit-animation-name: wobble;
944
- animation-name: wobble;
945
- }
946
- </style>
947
-
948
- <?php
949
- }
950
-
951
- function mysticky_welcomebar_pro_widget_default_fields() {
952
- return array(
953
- 'mysticky_welcomebar_position' => 'top',
954
- 'mysticky_welcomebar_height' => '60',
955
- 'mysticky_welcomebar_bgcolor' => '#03ed96',
956
- 'mysticky_welcomebar_bgtxtcolor' => '#000000',
957
- 'mysticky_welcomebar_font' => 'Poppins',
958
- 'mysticky_welcomebar_fontsize' => '16',
959
- 'mysticky_welcomebar_bar_text' => 'Get 30% off your first purchase',
960
- 'mysticky_welcomebar_x_desktop' => 'desktop',
961
- 'mysticky_welcomebar_x_mobile' => 'mobile',
962
- 'mysticky_welcomebar_btn_desktop' => 'desktop',
963
- 'mysticky_welcomebar_btn_mobile' => 'mobile',
964
- 'mysticky_welcomebar_btncolor' => '#000000',
965
- 'mysticky_welcomebar_btntxtcolor' => '#ffffff',
966
- 'mysticky_welcomebar_btn_text' => 'Got it!',
967
- 'mysticky_welcomebar_actionselect' => 'close_bar',
968
- 'mysticky_welcomebar_aftersubmission' => 'dont_show_welcomebar',
969
- 'mysticky_welcomebar_redirect' => 'https://www.yourdomain.com',
970
- 'mysticky_welcomebar_redirect_newtab' => '',
971
- 'mysticky_welcomebar_redirect_rel' => '',
972
- 'mysticky_welcomebar_device_desktop' => 'desktop',
973
- 'mysticky_welcomebar_device_mobile' => 'mobile',
974
- 'mysticky_welcomebar_entry_effect' => 'slide-in',
975
- 'mysticky_welcomebar_trigger' => 'after_a_few_seconds',
976
- 'mysticky_welcomebar_triggersec' => '0',
977
- 'mysticky_welcomebar_expirydate' => '',
978
- 'mysticky_welcomebar_page_settings' => '',
979
- );
980
- }
981
-
982
- function mysticky_welcome_bar_frontend(){
983
- $welcomebar = get_option( 'mysticky_option_welcomebar' );
984
-
985
- if ( ( isset($welcomebar['mysticky_welcomebar_expirydate']) && $welcomebar['mysticky_welcomebar_expirydate'] !='' && strtotime( date('m/d/Y')) > strtotime($welcomebar['mysticky_welcomebar_expirydate']) ) || !isset($welcomebar['mysticky_welcomebar_enable'] ) ) {
986
- return;
987
- }
988
- $mysticky_welcomebar_showx_desktop = $mysticky_welcomebar_showx_mobile = '';
989
- $mysticky_welcomebar_btn_desktop = $mysticky_welcomebar_btn_mobile = '';
990
- $mysticky_welcomebar_display_desktop = $mysticky_welcomebar_display_mobile = '';
991
- if( isset($welcomebar['mysticky_welcomebar_x_desktop']) ) {
992
- $mysticky_welcomebar_showx_desktop = ' mysticky-welcomebar-showx-desktop';
993
- }
994
- if( isset($welcomebar['mysticky_welcomebar_x_mobile']) ) {
995
- $mysticky_welcomebar_showx_mobile = ' mysticky-welcomebar-showx-mobile';
996
- }
997
- if( isset($welcomebar['mysticky_welcomebar_btn_desktop']) ) {
998
- $mysticky_welcomebar_btn_desktop = ' mysticky-welcomebar-btn-desktop';
999
- }
1000
- if( isset($welcomebar['mysticky_welcomebar_btn_mobile']) ) {
1001
- $mysticky_welcomebar_btn_mobile = ' mysticky-welcomebar-btn-mobile';
1002
- }
1003
- $display = ' mysticky-welcomebar-attention-'.$welcomebar['mysticky_welcomebar_attentionselect'];
1004
- $display_entry_effect = (isset($welcomebar['mysticky_welcomebar_entry_effect'])) ? ' mysticky-welcomebar-entry-effect-'.$welcomebar['mysticky_welcomebar_entry_effect'] : ' mysticky-welcomebar-entry-effect-slide-in';
1005
- $mysticky_welcomebar_display_desktop = ' mysticky-welcomebar-display-desktop';
1006
- $mysticky_welcomebar_display_mobile = ' mysticky-welcomebar-display-mobile';
1007
-
1008
- $display_main_class = "mysticky-welcomebar-position-" . $welcomebar['mysticky_welcomebar_position'] . $mysticky_welcomebar_showx_desktop . $mysticky_welcomebar_showx_mobile . $mysticky_welcomebar_btn_desktop . $mysticky_welcomebar_btn_mobile . $mysticky_welcomebar_display_desktop . $mysticky_welcomebar_display_mobile .$display . $display_entry_effect;
1009
-
1010
- if( isset($welcomebar['mysticky_welcomebar_actionselect']) ) {
1011
-
1012
- if( $welcomebar['mysticky_welcomebar_actionselect'] == 'redirect_to_url' ) {
1013
- $mysticky_welcomebar_actionselect_url = esc_url( $welcomebar['mysticky_welcomebar_redirect'] );
1014
- } else if( $welcomebar['mysticky_welcomebar_actionselect'] == 'poptin_popup'){
1015
- $mysticky_welcomebar_actionselect_url = esc_url( $welcomebar['mysticky_welcomebar_poptin_popup_link'] );
1016
- } else {
1017
- $mysticky_welcomebar_actionselect_url = 'javascript:void(0)';
1018
- }
1019
- }
1020
-
1021
- ?>
1022
- <div class="mysticky-welcomebar-fixed <?php echo $display_main_class; ?>" style="<?php //echo $welcomebar_enable_block; ?>" data-after-triger="after_a_few_seconds" data-triger-sec="0" data-position="<?php echo esc_attr($welcomebar['mysticky_welcomebar_position']);?>" data-height="<?php echo esc_attr($welcomebar['mysticky_welcomebar_height']);?>" data-rediect="<?php echo esc_attr($welcomebar['mysticky_welcomebar_actionselect']);?>" data-aftersubmission="<?php echo esc_attr($welcomebar['mysticky_welcomebar_aftersubmission']);?>">
1023
- <div class="mysticky-welcomebar-fixed-wrap">
1024
- <div class="mysticky-welcomebar-content">
1025
- <?php echo wpautop( isset($welcomebar['mysticky_welcomebar_bar_text'])? stripslashes($welcomebar['mysticky_welcomebar_bar_text']) :"Get 30% off your first purchase" );?>
1026
- </div>
1027
- <div class="mysticky-welcomebar-btn">
1028
- <a href="<?php echo $mysticky_welcomebar_actionselect_url; ?>" <?php if( isset($welcomebar['mysticky_welcomebar_redirect_newtab']) && $welcomebar['mysticky_welcomebar_actionselect'] == 'redirect_to_url' && $welcomebar['mysticky_welcomebar_redirect_newtab']== 1):?> target="_blank" <?php endif;?>><?php echo isset($welcomebar['mysticky_welcomebar_btn_text'])? stripslashes($welcomebar['mysticky_welcomebar_btn_text']) :"Got it!";?></a>
1029
- </div>
1030
- <a href="javascript:void(0)" class="mysticky-welcomebar-close">X</a>
1031
- </div>
1032
- </div>
1033
- <script>
1034
-
1035
- jQuery(document).ready(function($){
1036
- var adminBarHeight = 0;
1037
- if ( $("#wpadminbar").length != 0 ){
1038
- var adminBarHeight = $('#wpadminbar').height();
1039
- }
1040
- var mysticky_welcomebar_height = adminBarHeight + jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1041
- if( jQuery( '.mysticky-welcomebar-fixed' ).data('position') == 'top' ) {
1042
- jQuery( '.mysticky-welcomebar-entry-effect-slide-in.mysticky-welcomebar-fixed' ).css( 'top', '-' + mysticky_welcomebar_height + 'px' );
1043
- } else {
1044
- jQuery( '.mysticky-welcomebar-entry-effect-slide-in.mysticky-welcomebar-fixed' ).css( 'bottom', '-' + mysticky_welcomebar_height + 'px' );
1045
- }
1046
- var divi_topbar_height = $( '.et_fixed_nav #top-header' ).outerHeight();
1047
- var divi_total_height = mysticky_welcomebar_height + divi_topbar_height;
1048
- var welcombar_aftersubmission = $( '.mysticky-welcomebar-fixed' ).data('aftersubmission');
1049
- if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1050
- var welcomebar_storage = localStorage.getItem("welcomebar_close");
1051
- } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1052
- var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1053
- } else {
1054
- sessionStorage.removeItem('welcomebar_close');
1055
- localStorage.removeItem('welcomebar_close');
1056
- var welcomebar_storage = null;
1057
- }
1058
- if ( welcomebar_storage === null ){
1059
-
1060
- var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1061
-
1062
- jQuery( 'body' ).addClass( 'mysticky-welcomebar-apper' );
1063
-
1064
- if ( after_trigger == 'after_a_few_seconds' ) {
1065
-
1066
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1067
- if ( $( window ).width() > 767 ) {
1068
- var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1069
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1070
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1071
-
1072
- setTimeout(function(){
1073
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1074
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1075
- if ( welcombar_position == 'top' ) {
1076
-
1077
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1078
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', (adminBarHeight + 0) + 'px' );
1079
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1080
- $( 'html' ).css( 'margin-bottom', '' );
1081
- jQuery( '#mysticky_divi_style' ).remove();
1082
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', welcombar_height + 'px' );
1083
- jQuery( 'head' ).append( '<style id="mysticky_divi_style" type="text/css">.et_fixed_nav #main-header {top: ' + welcombar_height + 'px !important}.et_fixed_nav #top-header + #main-header{top: ' + divi_total_height + 'px !important}</style>' );
1084
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1085
- $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1086
- } else {
1087
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1088
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1089
- $( 'html' ).css( 'margin-top', '' );
1090
- jQuery( '#mysticky_divi_style' ).remove();
1091
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1092
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1093
- }
1094
- }, trigger_sec );
1095
- }
1096
- }
1097
- }
1098
- if ( $( window ).width() < 767 ) {
1099
- if ( after_trigger == 'after_a_few_seconds' ) {
1100
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1101
- var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1102
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1103
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1104
- setTimeout(function(){
1105
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1106
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1107
- jQuery( '#mysticky_divi_style' ).remove();
1108
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1109
- if ( welcombar_position == 'top' ) {
1110
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1111
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1112
- $( 'html' ).css( 'margin-bottom', '' );
1113
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1114
- $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1115
- } else {
1116
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1117
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1118
- $( 'html' ).css( 'margin-top', '' );
1119
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1120
- }
1121
- }, trigger_sec );
1122
- }
1123
- }
1124
- }
1125
- mystickyelements_present();
1126
- }
1127
- $( window ).resize( function(){
1128
- var mysticky_welcomebar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1129
- if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1130
- var welcomebar_storage = localStorage.getItem("welcomebar_close");
1131
- } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1132
- var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1133
- } else {
1134
- sessionStorage.removeItem('welcomebar_close');
1135
- localStorage.removeItem('welcomebar_close');
1136
- var welcomebar_storage = null;
1137
- }
1138
- if ( welcomebar_storage === null ){
1139
- var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1140
- if ( ! $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-notapper' ) ) {
1141
- jQuery( 'body' ).addClass( 'mysticky-welcomebar-apper' );
1142
- } else {
1143
- jQuery( 'body' ).removeClass( 'mysticky-welcomebar-apper' );
1144
- }
1145
- if ( after_trigger == 'after_a_few_seconds' ) {
1146
- var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1147
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1148
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1149
- if ( $( window ).width() < 767 ) {
1150
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1151
- setTimeout(function(){
1152
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1153
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1154
- jQuery( '#mysticky_divi_style' ).remove();
1155
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1156
- if ( welcombar_position == 'top' ) {
1157
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1158
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1159
- $( 'html' ).css( 'margin-bottom', '' );
1160
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1161
- $( '.mysticky-welcomebar-apper #mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1162
- } else {
1163
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1164
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1165
- $( 'html' ).css( 'margin-top', '' );
1166
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1167
- }
1168
- }, trigger_sec );
1169
- }
1170
- } else {
1171
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1172
- setTimeout(function(){
1173
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1174
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1175
- if ( welcombar_position == 'top' ) {
1176
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1177
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1178
- $( 'html' ).css( 'margin-bottom', '' );
1179
- jQuery( '#mysticky_divi_style' ).remove();
1180
- jQuery( '.mysticky-welcomebar-apper.et_fixed_nav #top-header' ).css( 'top', welcombar_height + 'px' );
1181
- jQuery( 'head' ).append( '<style id="mysticky_divi_style" type="text/css">.mysticky-welcomebar-apper.et_fixed_nav #main-header {top: ' + welcombar_height + 'px !important}.mysticky-welcomebar-apper.et_fixed_nav #top-header + #main-header{top: ' + divi_total_height + 'px !important}</style>' );
1182
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1183
- $( '.mysticky-welcomebar-apper #mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1184
- } else {
1185
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1186
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1187
- $( 'html' ).css( 'margin-top', '' );
1188
- jQuery( '#mysticky_divi_style' ).remove();
1189
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1190
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1191
- }
1192
- }, trigger_sec );
1193
- }
1194
- }
1195
- }
1196
- mystickyelements_present();
1197
- }
1198
- } );
1199
-
1200
- jQuery(window).on( 'scroll', function(){
1201
- if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1202
- var welcomebar_storage = localStorage.getItem("welcomebar_close");
1203
- } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1204
- var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1205
- } else {
1206
- sessionStorage.removeItem('welcomebar_close');
1207
- localStorage.removeItem('welcomebar_close');
1208
- var welcomebar_storage = null;
1209
- }
1210
- if ( welcomebar_storage === null ){
1211
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1212
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1213
- if ( welcombar_position == 'top' ) {
1214
- $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1215
- }
1216
- if ( after_trigger === 'after_scroll' ) {
1217
- var scroll = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
1218
- var after_scroll_val = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec');
1219
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1220
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1221
- if( scroll > after_scroll_val ) {
1222
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1223
- if ( $( window ).width() > 767 ) {
1224
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1225
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1226
- if ( welcombar_position == 'top' ) {
1227
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', (adminBarHeight+ 0 ) + 'px' );
1228
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1229
- $( 'html' ).css( 'margin-bottom', '' );
1230
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1231
- $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1232
- } else {
1233
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1234
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1235
- $( 'html' ).css( 'margin-top', '' );
1236
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1237
- }
1238
- }
1239
- }
1240
- if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1241
- if ( $( window ).width() < 767 ) {
1242
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1243
- $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1244
- if ( welcombar_position == 'top' ) {
1245
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight +0 ) + 'px' );
1246
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1247
- $( 'html' ).css( 'margin-bottom', '' );
1248
- $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1249
- $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1250
- } else {
1251
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1252
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1253
- $( 'html' ).css( 'margin-top', '' );
1254
- $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1255
- }
1256
- }
1257
- }
1258
- }
1259
- }
1260
- mystickyelements_present();
1261
- }
1262
-
1263
- });
1264
-
1265
- jQuery( '.mysticky-welcomebar-close, .mysticky-welcomebar-btn a' ).on( 'click', function(){
1266
- if( welcombar_aftersubmission != 'show_welcomebar_every_page' ){
1267
- if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1268
- sessionStorage.removeItem('welcomebar_close');
1269
- localStorage.setItem('welcomebar_close', 'close');
1270
- } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1271
- localStorage.removeItem('welcomebar_close');
1272
- sessionStorage.setItem('welcomebar_close', 'close');
1273
- }
1274
- }
1275
- var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1276
- var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1277
- jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-notapper' );
1278
- jQuery( 'body' ).removeClass( 'mysticky-welcomebar-apper' );
1279
- jQuery( '.mysticky-welcomebar-fixed' ).slideUp( 'slow' );
1280
- if ( welcombar_position == 'top' ) {
1281
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', '-' + mysticky_welcomebar_height + 'px' );
1282
- } else {
1283
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '-' + mysticky_welcomebar_height + 'px' );
1284
- }
1285
- jQuery( '#mysticky_divi_style' ).remove();
1286
- jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1287
- jQuery( 'html' ).css( 'margin-top', '' );
1288
- jQuery( 'html' ).css( 'margin-bottom', '' );
1289
- $( '#mysticky-nav' ).css( 'top', '0px' );
1290
- /*if mystickyelements show*/
1291
- var mystickyelements_show = $( '.mystickyelements-fixed' ).length;
1292
- if( mystickyelements_show && $( window ).width() <= 1024 && $( '.mystickyelements-fixed' ).hasClass( 'mystickyelements-position-mobile-top' ) && welcombar_position == 'top' ) {
1293
- var mystickyelements_height = $( '.mystickyelements-fixed' ).height();
1294
- $( '.mystickyelements-fixed' ).css( 'top', '' );
1295
- $( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_height + 'px !important' );
1296
- }
1297
- } );
1298
- });
1299
- function mystickyelements_present() {
1300
- var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1301
- var mystickyelements_show = jQuery( '.mystickyelements-fixed' ).length;
1302
- var welcombar_position = jQuery( '.mysticky-welcomebar-fixed' ).data('position');
1303
- var adminBarHeight = 0;
1304
- if ( jQuery("#wpadminbar").length != 0 ){
1305
- var adminBarHeight = jQuery('#wpadminbar').height();
1306
- }
1307
-
1308
- if ( jQuery( window ).width() <= 600 && jQuery(window).scrollTop() != 0 && welcombar_position == 'top') {
1309
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', '0px' );
1310
- var welcombar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1311
- jQuery( '#mysticky-nav' ).css( 'top', welcombar_height + 'px' );
1312
- } else if ( welcombar_position == 'top' ) {
1313
- var mysticky_welcomebar_height = adminBarHeight + jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1314
- jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1315
- jQuery( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1316
- }
1317
- if( mystickyelements_show ) {
1318
-
1319
- var welcombar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1320
- var mystickyelements_height = jQuery( '.mystickyelements-fixed' ).height();
1321
- var mystickyelements_total_height = welcombar_height + mystickyelements_height;
1322
- if ( jQuery( window ).width() <= 1024 && jQuery( '.mystickyelements-fixed' ).hasClass( 'mystickyelements-position-mobile-top' ) ) {
1323
- if ( after_trigger == 'after_a_few_seconds' ) {
1324
- if ( jQuery( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1325
- var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1326
- setTimeout(function(){
1327
- if ( welcombar_position == 'top' ) {
1328
- jQuery( '.mystickyelements-fixed' ).css( 'top', welcombar_height );
1329
- jQuery( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_total_height + 'px !important' );
1330
- } else {
1331
- jQuery( '.mystickyelements-fixed' ).css( 'top', '' );
1332
- jQuery( 'html' ).attr( 'style', 'margin-bottom: ' + welcombar_height + 'px !important' );
1333
- }
1334
- }, trigger_sec );
1335
- }
1336
- } else if ( after_trigger === 'after_scroll' ) {
1337
- var scroll = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
1338
- var after_scroll_val = $( '.mysticky-welcomebar-fixed' ).data('triger-sec');
1339
- if( scroll > after_scroll_val ) {
1340
- if ( jQuery( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1341
- if ( welcombar_position == 'top' ) {
1342
- jQuery( '.mystickyelements-fixed' ).css( 'top', welcombar_height );
1343
- jQuery( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_total_height + 'px !important' );
1344
- } else {
1345
- jQuery( '.mystickyelements-fixed' ).css( 'top', '' );
1346
- jQuery( 'html' ).attr( 'style', 'margin-bottom: ' + welcombar_height + 'px !important' );
1347
- }
1348
- }
1349
- }
1350
- }
1351
- }
1352
- }
1353
- }
1354
- jQuery(".mysticky-welcomebar-fixed").on(
1355
- "animationend MSAnimationEnd webkitAnimationEnd oAnimationEnd",
1356
- function() {
1357
- jQuery(this).removeClass("animation-start");
1358
- }
1359
- );
1360
- jQuery(document).ready(function() {
1361
- var container = jQuery(".mysticky-welcomebar-fixed");
1362
- var refreshId = setInterval(function() {
1363
- container.addClass("animation-start");
1364
- }, 3500);
1365
- });
1366
-
1367
- </script>
1368
- <style>
1369
- .mysticky-welcomebar-fixed , .mysticky-welcomebar-fixed * {
1370
- -webkit-box-sizing: border-box;
1371
- -moz-box-sizing: border-box;
1372
- box-sizing: border-box;
1373
- }
1374
- .mysticky-welcomebar-fixed {
1375
- background-color: <?php echo $welcomebar['mysticky_welcomebar_bgcolor'] ?>;
1376
- font-family: <?php echo $welcomebar['mysticky_welcomebar_font'] ?>;
1377
- position: fixed;
1378
- left: 0;
1379
- right: 0;
1380
- z-index: 9999999;
1381
- opacity: 0;
1382
- }
1383
- .mysticky-welcomebar-fixed-wrap {
1384
- min-height: 60px;
1385
- padding: 20px 50px;
1386
- display: flex;
1387
- align-items: center;
1388
- justify-content: center;
1389
- width: 100%;
1390
- height: 100%;
1391
- }
1392
- .mysticky-welcomebar-animation {
1393
- -webkit-transition: all 1s ease 0s;
1394
- -moz-transition: all 1s ease 0s;
1395
- transition: all 1s ease 0s;
1396
- }
1397
- .mysticky-welcomebar-position-top {
1398
- top:0;
1399
- }
1400
- .mysticky-welcomebar-position-bottom {
1401
- bottom:0;
1402
- }
1403
- .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in {
1404
- top: -60px;
1405
- }
1406
- .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in {
1407
- bottom: -60px;
1408
- }
1409
- .mysticky-welcomebar-entry-effect-fade {
1410
- opacity: 0;
1411
- }
1412
- .mysticky-welcomebar-entry-effect-none {
1413
- display: none;
1414
- }
1415
- .mysticky-welcomebar-fixed .mysticky-welcomebar-content p a,
1416
- .mysticky-welcomebar-fixed .mysticky-welcomebar-content p {
1417
- color: <?php echo $welcomebar['mysticky_welcomebar_bgtxtcolor'] ?>;
1418
- font-size: <?php echo $welcomebar['mysticky_welcomebar_fontsize'] ?>px;
1419
- margin: 0;
1420
- padding: 0;
1421
- line-height: 1.2;
1422
- font-family: inherit;
1423
- font-weight: 400;
1424
- }
1425
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
1426
- padding-left: 30px;
1427
- display: none;
1428
- line-height: 1;
1429
- }
1430
- .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
1431
- display: block;
1432
- }
1433
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a {
1434
- background-color: <?php echo $welcomebar['mysticky_welcomebar_btncolor'] ?>;
1435
- font-family: inherit;
1436
- color: <?php echo $welcomebar['mysticky_welcomebar_btntxtcolor'] ?>;
1437
- border-radius: 4px;
1438
- text-decoration: none;
1439
- display: inline-block;
1440
- vertical-align: top;
1441
- line-height: 1.2;
1442
- font-size: <?php echo $welcomebar['mysticky_welcomebar_fontsize'] ?>px;
1443
- font-weight: 400;
1444
- padding: 5px 20px;
1445
- white-space: nowrap;
1446
- }
1447
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a:hover {
1448
- /*opacity: 0.7;*/
1449
- -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
1450
- -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
1451
- box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
1452
- }
1453
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
1454
- display: none;
1455
- vertical-align: top;
1456
- width: 30px;
1457
- height: 30px;
1458
- text-align: center;
1459
- line-height: 30px;
1460
- border-radius: 5px;
1461
- color: #000;
1462
- position: absolute;
1463
- top: 5px;
1464
- right: 10px;
1465
- outline: none;
1466
- font-family: Lato;
1467
- text-decoration: none;
1468
- text-shadow: 0 0 0px #fff;
1469
- -webkit-transition: all 0.5s ease 0s;
1470
- -moz-transition: all 0.5s ease 0s;
1471
- transition: all 0.5s ease 0s;
1472
- -webkit-transform-origin: 50% 50%;
1473
- -moz-transform-origin: 50% 50%;
1474
- transform-origin: 50% 50%;
1475
- }
1476
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
1477
- opacity: 1;
1478
- -webkit-transform: rotate(180deg);
1479
- -moz-transform: rotate(180deg);
1480
- transform: rotate(180deg);
1481
- }
1482
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close span.dashicons {
1483
- font-size: 27px;
1484
- }
1485
- .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
1486
- display: inline-block;
1487
- }
1488
-
1489
- /* Animated Buttons */
1490
- .mysticky-welcomebar-btn a {
1491
- -webkit-animation-duration: 1s;
1492
- animation-duration: 1s;
1493
- }
1494
- @-webkit-keyframes flash {
1495
- from,
1496
- 50%,
1497
- to {
1498
- opacity: 1;
1499
- }
1500
-
1501
- 25%,
1502
- 75% {
1503
- opacity: 0;
1504
- }
1505
- }
1506
- @keyframes flash {
1507
- from,
1508
- 50%,
1509
- to {
1510
- opacity: 1;
1511
- }
1512
-
1513
- 25%,
1514
- 75% {
1515
- opacity: 0;
1516
- }
1517
- }
1518
- .mysticky-welcomebar-attention-flash.animation-start .mysticky-welcomebar-btn a {
1519
- -webkit-animation-name: flash;
1520
- animation-name: flash;
1521
- }
1522
-
1523
- @keyframes shake {
1524
- from,
1525
- to {
1526
- -webkit-transform: translate3d(0, 0, 0);
1527
- transform: translate3d(0, 0, 0);
1528
- }
1529
-
1530
- 10%,
1531
- 30%,
1532
- 50%,
1533
- 70%,
1534
- 90% {
1535
- -webkit-transform: translate3d(-10px, 0, 0);
1536
- transform: translate3d(-10px, 0, 0);
1537
- }
1538
-
1539
- 20%,
1540
- 40%,
1541
- 60%,
1542
- 80% {
1543
- -webkit-transform: translate3d(10px, 0, 0);
1544
- transform: translate3d(10px, 0, 0);
1545
- }
1546
- }
1547
-
1548
- .mysticky-welcomebar-attention-shake.animation-start .mysticky-welcomebar-btn a {
1549
- -webkit-animation-name: shake;
1550
- animation-name: shake;
1551
- }
1552
-
1553
- @-webkit-keyframes swing {
1554
- 20% {
1555
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
1556
- transform: rotate3d(0, 0, 1, 15deg);
1557
- }
1558
-
1559
- 40% {
1560
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
1561
- transform: rotate3d(0, 0, 1, -10deg);
1562
- }
1563
-
1564
- 60% {
1565
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
1566
- transform: rotate3d(0, 0, 1, 5deg);
1567
- }
1568
-
1569
- 80% {
1570
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
1571
- transform: rotate3d(0, 0, 1, -5deg);
1572
- }
1573
-
1574
- to {
1575
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
1576
- transform: rotate3d(0, 0, 1, 0deg);
1577
- }
1578
- }
1579
-
1580
- @keyframes swing {
1581
- 20% {
1582
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
1583
- transform: rotate3d(0, 0, 1, 15deg);
1584
- }
1585
-
1586
- 40% {
1587
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
1588
- transform: rotate3d(0, 0, 1, -10deg);
1589
- }
1590
-
1591
- 60% {
1592
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
1593
- transform: rotate3d(0, 0, 1, 5deg);
1594
- }
1595
-
1596
- 80% {
1597
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
1598
- transform: rotate3d(0, 0, 1, -5deg);
1599
- }
1600
-
1601
- to {
1602
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
1603
- transform: rotate3d(0, 0, 1, 0deg);
1604
- }
1605
- }
1606
-
1607
- .mysticky-welcomebar-attention-swing.animation-start .mysticky-welcomebar-btn a {
1608
- -webkit-transform-origin: top center;
1609
- transform-origin: top center;
1610
- -webkit-animation-name: swing;
1611
- animation-name: swing;
1612
- }
1613
-
1614
- @-webkit-keyframes tada {
1615
- from {
1616
- -webkit-transform: scale3d(1, 1, 1);
1617
- transform: scale3d(1, 1, 1);
1618
- }
1619
-
1620
- 10%,
1621
- 20% {
1622
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1623
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1624
- }
1625
-
1626
- 30%,
1627
- 50%,
1628
- 70%,
1629
- 90% {
1630
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1631
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1632
- }
1633
-
1634
- 40%,
1635
- 60%,
1636
- 80% {
1637
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1638
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1639
- }
1640
-
1641
- to {
1642
- -webkit-transform: scale3d(1, 1, 1);
1643
- transform: scale3d(1, 1, 1);
1644
- }
1645
- }
1646
-
1647
- @keyframes tada {
1648
- from {
1649
- -webkit-transform: scale3d(1, 1, 1);
1650
- transform: scale3d(1, 1, 1);
1651
- }
1652
-
1653
- 10%,
1654
- 20% {
1655
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1656
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1657
- }
1658
-
1659
- 30%,
1660
- 50%,
1661
- 70%,
1662
- 90% {
1663
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1664
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1665
- }
1666
-
1667
- 40%,
1668
- 60%,
1669
- 80% {
1670
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1671
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1672
- }
1673
-
1674
- to {
1675
- -webkit-transform: scale3d(1, 1, 1);
1676
- transform: scale3d(1, 1, 1);
1677
- }
1678
- }
1679
-
1680
- .mysticky-welcomebar-attention-tada.animation-start .mysticky-welcomebar-btn a {
1681
- -webkit-animation-name: tada;
1682
- animation-name: tada;
1683
- }
1684
-
1685
- @-webkit-keyframes heartBeat {
1686
- 0% {
1687
- -webkit-transform: scale(1);
1688
- transform: scale(1);
1689
- }
1690
-
1691
- 14% {
1692
- -webkit-transform: scale(1.3);
1693
- transform: scale(1.3);
1694
- }
1695
-
1696
- 28% {
1697
- -webkit-transform: scale(1);
1698
- transform: scale(1);
1699
- }
1700
-
1701
- 42% {
1702
- -webkit-transform: scale(1.3);
1703
- transform: scale(1.3);
1704
- }
1705
-
1706
- 70% {
1707
- -webkit-transform: scale(1);
1708
- transform: scale(1);
1709
- }
1710
- }
1711
-
1712
- @keyframes heartBeat {
1713
- 0% {
1714
- -webkit-transform: scale(1);
1715
- transform: scale(1);
1716
- }
1717
-
1718
- 14% {
1719
- -webkit-transform: scale(1.3);
1720
- transform: scale(1.3);
1721
- }
1722
-
1723
- 28% {
1724
- -webkit-transform: scale(1);
1725
- transform: scale(1);
1726
- }
1727
-
1728
- 42% {
1729
- -webkit-transform: scale(1.3);
1730
- transform: scale(1.3);
1731
- }
1732
-
1733
- 70% {
1734
- -webkit-transform: scale(1);
1735
- transform: scale(1);
1736
- }
1737
- }
1738
-
1739
- .mysticky-welcomebar-attention-heartbeat.animation-start .mysticky-welcomebar-btn a {
1740
- -webkit-animation-name: heartBeat;
1741
- animation-name: heartBeat;
1742
- -webkit-animation-duration: 1.3s;
1743
- animation-duration: 1.3s;
1744
- -webkit-animation-timing-function: ease-in-out;
1745
- animation-timing-function: ease-in-out;
1746
- }
1747
-
1748
- @-webkit-keyframes wobble {
1749
- from {
1750
- -webkit-transform: translate3d(0, 0, 0);
1751
- transform: translate3d(0, 0, 0);
1752
- }
1753
-
1754
- 15% {
1755
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1756
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1757
- }
1758
-
1759
- 30% {
1760
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1761
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1762
- }
1763
-
1764
- 45% {
1765
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1766
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1767
- }
1768
-
1769
- 60% {
1770
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1771
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1772
- }
1773
-
1774
- 75% {
1775
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1776
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1777
- }
1778
-
1779
- to {
1780
- -webkit-transform: translate3d(0, 0, 0);
1781
- transform: translate3d(0, 0, 0);
1782
- }
1783
- }
1784
-
1785
- @keyframes wobble {
1786
- from {
1787
- -webkit-transform: translate3d(0, 0, 0);
1788
- transform: translate3d(0, 0, 0);
1789
- }
1790
-
1791
- 15% {
1792
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1793
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1794
- }
1795
-
1796
- 30% {
1797
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1798
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1799
- }
1800
-
1801
- 45% {
1802
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1803
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1804
- }
1805
-
1806
- 60% {
1807
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1808
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1809
- }
1810
-
1811
- 75% {
1812
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1813
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1814
- }
1815
-
1816
- to {
1817
- -webkit-transform: translate3d(0, 0, 0);
1818
- transform: translate3d(0, 0, 0);
1819
- }
1820
- }
1821
-
1822
- .mysticky-welcomebar-attention-wobble.animation-start .mysticky-welcomebar-btn a {
1823
- -webkit-animation-name: wobble;
1824
- animation-name: wobble;
1825
- }
1826
- @media only screen and (min-width: 768px) {
1827
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-fade.entry-effect {
1828
- opacity: 1;
1829
- }
1830
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-none.entry-effect {
1831
- display: block;
1832
- }
1833
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-fixed ,
1834
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1835
- top: 0;
1836
- }
1837
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-fixed ,
1838
- .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1839
- bottom: 0;
1840
- }
1841
- }
1842
- @media only screen and (max-width: 767px) {
1843
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-entry-effect-fade.entry-effect {
1844
- opacity: 1;
1845
- }
1846
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-entry-effect-none.entry-effect {
1847
- display: block;
1848
- }
1849
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-top.mysticky-welcomebar-fixed ,
1850
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1851
- top: 0;
1852
- }
1853
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-bottom.mysticky-welcomebar-fixed ,
1854
- .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1855
- bottom: 0;
1856
- }
1857
- .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
1858
- display: none;
1859
- }
1860
- .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-mobile .mysticky-welcomebar-close {
1861
- display: inline-block;
1862
- }
1863
- .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
1864
- display: none;
1865
- }
1866
- .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-mobile .mysticky-welcomebar-btn {
1867
- display: block;
1868
- }
1869
- }
1870
- @media only screen and (max-width: 480px) {
1871
- .mysticky-welcomebar-fixed-wrap {
1872
- padding: 15px 36px 35px 10px;
1873
- }
1874
- .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
1875
- padding-left: 10px;
1876
- }
1877
- .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
1878
- right: 7px;
1879
- }
1880
- }
1881
- body.mysticky-welcomebar-apper #wpadminbar{
1882
- z-index:99999999;
1883
- }
1884
- </style>
1885
- <?php
1886
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1887
  add_action( 'wp_footer', 'mysticky_welcome_bar_frontend' );
1
+ <?php
2
+
3
+ function mysticky_welcome_bar_backend() {
4
+ $upgarde_url = admin_url("admin.php?page=my-stickymenu-upgrade");
5
+ $nonce = wp_create_nonce('mysticky_option_welcomebar_update');
6
+ $nonce_reset = wp_create_nonce('mysticky_option_welcomebar_reset');
7
+
8
+ $welcomebar = get_option( 'mysticky_option_welcomebar' );
9
+
10
+ if ( $welcomebar == '' || empty($welcomebar)) {
11
+ $welcomebar = mysticky_welcomebar_pro_widget_default_fields();
12
+ $welcomebar['mysticky_welcomebar_enable'] = '1';
13
+ }
14
+
15
+ $welcomebar['mysticky_welcomebar_bgcolor'] = ( isset($welcomebar['mysticky_welcomebar_bgcolor']) && $welcomebar['mysticky_welcomebar_bgcolor'] != '' ) ? $welcomebar['mysticky_welcomebar_bgcolor'] : '#03ed96';
16
+
17
+ $welcomebar['mysticky_welcomebar_bgtxtcolor'] = ( isset($welcomebar['mysticky_welcomebar_bgtxtcolor']) && $welcomebar['mysticky_welcomebar_bgtxtcolor'] != '' ) ? $welcomebar['mysticky_welcomebar_bgtxtcolor'] : '#000000';
18
+
19
+ $welcomebar['mysticky_welcomebar_bar_text'] = (isset($welcomebar['mysticky_welcomebar_bar_text']) && $welcomebar['mysticky_welcomebar_bar_text'] != '' ) ? $welcomebar['mysticky_welcomebar_bar_text'] : '#000000';
20
+
21
+ $welcomebar['mysticky_welcomebar_btntxtcolor'] = (isset($welcomebar['mysticky_welcomebar_btntxtcolor']) && $welcomebar['mysticky_welcomebar_btntxtcolor'] != '' ) ? $welcomebar['mysticky_welcomebar_btntxtcolor'] : '#ffffff';
22
+
23
+
24
+
25
+ $welcomebar['mysticky_welcomebar_btncolor'] = (isset($welcomebar['mysticky_welcomebar_btncolor']) && $welcomebar['mysticky_welcomebar_btncolor'] != '' ) ? $welcomebar['mysticky_welcomebar_btncolor'] : '';
26
+
27
+ $mysticky_welcomebar_showx_desktop = $mysticky_welcomebar_showx_mobile = '';
28
+ $mysticky_welcomebar_btn_desktop = $mysticky_welcomebar_btn_mobile = '';
29
+ $mysticky_welcomebar_display_desktop = $mysticky_welcomebar_display_mobile = '';
30
+ if( isset($welcomebar['mysticky_welcomebar_x_desktop']) ) {
31
+ $mysticky_welcomebar_showx_desktop = ' mysticky-welcomebar-showx-desktop';
32
+ }
33
+ if( isset($welcomebar['mysticky_welcomebar_x_mobile']) ) {
34
+ $mysticky_welcomebar_showx_mobile = ' mysticky-welcomebar-showx-mobile';
35
+ }
36
+ if( isset($welcomebar['mysticky_welcomebar_btn_desktop']) ) {
37
+ $mysticky_welcomebar_btn_desktop = ' mysticky-welcomebar-btn-desktop';
38
+ }
39
+ if( isset($welcomebar['mysticky_welcomebar_btn_mobile']) ) {
40
+ $mysticky_welcomebar_btn_mobile = ' mysticky-welcomebar-btn-mobile';
41
+ }
42
+
43
+ if( !isset($welcomebar['mysticky_welcomebar_redirect_rel']) ) {
44
+ $welcomebar['mysticky_welcomebar_redirect_rel'] = '';
45
+ }
46
+ $display = ' mysticky-welcomebar-attention-'. ( isset($welcomebar['mysticky_welcomebar_attentionselect']) ? $welcomebar['mysticky_welcomebar_attentionselect'] : '' );
47
+ $display_entry_effect = (isset($welcomebar['mysticky_welcomebar_entry_effect'])) ? ' mysticky-welcomebar-entry-effect-'.$welcomebar['mysticky_welcomebar_entry_effect'] : ' mysticky-welcomebar-entry-effect-slide-in';
48
+ $welcomebar['mysticky_welcomebar_position'] = isset($welcomebar['mysticky_welcomebar_position']) ? $welcomebar['mysticky_welcomebar_position'] : 'top';
49
+ $display_main_class = "mysticky-welcomebar-position-" . $welcomebar['mysticky_welcomebar_position'] . $mysticky_welcomebar_showx_desktop . $mysticky_welcomebar_showx_mobile . $mysticky_welcomebar_btn_desktop . $mysticky_welcomebar_btn_mobile . $display . $display_entry_effect;
50
+
51
+ ?>
52
+ <form class="mysticky-welcomebar-form" id="mysticky_welcomebar_form" method="post" action="<?php echo admin_url('admin.php?page=my-stickymenu-welcomebar&save=1&widget=0');?>">
53
+ <div class="mysticky-welcomebar-header-title">
54
+ <h3><?php _e('Welcome Bar', 'myStickymenu'); ?></h3>
55
+ <label for="mysticky-welcomebar-contact-form-enabled" class="mysticky-welcomebar-switch">
56
+ <input type="checkbox" id="mysticky-welcomebar-contact-form-enabled" name="mysticky_option_welcomebar[mysticky_welcomebar_enable]" value="1" <?php checked( @$welcomebar['mysticky_welcomebar_enable'], '1' );?> />
57
+ <span class="slider"></span>
58
+ </label>
59
+ </div>
60
+ <div class="mysticky-welcomebar-setting-wrap">
61
+ <div class="mysticky-welcomebar-setting-left">
62
+ <div class="mysticky-welcomebar-setting-block">
63
+ <div class="mysticky-welcomebar-subheader-title">
64
+ <h4><?php _e('Design', 'myStickymenu'); ?></h4>
65
+ </div>
66
+ <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-setting-position">
67
+ <label><?php _e('Position', 'myStickymenu'); ?></label>
68
+ <div class="mysticky-welcomebar-setting-content-right">
69
+ <label>
70
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_position]" value= "top" type="radio" <?php checked( @$welcomebar['mysticky_welcomebar_position'], 'top' );?> />
71
+ <?php _e("Top", 'mystickymenu'); ?>
72
+ </label>
73
+ <label>
74
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_position]" value="bottom" type="radio" disabled />
75
+ <?php _e("Bottom", 'mystickymenu'); ?>
76
+ </label>
77
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
78
+ </div>
79
+ </div>
80
+ <div class="mysticky-welcomebar-setting-content">
81
+ <label><?php _e('Height', 'myStickymenu'); ?></label>
82
+ <div class="mysticky-welcomebar-setting-content-right">
83
+ <div class="px-wrap">
84
+ <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_height" name="mysticky_option_welcomebar[mysticky_welcomebar_height]" value="60" disabled />
85
+ <span class="input-px">PX</span>
86
+ </div>
87
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
88
+ </div>
89
+ </div>
90
+ <div class="mysticky-welcomebar-setting-content">
91
+ <label><?php _e('Background Color', 'myStickymenu'); ?></label>
92
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker">
93
+ <input type="text" id="mysticky_welcomebar_bgcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_bgcolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($welcomebar['mysticky_welcomebar_bgcolor']);?>" />
94
+ </div>
95
+ </div>
96
+ <div class="mysticky-welcomebar-setting-content">
97
+ <label><?php _e('Background Text Color', 'myStickymenu'); ?></label>
98
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker">
99
+ <input type="text" id="mysticky_welcomebar_bgtxtcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_bgtxtcolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($welcomebar['mysticky_welcomebar_bgtxtcolor']);?>" />
100
+ </div>
101
+ </div>
102
+ <div class="mysticky-welcomebar-setting-content">
103
+ <label><?php _e('Font', 'myStickymenu'); ?></label>
104
+ <div class="mysticky-welcomebar-setting-content-right">
105
+ <select name="mysticky_option_welcomebar[mysticky_welcomebar_font]" class="form-fonts">
106
+ <option value=""><?php _e( 'Select font family', 'myStickymenu' );?></option>
107
+ <?php $group= ''; foreach( myStickymenu_fonts() as $key=>$value):
108
+ if ($value != $group){
109
+ echo '<optgroup label="' . $value . '">';
110
+ $group = $value;
111
+ }
112
+ ?>
113
+ <option value="<?php echo esc_attr($key);?>" <?php selected( @$welcomebar['mysticky_welcomebar_font'], $key ); ?>><?php echo esc_html($key);?></option>
114
+ <?php endforeach;?>
115
+ </select>
116
+ </div>
117
+ </div>
118
+ <div class="mysticky-welcomebar-setting-content">
119
+ <label><?php _e('Font Size', 'myStickymenu'); ?></label>
120
+ <div class="mysticky-welcomebar-setting-content-right">
121
+ <div class="px-wrap">
122
+ <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_fontsize" name="mysticky_option_welcomebar[mysticky_welcomebar_fontsize]" value="<?php echo @$welcomebar['mysticky_welcomebar_fontsize'];?>" />
123
+ <span class="input-px">PX</span>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ <div class="mysticky-welcomebar-setting-content">
128
+ <label><?php _e('Bar Text', 'myStickymenu'); ?></label>
129
+ <div class="mysticky-welcomebar-setting-content-right">
130
+ <?php
131
+ $settings = array(
132
+ 'media_buttons' => false,
133
+ 'textarea_name' => 'mysticky_option_welcomebar[mysticky_welcomebar_bar_text]',
134
+ 'tinymce' => false,
135
+ 'quicktags' => array(
136
+ 'buttons' => 'strong,em,link'
137
+ )
138
+ );
139
+ wp_editor( stripslashes($welcomebar['mysticky_welcomebar_bar_text']), 'mysticky_bar_text', $settings );
140
+ // add more buttons to the html editor
141
+ function underline_tag_add_quicktags() {
142
+ if ( wp_script_is('quicktags') ){ ?>
143
+ <script type="text/javascript">
144
+ QTags.addButton( 'underline_tag', 'U', '<u>', '</u>', 'underline', 'underline', 20, '' );
145
+ </script>
146
+ <?php
147
+ }
148
+ }
149
+ add_action( 'admin_print_footer_scripts', 'underline_tag_add_quicktags' );
150
+ ?>
151
+ <!--<textarea id="mysticky_bar_text" class="mystickyinput" name="mysticky_option_welcomebar[mysticky_welcomebar_bar_text]" rows="4" style="display: none;"><?php echo stripslashes($welcomebar['mysticky_welcomebar_bar_text']);?> </textarea>-->
152
+ </div>
153
+ </div>
154
+ <div class="mysticky-welcomebar-setting-content">
155
+ <label><?php _e('Show X', 'myStickymenu'); ?></label>
156
+ <div class="mysticky-welcomebar-setting-content-right">
157
+ <label>
158
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_x_desktop]" value= "desktop" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_x_desktop'], 'desktop' );?> />
159
+ <?php _e( 'Desktop', 'mystickymenu' );?>
160
+ </label>
161
+ <label>
162
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_x_mobile]" value= "mobile" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_x_mobile'], 'mobile' );?> />
163
+ <?php _e( 'Mobile', 'mystickymenu' );?>
164
+ </label>
165
+ </div>
166
+ </div>
167
+ <div class="mysticky-welcomebar-setting-content">
168
+ <label><?php _e('Countdown', 'myStickymenu'); ?><span class="dashicons dashicons-clock" style="margin-left:5px;color:#a8aeaf;"></span><div class="html-tooltip side">
169
+ <span class="dashicons dashicons-editor-help"></span>
170
+ <span class="tooltip-text top ">Add a countdown timer element to your Welcome Bar to increase conversion rate, announce flash sales, and more
171
+ <img src="<?php echo MYSTICKYMENU_URL ?>/images/countdown.gif" /><p style="z-index: 99999;"></span></div></label>
172
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-close-automatically-sec">
173
+ <label for="mysticky-welcomebar-countdown-enabled" class="mysticky-welcomebar-switch">
174
+ <input type="checkbox" id="mysticky-welcomebar-countdown-enabled" name="mysticky_option_welcomebar[mysticky_welcomebar_enable_countdown]" value="1" data-url="<?php echo esc_url($upgarde_url); ?>" />
175
+ <span class="slider"></span>
176
+
177
+ </label>
178
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ <div class="mysticky-welcomebar-setting-block">
183
+ <div class="mysticky-welcomebar-subheader-title">
184
+ <h4><?php _e('Button', 'myStickymenu'); ?></h4>
185
+ </div>
186
+ <div class="mysticky-welcomebar-setting-content">
187
+ <label><?php _e('Button', 'myStickymenu'); ?></label>
188
+ <div class="mysticky-welcomebar-setting-content-right">
189
+ <label>
190
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_btn_desktop]" value= "desktop" type="checkbox" <?php checked( @$welcomebar['mysticky_welcomebar_btn_desktop'], 'desktop' );?> />
191
+ <?php _e( 'Desktop', 'mystickymenu' );?>
192
+ </label>
193
+ <label>
194
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_btn_mobile]" value= "mobile" type="checkbox"<?php checked( @$welcomebar['mysticky_welcomebar_btn_mobile'], 'mobile' );?> />
195
+ <?php _e( 'Mobile', 'mystickymenu' );?>
196
+ </label>
197
+ </div>
198
+ </div>
199
+ <div class="mysticky-welcomebar-setting-content">
200
+ <label><?php _e('Button Color', 'myStickymenu'); ?></label>
201
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker mysticky_welcomebar_btn_color">
202
+ <input type="text" id="mysticky_welcomebar_btncolor" name="mysticky_option_welcomebar[mysticky_welcomebar_btncolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($welcomebar['mysticky_welcomebar_btncolor']);?>" />
203
+ </div>
204
+ </div>
205
+ <div class="mysticky-welcomebar-setting-content">
206
+ <label><?php _e('Button Text Color', 'myStickymenu'); ?></label>
207
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-colorpicker mysticky_welcomebar_btn_color">
208
+ <input type="text" id="mysticky_welcomebar_btntxtcolor" name="mysticky_option_welcomebar[mysticky_welcomebar_btntxtcolor]" class="my-color-field" data-alpha="true" value="<?php echo esc_attr($welcomebar['mysticky_welcomebar_btntxtcolor']);?>" />
209
+ </div>
210
+ </div>
211
+ <div class="mysticky-welcomebar-setting-content">
212
+ <label><?php _e('Button Text', 'myStickymenu'); ?></label>
213
+ <div class="mysticky-welcomebar-setting-content-right">
214
+ <input type="text" id="mysticky_welcomebar_btn_text" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_btn_text]" value="<?php echo stripslashes($welcomebar['mysticky_welcomebar_btn_text']);?>" />
215
+ </div>
216
+ </div>
217
+ <!-- -->
218
+ <div class="mysticky-welcomebar-setting-content">
219
+ <label><?php _e('Attention Effect', 'myStickymenu'); ?></label>
220
+ <div class="mysticky-welcomebar-setting-content-right">
221
+ <div class="mysticky-welcomebar-setting-attention">
222
+ <select name="mysticky_option_welcomebar[mysticky_welcomebar_attentionselect]" class="mysticky-welcomebar-attention mysticky_welcomebar_disable">
223
+ <option value="default" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], ' ' ); ?>><?php _e( 'None', 'myStickymenu' );?></option>
224
+ <option value="flash" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'flash' ); ?>><?php _e( 'Flash', 'myStickymenu' );?></option>
225
+ <option value="shake" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'shake' ); ?>><?php _e( 'Shake', 'myStickymenu' );?></option>
226
+ <option value="swing" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'swing' ); ?>><?php _e( 'Swing', 'myStickymenu' );?></option>
227
+ <option value="tada" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'tada' ); ?>><?php _e( 'Tada', 'myStickymenu' );?></option>
228
+ <option value="heartbeat" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'heartbeat' ); ?>><?php _e( 'Heartbeat', 'myStickymenu' );?></option>
229
+ <option value="wobble" <?php selected( @$welcomebar['mysticky_welcomebar_attentionselect'], 'wobble' ); ?>><?php _e( 'Wobble', 'myStickymenu' );?></option>
230
+ </select>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ <!-- -->
235
+ <div class="mysticky-welcomebar-setting-content">
236
+ <label><?php _e('Button Submission', 'myStickymenu'); ?></label>
237
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-redirect-wrap">
238
+ <div class="mysticky-welcomebar-setting-action">
239
+ <select name="mysticky_option_welcomebar[mysticky_welcomebar_actionselect]" class="mysticky-welcomebar-action mysticky_welcomebar_disable">
240
+ <option value="redirect_to_url" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'redirect_to_url' ); ?>><?php _e( 'Redirect to URL', 'myStickymenu' );?></option>
241
+ <option value="close_bar" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'close_bar' ); ?>><?php _e( 'Close bar', 'myStickymenu' );?></option>
242
+ <option value="poptin_popup" <?php selected( @$welcomebar['mysticky_welcomebar_actionselect'], 'poptin_popup' ); ?> ><?php _e( 'Launch a Poptin pop-up', 'myStickymenu' );?></option>
243
+ <option value="thankyou_screen" data-href="<?php echo esc_url($upgarde_url); ?>"><?php _e( 'Thank you screen (Upgrade Now)', 'myStickymenu' );?></option>
244
+ </select>
245
+ </div>
246
+
247
+ </div>
248
+ </div>
249
+
250
+ <div class="mysticky-welcomebar-poptin-popup" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'poptin_popup' ) : ?> style="display:none;" <?php endif;?>>
251
+ <div class="mysticky-welcomebar-setting-content">
252
+ <p class="mysticky-welcomebar-poptin-content" >Sign up at <a href="https://www.poptin.com/?utm_source=msm" target="_blank">Poptin</a> for free and launch pop-ups on <a href="https://help.poptin.com/article/show/72942-how-to-show-a-poptin-when-the-visitor-clicks-on-a-button-link-on-your-site" target="_blank">click</a>
253
+ </p>
254
+ </div>
255
+ <div class="mysticky-welcomebar-setting-content">
256
+ <label><?php _e('Poptin pop-up direct link', 'myStickymenu'); ?></label>
257
+ <div class="mysticky-welcomebar-setting-content-right">
258
+ <input type="text" id="mysticky_welcomebar_poptin_popup_link" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_poptin_popup_link]" value="<?php echo (isset($welcomebar['mysticky_welcomebar_poptin_popup_link'])) ? $welcomebar['mysticky_welcomebar_poptin_popup_link'] : '';?>" placeholder="<?php echo esc_url("https://app.popt.in/APIRequest/click/some_id_here"); ?>" />
259
+ <input type="hidden" id="welcome_save_anyway" value='' />
260
+ </div>
261
+ </div>
262
+ </div>
263
+ <!-- -->
264
+
265
+ <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
266
+ <label><?php _e('Redirection link', 'myStickymenu'); ?></label>
267
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-action mysticky-welcomebar-redirect" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] == 'close_bar' ) : ?> style="display:none;" <?php endif;?> >
268
+ <input type="text" id="mysticky_welcomebar_redirect" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_redirect]" value="<?php echo esc_url($welcomebar['mysticky_welcomebar_redirect']);?>" placeholder="<?php echo esc_url("https://www.yourdomain.com"); ?>" />
269
+ </div>
270
+ </div>
271
+ <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
272
+ <label><?php _e( 'Open in a new tab', 'mystickymenu' );?></label>
273
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-newtab mysticky-welcomebar-redirect" >
274
+ <label class="mysticky-welcomebar-switch">
275
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_redirect_newtab]" value= "1" type="checkbox" disabled />
276
+ <span class="slider"></span>
277
+ </label>
278
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
279
+ </div>
280
+ </div>
281
+ <div class="mysticky-welcomebar-setting-content mysticky-welcomebar-redirect-container" <?php if ( $welcomebar['mysticky_welcomebar_actionselect'] != 'redirect_to_url' ) : ?> style="display:none;" <?php endif;?>>
282
+ <label><?php _e('rel Attribute', 'myStickymenu'); ?>
283
+ <span class="mysticky-custom-fields-tooltip">
284
+ <a href="javascript:void(0);" class="mysticky-tooltip mysticky-new-custom-btn"><i class="dashicons dashicons-editor-help"></i></a>
285
+ <p>Add a "rel" attribute to the button link. You can use it to add a rel="nofollow", "sponsored", or any other "rel" attribute option</p>
286
+ </span>
287
+ </label>
288
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-setting-newtab mysticky-welcomebar-redirect" >
289
+ <input type="text" id="mysticky_welcomebar_redirect_rel" class="mystickyinput mysticky_welcomebar_disable" name="mysticky_option_welcomebar[mysticky_welcomebar_redirect_rel]" value="" placeholder="" disabled />
290
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
291
+ </div>
292
+ </div>
293
+ <!-- -->
294
+ <div class="mysticky-welcomebar-setting-content">
295
+ <label><?php _e('After Submission', 'myStickymenu'); ?></label>
296
+ <div class="mysticky-welcomebar-setting-content-right">
297
+ <div class="mysticky-welcomebar-setting-action">
298
+ <select name="mysticky_option_welcomebar[mysticky_welcomebar_aftersubmission]" class="mysticky-welcomebar-aftersubmission mysticky_welcomebar_disable">
299
+ <option value="dont_show_welcomebar" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'dont_show_welcomebar' ); ?>><?php _e( "Don't show the Welcome Bar", 'myStickymenu' );?></option>
300
+ <option value="show_welcomebar_next_visit" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'show_welcomebar_next_visit' ); ?>><?php _e( 'Show the Welcome Bar in the next visit', 'myStickymenu' );?></option>
301
+ <option value="show_welcomebar_every_page" <?php selected( @$welcomebar['mysticky_welcomebar_aftersubmission'], 'show_welcomebar_every_page' ); ?> ><?php _e( 'Show the Welcome Bar on every page', 'myStickymenu' );?></option>
302
+ </select>
303
+ </div>
304
+ </div>
305
+ </div>
306
+ <!-- -->
307
+ <div class="mysticky-welcomebar-setting-content">
308
+ <label><?php _e('Close welcome bar Automatically', 'myStickymenu'); ?></label>
309
+ <div class="mysticky-welcomebar-setting-content-right mysticky-welcomebar-close-automatically-sec">
310
+ <label for="mysticky-welcomebar-close-automatically-enabled" class="mysticky-welcomebar-switch">
311
+ <input type="checkbox" id="mysticky-welcomebar-close-automatically-enabled" name="mysticky_option_welcomebar[mysticky_welcomebar_enable_automatical]" value="1" disabled />
312
+ <span class="slider"></span>
313
+ </label>
314
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
315
+ <div class="mysticky-welcomebar-setting-action" style="display:none;">
316
+ <div class="px-wrap">
317
+ <span><?php _e('Close welcome bar after ', 'myStickymenu'); ?></span>
318
+ <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_triggersec_automatically" name="mysticky_option_welcomebar[mysticky_welcomebar_triggersec_automatically]" value="0">
319
+ <span class="input-px"><?php _e('Sec', 'myStickymenu'); ?></span>
320
+ </div>
321
+ </div>
322
+ </div>
323
+ </div>
324
+ </div>
325
+ <div class="mysticky-welcomebar-setting-block">
326
+ <div class="mysticky-welcomebar-subheader-title">
327
+ <h4><?php _e('Display Rules', 'myStickymenu'); ?></h4>
328
+ </div>
329
+ <div class="mysticky-welcomebar-setting-content">
330
+ <label><?php _e('Entry effect', 'myStickymenu'); ?></label>
331
+ <div class="mysticky-welcomebar-setting-content-right">
332
+ <?php $welcomebar['mysticky_welcomebar_entry_effect'] = (isset($welcomebar['mysticky_welcomebar_entry_effect']) && $welcomebar['mysticky_welcomebar_entry_effect']!= '') ? $welcomebar['mysticky_welcomebar_entry_effect'] : 'slide-in'; ?>
333
+ <select id="myStickymenu-entry-effect" name="mysticky_option_welcomebar[mysticky_welcomebar_entry_effect]" >
334
+ <option value="none" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'none' ); ?>><?php _e( 'No effect', 'myStickymenu' );?></option>
335
+ <option value="slide-in" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'slide-in' ); ?>><?php _e( 'Slide in', 'myStickymenu' );?></option>
336
+ <option value="fade" <?php selected( @$welcomebar['mysticky_welcomebar_entry_effect'], 'fade' ); ?>><?php _e( 'Fade', 'myStickymenu' );?></option>
337
+ </select>
338
+ </div>
339
+ </div>
340
+ <div class="mysticky-welcomebar-upgrade-main mysticky_device_upgrade">
341
+ <span class="myStickymenu-upgrade">
342
+ <a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( ' Upgrade Now', 'mystickymenu' );?></a>
343
+ </span>
344
+ <div class="mysticky-welcomebar-setting-content">
345
+ <label><?php _e('Devices', 'myStickymenu'); ?></label>
346
+ <div class="mysticky-welcomebar-setting-content-right">
347
+ <label>
348
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_device_desktop]" value= "desktop" type="checkbox" checked disabled />
349
+ <?php _e( 'Desktop', 'mystickymenu' );?>
350
+ </label>
351
+ <label>
352
+ <input name="mysticky_option_welcomebar[mysticky_welcomebar_device_mobile]" value= "mobile" type="checkbox" checked disabled />
353
+ <?php _e( 'Mobile', 'mystickymenu' );?>
354
+ </label>
355
+ </div>
356
+ </div>
357
+ <div class="mysticky-welcomebar-setting-content">
358
+ <label><?php _e('Trigger', 'myStickymenu'); ?></label>
359
+ <div class="mysticky-welcomebar-setting-content-right">
360
+ <div class="mysticky-welcomebar-setting-action mysticky-welcomebar-trigger-wrap">
361
+ <label>
362
+ <input type="radio" name="mysticky_option_welcomebar[mysticky_welcomebar_trigger]" value="after_a_few_seconds" checked disabled />&nbsp;<?php _e( 'After a few seconds', 'myStickymenu' );?>
363
+ </label>
364
+ <label>
365
+ <input type="radio" name="mysticky_option_welcomebar[mysticky_welcomebar_trigger]" value="after_scroll" disabled />&nbsp;<?php _e( 'After Scroll', 'myStickymenu' );?>
366
+ </label>
367
+ </div>
368
+ <div class="mysticky-welcomebar-setting-action mysticky-welcomebar-triggersec">
369
+ <div class="px-wrap">
370
+ <input type="number" class="" min="0" step="1" id="mysticky_welcomebar_triggersec" name="mysticky_option_welcomebar[mysticky_welcomebar_triggersec]" value="0" disabled />
371
+ <span class="input-px"><?php echo ( isset($welcomebar['mysticky_welcomebar_trigger']) && $welcomebar['mysticky_welcomebar_trigger'] == 'after_scroll' ) ? '%' : 'Sec'; ?></span>
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </div>
376
+ <div class="mysticky-welcomebar-setting-content">
377
+ <label><?php _e('Expiry date', 'myStickymenu'); ?></label>
378
+ <div class="mysticky-welcomebar-setting-content-right">
379
+ <div class="mysticky-welcomebar-expirydate">
380
+ <input type="text" class="mysticky_welcome_expiry1" id="mysticky_welcomebar_expirydate" name="mysticky_option_welcomebar[mysticky_welcomebar_expirydate]" placeholder="<?php _e('No expiry date', 'myStickymenu'); ?>" value="" disabled />
381
+ <span class="dashicons dashicons-calendar-alt"></span>
382
+ </div>
383
+ <div class="mysticky-welcomebar-expirydate-gmt">
384
+ <select name="mysticky_option_welcomebar[mysticky_welcomebar_expirydate_gmt]" id="mysticky_welcomebar_expirydate_gmt" disabled>
385
+ <?php for( $i=12; $i>=-12;$i-- ) { ?>
386
+ <option value="<?php echo esc_attr($i); ?>"><?php echo "GMT " . ( $i>0 ? "+" : "" ).( $i ) ?></option>
387
+ <?php } ?>
388
+ </select>
389
+ </div>
390
+ </div>
391
+ </div>
392
+ <div class="mysticky-welcomebar-setting-content show-on-apper">
393
+ <label><?php _e('Page targeting', 'myStickymenu'); ?></label>
394
+ <div class="mysticky-welcomebar-setting-content-right">
395
+ <a href="javascript:void(0);" class="create-rule" id="create-rule"><?php esc_html_e( "Add Rule", "mystickyelements" );?></a>
396
+ </div>
397
+ <?php
398
+ $url_options = array(
399
+ 'page_contains' => 'pages that contain',
400
+ 'page_has_url' => 'a specific page',
401
+ 'page_start_with' => 'pages starting with',
402
+ 'page_end_with' => 'pages ending with',
403
+ );
404
+ ?>
405
+ <div class="mysticky-welcomebar-page-options-html" style="display: none">
406
+ <div class="mysticky-welcomebar-page-option">
407
+ <div class="url-content">
408
+ <div class="mysticky-welcomebar-url-select">
409
+ <select name="" id="url_shown_on___count___option">
410
+ <option value="show_on"><?php esc_html_e("Show on", "mysticky" );?></option>
411
+ <option value="not_show_on"><?php esc_html_e("Don't show on", "mysticky" );?></option>
412
+ </select>
413
+ </div>
414
+ <div class="mysticky-welcomebar-url-option">
415
+ <select class="mysticky-welcomebar-url-options" name="" id="url_rules___count___option">
416
+ <option selected="selected" value=""><?php esc_html_e("Select Rule", "mysticky" );?></option>
417
+ <?php foreach($url_options as $key=>$value) {
418
+ echo '<option value="'.$key.'">'.$value.'</option>';
419
+ } ?>
420
+ </select>
421
+ </div>
422
+ <div class="mysticky-welcomebar-url-box">
423
+ <span class='mysticky-welcomebar-url'><?php echo site_url("/"); ?></span>
424
+ </div>
425
+ <div class="mysticky-welcomebar-url-values">
426
+ <input type="text" value="" name="mysticky_option_welcomebar[page_settings][__count__][value]" id="url_rules___count___value" disabled />
427
+ </div>
428
+ <div class="clear"></div>
429
+ </div>
430
+ <span class="myStickymenu-upgrade"><a class="sticky-header-upgrade-now" href="<?php echo esc_url($upgarde_url); ?>" target="_blank"><?php _e( 'Upgrade Now', 'mystickymenu' );?></a></span>
431
+ </div>
432
+ </div>
433
+ <div class="mysticky-welcomebar-page-options mysticky-welcomebar-setting-content-right" id="mysticky-welcomebar-page-options" style="display:none"></div>
434
+ </div>
435
+ </div>
436
+ </div>
437
+ </div>
438
+ <div class="mysticky-welcomebar-setting-right">
439
+ <div class="mysticky-welcomebar-backword-page">
440
+ <a href="<?php echo admin_url("admin.php?page=my-stickymenu-welcomebar");?>"><span class="dashicons dashicons-arrow-left-alt2 back-dashboard" style="color: unset;font-size: 17px;"></span> Back to Dashboard</a>
441
+ </div>
442
+ <div class="mysticky-welcomebar-header-title">
443
+ <h3><?php _e('Preview', 'mystickyelements'); ?></h3>
444
+ </div>
445
+ <div class="mysticky-welcomebar-preview-screen">
446
+ <?php if(isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] != '' ):?>
447
+ <link href="https://fonts.googleapis.com/css?family=<?php echo esc_attr($welcomebar['mysticky_welcomebar_font']) ?>:400,600,700|Lato:400,500,600,700" rel="stylesheet" type="text/css" class="sfba-google-font">
448
+ <?php endif; ?>
449
+ <div class="mysticky-welcomebar-fixed mysticky-welcomebar-display-desktop <?php echo esc_attr($display_main_class); ?>" >
450
+ <div class="mysticky-welcomebar-fixed-wrap">
451
+ <div class="mysticky-welcomebar-content">
452
+ <?php echo wpautop(isset($welcomebar['mysticky_welcomebar_bar_text'])? stripslashes($welcomebar['mysticky_welcomebar_bar_text']) :"Get 30% off your first purchase");?>
453
+ </div>
454
+ <div class="mysticky-welcomebar-btn">
455
+ <a href="#" ><?php echo isset($welcomebar['mysticky_welcomebar_btn_text']) ? stripslashes($welcomebar['mysticky_welcomebar_btn_text']) : "Got it!";?></a>
456
+ </div>
457
+ <a href="javascript:void(0)" class="mysticky-welcomebar-close">X</a>
458
+ </div>
459
+ </div>
460
+ </div>
461
+ </div>
462
+ </div>
463
+ <div class="mysticky-welcomebar-submit">
464
+ <input type="submit" name="submit" id="submit" class="button button-primary welcombar_save" value="<?php _e('Save', 'mystickymenu');?>">
465
+ <input type="submit" name="submit" id="submit" class="button button-primary save_view_dashboard" style="width: auto;" value="<?php _e('SAVE & VIEW DASHBOARD', 'mystickymenu');?>">
466
+ </div>
467
+ <input type="hidden" name="nonce" value="<?php echo esc_attr($nonce); ?>">
468
+ <input type="hidden" name="active_tab_element" value="1">
469
+ <input type="hidden" id="save_welcome_bar" name="save_welcome_bar" >
470
+
471
+ </form>
472
+ <form class="mysticky-welcomebar-form-reset" method="post" action="#">
473
+ <div class="mysticky-welcomebar-submit">
474
+ <input type="submit" name="mysticky_welcomebar_reset" id="reset" class="button button-secondary" value="<?php _e('Reset', 'mystickymenu');?>">
475
+ </div>
476
+ <input type="hidden" name="nonce_reset" value="<?php echo esc_attr($nonce_reset); ?>">
477
+ <input type="hidden" name="active_tab_element" value="1">
478
+ </form>
479
+
480
+ <div class="mystickymenu-action-popup new-center" id="welcomebar-save-confirm" style="display:none;">
481
+ <div class="mystickymenu-action-popup-header">
482
+ <h3><?php esc_html_e("Welcome Bar is currently off","mystickymenu"); ?></h3>
483
+ <span class="dashicons dashicons-no-alt close-button" data-from = "welcombar-confirm"></span>
484
+ </div>
485
+ <div class="mystickymenu-action-popup-body">
486
+ <p><?php esc_html_e("Your Welcome Bar is currently turned off, would you like to save and show it on your site?","mystickymenu"); ?></p>
487
+ </div>
488
+ <div class="mystickymenu-action-popup-footer">
489
+ <button type="button" class="btn-enable btn-nevermind-status" id="welcombar_sbmtbtn_off" ><?php esc_html_e("Just save and keep it off","mystickymenu"); ?></button>
490
+ <button type="button" class="btn-disable-cancel btn-turnoff-status" id="welcomebar_yes_sbmtbtn" style="background:#00c67c;border-color:#00c67c;"><?php esc_html_e("Save & Turn on Welcome Bar","mystickymenu"); ?></button>
491
+ </div>
492
+ </div>
493
+ <div class="mystickymenupopup-overlay" id="welcombar-sbmtvalidation-overlay-popup"></div>
494
+
495
+ <div id="mysticky-welcomebar-poptin-popup-confirm" style="display:none;" title="<?php esc_attr_e( 'Poptin pop-up is not configured properly', 'mystickymenu' ); ?>">
496
+ <p>
497
+ Seems like you haven't filled up the Poptin pop-up direct link field properly. Please <a href="https://help.poptin.com/article/show/72942-how-to-show-a-poptin-when-the-visitor-clicks-on-a-button-link-on-your-site" target="_blank">check the guide</a> to know how you can copy direct link of a pop-up from Poptin.
498
+ </p>
499
+ </div>
500
+ <script>
501
+ jQuery(".mysticky-welcomebar-fixed").on(
502
+ "animationend MSAnimationEnd webkitAnimationEnd oAnimationEnd",
503
+ function() {
504
+ jQuery(this).removeClass("animation-start");
505
+ }
506
+ );
507
+ jQuery(document).ready(function() {
508
+ var container = jQuery(".mysticky-welcomebar-fixed");
509
+ var refreshId = setInterval(function() {
510
+ container.addClass("animation-start");
511
+ }, 3500);
512
+ });
513
+ </script>
514
+
515
+
516
+ <style>
517
+ .mysticky-welcomebar-fixed {
518
+ background-color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_bgcolor']); ?>;
519
+ font-family: <?php echo esc_attr($welcomebar['mysticky_welcomebar_font']); ?>;
520
+ position: absolute;
521
+ left: 0;
522
+ right: 0;
523
+ opacity: 0;
524
+ z-index: 9;
525
+ -webkit-transition: all 1s ease 0s;
526
+ -moz-transition: all 1s ease 0s;
527
+ transition: all 1s ease 0s;
528
+ }
529
+
530
+
531
+ .mysticky-welcomebar-fixed-wrap {
532
+ min-height: 60px;
533
+ padding: 20px 10px 20px 10px;
534
+ display: flex;
535
+ align-items: center;
536
+ justify-content: center;
537
+ }
538
+ .mysticky-welcomebar-preview-mobile-screen .mysticky-welcomebar-fixed{
539
+ padding: 0 25px;
540
+ }
541
+ .mysticky-welcomebar-position-top {
542
+ top:0;
543
+ }
544
+ .mysticky-welcomebar-position-bottom {
545
+ bottom:0;
546
+ }
547
+ .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in {
548
+ top: -80px;
549
+ }
550
+ .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in {
551
+ bottom: -80px;
552
+ }
553
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect {
554
+ top:0;
555
+ opacity: 1;
556
+ }
557
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect {
558
+ bottom:0;
559
+ opacity: 1;
560
+ }
561
+ .mysticky-welcomebar-entry-effect-fade {
562
+ opacity: 0;
563
+ }
564
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-fade.entry-effect {
565
+ opacity: 1;
566
+ }
567
+ .mysticky-welcomebar-entry-effect-none {
568
+ display: none;
569
+ }
570
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-none.entry-effect {
571
+ display: block;
572
+ opacity: 1;
573
+ }
574
+ .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
575
+ top: 0;
576
+ }
577
+ .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
578
+ bottom: 0;
579
+ }
580
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-content p a,
581
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-content p {
582
+ color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_bgtxtcolor']); ?>;
583
+ font-size: <?php echo esc_attr($welcomebar['mysticky_welcomebar_fontsize']); ?>px;
584
+ font-family: inherit;
585
+ margin: 0;
586
+ padding: 0;
587
+ line-height: 1.2;
588
+ font-weight: 400;
589
+ }
590
+ /*.mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
591
+ padding-left: 30px;
592
+ margin: 0 30px;
593
+ display: none;
594
+ }*/
595
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
596
+ display: block;
597
+ }
598
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a {
599
+ background-color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_btncolor']); ?>;
600
+ font-family: inherit;
601
+ color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_btntxtcolor']); ?>;
602
+ border-radius: 4px;
603
+ text-decoration: none;
604
+ display: inline-block;
605
+ vertical-align: top;
606
+ line-height: 1.2;
607
+ font-size: <?php echo esc_attr($welcomebar['mysticky_welcomebar_fontsize']) ?>px;
608
+ font-weight: 400;
609
+ padding: 5px 20px;
610
+ white-space: nowrap;
611
+ }
612
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a:hover {
613
+ /*opacity: 0.7;*/
614
+ -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
615
+ -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
616
+ box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
617
+ }
618
+
619
+
620
+ /*.mysticky-welcomebar-fixed .mysticky-welcomebar-close {
621
+ display: none;
622
+ vertical-align: top;
623
+ width: 20px;
624
+ height: 20px;
625
+ text-align: center;
626
+ text-decoration: none;
627
+ line-height: 20px;
628
+ border-radius: 5px;
629
+ color: #000;
630
+ position: absolute;
631
+ font-family: Lato;
632
+ top: 5px;
633
+ left: 5px;/*
634
+ text-shadow: 0 0 0px #fff;
635
+ -webkit-transition: all 0.5s ease 0s;
636
+ -moz-transition: all 0.5s ease 0s;
637
+ transition: all 0.5s ease 0s;
638
+ -webkit-transform-origin: 50% 50%;
639
+ -moz-transform-origin: 50% 50%;
640
+ transform-origin: 50% 50%;
641
+ }*/
642
+ /*.mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
643
+ opacity: 1;
644
+ -webkit-transform: rotate(180deg);
645
+ -moz-transform: rotate(180deg);
646
+ transform: rotate(180deg);
647
+ }
648
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
649
+ display: inline-block;
650
+ }*/
651
+ @media only screen and (max-width: 1024px) {
652
+ .mysticky-welcomebar-fixed {
653
+ padding: 0 10px 0 10px;
654
+ }
655
+ /*.mysticky-welcomebar-fixed .mysticky-welcomebar-close {
656
+ width: 20px;
657
+ height: 20px;
658
+ line-height: 20px;
659
+ right: 0px;
660
+ }*/
661
+ }
662
+
663
+ /* Animated Buttons */
664
+ .mysticky-welcomebar-btn a {
665
+ -webkit-animation-duration: 1s;
666
+ animation-duration: 1s;
667
+ }
668
+ @-webkit-keyframes flash {
669
+ from,
670
+ 50%,
671
+ to {
672
+ opacity: 1;
673
+ }
674
+
675
+ 25%,
676
+ 75% {
677
+ opacity: 0;
678
+ }
679
+ }
680
+ @keyframes flash {
681
+ from,
682
+ 50%,
683
+ to {
684
+ opacity: 1;
685
+ }
686
+
687
+ 25%,
688
+ 75% {
689
+ opacity: 0;
690
+ }
691
+ }
692
+ .mysticky-welcomebar-attention-flash.animation-start .mysticky-welcomebar-btn a {
693
+ -webkit-animation-name: flash;
694
+ animation-name: flash;
695
+ }
696
+
697
+ @keyframes shake {
698
+ from,
699
+ to {
700
+ -webkit-transform: translate3d(0, 0, 0);
701
+ transform: translate3d(0, 0, 0);
702
+ }
703
+
704
+ 10%,
705
+ 30%,
706
+ 50%,
707
+ 70%,
708
+ 90% {
709
+ -webkit-transform: translate3d(-10px, 0, 0);
710
+ transform: translate3d(-10px, 0, 0);
711
+ }
712
+
713
+ 20%,
714
+ 40%,
715
+ 60%,
716
+ 80% {
717
+ -webkit-transform: translate3d(10px, 0, 0);
718
+ transform: translate3d(10px, 0, 0);
719
+ }
720
+ }
721
+
722
+ .mysticky-welcomebar-attention-shake.animation-start .mysticky-welcomebar-btn a {
723
+ -webkit-animation-name: shake;
724
+ animation-name: shake;
725
+ }
726
+
727
+ @-webkit-keyframes swing {
728
+ 20% {
729
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
730
+ transform: rotate3d(0, 0, 1, 15deg);
731
+ }
732
+
733
+ 40% {
734
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
735
+ transform: rotate3d(0, 0, 1, -10deg);
736
+ }
737
+
738
+ 60% {
739
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
740
+ transform: rotate3d(0, 0, 1, 5deg);
741
+ }
742
+
743
+ 80% {
744
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
745
+ transform: rotate3d(0, 0, 1, -5deg);
746
+ }
747
+
748
+ to {
749
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
750
+ transform: rotate3d(0, 0, 1, 0deg);
751
+ }
752
+ }
753
+
754
+ @keyframes swing {
755
+ 20% {
756
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
757
+ transform: rotate3d(0, 0, 1, 15deg);
758
+ }
759
+
760
+ 40% {
761
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
762
+ transform: rotate3d(0, 0, 1, -10deg);
763
+ }
764
+
765
+ 60% {
766
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
767
+ transform: rotate3d(0, 0, 1, 5deg);
768
+ }
769
+
770
+ 80% {
771
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
772
+ transform: rotate3d(0, 0, 1, -5deg);
773
+ }
774
+
775
+ to {
776
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
777
+ transform: rotate3d(0, 0, 1, 0deg);
778
+ }
779
+ }
780
+
781
+ .mysticky-welcomebar-attention-swing.animation-start .mysticky-welcomebar-btn a {
782
+ -webkit-transform-origin: top center;
783
+ transform-origin: top center;
784
+ -webkit-animation-name: swing;
785
+ animation-name: swing;
786
+ }
787
+
788
+ @-webkit-keyframes tada {
789
+ from {
790
+ -webkit-transform: scale3d(1, 1, 1);
791
+ transform: scale3d(1, 1, 1);
792
+ }
793
+
794
+ 10%,
795
+ 20% {
796
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
797
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
798
+ }
799
+
800
+ 30%,
801
+ 50%,
802
+ 70%,
803
+ 90% {
804
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
805
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
806
+ }
807
+
808
+ 40%,
809
+ 60%,
810
+ 80% {
811
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
812
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
813
+ }
814
+
815
+ to {
816
+ -webkit-transform: scale3d(1, 1, 1);
817
+ transform: scale3d(1, 1, 1);
818
+ }
819
+ }
820
+
821
+ @keyframes tada {
822
+ from {
823
+ -webkit-transform: scale3d(1, 1, 1);
824
+ transform: scale3d(1, 1, 1);
825
+ }
826
+
827
+ 10%,
828
+ 20% {
829
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
830
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
831
+ }
832
+
833
+ 30%,
834
+ 50%,
835
+ 70%,
836
+ 90% {
837
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
838
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
839
+ }
840
+
841
+ 40%,
842
+ 60%,
843
+ 80% {
844
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
845
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
846
+ }
847
+
848
+ to {
849
+ -webkit-transform: scale3d(1, 1, 1);
850
+ transform: scale3d(1, 1, 1);
851
+ }
852
+ }
853
+
854
+ .mysticky-welcomebar-attention-tada.animation-start .mysticky-welcomebar-btn a {
855
+ -webkit-animation-name: tada;
856
+ animation-name: tada;
857
+ }
858
+
859
+ @-webkit-keyframes heartBeat {
860
+ 0% {
861
+ -webkit-transform: scale(1);
862
+ transform: scale(1);
863
+ }
864
+
865
+ 14% {
866
+ -webkit-transform: scale(1.3);
867
+ transform: scale(1.3);
868
+ }
869
+
870
+ 28% {
871
+ -webkit-transform: scale(1);
872
+ transform: scale(1);
873
+ }
874
+
875
+ 42% {
876
+ -webkit-transform: scale(1.3);
877
+ transform: scale(1.3);
878
+ }
879
+
880
+ 70% {
881
+ -webkit-transform: scale(1);
882
+ transform: scale(1);
883
+ }
884
+ }
885
+
886
+ @keyframes heartBeat {
887
+ 0% {
888
+ -webkit-transform: scale(1);
889
+ transform: scale(1);
890
+ }
891
+
892
+ 14% {
893
+ -webkit-transform: scale(1.3);
894
+ transform: scale(1.3);
895
+ }
896
+
897
+ 28% {
898
+ -webkit-transform: scale(1);
899
+ transform: scale(1);
900
+ }
901
+
902
+ 42% {
903
+ -webkit-transform: scale(1.3);
904
+ transform: scale(1.3);
905
+ }
906
+
907
+ 70% {
908
+ -webkit-transform: scale(1);
909
+ transform: scale(1);
910
+ }
911
+ }
912
+
913
+ .mysticky-welcomebar-attention-heartbeat.animation-start .mysticky-welcomebar-btn a {
914
+ -webkit-animation-name: heartBeat;
915
+ animation-name: heartBeat;
916
+ -webkit-animation-duration: 1.3s;
917
+ animation-duration: 1.3s;
918
+ -webkit-animation-timing-function: ease-in-out;
919
+ animation-timing-function: ease-in-out;
920
+ }
921
+
922
+ @-webkit-keyframes wobble {
923
+ from {
924
+ -webkit-transform: translate3d(0, 0, 0);
925
+ transform: translate3d(0, 0, 0);
926
+ }
927
+
928
+ 15% {
929
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
930
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
931
+ }
932
+
933
+ 30% {
934
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
935
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
936
+ }
937
+
938
+ 45% {
939
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
940
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
941
+ }
942
+
943
+ 60% {
944
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
945
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
946
+ }
947
+
948
+ 75% {
949
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
950
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
951
+ }
952
+
953
+ to {
954
+ -webkit-transform: translate3d(0, 0, 0);
955
+ transform: translate3d(0, 0, 0);
956
+ }
957
+ }
958
+
959
+ @keyframes wobble {
960
+ from {
961
+ -webkit-transform: translate3d(0, 0, 0);
962
+ transform: translate3d(0, 0, 0);
963
+ }
964
+
965
+ 15% {
966
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
967
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
968
+ }
969
+
970
+ 30% {
971
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
972
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
973
+ }
974
+
975
+ 45% {
976
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
977
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
978
+ }
979
+
980
+ 60% {
981
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
982
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
983
+ }
984
+
985
+ 75% {
986
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
987
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
988
+ }
989
+
990
+ to {
991
+ -webkit-transform: translate3d(0, 0, 0);
992
+ transform: translate3d(0, 0, 0);
993
+ }
994
+ }
995
+
996
+ .mysticky-welcomebar-attention-wobble.animation-start .mysticky-welcomebar-btn a {
997
+ -webkit-animation-name: wobble;
998
+ animation-name: wobble;
999
+ }
1000
+ </style>
1001
+
1002
+ <?php
1003
+ }
1004
+
1005
+ function mysticky_welcomebar_pro_widget_default_fields() {
1006
+ return array(
1007
+ 'mysticky_welcomebar_position' => 'top',
1008
+ 'mysticky_welcomebar_height' => '60',
1009
+ 'mysticky_welcomebar_bgcolor' => '#03ed96',
1010
+ 'mysticky_welcomebar_bgtxtcolor' => '#000000',
1011
+ 'mysticky_welcomebar_font' => 'Poppins',
1012
+ 'mysticky_welcomebar_fontsize' => '16',
1013
+ 'mysticky_welcomebar_bar_text' => 'Get 30% off your first purchase',
1014
+ 'mysticky_welcomebar_x_desktop' => 'desktop',
1015
+ 'mysticky_welcomebar_x_mobile' => 'mobile',
1016
+ 'mysticky_welcomebar_btn_desktop' => 'desktop',
1017
+ 'mysticky_welcomebar_btn_mobile' => 'mobile',
1018
+ 'mysticky_welcomebar_btncolor' => '#000000',
1019
+ 'mysticky_welcomebar_btntxtcolor' => '#ffffff',
1020
+ 'mysticky_welcomebar_btn_text' => 'Got it!',
1021
+ 'mysticky_welcomebar_actionselect' => 'close_bar',
1022
+ 'mysticky_welcomebar_aftersubmission' => 'dont_show_welcomebar',
1023
+ 'mysticky_welcomebar_redirect' => 'https://www.yourdomain.com',
1024
+ 'mysticky_welcomebar_redirect_newtab' => '',
1025
+ 'mysticky_welcomebar_redirect_rel' => '',
1026
+ 'mysticky_welcomebar_device_desktop' => 'desktop',
1027
+ 'mysticky_welcomebar_device_mobile' => 'mobile',
1028
+ 'mysticky_welcomebar_entry_effect' => 'slide-in',
1029
+ 'mysticky_welcomebar_trigger' => 'after_a_few_seconds',
1030
+ 'mysticky_welcomebar_triggersec' => '0',
1031
+ 'mysticky_welcomebar_expirydate' => '',
1032
+ 'mysticky_welcomebar_page_settings' => '',
1033
+ 'mysticky_welcomebar_timer_position' => 'left',
1034
+ 'mysticky_welcomebar_timer_bgcolor' => '#000000',
1035
+ 'mysticky_welcomebar_timer_textcolor' => '#ffffff',
1036
+ );
1037
+ }
1038
+
1039
+ function mysticky_welcome_bar_frontend(){
1040
+ $welcomebar = get_option( 'mysticky_option_welcomebar' );
1041
+
1042
+ if ( ( isset($welcomebar['mysticky_welcomebar_expirydate']) && $welcomebar['mysticky_welcomebar_expirydate'] !='' && strtotime( date('m/d/Y')) > strtotime($welcomebar['mysticky_welcomebar_expirydate']) ) || !isset($welcomebar['mysticky_welcomebar_enable'] ) || (isset($welcomebar['mysticky_welcomebar_enable']) && $welcomebar['mysticky_welcomebar_enable'] == 0) ) {
1043
+ return;
1044
+ }
1045
+
1046
+ $mysticky_welcomebar_showx_desktop = $mysticky_welcomebar_showx_mobile = '';
1047
+ $mysticky_welcomebar_btn_desktop = $mysticky_welcomebar_btn_mobile = '';
1048
+ $mysticky_welcomebar_display_desktop = $mysticky_welcomebar_display_mobile = '';
1049
+ if( isset($welcomebar['mysticky_welcomebar_x_desktop']) ) {
1050
+ $mysticky_welcomebar_showx_desktop = ' mysticky-welcomebar-showx-desktop';
1051
+ }
1052
+ if( isset($welcomebar['mysticky_welcomebar_x_mobile']) ) {
1053
+ $mysticky_welcomebar_showx_mobile = ' mysticky-welcomebar-showx-mobile';
1054
+ }
1055
+ if( isset($welcomebar['mysticky_welcomebar_btn_desktop']) ) {
1056
+ $mysticky_welcomebar_btn_desktop = ' mysticky-welcomebar-btn-desktop';
1057
+ }
1058
+ if( isset($welcomebar['mysticky_welcomebar_btn_mobile']) ) {
1059
+ $mysticky_welcomebar_btn_mobile = ' mysticky-welcomebar-btn-mobile';
1060
+ }
1061
+
1062
+ $welcomebar['mysticky_welcomebar_position'] = (isset($welcomebar['mysticky_welcomebar_position'])) ? $welcomebar['mysticky_welcomebar_position'] : 'top';
1063
+
1064
+ $welcomebar['mysticky_welcomebar_height'] = (isset($welcomebar['mysticky_welcomebar_height'])) ? $welcomebar['mysticky_welcomebar_height'] : '60';
1065
+ $welcomebar['mysticky_welcomebar_actionselect'] = (isset($welcomebar['mysticky_welcomebar_actionselect'])) ? $welcomebar['mysticky_welcomebar_actionselect'] : 'close_bar';
1066
+ $welcomebar['mysticky_welcomebar_aftersubmission'] = (isset($welcomebar['mysticky_welcomebar_aftersubmission'])) ? $welcomebar['mysticky_welcomebar_aftersubmission'] : 'dont_show_welcomebar';
1067
+ $welcomebar['mysticky_welcomebar_attentionselect'] = (isset($welcomebar['mysticky_welcomebar_attentionselect'])) ? $welcomebar['mysticky_welcomebar_attentionselect'] : '';
1068
+
1069
+ $display = ' mysticky-welcomebar-attention-'.$welcomebar['mysticky_welcomebar_attentionselect'];
1070
+ $display_entry_effect = (isset($welcomebar['mysticky_welcomebar_entry_effect'])) ? ' mysticky-welcomebar-entry-effect-'.$welcomebar['mysticky_welcomebar_entry_effect'] : ' mysticky-welcomebar-entry-effect-slide-in';
1071
+ $mysticky_welcomebar_display_desktop = ' mysticky-welcomebar-display-desktop';
1072
+ $mysticky_welcomebar_display_mobile = ' mysticky-welcomebar-display-mobile';
1073
+
1074
+
1075
+ $display_main_class = "mysticky-welcomebar-position-" . $welcomebar['mysticky_welcomebar_position'] . $mysticky_welcomebar_showx_desktop . $mysticky_welcomebar_showx_mobile . $mysticky_welcomebar_btn_desktop . $mysticky_welcomebar_btn_mobile . $mysticky_welcomebar_display_desktop . $mysticky_welcomebar_display_mobile .$display . $display_entry_effect;
1076
+
1077
+ if( isset($welcomebar['mysticky_welcomebar_actionselect']) ) {
1078
+
1079
+ if( $welcomebar['mysticky_welcomebar_actionselect'] == 'redirect_to_url' ) {
1080
+ $mysticky_welcomebar_actionselect_url = esc_url( $welcomebar['mysticky_welcomebar_redirect'] );
1081
+ } else if( $welcomebar['mysticky_welcomebar_actionselect'] == 'poptin_popup'){
1082
+ $mysticky_welcomebar_actionselect_url = esc_url( $welcomebar['mysticky_welcomebar_poptin_popup_link'] );
1083
+ } else {
1084
+ $mysticky_welcomebar_actionselect_url = 'javascript:void(0)';
1085
+ }
1086
+ }
1087
+
1088
+
1089
+
1090
+ ?>
1091
+ <div class="mysticky-welcomebar-fixed <?php echo esc_attr($display_main_class); ?>" data-after-triger="after_a_few_seconds" data-triger-sec="0" data-position="<?php echo esc_attr($welcomebar['mysticky_welcomebar_position']);?>" data-height="<?php echo esc_attr($welcomebar['mysticky_welcomebar_height']);?>" data-rediect="<?php echo esc_attr($welcomebar['mysticky_welcomebar_actionselect']);?>" data-aftersubmission="<?php echo esc_attr($welcomebar['mysticky_welcomebar_aftersubmission']);?>">
1092
+ <div class="mysticky-welcomebar-fixed-wrap">
1093
+ <div class="mysticky-welcomebar-content">
1094
+ <?php echo wpautop( isset($welcomebar['mysticky_welcomebar_bar_text'])? stripslashes($welcomebar['mysticky_welcomebar_bar_text']) :"Get 30% off your first purchase" );?>
1095
+ </div>
1096
+ <div class="mysticky-welcomebar-btn">
1097
+ <a href="<?php echo esc_url($mysticky_welcomebar_actionselect_url); ?>" <?php if( isset($welcomebar['mysticky_welcomebar_redirect_newtab']) && $welcomebar['mysticky_welcomebar_actionselect'] == 'redirect_to_url' && $welcomebar['mysticky_welcomebar_redirect_newtab']== 1):?> target="_blank" <?php endif;?>><?php echo isset($welcomebar['mysticky_welcomebar_btn_text'])? stripslashes($welcomebar['mysticky_welcomebar_btn_text']) :"Got it!";?></a>
1098
+ </div>
1099
+ <a href="javascript:void(0)" class="mysticky-welcomebar-close">X</a>
1100
+ </div>
1101
+ </div>
1102
+ <script>
1103
+
1104
+ jQuery(document).ready(function($){
1105
+ var adminBarHeight = 0;
1106
+ if ( $("#wpadminbar").length != 0 ){
1107
+ var adminBarHeight = $('#wpadminbar').height();
1108
+ }
1109
+ var mysticky_welcomebar_height = adminBarHeight + jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1110
+ if( jQuery( '.mysticky-welcomebar-fixed' ).data('position') == 'top' ) {
1111
+ jQuery( '.mysticky-welcomebar-entry-effect-slide-in.mysticky-welcomebar-fixed' ).css( 'top', '-' + mysticky_welcomebar_height + 'px' );
1112
+ } else {
1113
+ jQuery( '.mysticky-welcomebar-entry-effect-slide-in.mysticky-welcomebar-fixed' ).css( 'bottom', '-' + mysticky_welcomebar_height + 'px' );
1114
+ }
1115
+ var divi_topbar_height = $( '.et_fixed_nav #top-header' ).outerHeight();
1116
+ var divi_total_height = mysticky_welcomebar_height + divi_topbar_height;
1117
+ var welcombar_aftersubmission = $( '.mysticky-welcomebar-fixed' ).data('aftersubmission');
1118
+ if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1119
+ var welcomebar_storage = localStorage.getItem("welcomebar_close");
1120
+ } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1121
+ var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1122
+ } else {
1123
+ sessionStorage.removeItem('welcomebar_close');
1124
+ localStorage.removeItem('welcomebar_close');
1125
+ var welcomebar_storage = null;
1126
+ }
1127
+ if ( welcomebar_storage === null ){
1128
+
1129
+ var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1130
+
1131
+ jQuery( 'body' ).addClass( 'mysticky-welcomebar-apper' );
1132
+
1133
+ if ( after_trigger == 'after_a_few_seconds' ) {
1134
+
1135
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1136
+ if ( $( window ).width() > 767 ) {
1137
+ var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1138
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1139
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1140
+
1141
+ setTimeout(function(){
1142
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1143
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1144
+ if ( welcombar_position == 'top' ) {
1145
+
1146
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1147
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', (adminBarHeight + 0) + 'px' );
1148
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1149
+ $( 'html' ).css( 'margin-bottom', '' );
1150
+ jQuery( '#mysticky_divi_style' ).remove();
1151
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', welcombar_height + 'px' );
1152
+ jQuery( 'head' ).append( '<style id="mysticky_divi_style" type="text/css">.et_fixed_nav #main-header {top: ' + welcombar_height + 'px !important}.et_fixed_nav #top-header + #main-header{top: ' + divi_total_height + 'px !important}</style>' );
1153
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1154
+ $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1155
+ } else {
1156
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1157
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1158
+ $( 'html' ).css( 'margin-top', '' );
1159
+ jQuery( '#mysticky_divi_style' ).remove();
1160
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1161
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1162
+ }
1163
+ }, trigger_sec );
1164
+ }
1165
+ }
1166
+ }
1167
+ if ( $( window ).width() < 767 ) {
1168
+ if ( after_trigger == 'after_a_few_seconds' ) {
1169
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1170
+ var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1171
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1172
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1173
+ setTimeout(function(){
1174
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1175
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1176
+ jQuery( '#mysticky_divi_style' ).remove();
1177
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1178
+ if ( welcombar_position == 'top' ) {
1179
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1180
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1181
+ $( 'html' ).css( 'margin-bottom', '' );
1182
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1183
+ $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1184
+ } else {
1185
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1186
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1187
+ $( 'html' ).css( 'margin-top', '' );
1188
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1189
+ }
1190
+ }, trigger_sec );
1191
+ }
1192
+ }
1193
+ }
1194
+ mystickyelements_present();
1195
+ }
1196
+ $( window ).resize( function(){
1197
+ var mysticky_welcomebar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1198
+ if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1199
+ var welcomebar_storage = localStorage.getItem("welcomebar_close");
1200
+ } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1201
+ var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1202
+ } else {
1203
+ sessionStorage.removeItem('welcomebar_close');
1204
+ localStorage.removeItem('welcomebar_close');
1205
+ var welcomebar_storage = null;
1206
+ }
1207
+ if ( welcomebar_storage === null ){
1208
+ var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1209
+ if ( ! $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-notapper' ) ) {
1210
+ jQuery( 'body' ).addClass( 'mysticky-welcomebar-apper' );
1211
+ } else {
1212
+ jQuery( 'body' ).removeClass( 'mysticky-welcomebar-apper' );
1213
+ }
1214
+ if ( after_trigger == 'after_a_few_seconds' ) {
1215
+ var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1216
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1217
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1218
+ if ( $( window ).width() < 767 ) {
1219
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1220
+ setTimeout(function(){
1221
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1222
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1223
+ jQuery( '#mysticky_divi_style' ).remove();
1224
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1225
+ if ( welcombar_position == 'top' ) {
1226
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1227
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1228
+ $( 'html' ).css( 'margin-bottom', '' );
1229
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1230
+ $( '.mysticky-welcomebar-apper #mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1231
+ } else {
1232
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1233
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1234
+ $( 'html' ).css( 'margin-top', '' );
1235
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1236
+ }
1237
+ }, trigger_sec );
1238
+ }
1239
+ } else {
1240
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1241
+ setTimeout(function(){
1242
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1243
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1244
+ if ( welcombar_position == 'top' ) {
1245
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1246
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1247
+ $( 'html' ).css( 'margin-bottom', '' );
1248
+ jQuery( '#mysticky_divi_style' ).remove();
1249
+ jQuery( '.mysticky-welcomebar-apper.et_fixed_nav #top-header' ).css( 'top', welcombar_height + 'px' );
1250
+ jQuery( 'head' ).append( '<style id="mysticky_divi_style" type="text/css">.mysticky-welcomebar-apper.et_fixed_nav #main-header {top: ' + welcombar_height + 'px !important}.mysticky-welcomebar-apper.et_fixed_nav #top-header + #main-header{top: ' + divi_total_height + 'px !important}</style>' );
1251
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1252
+ $( '.mysticky-welcomebar-apper #mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1253
+ } else {
1254
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1255
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1256
+ $( 'html' ).css( 'margin-top', '' );
1257
+ jQuery( '#mysticky_divi_style' ).remove();
1258
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1259
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1260
+ }
1261
+ }, trigger_sec );
1262
+ }
1263
+ }
1264
+ }
1265
+ mystickyelements_present();
1266
+ }
1267
+ } );
1268
+
1269
+ jQuery(window).on( 'scroll', function(){
1270
+ if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1271
+ var welcomebar_storage = localStorage.getItem("welcomebar_close");
1272
+ } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1273
+ var welcomebar_storage = sessionStorage.getItem("welcomebar_close");
1274
+ } else {
1275
+ sessionStorage.removeItem('welcomebar_close');
1276
+ localStorage.removeItem('welcomebar_close');
1277
+ var welcomebar_storage = null;
1278
+ }
1279
+ if ( welcomebar_storage === null ){
1280
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1281
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1282
+ if ( welcombar_position == 'top' ) {
1283
+ $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1284
+ }
1285
+ if ( after_trigger === 'after_scroll' ) {
1286
+ var scroll = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
1287
+ var after_scroll_val = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec');
1288
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1289
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1290
+ if( scroll > after_scroll_val ) {
1291
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-desktop' ) ) {
1292
+ if ( $( window ).width() > 767 ) {
1293
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1294
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1295
+ if ( welcombar_position == 'top' ) {
1296
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', (adminBarHeight+ 0 ) + 'px' );
1297
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1298
+ $( 'html' ).css( 'margin-bottom', '' );
1299
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1300
+ $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1301
+ } else {
1302
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1303
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1304
+ $( 'html' ).css( 'margin-top', '' );
1305
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1306
+ }
1307
+ }
1308
+ }
1309
+ if ( $( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1310
+ if ( $( window ).width() < 767 ) {
1311
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-animation' );
1312
+ $( '.mysticky-welcomebar-fixed' ).addClass( 'entry-effect' );
1313
+ if ( welcombar_position == 'top' ) {
1314
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight +0 ) + 'px' );
1315
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1316
+ $( 'html' ).css( 'margin-bottom', '' );
1317
+ $( 'html' ).attr( 'style', 'margin-top: ' + mysticky_welcomebar_height + 'px !important' );
1318
+ $( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1319
+ } else {
1320
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '0' );
1321
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'opacity', '1' );
1322
+ $( 'html' ).css( 'margin-top', '' );
1323
+ $( 'html' ).attr( 'style', 'margin-bottom: ' + mysticky_welcomebar_height + 'px !important' );
1324
+ }
1325
+ }
1326
+ }
1327
+ }
1328
+ }
1329
+ mystickyelements_present();
1330
+ }
1331
+
1332
+ });
1333
+
1334
+ jQuery( '.mysticky-welcomebar-close, .mysticky-welcomebar-btn a' ).on( 'click', function(){
1335
+ if( welcombar_aftersubmission != 'show_welcomebar_every_page' ){
1336
+ if( welcombar_aftersubmission == 'dont_show_welcomebar' ){
1337
+ sessionStorage.removeItem('welcomebar_close');
1338
+ localStorage.setItem('welcomebar_close', 'close');
1339
+ } else if( welcombar_aftersubmission == 'show_welcomebar_next_visit' ) {
1340
+ localStorage.removeItem('welcomebar_close');
1341
+ sessionStorage.setItem('welcomebar_close', 'close');
1342
+ }
1343
+ }
1344
+ var welcombar_position = $( '.mysticky-welcomebar-fixed' ).data('position');
1345
+ var welcombar_height = $( '.mysticky-welcomebar-fixed' ).outerHeight();
1346
+ jQuery( '.mysticky-welcomebar-fixed' ).addClass( 'mysticky-welcomebar-notapper' );
1347
+ jQuery( 'body' ).removeClass( 'mysticky-welcomebar-apper' );
1348
+ jQuery( '.mysticky-welcomebar-fixed' ).slideUp( 'slow' );
1349
+ if ( welcombar_position == 'top' ) {
1350
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', '-' + mysticky_welcomebar_height + 'px' );
1351
+ } else {
1352
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'bottom', '-' + mysticky_welcomebar_height + 'px' );
1353
+ }
1354
+ jQuery( '#mysticky_divi_style' ).remove();
1355
+ jQuery( '.et_fixed_nav #top-header' ).css( 'top', '' );
1356
+ jQuery( 'html' ).css( 'margin-top', '' );
1357
+ jQuery( 'html' ).css( 'margin-bottom', '' );
1358
+ $( '#mysticky-nav' ).css( 'top', '0px' );
1359
+ /*if mystickyelements show*/
1360
+ var mystickyelements_show = $( '.mystickyelements-fixed' ).length;
1361
+ if( mystickyelements_show && $( window ).width() <= 1024 && $( '.mystickyelements-fixed' ).hasClass( 'mystickyelements-position-mobile-top' ) && welcombar_position == 'top' ) {
1362
+ var mystickyelements_height = $( '.mystickyelements-fixed' ).height();
1363
+ $( '.mystickyelements-fixed' ).css( 'top', '' );
1364
+ $( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_height + 'px !important' );
1365
+ }
1366
+ } );
1367
+ });
1368
+ function mystickyelements_present() {
1369
+ var after_trigger = jQuery( '.mysticky-welcomebar-fixed' ).data('after-triger');
1370
+ var mystickyelements_show = jQuery( '.mystickyelements-fixed' ).length;
1371
+ var welcombar_position = jQuery( '.mysticky-welcomebar-fixed' ).data('position');
1372
+ var adminBarHeight = 0;
1373
+ if ( jQuery("#wpadminbar").length != 0 ){
1374
+ var adminBarHeight = jQuery('#wpadminbar').height();
1375
+ }
1376
+
1377
+ if ( jQuery( window ).width() <= 600 && jQuery(window).scrollTop() != 0 && welcombar_position == 'top') {
1378
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', '0px' );
1379
+ var welcombar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1380
+
1381
+ if (jQuery( '.mysticky-welcomebar-fixed' ).css('display') === 'none') {
1382
+ welcombar_height= 0;
1383
+ }
1384
+ jQuery( '#mysticky-nav' ).css( 'top', welcombar_height + 'px' );
1385
+
1386
+ } else if ( welcombar_position == 'top' ) {
1387
+ var mysticky_welcomebar_height = adminBarHeight + jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1388
+ if (jQuery( '.mysticky-welcomebar-fixed' ).css('display') === 'none') {
1389
+ mysticky_welcomebar_height= adminBarHeight + 0;
1390
+ }
1391
+ jQuery( '.mysticky-welcomebar-fixed' ).css( 'top', ( adminBarHeight + 0) + 'px' );
1392
+ jQuery( '#mysticky-nav' ).css( 'top', mysticky_welcomebar_height + 'px' );
1393
+ }
1394
+ if( mystickyelements_show ) {
1395
+
1396
+ var welcombar_height = jQuery( '.mysticky-welcomebar-fixed' ).outerHeight();
1397
+ var mystickyelements_height = jQuery( '.mystickyelements-fixed' ).height();
1398
+ var mystickyelements_total_height = welcombar_height + mystickyelements_height;
1399
+ if ( jQuery( window ).width() <= 1024 && jQuery( '.mystickyelements-fixed' ).hasClass( 'mystickyelements-position-mobile-top' ) ) {
1400
+ if ( after_trigger == 'after_a_few_seconds' ) {
1401
+ if ( jQuery( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1402
+ var trigger_sec = jQuery( '.mysticky-welcomebar-fixed' ).data('triger-sec') * 1000;
1403
+ setTimeout(function(){
1404
+ if ( welcombar_position == 'top' ) {
1405
+ jQuery( '.mystickyelements-fixed' ).css( 'top', welcombar_height );
1406
+ jQuery( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_total_height + 'px !important' );
1407
+ } else {
1408
+ jQuery( '.mystickyelements-fixed' ).css( 'top', '' );
1409
+ jQuery( 'html' ).attr( 'style', 'margin-bottom: ' + welcombar_height + 'px !important' );
1410
+ }
1411
+ }, trigger_sec );
1412
+ }
1413
+ } else if ( after_trigger === 'after_scroll' ) {
1414
+ var scroll = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
1415
+ var after_scroll_val = $( '.mysticky-welcomebar-fixed' ).data('triger-sec');
1416
+ if( scroll > after_scroll_val ) {
1417
+ if ( jQuery( '.mysticky-welcomebar-fixed' ).hasClass( 'mysticky-welcomebar-display-mobile' ) ) {
1418
+ if ( welcombar_position == 'top' ) {
1419
+ jQuery( '.mystickyelements-fixed' ).css( 'top', welcombar_height );
1420
+ jQuery( 'html' ).attr( 'style', 'margin-top: ' + mystickyelements_total_height + 'px !important' );
1421
+ } else {
1422
+ jQuery( '.mystickyelements-fixed' ).css( 'top', '' );
1423
+ jQuery( 'html' ).attr( 'style', 'margin-bottom: ' + welcombar_height + 'px !important' );
1424
+ }
1425
+ }
1426
+ }
1427
+ }
1428
+ }
1429
+ }
1430
+ }
1431
+ jQuery(".mysticky-welcomebar-fixed").on(
1432
+ "animationend MSAnimationEnd webkitAnimationEnd oAnimationEnd",
1433
+ function() {
1434
+ jQuery(this).removeClass("animation-start");
1435
+ }
1436
+ );
1437
+ jQuery(document).ready(function() {
1438
+ var container = jQuery(".mysticky-welcomebar-fixed");
1439
+ var refreshId = setInterval(function() {
1440
+ container.addClass("animation-start");
1441
+ }, 3500);
1442
+ });
1443
+
1444
+ </script>
1445
+
1446
+ <?php
1447
+ if( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] == 'System Stack' ){
1448
+ $welcomebar['mysticky_welcomebar_font'] = '-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"';
1449
+ }
1450
+
1451
+ $welcomebar['mysticky_welcomebar_font'] = (isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] == 'Inherit') ? strtolower($welcomebar['mysticky_welcomebar_font']) : $welcomebar['mysticky_welcomebar_font'];
1452
+ ?>
1453
+
1454
+ <style>
1455
+ /*-------------New-----*/
1456
+
1457
+
1458
+
1459
+ /*--------------------------------------------------------------------------------------------*/
1460
+
1461
+ .mysticky-welcomebar-fixed , .mysticky-welcomebar-fixed * {
1462
+ -webkit-box-sizing: border-box;
1463
+ -moz-box-sizing: border-box;
1464
+ box-sizing: border-box;
1465
+ }
1466
+ .mysticky-welcomebar-fixed {
1467
+ background-color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_bgcolor']) ?>;
1468
+ font-family: <?php echo esc_attr($welcomebar['mysticky_welcomebar_font']) ?>;
1469
+ position: fixed;
1470
+ left: 0;
1471
+ right: 0;
1472
+ z-index: 9999999;
1473
+ opacity: 0;
1474
+ }
1475
+ .mysticky-welcomebar-fixed-wrap {
1476
+ min-height: 60px;
1477
+ padding: 20px 50px;
1478
+ display: flex;
1479
+ align-items: center;
1480
+ justify-content: center;
1481
+ width: 100%;
1482
+ height: 100%;
1483
+ }
1484
+ .mysticky-welcomebar-animation {
1485
+ -webkit-transition: all 1s ease 0s;
1486
+ -moz-transition: all 1s ease 0s;
1487
+ transition: all 1s ease 0s;
1488
+ }
1489
+ .mysticky-welcomebar-position-top {
1490
+ top:0;
1491
+ }
1492
+ .mysticky-welcomebar-position-bottom {
1493
+ bottom:0;
1494
+ }
1495
+ .mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in {
1496
+ top: -60px;
1497
+ }
1498
+ .mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in {
1499
+ bottom: -60px;
1500
+ }
1501
+ .mysticky-welcomebar-entry-effect-fade {
1502
+ opacity: 0;
1503
+ }
1504
+ .mysticky-welcomebar-entry-effect-none {
1505
+ display: none;
1506
+ }
1507
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-content p a{
1508
+ text-decoration: underline;
1509
+ text-decoration-thickness: 1px;
1510
+ text-underline-offset: 0.25ch;
1511
+ }
1512
+
1513
+
1514
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-content p a,
1515
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-content p {
1516
+ color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_bgtxtcolor']) ?>;
1517
+ font-size: <?php echo esc_attr($welcomebar['mysticky_welcomebar_fontsize']) ?>px;
1518
+ margin: 0;
1519
+ padding: 0;
1520
+ line-height: 1.2;
1521
+ font-weight: 400;
1522
+ font-family:<?php echo esc_attr($welcomebar['mysticky_welcomebar_font']); ?>
1523
+ }
1524
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
1525
+ padding-left: 30px;
1526
+ display: none;
1527
+ line-height: 1;
1528
+ }
1529
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
1530
+ display: block;
1531
+ }
1532
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a {
1533
+ background-color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_btncolor']); ?>;
1534
+ font-family: inherit;
1535
+ color: <?php echo esc_attr($welcomebar['mysticky_welcomebar_btntxtcolor']); ?>;
1536
+ border-radius: 4px;
1537
+ text-decoration: none;
1538
+ display: inline-block;
1539
+ vertical-align: top;
1540
+ line-height: 1.2;
1541
+ font-size: <?php echo esc_attr($welcomebar['mysticky_welcomebar_fontsize']); ?>px;
1542
+ font-weight: 400;
1543
+ padding: 5px 20px;
1544
+ white-space: nowrap;
1545
+ }
1546
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn a:hover {
1547
+ /*opacity: 0.7;*/
1548
+ -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
1549
+ -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
1550
+ box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
1551
+ }
1552
+
1553
+
1554
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close {
1555
+ display: none;
1556
+ vertical-align: top;
1557
+ width: 30px;
1558
+ height: 30px;
1559
+ text-align: center;
1560
+ line-height: 30px;
1561
+ border-radius: 5px;
1562
+ color: #000;
1563
+ position: absolute;
1564
+ top: 5px;
1565
+ right: 10px;
1566
+ outline: none;
1567
+ font-family: Lato;
1568
+ text-decoration: none;
1569
+ text-shadow: 0 0 0px #fff;
1570
+ -webkit-transition: all 0.5s ease 0s;
1571
+ -moz-transition: all 0.5s ease 0s;
1572
+ transition: all 0.5s ease 0s;
1573
+ -webkit-transform-origin: 50% 50%;
1574
+ -moz-transform-origin: 50% 50%;
1575
+ transform-origin: 50% 50%;
1576
+ }
1577
+
1578
+
1579
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close:hover {
1580
+ opacity: 1;
1581
+ -webkit-transform: rotate(180deg);
1582
+ -moz-transform: rotate(180deg);
1583
+ transform: rotate(180deg);
1584
+ }
1585
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-close span.dashicons {
1586
+ font-size: 27px;
1587
+ }
1588
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
1589
+ display: inline-block;
1590
+ }
1591
+
1592
+ /* Animated Buttons */
1593
+ .mysticky-welcomebar-btn a {
1594
+ -webkit-animation-duration: 1s;
1595
+ animation-duration: 1s;
1596
+ }
1597
+ @-webkit-keyframes flash {
1598
+ from,
1599
+ 50%,
1600
+ to {
1601
+ opacity: 1;
1602
+ }
1603
+
1604
+ 25%,
1605
+ 75% {
1606
+ opacity: 0;
1607
+ }
1608
+ }
1609
+ @keyframes flash {
1610
+ from,
1611
+ 50%,
1612
+ to {
1613
+ opacity: 1;
1614
+ }
1615
+
1616
+ 25%,
1617
+ 75% {
1618
+ opacity: 0;
1619
+ }
1620
+ }
1621
+ .mysticky-welcomebar-attention-flash.animation-start .mysticky-welcomebar-btn a {
1622
+ -webkit-animation-name: flash;
1623
+ animation-name: flash;
1624
+ }
1625
+
1626
+ @keyframes shake {
1627
+ from,
1628
+ to {
1629
+ -webkit-transform: translate3d(0, 0, 0);
1630
+ transform: translate3d(0, 0, 0);
1631
+ }
1632
+
1633
+ 10%,
1634
+ 30%,
1635
+ 50%,
1636
+ 70%,
1637
+ 90% {
1638
+ -webkit-transform: translate3d(-10px, 0, 0);
1639
+ transform: translate3d(-10px, 0, 0);
1640
+ }
1641
+
1642
+ 20%,
1643
+ 40%,
1644
+ 60%,
1645
+ 80% {
1646
+ -webkit-transform: translate3d(10px, 0, 0);
1647
+ transform: translate3d(10px, 0, 0);
1648
+ }
1649
+ }
1650
+
1651
+ .mysticky-welcomebar-attention-shake.animation-start .mysticky-welcomebar-btn a {
1652
+ -webkit-animation-name: shake;
1653
+ animation-name: shake;
1654
+ }
1655
+
1656
+ @-webkit-keyframes swing {
1657
+ 20% {
1658
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
1659
+ transform: rotate3d(0, 0, 1, 15deg);
1660
+ }
1661
+
1662
+ 40% {
1663
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
1664
+ transform: rotate3d(0, 0, 1, -10deg);
1665
+ }
1666
+
1667
+ 60% {
1668
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
1669
+ transform: rotate3d(0, 0, 1, 5deg);
1670
+ }
1671
+
1672
+ 80% {
1673
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
1674
+ transform: rotate3d(0, 0, 1, -5deg);
1675
+ }
1676
+
1677
+ to {
1678
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
1679
+ transform: rotate3d(0, 0, 1, 0deg);
1680
+ }
1681
+ }
1682
+
1683
+ @keyframes swing {
1684
+ 20% {
1685
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
1686
+ transform: rotate3d(0, 0, 1, 15deg);
1687
+ }
1688
+
1689
+ 40% {
1690
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
1691
+ transform: rotate3d(0, 0, 1, -10deg);
1692
+ }
1693
+
1694
+ 60% {
1695
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
1696
+ transform: rotate3d(0, 0, 1, 5deg);
1697
+ }
1698
+
1699
+ 80% {
1700
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
1701
+ transform: rotate3d(0, 0, 1, -5deg);
1702
+ }
1703
+
1704
+ to {
1705
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
1706
+ transform: rotate3d(0, 0, 1, 0deg);
1707
+ }
1708
+ }
1709
+
1710
+ .mysticky-welcomebar-attention-swing.animation-start .mysticky-welcomebar-btn a {
1711
+ -webkit-transform-origin: top center;
1712
+ transform-origin: top center;
1713
+ -webkit-animation-name: swing;
1714
+ animation-name: swing;
1715
+ }
1716
+
1717
+ @-webkit-keyframes tada {
1718
+ from {
1719
+ -webkit-transform: scale3d(1, 1, 1);
1720
+ transform: scale3d(1, 1, 1);
1721
+ }
1722
+
1723
+ 10%,
1724
+ 20% {
1725
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1726
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1727
+ }
1728
+
1729
+ 30%,
1730
+ 50%,
1731
+ 70%,
1732
+ 90% {
1733
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1734
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1735
+ }
1736
+
1737
+ 40%,
1738
+ 60%,
1739
+ 80% {
1740
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1741
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1742
+ }
1743
+
1744
+ to {
1745
+ -webkit-transform: scale3d(1, 1, 1);
1746
+ transform: scale3d(1, 1, 1);
1747
+ }
1748
+ }
1749
+
1750
+ @keyframes tada {
1751
+ from {
1752
+ -webkit-transform: scale3d(1, 1, 1);
1753
+ transform: scale3d(1, 1, 1);
1754
+ }
1755
+
1756
+ 10%,
1757
+ 20% {
1758
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1759
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1760
+ }
1761
+
1762
+ 30%,
1763
+ 50%,
1764
+ 70%,
1765
+ 90% {
1766
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1767
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1768
+ }
1769
+
1770
+ 40%,
1771
+ 60%,
1772
+ 80% {
1773
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1774
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1775
+ }
1776
+
1777
+ to {
1778
+ -webkit-transform: scale3d(1, 1, 1);
1779
+ transform: scale3d(1, 1, 1);
1780
+ }
1781
+ }
1782
+
1783
+ .mysticky-welcomebar-attention-tada.animation-start .mysticky-welcomebar-btn a {
1784
+ -webkit-animation-name: tada;
1785
+ animation-name: tada;
1786
+ }
1787
+
1788
+ @-webkit-keyframes heartBeat {
1789
+ 0% {
1790
+ -webkit-transform: scale(1);
1791
+ transform: scale(1);
1792
+ }
1793
+
1794
+ 14% {
1795
+ -webkit-transform: scale(1.3);
1796
+ transform: scale(1.3);
1797
+ }
1798
+
1799
+ 28% {
1800
+ -webkit-transform: scale(1);
1801
+ transform: scale(1);
1802
+ }
1803
+
1804
+ 42% {
1805
+ -webkit-transform: scale(1.3);
1806
+ transform: scale(1.3);
1807
+ }
1808
+
1809
+ 70% {
1810
+ -webkit-transform: scale(1);
1811
+ transform: scale(1);
1812
+ }
1813
+ }
1814
+
1815
+ @keyframes heartBeat {
1816
+ 0% {
1817
+ -webkit-transform: scale(1);
1818
+ transform: scale(1);
1819
+ }
1820
+
1821
+ 14% {
1822
+ -webkit-transform: scale(1.3);
1823
+ transform: scale(1.3);
1824
+ }
1825
+
1826
+ 28% {
1827
+ -webkit-transform: scale(1);
1828
+ transform: scale(1);
1829
+ }
1830
+
1831
+ 42% {
1832
+ -webkit-transform: scale(1.3);
1833
+ transform: scale(1.3);
1834
+ }
1835
+
1836
+ 70% {
1837
+ -webkit-transform: scale(1);
1838
+ transform: scale(1);
1839
+ }
1840
+ }
1841
+
1842
+ .mysticky-welcomebar-attention-heartbeat.animation-start .mysticky-welcomebar-btn a {
1843
+ -webkit-animation-name: heartBeat;
1844
+ animation-name: heartBeat;
1845
+ -webkit-animation-duration: 1.3s;
1846
+ animation-duration: 1.3s;
1847
+ -webkit-animation-timing-function: ease-in-out;
1848
+ animation-timing-function: ease-in-out;
1849
+ }
1850
+
1851
+ @-webkit-keyframes wobble {
1852
+ from {
1853
+ -webkit-transform: translate3d(0, 0, 0);
1854
+ transform: translate3d(0, 0, 0);
1855
+ }
1856
+
1857
+ 15% {
1858
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1859
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1860
+ }
1861
+
1862
+ 30% {
1863
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1864
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1865
+ }
1866
+
1867
+ 45% {
1868
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1869
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1870
+ }
1871
+
1872
+ 60% {
1873
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1874
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1875
+ }
1876
+
1877
+ 75% {
1878
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1879
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1880
+ }
1881
+
1882
+ to {
1883
+ -webkit-transform: translate3d(0, 0, 0);
1884
+ transform: translate3d(0, 0, 0);
1885
+ }
1886
+ }
1887
+
1888
+ @keyframes wobble {
1889
+ from {
1890
+ -webkit-transform: translate3d(0, 0, 0);
1891
+ transform: translate3d(0, 0, 0);
1892
+ }
1893
+
1894
+ 15% {
1895
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1896
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1897
+ }
1898
+
1899
+ 30% {
1900
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1901
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1902
+ }
1903
+
1904
+ 45% {
1905
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1906
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1907
+ }
1908
+
1909
+ 60% {
1910
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1911
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1912
+ }
1913
+
1914
+ 75% {
1915
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1916
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1917
+ }
1918
+
1919
+ to {
1920
+ -webkit-transform: translate3d(0, 0, 0);
1921
+ transform: translate3d(0, 0, 0);
1922
+ }
1923
+ }
1924
+
1925
+ .mysticky-welcomebar-attention-wobble.animation-start .mysticky-welcomebar-btn a {
1926
+ -webkit-animation-name: wobble;
1927
+ animation-name: wobble;
1928
+ }
1929
+ @media only screen and (min-width: 768px) {
1930
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-fade.entry-effect {
1931
+ opacity: 1;
1932
+ }
1933
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-entry-effect-none.entry-effect {
1934
+ display: block;
1935
+ }
1936
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-fixed ,
1937
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1938
+ top: 0;
1939
+ }
1940
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-fixed ,
1941
+ .mysticky-welcomebar-display-desktop.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1942
+ bottom: 0;
1943
+ }
1944
+ }
1945
+ @media only screen and (max-width: 767px) {
1946
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-entry-effect-fade.entry-effect {
1947
+ opacity: 1;
1948
+ }
1949
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-entry-effect-none.entry-effect {
1950
+ display: block;
1951
+ }
1952
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-top.mysticky-welcomebar-fixed ,
1953
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-top.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1954
+ top: 0;
1955
+ }
1956
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-bottom.mysticky-welcomebar-fixed ,
1957
+ .mysticky-welcomebar-display-mobile.mysticky-welcomebar-position-bottom.mysticky-welcomebar-entry-effect-slide-in.entry-effect.mysticky-welcomebar-fixed {
1958
+ bottom: 0;
1959
+ }
1960
+ /*.mysticky-welcomebar-fixed.mysticky-welcomebar-showx-desktop .mysticky-welcomebar-close {
1961
+ display: none;
1962
+ }
1963
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-showx-mobile .mysticky-welcomebar-close {
1964
+ display: inline-block;
1965
+ }*/
1966
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-desktop .mysticky-welcomebar-btn {
1967
+ display: none;
1968
+ }
1969
+ .mysticky-welcomebar-fixed.mysticky-welcomebar-btn-mobile .mysticky-welcomebar-btn {
1970
+ display: block;
1971
+ }
1972
+ }
1973
+ @media only screen and (max-width: 480px) {
1974
+ .mysticky-welcomebar-fixed-wrap {
1975
+ padding: 15px 36px 35px 10px;
1976
+ }
1977
+ .mysticky-welcomebar-fixed .mysticky-welcomebar-btn {
1978
+ padding-left: 10px;
1979
+ }
1980
+ /*.mysticky-welcomebar-fixed .mysticky-welcomebar-close {
1981
+ right: 7px;
1982
+ }*/
1983
+ }
1984
+ body.mysticky-welcomebar-apper #wpadminbar{
1985
+ z-index:99999999;
1986
+ }
1987
+ </style>
1988
+ <?php
1989
+ }
1990
  add_action( 'wp_footer', 'mysticky_welcome_bar_frontend' );