Version Description
- FIX: Confliction with Jet Pack Contact Plugin
- TWEAK: Pricing Page
Download this release
Release Info
Developer | contact-banker |
Plugin | Gallery Bank: WordPress Photo Gallery Plugin |
Version | 4.0.14 |
Comparing to | |
See all releases |
Code changes from version 4.0.13 to 4.0.14
- assets/global/img/banner.png +0 -0
- gallery-bank.php +1 -1
- includes/footer.php +14 -0
- readme.txt +5 -0
- views/galleries/add-gallery.php +5 -1
- views/premium-editions/premium-editions.php +20 -2228
- views/wizard/wizard.php +20 -2227
assets/global/img/banner.png
CHANGED
Binary file
|
gallery-bank.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Photo Gallery Plugin for WordPress. Creates elegant responsive gallery widget, image gallery, media gallery, portfolio gallery and albums.
|
6 |
* Author: Tech Banker
|
7 |
* Author URI: https://gallery-bank.tech-banker.com
|
8 |
-
* Version: 4.0.
|
9 |
* License: GPLv3
|
10 |
* Text Domain: gallery-bank
|
11 |
* Domain Path: /languages
|
5 |
* Description: Photo Gallery Plugin for WordPress. Creates elegant responsive gallery widget, image gallery, media gallery, portfolio gallery and albums.
|
6 |
* Author: Tech Banker
|
7 |
* Author URI: https://gallery-bank.tech-banker.com
|
8 |
+
* Version: 4.0.14
|
9 |
* License: GPLv3
|
10 |
* Text Domain: gallery-bank
|
11 |
* Domain Path: /languages
|
includes/footer.php
CHANGED
@@ -752,6 +752,16 @@ if (!is_user_logged_in()) {
|
|
752 |
},
|
753 |
submitHandler: function ()
|
754 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
755 |
if (array_delete_images.length > 0)
|
756 |
{
|
757 |
jQuery.post(ajaxurl,
|
@@ -811,6 +821,10 @@ if (!is_user_logged_in()) {
|
|
811 |
{
|
812 |
jQuery("#contrast_value").val(jQuery("#contrast").val());
|
813 |
});
|
|
|
|
|
|
|
|
|
814 |
set_gallery_cover_image();
|
815 |
<?php
|
816 |
global $wp_version;
|
752 |
},
|
753 |
submitHandler: function ()
|
754 |
{
|
755 |
+
if (window.CKEDITOR)
|
756 |
+
{
|
757 |
+
var gallery_description = jQuery("#ux_txtarea_gallery_heading_content").val(CKEDITOR.instances["ux_heading_content"].getData());
|
758 |
+
} else if (jQuery("#wp-ux_heading_content-wrap").hasClass("tmce-active"))
|
759 |
+
{
|
760 |
+
var gallery_description = jQuery("#ux_txtarea_gallery_heading_content").val(tinyMCE.get("ux_heading_content").getContent());
|
761 |
+
} else
|
762 |
+
{
|
763 |
+
var gallery_description = jQuery("#ux_txtarea_gallery_heading_content").val(jQuery("#ux_heading_content").val());
|
764 |
+
}
|
765 |
if (array_delete_images.length > 0)
|
766 |
{
|
767 |
jQuery.post(ajaxurl,
|
821 |
{
|
822 |
jQuery("#contrast_value").val(jQuery("#contrast").val());
|
823 |
});
|
824 |
+
if (window.CKEDITOR)
|
825 |
+
{
|
826 |
+
CKEDITOR.replace("ux_heading_content");
|
827 |
+
}
|
828 |
set_gallery_cover_image();
|
829 |
<?php
|
830 |
global $wp_version;
|
readme.txt
CHANGED
@@ -510,6 +510,11 @@ The following set of lists are the minimum requirements for installing Gallery B
|
|
510 |
|
511 |
== Changelog ==
|
512 |
|
|
|
|
|
|
|
|
|
|
|
513 |
= 4.0.13 =
|
514 |
|
515 |
* FIX: Minor Bugs
|
510 |
|
511 |
== Changelog ==
|
512 |
|
513 |
+
= 4.0.14 =
|
514 |
+
|
515 |
+
* FIX: Confliction with Jet Pack Contact Plugin
|
516 |
+
* TWEAK: Pricing Page
|
517 |
+
|
518 |
= 4.0.13 =
|
519 |
|
520 |
* FIX: Minor Bugs
|
views/galleries/add-gallery.php
CHANGED
@@ -121,7 +121,11 @@ if (!is_user_logged_in()) {
|
|
121 |
<?php echo $gb_gallery_description_title; ?> :
|
122 |
<i class="icon-custom-question tooltips" data-original-title="<?php echo $gb_add_gallery_description_tooltip; ?>" data-placement="right"></i>
|
123 |
</label>
|
124 |
-
|
|
|
|
|
|
|
|
|
125 |
</div>
|
126 |
<div class="tabbable-custom">
|
127 |
<ul class="nav nav-tabs">
|
121 |
<?php echo $gb_gallery_description_title; ?> :
|
122 |
<i class="icon-custom-question tooltips" data-original-title="<?php echo $gb_add_gallery_description_tooltip; ?>" data-placement="right"></i>
|
123 |
</label>
|
124 |
+
<?php
|
125 |
+
$gallery_description = isset($get_gallery_meta_data_unserialize["gallery_description"]) ? htmlspecialchars_decode($get_gallery_meta_data_unserialize["gallery_description"]) : "";
|
126 |
+
wp_editor($gallery_description, 'ux_heading_content', array('teeny' => TRUE, 'textarea_name' => 'description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
127 |
+
?>
|
128 |
+
<textarea rows="10" class="form-control" name="ux_txtarea_gallery_heading_content" style="display:none;" id="ux_txtarea_gallery_heading_content" placeholder="<?php echo $gb_add_gallery_description_placeholder; ?>"></textarea>
|
129 |
</div>
|
130 |
<div class="tabbable-custom">
|
131 |
<ul class="nav nav-tabs">
|
views/premium-editions/premium-editions.php
CHANGED
@@ -52,2241 +52,33 @@ if (!is_user_logged_in()) {
|
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_premium_editions">
|
54 |
<div class="form-body">
|
55 |
-
|
56 |
-
|
57 |
-
#go-pricing-table-464 .gw-go {
|
58 |
-
margin-left: -30px;
|
59 |
-
}
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
}
|
64 |
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
|
69 |
-
|
70 |
-
|
71 |
-
}
|
72 |
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
padding-top: 1px;
|
77 |
-
}
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
}
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
|
87 |
-
|
88 |
-
|
89 |
-
color: #333333;
|
90 |
-
max-width: 130px;
|
91 |
-
}
|
92 |
-
|
93 |
-
#go-pricing-table-464 .gw-go-tooltip:before {
|
94 |
-
border-top-color: #9d9d9d;
|
95 |
-
}
|
96 |
-
|
97 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header,
|
98 |
-
#go-pricing-table-464 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom,
|
99 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before,
|
100 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-btn {
|
101 |
-
background-color: #ef463b;
|
102 |
-
}
|
103 |
-
|
104 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap span,
|
105 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinf div,
|
106 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinb div {
|
107 |
-
color: #ef463b;
|
108 |
-
}
|
109 |
-
|
110 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header h3 {
|
111 |
-
font-size: 22px !important;
|
112 |
-
line-height: 24px !important;
|
113 |
-
}
|
114 |
-
|
115 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap > span {
|
116 |
-
font-size: 55px !important;
|
117 |
-
line-height: 60px !important;
|
118 |
-
font-weight: bold !important;
|
119 |
-
}
|
120 |
-
|
121 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap small {
|
122 |
-
font-size: 16px !important;
|
123 |
-
line-height: 18px !important;
|
124 |
-
}
|
125 |
-
|
126 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] {
|
127 |
-
font-size: 14px !important;
|
128 |
-
line-height: 16px !important;
|
129 |
-
}
|
130 |
-
|
131 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] {
|
132 |
-
font-size: 20px !important;
|
133 |
-
line-height: 22px !important;
|
134 |
-
font-weight: bold !important;
|
135 |
-
}
|
136 |
-
|
137 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] {
|
138 |
-
font-size: 17px !important;
|
139 |
-
line-height: 19px !important;
|
140 |
-
font-weight: bold !important;
|
141 |
-
}
|
142 |
-
|
143 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] {
|
144 |
-
font-size: 17px !important;
|
145 |
-
line-height: 19px !important;
|
146 |
-
font-weight: bold !important;
|
147 |
-
}
|
148 |
-
|
149 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] {
|
150 |
-
font-size: 17px !important;
|
151 |
-
line-height: 19px !important;
|
152 |
-
font-weight: bold !important;
|
153 |
-
}
|
154 |
-
|
155 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] {
|
156 |
-
font-size: 17px !important;
|
157 |
-
line-height: 19px !important;
|
158 |
-
}
|
159 |
-
|
160 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] {
|
161 |
-
font-size: 14px !important;
|
162 |
-
line-height: 16px !important;
|
163 |
-
}
|
164 |
-
|
165 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] {
|
166 |
-
font-size: 20px !important;
|
167 |
-
line-height: 22px !important;
|
168 |
-
font-weight: bold !important;
|
169 |
-
}
|
170 |
-
|
171 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] {
|
172 |
-
font-size: 17px !important;
|
173 |
-
line-height: 19px !important;
|
174 |
-
}
|
175 |
-
|
176 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] {
|
177 |
-
font-size: 17px !important;
|
178 |
-
line-height: 19px !important;
|
179 |
-
}
|
180 |
-
|
181 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] {
|
182 |
-
font-size: 17px !important;
|
183 |
-
line-height: 19px !important;
|
184 |
-
}
|
185 |
-
|
186 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] {
|
187 |
-
font-size: 14px !important;
|
188 |
-
line-height: 16px !important;
|
189 |
-
}
|
190 |
-
|
191 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] {
|
192 |
-
font-size: 20px !important;
|
193 |
-
line-height: 22px !important;
|
194 |
-
font-weight: bold !important;
|
195 |
-
}
|
196 |
-
|
197 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] {
|
198 |
-
font-size: 17px !important;
|
199 |
-
line-height: 19px !important;
|
200 |
-
}
|
201 |
-
|
202 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] {
|
203 |
-
font-size: 17px !important;
|
204 |
-
line-height: 19px !important;
|
205 |
-
}
|
206 |
-
|
207 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] {
|
208 |
-
font-size: 17px !important;
|
209 |
-
line-height: 19px !important;
|
210 |
-
}
|
211 |
-
|
212 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] {
|
213 |
-
font-size: 14px !important;
|
214 |
-
line-height: 16px !important;
|
215 |
-
}
|
216 |
-
|
217 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] {
|
218 |
-
font-size: 20px !important;
|
219 |
-
line-height: 22px !important;
|
220 |
-
font-weight: bold !important;
|
221 |
-
}
|
222 |
-
|
223 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] {
|
224 |
-
font-size: 17px !important;
|
225 |
-
line-height: 19px !important;
|
226 |
-
}
|
227 |
-
|
228 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] {
|
229 |
-
font-size: 17px !important;
|
230 |
-
line-height: 19px !important;
|
231 |
-
}
|
232 |
-
|
233 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] {
|
234 |
-
font-size: 14px !important;
|
235 |
-
line-height: 16px !important;
|
236 |
-
}
|
237 |
-
|
238 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] {
|
239 |
-
font-size: 20px !important;
|
240 |
-
line-height: 22px !important;
|
241 |
-
font-weight: bold !important;
|
242 |
-
}
|
243 |
-
|
244 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] {
|
245 |
-
font-size: 17px !important;
|
246 |
-
line-height: 19px !important;
|
247 |
-
}
|
248 |
-
|
249 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] {
|
250 |
-
font-size: 17px !important;
|
251 |
-
line-height: 19px !important;
|
252 |
-
}
|
253 |
-
|
254 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] {
|
255 |
-
font-size: 17px !important;
|
256 |
-
line-height: 19px !important;
|
257 |
-
}
|
258 |
-
|
259 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] {
|
260 |
-
font-size: 17px !important;
|
261 |
-
line-height: 19px !important;
|
262 |
-
}
|
263 |
-
|
264 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="26"] {
|
265 |
-
font-size: 17px !important;
|
266 |
-
line-height: 19px !important;
|
267 |
-
}
|
268 |
-
|
269 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="27"] {
|
270 |
-
font-size: 17px !important;
|
271 |
-
line-height: 19px !important;
|
272 |
-
}
|
273 |
-
|
274 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="28"] {
|
275 |
-
font-size: 17px !important;
|
276 |
-
line-height: 19px !important;
|
277 |
-
}
|
278 |
-
|
279 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="29"] {
|
280 |
-
font-size: 17px !important;
|
281 |
-
line-height: 19px !important;
|
282 |
-
}
|
283 |
-
|
284 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="30"] {
|
285 |
-
font-size: 17px !important;
|
286 |
-
line-height: 19px !important;
|
287 |
-
}
|
288 |
-
|
289 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="31"] {
|
290 |
-
font-size: 14px !important;
|
291 |
-
line-height: 16px !important;
|
292 |
-
}
|
293 |
-
|
294 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="32"] {
|
295 |
-
font-size: 20px !important;
|
296 |
-
line-height: 22px !important;
|
297 |
-
font-weight: bold !important;
|
298 |
-
}
|
299 |
-
|
300 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="33"] {
|
301 |
-
font-size: 17px !important;
|
302 |
-
line-height: 19px !important;
|
303 |
-
}
|
304 |
-
|
305 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="34"] {
|
306 |
-
font-size: 17px !important;
|
307 |
-
line-height: 19px !important;
|
308 |
-
}
|
309 |
-
|
310 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="35"] {
|
311 |
-
font-size: 17px !important;
|
312 |
-
line-height: 19px !important;
|
313 |
-
}
|
314 |
-
|
315 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="36"] {
|
316 |
-
font-size: 17px !important;
|
317 |
-
line-height: 19px !important;
|
318 |
-
}
|
319 |
-
|
320 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="37"] {
|
321 |
-
font-size: 17px !important;
|
322 |
-
line-height: 19px !important;
|
323 |
-
}
|
324 |
-
|
325 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="38"] {
|
326 |
-
font-size: 14px !important;
|
327 |
-
line-height: 16px !important;
|
328 |
-
}
|
329 |
-
|
330 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="39"] {
|
331 |
-
font-size: 20px !important;
|
332 |
-
line-height: 22px !important;
|
333 |
-
font-weight: bold !important;
|
334 |
-
}
|
335 |
-
|
336 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="40"] {
|
337 |
-
font-size: 17px !important;
|
338 |
-
line-height: 19px !important;
|
339 |
-
}
|
340 |
-
|
341 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="41"] {
|
342 |
-
font-size: 17px !important;
|
343 |
-
line-height: 19px !important;
|
344 |
-
}
|
345 |
-
|
346 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="42"] {
|
347 |
-
font-size: 17px !important;
|
348 |
-
line-height: 19px !important;
|
349 |
-
}
|
350 |
-
|
351 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="43"] {
|
352 |
-
font-size: 17px !important;
|
353 |
-
line-height: 19px !important;
|
354 |
-
}
|
355 |
-
|
356 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="44"] {
|
357 |
-
font-size: 17px !important;
|
358 |
-
line-height: 19px !important;
|
359 |
-
}
|
360 |
-
|
361 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="45"] {
|
362 |
-
font-size: 17px !important;
|
363 |
-
line-height: 19px !important;
|
364 |
-
}
|
365 |
-
|
366 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="46"] {
|
367 |
-
font-size: 17px !important;
|
368 |
-
line-height: 19px !important;
|
369 |
-
}
|
370 |
-
|
371 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="47"] {
|
372 |
-
font-size: 17px !important;
|
373 |
-
line-height: 19px !important;
|
374 |
-
}
|
375 |
-
|
376 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="48"] {
|
377 |
-
font-size: 14px !important;
|
378 |
-
line-height: 16px !important;
|
379 |
-
}
|
380 |
-
|
381 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="49"] {
|
382 |
-
font-size: 20px !important;
|
383 |
-
line-height: 22px !important;
|
384 |
-
font-weight: bold !important;
|
385 |
-
}
|
386 |
-
|
387 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="50"] {
|
388 |
-
font-size: 17px !important;
|
389 |
-
line-height: 19px !important;
|
390 |
-
}
|
391 |
-
|
392 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="51"] {
|
393 |
-
font-size: 17px !important;
|
394 |
-
line-height: 19px !important;
|
395 |
-
}
|
396 |
-
|
397 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="52"] {
|
398 |
-
font-size: 17px !important;
|
399 |
-
line-height: 19px !important;
|
400 |
-
}
|
401 |
-
|
402 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="53"] {
|
403 |
-
font-size: 17px !important;
|
404 |
-
line-height: 19px !important;
|
405 |
-
}
|
406 |
-
|
407 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="54"] {
|
408 |
-
font-size: 17px !important;
|
409 |
-
line-height: 19px !important;
|
410 |
-
}
|
411 |
-
|
412 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="55"] {
|
413 |
-
font-size: 17px !important;
|
414 |
-
line-height: 19px !important;
|
415 |
-
}
|
416 |
-
|
417 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="56"] {
|
418 |
-
font-size: 17px !important;
|
419 |
-
line-height: 19px !important;
|
420 |
-
}
|
421 |
-
|
422 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="57"] {
|
423 |
-
font-size: 17px !important;
|
424 |
-
line-height: 19px !important;
|
425 |
-
}
|
426 |
-
|
427 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="58"] {
|
428 |
-
font-size: 17px !important;
|
429 |
-
line-height: 19px !important;
|
430 |
-
}
|
431 |
-
|
432 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="59"] {
|
433 |
-
font-size: 17px !important;
|
434 |
-
line-height: 19px !important;
|
435 |
-
}
|
436 |
-
|
437 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="60"] {
|
438 |
-
font-size: 17px !important;
|
439 |
-
line-height: 19px !important;
|
440 |
-
}
|
441 |
-
|
442 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="61"] {
|
443 |
-
font-size: 17px !important;
|
444 |
-
line-height: 19px !important;
|
445 |
-
}
|
446 |
-
|
447 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="62"] {
|
448 |
-
font-size: 17px !important;
|
449 |
-
line-height: 19px !important;
|
450 |
-
}
|
451 |
-
|
452 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="63"] {
|
453 |
-
font-size: 17px !important;
|
454 |
-
line-height: 19px !important;
|
455 |
-
}
|
456 |
-
|
457 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="64"] {
|
458 |
-
font-size: 17px !important;
|
459 |
-
line-height: 19px !important;
|
460 |
-
}
|
461 |
-
|
462 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="65"] {
|
463 |
-
font-size: 17px !important;
|
464 |
-
line-height: 19px !important;
|
465 |
-
}
|
466 |
-
|
467 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="66"] {
|
468 |
-
font-size: 17px !important;
|
469 |
-
line-height: 19px !important;
|
470 |
-
}
|
471 |
-
|
472 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="67"] {
|
473 |
-
font-size: 17px !important;
|
474 |
-
line-height: 19px !important;
|
475 |
-
}
|
476 |
-
|
477 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="68"] {
|
478 |
-
font-size: 17px !important;
|
479 |
-
line-height: 19px !important;
|
480 |
-
}
|
481 |
-
|
482 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="69"] {
|
483 |
-
font-size: 17px !important;
|
484 |
-
line-height: 19px !important;
|
485 |
-
}
|
486 |
-
|
487 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="70"] {
|
488 |
-
font-size: 17px !important;
|
489 |
-
line-height: 19px !important;
|
490 |
-
}
|
491 |
-
|
492 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="71"] {
|
493 |
-
font-size: 17px !important;
|
494 |
-
line-height: 19px !important;
|
495 |
-
}
|
496 |
-
|
497 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="72"] {
|
498 |
-
font-size: 17px !important;
|
499 |
-
line-height: 19px !important;
|
500 |
-
}
|
501 |
-
|
502 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="73"] {
|
503 |
-
font-size: 17px !important;
|
504 |
-
line-height: 19px !important;
|
505 |
-
}
|
506 |
-
|
507 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="74"] {
|
508 |
-
font-size: 17px !important;
|
509 |
-
line-height: 19px !important;
|
510 |
-
}
|
511 |
-
|
512 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="75"] {
|
513 |
-
font-size: 17px !important;
|
514 |
-
line-height: 19px !important;
|
515 |
-
}
|
516 |
-
|
517 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="76"] {
|
518 |
-
font-size: 14px !important;
|
519 |
-
line-height: 16px !important;
|
520 |
-
}
|
521 |
-
|
522 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="77"] {
|
523 |
-
font-size: 20px !important;
|
524 |
-
line-height: 22px !important;
|
525 |
-
font-weight: bold !important;
|
526 |
-
}
|
527 |
-
|
528 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="78"] {
|
529 |
-
font-size: 17px !important;
|
530 |
-
line-height: 19px !important;
|
531 |
-
}
|
532 |
-
|
533 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="79"] {
|
534 |
-
font-size: 17px !important;
|
535 |
-
line-height: 19px !important;
|
536 |
-
}
|
537 |
-
|
538 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="80"] {
|
539 |
-
font-size: 17px !important;
|
540 |
-
line-height: 19px !important;
|
541 |
-
}
|
542 |
-
|
543 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
544 |
-
font-size: 14px !important;
|
545 |
-
}
|
546 |
-
|
547 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
548 |
-
background-color: #ef463b !important;
|
549 |
-
color: #ffffff !important;
|
550 |
-
}
|
551 |
-
|
552 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header,
|
553 |
-
#go-pricing-table-464 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom,
|
554 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before,
|
555 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-btn {
|
556 |
-
background-color: #05458c;
|
557 |
-
}
|
558 |
-
|
559 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap span,
|
560 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinf div,
|
561 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinb div {
|
562 |
-
color: #05458c;
|
563 |
-
}
|
564 |
-
|
565 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header h3 {
|
566 |
-
font-size: 22px !important;
|
567 |
-
line-height: 24px !important;
|
568 |
-
}
|
569 |
-
|
570 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap > span {
|
571 |
-
font-size: 55px !important;
|
572 |
-
line-height: 60px !important;
|
573 |
-
font-weight: bold !important;
|
574 |
-
}
|
575 |
-
|
576 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap small {
|
577 |
-
font-size: 16px !important;
|
578 |
-
line-height: 18px !important;
|
579 |
-
}
|
580 |
-
|
581 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] {
|
582 |
-
font-size: 14px !important;
|
583 |
-
line-height: 16px !important;
|
584 |
-
}
|
585 |
-
|
586 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] {
|
587 |
-
font-size: 20px !important;
|
588 |
-
line-height: 22px !important;
|
589 |
-
font-weight: bold !important;
|
590 |
-
}
|
591 |
-
|
592 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] {
|
593 |
-
font-size: 17px !important;
|
594 |
-
line-height: 19px !important;
|
595 |
-
font-weight: bold !important;
|
596 |
-
}
|
597 |
-
|
598 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] {
|
599 |
-
font-size: 17px !important;
|
600 |
-
line-height: 19px !important;
|
601 |
-
font-weight: bold !important;
|
602 |
-
}
|
603 |
-
|
604 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] {
|
605 |
-
font-size: 17px !important;
|
606 |
-
line-height: 19px !important;
|
607 |
-
font-weight: bold !important;
|
608 |
-
}
|
609 |
-
|
610 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] {
|
611 |
-
font-size: 17px !important;
|
612 |
-
line-height: 19px !important;
|
613 |
-
}
|
614 |
-
|
615 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] {
|
616 |
-
font-size: 14px !important;
|
617 |
-
line-height: 16px !important;
|
618 |
-
}
|
619 |
-
|
620 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] {
|
621 |
-
font-size: 20px !important;
|
622 |
-
line-height: 22px !important;
|
623 |
-
font-weight: bold !important;
|
624 |
-
}
|
625 |
-
|
626 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] {
|
627 |
-
font-size: 17px !important;
|
628 |
-
line-height: 19px !important;
|
629 |
-
}
|
630 |
-
|
631 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] {
|
632 |
-
font-size: 17px !important;
|
633 |
-
line-height: 19px !important;
|
634 |
-
}
|
635 |
-
|
636 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] {
|
637 |
-
font-size: 17px !important;
|
638 |
-
line-height: 19px !important;
|
639 |
-
}
|
640 |
-
|
641 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] {
|
642 |
-
font-size: 14px !important;
|
643 |
-
line-height: 16px !important;
|
644 |
-
}
|
645 |
-
|
646 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] {
|
647 |
-
font-size: 20px !important;
|
648 |
-
line-height: 22px !important;
|
649 |
-
font-weight: bold !important;
|
650 |
-
}
|
651 |
-
|
652 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] {
|
653 |
-
font-size: 17px !important;
|
654 |
-
line-height: 19px !important;
|
655 |
-
}
|
656 |
-
|
657 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] {
|
658 |
-
font-size: 17px !important;
|
659 |
-
line-height: 19px !important;
|
660 |
-
}
|
661 |
-
|
662 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] {
|
663 |
-
font-size: 17px !important;
|
664 |
-
line-height: 19px !important;
|
665 |
-
}
|
666 |
-
|
667 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] {
|
668 |
-
font-size: 14px !important;
|
669 |
-
line-height: 16px !important;
|
670 |
-
}
|
671 |
-
|
672 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] {
|
673 |
-
font-size: 20px !important;
|
674 |
-
line-height: 22px !important;
|
675 |
-
font-weight: bold !important;
|
676 |
-
}
|
677 |
-
|
678 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] {
|
679 |
-
font-size: 17px !important;
|
680 |
-
line-height: 19px !important;
|
681 |
-
}
|
682 |
-
|
683 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] {
|
684 |
-
font-size: 17px !important;
|
685 |
-
line-height: 19px !important;
|
686 |
-
}
|
687 |
-
|
688 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] {
|
689 |
-
font-size: 14px !important;
|
690 |
-
line-height: 16px !important;
|
691 |
-
}
|
692 |
-
|
693 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] {
|
694 |
-
font-size: 20px !important;
|
695 |
-
line-height: 22px !important;
|
696 |
-
font-weight: bold !important;
|
697 |
-
}
|
698 |
-
|
699 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] {
|
700 |
-
font-size: 17px !important;
|
701 |
-
line-height: 19px !important;
|
702 |
-
}
|
703 |
-
|
704 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] {
|
705 |
-
font-size: 17px !important;
|
706 |
-
line-height: 19px !important;
|
707 |
-
}
|
708 |
-
|
709 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] {
|
710 |
-
font-size: 17px !important;
|
711 |
-
line-height: 19px !important;
|
712 |
-
}
|
713 |
-
|
714 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] {
|
715 |
-
font-size: 17px !important;
|
716 |
-
line-height: 19px !important;
|
717 |
-
}
|
718 |
-
|
719 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="26"] {
|
720 |
-
font-size: 17px !important;
|
721 |
-
line-height: 19px !important;
|
722 |
-
}
|
723 |
-
|
724 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="27"] {
|
725 |
-
font-size: 17px !important;
|
726 |
-
line-height: 19px !important;
|
727 |
-
}
|
728 |
-
|
729 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="28"] {
|
730 |
-
font-size: 17px !important;
|
731 |
-
line-height: 19px !important;
|
732 |
-
}
|
733 |
-
|
734 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="29"] {
|
735 |
-
font-size: 17px !important;
|
736 |
-
line-height: 19px !important;
|
737 |
-
}
|
738 |
-
|
739 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="30"] {
|
740 |
-
font-size: 17px !important;
|
741 |
-
line-height: 19px !important;
|
742 |
-
}
|
743 |
-
|
744 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="31"] {
|
745 |
-
font-size: 14px !important;
|
746 |
-
line-height: 16px !important;
|
747 |
-
}
|
748 |
-
|
749 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="32"] {
|
750 |
-
font-size: 20px !important;
|
751 |
-
line-height: 22px !important;
|
752 |
-
font-weight: bold !important;
|
753 |
-
}
|
754 |
-
|
755 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="33"] {
|
756 |
-
font-size: 17px !important;
|
757 |
-
line-height: 19px !important;
|
758 |
-
}
|
759 |
-
|
760 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="34"] {
|
761 |
-
font-size: 17px !important;
|
762 |
-
line-height: 19px !important;
|
763 |
-
}
|
764 |
-
|
765 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="35"] {
|
766 |
-
font-size: 17px !important;
|
767 |
-
line-height: 19px !important;
|
768 |
-
}
|
769 |
-
|
770 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="36"] {
|
771 |
-
font-size: 17px !important;
|
772 |
-
line-height: 19px !important;
|
773 |
-
}
|
774 |
-
|
775 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="37"] {
|
776 |
-
font-size: 17px !important;
|
777 |
-
line-height: 19px !important;
|
778 |
-
}
|
779 |
-
|
780 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="38"] {
|
781 |
-
font-size: 14px !important;
|
782 |
-
line-height: 16px !important;
|
783 |
-
}
|
784 |
-
|
785 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="39"] {
|
786 |
-
font-size: 20px !important;
|
787 |
-
line-height: 22px !important;
|
788 |
-
font-weight: bold !important;
|
789 |
-
}
|
790 |
-
|
791 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="40"] {
|
792 |
-
font-size: 17px !important;
|
793 |
-
line-height: 19px !important;
|
794 |
-
}
|
795 |
-
|
796 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="41"] {
|
797 |
-
font-size: 17px !important;
|
798 |
-
line-height: 19px !important;
|
799 |
-
}
|
800 |
-
|
801 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="42"] {
|
802 |
-
font-size: 17px !important;
|
803 |
-
line-height: 19px !important;
|
804 |
-
}
|
805 |
-
|
806 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="43"] {
|
807 |
-
font-size: 17px !important;
|
808 |
-
line-height: 19px !important;
|
809 |
-
}
|
810 |
-
|
811 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="44"] {
|
812 |
-
font-size: 17px !important;
|
813 |
-
line-height: 19px !important;
|
814 |
-
}
|
815 |
-
|
816 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="45"] {
|
817 |
-
font-size: 17px !important;
|
818 |
-
line-height: 19px !important;
|
819 |
-
}
|
820 |
-
|
821 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="46"] {
|
822 |
-
font-size: 17px !important;
|
823 |
-
line-height: 19px !important;
|
824 |
-
}
|
825 |
-
|
826 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="47"] {
|
827 |
-
font-size: 17px !important;
|
828 |
-
line-height: 19px !important;
|
829 |
-
}
|
830 |
-
|
831 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="48"] {
|
832 |
-
font-size: 14px !important;
|
833 |
-
line-height: 16px !important;
|
834 |
-
}
|
835 |
-
|
836 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="49"] {
|
837 |
-
font-size: 20px !important;
|
838 |
-
line-height: 22px !important;
|
839 |
-
font-weight: bold !important;
|
840 |
-
}
|
841 |
-
|
842 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="50"] {
|
843 |
-
font-size: 17px !important;
|
844 |
-
line-height: 19px !important;
|
845 |
-
}
|
846 |
-
|
847 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="51"] {
|
848 |
-
font-size: 17px !important;
|
849 |
-
line-height: 19px !important;
|
850 |
-
}
|
851 |
-
|
852 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="52"] {
|
853 |
-
font-size: 17px !important;
|
854 |
-
line-height: 19px !important;
|
855 |
-
}
|
856 |
-
|
857 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="53"] {
|
858 |
-
font-size: 17px !important;
|
859 |
-
line-height: 19px !important;
|
860 |
-
}
|
861 |
-
|
862 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="54"] {
|
863 |
-
font-size: 17px !important;
|
864 |
-
line-height: 19px !important;
|
865 |
-
}
|
866 |
-
|
867 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="55"] {
|
868 |
-
font-size: 17px !important;
|
869 |
-
line-height: 19px !important;
|
870 |
-
}
|
871 |
-
|
872 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="56"] {
|
873 |
-
font-size: 17px !important;
|
874 |
-
line-height: 19px !important;
|
875 |
-
}
|
876 |
-
|
877 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="57"] {
|
878 |
-
font-size: 17px !important;
|
879 |
-
line-height: 19px !important;
|
880 |
-
}
|
881 |
-
|
882 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="58"] {
|
883 |
-
font-size: 17px !important;
|
884 |
-
line-height: 19px !important;
|
885 |
-
}
|
886 |
-
|
887 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="59"] {
|
888 |
-
font-size: 17px !important;
|
889 |
-
line-height: 19px !important;
|
890 |
-
}
|
891 |
-
|
892 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="60"] {
|
893 |
-
font-size: 17px !important;
|
894 |
-
line-height: 19px !important;
|
895 |
-
}
|
896 |
-
|
897 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="61"] {
|
898 |
-
font-size: 17px !important;
|
899 |
-
line-height: 19px !important;
|
900 |
-
}
|
901 |
-
|
902 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="62"] {
|
903 |
-
font-size: 17px !important;
|
904 |
-
line-height: 19px !important;
|
905 |
-
}
|
906 |
-
|
907 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="63"] {
|
908 |
-
font-size: 17px !important;
|
909 |
-
line-height: 19px !important;
|
910 |
-
}
|
911 |
-
|
912 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="64"] {
|
913 |
-
font-size: 17px !important;
|
914 |
-
line-height: 19px !important;
|
915 |
-
}
|
916 |
-
|
917 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="65"] {
|
918 |
-
font-size: 17px !important;
|
919 |
-
line-height: 19px !important;
|
920 |
-
}
|
921 |
-
|
922 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="66"] {
|
923 |
-
font-size: 17px !important;
|
924 |
-
line-height: 19px !important;
|
925 |
-
}
|
926 |
-
|
927 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="67"] {
|
928 |
-
font-size: 17px !important;
|
929 |
-
line-height: 19px !important;
|
930 |
-
}
|
931 |
-
|
932 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="68"] {
|
933 |
-
font-size: 17px !important;
|
934 |
-
line-height: 19px !important;
|
935 |
-
}
|
936 |
-
|
937 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="69"] {
|
938 |
-
font-size: 17px !important;
|
939 |
-
line-height: 19px !important;
|
940 |
-
}
|
941 |
-
|
942 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="70"] {
|
943 |
-
font-size: 17px !important;
|
944 |
-
line-height: 19px !important;
|
945 |
-
}
|
946 |
-
|
947 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="71"] {
|
948 |
-
font-size: 17px !important;
|
949 |
-
line-height: 19px !important;
|
950 |
-
}
|
951 |
-
|
952 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="72"] {
|
953 |
-
font-size: 17px !important;
|
954 |
-
line-height: 19px !important;
|
955 |
-
}
|
956 |
-
|
957 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="73"] {
|
958 |
-
font-size: 17px !important;
|
959 |
-
line-height: 19px !important;
|
960 |
-
}
|
961 |
-
|
962 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="74"] {
|
963 |
-
font-size: 17px !important;
|
964 |
-
line-height: 19px !important;
|
965 |
-
}
|
966 |
-
|
967 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="75"] {
|
968 |
-
font-size: 17px !important;
|
969 |
-
line-height: 19px !important;
|
970 |
-
}
|
971 |
-
|
972 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="76"] {
|
973 |
-
font-size: 14px !important;
|
974 |
-
line-height: 16px !important;
|
975 |
-
}
|
976 |
-
|
977 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="77"] {
|
978 |
-
font-size: 20px !important;
|
979 |
-
line-height: 22px !important;
|
980 |
-
font-weight: bold !important;
|
981 |
-
}
|
982 |
-
|
983 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="78"] {
|
984 |
-
font-size: 17px !important;
|
985 |
-
line-height: 19px !important;
|
986 |
-
}
|
987 |
-
|
988 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="79"] {
|
989 |
-
font-size: 17px !important;
|
990 |
-
line-height: 19px !important;
|
991 |
-
}
|
992 |
-
|
993 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="80"] {
|
994 |
-
font-size: 17px !important;
|
995 |
-
line-height: 19px !important;
|
996 |
-
}
|
997 |
-
|
998 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
999 |
-
font-size: 14px !important;
|
1000 |
-
}
|
1001 |
-
|
1002 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1003 |
-
background-color: #05458c !important;
|
1004 |
-
color: #ffffff !important;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header,
|
1008 |
-
#go-pricing-table-464 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom,
|
1009 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before,
|
1010 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-btn {
|
1011 |
-
background-color: #16bbdc;
|
1012 |
-
}
|
1013 |
-
|
1014 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap span,
|
1015 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinf div,
|
1016 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinb div {
|
1017 |
-
color: #16bbdc;
|
1018 |
-
}
|
1019 |
-
|
1020 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header h3 {
|
1021 |
-
font-size: 22px !important;
|
1022 |
-
line-height: 24px !important;
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap > span {
|
1026 |
-
font-size: 55px !important;
|
1027 |
-
line-height: 60px !important;
|
1028 |
-
font-weight: bold !important;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap small {
|
1032 |
-
font-size: 16px !important;
|
1033 |
-
line-height: 18px !important;
|
1034 |
-
}
|
1035 |
-
|
1036 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] {
|
1037 |
-
font-size: 14px !important;
|
1038 |
-
line-height: 16px !important;
|
1039 |
-
}
|
1040 |
-
|
1041 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] {
|
1042 |
-
font-size: 20px !important;
|
1043 |
-
line-height: 22px !important;
|
1044 |
-
font-weight: bold !important;
|
1045 |
-
}
|
1046 |
-
|
1047 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] {
|
1048 |
-
font-size: 17px !important;
|
1049 |
-
line-height: 19px !important;
|
1050 |
-
font-weight: bold !important;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] {
|
1054 |
-
font-size: 17px !important;
|
1055 |
-
line-height: 19px !important;
|
1056 |
-
font-weight: bold !important;
|
1057 |
-
}
|
1058 |
-
|
1059 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] {
|
1060 |
-
font-size: 17px !important;
|
1061 |
-
line-height: 19px !important;
|
1062 |
-
font-weight: bold !important;
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] {
|
1066 |
-
font-size: 17px !important;
|
1067 |
-
line-height: 19px !important;
|
1068 |
-
}
|
1069 |
-
|
1070 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] {
|
1071 |
-
font-size: 14px !important;
|
1072 |
-
line-height: 16px !important;
|
1073 |
-
}
|
1074 |
-
|
1075 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] {
|
1076 |
-
font-size: 20px !important;
|
1077 |
-
line-height: 22px !important;
|
1078 |
-
font-weight: bold !important;
|
1079 |
-
}
|
1080 |
-
|
1081 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] {
|
1082 |
-
font-size: 17px !important;
|
1083 |
-
line-height: 19px !important;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] {
|
1087 |
-
font-size: 17px !important;
|
1088 |
-
line-height: 19px !important;
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] {
|
1092 |
-
font-size: 17px !important;
|
1093 |
-
line-height: 19px !important;
|
1094 |
-
}
|
1095 |
-
|
1096 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] {
|
1097 |
-
font-size: 14px !important;
|
1098 |
-
line-height: 16px !important;
|
1099 |
-
}
|
1100 |
-
|
1101 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] {
|
1102 |
-
font-size: 20px !important;
|
1103 |
-
line-height: 22px !important;
|
1104 |
-
font-weight: bold !important;
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] {
|
1108 |
-
font-size: 17px !important;
|
1109 |
-
line-height: 19px !important;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] {
|
1113 |
-
font-size: 17px !important;
|
1114 |
-
line-height: 19px !important;
|
1115 |
-
}
|
1116 |
-
|
1117 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] {
|
1118 |
-
font-size: 17px !important;
|
1119 |
-
line-height: 19px !important;
|
1120 |
-
}
|
1121 |
-
|
1122 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] {
|
1123 |
-
font-size: 14px !important;
|
1124 |
-
line-height: 16px !important;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] {
|
1128 |
-
font-size: 20px !important;
|
1129 |
-
line-height: 22px !important;
|
1130 |
-
font-weight: bold !important;
|
1131 |
-
}
|
1132 |
-
|
1133 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] {
|
1134 |
-
font-size: 17px !important;
|
1135 |
-
line-height: 19px !important;
|
1136 |
-
}
|
1137 |
-
|
1138 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] {
|
1139 |
-
font-size: 17px !important;
|
1140 |
-
line-height: 19px !important;
|
1141 |
-
}
|
1142 |
-
|
1143 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] {
|
1144 |
-
font-size: 14px !important;
|
1145 |
-
line-height: 16px !important;
|
1146 |
-
}
|
1147 |
-
|
1148 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] {
|
1149 |
-
font-size: 20px !important;
|
1150 |
-
line-height: 22px !important;
|
1151 |
-
font-weight: bold !important;
|
1152 |
-
}
|
1153 |
-
|
1154 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] {
|
1155 |
-
font-size: 17px !important;
|
1156 |
-
line-height: 19px !important;
|
1157 |
-
}
|
1158 |
-
|
1159 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] {
|
1160 |
-
font-size: 17px !important;
|
1161 |
-
line-height: 19px !important;
|
1162 |
-
}
|
1163 |
-
|
1164 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] {
|
1165 |
-
font-size: 17px !important;
|
1166 |
-
line-height: 19px !important;
|
1167 |
-
}
|
1168 |
-
|
1169 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] {
|
1170 |
-
font-size: 17px !important;
|
1171 |
-
line-height: 19px !important;
|
1172 |
-
}
|
1173 |
-
|
1174 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="26"] {
|
1175 |
-
font-size: 17px !important;
|
1176 |
-
line-height: 19px !important;
|
1177 |
-
}
|
1178 |
-
|
1179 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="27"] {
|
1180 |
-
font-size: 17px !important;
|
1181 |
-
line-height: 19px !important;
|
1182 |
-
}
|
1183 |
-
|
1184 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="28"] {
|
1185 |
-
font-size: 17px !important;
|
1186 |
-
line-height: 19px !important;
|
1187 |
-
}
|
1188 |
-
|
1189 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="29"] {
|
1190 |
-
font-size: 17px !important;
|
1191 |
-
line-height: 19px !important;
|
1192 |
-
}
|
1193 |
-
|
1194 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="30"] {
|
1195 |
-
font-size: 17px !important;
|
1196 |
-
line-height: 19px !important;
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="31"] {
|
1200 |
-
font-size: 14px !important;
|
1201 |
-
line-height: 16px !important;
|
1202 |
-
}
|
1203 |
-
|
1204 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="32"] {
|
1205 |
-
font-size: 20px !important;
|
1206 |
-
line-height: 22px !important;
|
1207 |
-
font-weight: bold !important;
|
1208 |
-
}
|
1209 |
-
|
1210 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="33"] {
|
1211 |
-
font-size: 17px !important;
|
1212 |
-
line-height: 19px !important;
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="34"] {
|
1216 |
-
font-size: 17px !important;
|
1217 |
-
line-height: 19px !important;
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="35"] {
|
1221 |
-
font-size: 17px !important;
|
1222 |
-
line-height: 19px !important;
|
1223 |
-
}
|
1224 |
-
|
1225 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="36"] {
|
1226 |
-
font-size: 17px !important;
|
1227 |
-
line-height: 19px !important;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="37"] {
|
1231 |
-
font-size: 17px !important;
|
1232 |
-
line-height: 19px !important;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="38"] {
|
1236 |
-
font-size: 14px !important;
|
1237 |
-
line-height: 16px !important;
|
1238 |
-
}
|
1239 |
-
|
1240 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="39"] {
|
1241 |
-
font-size: 20px !important;
|
1242 |
-
line-height: 22px !important;
|
1243 |
-
font-weight: bold !important;
|
1244 |
-
}
|
1245 |
-
|
1246 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="40"] {
|
1247 |
-
font-size: 17px !important;
|
1248 |
-
line-height: 19px !important;
|
1249 |
-
}
|
1250 |
-
|
1251 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="41"] {
|
1252 |
-
font-size: 17px !important;
|
1253 |
-
line-height: 19px !important;
|
1254 |
-
}
|
1255 |
-
|
1256 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="42"] {
|
1257 |
-
font-size: 17px !important;
|
1258 |
-
line-height: 19px !important;
|
1259 |
-
}
|
1260 |
-
|
1261 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="43"] {
|
1262 |
-
font-size: 17px !important;
|
1263 |
-
line-height: 19px !important;
|
1264 |
-
}
|
1265 |
-
|
1266 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="44"] {
|
1267 |
-
font-size: 17px !important;
|
1268 |
-
line-height: 19px !important;
|
1269 |
-
}
|
1270 |
-
|
1271 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="45"] {
|
1272 |
-
font-size: 17px !important;
|
1273 |
-
line-height: 19px !important;
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="46"] {
|
1277 |
-
font-size: 17px !important;
|
1278 |
-
line-height: 19px !important;
|
1279 |
-
}
|
1280 |
-
|
1281 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="47"] {
|
1282 |
-
font-size: 17px !important;
|
1283 |
-
line-height: 19px !important;
|
1284 |
-
}
|
1285 |
-
|
1286 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="48"] {
|
1287 |
-
font-size: 14px !important;
|
1288 |
-
line-height: 16px !important;
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="49"] {
|
1292 |
-
font-size: 20px !important;
|
1293 |
-
line-height: 22px !important;
|
1294 |
-
font-weight: bold !important;
|
1295 |
-
}
|
1296 |
-
|
1297 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="50"] {
|
1298 |
-
font-size: 17px !important;
|
1299 |
-
line-height: 19px !important;
|
1300 |
-
}
|
1301 |
-
|
1302 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="51"] {
|
1303 |
-
font-size: 17px !important;
|
1304 |
-
line-height: 19px !important;
|
1305 |
-
}
|
1306 |
-
|
1307 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="52"] {
|
1308 |
-
font-size: 17px !important;
|
1309 |
-
line-height: 19px !important;
|
1310 |
-
}
|
1311 |
-
|
1312 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="53"] {
|
1313 |
-
font-size: 17px !important;
|
1314 |
-
line-height: 19px !important;
|
1315 |
-
}
|
1316 |
-
|
1317 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="54"] {
|
1318 |
-
font-size: 17px !important;
|
1319 |
-
line-height: 19px !important;
|
1320 |
-
}
|
1321 |
-
|
1322 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="55"] {
|
1323 |
-
font-size: 17px !important;
|
1324 |
-
line-height: 19px !important;
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="56"] {
|
1328 |
-
font-size: 17px !important;
|
1329 |
-
line-height: 19px !important;
|
1330 |
-
}
|
1331 |
-
|
1332 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="57"] {
|
1333 |
-
font-size: 17px !important;
|
1334 |
-
line-height: 19px !important;
|
1335 |
-
}
|
1336 |
-
|
1337 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="58"] {
|
1338 |
-
font-size: 17px !important;
|
1339 |
-
line-height: 19px !important;
|
1340 |
-
}
|
1341 |
-
|
1342 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="59"] {
|
1343 |
-
font-size: 17px !important;
|
1344 |
-
line-height: 19px !important;
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="60"] {
|
1348 |
-
font-size: 17px !important;
|
1349 |
-
line-height: 19px !important;
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="61"] {
|
1353 |
-
font-size: 17px !important;
|
1354 |
-
line-height: 19px !important;
|
1355 |
-
}
|
1356 |
-
|
1357 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="62"] {
|
1358 |
-
font-size: 17px !important;
|
1359 |
-
line-height: 19px !important;
|
1360 |
-
}
|
1361 |
-
|
1362 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="63"] {
|
1363 |
-
font-size: 17px !important;
|
1364 |
-
line-height: 19px !important;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="64"] {
|
1368 |
-
font-size: 17px !important;
|
1369 |
-
line-height: 19px !important;
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="65"] {
|
1373 |
-
font-size: 17px !important;
|
1374 |
-
line-height: 19px !important;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="66"] {
|
1378 |
-
font-size: 17px !important;
|
1379 |
-
line-height: 19px !important;
|
1380 |
-
}
|
1381 |
-
|
1382 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="67"] {
|
1383 |
-
font-size: 17px !important;
|
1384 |
-
line-height: 19px !important;
|
1385 |
-
}
|
1386 |
-
|
1387 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="68"] {
|
1388 |
-
font-size: 17px !important;
|
1389 |
-
line-height: 19px !important;
|
1390 |
-
}
|
1391 |
-
|
1392 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="69"] {
|
1393 |
-
font-size: 17px !important;
|
1394 |
-
line-height: 19px !important;
|
1395 |
-
}
|
1396 |
-
|
1397 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="70"] {
|
1398 |
-
font-size: 17px !important;
|
1399 |
-
line-height: 19px !important;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="71"] {
|
1403 |
-
font-size: 17px !important;
|
1404 |
-
line-height: 19px !important;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="72"] {
|
1408 |
-
font-size: 17px !important;
|
1409 |
-
line-height: 19px !important;
|
1410 |
-
}
|
1411 |
-
|
1412 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="73"] {
|
1413 |
-
font-size: 17px !important;
|
1414 |
-
line-height: 19px !important;
|
1415 |
-
}
|
1416 |
-
|
1417 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="74"] {
|
1418 |
-
font-size: 17px !important;
|
1419 |
-
line-height: 19px !important;
|
1420 |
-
}
|
1421 |
-
|
1422 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="75"] {
|
1423 |
-
font-size: 17px !important;
|
1424 |
-
line-height: 19px !important;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="76"] {
|
1428 |
-
font-size: 14px !important;
|
1429 |
-
line-height: 16px !important;
|
1430 |
-
}
|
1431 |
-
|
1432 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="77"] {
|
1433 |
-
font-size: 20px !important;
|
1434 |
-
line-height: 22px !important;
|
1435 |
-
font-weight: bold !important;
|
1436 |
-
}
|
1437 |
-
|
1438 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="78"] {
|
1439 |
-
font-size: 17px !important;
|
1440 |
-
line-height: 19px !important;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="79"] {
|
1444 |
-
font-size: 17px !important;
|
1445 |
-
line-height: 19px !important;
|
1446 |
-
}
|
1447 |
-
|
1448 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="80"] {
|
1449 |
-
font-size: 17px !important;
|
1450 |
-
line-height: 19px !important;
|
1451 |
-
}
|
1452 |
-
|
1453 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1454 |
-
font-size: 14px !important;
|
1455 |
-
}
|
1456 |
-
|
1457 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1458 |
-
background-color: #16bbdc !important;
|
1459 |
-
color: #ffffff !important;
|
1460 |
-
}
|
1461 |
-
|
1462 |
-
#go-pricing-table-464 .gw-go {
|
1463 |
-
visibility: inherit;
|
1464 |
-
}
|
1465 |
-
</style>
|
1466 |
-
<style>
|
1467 |
-
@media only screen and (min-width: 480px) and (max-width: 767px) {
|
1468 |
-
#go-pricing-table-464 .gw-go-col-wrap {
|
1469 |
-
width: 50%;
|
1470 |
-
}
|
1471 |
-
}
|
1472 |
-
</style>
|
1473 |
-
<style>
|
1474 |
-
@media only screen and (max-width: 479px) {
|
1475 |
-
#go-pricing-table-464 .gw-go-col-wrap {
|
1476 |
-
width: 100%;
|
1477 |
-
}
|
1478 |
-
}
|
1479 |
-
</style>
|
1480 |
-
<div id="go-pricing-table-464" class="go-pricing" style="margin-bottom:20px;">
|
1481 |
-
<div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="464" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;">
|
1482 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 3385px;">
|
1483 |
-
<div class="gw-go-col gw-go-clean-style5">
|
1484 |
-
<div class="gw-go-col-inner">
|
1485 |
-
<div class="gw-go-col-inner-layer"></div>
|
1486 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
1487 |
-
<div class="gw-go-header gw-go-header-standard">
|
1488 |
-
<div class="gw-go-header-top">
|
1489 |
-
<h3>PERSONAL</h3></div>
|
1490 |
-
<div class="gw-go-header-bottom">
|
1491 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="3.99"><span data-id="currency">€</span><span data-id="amount">3.99</span></span><small>per month</small></div>
|
1492 |
-
</div>
|
1493 |
-
</div>
|
1494 |
-
<ul class="gw-go-body">
|
1495 |
-
<li data-row-index="0">
|
1496 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1497 |
-
</li>
|
1498 |
-
<li class="gw-go-even" data-row-index="1">
|
1499 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1500 |
-
</li>
|
1501 |
-
<li data-row-index="2">
|
1502 |
-
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1503 |
-
</li>
|
1504 |
-
<li class="gw-go-even" data-row-index="3">
|
1505 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
1506 |
-
</li>
|
1507 |
-
<li data-row-index="4">
|
1508 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
1509 |
-
</li>
|
1510 |
-
<li class="gw-go-even" data-row-index="5">
|
1511 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1512 |
-
</li>
|
1513 |
-
<li data-row-index="6">
|
1514 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1515 |
-
</li>
|
1516 |
-
<li class="gw-go-even" data-row-index="7">
|
1517 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1518 |
-
</li>
|
1519 |
-
<li data-row-index="8">
|
1520 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1521 |
-
</li>
|
1522 |
-
<li class="gw-go-even" data-row-index="9">
|
1523 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1524 |
-
</li>
|
1525 |
-
<li data-row-index="10">
|
1526 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1527 |
-
</li>
|
1528 |
-
<li class="gw-go-even" data-row-index="11">
|
1529 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1530 |
-
</li>
|
1531 |
-
<li data-row-index="12">
|
1532 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1533 |
-
</li>
|
1534 |
-
<li class="gw-go-even" data-row-index="13">
|
1535 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1536 |
-
</li>
|
1537 |
-
<li data-row-index="14">
|
1538 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1539 |
-
</li>
|
1540 |
-
<li class="gw-go-even" data-row-index="15">
|
1541 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1542 |
-
</li>
|
1543 |
-
<li data-row-index="16">
|
1544 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1545 |
-
</li>
|
1546 |
-
<li class="gw-go-even" data-row-index="17">
|
1547 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1548 |
-
</li>
|
1549 |
-
<li data-row-index="18">
|
1550 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1551 |
-
</li>
|
1552 |
-
<li class="gw-go-even" data-row-index="19">
|
1553 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1554 |
-
</li>
|
1555 |
-
<li data-row-index="20">
|
1556 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1557 |
-
</li>
|
1558 |
-
<li class="gw-go-even" data-row-index="21">
|
1559 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1560 |
-
</li>
|
1561 |
-
<li data-row-index="22">
|
1562 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1563 |
-
</li>
|
1564 |
-
<li class="gw-go-even" data-row-index="23">
|
1565 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1566 |
-
</li>
|
1567 |
-
<li data-row-index="24">
|
1568 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1569 |
-
</li>
|
1570 |
-
<li class="gw-go-even" data-row-index="25">
|
1571 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1572 |
-
</li>
|
1573 |
-
<li data-row-index="26">
|
1574 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1575 |
-
</li>
|
1576 |
-
<li class="gw-go-even" data-row-index="27">
|
1577 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1578 |
-
</li>
|
1579 |
-
<li data-row-index="28">
|
1580 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1581 |
-
</li>
|
1582 |
-
<li class="gw-go-even" data-row-index="29">
|
1583 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1584 |
-
</li>
|
1585 |
-
<li data-row-index="30">
|
1586 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1587 |
-
</li>
|
1588 |
-
<li class="gw-go-even" data-row-index="31">
|
1589 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1590 |
-
</li>
|
1591 |
-
<li data-row-index="32">
|
1592 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1593 |
-
</li>
|
1594 |
-
<li class="gw-go-even" data-row-index="33">
|
1595 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1596 |
-
</li>
|
1597 |
-
<li data-row-index="34">
|
1598 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1599 |
-
</li>
|
1600 |
-
<li class="gw-go-even" data-row-index="35">
|
1601 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1602 |
-
</li>
|
1603 |
-
<li data-row-index="36">
|
1604 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1605 |
-
</li>
|
1606 |
-
<li class="gw-go-even" data-row-index="37">
|
1607 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1608 |
-
</li>
|
1609 |
-
<li data-row-index="38">
|
1610 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1611 |
-
</li>
|
1612 |
-
<li class="gw-go-even" data-row-index="39">
|
1613 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1614 |
-
</li>
|
1615 |
-
<li data-row-index="40">
|
1616 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1617 |
-
</li>
|
1618 |
-
<li class="gw-go-even" data-row-index="41">
|
1619 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1620 |
-
</li>
|
1621 |
-
<li data-row-index="42">
|
1622 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1623 |
-
</li>
|
1624 |
-
<li class="gw-go-even" data-row-index="43">
|
1625 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1626 |
-
</li>
|
1627 |
-
<li data-row-index="44">
|
1628 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1629 |
-
</li>
|
1630 |
-
<li class="gw-go-even" data-row-index="45">
|
1631 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1632 |
-
</li>
|
1633 |
-
<li data-row-index="46">
|
1634 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1635 |
-
</li>
|
1636 |
-
<li class="gw-go-even" data-row-index="47">
|
1637 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1638 |
-
</li>
|
1639 |
-
<li data-row-index="48">
|
1640 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1641 |
-
</li>
|
1642 |
-
<li class="gw-go-even" data-row-index="49">
|
1643 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1644 |
-
</li>
|
1645 |
-
<li data-row-index="50">
|
1646 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
1647 |
-
</li>
|
1648 |
-
<li class="gw-go-even" data-row-index="51">
|
1649 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
1650 |
-
</li>
|
1651 |
-
<li class="gw-go-even" data-row-index="53">
|
1652 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
1653 |
-
</li>
|
1654 |
-
<li data-row-index="54">
|
1655 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1656 |
-
</li>
|
1657 |
-
<li class="gw-go-even" data-row-index="55">
|
1658 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
1659 |
-
</li>
|
1660 |
-
<li data-row-index="56">
|
1661 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
1662 |
-
</li>
|
1663 |
-
<li class="gw-go-even" data-row-index="57">
|
1664 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
1665 |
-
</li>
|
1666 |
-
<li data-row-index="58">
|
1667 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
1668 |
-
</li>
|
1669 |
-
<li class="gw-go-even" data-row-index="59">
|
1670 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
1671 |
-
</li>
|
1672 |
-
<li data-row-index="60">
|
1673 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
1674 |
-
</li>
|
1675 |
-
<li class="gw-go-even" data-row-index="61">
|
1676 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
1677 |
-
</li>
|
1678 |
-
<li data-row-index="62">
|
1679 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
1680 |
-
</li>
|
1681 |
-
<li class="gw-go-even" data-row-index="63">
|
1682 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
1683 |
-
</li>
|
1684 |
-
<li data-row-index="64">
|
1685 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
1686 |
-
</li>
|
1687 |
-
<li class="gw-go-even" data-row-index="65">
|
1688 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1689 |
-
</li>
|
1690 |
-
<li data-row-index="66">
|
1691 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1692 |
-
</li>
|
1693 |
-
<li class="gw-go-even" data-row-index="67">
|
1694 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1695 |
-
</li>
|
1696 |
-
<li data-row-index="68">
|
1697 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
1698 |
-
</li>
|
1699 |
-
<li class="gw-go-even" data-row-index="69">
|
1700 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
1701 |
-
</li>
|
1702 |
-
<li data-row-index="70">
|
1703 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
1704 |
-
</li>
|
1705 |
-
<li class="gw-go-even" data-row-index="71">
|
1706 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
1707 |
-
</li>
|
1708 |
-
<li data-row-index="72">
|
1709 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
1710 |
-
</li>
|
1711 |
-
<li class="gw-go-even" data-row-index="73">
|
1712 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
1713 |
-
</li>
|
1714 |
-
<li data-row-index="74">
|
1715 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
1716 |
-
</li>
|
1717 |
-
<li class="gw-go-even" data-row-index="75">
|
1718 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
1719 |
-
</li>
|
1720 |
-
<li data-row-index="76">
|
1721 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1722 |
-
</li>
|
1723 |
-
<li class="gw-go-even" data-row-index="77">
|
1724 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
1725 |
-
</li>
|
1726 |
-
<li data-row-index="78">
|
1727 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
1728 |
-
</li>
|
1729 |
-
<li class="gw-go-even" data-row-index="79">
|
1730 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
1731 |
-
</li>
|
1732 |
-
<li data-row-index="80">
|
1733 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1734 |
-
</li>
|
1735 |
-
</ul>
|
1736 |
-
<div class="gw-go-footer-wrap">
|
1737 |
-
<div class="gw-go-footer-spacer"></div>
|
1738 |
-
<div class="gw-go-footer">
|
1739 |
-
<div class="gw-go-footer-rows">
|
1740 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
1741 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
1742 |
-
</div>
|
1743 |
-
</div>
|
1744 |
-
</div>
|
1745 |
-
</div>
|
1746 |
-
</div>
|
1747 |
-
<div class="gw-go-tooltip"></div>
|
1748 |
-
</div>
|
1749 |
-
</div>
|
1750 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 3385px;">
|
1751 |
-
<div class="gw-go-col gw-go-clean-style5">
|
1752 |
-
<div class="gw-go-col-inner">
|
1753 |
-
<div class="gw-go-col-inner-layer"></div>
|
1754 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
1755 |
-
<div class="gw-go-ribbon-right"><img src="<?php echo plugins_url("assets/global/img/ribbon_green_right_top.png", dirname(dirname(__FILE__))); ?>"></div>
|
1756 |
-
<div class="gw-go-header gw-go-header-standard">
|
1757 |
-
<div class="gw-go-header-top">
|
1758 |
-
<h3>BUSINESS</h3></div>
|
1759 |
-
<div class="gw-go-header-bottom">
|
1760 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="7.99"><span data-id="currency">€</span><span data-id="amount">7.99</span></span><small>per month</small></div>
|
1761 |
-
</div>
|
1762 |
-
</div>
|
1763 |
-
<ul class="gw-go-body">
|
1764 |
-
<li data-row-index="0">
|
1765 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1766 |
-
</li>
|
1767 |
-
<li class="gw-go-even" data-row-index="1">
|
1768 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1769 |
-
</li>
|
1770 |
-
<li data-row-index="2">
|
1771 |
-
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1772 |
-
</li>
|
1773 |
-
<li class="gw-go-even" data-row-index="3">
|
1774 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
1775 |
-
</li>
|
1776 |
-
<li data-row-index="4">
|
1777 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
1778 |
-
</li>
|
1779 |
-
<li class="gw-go-even" data-row-index="5">
|
1780 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1781 |
-
</li>
|
1782 |
-
<li data-row-index="6">
|
1783 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1784 |
-
</li>
|
1785 |
-
<li class="gw-go-even" data-row-index="7">
|
1786 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1787 |
-
</li>
|
1788 |
-
<li data-row-index="8">
|
1789 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1790 |
-
</li>
|
1791 |
-
<li class="gw-go-even" data-row-index="9">
|
1792 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1793 |
-
</li>
|
1794 |
-
<li data-row-index="10">
|
1795 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1796 |
-
</li>
|
1797 |
-
<li class="gw-go-even" data-row-index="11">
|
1798 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1799 |
-
</li>
|
1800 |
-
<li data-row-index="12">
|
1801 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1802 |
-
</li>
|
1803 |
-
<li class="gw-go-even" data-row-index="13">
|
1804 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
1805 |
-
</li>
|
1806 |
-
<li data-row-index="14">
|
1807 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
1808 |
-
</li>
|
1809 |
-
<li class="gw-go-even" data-row-index="15">
|
1810 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
1811 |
-
</li>
|
1812 |
-
<li data-row-index="16">
|
1813 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1814 |
-
</li>
|
1815 |
-
<li class="gw-go-even" data-row-index="17">
|
1816 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1817 |
-
</li>
|
1818 |
-
<li data-row-index="18">
|
1819 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1820 |
-
</li>
|
1821 |
-
<li class="gw-go-even" data-row-index="19">
|
1822 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1823 |
-
</li>
|
1824 |
-
<li data-row-index="20">
|
1825 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1826 |
-
</li>
|
1827 |
-
<li class="gw-go-even" data-row-index="21">
|
1828 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1829 |
-
</li>
|
1830 |
-
<li data-row-index="22">
|
1831 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1832 |
-
</li>
|
1833 |
-
<li class="gw-go-even" data-row-index="23">
|
1834 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1835 |
-
</li>
|
1836 |
-
<li data-row-index="24">
|
1837 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1838 |
-
</li>
|
1839 |
-
<li class="gw-go-even" data-row-index="25">
|
1840 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1841 |
-
</li>
|
1842 |
-
<li data-row-index="26">
|
1843 |
-
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
1844 |
-
</li>
|
1845 |
-
<li class="gw-go-even" data-row-index="27">
|
1846 |
-
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
1847 |
-
</li>
|
1848 |
-
<li data-row-index="28">
|
1849 |
-
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
1850 |
-
</li>
|
1851 |
-
<li class="gw-go-even" data-row-index="29">
|
1852 |
-
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
1853 |
-
</li>
|
1854 |
-
<li data-row-index="30">
|
1855 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1856 |
-
</li>
|
1857 |
-
<li class="gw-go-even" data-row-index="31">
|
1858 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1859 |
-
</li>
|
1860 |
-
<li data-row-index="32">
|
1861 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1862 |
-
</li>
|
1863 |
-
<li class="gw-go-even" data-row-index="33">
|
1864 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1865 |
-
</li>
|
1866 |
-
<li data-row-index="34">
|
1867 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1868 |
-
</li>
|
1869 |
-
<li class="gw-go-even" data-row-index="35">
|
1870 |
-
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
1871 |
-
</li>
|
1872 |
-
<li data-row-index="36">
|
1873 |
-
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
1874 |
-
</li>
|
1875 |
-
<li class="gw-go-even" data-row-index="37">
|
1876 |
-
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
1877 |
-
</li>
|
1878 |
-
<li data-row-index="38">
|
1879 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1880 |
-
</li>
|
1881 |
-
<li class="gw-go-even" data-row-index="39">
|
1882 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1883 |
-
</li>
|
1884 |
-
<li data-row-index="40">
|
1885 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1886 |
-
</li>
|
1887 |
-
<li class="gw-go-even" data-row-index="41">
|
1888 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1889 |
-
</li>
|
1890 |
-
<li data-row-index="42">
|
1891 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1892 |
-
</li>
|
1893 |
-
<li class="gw-go-even" data-row-index="43">
|
1894 |
-
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
1895 |
-
</li>
|
1896 |
-
<li data-row-index="44">
|
1897 |
-
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
1898 |
-
</li>
|
1899 |
-
<li class="gw-go-even" data-row-index="45">
|
1900 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1901 |
-
</li>
|
1902 |
-
<li data-row-index="46">
|
1903 |
-
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
1904 |
-
</li>
|
1905 |
-
<li class="gw-go-even" data-row-index="47">
|
1906 |
-
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
1907 |
-
</li>
|
1908 |
-
<li data-row-index="48">
|
1909 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1910 |
-
</li>
|
1911 |
-
<li class="gw-go-even" data-row-index="49">
|
1912 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1913 |
-
</li>
|
1914 |
-
<li data-row-index="50">
|
1915 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
1916 |
-
</li>
|
1917 |
-
<li class="gw-go-even" data-row-index="51">
|
1918 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
1919 |
-
</li>
|
1920 |
-
<li class="gw-go-even" data-row-index="53">
|
1921 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
1922 |
-
</li>
|
1923 |
-
<li data-row-index="54">
|
1924 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
1925 |
-
</li>
|
1926 |
-
<li class="gw-go-even" data-row-index="55">
|
1927 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
1928 |
-
</li>
|
1929 |
-
<li data-row-index="56">
|
1930 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
1931 |
-
</li>
|
1932 |
-
<li class="gw-go-even" data-row-index="57">
|
1933 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
1934 |
-
</li>
|
1935 |
-
<li data-row-index="58">
|
1936 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
1937 |
-
</li>
|
1938 |
-
<li class="gw-go-even" data-row-index="59">
|
1939 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
1940 |
-
</li>
|
1941 |
-
<li data-row-index="60">
|
1942 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
1943 |
-
</li>
|
1944 |
-
<li class="gw-go-even" data-row-index="61">
|
1945 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
1946 |
-
</li>
|
1947 |
-
<li data-row-index="62">
|
1948 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
1949 |
-
</li>
|
1950 |
-
<li class="gw-go-even" data-row-index="63">
|
1951 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
1952 |
-
</li>
|
1953 |
-
<li data-row-index="64">
|
1954 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
1955 |
-
</li>
|
1956 |
-
<li class="gw-go-even" data-row-index="65">
|
1957 |
-
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
1958 |
-
</li>
|
1959 |
-
<li data-row-index="66">
|
1960 |
-
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
1961 |
-
</li>
|
1962 |
-
<li class="gw-go-even" data-row-index="67">
|
1963 |
-
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
1964 |
-
</li>
|
1965 |
-
<li data-row-index="68">
|
1966 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
1967 |
-
</li>
|
1968 |
-
<li class="gw-go-even" data-row-index="69">
|
1969 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
1970 |
-
</li>
|
1971 |
-
<li data-row-index="70">
|
1972 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
1973 |
-
</li>
|
1974 |
-
<li class="gw-go-even" data-row-index="71">
|
1975 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
1976 |
-
</li>
|
1977 |
-
<li data-row-index="72">
|
1978 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
1979 |
-
</li>
|
1980 |
-
<li class="gw-go-even" data-row-index="73">
|
1981 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
1982 |
-
</li>
|
1983 |
-
<li data-row-index="74">
|
1984 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
1985 |
-
</li>
|
1986 |
-
<li class="gw-go-even" data-row-index="75">
|
1987 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
1988 |
-
</li>
|
1989 |
-
<li data-row-index="76">
|
1990 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1991 |
-
</li>
|
1992 |
-
<li class="gw-go-even" data-row-index="77">
|
1993 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
1994 |
-
</li>
|
1995 |
-
<li data-row-index="78">
|
1996 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
1997 |
-
</li>
|
1998 |
-
<li class="gw-go-even" data-row-index="79">
|
1999 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2000 |
-
</li>
|
2001 |
-
<li data-row-index="80">
|
2002 |
-
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2003 |
-
</li>
|
2004 |
-
</ul>
|
2005 |
-
<div class="gw-go-footer-wrap">
|
2006 |
-
<div class="gw-go-footer-spacer"></div>
|
2007 |
-
<div class="gw-go-footer">
|
2008 |
-
<div class="gw-go-footer-rows">
|
2009 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
2010 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2011 |
-
</div>
|
2012 |
-
</div>
|
2013 |
-
</div>
|
2014 |
-
</div>
|
2015 |
-
</div>
|
2016 |
-
<div class="gw-go-tooltip"></div>
|
2017 |
-
</div>
|
2018 |
-
</div>
|
2019 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 3385px;">
|
2020 |
-
<div class="gw-go-col gw-go-clean-style5">
|
2021 |
-
<div class="gw-go-col-inner">
|
2022 |
-
<div class="gw-go-col-inner-layer"></div>
|
2023 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
2024 |
-
<div class="gw-go-header gw-go-header-standard">
|
2025 |
-
<div class="gw-go-header-top">
|
2026 |
-
<h3>DEVELOPER</h3></div>
|
2027 |
-
<div class="gw-go-header-bottom">
|
2028 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="19.99"><span data-id="currency">€</span><span data-id="amount">19.99</span></span><small>per month</small></div>
|
2029 |
-
</div>
|
2030 |
-
</div>
|
2031 |
-
<ul class="gw-go-body">
|
2032 |
-
<li data-row-index="0">
|
2033 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2034 |
-
</li>
|
2035 |
-
<li class="gw-go-even" data-row-index="1">
|
2036 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
2037 |
-
</li>
|
2038 |
-
<li data-row-index="2">
|
2039 |
-
<div class="gw-go-body-cell" style="height: 19px;">5 Installations per License</div>
|
2040 |
-
</li>
|
2041 |
-
<li class="gw-go-even" data-row-index="3">
|
2042 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
2043 |
-
</li>
|
2044 |
-
<li data-row-index="4">
|
2045 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
2046 |
-
</li>
|
2047 |
-
<li class="gw-go-even" data-row-index="5">
|
2048 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
2049 |
-
</li>
|
2050 |
-
<li data-row-index="6">
|
2051 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2052 |
-
</li>
|
2053 |
-
<li class="gw-go-even" data-row-index="7">
|
2054 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
2055 |
-
</li>
|
2056 |
-
<li data-row-index="8">
|
2057 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
2058 |
-
</li>
|
2059 |
-
<li class="gw-go-even" data-row-index="9">
|
2060 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
2061 |
-
</li>
|
2062 |
-
<li data-row-index="10">
|
2063 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
2064 |
-
</li>
|
2065 |
-
<li class="gw-go-even" data-row-index="11">
|
2066 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2067 |
-
</li>
|
2068 |
-
<li data-row-index="12">
|
2069 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
2070 |
-
</li>
|
2071 |
-
<li class="gw-go-even" data-row-index="13">
|
2072 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
2073 |
-
</li>
|
2074 |
-
<li data-row-index="14">
|
2075 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
2076 |
-
</li>
|
2077 |
-
<li class="gw-go-even" data-row-index="15">
|
2078 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
2079 |
-
</li>
|
2080 |
-
<li data-row-index="16">
|
2081 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2082 |
-
</li>
|
2083 |
-
<li class="gw-go-even" data-row-index="17">
|
2084 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
2085 |
-
</li>
|
2086 |
-
<li data-row-index="18">
|
2087 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
2088 |
-
</li>
|
2089 |
-
<li class="gw-go-even" data-row-index="19">
|
2090 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
2091 |
-
</li>
|
2092 |
-
<li data-row-index="20">
|
2093 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2094 |
-
</li>
|
2095 |
-
<li class="gw-go-even" data-row-index="21">
|
2096 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
2097 |
-
</li>
|
2098 |
-
<li data-row-index="22">
|
2099 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
2100 |
-
</li>
|
2101 |
-
<li class="gw-go-even" data-row-index="23">
|
2102 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
2103 |
-
</li>
|
2104 |
-
<li data-row-index="24">
|
2105 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
2106 |
-
</li>
|
2107 |
-
<li class="gw-go-even" data-row-index="25">
|
2108 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
2109 |
-
</li>
|
2110 |
-
<li data-row-index="26">
|
2111 |
-
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
2112 |
-
</li>
|
2113 |
-
<li class="gw-go-even" data-row-index="27">
|
2114 |
-
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
2115 |
-
</li>
|
2116 |
-
<li data-row-index="28">
|
2117 |
-
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
2118 |
-
</li>
|
2119 |
-
<li class="gw-go-even" data-row-index="29">
|
2120 |
-
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
2121 |
-
</li>
|
2122 |
-
<li data-row-index="30">
|
2123 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
2124 |
-
</li>
|
2125 |
-
<li class="gw-go-even" data-row-index="31">
|
2126 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2127 |
-
</li>
|
2128 |
-
<li data-row-index="32">
|
2129 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
2130 |
-
</li>
|
2131 |
-
<li class="gw-go-even" data-row-index="33">
|
2132 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
2133 |
-
</li>
|
2134 |
-
<li data-row-index="34">
|
2135 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
2136 |
-
</li>
|
2137 |
-
<li class="gw-go-even" data-row-index="35">
|
2138 |
-
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
2139 |
-
</li>
|
2140 |
-
<li data-row-index="36">
|
2141 |
-
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
2142 |
-
</li>
|
2143 |
-
<li class="gw-go-even" data-row-index="37">
|
2144 |
-
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
2145 |
-
</li>
|
2146 |
-
<li data-row-index="38">
|
2147 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2148 |
-
</li>
|
2149 |
-
<li class="gw-go-even" data-row-index="39">
|
2150 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
2151 |
-
</li>
|
2152 |
-
<li data-row-index="40">
|
2153 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
2154 |
-
</li>
|
2155 |
-
<li class="gw-go-even" data-row-index="41">
|
2156 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
2157 |
-
</li>
|
2158 |
-
<li data-row-index="42">
|
2159 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
2160 |
-
</li>
|
2161 |
-
<li class="gw-go-even" data-row-index="43">
|
2162 |
-
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
2163 |
-
</li>
|
2164 |
-
<li data-row-index="44">
|
2165 |
-
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
2166 |
-
</li>
|
2167 |
-
<li class="gw-go-even" data-row-index="45">
|
2168 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
2169 |
-
</li>
|
2170 |
-
<li data-row-index="46">
|
2171 |
-
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
2172 |
-
</li>
|
2173 |
-
<li class="gw-go-even" data-row-index="47">
|
2174 |
-
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
2175 |
-
</li>
|
2176 |
-
<li data-row-index="48">
|
2177 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2178 |
-
</li>
|
2179 |
-
<li class="gw-go-even" data-row-index="49">
|
2180 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
2181 |
-
</li>
|
2182 |
-
<li data-row-index="50">
|
2183 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
2184 |
-
</li>
|
2185 |
-
<li class="gw-go-even" data-row-index="51">
|
2186 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
2187 |
-
</li>
|
2188 |
-
<li class="gw-go-even" data-row-index="53">
|
2189 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
2190 |
-
</li>
|
2191 |
-
<li data-row-index="54">
|
2192 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
2193 |
-
</li>
|
2194 |
-
<li class="gw-go-even" data-row-index="55">
|
2195 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
2196 |
-
</li>
|
2197 |
-
<li data-row-index="56">
|
2198 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
2199 |
-
</li>
|
2200 |
-
<li class="gw-go-even" data-row-index="57">
|
2201 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
2202 |
-
</li>
|
2203 |
-
<li data-row-index="58">
|
2204 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
2205 |
-
</li>
|
2206 |
-
<li class="gw-go-even" data-row-index="59">
|
2207 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
2208 |
-
</li>
|
2209 |
-
<li data-row-index="60">
|
2210 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
2211 |
-
</li>
|
2212 |
-
<li class="gw-go-even" data-row-index="61">
|
2213 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
2214 |
-
</li>
|
2215 |
-
<li data-row-index="62">
|
2216 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
2217 |
-
</li>
|
2218 |
-
<li class="gw-go-even" data-row-index="63">
|
2219 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
2220 |
-
</li>
|
2221 |
-
<li data-row-index="64">
|
2222 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
2223 |
-
</li>
|
2224 |
-
<li class="gw-go-even" data-row-index="65">
|
2225 |
-
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
2226 |
-
</li>
|
2227 |
-
<li data-row-index="66">
|
2228 |
-
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
2229 |
-
</li>
|
2230 |
-
<li class="gw-go-even" data-row-index="67">
|
2231 |
-
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
2232 |
-
</li>
|
2233 |
-
<li data-row-index="68">
|
2234 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
2235 |
-
</li>
|
2236 |
-
<li class="gw-go-even" data-row-index="69">
|
2237 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
2238 |
-
</li>
|
2239 |
-
<li data-row-index="70">
|
2240 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
2241 |
-
</li>
|
2242 |
-
<li class="gw-go-even" data-row-index="71">
|
2243 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
2244 |
-
</li>
|
2245 |
-
<li data-row-index="72">
|
2246 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
2247 |
-
</li>
|
2248 |
-
<li class="gw-go-even" data-row-index="73">
|
2249 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
2250 |
-
</li>
|
2251 |
-
<li data-row-index="74">
|
2252 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
2253 |
-
</li>
|
2254 |
-
<li class="gw-go-even" data-row-index="75">
|
2255 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
2256 |
-
</li>
|
2257 |
-
<li data-row-index="76">
|
2258 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2259 |
-
</li>
|
2260 |
-
<li class="gw-go-even" data-row-index="77">
|
2261 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
2262 |
-
</li>
|
2263 |
-
<li data-row-index="78">
|
2264 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
2265 |
-
</li>
|
2266 |
-
<li class="gw-go-even" data-row-index="79">
|
2267 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2268 |
-
</li>
|
2269 |
-
<li data-row-index="80">
|
2270 |
-
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2271 |
-
</li>
|
2272 |
-
</ul>
|
2273 |
-
<div class="gw-go-footer-wrap">
|
2274 |
-
<div class="gw-go-footer-spacer"></div>
|
2275 |
-
<div class="gw-go-footer">
|
2276 |
-
<div class="gw-go-footer-rows">
|
2277 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
2278 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2279 |
-
</div>
|
2280 |
-
</div>
|
2281 |
-
</div>
|
2282 |
-
</div>
|
2283 |
-
</div>
|
2284 |
-
</div>
|
2285 |
-
</div>
|
2286 |
-
</div>
|
2287 |
-
</div>
|
2288 |
-
|
2289 |
-
</div>
|
2290 |
</div>
|
2291 |
</form>
|
2292 |
</div>
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_premium_editions">
|
54 |
<div class="form-body">
|
55 |
+
<div class="wpb_text_column wpb_content_element ">
|
56 |
+
<div class="wpb_wrapper">
|
57 |
+
<style type="text/css">#go-pricing-table-464 .gw-go { margin-left:-30px; } #go-pricing-table-464 .gw-go-col { margin-left:30px; } #go-pricing-table-464 .gw-go-col-wrap { min-width:130px; } #go-pricing-table-464 .gw-go-col-inner { border-radius:8px 8px 8px 8px; } #go-pricing-table-464 ul.gw-go-body, #go-pricing-table-464 ul.gw-go-body li { border:none !important; padding-top:1px; } #go-pricing-table-464 ul.gw-go-body li .gw-go-body-cell { padding-top:1px; } #go-pricing-table-464 ul.gw-go-body { padding-bottom:1px; } #go-pricing-table-464 .gw-go-tooltip-content { background-color:#9d9d9d;color:#333333;max-width:130px; } #go-pricing-table-464 .gw-go-tooltip:before { border-top-color:#9d9d9d; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-btn { background-color:#686868; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinb div { color:#686868; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#686868 !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-btn { background-color:#3c787e; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinb div { color:#3c787e; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#3c787e !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-btn { background-color:#ec4a3d; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinb div { color:#ec4a3d; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#ec4a3d !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go { visibility:inherit; }</style><style>@media only screen and (min-width: 480px) and (max-width: 767px) { #go-pricing-table-464 .gw-go-col-wrap { width:50%; } }</style><style>@media only screen and (max-width: 479px) { #go-pricing-table-464 .gw-go-col-wrap { width:100%; } }</style><div id="go-pricing-table-464" class="go-pricing" style="margin-bottom:20px;"><div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="464" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;"><div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>PERSONAL</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="29"><span data-id="currency">$</span><span data-id="amount">29</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">-</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-ribbon-left"><img src="https://gallery-bank.tech-banker.com/wp-content/plugins/go_pricing/assets/images/signs/ribbons/clean/ribbon_red_left_top.png" alt=""></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>BUSINESS</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="39"><span data-id="currency">$</span><span data-id="amount">39</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Add Album</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">Compact Album</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">Extended Album</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">Color Box</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">Foo Box</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">Editing Images</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>DEVELOPER</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="139"><span data-id="currency">$</span><span data-id="amount">139</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">5 Installations per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Add Album</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">Compact Album</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">Extended Album</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">Color Box</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">Foo Box</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">Editing Images</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div></div></div>
|
|
|
|
|
58 |
|
59 |
+
</div>
|
60 |
+
</div>
|
|
|
61 |
|
62 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502685906920">
|
63 |
+
<div class="wpb_wrapper">
|
64 |
+
<h3 style="text-align: center;">Fast. Easy. Secure.</h3>
|
65 |
|
66 |
+
</div>
|
67 |
+
</div>
|
|
|
68 |
|
69 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502685915568">
|
70 |
+
<div class="wpb_wrapper">
|
71 |
+
<h4 style="text-align: center;">This payment recurs annually.</h4>
|
|
|
|
|
72 |
|
73 |
+
</div>
|
74 |
+
</div>
|
|
|
75 |
|
76 |
+
<div class="wpb_text_column wpb_content_element ">
|
77 |
+
<div class="wpb_wrapper">
|
78 |
+
<p style="text-align: center;">Your initial payment gives you lifetime rights to use Gallery Bank Premium Editions, while annual renewals give you ongoing access to updates and support. You can cancel anytime and use the plugin forever, but you’ll lose access to support and updates when your membership expires.</p>
|
79 |
|
80 |
+
</div>
|
81 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
</div>
|
83 |
</form>
|
84 |
</div>
|
views/wizard/wizard.php
CHANGED
@@ -138,2240 +138,33 @@ if (!is_user_logged_in()) {
|
|
138 |
<div class="portlet-body form">
|
139 |
<form id="ux_frm_premium_editions">
|
140 |
<div class="form-body">
|
141 |
-
<div class="
|
142 |
-
|
143 |
-
#go-pricing-table-464 .gw-go {
|
144 |
-
margin-left: -30px;
|
145 |
-
}
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
}
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
}
|
158 |
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
padding-top: 1px;
|
163 |
-
}
|
164 |
|
165 |
-
|
166 |
-
|
167 |
-
}
|
168 |
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
|
173 |
-
|
174 |
-
|
175 |
-
color: #333333;
|
176 |
-
max-width: 130px;
|
177 |
-
}
|
178 |
-
|
179 |
-
#go-pricing-table-464 .gw-go-tooltip:before {
|
180 |
-
border-top-color: #9d9d9d;
|
181 |
-
}
|
182 |
-
|
183 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header,
|
184 |
-
#go-pricing-table-464 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom,
|
185 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before,
|
186 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-btn {
|
187 |
-
background-color: #ef463b;
|
188 |
-
}
|
189 |
-
|
190 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap span,
|
191 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinf div,
|
192 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinb div {
|
193 |
-
color: #ef463b;
|
194 |
-
}
|
195 |
-
|
196 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header h3 {
|
197 |
-
font-size: 22px !important;
|
198 |
-
line-height: 24px !important;
|
199 |
-
}
|
200 |
-
|
201 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap > span {
|
202 |
-
font-size: 55px !important;
|
203 |
-
line-height: 60px !important;
|
204 |
-
font-weight: bold !important;
|
205 |
-
}
|
206 |
-
|
207 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap small {
|
208 |
-
font-size: 16px !important;
|
209 |
-
line-height: 18px !important;
|
210 |
-
}
|
211 |
-
|
212 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] {
|
213 |
-
font-size: 14px !important;
|
214 |
-
line-height: 16px !important;
|
215 |
-
}
|
216 |
-
|
217 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] {
|
218 |
-
font-size: 20px !important;
|
219 |
-
line-height: 22px !important;
|
220 |
-
font-weight: bold !important;
|
221 |
-
}
|
222 |
-
|
223 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] {
|
224 |
-
font-size: 17px !important;
|
225 |
-
line-height: 19px !important;
|
226 |
-
font-weight: bold !important;
|
227 |
-
}
|
228 |
-
|
229 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] {
|
230 |
-
font-size: 17px !important;
|
231 |
-
line-height: 19px !important;
|
232 |
-
font-weight: bold !important;
|
233 |
-
}
|
234 |
-
|
235 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] {
|
236 |
-
font-size: 17px !important;
|
237 |
-
line-height: 19px !important;
|
238 |
-
font-weight: bold !important;
|
239 |
-
}
|
240 |
-
|
241 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] {
|
242 |
-
font-size: 17px !important;
|
243 |
-
line-height: 19px !important;
|
244 |
-
}
|
245 |
-
|
246 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] {
|
247 |
-
font-size: 14px !important;
|
248 |
-
line-height: 16px !important;
|
249 |
-
}
|
250 |
-
|
251 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] {
|
252 |
-
font-size: 20px !important;
|
253 |
-
line-height: 22px !important;
|
254 |
-
font-weight: bold !important;
|
255 |
-
}
|
256 |
-
|
257 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] {
|
258 |
-
font-size: 17px !important;
|
259 |
-
line-height: 19px !important;
|
260 |
-
}
|
261 |
-
|
262 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] {
|
263 |
-
font-size: 17px !important;
|
264 |
-
line-height: 19px !important;
|
265 |
-
}
|
266 |
-
|
267 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] {
|
268 |
-
font-size: 17px !important;
|
269 |
-
line-height: 19px !important;
|
270 |
-
}
|
271 |
-
|
272 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] {
|
273 |
-
font-size: 14px !important;
|
274 |
-
line-height: 16px !important;
|
275 |
-
}
|
276 |
-
|
277 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] {
|
278 |
-
font-size: 20px !important;
|
279 |
-
line-height: 22px !important;
|
280 |
-
font-weight: bold !important;
|
281 |
-
}
|
282 |
-
|
283 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] {
|
284 |
-
font-size: 17px !important;
|
285 |
-
line-height: 19px !important;
|
286 |
-
}
|
287 |
-
|
288 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] {
|
289 |
-
font-size: 17px !important;
|
290 |
-
line-height: 19px !important;
|
291 |
-
}
|
292 |
-
|
293 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] {
|
294 |
-
font-size: 17px !important;
|
295 |
-
line-height: 19px !important;
|
296 |
-
}
|
297 |
-
|
298 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] {
|
299 |
-
font-size: 14px !important;
|
300 |
-
line-height: 16px !important;
|
301 |
-
}
|
302 |
-
|
303 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] {
|
304 |
-
font-size: 20px !important;
|
305 |
-
line-height: 22px !important;
|
306 |
-
font-weight: bold !important;
|
307 |
-
}
|
308 |
-
|
309 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] {
|
310 |
-
font-size: 17px !important;
|
311 |
-
line-height: 19px !important;
|
312 |
-
}
|
313 |
-
|
314 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] {
|
315 |
-
font-size: 17px !important;
|
316 |
-
line-height: 19px !important;
|
317 |
-
}
|
318 |
-
|
319 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] {
|
320 |
-
font-size: 14px !important;
|
321 |
-
line-height: 16px !important;
|
322 |
-
}
|
323 |
-
|
324 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] {
|
325 |
-
font-size: 20px !important;
|
326 |
-
line-height: 22px !important;
|
327 |
-
font-weight: bold !important;
|
328 |
-
}
|
329 |
-
|
330 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] {
|
331 |
-
font-size: 17px !important;
|
332 |
-
line-height: 19px !important;
|
333 |
-
}
|
334 |
-
|
335 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] {
|
336 |
-
font-size: 17px !important;
|
337 |
-
line-height: 19px !important;
|
338 |
-
}
|
339 |
-
|
340 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] {
|
341 |
-
font-size: 17px !important;
|
342 |
-
line-height: 19px !important;
|
343 |
-
}
|
344 |
-
|
345 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] {
|
346 |
-
font-size: 17px !important;
|
347 |
-
line-height: 19px !important;
|
348 |
-
}
|
349 |
-
|
350 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="26"] {
|
351 |
-
font-size: 17px !important;
|
352 |
-
line-height: 19px !important;
|
353 |
-
}
|
354 |
-
|
355 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="27"] {
|
356 |
-
font-size: 17px !important;
|
357 |
-
line-height: 19px !important;
|
358 |
-
}
|
359 |
-
|
360 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="28"] {
|
361 |
-
font-size: 17px !important;
|
362 |
-
line-height: 19px !important;
|
363 |
-
}
|
364 |
-
|
365 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="29"] {
|
366 |
-
font-size: 17px !important;
|
367 |
-
line-height: 19px !important;
|
368 |
-
}
|
369 |
-
|
370 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="30"] {
|
371 |
-
font-size: 17px !important;
|
372 |
-
line-height: 19px !important;
|
373 |
-
}
|
374 |
-
|
375 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="31"] {
|
376 |
-
font-size: 14px !important;
|
377 |
-
line-height: 16px !important;
|
378 |
-
}
|
379 |
-
|
380 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="32"] {
|
381 |
-
font-size: 20px !important;
|
382 |
-
line-height: 22px !important;
|
383 |
-
font-weight: bold !important;
|
384 |
-
}
|
385 |
-
|
386 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="33"] {
|
387 |
-
font-size: 17px !important;
|
388 |
-
line-height: 19px !important;
|
389 |
-
}
|
390 |
-
|
391 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="34"] {
|
392 |
-
font-size: 17px !important;
|
393 |
-
line-height: 19px !important;
|
394 |
-
}
|
395 |
-
|
396 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="35"] {
|
397 |
-
font-size: 17px !important;
|
398 |
-
line-height: 19px !important;
|
399 |
-
}
|
400 |
-
|
401 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="36"] {
|
402 |
-
font-size: 17px !important;
|
403 |
-
line-height: 19px !important;
|
404 |
-
}
|
405 |
-
|
406 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="37"] {
|
407 |
-
font-size: 17px !important;
|
408 |
-
line-height: 19px !important;
|
409 |
-
}
|
410 |
-
|
411 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="38"] {
|
412 |
-
font-size: 14px !important;
|
413 |
-
line-height: 16px !important;
|
414 |
-
}
|
415 |
-
|
416 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="39"] {
|
417 |
-
font-size: 20px !important;
|
418 |
-
line-height: 22px !important;
|
419 |
-
font-weight: bold !important;
|
420 |
-
}
|
421 |
-
|
422 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="40"] {
|
423 |
-
font-size: 17px !important;
|
424 |
-
line-height: 19px !important;
|
425 |
-
}
|
426 |
-
|
427 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="41"] {
|
428 |
-
font-size: 17px !important;
|
429 |
-
line-height: 19px !important;
|
430 |
-
}
|
431 |
-
|
432 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="42"] {
|
433 |
-
font-size: 17px !important;
|
434 |
-
line-height: 19px !important;
|
435 |
-
}
|
436 |
-
|
437 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="43"] {
|
438 |
-
font-size: 17px !important;
|
439 |
-
line-height: 19px !important;
|
440 |
-
}
|
441 |
-
|
442 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="44"] {
|
443 |
-
font-size: 17px !important;
|
444 |
-
line-height: 19px !important;
|
445 |
-
}
|
446 |
-
|
447 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="45"] {
|
448 |
-
font-size: 17px !important;
|
449 |
-
line-height: 19px !important;
|
450 |
-
}
|
451 |
-
|
452 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="46"] {
|
453 |
-
font-size: 17px !important;
|
454 |
-
line-height: 19px !important;
|
455 |
-
}
|
456 |
-
|
457 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="47"] {
|
458 |
-
font-size: 17px !important;
|
459 |
-
line-height: 19px !important;
|
460 |
-
}
|
461 |
-
|
462 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="48"] {
|
463 |
-
font-size: 14px !important;
|
464 |
-
line-height: 16px !important;
|
465 |
-
}
|
466 |
-
|
467 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="49"] {
|
468 |
-
font-size: 20px !important;
|
469 |
-
line-height: 22px !important;
|
470 |
-
font-weight: bold !important;
|
471 |
-
}
|
472 |
-
|
473 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="50"] {
|
474 |
-
font-size: 17px !important;
|
475 |
-
line-height: 19px !important;
|
476 |
-
}
|
477 |
-
|
478 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="51"] {
|
479 |
-
font-size: 17px !important;
|
480 |
-
line-height: 19px !important;
|
481 |
-
}
|
482 |
-
|
483 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="52"] {
|
484 |
-
font-size: 17px !important;
|
485 |
-
line-height: 19px !important;
|
486 |
-
}
|
487 |
-
|
488 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="53"] {
|
489 |
-
font-size: 17px !important;
|
490 |
-
line-height: 19px !important;
|
491 |
-
}
|
492 |
-
|
493 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="54"] {
|
494 |
-
font-size: 17px !important;
|
495 |
-
line-height: 19px !important;
|
496 |
-
}
|
497 |
-
|
498 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="55"] {
|
499 |
-
font-size: 17px !important;
|
500 |
-
line-height: 19px !important;
|
501 |
-
}
|
502 |
-
|
503 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="56"] {
|
504 |
-
font-size: 17px !important;
|
505 |
-
line-height: 19px !important;
|
506 |
-
}
|
507 |
-
|
508 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="57"] {
|
509 |
-
font-size: 17px !important;
|
510 |
-
line-height: 19px !important;
|
511 |
-
}
|
512 |
-
|
513 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="58"] {
|
514 |
-
font-size: 17px !important;
|
515 |
-
line-height: 19px !important;
|
516 |
-
}
|
517 |
-
|
518 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="59"] {
|
519 |
-
font-size: 17px !important;
|
520 |
-
line-height: 19px !important;
|
521 |
-
}
|
522 |
-
|
523 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="60"] {
|
524 |
-
font-size: 17px !important;
|
525 |
-
line-height: 19px !important;
|
526 |
-
}
|
527 |
-
|
528 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="61"] {
|
529 |
-
font-size: 17px !important;
|
530 |
-
line-height: 19px !important;
|
531 |
-
}
|
532 |
-
|
533 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="62"] {
|
534 |
-
font-size: 17px !important;
|
535 |
-
line-height: 19px !important;
|
536 |
-
}
|
537 |
-
|
538 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="63"] {
|
539 |
-
font-size: 17px !important;
|
540 |
-
line-height: 19px !important;
|
541 |
-
}
|
542 |
-
|
543 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="64"] {
|
544 |
-
font-size: 17px !important;
|
545 |
-
line-height: 19px !important;
|
546 |
-
}
|
547 |
-
|
548 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="65"] {
|
549 |
-
font-size: 17px !important;
|
550 |
-
line-height: 19px !important;
|
551 |
-
}
|
552 |
-
|
553 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="66"] {
|
554 |
-
font-size: 17px !important;
|
555 |
-
line-height: 19px !important;
|
556 |
-
}
|
557 |
-
|
558 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="67"] {
|
559 |
-
font-size: 17px !important;
|
560 |
-
line-height: 19px !important;
|
561 |
-
}
|
562 |
-
|
563 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="68"] {
|
564 |
-
font-size: 17px !important;
|
565 |
-
line-height: 19px !important;
|
566 |
-
}
|
567 |
-
|
568 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="69"] {
|
569 |
-
font-size: 17px !important;
|
570 |
-
line-height: 19px !important;
|
571 |
-
}
|
572 |
-
|
573 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="70"] {
|
574 |
-
font-size: 17px !important;
|
575 |
-
line-height: 19px !important;
|
576 |
-
}
|
577 |
-
|
578 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="71"] {
|
579 |
-
font-size: 17px !important;
|
580 |
-
line-height: 19px !important;
|
581 |
-
}
|
582 |
-
|
583 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="72"] {
|
584 |
-
font-size: 17px !important;
|
585 |
-
line-height: 19px !important;
|
586 |
-
}
|
587 |
-
|
588 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="73"] {
|
589 |
-
font-size: 17px !important;
|
590 |
-
line-height: 19px !important;
|
591 |
-
}
|
592 |
-
|
593 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="74"] {
|
594 |
-
font-size: 17px !important;
|
595 |
-
line-height: 19px !important;
|
596 |
-
}
|
597 |
-
|
598 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="75"] {
|
599 |
-
font-size: 17px !important;
|
600 |
-
line-height: 19px !important;
|
601 |
-
}
|
602 |
-
|
603 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="76"] {
|
604 |
-
font-size: 14px !important;
|
605 |
-
line-height: 16px !important;
|
606 |
-
}
|
607 |
-
|
608 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="77"] {
|
609 |
-
font-size: 20px !important;
|
610 |
-
line-height: 22px !important;
|
611 |
-
font-weight: bold !important;
|
612 |
-
}
|
613 |
-
|
614 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="78"] {
|
615 |
-
font-size: 17px !important;
|
616 |
-
line-height: 19px !important;
|
617 |
-
}
|
618 |
-
|
619 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="79"] {
|
620 |
-
font-size: 17px !important;
|
621 |
-
line-height: 19px !important;
|
622 |
-
}
|
623 |
-
|
624 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="80"] {
|
625 |
-
font-size: 17px !important;
|
626 |
-
line-height: 19px !important;
|
627 |
-
}
|
628 |
-
|
629 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
630 |
-
font-size: 14px !important;
|
631 |
-
}
|
632 |
-
|
633 |
-
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
634 |
-
background-color: #ef463b !important;
|
635 |
-
color: #ffffff !important;
|
636 |
-
}
|
637 |
-
|
638 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header,
|
639 |
-
#go-pricing-table-464 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom,
|
640 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before,
|
641 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-btn {
|
642 |
-
background-color: #05458c;
|
643 |
-
}
|
644 |
-
|
645 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap span,
|
646 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinf div,
|
647 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinb div {
|
648 |
-
color: #05458c;
|
649 |
-
}
|
650 |
-
|
651 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header h3 {
|
652 |
-
font-size: 22px !important;
|
653 |
-
line-height: 24px !important;
|
654 |
-
}
|
655 |
-
|
656 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap > span {
|
657 |
-
font-size: 55px !important;
|
658 |
-
line-height: 60px !important;
|
659 |
-
font-weight: bold !important;
|
660 |
-
}
|
661 |
-
|
662 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap small {
|
663 |
-
font-size: 16px !important;
|
664 |
-
line-height: 18px !important;
|
665 |
-
}
|
666 |
-
|
667 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] {
|
668 |
-
font-size: 14px !important;
|
669 |
-
line-height: 16px !important;
|
670 |
-
}
|
671 |
-
|
672 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] {
|
673 |
-
font-size: 20px !important;
|
674 |
-
line-height: 22px !important;
|
675 |
-
font-weight: bold !important;
|
676 |
-
}
|
677 |
-
|
678 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] {
|
679 |
-
font-size: 17px !important;
|
680 |
-
line-height: 19px !important;
|
681 |
-
font-weight: bold !important;
|
682 |
-
}
|
683 |
-
|
684 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] {
|
685 |
-
font-size: 17px !important;
|
686 |
-
line-height: 19px !important;
|
687 |
-
font-weight: bold !important;
|
688 |
-
}
|
689 |
-
|
690 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] {
|
691 |
-
font-size: 17px !important;
|
692 |
-
line-height: 19px !important;
|
693 |
-
font-weight: bold !important;
|
694 |
-
}
|
695 |
-
|
696 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] {
|
697 |
-
font-size: 17px !important;
|
698 |
-
line-height: 19px !important;
|
699 |
-
}
|
700 |
-
|
701 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] {
|
702 |
-
font-size: 14px !important;
|
703 |
-
line-height: 16px !important;
|
704 |
-
}
|
705 |
-
|
706 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] {
|
707 |
-
font-size: 20px !important;
|
708 |
-
line-height: 22px !important;
|
709 |
-
font-weight: bold !important;
|
710 |
-
}
|
711 |
-
|
712 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] {
|
713 |
-
font-size: 17px !important;
|
714 |
-
line-height: 19px !important;
|
715 |
-
}
|
716 |
-
|
717 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] {
|
718 |
-
font-size: 17px !important;
|
719 |
-
line-height: 19px !important;
|
720 |
-
}
|
721 |
-
|
722 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] {
|
723 |
-
font-size: 17px !important;
|
724 |
-
line-height: 19px !important;
|
725 |
-
}
|
726 |
-
|
727 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] {
|
728 |
-
font-size: 14px !important;
|
729 |
-
line-height: 16px !important;
|
730 |
-
}
|
731 |
-
|
732 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] {
|
733 |
-
font-size: 20px !important;
|
734 |
-
line-height: 22px !important;
|
735 |
-
font-weight: bold !important;
|
736 |
-
}
|
737 |
-
|
738 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] {
|
739 |
-
font-size: 17px !important;
|
740 |
-
line-height: 19px !important;
|
741 |
-
}
|
742 |
-
|
743 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] {
|
744 |
-
font-size: 17px !important;
|
745 |
-
line-height: 19px !important;
|
746 |
-
}
|
747 |
-
|
748 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] {
|
749 |
-
font-size: 17px !important;
|
750 |
-
line-height: 19px !important;
|
751 |
-
}
|
752 |
-
|
753 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] {
|
754 |
-
font-size: 14px !important;
|
755 |
-
line-height: 16px !important;
|
756 |
-
}
|
757 |
-
|
758 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] {
|
759 |
-
font-size: 20px !important;
|
760 |
-
line-height: 22px !important;
|
761 |
-
font-weight: bold !important;
|
762 |
-
}
|
763 |
-
|
764 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] {
|
765 |
-
font-size: 17px !important;
|
766 |
-
line-height: 19px !important;
|
767 |
-
}
|
768 |
-
|
769 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] {
|
770 |
-
font-size: 17px !important;
|
771 |
-
line-height: 19px !important;
|
772 |
-
}
|
773 |
-
|
774 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] {
|
775 |
-
font-size: 14px !important;
|
776 |
-
line-height: 16px !important;
|
777 |
-
}
|
778 |
-
|
779 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] {
|
780 |
-
font-size: 20px !important;
|
781 |
-
line-height: 22px !important;
|
782 |
-
font-weight: bold !important;
|
783 |
-
}
|
784 |
-
|
785 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] {
|
786 |
-
font-size: 17px !important;
|
787 |
-
line-height: 19px !important;
|
788 |
-
}
|
789 |
-
|
790 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] {
|
791 |
-
font-size: 17px !important;
|
792 |
-
line-height: 19px !important;
|
793 |
-
}
|
794 |
-
|
795 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] {
|
796 |
-
font-size: 17px !important;
|
797 |
-
line-height: 19px !important;
|
798 |
-
}
|
799 |
-
|
800 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] {
|
801 |
-
font-size: 17px !important;
|
802 |
-
line-height: 19px !important;
|
803 |
-
}
|
804 |
-
|
805 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="26"] {
|
806 |
-
font-size: 17px !important;
|
807 |
-
line-height: 19px !important;
|
808 |
-
}
|
809 |
-
|
810 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="27"] {
|
811 |
-
font-size: 17px !important;
|
812 |
-
line-height: 19px !important;
|
813 |
-
}
|
814 |
-
|
815 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="28"] {
|
816 |
-
font-size: 17px !important;
|
817 |
-
line-height: 19px !important;
|
818 |
-
}
|
819 |
-
|
820 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="29"] {
|
821 |
-
font-size: 17px !important;
|
822 |
-
line-height: 19px !important;
|
823 |
-
}
|
824 |
-
|
825 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="30"] {
|
826 |
-
font-size: 17px !important;
|
827 |
-
line-height: 19px !important;
|
828 |
-
}
|
829 |
-
|
830 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="31"] {
|
831 |
-
font-size: 14px !important;
|
832 |
-
line-height: 16px !important;
|
833 |
-
}
|
834 |
-
|
835 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="32"] {
|
836 |
-
font-size: 20px !important;
|
837 |
-
line-height: 22px !important;
|
838 |
-
font-weight: bold !important;
|
839 |
-
}
|
840 |
-
|
841 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="33"] {
|
842 |
-
font-size: 17px !important;
|
843 |
-
line-height: 19px !important;
|
844 |
-
}
|
845 |
-
|
846 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="34"] {
|
847 |
-
font-size: 17px !important;
|
848 |
-
line-height: 19px !important;
|
849 |
-
}
|
850 |
-
|
851 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="35"] {
|
852 |
-
font-size: 17px !important;
|
853 |
-
line-height: 19px !important;
|
854 |
-
}
|
855 |
-
|
856 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="36"] {
|
857 |
-
font-size: 17px !important;
|
858 |
-
line-height: 19px !important;
|
859 |
-
}
|
860 |
-
|
861 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="37"] {
|
862 |
-
font-size: 17px !important;
|
863 |
-
line-height: 19px !important;
|
864 |
-
}
|
865 |
-
|
866 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="38"] {
|
867 |
-
font-size: 14px !important;
|
868 |
-
line-height: 16px !important;
|
869 |
-
}
|
870 |
-
|
871 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="39"] {
|
872 |
-
font-size: 20px !important;
|
873 |
-
line-height: 22px !important;
|
874 |
-
font-weight: bold !important;
|
875 |
-
}
|
876 |
-
|
877 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="40"] {
|
878 |
-
font-size: 17px !important;
|
879 |
-
line-height: 19px !important;
|
880 |
-
}
|
881 |
-
|
882 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="41"] {
|
883 |
-
font-size: 17px !important;
|
884 |
-
line-height: 19px !important;
|
885 |
-
}
|
886 |
-
|
887 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="42"] {
|
888 |
-
font-size: 17px !important;
|
889 |
-
line-height: 19px !important;
|
890 |
-
}
|
891 |
-
|
892 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="43"] {
|
893 |
-
font-size: 17px !important;
|
894 |
-
line-height: 19px !important;
|
895 |
-
}
|
896 |
-
|
897 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="44"] {
|
898 |
-
font-size: 17px !important;
|
899 |
-
line-height: 19px !important;
|
900 |
-
}
|
901 |
-
|
902 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="45"] {
|
903 |
-
font-size: 17px !important;
|
904 |
-
line-height: 19px !important;
|
905 |
-
}
|
906 |
-
|
907 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="46"] {
|
908 |
-
font-size: 17px !important;
|
909 |
-
line-height: 19px !important;
|
910 |
-
}
|
911 |
-
|
912 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="47"] {
|
913 |
-
font-size: 17px !important;
|
914 |
-
line-height: 19px !important;
|
915 |
-
}
|
916 |
-
|
917 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="48"] {
|
918 |
-
font-size: 14px !important;
|
919 |
-
line-height: 16px !important;
|
920 |
-
}
|
921 |
-
|
922 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="49"] {
|
923 |
-
font-size: 20px !important;
|
924 |
-
line-height: 22px !important;
|
925 |
-
font-weight: bold !important;
|
926 |
-
}
|
927 |
-
|
928 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="50"] {
|
929 |
-
font-size: 17px !important;
|
930 |
-
line-height: 19px !important;
|
931 |
-
}
|
932 |
-
|
933 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="51"] {
|
934 |
-
font-size: 17px !important;
|
935 |
-
line-height: 19px !important;
|
936 |
-
}
|
937 |
-
|
938 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="52"] {
|
939 |
-
font-size: 17px !important;
|
940 |
-
line-height: 19px !important;
|
941 |
-
}
|
942 |
-
|
943 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="53"] {
|
944 |
-
font-size: 17px !important;
|
945 |
-
line-height: 19px !important;
|
946 |
-
}
|
947 |
-
|
948 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="54"] {
|
949 |
-
font-size: 17px !important;
|
950 |
-
line-height: 19px !important;
|
951 |
-
}
|
952 |
-
|
953 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="55"] {
|
954 |
-
font-size: 17px !important;
|
955 |
-
line-height: 19px !important;
|
956 |
-
}
|
957 |
-
|
958 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="56"] {
|
959 |
-
font-size: 17px !important;
|
960 |
-
line-height: 19px !important;
|
961 |
-
}
|
962 |
-
|
963 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="57"] {
|
964 |
-
font-size: 17px !important;
|
965 |
-
line-height: 19px !important;
|
966 |
-
}
|
967 |
-
|
968 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="58"] {
|
969 |
-
font-size: 17px !important;
|
970 |
-
line-height: 19px !important;
|
971 |
-
}
|
972 |
-
|
973 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="59"] {
|
974 |
-
font-size: 17px !important;
|
975 |
-
line-height: 19px !important;
|
976 |
-
}
|
977 |
-
|
978 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="60"] {
|
979 |
-
font-size: 17px !important;
|
980 |
-
line-height: 19px !important;
|
981 |
-
}
|
982 |
-
|
983 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="61"] {
|
984 |
-
font-size: 17px !important;
|
985 |
-
line-height: 19px !important;
|
986 |
-
}
|
987 |
-
|
988 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="62"] {
|
989 |
-
font-size: 17px !important;
|
990 |
-
line-height: 19px !important;
|
991 |
-
}
|
992 |
-
|
993 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="63"] {
|
994 |
-
font-size: 17px !important;
|
995 |
-
line-height: 19px !important;
|
996 |
-
}
|
997 |
-
|
998 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="64"] {
|
999 |
-
font-size: 17px !important;
|
1000 |
-
line-height: 19px !important;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="65"] {
|
1004 |
-
font-size: 17px !important;
|
1005 |
-
line-height: 19px !important;
|
1006 |
-
}
|
1007 |
-
|
1008 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="66"] {
|
1009 |
-
font-size: 17px !important;
|
1010 |
-
line-height: 19px !important;
|
1011 |
-
}
|
1012 |
-
|
1013 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="67"] {
|
1014 |
-
font-size: 17px !important;
|
1015 |
-
line-height: 19px !important;
|
1016 |
-
}
|
1017 |
-
|
1018 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="68"] {
|
1019 |
-
font-size: 17px !important;
|
1020 |
-
line-height: 19px !important;
|
1021 |
-
}
|
1022 |
-
|
1023 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="69"] {
|
1024 |
-
font-size: 17px !important;
|
1025 |
-
line-height: 19px !important;
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="70"] {
|
1029 |
-
font-size: 17px !important;
|
1030 |
-
line-height: 19px !important;
|
1031 |
-
}
|
1032 |
-
|
1033 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="71"] {
|
1034 |
-
font-size: 17px !important;
|
1035 |
-
line-height: 19px !important;
|
1036 |
-
}
|
1037 |
-
|
1038 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="72"] {
|
1039 |
-
font-size: 17px !important;
|
1040 |
-
line-height: 19px !important;
|
1041 |
-
}
|
1042 |
-
|
1043 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="73"] {
|
1044 |
-
font-size: 17px !important;
|
1045 |
-
line-height: 19px !important;
|
1046 |
-
}
|
1047 |
-
|
1048 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="74"] {
|
1049 |
-
font-size: 17px !important;
|
1050 |
-
line-height: 19px !important;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="75"] {
|
1054 |
-
font-size: 17px !important;
|
1055 |
-
line-height: 19px !important;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="76"] {
|
1059 |
-
font-size: 14px !important;
|
1060 |
-
line-height: 16px !important;
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="77"] {
|
1064 |
-
font-size: 20px !important;
|
1065 |
-
line-height: 22px !important;
|
1066 |
-
font-weight: bold !important;
|
1067 |
-
}
|
1068 |
-
|
1069 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="78"] {
|
1070 |
-
font-size: 17px !important;
|
1071 |
-
line-height: 19px !important;
|
1072 |
-
}
|
1073 |
-
|
1074 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="79"] {
|
1075 |
-
font-size: 17px !important;
|
1076 |
-
line-height: 19px !important;
|
1077 |
-
}
|
1078 |
-
|
1079 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="80"] {
|
1080 |
-
font-size: 17px !important;
|
1081 |
-
line-height: 19px !important;
|
1082 |
-
}
|
1083 |
-
|
1084 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1085 |
-
font-size: 14px !important;
|
1086 |
-
}
|
1087 |
-
|
1088 |
-
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1089 |
-
background-color: #05458c !important;
|
1090 |
-
color: #ffffff !important;
|
1091 |
-
}
|
1092 |
-
|
1093 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header,
|
1094 |
-
#go-pricing-table-464 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom,
|
1095 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before,
|
1096 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-btn {
|
1097 |
-
background-color: #16bbdc;
|
1098 |
-
}
|
1099 |
-
|
1100 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap span,
|
1101 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinf div,
|
1102 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinb div {
|
1103 |
-
color: #16bbdc;
|
1104 |
-
}
|
1105 |
-
|
1106 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header h3 {
|
1107 |
-
font-size: 22px !important;
|
1108 |
-
line-height: 24px !important;
|
1109 |
-
}
|
1110 |
-
|
1111 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap > span {
|
1112 |
-
font-size: 55px !important;
|
1113 |
-
line-height: 60px !important;
|
1114 |
-
font-weight: bold !important;
|
1115 |
-
}
|
1116 |
-
|
1117 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap small {
|
1118 |
-
font-size: 16px !important;
|
1119 |
-
line-height: 18px !important;
|
1120 |
-
}
|
1121 |
-
|
1122 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] {
|
1123 |
-
font-size: 14px !important;
|
1124 |
-
line-height: 16px !important;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] {
|
1128 |
-
font-size: 20px !important;
|
1129 |
-
line-height: 22px !important;
|
1130 |
-
font-weight: bold !important;
|
1131 |
-
}
|
1132 |
-
|
1133 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] {
|
1134 |
-
font-size: 17px !important;
|
1135 |
-
line-height: 19px !important;
|
1136 |
-
font-weight: bold !important;
|
1137 |
-
}
|
1138 |
-
|
1139 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] {
|
1140 |
-
font-size: 17px !important;
|
1141 |
-
line-height: 19px !important;
|
1142 |
-
font-weight: bold !important;
|
1143 |
-
}
|
1144 |
-
|
1145 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] {
|
1146 |
-
font-size: 17px !important;
|
1147 |
-
line-height: 19px !important;
|
1148 |
-
font-weight: bold !important;
|
1149 |
-
}
|
1150 |
-
|
1151 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] {
|
1152 |
-
font-size: 17px !important;
|
1153 |
-
line-height: 19px !important;
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] {
|
1157 |
-
font-size: 14px !important;
|
1158 |
-
line-height: 16px !important;
|
1159 |
-
}
|
1160 |
-
|
1161 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] {
|
1162 |
-
font-size: 20px !important;
|
1163 |
-
line-height: 22px !important;
|
1164 |
-
font-weight: bold !important;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] {
|
1168 |
-
font-size: 17px !important;
|
1169 |
-
line-height: 19px !important;
|
1170 |
-
}
|
1171 |
-
|
1172 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] {
|
1173 |
-
font-size: 17px !important;
|
1174 |
-
line-height: 19px !important;
|
1175 |
-
}
|
1176 |
-
|
1177 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] {
|
1178 |
-
font-size: 17px !important;
|
1179 |
-
line-height: 19px !important;
|
1180 |
-
}
|
1181 |
-
|
1182 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] {
|
1183 |
-
font-size: 14px !important;
|
1184 |
-
line-height: 16px !important;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] {
|
1188 |
-
font-size: 20px !important;
|
1189 |
-
line-height: 22px !important;
|
1190 |
-
font-weight: bold !important;
|
1191 |
-
}
|
1192 |
-
|
1193 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] {
|
1194 |
-
font-size: 17px !important;
|
1195 |
-
line-height: 19px !important;
|
1196 |
-
}
|
1197 |
-
|
1198 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] {
|
1199 |
-
font-size: 17px !important;
|
1200 |
-
line-height: 19px !important;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] {
|
1204 |
-
font-size: 17px !important;
|
1205 |
-
line-height: 19px !important;
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] {
|
1209 |
-
font-size: 14px !important;
|
1210 |
-
line-height: 16px !important;
|
1211 |
-
}
|
1212 |
-
|
1213 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] {
|
1214 |
-
font-size: 20px !important;
|
1215 |
-
line-height: 22px !important;
|
1216 |
-
font-weight: bold !important;
|
1217 |
-
}
|
1218 |
-
|
1219 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] {
|
1220 |
-
font-size: 17px !important;
|
1221 |
-
line-height: 19px !important;
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] {
|
1225 |
-
font-size: 17px !important;
|
1226 |
-
line-height: 19px !important;
|
1227 |
-
}
|
1228 |
-
|
1229 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] {
|
1230 |
-
font-size: 14px !important;
|
1231 |
-
line-height: 16px !important;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] {
|
1235 |
-
font-size: 20px !important;
|
1236 |
-
line-height: 22px !important;
|
1237 |
-
font-weight: bold !important;
|
1238 |
-
}
|
1239 |
-
|
1240 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] {
|
1241 |
-
font-size: 17px !important;
|
1242 |
-
line-height: 19px !important;
|
1243 |
-
}
|
1244 |
-
|
1245 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] {
|
1246 |
-
font-size: 17px !important;
|
1247 |
-
line-height: 19px !important;
|
1248 |
-
}
|
1249 |
-
|
1250 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] {
|
1251 |
-
font-size: 17px !important;
|
1252 |
-
line-height: 19px !important;
|
1253 |
-
}
|
1254 |
-
|
1255 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] {
|
1256 |
-
font-size: 17px !important;
|
1257 |
-
line-height: 19px !important;
|
1258 |
-
}
|
1259 |
-
|
1260 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="26"] {
|
1261 |
-
font-size: 17px !important;
|
1262 |
-
line-height: 19px !important;
|
1263 |
-
}
|
1264 |
-
|
1265 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="27"] {
|
1266 |
-
font-size: 17px !important;
|
1267 |
-
line-height: 19px !important;
|
1268 |
-
}
|
1269 |
-
|
1270 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="28"] {
|
1271 |
-
font-size: 17px !important;
|
1272 |
-
line-height: 19px !important;
|
1273 |
-
}
|
1274 |
-
|
1275 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="29"] {
|
1276 |
-
font-size: 17px !important;
|
1277 |
-
line-height: 19px !important;
|
1278 |
-
}
|
1279 |
-
|
1280 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="30"] {
|
1281 |
-
font-size: 17px !important;
|
1282 |
-
line-height: 19px !important;
|
1283 |
-
}
|
1284 |
-
|
1285 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="31"] {
|
1286 |
-
font-size: 14px !important;
|
1287 |
-
line-height: 16px !important;
|
1288 |
-
}
|
1289 |
-
|
1290 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="32"] {
|
1291 |
-
font-size: 20px !important;
|
1292 |
-
line-height: 22px !important;
|
1293 |
-
font-weight: bold !important;
|
1294 |
-
}
|
1295 |
-
|
1296 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="33"] {
|
1297 |
-
font-size: 17px !important;
|
1298 |
-
line-height: 19px !important;
|
1299 |
-
}
|
1300 |
-
|
1301 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="34"] {
|
1302 |
-
font-size: 17px !important;
|
1303 |
-
line-height: 19px !important;
|
1304 |
-
}
|
1305 |
-
|
1306 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="35"] {
|
1307 |
-
font-size: 17px !important;
|
1308 |
-
line-height: 19px !important;
|
1309 |
-
}
|
1310 |
-
|
1311 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="36"] {
|
1312 |
-
font-size: 17px !important;
|
1313 |
-
line-height: 19px !important;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="37"] {
|
1317 |
-
font-size: 17px !important;
|
1318 |
-
line-height: 19px !important;
|
1319 |
-
}
|
1320 |
-
|
1321 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="38"] {
|
1322 |
-
font-size: 14px !important;
|
1323 |
-
line-height: 16px !important;
|
1324 |
-
}
|
1325 |
-
|
1326 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="39"] {
|
1327 |
-
font-size: 20px !important;
|
1328 |
-
line-height: 22px !important;
|
1329 |
-
font-weight: bold !important;
|
1330 |
-
}
|
1331 |
-
|
1332 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="40"] {
|
1333 |
-
font-size: 17px !important;
|
1334 |
-
line-height: 19px !important;
|
1335 |
-
}
|
1336 |
-
|
1337 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="41"] {
|
1338 |
-
font-size: 17px !important;
|
1339 |
-
line-height: 19px !important;
|
1340 |
-
}
|
1341 |
-
|
1342 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="42"] {
|
1343 |
-
font-size: 17px !important;
|
1344 |
-
line-height: 19px !important;
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="43"] {
|
1348 |
-
font-size: 17px !important;
|
1349 |
-
line-height: 19px !important;
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="44"] {
|
1353 |
-
font-size: 17px !important;
|
1354 |
-
line-height: 19px !important;
|
1355 |
-
}
|
1356 |
-
|
1357 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="45"] {
|
1358 |
-
font-size: 17px !important;
|
1359 |
-
line-height: 19px !important;
|
1360 |
-
}
|
1361 |
-
|
1362 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="46"] {
|
1363 |
-
font-size: 17px !important;
|
1364 |
-
line-height: 19px !important;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="47"] {
|
1368 |
-
font-size: 17px !important;
|
1369 |
-
line-height: 19px !important;
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="48"] {
|
1373 |
-
font-size: 14px !important;
|
1374 |
-
line-height: 16px !important;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="49"] {
|
1378 |
-
font-size: 20px !important;
|
1379 |
-
line-height: 22px !important;
|
1380 |
-
font-weight: bold !important;
|
1381 |
-
}
|
1382 |
-
|
1383 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="50"] {
|
1384 |
-
font-size: 17px !important;
|
1385 |
-
line-height: 19px !important;
|
1386 |
-
}
|
1387 |
-
|
1388 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="51"] {
|
1389 |
-
font-size: 17px !important;
|
1390 |
-
line-height: 19px !important;
|
1391 |
-
}
|
1392 |
-
|
1393 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="52"] {
|
1394 |
-
font-size: 17px !important;
|
1395 |
-
line-height: 19px !important;
|
1396 |
-
}
|
1397 |
-
|
1398 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="53"] {
|
1399 |
-
font-size: 17px !important;
|
1400 |
-
line-height: 19px !important;
|
1401 |
-
}
|
1402 |
-
|
1403 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="54"] {
|
1404 |
-
font-size: 17px !important;
|
1405 |
-
line-height: 19px !important;
|
1406 |
-
}
|
1407 |
-
|
1408 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="55"] {
|
1409 |
-
font-size: 17px !important;
|
1410 |
-
line-height: 19px !important;
|
1411 |
-
}
|
1412 |
-
|
1413 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="56"] {
|
1414 |
-
font-size: 17px !important;
|
1415 |
-
line-height: 19px !important;
|
1416 |
-
}
|
1417 |
-
|
1418 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="57"] {
|
1419 |
-
font-size: 17px !important;
|
1420 |
-
line-height: 19px !important;
|
1421 |
-
}
|
1422 |
-
|
1423 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="58"] {
|
1424 |
-
font-size: 17px !important;
|
1425 |
-
line-height: 19px !important;
|
1426 |
-
}
|
1427 |
-
|
1428 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="59"] {
|
1429 |
-
font-size: 17px !important;
|
1430 |
-
line-height: 19px !important;
|
1431 |
-
}
|
1432 |
-
|
1433 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="60"] {
|
1434 |
-
font-size: 17px !important;
|
1435 |
-
line-height: 19px !important;
|
1436 |
-
}
|
1437 |
-
|
1438 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="61"] {
|
1439 |
-
font-size: 17px !important;
|
1440 |
-
line-height: 19px !important;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="62"] {
|
1444 |
-
font-size: 17px !important;
|
1445 |
-
line-height: 19px !important;
|
1446 |
-
}
|
1447 |
-
|
1448 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="63"] {
|
1449 |
-
font-size: 17px !important;
|
1450 |
-
line-height: 19px !important;
|
1451 |
-
}
|
1452 |
-
|
1453 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="64"] {
|
1454 |
-
font-size: 17px !important;
|
1455 |
-
line-height: 19px !important;
|
1456 |
-
}
|
1457 |
-
|
1458 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="65"] {
|
1459 |
-
font-size: 17px !important;
|
1460 |
-
line-height: 19px !important;
|
1461 |
-
}
|
1462 |
-
|
1463 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="66"] {
|
1464 |
-
font-size: 17px !important;
|
1465 |
-
line-height: 19px !important;
|
1466 |
-
}
|
1467 |
-
|
1468 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="67"] {
|
1469 |
-
font-size: 17px !important;
|
1470 |
-
line-height: 19px !important;
|
1471 |
-
}
|
1472 |
-
|
1473 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="68"] {
|
1474 |
-
font-size: 17px !important;
|
1475 |
-
line-height: 19px !important;
|
1476 |
-
}
|
1477 |
-
|
1478 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="69"] {
|
1479 |
-
font-size: 17px !important;
|
1480 |
-
line-height: 19px !important;
|
1481 |
-
}
|
1482 |
-
|
1483 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="70"] {
|
1484 |
-
font-size: 17px !important;
|
1485 |
-
line-height: 19px !important;
|
1486 |
-
}
|
1487 |
-
|
1488 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="71"] {
|
1489 |
-
font-size: 17px !important;
|
1490 |
-
line-height: 19px !important;
|
1491 |
-
}
|
1492 |
-
|
1493 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="72"] {
|
1494 |
-
font-size: 17px !important;
|
1495 |
-
line-height: 19px !important;
|
1496 |
-
}
|
1497 |
-
|
1498 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="73"] {
|
1499 |
-
font-size: 17px !important;
|
1500 |
-
line-height: 19px !important;
|
1501 |
-
}
|
1502 |
-
|
1503 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="74"] {
|
1504 |
-
font-size: 17px !important;
|
1505 |
-
line-height: 19px !important;
|
1506 |
-
}
|
1507 |
-
|
1508 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="75"] {
|
1509 |
-
font-size: 17px !important;
|
1510 |
-
line-height: 19px !important;
|
1511 |
-
}
|
1512 |
-
|
1513 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="76"] {
|
1514 |
-
font-size: 14px !important;
|
1515 |
-
line-height: 16px !important;
|
1516 |
-
}
|
1517 |
-
|
1518 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="77"] {
|
1519 |
-
font-size: 20px !important;
|
1520 |
-
line-height: 22px !important;
|
1521 |
-
font-weight: bold !important;
|
1522 |
-
}
|
1523 |
-
|
1524 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="78"] {
|
1525 |
-
font-size: 17px !important;
|
1526 |
-
line-height: 19px !important;
|
1527 |
-
}
|
1528 |
-
|
1529 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="79"] {
|
1530 |
-
font-size: 17px !important;
|
1531 |
-
line-height: 19px !important;
|
1532 |
-
}
|
1533 |
-
|
1534 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="80"] {
|
1535 |
-
font-size: 17px !important;
|
1536 |
-
line-height: 19px !important;
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1540 |
-
font-size: 14px !important;
|
1541 |
-
}
|
1542 |
-
|
1543 |
-
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1544 |
-
background-color: #16bbdc !important;
|
1545 |
-
color: #ffffff !important;
|
1546 |
-
}
|
1547 |
-
|
1548 |
-
#go-pricing-table-464 .gw-go {
|
1549 |
-
visibility: inherit;
|
1550 |
-
}
|
1551 |
-
</style>
|
1552 |
-
<style>
|
1553 |
-
@media only screen and (min-width: 480px) and (max-width: 767px) {
|
1554 |
-
#go-pricing-table-464 .gw-go-col-wrap {
|
1555 |
-
width: 50%;
|
1556 |
-
}
|
1557 |
-
}
|
1558 |
-
</style>
|
1559 |
-
<style>
|
1560 |
-
@media only screen and (max-width: 479px) {
|
1561 |
-
#go-pricing-table-464 .gw-go-col-wrap {
|
1562 |
-
width: 100%;
|
1563 |
-
}
|
1564 |
-
}
|
1565 |
-
</style>
|
1566 |
-
<div id="go-pricing-table-464" class="go-pricing" style="margin-bottom:20px;">
|
1567 |
-
<div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="464" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;">
|
1568 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 3385px;">
|
1569 |
-
<div class="gw-go-col gw-go-clean-style5">
|
1570 |
-
<div class="gw-go-col-inner">
|
1571 |
-
<div class="gw-go-col-inner-layer"></div>
|
1572 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
1573 |
-
<div class="gw-go-header gw-go-header-standard">
|
1574 |
-
<div class="gw-go-header-top">
|
1575 |
-
<h3>PERSONAL</h3></div>
|
1576 |
-
<div class="gw-go-header-bottom">
|
1577 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="3.99"><span data-id="currency">€</span><span data-id="amount">3.99</span></span><small>per month</small></div>
|
1578 |
-
</div>
|
1579 |
-
</div>
|
1580 |
-
<ul class="gw-go-body">
|
1581 |
-
<li data-row-index="0">
|
1582 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1583 |
-
</li>
|
1584 |
-
<li class="gw-go-even" data-row-index="1">
|
1585 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1586 |
-
</li>
|
1587 |
-
<li data-row-index="2">
|
1588 |
-
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1589 |
-
</li>
|
1590 |
-
<li class="gw-go-even" data-row-index="3">
|
1591 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
1592 |
-
</li>
|
1593 |
-
<li data-row-index="4">
|
1594 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
1595 |
-
</li>
|
1596 |
-
<li class="gw-go-even" data-row-index="5">
|
1597 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1598 |
-
</li>
|
1599 |
-
<li data-row-index="6">
|
1600 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1601 |
-
</li>
|
1602 |
-
<li class="gw-go-even" data-row-index="7">
|
1603 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1604 |
-
</li>
|
1605 |
-
<li data-row-index="8">
|
1606 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1607 |
-
</li>
|
1608 |
-
<li class="gw-go-even" data-row-index="9">
|
1609 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1610 |
-
</li>
|
1611 |
-
<li data-row-index="10">
|
1612 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1613 |
-
</li>
|
1614 |
-
<li class="gw-go-even" data-row-index="11">
|
1615 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1616 |
-
</li>
|
1617 |
-
<li data-row-index="12">
|
1618 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1619 |
-
</li>
|
1620 |
-
<li class="gw-go-even" data-row-index="13">
|
1621 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1622 |
-
</li>
|
1623 |
-
<li data-row-index="14">
|
1624 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1625 |
-
</li>
|
1626 |
-
<li class="gw-go-even" data-row-index="15">
|
1627 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1628 |
-
</li>
|
1629 |
-
<li data-row-index="16">
|
1630 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1631 |
-
</li>
|
1632 |
-
<li class="gw-go-even" data-row-index="17">
|
1633 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1634 |
-
</li>
|
1635 |
-
<li data-row-index="18">
|
1636 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1637 |
-
</li>
|
1638 |
-
<li class="gw-go-even" data-row-index="19">
|
1639 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1640 |
-
</li>
|
1641 |
-
<li data-row-index="20">
|
1642 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1643 |
-
</li>
|
1644 |
-
<li class="gw-go-even" data-row-index="21">
|
1645 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1646 |
-
</li>
|
1647 |
-
<li data-row-index="22">
|
1648 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1649 |
-
</li>
|
1650 |
-
<li class="gw-go-even" data-row-index="23">
|
1651 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1652 |
-
</li>
|
1653 |
-
<li data-row-index="24">
|
1654 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1655 |
-
</li>
|
1656 |
-
<li class="gw-go-even" data-row-index="25">
|
1657 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1658 |
-
</li>
|
1659 |
-
<li data-row-index="26">
|
1660 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1661 |
-
</li>
|
1662 |
-
<li class="gw-go-even" data-row-index="27">
|
1663 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1664 |
-
</li>
|
1665 |
-
<li data-row-index="28">
|
1666 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1667 |
-
</li>
|
1668 |
-
<li class="gw-go-even" data-row-index="29">
|
1669 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1670 |
-
</li>
|
1671 |
-
<li data-row-index="30">
|
1672 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1673 |
-
</li>
|
1674 |
-
<li class="gw-go-even" data-row-index="31">
|
1675 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1676 |
-
</li>
|
1677 |
-
<li data-row-index="32">
|
1678 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1679 |
-
</li>
|
1680 |
-
<li class="gw-go-even" data-row-index="33">
|
1681 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1682 |
-
</li>
|
1683 |
-
<li data-row-index="34">
|
1684 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1685 |
-
</li>
|
1686 |
-
<li class="gw-go-even" data-row-index="35">
|
1687 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1688 |
-
</li>
|
1689 |
-
<li data-row-index="36">
|
1690 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1691 |
-
</li>
|
1692 |
-
<li class="gw-go-even" data-row-index="37">
|
1693 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1694 |
-
</li>
|
1695 |
-
<li data-row-index="38">
|
1696 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1697 |
-
</li>
|
1698 |
-
<li class="gw-go-even" data-row-index="39">
|
1699 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1700 |
-
</li>
|
1701 |
-
<li data-row-index="40">
|
1702 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1703 |
-
</li>
|
1704 |
-
<li class="gw-go-even" data-row-index="41">
|
1705 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1706 |
-
</li>
|
1707 |
-
<li data-row-index="42">
|
1708 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1709 |
-
</li>
|
1710 |
-
<li class="gw-go-even" data-row-index="43">
|
1711 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1712 |
-
</li>
|
1713 |
-
<li data-row-index="44">
|
1714 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1715 |
-
</li>
|
1716 |
-
<li class="gw-go-even" data-row-index="45">
|
1717 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1718 |
-
</li>
|
1719 |
-
<li data-row-index="46">
|
1720 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1721 |
-
</li>
|
1722 |
-
<li class="gw-go-even" data-row-index="47">
|
1723 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1724 |
-
</li>
|
1725 |
-
<li data-row-index="48">
|
1726 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1727 |
-
</li>
|
1728 |
-
<li class="gw-go-even" data-row-index="49">
|
1729 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1730 |
-
</li>
|
1731 |
-
<li data-row-index="50">
|
1732 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
1733 |
-
</li>
|
1734 |
-
<li class="gw-go-even" data-row-index="51">
|
1735 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
1736 |
-
</li>
|
1737 |
-
<li class="gw-go-even" data-row-index="53">
|
1738 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
1739 |
-
</li>
|
1740 |
-
<li data-row-index="54">
|
1741 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1742 |
-
</li>
|
1743 |
-
<li class="gw-go-even" data-row-index="55">
|
1744 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
1745 |
-
</li>
|
1746 |
-
<li data-row-index="56">
|
1747 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
1748 |
-
</li>
|
1749 |
-
<li class="gw-go-even" data-row-index="57">
|
1750 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
1751 |
-
</li>
|
1752 |
-
<li data-row-index="58">
|
1753 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
1754 |
-
</li>
|
1755 |
-
<li class="gw-go-even" data-row-index="59">
|
1756 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
1757 |
-
</li>
|
1758 |
-
<li data-row-index="60">
|
1759 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
1760 |
-
</li>
|
1761 |
-
<li class="gw-go-even" data-row-index="61">
|
1762 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
1763 |
-
</li>
|
1764 |
-
<li data-row-index="62">
|
1765 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
1766 |
-
</li>
|
1767 |
-
<li class="gw-go-even" data-row-index="63">
|
1768 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
1769 |
-
</li>
|
1770 |
-
<li data-row-index="64">
|
1771 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
1772 |
-
</li>
|
1773 |
-
<li class="gw-go-even" data-row-index="65">
|
1774 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1775 |
-
</li>
|
1776 |
-
<li data-row-index="66">
|
1777 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1778 |
-
</li>
|
1779 |
-
<li class="gw-go-even" data-row-index="67">
|
1780 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1781 |
-
</li>
|
1782 |
-
<li data-row-index="68">
|
1783 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
1784 |
-
</li>
|
1785 |
-
<li class="gw-go-even" data-row-index="69">
|
1786 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
1787 |
-
</li>
|
1788 |
-
<li data-row-index="70">
|
1789 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
1790 |
-
</li>
|
1791 |
-
<li class="gw-go-even" data-row-index="71">
|
1792 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
1793 |
-
</li>
|
1794 |
-
<li data-row-index="72">
|
1795 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
1796 |
-
</li>
|
1797 |
-
<li class="gw-go-even" data-row-index="73">
|
1798 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
1799 |
-
</li>
|
1800 |
-
<li data-row-index="74">
|
1801 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
1802 |
-
</li>
|
1803 |
-
<li class="gw-go-even" data-row-index="75">
|
1804 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
1805 |
-
</li>
|
1806 |
-
<li data-row-index="76">
|
1807 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1808 |
-
</li>
|
1809 |
-
<li class="gw-go-even" data-row-index="77">
|
1810 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
1811 |
-
</li>
|
1812 |
-
<li data-row-index="78">
|
1813 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
1814 |
-
</li>
|
1815 |
-
<li class="gw-go-even" data-row-index="79">
|
1816 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
1817 |
-
</li>
|
1818 |
-
<li data-row-index="80">
|
1819 |
-
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1820 |
-
</li>
|
1821 |
-
</ul>
|
1822 |
-
<div class="gw-go-footer-wrap">
|
1823 |
-
<div class="gw-go-footer-spacer"></div>
|
1824 |
-
<div class="gw-go-footer">
|
1825 |
-
<div class="gw-go-footer-rows">
|
1826 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
1827 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
1828 |
-
</div>
|
1829 |
-
</div>
|
1830 |
-
</div>
|
1831 |
-
</div>
|
1832 |
-
</div>
|
1833 |
-
<div class="gw-go-tooltip"></div>
|
1834 |
-
</div>
|
1835 |
-
</div>
|
1836 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 3385px;">
|
1837 |
-
<div class="gw-go-col gw-go-clean-style5">
|
1838 |
-
<div class="gw-go-col-inner">
|
1839 |
-
<div class="gw-go-col-inner-layer"></div>
|
1840 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
1841 |
-
<div class="gw-go-ribbon-right"><img src="<?php echo plugins_url("assets/global/img/ribbon_green_right_top.png", dirname(dirname(__FILE__))); ?>"></div>
|
1842 |
-
<div class="gw-go-header gw-go-header-standard">
|
1843 |
-
<div class="gw-go-header-top">
|
1844 |
-
<h3>BUSINESS</h3></div>
|
1845 |
-
<div class="gw-go-header-bottom">
|
1846 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="7.99"><span data-id="currency">€</span><span data-id="amount">7.99</span></span><small>per month</small></div>
|
1847 |
-
</div>
|
1848 |
-
</div>
|
1849 |
-
<ul class="gw-go-body">
|
1850 |
-
<li data-row-index="0">
|
1851 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1852 |
-
</li>
|
1853 |
-
<li class="gw-go-even" data-row-index="1">
|
1854 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1855 |
-
</li>
|
1856 |
-
<li data-row-index="2">
|
1857 |
-
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1858 |
-
</li>
|
1859 |
-
<li class="gw-go-even" data-row-index="3">
|
1860 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
1861 |
-
</li>
|
1862 |
-
<li data-row-index="4">
|
1863 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
1864 |
-
</li>
|
1865 |
-
<li class="gw-go-even" data-row-index="5">
|
1866 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1867 |
-
</li>
|
1868 |
-
<li data-row-index="6">
|
1869 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1870 |
-
</li>
|
1871 |
-
<li class="gw-go-even" data-row-index="7">
|
1872 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1873 |
-
</li>
|
1874 |
-
<li data-row-index="8">
|
1875 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1876 |
-
</li>
|
1877 |
-
<li class="gw-go-even" data-row-index="9">
|
1878 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1879 |
-
</li>
|
1880 |
-
<li data-row-index="10">
|
1881 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1882 |
-
</li>
|
1883 |
-
<li class="gw-go-even" data-row-index="11">
|
1884 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1885 |
-
</li>
|
1886 |
-
<li data-row-index="12">
|
1887 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1888 |
-
</li>
|
1889 |
-
<li class="gw-go-even" data-row-index="13">
|
1890 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
1891 |
-
</li>
|
1892 |
-
<li data-row-index="14">
|
1893 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
1894 |
-
</li>
|
1895 |
-
<li class="gw-go-even" data-row-index="15">
|
1896 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
1897 |
-
</li>
|
1898 |
-
<li data-row-index="16">
|
1899 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1900 |
-
</li>
|
1901 |
-
<li class="gw-go-even" data-row-index="17">
|
1902 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1903 |
-
</li>
|
1904 |
-
<li data-row-index="18">
|
1905 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1906 |
-
</li>
|
1907 |
-
<li class="gw-go-even" data-row-index="19">
|
1908 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1909 |
-
</li>
|
1910 |
-
<li data-row-index="20">
|
1911 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1912 |
-
</li>
|
1913 |
-
<li class="gw-go-even" data-row-index="21">
|
1914 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1915 |
-
</li>
|
1916 |
-
<li data-row-index="22">
|
1917 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1918 |
-
</li>
|
1919 |
-
<li class="gw-go-even" data-row-index="23">
|
1920 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1921 |
-
</li>
|
1922 |
-
<li data-row-index="24">
|
1923 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1924 |
-
</li>
|
1925 |
-
<li class="gw-go-even" data-row-index="25">
|
1926 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1927 |
-
</li>
|
1928 |
-
<li data-row-index="26">
|
1929 |
-
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
1930 |
-
</li>
|
1931 |
-
<li class="gw-go-even" data-row-index="27">
|
1932 |
-
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
1933 |
-
</li>
|
1934 |
-
<li data-row-index="28">
|
1935 |
-
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
1936 |
-
</li>
|
1937 |
-
<li class="gw-go-even" data-row-index="29">
|
1938 |
-
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
1939 |
-
</li>
|
1940 |
-
<li data-row-index="30">
|
1941 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1942 |
-
</li>
|
1943 |
-
<li class="gw-go-even" data-row-index="31">
|
1944 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1945 |
-
</li>
|
1946 |
-
<li data-row-index="32">
|
1947 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1948 |
-
</li>
|
1949 |
-
<li class="gw-go-even" data-row-index="33">
|
1950 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1951 |
-
</li>
|
1952 |
-
<li data-row-index="34">
|
1953 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1954 |
-
</li>
|
1955 |
-
<li class="gw-go-even" data-row-index="35">
|
1956 |
-
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
1957 |
-
</li>
|
1958 |
-
<li data-row-index="36">
|
1959 |
-
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
1960 |
-
</li>
|
1961 |
-
<li class="gw-go-even" data-row-index="37">
|
1962 |
-
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
1963 |
-
</li>
|
1964 |
-
<li data-row-index="38">
|
1965 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1966 |
-
</li>
|
1967 |
-
<li class="gw-go-even" data-row-index="39">
|
1968 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1969 |
-
</li>
|
1970 |
-
<li data-row-index="40">
|
1971 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1972 |
-
</li>
|
1973 |
-
<li class="gw-go-even" data-row-index="41">
|
1974 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1975 |
-
</li>
|
1976 |
-
<li data-row-index="42">
|
1977 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1978 |
-
</li>
|
1979 |
-
<li class="gw-go-even" data-row-index="43">
|
1980 |
-
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
1981 |
-
</li>
|
1982 |
-
<li data-row-index="44">
|
1983 |
-
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
1984 |
-
</li>
|
1985 |
-
<li class="gw-go-even" data-row-index="45">
|
1986 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1987 |
-
</li>
|
1988 |
-
<li data-row-index="46">
|
1989 |
-
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
1990 |
-
</li>
|
1991 |
-
<li class="gw-go-even" data-row-index="47">
|
1992 |
-
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
1993 |
-
</li>
|
1994 |
-
<li data-row-index="48">
|
1995 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1996 |
-
</li>
|
1997 |
-
<li class="gw-go-even" data-row-index="49">
|
1998 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1999 |
-
</li>
|
2000 |
-
<li data-row-index="50">
|
2001 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
2002 |
-
</li>
|
2003 |
-
<li class="gw-go-even" data-row-index="51">
|
2004 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
2005 |
-
</li>
|
2006 |
-
<li class="gw-go-even" data-row-index="53">
|
2007 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
2008 |
-
</li>
|
2009 |
-
<li data-row-index="54">
|
2010 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
2011 |
-
</li>
|
2012 |
-
<li class="gw-go-even" data-row-index="55">
|
2013 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
2014 |
-
</li>
|
2015 |
-
<li data-row-index="56">
|
2016 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
2017 |
-
</li>
|
2018 |
-
<li class="gw-go-even" data-row-index="57">
|
2019 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
2020 |
-
</li>
|
2021 |
-
<li data-row-index="58">
|
2022 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
2023 |
-
</li>
|
2024 |
-
<li class="gw-go-even" data-row-index="59">
|
2025 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
2026 |
-
</li>
|
2027 |
-
<li data-row-index="60">
|
2028 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
2029 |
-
</li>
|
2030 |
-
<li class="gw-go-even" data-row-index="61">
|
2031 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
2032 |
-
</li>
|
2033 |
-
<li data-row-index="62">
|
2034 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
2035 |
-
</li>
|
2036 |
-
<li class="gw-go-even" data-row-index="63">
|
2037 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
2038 |
-
</li>
|
2039 |
-
<li data-row-index="64">
|
2040 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
2041 |
-
</li>
|
2042 |
-
<li class="gw-go-even" data-row-index="65">
|
2043 |
-
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
2044 |
-
</li>
|
2045 |
-
<li data-row-index="66">
|
2046 |
-
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
2047 |
-
</li>
|
2048 |
-
<li class="gw-go-even" data-row-index="67">
|
2049 |
-
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
2050 |
-
</li>
|
2051 |
-
<li data-row-index="68">
|
2052 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
2053 |
-
</li>
|
2054 |
-
<li class="gw-go-even" data-row-index="69">
|
2055 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
2056 |
-
</li>
|
2057 |
-
<li data-row-index="70">
|
2058 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
2059 |
-
</li>
|
2060 |
-
<li class="gw-go-even" data-row-index="71">
|
2061 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
2062 |
-
</li>
|
2063 |
-
<li data-row-index="72">
|
2064 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
2065 |
-
</li>
|
2066 |
-
<li class="gw-go-even" data-row-index="73">
|
2067 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
2068 |
-
</li>
|
2069 |
-
<li data-row-index="74">
|
2070 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
2071 |
-
</li>
|
2072 |
-
<li class="gw-go-even" data-row-index="75">
|
2073 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
2074 |
-
</li>
|
2075 |
-
<li data-row-index="76">
|
2076 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2077 |
-
</li>
|
2078 |
-
<li class="gw-go-even" data-row-index="77">
|
2079 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
2080 |
-
</li>
|
2081 |
-
<li data-row-index="78">
|
2082 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
2083 |
-
</li>
|
2084 |
-
<li class="gw-go-even" data-row-index="79">
|
2085 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2086 |
-
</li>
|
2087 |
-
<li data-row-index="80">
|
2088 |
-
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2089 |
-
</li>
|
2090 |
-
</ul>
|
2091 |
-
<div class="gw-go-footer-wrap">
|
2092 |
-
<div class="gw-go-footer-spacer"></div>
|
2093 |
-
<div class="gw-go-footer">
|
2094 |
-
<div class="gw-go-footer-rows">
|
2095 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
2096 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2097 |
-
</div>
|
2098 |
-
</div>
|
2099 |
-
</div>
|
2100 |
-
</div>
|
2101 |
-
</div>
|
2102 |
-
<div class="gw-go-tooltip"></div>
|
2103 |
-
</div>
|
2104 |
-
</div>
|
2105 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 3385px;">
|
2106 |
-
<div class="gw-go-col gw-go-clean-style5">
|
2107 |
-
<div class="gw-go-col-inner">
|
2108 |
-
<div class="gw-go-col-inner-layer"></div>
|
2109 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
2110 |
-
<div class="gw-go-header gw-go-header-standard">
|
2111 |
-
<div class="gw-go-header-top">
|
2112 |
-
<h3>DEVELOPER</h3></div>
|
2113 |
-
<div class="gw-go-header-bottom">
|
2114 |
-
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="19.99"><span data-id="currency">€</span><span data-id="amount">19.99</span></span><small>per month</small></div>
|
2115 |
-
</div>
|
2116 |
-
</div>
|
2117 |
-
<ul class="gw-go-body">
|
2118 |
-
<li data-row-index="0">
|
2119 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2120 |
-
</li>
|
2121 |
-
<li class="gw-go-even" data-row-index="1">
|
2122 |
-
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
2123 |
-
</li>
|
2124 |
-
<li data-row-index="2">
|
2125 |
-
<div class="gw-go-body-cell" style="height: 19px;">5 Installations per License</div>
|
2126 |
-
</li>
|
2127 |
-
<li class="gw-go-even" data-row-index="3">
|
2128 |
-
<div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div>
|
2129 |
-
</li>
|
2130 |
-
<li data-row-index="4">
|
2131 |
-
<div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div>
|
2132 |
-
</li>
|
2133 |
-
<li class="gw-go-even" data-row-index="5">
|
2134 |
-
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
2135 |
-
</li>
|
2136 |
-
<li data-row-index="6">
|
2137 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2138 |
-
</li>
|
2139 |
-
<li class="gw-go-even" data-row-index="7">
|
2140 |
-
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
2141 |
-
</li>
|
2142 |
-
<li data-row-index="8">
|
2143 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
2144 |
-
</li>
|
2145 |
-
<li class="gw-go-even" data-row-index="9">
|
2146 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
2147 |
-
</li>
|
2148 |
-
<li data-row-index="10">
|
2149 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
2150 |
-
</li>
|
2151 |
-
<li class="gw-go-even" data-row-index="11">
|
2152 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2153 |
-
</li>
|
2154 |
-
<li data-row-index="12">
|
2155 |
-
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
2156 |
-
</li>
|
2157 |
-
<li class="gw-go-even" data-row-index="13">
|
2158 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
2159 |
-
</li>
|
2160 |
-
<li data-row-index="14">
|
2161 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
2162 |
-
</li>
|
2163 |
-
<li class="gw-go-even" data-row-index="15">
|
2164 |
-
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
2165 |
-
</li>
|
2166 |
-
<li data-row-index="16">
|
2167 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2168 |
-
</li>
|
2169 |
-
<li class="gw-go-even" data-row-index="17">
|
2170 |
-
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
2171 |
-
</li>
|
2172 |
-
<li data-row-index="18">
|
2173 |
-
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
2174 |
-
</li>
|
2175 |
-
<li class="gw-go-even" data-row-index="19">
|
2176 |
-
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
2177 |
-
</li>
|
2178 |
-
<li data-row-index="20">
|
2179 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2180 |
-
</li>
|
2181 |
-
<li class="gw-go-even" data-row-index="21">
|
2182 |
-
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
2183 |
-
</li>
|
2184 |
-
<li data-row-index="22">
|
2185 |
-
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
2186 |
-
</li>
|
2187 |
-
<li class="gw-go-even" data-row-index="23">
|
2188 |
-
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
2189 |
-
</li>
|
2190 |
-
<li data-row-index="24">
|
2191 |
-
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
2192 |
-
</li>
|
2193 |
-
<li class="gw-go-even" data-row-index="25">
|
2194 |
-
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
2195 |
-
</li>
|
2196 |
-
<li data-row-index="26">
|
2197 |
-
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
2198 |
-
</li>
|
2199 |
-
<li class="gw-go-even" data-row-index="27">
|
2200 |
-
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
2201 |
-
</li>
|
2202 |
-
<li data-row-index="28">
|
2203 |
-
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
2204 |
-
</li>
|
2205 |
-
<li class="gw-go-even" data-row-index="29">
|
2206 |
-
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
2207 |
-
</li>
|
2208 |
-
<li data-row-index="30">
|
2209 |
-
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
2210 |
-
</li>
|
2211 |
-
<li class="gw-go-even" data-row-index="31">
|
2212 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2213 |
-
</li>
|
2214 |
-
<li data-row-index="32">
|
2215 |
-
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
2216 |
-
</li>
|
2217 |
-
<li class="gw-go-even" data-row-index="33">
|
2218 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
2219 |
-
</li>
|
2220 |
-
<li data-row-index="34">
|
2221 |
-
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
2222 |
-
</li>
|
2223 |
-
<li class="gw-go-even" data-row-index="35">
|
2224 |
-
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
2225 |
-
</li>
|
2226 |
-
<li data-row-index="36">
|
2227 |
-
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
2228 |
-
</li>
|
2229 |
-
<li class="gw-go-even" data-row-index="37">
|
2230 |
-
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
2231 |
-
</li>
|
2232 |
-
<li data-row-index="38">
|
2233 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2234 |
-
</li>
|
2235 |
-
<li class="gw-go-even" data-row-index="39">
|
2236 |
-
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
2237 |
-
</li>
|
2238 |
-
<li data-row-index="40">
|
2239 |
-
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
2240 |
-
</li>
|
2241 |
-
<li class="gw-go-even" data-row-index="41">
|
2242 |
-
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
2243 |
-
</li>
|
2244 |
-
<li data-row-index="42">
|
2245 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
2246 |
-
</li>
|
2247 |
-
<li class="gw-go-even" data-row-index="43">
|
2248 |
-
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
2249 |
-
</li>
|
2250 |
-
<li data-row-index="44">
|
2251 |
-
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
2252 |
-
</li>
|
2253 |
-
<li class="gw-go-even" data-row-index="45">
|
2254 |
-
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
2255 |
-
</li>
|
2256 |
-
<li data-row-index="46">
|
2257 |
-
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
2258 |
-
</li>
|
2259 |
-
<li class="gw-go-even" data-row-index="47">
|
2260 |
-
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
2261 |
-
</li>
|
2262 |
-
<li data-row-index="48">
|
2263 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2264 |
-
</li>
|
2265 |
-
<li class="gw-go-even" data-row-index="49">
|
2266 |
-
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
2267 |
-
</li>
|
2268 |
-
<li data-row-index="50">
|
2269 |
-
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
2270 |
-
</li>
|
2271 |
-
<li class="gw-go-even" data-row-index="51">
|
2272 |
-
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
2273 |
-
</li>
|
2274 |
-
<li class="gw-go-even" data-row-index="53">
|
2275 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
2276 |
-
</li>
|
2277 |
-
<li data-row-index="54">
|
2278 |
-
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
2279 |
-
</li>
|
2280 |
-
<li class="gw-go-even" data-row-index="55">
|
2281 |
-
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
2282 |
-
</li>
|
2283 |
-
<li data-row-index="56">
|
2284 |
-
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
2285 |
-
</li>
|
2286 |
-
<li class="gw-go-even" data-row-index="57">
|
2287 |
-
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
2288 |
-
</li>
|
2289 |
-
<li data-row-index="58">
|
2290 |
-
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
2291 |
-
</li>
|
2292 |
-
<li class="gw-go-even" data-row-index="59">
|
2293 |
-
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
2294 |
-
</li>
|
2295 |
-
<li data-row-index="60">
|
2296 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
2297 |
-
</li>
|
2298 |
-
<li class="gw-go-even" data-row-index="61">
|
2299 |
-
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
2300 |
-
</li>
|
2301 |
-
<li data-row-index="62">
|
2302 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
2303 |
-
</li>
|
2304 |
-
<li class="gw-go-even" data-row-index="63">
|
2305 |
-
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
2306 |
-
</li>
|
2307 |
-
<li data-row-index="64">
|
2308 |
-
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
2309 |
-
</li>
|
2310 |
-
<li class="gw-go-even" data-row-index="65">
|
2311 |
-
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
2312 |
-
</li>
|
2313 |
-
<li data-row-index="66">
|
2314 |
-
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
2315 |
-
</li>
|
2316 |
-
<li class="gw-go-even" data-row-index="67">
|
2317 |
-
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
2318 |
-
</li>
|
2319 |
-
<li data-row-index="68">
|
2320 |
-
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
2321 |
-
</li>
|
2322 |
-
<li class="gw-go-even" data-row-index="69">
|
2323 |
-
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
2324 |
-
</li>
|
2325 |
-
<li data-row-index="70">
|
2326 |
-
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
2327 |
-
</li>
|
2328 |
-
<li class="gw-go-even" data-row-index="71">
|
2329 |
-
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
2330 |
-
</li>
|
2331 |
-
<li data-row-index="72">
|
2332 |
-
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
2333 |
-
</li>
|
2334 |
-
<li class="gw-go-even" data-row-index="73">
|
2335 |
-
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
2336 |
-
</li>
|
2337 |
-
<li data-row-index="74">
|
2338 |
-
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
2339 |
-
</li>
|
2340 |
-
<li class="gw-go-even" data-row-index="75">
|
2341 |
-
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
2342 |
-
</li>
|
2343 |
-
<li data-row-index="76">
|
2344 |
-
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2345 |
-
</li>
|
2346 |
-
<li class="gw-go-even" data-row-index="77">
|
2347 |
-
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
2348 |
-
</li>
|
2349 |
-
<li data-row-index="78">
|
2350 |
-
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
2351 |
-
</li>
|
2352 |
-
<li class="gw-go-even" data-row-index="79">
|
2353 |
-
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2354 |
-
</li>
|
2355 |
-
<li data-row-index="80">
|
2356 |
-
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2357 |
-
</li>
|
2358 |
-
</ul>
|
2359 |
-
<div class="gw-go-footer-wrap">
|
2360 |
-
<div class="gw-go-footer-spacer"></div>
|
2361 |
-
<div class="gw-go-footer">
|
2362 |
-
<div class="gw-go-footer-rows">
|
2363 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
2364 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url; ?>product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2365 |
-
</div>
|
2366 |
-
</div>
|
2367 |
-
</div>
|
2368 |
-
</div>
|
2369 |
-
</div>
|
2370 |
-
</div>
|
2371 |
-
</div>
|
2372 |
-
</div>
|
2373 |
-
</div>
|
2374 |
-
</div>
|
2375 |
</div>
|
2376 |
</form>
|
2377 |
</div>
|
138 |
<div class="portlet-body form">
|
139 |
<form id="ux_frm_premium_editions">
|
140 |
<div class="form-body">
|
141 |
+
<div class="wpb_text_column wpb_content_element ">
|
142 |
+
<div class="wpb_wrapper">
|
143 |
+
<style type="text/css">#go-pricing-table-464 .gw-go { margin-left:-30px; } #go-pricing-table-464 .gw-go-col { margin-left:30px; } #go-pricing-table-464 .gw-go-col-wrap { min-width:130px; } #go-pricing-table-464 .gw-go-col-inner { border-radius:8px 8px 8px 8px; } #go-pricing-table-464 ul.gw-go-body, #go-pricing-table-464 ul.gw-go-body li { border:none !important; padding-top:1px; } #go-pricing-table-464 ul.gw-go-body li .gw-go-body-cell { padding-top:1px; } #go-pricing-table-464 ul.gw-go-body { padding-bottom:1px; } #go-pricing-table-464 .gw-go-tooltip-content { background-color:#9d9d9d;color:#333333;max-width:130px; } #go-pricing-table-464 .gw-go-tooltip:before { border-top-color:#9d9d9d; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-btn { background-color:#686868; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinb div { color:#686868; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#686868 !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-btn { background-color:#3c787e; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinb div { color:#3c787e; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#3c787e !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header, #go-pricing-table-464 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-btn { background-color:#ec4a3d; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap span, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinf div, #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinb div { color:#ec4a3d; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="26"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="27"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="28"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="29"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="30"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="31"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="32"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="33"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="34"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="35"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="36"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="37"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="38"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="39"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="40"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="41"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="42"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="43"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="44"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="45"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="46"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="47"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="48"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="49"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="50"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="51"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="52"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="53"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="54"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="55"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="56"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="57"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="58"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="59"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="60"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="61"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="62"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="63"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="64"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="65"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="66"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="67"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="68"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="69"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="70"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="71"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="72"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="73"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="74"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="75"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="76"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="77"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="78"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="79"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:17px !important; } #go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#ec4a3d !important; color:#ffffff !important; } #go-pricing-table-464 .gw-go { visibility:inherit; }</style><style>@media only screen and (min-width: 480px) and (max-width: 767px) { #go-pricing-table-464 .gw-go-col-wrap { width:50%; } }</style><style>@media only screen and (max-width: 479px) { #go-pricing-table-464 .gw-go-col-wrap { width:100%; } }</style><div id="go-pricing-table-464" class="go-pricing" style="margin-bottom:20px;"><div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="464" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;"><div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>PERSONAL</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="29"><span data-id="currency">$</span><span data-id="amount">29</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">-</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-ribbon-left"><img src="https://gallery-bank.tech-banker.com/wp-content/plugins/go_pricing/assets/images/signs/ribbons/clean/ribbon_red_left_top.png" alt=""></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>BUSINESS</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="39"><span data-id="currency">$</span><span data-id="amount">39</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Add Album</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">Compact Album</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">Extended Album</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">Color Box</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">Foo Box</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">Editing Images</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 3345px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>DEVELOPER</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="139"><span data-id="currency">$</span><span data-id="amount">139</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 19px;">5 Installations per License</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Add Album</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 22px;">TAGS</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Add Tag</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div></li><li data-row-index="26"><div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div></li><li class="gw-go-even" data-row-index="27"><div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div></li><li data-row-index="28"><div class="gw-go-body-cell" style="height: 19px;">Compact Album</div></li><li class="gw-go-even" data-row-index="29"><div class="gw-go-body-cell" style="height: 19px;">Extended Album</div></li><li data-row-index="30"><div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div></li><li class="gw-go-even" data-row-index="31"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="32"><div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div></li><li class="gw-go-even" data-row-index="33"><div class="gw-go-body-cell" style="height: 19px;">Lightcase</div></li><li data-row-index="34"><div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div></li><li class="gw-go-even" data-row-index="35"><div class="gw-go-body-cell" style="height: 19px;">Color Box</div></li><li data-row-index="36"><div class="gw-go-body-cell" style="height: 19px;">Foo Box</div></li><li class="gw-go-even" data-row-index="37"><div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div></li><li data-row-index="38"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="39"><div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div></li><li data-row-index="40"><div class="gw-go-body-cell" style="height: 19px;">Global Options</div></li><li class="gw-go-even" data-row-index="41"><div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div></li><li data-row-index="42"><div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div></li><li class="gw-go-even" data-row-index="43"><div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div></li><li data-row-index="44"><div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div></li><li class="gw-go-even" data-row-index="45"><div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div></li><li data-row-index="46"><div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div></li><li class="gw-go-even" data-row-index="47"><div class="gw-go-body-cell" style="height: 19px;">Advertisement</div></li><li data-row-index="48"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="49"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="50"><div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div></li><li class="gw-go-even" data-row-index="51"><div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div></li><li data-row-index="52"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div></li><li class="gw-go-even" data-row-index="53"><div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div></li><li data-row-index="54"><div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div></li><li class="gw-go-even" data-row-index="55"><div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div></li><li data-row-index="56"><div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div></li><li class="gw-go-even" data-row-index="57"><div class="gw-go-body-cell" style="height: 19px;">Copy Images</div></li><li data-row-index="58"><div class="gw-go-body-cell" style="height: 19px;">Move Images</div></li><li class="gw-go-even" data-row-index="59"><div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div></li><li data-row-index="60"><div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div></li><li class="gw-go-even" data-row-index="61"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div></li><li data-row-index="62"><div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div></li><li class="gw-go-even" data-row-index="63"><div class="gw-go-body-cell" style="height: 19px;">Restore Images</div></li><li data-row-index="64"><div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div></li><li class="gw-go-even" data-row-index="65"><div class="gw-go-body-cell" style="height: 19px;">Editing Images</div></li><li data-row-index="66"><div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div></li><li class="gw-go-even" data-row-index="67"><div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div></li><li data-row-index="68"><div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div></li><li class="gw-go-even" data-row-index="69"><div class="gw-go-body-cell" style="height: 19px;">Special Effects</div></li><li data-row-index="70"><div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div></li><li class="gw-go-even" data-row-index="71"><div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div></li><li data-row-index="72"><div class="gw-go-body-cell" style="height: 19px;">Title & Description</div></li><li class="gw-go-even" data-row-index="73"><div class="gw-go-body-cell" style="height: 19px;">Font Settings</div></li><li data-row-index="74"><div class="gw-go-body-cell" style="height: 19px;">Border Settings</div></li><li class="gw-go-even" data-row-index="75"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="76"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="77"><div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div></li><li data-row-index="78"><div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div></li><li class="gw-go-even" data-row-index="79"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://gallery-bank.tech-banker.com/product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div></div></div>
|
|
|
|
|
144 |
|
145 |
+
</div>
|
146 |
+
</div>
|
|
|
147 |
|
148 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502685906920">
|
149 |
+
<div class="wpb_wrapper">
|
150 |
+
<h3 style="text-align: center;">Fast. Easy. Secure.</h3>
|
151 |
|
152 |
+
</div>
|
153 |
+
</div>
|
|
|
154 |
|
155 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502685915568">
|
156 |
+
<div class="wpb_wrapper">
|
157 |
+
<h4 style="text-align: center;">This payment recurs annually.</h4>
|
|
|
|
|
158 |
|
159 |
+
</div>
|
160 |
+
</div>
|
|
|
161 |
|
162 |
+
<div class="wpb_text_column wpb_content_element ">
|
163 |
+
<div class="wpb_wrapper">
|
164 |
+
<p style="text-align: center;">Your initial payment gives you lifetime rights to use Gallery Bank Premium Editions, while annual renewals give you ongoing access to updates and support. You can cancel anytime and use the plugin forever, but you’ll lose access to support and updates when your membership expires.</p>
|
165 |
|
166 |
+
</div>
|
167 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
</div>
|
169 |
</form>
|
170 |
</div>
|