-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
1423 lines (1301 loc) · 83.3 KB
/
product.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<!-- DEFAULT META TAGS -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Journal - Maxartkiller" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://maxartkiller.com/admin-dashboard-bootstrap-5-angular-12-framework-7-html-templates/" />
<meta property="og:description" content="Productive interface design also requires best user experience design for Bootstrap Admin Templates 2022 and 2023. We have collected best admin dashboard for upcoming 2022-2023 projects development with trending design ..." />
<meta name='robots' content='noindex, follow' />
<script>window._wca = window._wca || [];</script>
<!-- This site is optimized with the Yoast SEO plugin v19.4 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Your Organization Name</title>
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Page not found - Maxartkiller" />
<meta property="og:site_name" content="Maxartkiller" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://maxartkiller.com/#organization","name":"Maxartkiller","url":"https://maxartkiller.com/","sameAs":["https://instagram.com/maxartkiller/","https://www.linkedin.com/company/maxartkiller","https://in.pinterest.com/maxartkiller/","https://www.facebook.com/maxartkiller/","https://twitter.com/maxartkiller"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://maxartkiller.com/#/schema/logo/image/","url":"https://maxartkiller.com/wp-content/uploads/2019/08/maxartkiller.png","contentUrl":"https://maxartkiller.com/wp-content/uploads/2019/08/maxartkiller.png","width":150,"height":150,"caption":"Maxartkiller"},"image":{"@id":"https://maxartkiller.com/#/schema/logo/image/"}},{"@type":"WebSite","@id":"https://maxartkiller.com/#website","url":"https://maxartkiller.com/","name":"Maxartkiller","description":"Admi, Dashboard, Mobile HTML templates","publisher":{"@id":"https://maxartkiller.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://maxartkiller.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//platform-api.sharethis.com' />
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Maxartkiller » Feed" href="https://maxartkiller.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Maxartkiller » Comments Feed" href="https://maxartkiller.com/comments/feed/" />
<!-- This site uses the Google Analytics by MonsterInsights plugin v8.9.1 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<script
src="//www.googletagmanager.com/gtag/js?id=G-C94XLDXYD8" data-cfasync="false" data-wpfc-render="false" type="text/javascript" async></script>
<script data-cfasync="false" data-wpfc-render="false" type="text/javascript">
var mi_version = '8.9.1';
var mi_track_user = true;
var mi_no_track_reason = '';
var disableStrs = [
'ga-disable-G-C94XLDXYD8',
'ga-disable-UA-111664935-1',
];
/* Function to detect opted out users */
function __gtagTrackerIsOptedOut() {
for (var index = 0; index < disableStrs.length; index++) {
if (document.cookie.indexOf(disableStrs[index] + '=true') > -1) {
return true;
}
}
return false;
}
/* Disable tracking if the opt-out cookie exists. */
if (__gtagTrackerIsOptedOut()) {
for (var index = 0; index < disableStrs.length; index++) {
window[disableStrs[index]] = true;
}
}
/* Opt-out function */
function __gtagTrackerOptout() {
for (var index = 0; index < disableStrs.length; index++) {
document.cookie = disableStrs[index] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStrs[index]] = true;
}
}
if ('undefined' === typeof gaOptout) {
function gaOptout() {
__gtagTrackerOptout();
}
}
window.dataLayer = window.dataLayer || [];
window.MonsterInsightsDualTracker = {
helpers: {},
trackers: {},
};
if (mi_track_user) {
function __gtagDataLayer() {
dataLayer.push(arguments);
}
function __gtagTracker(type, name, parameters) {
if (!parameters) {
parameters = {};
}
if (parameters.send_to) {
__gtagDataLayer.apply(null, arguments);
return;
}
if (type === 'event') {
parameters.send_to = monsterinsights_frontend.v4_id;
var hookName = name;
if (typeof parameters['event_category'] !== 'undefined') {
hookName = parameters['event_category'] + ':' + name;
}
if (typeof MonsterInsightsDualTracker.trackers[hookName] !== 'undefined') {
MonsterInsightsDualTracker.trackers[hookName](parameters);
} else {
__gtagDataLayer('event', name, parameters);
}
parameters.send_to = monsterinsights_frontend.ua;
__gtagDataLayer(type, name, parameters);
} else {
__gtagDataLayer.apply(null, arguments);
}
}
__gtagTracker('js', new Date());
__gtagTracker('set', {
'developer_id.dZGIzZG': true,
});
__gtagTracker('config', 'G-C94XLDXYD8', {"forceSSL":"true","link_attribution":"true","page_path":'\/404.html?page=' + document.location.pathname + document.location.search + '&from=' + document.referrer} );
__gtagTracker('config', 'UA-111664935-1', {"forceSSL":"true","link_attribution":"true","page_path":'\/404.html?page=' + document.location.pathname + document.location.search + '&from=' + document.referrer} );
window.gtag = __gtagTracker; (function () {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
/* ga and __gaTracker compatibility shim. */
var noopfn = function () {
return null;
};
var newtracker = function () {
return new Tracker();
};
var Tracker = function () {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = function () {
var args = Array.prototype.slice.call(arguments);
args.unshift('send');
__gaTracker.apply(null, args);
};
var __gaTracker = function () {
var len = arguments.length;
if (len === 0) {
return;
}
var f = arguments[len - 1];
if (typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function') {
if ('send' === arguments[0]) {
var hitConverted, hitObject = false, action;
if ('event' === arguments[1]) {
if ('undefined' !== typeof arguments[3]) {
hitObject = {
'eventAction': arguments[3],
'eventCategory': arguments[2],
'eventLabel': arguments[4],
'value': arguments[5] ? arguments[5] : 1,
}
}
}
if ('pageview' === arguments[1]) {
if ('undefined' !== typeof arguments[2]) {
hitObject = {
'eventAction': 'page_view',
'page_path': arguments[2],
}
}
}
if (typeof arguments[2] === 'object') {
hitObject = arguments[2];
}
if (typeof arguments[5] === 'object') {
Object.assign(hitObject, arguments[5]);
}
if ('undefined' !== typeof arguments[1].hitType) {
hitObject = arguments[1];
if ('pageview' === hitObject.hitType) {
hitObject.eventAction = 'page_view';
}
}
if (hitObject) {
action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction;
hitConverted = mapArgs(hitObject);
__gtagTracker('event', action, hitConverted);
}
}
return;
}
function mapArgs(args) {
var arg, hit = {};
var gaMap = {
'eventCategory': 'event_category',
'eventAction': 'event_action',
'eventLabel': 'event_label',
'eventValue': 'event_value',
'nonInteraction': 'non_interaction',
'timingCategory': 'event_category',
'timingVar': 'name',
'timingValue': 'value',
'timingLabel': 'event_label',
'page': 'page_path',
'location': 'page_location',
'title': 'page_title',
};
for (arg in args) {
if (!(!args.hasOwnProperty(arg) || !gaMap.hasOwnProperty(arg))) {
hit[gaMap[arg]] = args[arg];
} else {
hit[arg] = args[arg];
}
}
return hit;
}
try {
f.hitCallback();
} catch (ex) {
}
};
__gaTracker.create = newtracker;
__gaTracker.getByName = newtracker;
__gaTracker.getAll = function () {
return [];
};
__gaTracker.remove = noopfn;
__gaTracker.loaded = true;
window['__gaTracker'] = __gaTracker;
})();
} else {
console.log("");
(function () {
function __gtagTracker() {
return null;
}
window['__gtagTracker'] = __gtagTracker;
window['gtag'] = __gtagTracker;
})();
}
</script>
<!-- / Google Analytics by MonsterInsights -->
<link rel='stylesheet' id='kona-default-style-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/style.css?ver=2.9.41' type='text/css' media='all' />
<link rel='stylesheet' id='fancybox-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/fancybox.min.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesome-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/font-awesome.min.css?ver=3.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='ionicons-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/ionicons.css?ver=3.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='isotope-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/isotope.css?ver=2.2' type='text/css' media='all' />
<link rel='stylesheet' id='flickity-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/flickity.css?ver=2.0.11' type='text/css' media='all' />
<link rel='stylesheet' id='kona-woo-style-css' href='https://maxartkiller.com/wp-content/themes/kona/woocommerce/files/css/woocommerce-kona.css?ver=2.9.41' type='text/css' media='all' />
<link rel='stylesheet' id='kona-wp-style-css' href='https://maxartkiller.com/wp-content/themes/kona/style.css?ver=2.9.41' type='text/css' media='all' />
<style id='kona-wp-style-inline-css' type='text/css'>
header #logo .text-logo { line-height: 64px; }
#header #logo img { height: 64px; }
#header #logo .text-logo { line-height: 64px; }
#menu nav#main-nav > ul { height: 64px; }
#menu nav#main-nav > ul > li { top: 22px; }
#menu nav#main-nav > ul > li[class*="megamenu"] > .sub-menu { padding-top: calc(30px + 22px); }
#menu nav#main-nav > ul > li[class*="megamenu"] > .sub-menu::before { height: calc(100% - (30px + 22px) + 20px + 20px); }
.menu-actions > div { height: 64px; }
.menu-actions > div > a { height: 64px; line-height: 64px; }
.menu-actions > div:not(.display-icon) > a.login-open { height: 20px; line-height: 20px; top: 22px; }
.header-wishlist .wishlist_products_counter::before { margin-top: 19px !important; }
#hero.hero-boxedauto, #hero.hero-boxedfull { margin-top: calc(64px + 80px); }
#hero.hero-boxedfull { min-height: calc(100vh - 64px - 80px); }
#hero.hero-fullwidth.no-bg #page-title, #hero.hero-fullscreen.no-bg #page-title { padding-top: calc(64px + 80px + 40px); }
#hero.hero-fullwidth #page-title, #hero.hero-fullscreen #page-title { padding-top: calc(64px + 80px + 20px); padding-bottom: calc(64px + 80px + 0px); }
.product .product-hero { padding-top: calc(64px + 80px + 60px); }
body:not(.single-product) #header + #hero-and-body > #page-body:first-child { margin-top: calc(64px + 80px + 60px); }
body:not(.single-product) #header.has-header-bar + #hero-and-body > #page-body:first-child { margin-top: calc(64px + 113px + 60px); }
@media only screen and (max-width: 1200px) {
body #header:not(.break-1024) #logo img { height: 30px !important; }
body #header:not(.break-1024) #logo .text-logo { line-height: 30px; }
body #header:not(.break-1024) .menu-actions > div { height: 30px; }
body #header:not(.break-1024) .menu-actions > div > a { height: 30px; line-height: 30px; }
body #header:not(.break-1024) .menu-toggle { height: 30px; }
body #header:not(.break-1024) + #hero-and-body .product .product-hero { padding-top: calc(30px + 40px + 30px); }
body #header:not(.break-1024) .menu-is-open #menu #menu-inner { padding-top: calc(30px + 40px + 10px) }
body #header:not(.break-1024) #menu .menu-login + nav#main-nav { max-height: calc(100vh - 30px - 40px - 10px - 105px); }
body #header:not(.break-1024) + #hero-and-body #hero.hero-boxedauto, body #header:not(.break-1024) + #hero-and-body #hero.hero-boxedfull { margin-top: calc(30px + 40px + 20px) ; }
body:not(.single-product) #header:not(.break-1024) + #hero-and-body > #page-body:first-child { margin-top: calc(30px + 20px + 60px) !important ; }
body:not(.single-product) #header:not(.break-1024).has-header-bar:not(.hide-header-bar-mobile) + #hero-and-body > #page-body:first-child { margin-top: calc(30px + 50px + 60px) !important ; }
body #header:not(.break-1024).menu-is-open #menu #menu-inner { padding-top: calc(30px + 60px); }
body #header:not(.break-1024).has-header-bar:not(.hide-header-bar-mobile).menu-is-open #menu #menu-inner { padding-top: calc(30px + 60px + 30px); }
body #header:not(.break-1024) #menu .scroll-menu { max-height: calc(100vh - 90px - 50px); }
body #header:not(.break-1024).has-header-bar:not(.hide-header-bar-mobile) #menu .scroll-menu { max-height: calc(100vh - 120px - 50px); }
}
@media only screen and (max-width: 1024px) {
body #header.break-1024 #logo img { height: 30px !important; }
body #header.break-1024 #logo .text-logo { line-height: 30px; }
body #header.break-1024 .menu-actions > div { height: 30px; }
body #header.break-1024 .menu-actions > div > a { height: 30px; line-height: 30px; }
body #header.break-1024 .menu-toggle { height: 30px; }
body #header.break-1024 + #hero-and-body .product .product-hero { padding-top: calc(30px + 40px + 30px); }
body #header.break-1024 .menu-is-open #menu #menu-inner { padding-top: calc(30px + 40px + 10px) }
body #header.break-1024 #menu .menu-login + nav#main-nav { max-height: calc(100vh - 30px - 40px - 10px - 105px); }
body #header.break-1024 + #hero-and-body #hero.hero-boxedauto, body #header.break-1024 + #hero-and-body #hero.hero-boxedfull { margin-top: calc(30px + 40px + 20px); }
body:not(.single-product) #header.break-1024 + #hero-and-body > #page-body:first-child { margin-top: calc(30px + 20px + 60px) !important ; }
body:not(.single-product) #header.break-1024.has-header-bar:not(.hide-header-bar-mobile) + #hero-and-body > #page-body:first-child { margin-top: calc(30px + 50px + 60px) !important ; }
body #header.break-1024.menu-is-open #menu #menu-inner { padding-top: calc(30px + 60px); }
body #header.break-1024.has-header-bar:not(.hide-header-bar-mobile).menu-is-open #menu #menu-inner { padding-top: calc(30px + 60px + 30px); }
body #header.break-1024 #menu .scroll-menu { max-height: calc(100vh - 90px - 50px); }
body #header.break-1024.has-header-bar:not(.hide-header-bar-mobile) #menu .scroll-menu { max-height: calc(100vh - 120px - 50px); }
}
@media only screen and (max-width: 1024px) {
body .product .product-hero { padding-top: calc(30px + 40px + 40px); }
}
@media only screen and (max-width: 768px) {
body .product .product-hero { padding-top: calc(30px + 40px + 0px) !important; }
body .product .product-hero:not(.no-bg) { padding-top: 0 !important; margin-top: calc(30px + 40px + 0px) !important; }
}
@media only screen and (max-width: 640px) {
body .menu-search, body .header-wishlist { top: calc(30px + 40px + 7px); }
body #header.has-header-bar:not(.hide-header-bar-mobile) .menu-search, body #header.has-header-bar:not(.hide-header-bar-mobile) .header-wishlist { top: calc(30px + 40px + 30px + 7px); }
}
body{font-family: "Roboto";font-weight: 400;font-size: 15px;line-height: 23px;}body strong,body b, dt, .tinv-wishlist .product-name .variation span:first-child, .tinv-wishlist .product-name .variation br + span{ font-weight: 700; }blockquote, blockquote cite, cite, mark, address, code,
.comments .comment-reply-link, .comments #cancel-comment-reply-link,
.widget ul:not(.socialmedia-widget) li a,
body #cookie-notice .cookie-notice-container #cn-accept-cookie,
body #cookie-notice .cookie-notice-container #cn-refuse-cookie,
.woocommerce-message, .woocommerce-error,
.product .cart .variations .variation .variable-items-wrapper li > span,
.shop_table .product-name .product-title .product-quantity,
.empty-cart .empty-icon,
.menu-language a,
header .wcml_currency_switcher a
{ font-weight: 700; }h1, .h1{font-family: "Nunito";font-weight: 400;font-size: 53px;line-height: 60px;text-transform: none;}h1 strong,h1 b, .h1 strong,.h1 b{ font-weight: 700; }div h1:first-child, div.h1:first-child { margin-top: -0.06em; }div h1:last-child, div.h1:last-child { margin-bottom: -0.06em; }h2, .h2{font-family: "Nunito";font-weight: 400;font-size: 40px;line-height: 48px;text-transform: none;}h2 strong,h2 b, .h2 strong,.h2 b{ font-weight: 600; }div h2:first-child, div.h2:first-child { margin-top: -0.09em; }div h2:last-child, div.h2:last-child { margin-bottom: -0.09em; }h3, .h3{font-family: "Nunito";font-weight: 400;font-size: 32px;line-height: 40px;text-transform: none;}h3 strong,h3 b, .h3 strong,.h3 b{ font-weight: 600; }div h3:first-child, div.h3:first-child { margin-top: -0.11em; }div h3:last-child, div.h3:last-child { margin-bottom: -0.11em; }#header-search form input[type=search], body h2.sg_title {font-family: "Nunito";font-weight: 600;font-size: 32px !important; line-height: 40px; height: 40px;text-transform: none;}h4, .h4{font-family: "Montserrat";font-weight: 400;font-size: 22px;line-height: 30px;text-transform: none;}h4 strong,h4 b, .h4 strong,.h4 b{ font-weight: 600; }div h4:first-child, div.h4:first-child { margin-top: -0.16em; }div h4:last-child, div.h4:last-child { margin-bottom: -0.16em; }.woocommerce-MyAccount-content h3, #reply-title {font-family: "Montserrat";font-weight: 600;font-size: 22px; line-height: 30px;text-transform: none;}h5, .h5{font-family: "Montserrat";font-weight: 400;font-size: 18px;line-height: 25px;text-transform: none;}h5 strong,h5 b, .h5 strong,.h5 b{ font-weight: 600; }div h5:first-child, div.h5:first-child { margin-top: -0.18em; }div h5:last-child, div.h5:last-child { margin-bottom: -0.18em; }#single-pagination .pagination li .post-title { font-size: 18px;line-height: 25px; }.content-pagination .pages, .content-pagination .pages a,
.cart-collaterals .shop_table .order-total th,
.cart-collaterals .shop_table .order-total td .amount,
.woocommerce .sr-checkout-order .shop_table tfoot .order-total th,
.woocommerce .sr-checkout-order .shop_table tfoot .order-total .amount,
.woocommerce .woocommerce-order .shop_table tfoot tr:last-child th,
.woocommerce .woocommerce-order .shop_table tfoot tr:last-child .amount,
.woocommerce-order .woocommerce-order-overview li > strong,
.woocommerce-order .woocommerce-order-overview li .amount {
font-family: "Montserrat";
font-weight: 600;
}h6, .h6{font-family: "Montserrat";font-weight: 400;font-size: 16px;line-height: 22px;text-transform: none;}h6 strong,h6 b, .h6 strong,.h6 b{ font-weight: 600; }div h6:first-child, div.h6:first-child { margin-top: -0.17em; }div h6:last-child, div.h6:last-child { margin-bottom: -0.17em; }@media only screen and (max-width: 1024px) { body{ font-size: 15px;line-height: 23px;}h1, .h1{ font-size: 50px;line-height: 68px;}h2, .h2{ font-size: 36px;line-height: 44px;}h3, .h3{ font-size: 28px;line-height: 35px;}h4, .h4{ font-size: 20px;line-height: 27px;}h5, .h5{ font-size: 16px;line-height: 23px;}h6, .h6{ font-size: 15px;line-height: 21px;} }@media only screen and (max-width: 768px) { body{ font-size: 14px;line-height: 22px;}h1, .h1{ font-size: 46px;line-height: 56px;}h2, .h2{ font-size: 34px;line-height: 42px;}h3, .h3{ font-size: 25px;line-height: 32px;}h4, .h4{ font-size: 19px;line-height: 26px;}h5, .h5{ font-size: 16px;line-height: 23px;}h6, .h6{ font-size: 14px;line-height: 20px;} }@media only screen and (max-width: 480px) { body{ font-size: 14px;line-height: 22px;}h1, .h1{ font-size: 38px;line-height: 44px;}h2, .h2{ font-size: 29px;line-height: 36px;}h3, .h3{ font-size: 24px;line-height: 31px;}h4, .h4{ font-size: 19px;line-height: 26px;}h5, .h5{ font-size: 16px;line-height: 23px;}h6, .h6{ font-size: 14px;line-height: 20px;} }.title-alt {font-family: Nunito;font-weight: 400;text-transform: none;}.title-alt b, .title-alt strong, strong .title-alt { font-weight: 200; }#menu nav#main-nav ul > li a, .menu-actions > div > a, #menu .menu-login a {font-family: Roboto;font-weight: 400;font-size: 15px;text-transform: none;}.widget .wcapf-layered-nav ul li a, .widget .wcapf-active-filters a, .woocommerce-MyAccount-navigation ul li a, .grid-filter li a {font-family: Roboto;font-weight: 400;text-transform: none;}@media only screen and (min-width: 1199px) { #menu nav#main-nav > ul > li .sub-menu li.image-item a {font-family: Roboto;font-weight: 400;} }#menu nav#main-nav > ul > li .sub-menu li a, .kona-tabs .tp-tab .tp-tab-title {font-family: Roboto;font-weight: 400;font-size: 14px;line-height: 18px;}.widget ul:not(.socialmedia-widget) li a {font-family: Roboto;font-weight: 400;font-size: 14px;}#footer .footer-bottom > a {font-family: Roboto;font-weight: 400;}.portfolio-container .portfolio-name {font-family: Montserrat;font-weight: 500;text-transform: none;}.portfolio-category {letter-spacing: em;}.blog-item .blog-info .post-name,
#single-pagination .pagination li a[data-title]::after {font-family: Montserrat;font-weight: 600;text-transform: none;}#page-title .post-name {font-family: Montserrat;font-weight: 700;text-transform: none;}.shop-container .product-name, .shop_table .product-name .product-title, .tinv-wishlist table .product-name {font-family: Montserrat;font-weight: 500;text-transform: none;}.product .product-info .product_title, #fixed-product-add .product-name {font-family: Montserrat;font-weight: 700;text-transform: none;}.price, .amount, .woocommerce .sr-checkout-order .shop_table tfoot td, .woocommerce .woocommerce-order .shop_table tfoot td {font-family: Montserrat;font-weight: 400;text-transform: none;}.comments .time,
.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label span, .widget .slider-values p span,
body #cookie-notice .cookie-notice-container a,
.header-cart .cart-amount,
span.onsale,
span.new-badge,
.woocommerce-breadcrumb,
.product .product_meta,
.product .cart .woocommerce-variation .woocommerce-variation-availability,
.stock,
.shop_table .product-name .variation dd,
.shop_table .product-name .wc-item-meta li > p,
.shop_table .product-name .backorder_notification,
.shop_table .remove,
.woocommerce-remove-coupon,
.post-date, .post-cat, .meta-author,
#single-pagination .pagination li a .text {font-family: Montserrat;font-weight: 400;text-transform: none;}.product .product-info .price, .product .product-info .amount { font-size: 28px; line-height: 32px; }.sr-button, .sr-button-text, input[type=submit], input[type=button], .button, button, .woocommerce .addresses header a.edit, .comments .comment-list .pingback .edit-link a {font-family: Montserrat;font-weight: 500;text-transform: none;}.sr-button strong, .sr-button b { font-weight: 500; }.pagination li a,
#page-pagination .pagination li.page span, #page-pagination .pagination li.page a { font-weight: 500; }.widget-title, .widget-title.title-alt,
#menu nav#main-nav.with-title > ul > li[class*="megamenu"] > .sub-menu > li > a,
table th,
.tinv-wishlist .social-buttons > span {font-family: Montserrat;font-weight: 500;font-size: 14px;text-transform: none;}label, form label, .form-row.deplace > label, label input + span, input[type="radio"] + label, input[type="checkbox"] + label {font-family: Montserrat;font-weight: 400;font-size: 15px;text-transform: none;}@media only screen and (max-width: 768px) {
label, form label, .form-row.deplace > label, label input + span, input[type="radio"] + label, input[type="checkbox"] + label {
size: 12px;
}
}input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="date"], input[type="search"], textarea, select, .select2-container .select2-selection--single .select2-selection__rendered,
#billing_country_field label + .woocommerce-input-wrapper > strong {font-family: Montserrat;font-weight: 500;font-size: 15px !important;text-transform: none;}@media only screen and (max-width: 768px) {
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="date"], input[type="search"], textarea, select, .select2-container .select2-selection--single .select2-selection__rendered {
size: 12px !important;
}
}#quick-view .product-info .product_title { font-size: 32px; line-height: 40px; }
.colored { color: #000000; }
#menu nav#main-nav > ul > li .sub-menu li a:hover,
#menu nav#main-nav > ul > li .sub-menu li.current-menu-item > a,
a:hover,
p a:not(.entry-navigation__item):not(.post-edit-link):not(.fancybox):not(.button):not(.image-text-link):hover,
.widget ul:not(.socialmedia-widget) li a:hover,
.product .star-rating span,
.widget .wcapf-layered-nav ul li > a:hover,
.pagination li a:hover,
#page-pagination .pagination li.page a:hover,
.content-pagination .pages a:hover,
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a,
.header-wishlist a:hover,
.grid-filter li > a:hover
{ color: #000000; opacity: 1; }
input[type=submit]:hover, input[type=button]:hover, .button:hover, button:not(.sr-button):hover,
.empty-cart .empty-icon,
.notfound-icon,
.sr-button.custom.withicon .icon,
.sr-button.custom:not(.text-trans)
{ background: #000000; }
.header-cart:hover .cart-amount::before,
a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list,
.header-wishlist a:hover .wishlist_products_counter_number,
#menu nav#main-nav ul > li.cta a:hover,
.header-cart.cart-withicon .cart-amount span.minicart-count,
.header-wishlist .wishlist_products_counter_number
{ background: #000000 !important; }
.empty-cart .empty-icon,
.header-cart:hover .cart-amount,
#menu nav#main-nav ul > li.cta a:hover,
.header-cart.cart-withicon .cart-amount span.minicart-count,
.header-wishlist .wishlist_products_counter_number
{ color: #ffffff !important; }
.menu-search a:hover svg path,
.header-cart .cart-amount:hover span.icon svg path,
.menu-actions > div.display-icon > a.login-open:hover svg path
{ fill: #000000 !important; }
span.onsale { background: #dd3333 !important; }span.hot-badge { background: #efac37 !important; }#header .header-bar { background: #000000; }.shop-container .shop-item form.cart .variations .variation .value .variable-items-wrapper[data-attribute_name="attribute_pa_color"] { display: block; }
</style>
<link rel='stylesheet' id='kona-mqueries-style-css' href='https://maxartkiller.com/wp-content/themes/kona/files/css/mqueries.css?ver=2.9.41' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://maxartkiller.com/wp-includes/css/dist/block-library/style.min.css?ver=5.8.6' type='text/css' media='all' />
<style id='wp-block-library-inline-css' type='text/css'>
.has-text-align-justify{text-align:justify;}
</style>
<link rel='stylesheet' id='mediaelement-css' href='https://maxartkiller.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.16' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='https://maxartkiller.com/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=5.8.6' type='text/css' media='all' />
<link rel='stylesheet' id='quads-style-css-css' href='https://maxartkiller.com/wp-content/plugins/quick-adsense-reloaded/includes/gutenberg/dist/blocks.style.build.css?ver=2.0.62' type='text/css' media='all' />
<link rel='stylesheet' id='wc-blocks-vendors-style-css' href='https://maxartkiller.com/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='wc-blocks-style-css' href='https://maxartkiller.com/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css' href='https://maxartkiller.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.4.4' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
#rs-demo-id {}
</style>
<link rel='stylesheet' id='share-this-share-buttons-sticky-css' href='https://maxartkiller.com/wp-content/plugins/sharethis-share-buttons/css/mu-style.css?ver=1666336234' type='text/css' media='all' />
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='woo-variation-swatches-css' href='https://maxartkiller.com/wp-content/plugins/woo-variation-swatches/assets/css/frontend.min.css?ver=1662716889' type='text/css' media='all' />
<style id='woo-variation-swatches-inline-css' type='text/css'>
:root {
--wvs-tick:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 2px rgb(0 0 0 / .8))' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M4 16L11 23 27 7'/%3E%3C/svg%3E");
--wvs-cross:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 5px rgb(255 255 255 / .6))' xmlns='http://www.w3.org/2000/svg' width='72px' height='72px' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ff0000' stroke-linecap='round' stroke-width='0.6' d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E");
--wvs-single-product-item-width:30px;
--wvs-single-product-item-height:30px;
--wvs-single-product-item-font-size:16px}
</style>
<link rel='stylesheet' id='kona-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A400%2C700%2C400%2C400%7CNunito%3A400%2C700%2C400%2C600%2C400%2C600%2C400%2C200%7CMontserrat%3A400%2C600%2C400%2C600%2C400%2C600%2C500%2C500%2C500%2C600%2C500%2C700%7CABeeZee%3A400&subset=latin%2Clatin-ext&ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='https://maxartkiller.com/wp-content/plugins/jetpack/css/jetpack.css?ver=10.9' type='text/css' media='all' />
<style id='quads-styles-inline-css' type='text/css'>
.quads-location ins.adsbygoogle {
background: transparent !important;
}
.quads.quads_ad_container { display: grid; grid-template-columns: auto; grid-gap: 10px; padding: 10px; }
.grid_image{animation: fadeIn 0.5s;-webkit-animation: fadeIn 0.5s;-moz-animation: fadeIn 0.5s;
-o-animation: fadeIn 0.5s;-ms-animation: fadeIn 0.5s;}
.quads-ad-label { font-size: 12px; text-align: center; color: #333;}
.quads-text-around-ad-label-text_around_left {
width: 50%;
float: left;
}
.quads-text-around-ad-label-text_around_right {
width: 50%;
float: right;
}
.quads-popupad {
position: fixed;
top: 0px;
width: 68em;
height: 100em;
background-color: rgba(0,0,0,0.6);
z-index: 999;
max-width: 100em !important;
margin: 0 auto;
}
.quads.quads_ad_container_ {
position: fixed;
top: 40%;
left: 36%;
}
#btn_close{
background-color: #fff;
width: 25px;
height: 25px;
text-align: center;
line-height: 22px;
position: absolute;
right: -10px;
top: -10px;
cursor: pointer;
transition: all 0.5s ease;
border-radius: 50%;
}
#btn_close_video{
background-color: #fff;
width: 25px;
height: 25px;
text-align: center;
line-height: 22px;
position: absolute;
right: -10px;
top: -10px;
cursor: pointer;
transition: all 0.5s ease;
border-radius: 50%;
}
@media screen and (max-width: 480px) {
.quads.quads_ad_container_ {
left: 10px;
}
}
.quads-video {
position: fixed;
bottom: 0px;
z-index: 9999999;
}
quads_ad_container_video{
max-width:220px;
}
.quads_click_impression { display: none;}
.quads-sticky {
width: 100% !important;
background-color: hsla(0,0%,100%,.7);
position: fixed;
max-width: 100%!important;
bottom:0;
margin:0;
text-align: center;
}.quads-sticky .quads-location {
text-align: center;
}.quads-sticky .wp_quads_dfp {
display: contents;
}
a.quads-sticky-ad-close {
background-color: #fff;
width: 25px;
height: 25px;
text-align: center;
line-height: 22px;
position: absolute;
right: 0px;
top: -15px;
cursor: pointer;
transition: all 0.5s ease;
border-radius: 50%;
}
</style>
<script type='text/javascript' src='https://maxartkiller.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script>
<script type='text/javascript' src='https://maxartkiller.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' src='https://maxartkiller.com/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js?ver=8.9.1' id='monsterinsights-frontend-script-js'></script>
<script data-cfasync="false" data-wpfc-render="false" type="text/javascript" id='monsterinsights-frontend-script-js-extra'>/* <![CDATA[ */
var monsterinsights_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/maxartkiller.com","hash_tracking":"false","ua":"UA-111664935-1","v4_id":"G-C94XLDXYD8"};/* ]]> */
</script>
<script type='text/javascript' src='https://maxartkiller.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.4.4' id='tp-tools-js'></script>
<script type='text/javascript' src='https://maxartkiller.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.4.4' id='revmin-js'></script>
<script type='text/javascript' src='//platform-api.sharethis.com/js/sharethis.js?ver=2.1.5#property=5d5a660c28f3a9001294c899&product=inline-buttons&source=sharethis-share-buttons-wordpress' id='share-this-share-buttons-mu-js'></script>
<script defer type='text/javascript' src='https://stats.wp.com/s-202243.js' id='woocommerce-analytics-js'></script>
<link rel="https://api.w.org/" href="https://maxartkiller.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://maxartkiller.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://maxartkiller.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.8.6" />
<meta name="generator" content="WooCommerce 6.8.0" />
<script>!function(e,n){"function"==typeof define&&define.amd?define([],n("adsenseLoader")):"object"==typeof exports?module.exports=n("adsenseLoader"):e.adsenseLoader=n("adsenseLoader")}(this,function(e){"use strict";var n=250,t={laziness:1,onLoad:!1},o=function(e,n){var t,o={};for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);for(t in n)Object.prototype.hasOwnProperty.call(n,t)&&(o[t]=n[t]);return o},r=function(e,n){var t,o;return function(){var r=this,a=arguments,i=+new Date;t&&i<t+e?(clearTimeout(o),o=setTimeout(function(){t=i,n.apply(r,a)},e)):(t=i,n.apply(r,a))}},a=[],i=[],s=[],d=function(){if(!a.length)return!0;var e=window.pageYOffset,n=window.innerHeight;a.forEach(function(t){var o,r,d=(o=t,r=o.getBoundingClientRect(),{top:r.top+document.body.scrollTop,left:r.left+document.body.scrollLeft}).top,f=t._adsenseLoaderData.options.laziness+1;if(d-e>n*f||e-d-t.offsetHeight-n*f>0)return!0;a=u(a,t),t._adsenseLoaderData.width=c(t),function(e,n){e.classList?e.classList.add(n):e.className+=" "+n}(t.querySelector("ins"),"adsbygoogle"),i.push(t),"undefined"!=typeof adsbygoogle?function(e){(adsbygoogle=window.adsbygoogle||[]).push({});var n=e._adsenseLoaderData.options.onLoad;"function"==typeof n&&e.querySelector("iframe")&&e.querySelector("iframe").addEventListener("load",function(){n(e)})}(t):s.push(t)})},c=function(e){return parseInt(window.getComputedStyle(e,":before").getPropertyValue("content").slice(1,-1)||9999)},u=function(e,n){return e.filter(function(e){return e!==n})},f=function(e,n){return e._adsenseLoaderData={originalHTML:e.innerHTML,options:n},e.adsenseLoader=function(n){"destroy"==n&&(a=u(a,e),i=u(i,e),s=u(i,e),e.innerHTML=e._adsenseLoaderData.originalHTML)},e};function l(e,n){"string"==typeof e?e=document.querySelectorAll(e):void 0===e.length&&(e=[e]),n=o(t,n),[].forEach.call(e,function(e){e=f(e,n),a.push(e)}),this.elements=e,d()}return window.addEventListener("scroll",r(n,d)),window.addEventListener("resize",r(n,d)),window.addEventListener("resize",r(n,function(){if(!i.length)return!0;var e=!1;i.forEach(function(n){n.querySelector("ins").classList.contains("adsbygoogle")||n._adsenseLoaderData.width==c(n)||(e=!0,i=u(i,n),n.innerHTML=n._adsenseLoaderData.originalHTML,a.push(n))}),e&&d()})),l.prototype={destroy:function(){this.elements.forEach(function(e){e.adsenseLoader("destroy")})}},window.adsenseLoaderConfig=function(e){void 0!==e.throttle&&(n=e.throttle)},l});</script>
<script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><script type='text/javascript'>document.cookie = 'quads_browser_width='+screen.width;</script><style type='text/css'>img#wpstats{display:none}</style>
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<meta name="generator" content="Powered by Slider Revolution 6.4.4 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<link rel="icon" href="https://maxartkiller.com/wp-content/uploads/2020/05/cropped-logo2-32x32.png" sizes="32x32" />
<link rel="icon" href="https://maxartkiller.com/wp-content/uploads/2020/05/cropped-logo2-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://maxartkiller.com/wp-content/uploads/2020/05/cropped-logo2-180x180.png" />
<meta name="msapplication-TileImage" content="https://maxartkiller.com/wp-content/uploads/2020/05/cropped-logo2-270x270.png" />
<script type="text/javascript">function setREVStartSize(e){
//window.requestAnimationFrame(function() {
window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
try {
var pw = document.getElementById(e.c).parentNode.offsetWidth,
newh;
pw = pw===0 || isNaN(pw) ? window.RSIW : pw;
e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
if(e.layout==="fullscreen" || e.l==="fullscreen")
newh = Math.max(e.mh,window.RSIH);
else{
e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
var nl = new Array(e.rl.length),
ix = 0,
sl;
e.tabw = e.tabhide>=pw ? 0 : e.tabw;
e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
e.tabh = e.tabhide>=pw ? 0 : e.tabh;
e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
sl = nl[0];
for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
}
if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style"));
document.getElementById(e.c).height = newh+"px";
window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }";
} catch(e){
console.log("Failure at Presize of Slider:" + e)
}
//});
};</script>
<style type="text/css" id="wp-custom-css">
#menu nav#main-nav > ul > li .sub-menu .item-thumb {
margin-top: 0;}
#menu nav#main-nav > ul > li.megamenu4 > .sub-menu {
width: 1024px;
}
/* phone preview screen */
.phonex{
height: 812px;
max-width: 375px;
width: 100%;
border-radius: 25px;
border: 5px solid #222222;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
margin: 0 auto;
display: block;
}
.phonex3{
height: 812px;
max-width: 375px;
width: 100%;
border-radius:10px;
border: 5px solid #222222;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
margin: 0 auto;
display: block;
}
.phonex2{
height: 750px;
max-width: 320px;
width: 100%;
border-radius: 25px;
border: 5px solid #222222;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
margin: 0 auto;
display: block;
}
.tabletx{
height: 768px;
max-width: 1024px;
width: 100%;
border-radius: 20px;
border: 5px solid #222222;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 3px 10px rgba(0, 0, 0, 0.2);
margin: 0 auto;
display: block;
}
.arrowdemo{
position: relative;
margin-top: 50px;
text-align: center;
}
.position-relative{
position: relative
}
.arrowdemo img.arrowimg{
width:70px;
transform: rotate(71deg);
-ms-transform: rotate(71deg);
-moz-transform: rotate(71deg);
}
.arrowdemo .left-part{
width: 48%;
text-align: right;
display:inline-block;
padding-right: 30px;
border-right: 1px dashed #ddd;
box-sizing: border-box;
vertical-align: top;
}
.arrowdemo .right-part{
width: 48%;
text-align: left;
display:inline-block;
padding-left: 30px;
box-sizing: border-box;
vertical-align: top;
}
.arrowdemo h5{
font-size: 16px;
margin-top: 10px;
font-weight: 500;
}
.arrowdemo p{
margin-top: 0px;
font-size: 12px;
}
.arrowdemo img.scanme{
position: relative;
margin-top: 0px;
width: 95px;
}
.overlaybg{
position: fixed;
z-index: 99998;
right: 0;
top:0;
width:100%;
height:100%;
height:100vh;
}
.phonex.detached{
position: fixed;
z-index: 99999;
right: 0;
top: 40px;
}
.text-center ul{
display:inline-block
}
.socialmedia-widget li a{
line-height:22px;
}
.socialmedia-widget li a::before{
font-size:22px;
}
.woo_main_title .main_title{
display:block
}
#header, #footer{
display:none;
}
body:not(.single-product) #header + #hero-and-body > #page-body:first-child {
margin-top: calc(64px + 80px) !important;
}
body.maxframeloaded:not(.single-product) #header + #hero-and-body > #page-body:first-child {
margin-top: 0 !important;
}
body #cookie-notice.cookie-notice-hidden{
padding:0;
}
.margin-top-200{
margin-top: -250px;
position: relative;
z-index:3
}
.margin-top-200 .isotope-item{
border: 3px solid #ffffff;
box-sizing:border-box
}
p > a{
vertical-align:middle !important
}
.product .product-info .product_title {
font-size: 36px;
line-height: 46px;
}
.main-content.left-float {
border-right: 1px solid #f3f3f3;
padding-right: 20px;
}
#blog-single .meta-tags a {
font-size: 1em;
line-height: 1.3em;
display: inline-block;
padding: 5px 10px;
border: 1px solid #dddddd;
margin: 3px 1px;
border-radius: 25px;
}
.product .product-layout-modern .column-section { display: -webkit-flex; display: -ms-flex; display: -moz-flex; display: flex;}
.product .product-layout-modern .column-section .column:nth-child(2) { -webkit-order: 2; order: 2;}
.product .product-layout-modern .column-section .column.last-col { order: 1; -webkit-order: 1; float: left;}
.phone3d{
box-shadow: 0 10px 20px rgba(30, 42, 90, 0.1), inset 4px 4px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 10px rgba(176, 187, 230, 0.8);display: inline-block; padding: 40px 15px 15px 15px; border-radius: 36px; background: #ffff; position: relative;}
.phone3d:before{
content: "";
height: 8px;
width: 100px;
position: absolute;
left: 50%;
top: 20px;
background: #f0f2fa;
margin-left: -50px;
border-radius: 4px;
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);}
.phone3d:after{
content: "";
height: 8px;
width: 8px;
position: absolute;
left: 50%;
top: 20px;
background: #f0f2fa;
margin-left: 60px;
border-radius: 4px;
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);}
.phone3d iframe{
border-color: #ffffff;
box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.2);
border-radius: 24px;
overflow: hidden;
border: 2px solid #e1e6f5;
height: 812px;
width: 375px;
}
.phone3d.dark{background: #202229;}
.phone3d.dark iframe{border-color: #3a3d4b;}
.phone3d.dark:before, .phone3d.dark:after{ background:#111111}
.flickity-slider > div {text-align: center;}
@media only screen and (min-width: 769px){
.product .product-layout-modern .product-info {
margin: 200px 0 100px 0;
}
}
.phone12 {
margin: 15px auto;
padding: 4px;
border-radius: 50px;
width: auto;
display: inline-block;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 3px 15px rgba(0, 0, 0, 0.35);
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 3px 15px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 3px 15px rgba(0, 0, 0, 0.35);
position: relative
}
.phone12:after {
content: '';
position: absolute;
left: -4px;
top: 260px;
width: 4px;
height: 50px;
background: #000000;
display: block;
border-radius: 4px 0 0 4px;
}
.phone12:before {
content: '';
position: absolute;
left: -4px;
top: 200px;
width: 4px;
height: 50px;
background: #000000;
display: block;
border-radius: 4px 0 0 4px;
}
.phone12 .screenborder:before {
content: '';
position: absolute;
right: -7px;
top: 200px;
width: 4px;
height: 100px;
background: #000000;
display: block;
border-radius: 0 4px 4px 0;
}
.phone12.golden,
.phone12.golden .screenborder {
background: #000000;
background: -moz-linear-gradient(45deg, #000000 0%, #c19e67 20%, #b68d4c 20%, #2d0406 66%, #b68d4c 78%, #c19e67 78%, #c19e67 78%, #000000 100%);
background: -webkit-linear-gradient(45deg, #000000 0%, #c19e67 20%, #b68d4c 20%, #2d0406 66%, #b68d4c 78%, #c19e67 78%, #c19e67 78%, #000000 100%);
background: linear-gradient(45deg, #000000 0%, #c19e67 20%, #b68d4c 20%, #2d0406 66%, #b68d4c 78%, #c19e67 78%, #c19e67 78%, #000000 100%);
}
.phone12.rosegolden,
.phone12.rosegolden .screenborder {
background: #000000;
background: -moz-linear-gradient(45deg, #000000 0%, #f2abbf 20%, #ef94ac 20%, #990d3e 66%, #f2abbf 80%, #f2abbf 81%, #f78cb2 81%, #000000 100%);
background: -webkit-linear-gradient(45deg, #000000 0%, #f2abbf 20%, #ef94ac 20%, #990d3e 66%, #f2abbf 80%, #f2abbf 81%, #f78cb2 81%, #000000 100%);
background: linear-gradient(45deg, #000000 0%, #f2abbf 20%, #ef94ac 20%, #990d3e 66%, #f2abbf 80%, #f2abbf 81%, #f78cb2 81%, #000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}
.phone12.blue,
.phone12.blue .screenborder {
background: #000000;
background: -moz-linear-gradient(45deg, #000000 0%, #3d518c 20%, #a1bee2 20%, #0b497f 66%, #a1bee2 80%, #3d518c 80%, #000000 100%);
background: -webkit-linear-gradient(45deg, #000000 0%, #3d518c 20%, #a1bee2 20%, #0b497f 66%, #a1bee2 80%, #3d518c 80%, #000000 100%);
background: linear-gradient(45deg, #000000 0%, #3d518c 20%, #a1bee2 20%, #0b497f 66%, #a1bee2 80%, #3d518c 80%, #000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}
.phone12.red,
.phone12.red .screenborder{
background: #000000;
background: -moz-linear-gradient(45deg, #000000 0%, #f72727 20%, #efa0a0 23%, #c40000 53%, #930000 67%, #efa0a0 82%, #ef3232 82%, #000000 100%);
background: -webkit-linear-gradient(45deg, #000000 0%, #f72727 20%, #efa0a0 23%, #c40000 53%, #930000 67%, #efa0a0 82%, #ef3232 82%, #000000 100%);
background: linear-gradient(45deg, #000000 0%, #f72727 20%, #efa0a0 23%, #c40000 53%, #930000 67%, #efa0a0 82%, #ef3232 82%, #000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}
.phone12 .screenborder {
width: auto;
height: auto;
padding: 4px;
border-radius: 48px;
display: block;
border: rgba(255, 255, 255, 0.2) 0px solid;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.55), inset 1px 0px 3px rgba(255, 255, 255, 0.55);
-webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.55), inset 1px 0px 3px rgba(255, 255, 255, 0.55);
-moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.55), inset 1px 0px 3px rgba(255, 255, 255, 0.55);
position: relative;
}
.phone12 .screenborder .screen12 {
width: 375px;
display: block;
height: 812px;
padding: 8px;
border-radius: 44px;
background-color: #000000;
position: relative;
}
.phone12 .screenborder .screen12 img {
height: auto;
width: 100%;
border-radius: 38px;
min-height: 812px;
position: relative;
}
.phone12 .screenborder .screen12 .start-demo {
background: rgba(255, 255, 255, 0.8);
border-radius: 38px;
position: absolute;
bottom: 8px;
left: 8px;
height: auto;
width: 375px;
color: #000000 !important;
z-index: 1;
padding: 20px 30px 20px 30px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
display: flex;
-webkit-display: flex;
-moz-display: flex;
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
justify-content: center;
-webkit-justify-content: center;
-moz-justify-content: center;
align-items: center;
-webkit-align-items: center;
-moz-align-items: center;
text-align: center;
-moz-backdrop-filter: saturate(110%) blur(5px);
-webkit-backdrop-filter: saturate(110%) blur(5px);
backdrop-filter: saturate(110%) blur(5px);
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);