-
Notifications
You must be signed in to change notification settings - Fork 125
/
LinkMagz
1917 lines (1825 loc) · 222 KB
/
LinkMagz
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale'>
<head>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<b:include data='blog' name='all-head-content'/>
<!-- Title -->
<b:if cond='data:view.isHomepage'>
<title><data:blog.pageTitle/></title>
<b:elseif cond='data:view.isSingleItem'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:elseif cond='data:view.isMultipleItems and data:blog.pageName == ""'/>
<title>
<b:switch var='data:blog.locale'>
<b:case value='id'/>
Semua Postingan - <data:blog.title/>
<b:default/>
All Posts - <data:blog.title/>
</b:switch>
</title>
<b:elseif cond='data:view.isError'/>
<title>
<b:switch var='data:blog.locale'>
<b:case value='id'/>
Halaman tidak ditemukan - <data:blog.title/>
<b:default/>
Page Not Found - <data:blog.title/>
</b:switch>
</title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
<!-- Meta keywords -->
<b:if cond='data:view.isHomepage'>
<meta expr:content='data:blog.title' name='keywords'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:blog.pageName' name='keywords'/>
</b:if>
<!-- Facebook Open Graph Meta Tag -->
<b:if cond='data:view.isSingleItem'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta content='article' property='og:type'/>
<b:else/>
<meta expr:content='data:blog.pageTitle' property='og:title'/>
<meta content='website' property='og:type'/>
</b:if>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<style>
@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:local('Roboto'),local('Roboto-Regular'),local('sans-serif'),url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:local('Roboto'),local('Roboto-Regular'),local('sans-serif'),url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:700;font-display:swap;src:local('Roboto Bold'),local('Roboto-Bold'),local('sans-serif'),url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:700;font-display:swap;src:local('Roboto Bold'),local('Roboto-Bold'),local('sans-serif'),url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
</style>
<b:include data='blog' name='google-analytics'/>
<b:if cond='data:view.isLayoutMode'>
<b:template-skin>
<![CDATA[
body#layout{max-width:800px;margin:auto;background-color:#fff2e4;border:0;padding:100px 24px 24px;position:relative}body#layout::before{content:"Jika menu edit Favicon tidak muncul, kembalikan dashboard blogger ke versi klasik / lama";display:block;position:absolute;max-width:23%;left:24px;font-family:Arial,sans-serif;background:#efdcc7;padding:5px 10px;color:#795e41;top:19px}body#layout .section h4{font-weight:normal;padding:6px 10px;margin:0;background:#af8d69;color:#fff;text-align:center;font-size:1em;line-height:1em}body#layout div.section{background-color:transparent;border:0;margin:0;padding:0}body#layout div.section>div{margin-top:5px}body#layout .widget-content{-webkit-box-shadow:rgba(0,0,0,0.12) 0 0 6px 0,rgba(0,0,0,0.24) 0 6px 6px 0;box-shadow:rgba(0,0,0,0.12) 0 0 6px 0,rgba(0,0,0,0.24) 0 6px 6px 0}body#layout div.layout-title,body#layout div.layout-widget-description,body#layout .add_widget a{font-size:1em}body#layout #template-settings{width:48%}body#layout #template-settings h4{background:#569494}body#layout #template-settings div.widget{margin-top:0}body#layout #template-settings div.widget .widget-content{margin-top:0;background:#e4ffff}body#layout #iklan-tengah1 h4,body#layout #iklan-tengah2 h4,body#layout #iklan-atas h4,body#layout #iklan-bawah h4{background:#5e7d5d}body#layout #iklan-tengah1 div.widget .widget-content,body#layout #iklan-tengah2 div.widget .widget-content,body#layout #iklan-atas div.widget .widget-content,body#layout #iklan-bawah div.widget .widget-content{background:#eaffe9}body#layout #banner-produk h4,body#layout #banner-jasa h4,body#layout #html-produk h4,body#layout #html-jasa h4{background:#5a839a}body#layout #banner-produk div.widget .widget-content,body#layout #banner-jasa div.widget .widget-content,body#layout #html-produk div.widget .widget-content,body#layout #html-jasa div.widget .widget-content{background:#ecf8ff}body#layout div.widget .widget-content{padding:8px 16px}body#layout #template-settings,body#layout #sidebar-content,body#layout #main-content,body#layout #header-outer,body#layout #top-widget,body#layout #header-wrap,body#layout #banner-produk,body#layout #banner-jasa,body#layout #subscribe-box,body#layout #html-produk,body#layout #html-jasa,body#layout #iklan-tengah1,body#layout #iklan-tengah2,body#layout #iklan-atas,body#layout #iklan-bawah,body#layout #footer-text,body#layout #page-navmenu{margin-bottom:30px}body#layout #header{float:left;width:48%}body#layout #social-button{float:right;width:48%}body#layout #wrapper{margin-bottom:30px}body#layout #wrapper::after,body#layout #header-content::after{content:"";clear:both;display:block}body#layout #content-wrap{width:58%;float:left}body#layout #sidebar-wrap{width:38%;float:right}@media only screen and (max-width:600px){body#layout #header{float:none;width:auto;max-width:100%}body#layout #social-button{float:none;width:auto;max-width:100%}}
]]>
</b:template-skin>
</b:if>
<script>
//<![CDATA[
/* shinsenter/defer.js */
!function(e,o,t,n,i,r){function c(e,t){r?n(e,t||32):i.push(e,t)}function f(e,t,n,i){return t&&o.getElementById(t)||(i=o.createElement(e||"SCRIPT"),t&&(i.id=t),n&&(i.onload=n),o.head.appendChild(i)),i||{}}r=/p/.test(o.readyState),e.addEventListener("on"+t in e?t:"load",function(){for(r=1;i[0];)c(i.shift(),i.shift())}),c._=f,e.defer=c,e.deferscript=function(e,t,n,i){c(function(){f("",t,i).src=e},n)}}(this,document,"pageshow",setTimeout,[]),function(s,n){var a="IntersectionObserver",d="src",l="lazied",h="data-",m=h+l,y="load",p="forEach",b="getAttribute",g="setAttribute",v=Function(),I=s.defer||v,c=I._||v;function A(e,t){return[].slice.call((t||n).querySelectorAll(e))}function e(u){return function(e,t,o,r,c,f){I(function(n,t){function i(n){!1!==(r||v).call(n,n)&&((f||["srcset",d,"style"])[p](function(e,t){(t=n[b](h+e))&&n[g](e,t)}),A("SOURCE",n)[p](i),y in n&&n[y]()),n.className+=" "+(o||l)}t=a in s?(n=new s[a](function(e){e[p](function(e,t){e.isIntersecting&&(t=e.target)&&(n.unobserve(t),i(t))})},c)).observe.bind(n):i,A(e||u+"["+h+d+"]:not(["+m+"])")[p](function(e){e[b](m)||(e[g](m,u),t(e))})},t)}}function t(){I(function(t,n,i,o,r){t=A((i="[type=deferjs]")+":not("+(o="[async]")+")").concat(A(i+o)),function e(){if(0!=t){for(o in(i=t.shift()).parentNode.removeChild(i),i.removeAttribute("type"),n=c(i.nodeName),i)"string"==typeof(r=i[o])&&n[o]!=r&&(n[o]=r);n[d]&&!n.hasAttribute("async")?n.onload=n.onerror=e:I(e,.1)}}()},4)}t(),s.deferstyle=function(t,n,e,i){I(function(e){(e=c("LINK",n,i)).rel="stylesheet",e.href=t},e)},s.deferimg=e("IMG"),s.deferiframe=e("IFRAME"),I.all=t}(this,document);
//]]>
</script>
<b:skin>
<![CDATA[
/* -----------------------------------------------
Blogger Template Style
Name: LinkMagz
Version: 1.8.0
Designer: Mas Sugeng
----------------------------------------------- */
/* Variable
<Group description="Dimensi">
<Variable name="theme.width" description="Lebar Template" type="length" min="800px" max="2500px" default="1200px" value="1200px"/>
<Variable name="header.height" description="Tinggi Header" type="length" min="48px" max="300px" default="48px" value="48px"/>
<Variable name="navmenu.height" description="Tinggi Menu" type="length" min="48px" max="300px" default="62px" value="62px"/>
</Group>
<Group description="Background Address Bar (Mobile)" selector="body">
<Variable name="body.background.color" description="Background" type="color" default="$(header.background.color)" value="$(header.background.color)"/>
</Group>
<Group description="Teks Halaman" selector="body">
<Variable name="body.font" description="Font (jenis font tidak bisa diubah)" type="font"
default="normal normal 16px Helvetica, Arial, sans-serif" value="normal normal 16px Helvetica, Arial, sans-serif"/>
<Variable name="body.text.color" description="Warna" type="color" default="#636363" value="#636363"/>
</Group>
<Group description="Warna Link" selector="body">
<Variable name="body.link.color" description="Warna Link" type="color" default="#2675A6" value="#2675A6"/>
<Variable name="body.link.visited.color" description="Warna Dikunjungi" type="color" default="#2675A6" value="#2675A6"/>
<Variable name="body.link.hover.color" description="Warna Hover" type="color" default="#636363" value="#636363"/>
</Group>
<Group description="Warna Link Sidebar" selector="#sidebar-wrap">
<Variable name="sidebar.link.color" description="Warna Link" type="color" default="$(body.link.color)" value="$(body.link.color)"/>
<Variable name="sidebar.link.visited.color" description="Warna Dikunjungi" type="color" default="$(body.link.visited.color)" value="$(body.link.visited.color)"/>
<Variable name="sidebar.link.hover.color" description="Warna Hover" type="color" default="$(body.link.hover.color)" value="$(body.link.hover.color)"/>
</Group>
<Group description="Background Halaman" selector="body">
<Variable name="body.background" description="Background" type="color" default="#edf1f2" value="#edf1f2"/>
</Group>
<Group description="Background Header" selector="header">
<Variable name="header.background.color" description="Bagian Header" type="color" default="#424a56" value="#424a56"/>
<Variable name="header2.background.color" description="Bagian Header Samping" type="color" default="#4b525d" value="#4b525d"/>
</Group>
<Group description="Background Menu" selector="header">
<Variable name="navmenu.background.color" description="Bagian Menu" type="color" default="#547A92" value="#547A92"/>
<Variable name="navmenu2.background.color" description="Bagian Menu Samping" type="color" default="#57809a" value="#57809a"/>
</Group>
<Group description="Background Konten" selector="#wrapper">
<Variable name="posts.background.color" description="Bagian Post" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="sidebar.background.color" description="Bagian Sidebar" type="color" default="#f8fafa" value="#f8fafa"/>
</Group>
<Group description="Judul BLog" selector="#header">
<Variable name="judul.color" description="Warna Judul" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Ukuran Logo" selector="#header">
<Variable name="judul.logo.height" description="Tinggi Maksimal (Lebar akan menyesuaikan)" type="length" min="10px" max="300px" default="33px" value="33px"/>
</Group>
<Group description="Deskripsi Blog" selector="#header">
<Variable name="deskripsi.color" description="Warna Deskripsi" type="color" default="$(judul.color)" value="$(judul.color)"/>
</Group>
<Group description="Icon Media Sosial" selector="#social-button">
<Variable name="sosmed.color" description="Warna" type="color" default="$(header.background.color)" value="$(header.background.color)"/>
</Group>
<Group description="Menu Navigasi" selector=".navmenu-content">
<Variable name="navmenu.color" description="Warna" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Tombol Darkmode" selector=".darkmode-switch">
<Variable name="darkmode.color" description="Warna" type="color" default="$(navmenu.color)" value="$(navmenu.color)"/>
<Variable name="darkmode.hover" description="Warna Hover" type="color" default="$(navmenu.color)" value="$(navmenu.color)"/>
</Group>
<Group description="Icon Pencarian" selector="#search-label">
<Variable name="search.color" description="Warna" type="color" default="$(navmenu.color)" value="$(navmenu.color)"/>
<Variable name="search.bg" description="Background" type="color" default="$(navmenu.background.color)" value="$(navmenu.background.color)"/>
</Group>
<Group description="Judul Featured Post, Popular Post" selector=".FeaturedPost h3.title, .PopularPosts .popular-post-widget-title h3.title">
<Variable name="featured.color" description="Warna" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="featured.bg" description="Background" type="color" default="#b15f3e" value="#b15f3e"/>
</Group>
<Group description="Judul Post Terbaru" selector=".latestposts-title">
<Variable name="latestpost.color" description="Warna" type="color" default="#707070" value="#707070"/>
<Variable name="latestpost.bg" description="Background" type="color" default="#f8fafa" value="#f8fafa"/>
</Group>
<Group description="Judul Widget di Sidebar" selector=".normalwidget-title">
<Variable name="widgettitle.color" description="Warna" type="color" default="#707070" value="#707070"/>
<Variable name="widgettitle.bg" description="Background" type="color" default="#f0f4f4" value="#f0f4f4"/>
</Group>
<Group description="Judul Post" selector=".post-title">
<Variable name="posts.title.color" description="Warna" type="color" default="#575a5f" value="#575a5f"/>
<Variable name="posts.title.hover" description="Warna Hover" type="color" default="#2675A6" value="#2675A6"/>
</Group>
<Group description="Post Footer" selector=".post-info">
<Variable name="posts.footer.color" description="Warna" type="color" default="#757575" value="#757575"/>
<Variable name="posts.footer.hover" description="Warna Hover" type="color" default="#2675A6" value="#2675A6"/>
</Group>
<Group description="Label Post" selector=".label-info a">
<Variable name="labelinfo.color" description="Warna" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="labelinfo.bg" description="Background" type="color" default="#547A92" value="#547A92"/>
</Group>
<Group description="Infinite Scroll" selector=".blog-pager, .follow-by-email-submit">
<Variable name="infinite.color" description="Warna Teks" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="infinite.bg" description="Background" type="color" default="#b15f3e" value="#b15f3e"/>
<Variable name="infinite.hover" description="Background Hover" type="color" default="#925035" value="#925035"/>
</Group>
<Group description="Widget Featured Post" selector=".FeaturedPost">
<Variable name="featured.bgd" description="Background" type="color" default="#f8fafa" value="#f8fafa"/>
<Variable name="featured.title" description="Warna Judul" type="color" default="#575a5f" value="#575a5f"/>
<Variable name="featured.title.hover" description="Warna Judul Hover" type="color" default="#2675A6" value="#2675A6"/>
<Variable name="featured.desc" description="Warna Deskripsi" type="color" default="$(body.text.color)" value="$(body.text.color)"/>
<Variable name="featured.readmore" description="Warna Readmore" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="featured.readmore.bg" description="Background Readmore" type="color" default="#b15f3e" value="#b15f3e"/>
<Variable name="featured.readmore.hover" description="Background Readmore Hover" type="color" default="#925035" value="#925035"/>
</Group>
<Group description="Widget Popular Posts" selector=".PopularPosts">
<Variable name="popular.bg" description="Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="popular.title" description="Warna Judul" type="color" default="#575a5f" value="#575a5f"/>
<Variable name="popular.title.hover" description="Warna Judul Hover" type="color" default="#2675A6" value="#2675A6"/>
<Variable name="popular.desc" description="Warna Deskripsi" type="color" default="#737373" value="#737373"/>
</Group>
<Group description="Widget Profil" selector=".Profile .widget-content">
<Variable name="profile.bg" description="Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="profile.text" description="Warna Teks" type="color" default="#737373" value="#737373"/>
<Variable name="profile.link" description="Warna Link" type="color" default="#2675A6" value="#2675A6"/>
<Variable name="profile.link.hover" description="Warna Link Hover" type="color" default="#575a5f" value="#575a5f"/>
</Group>
<Group description="Widget Berlangganan Email" selector=".FollowByEmail">
<Variable name="berlangganan.bg" description="Background" type="color" default="#4b525d" value="#4b525d"/>
<Variable name="berlangganan.text" description="Warna Teks" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="berlangganan.input" description="Warna Input" type="color" default="#737373" value="#737373"/>
<Variable name="berlangganan.input.bg" description="Background Input" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="berlangganan.button" description="Warna Tombol" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="berlangganan.button.bg" description="Background Tombol" type="color" default="#b15f3e" value="#b15f3e"/>
<Variable name="berlangganan.button.bg.hover" description="Background Tombol Hover" type="color" default="#925035" value="#925035"/>
</Group>
<Group description="Footer" selector="#footer-outer">
<Variable name="footer.color" description="Warna" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="footer.color.hover" description="Warna Hover" type="color" default="#dddddd" value="#dddddd"/>
<Variable name="footer.bg" description="Background" type="color" default="#424a56" value="#424a56"/>
<Variable name="footer.bg2" description="Background Samping" type="color" default="#4b525d" value="#4b525d"/>
</Group>
<Group description="YANG INI JANGAN DIEDIT">
<Variable name="body.text.font" description="5" type="font" default="normal normal 14px Helvetica, Arial, sans-serif" value="normal normal 14px Helvetica, Arial, sans-serif"/>
<Variable name="tabs.font" description="6" type="font" default="normal normal 14px Helvetica, Arial, sans-serif" value="normal normal 14px Helvetica, Arial, sans-serif"/>
<Variable name="posts.icons.color" description="7" type="color" default="#707070" value="#707070"/>
<Variable name="labels.background.color" description="8" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="blog.title.font" description="9" type="font" default="normal normal 14px Helvetica, Arial, sans-serif" value="normal normal 14px Helvetica, Arial, sans-serif"/>
<Variable name="blog.title.color" description="10" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.color" description="11" type="color" default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="13" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="14" type="color" default="#393939" value="#393939"/>
<Variable name="tabs.overflow.selected.color" description="15" type="color" default="#393939" value="#393939"/>
<Variable name="posts.title.font" description="16" type="font" default="normal normal 20px Helvetica, Arial, sans-serif" value="normal normal 20px Helvetica, Arial, sans-serif"/>
<Variable name="posts.text.font" description="17" type="font" default="normal normal 14px Helvetica, Arial, sans-serif" value="normal normal 14px Helvetica, Arial, sans-serif"/>
<Variable name="posts.text.color" description="18" type="color" default="#444444" value="#444444"/>
<Variable name="header.icons.color" description="19" type="color" default="#fff" value="#ffffff"/>
</Group>
Variable end */
.mantabbbbb{color:red}html{font:$(body.font)}body{background:$(body.background);color:$(body.text.color);font-family:Roboto,Arial,sans-serif}.buttonDownload{background:$(body.link.color)}a:link,.toc button{text-decoration:none;transition:all .2s;color:$(body.link.color)}a:visited{color:$(body.link.visited.color)}a:hover{color:$(body.link.hover.color)}#sidebar-wrap a:link{color:$(sidebar.link.color)}#sidebar-wrap a:visited{color:$(sidebar.link.visited.color)}#sidebar-wrap a:hover{color:$(sidebar.link.hover.color)}#sidebar-wrap ul li::before{border:3px solid $(sidebar.link.color)}#footer-content,#header-content,.navmenu,.menu-sticky,#subscribe-box,#wrapper{max-width:$(theme.width)}#header-wrap{transition:all .2s;background:$(header2.background.color)}#header-content,#navmenu-sidebar-closebtn{transition:all .2s;background:$(header.background.color)}#header-outer #header-content{min-height:$(header.height)}#navmenu-wrap,#navmenu-wrap-sticky{transition:all .2s;background:$(navmenu2.background.color)}#header-outer .navmenu .nav-outer{min-height:$(navmenu.height)}#header-outer .menu-sticky .nav-outer::after,#header-outer .navmenu .nav-outer::after{content:'';min-height:inherit;font-size:0}#header .widget img{max-height:$(judul.logo.height)}.navmenu,.menu-sticky{transition:all .2s;background:$(navmenu.background.color)}#navmenu-sidebar-body ul li a{color:$(body.text.color)}#navmenu-sidebar-body ul li a:hover{color:$(body.link.color)}#goTop,.comments .comments-content .icon.blog-author::after{transition:all .2s;color:$(navmenu.color);background:$(navmenu.background.color)}#goTop::after{transition:all .2s;border-top:1px solid $(navmenu.color);border-right:1px solid $(navmenu.color)}#content-wrap,#content-wrap-produk-index,#navmenu-sidebar-body,#wrapper{transition:all .2s;background:$(posts.background.color)}#sidebar-wrap{transition:all .2s;background:$(sidebar.background.color)}.PopularPosts .popular-post-widget-title h3.title{transition:all .2s;box-shadow:0 0 0 2px $(sidebar.background.color)}.html-jasa .normalwidget-title h3.title,.html-produk .normalwidget-title h3.title,.latestposts-title h2,#ms-related-post h4,.share-this-pleaseeeee{transition:all .2s;background:$(posts.background.color)}.FeaturedPost h3.title{transition:all .2s;box-shadow:0 0 0 2px $(posts.background.color)}.normalwidget-title h3.title{transition:all .2s;background:$(sidebar.background.color)}a.blog-pager-older-link::after,a.blog-pager-newer-link::before{border:solid $(infinite.color)}.blog-pager a.js-load,.blog-pager span.js-loaded,.blog-pager span.js-loading,.blog-pager a.blog-pager-older-link,.blog-pager a.blog-pager-newer-link,.blog-pager a.js-load:visited,.blog-pager a.blog-pager-older-link:visited,.blog-pager a.blog-pager-newer-link:visited{transition:all .2s;background:$(infinite.bg);color:$(infinite.color) !important}.js-loading::after{border:2px solid $(infinite.color)}.blog-pager a.js-load:hover,.blog-pager span.js-loaded:hover,.blog-pager span.js-loading:hover,a.blog-pager-newer-link:hover,a.blog-pager-older-link:hover{background:$(infinite.hover)}.contact-form-widget input[type=button]{transition:all .2s;background:$(berlangganan.button.bg);color:$(berlangganan.button)}.contact-form-widget input[type=button]:hover{transition:all .2s;background:$(berlangganan.button.bg.hover)}#social-button .widget,#header .widget,#header .widget a,#navmenu-sidebar-closebtn .closebtn,#navmenu-sidebar-closebtn .closebtn-title{color:$(judul.color)}#header .widget p.title-description{color:$(deskripsi.color)}.social-icon{transition:all .2s;background:$(sosmed.color)}.navmenu-content,.navmenu-button,.navmenu-content>ul>li>a{color:$(navmenu.color)}.navmenu-button div{transition:all .2s;background-color:$(navmenu.color)}.navmenu-content>ul>li>a::before{transition:all .2s;background:$(navmenu.color)}.navmenu-content>ul>li.has-sub>a::after{border-bottom:1px solid $(navmenu.color);border-left:1px solid $(navmenu.color)}.darkmode-switch .switch-title{color:$(darkmode.color)}.darkmode-switch .slider{border:2px solid $(darkmode.color)}.darkmode-switch .slider:before{transition:all .2s;background:$(darkmode.color)}.darkmode-switch .switch:hover .slider:before{background:$(darkmode.hover)}.iconsearch-label{transition:all .2s;background:$(search.bg)}.iconsearch-label path{fill:$(search.color)}.FeaturedPost h3.title,.PopularPosts .popular-post-widget-title h3.title{transition:all .2s;color:$(featured.color);background:$(featured.bg)}.normalwidget-title::after{transition:all .2s;background:$(widgettitle.bg)}.normalwidget-title h3.title{color:$(widgettitle.color)}.html-jasa .normalwidget-title::after,.html-produk .normalwidget-title::after,.latestposts-title::after{transition:all .2s;background:$(latestpost.bg)}.html-jasa .normalwidget-title h3.title,.html-produk .normalwidget-title h3.title,.latestposts-title h2{color:$(latestpost.color)}.post-title,.post-title a{color:$(posts.title.color)}.post-title a:hover{color:$(posts.title.hover)}.breadcrumbs,.breadcrumbs a,.post-info,.post-info a{color:$(posts.footer.color)}.breadcrumbs a:hover,.post-info a:hover{color:$(posts.footer.hover)}#content-wrap-produk-index b.info-produk,.img-thumbnail .label-info a,.img-thumbnail .label-info a:visited,.img-thumbnail .label-info a:hover{transition:all .2s;background:$(labelinfo.bg);color:$(labelinfo.color) !important}.FeaturedPost .post-summary,.FeaturedPost .post-summary .featured-info{transition:all .2s;background:$(featured.bgd)}@media only screen and (max-width:600px){.FeaturedPost .post-summary{background:$(posts.background.color)}}.FeaturedPost .featured-img-bg{transition:all .2s;background:$(posts.background.color)}.FeaturedPost h2 a,.FeaturedPost h3 a{color:$(featured.title)}.FeaturedPost h2 a:hover,.FeaturedPost h3 a:hover{color:$(featured.title.hover)}.FeaturedPost p.featured-desc{color:$(featured.desc)}p.featured-more a:link,p.featured-more a:visited{transition:all .2s;color:$(featured.readmore) !important;background:$(featured.readmore.bg)}p.featured-more a:hover{background:$(featured.readmore.hover)}.sidebar-content ul li::before{border:3px solid $(body.link.color)}.sidebar-content ol li::before{color:$(body.link.color)}.PopularPosts .popular-post-info{transition:all .2s;background:$(popular.bg)}.PopularPosts .popular-post-snippet{color:$(popular.desc)}.PopularPosts .popular-post-title a{color:$(popular.title)}.PopularPosts .popular-post-title a:hover{color:$(popular.title.hover)}.Profile{color:$(profile.text)}.Profile .individual,.Profile .team{transition:all .2s;background:$(profile.bg)}.Profile .individual .profile-link{border:1px solid $(profile.link);color:$(profile.link)}.Profile .individual .profile-link:hover{border:1px solid $(profile.link.hover);color:$(profile.link.hover)}.Profile .profile-link-author{color:$(profile.link)}.Profile .profile-link-author:hover{color:$(profile.link.hover)}.Profile .location path{fill:$(profile.text)}.FollowByEmail{transition:all .2s;background:$(berlangganan.bg);color:$(berlangganan.text)}.FollowByEmail ::placeholder{color:$(berlangganan.input);opacity:.9}.FollowByEmail .follow-by-email-address{transition:all .2s;background:$(berlangganan.input.bg)}.FollowByEmail .follow-by-email-submit{transition:all .2s;background:$(berlangganan.button.bg);color:$(berlangganan.button)}.FollowByEmail .follow-by-email-submit:hover{background:$(berlangganan.button.bg.hover)}.label-size a.label-name{border:1px solid $(sidebar.link.color)}.label-size a.label-name:hover{border:1px solid $(sidebar.link.hover.color)}#footer-outer{transition:all .2s;background:$(footer.bg2)}#footer-content{transition:all .2s;background:$(footer.bg);color:$(footer.color)}#footer-content a{color:$(footer.color)}#footer-content a:hover{color:$(footer.color.hover)}
/* ini normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}body.darkmode{background:#353535;color:#eee}body.darkmode a:link,body.darkmode .toc button{color:#a3daef;-webkit-transition:all .2s;transition:all .2s}body.darkmode a:visited{color:#a3daef}body.darkmode a:hover{color:#fff}body.darkmode #sidebar-wrap a:link{color:#eee}body.darkmode #sidebar-wrap a:visited{color:#eee}body.darkmode #sidebar-wrap a:hover{color:#fff}body.darkmode #header-wrap{background:#2b2b2b}body.darkmode #header-content,body.darkmode #navmenu-sidebar-closebtn{background:#232323}body.darkmode #navmenu-wrap,body.darkmode #navmenu-wrap-sticky{background:#2f2f2f}body.darkmode .navmenu,body.darkmode .menu-sticky{background:#2b2b2b}body.darkmode #navmenu-sidebar-body ul li a,body.darkmode .navmenu-content li li a{color:#eee}body.darkmode #navmenu-sidebar-body ul li a:hover{color:#fff}body.darkmode #sidebar-wrap{background:#2f2f2f}body.darkmode .PopularPosts .popular-post-widget-title h3.title{-webkit-box-shadow:0 0 0 2px #2f2f2f;box-shadow:0 0 0 2px #2f2f2f}body.darkmode .normalwidget-title h3.title{background:#2f2f2f}body.darkmode #wrapper,body.darkmode #content-wrap,body.darkmode #content-wrap-produk-index,body.darkmode #navmenu-sidebar-body,body.darkmode .latestposts-title h2,body.darkmode .html-produk .normalwidget-title h3.title,body.darkmode .html-jasa .normalwidget-title h3.title,body.darkmode .share-this-pleaseeeee,body.darkmode #ms-related-post h4,body.darkmode .FeaturedPost .featured-img-bg,body.darkmode .PopularPosts .popular-post-info,body.darkmode .Profile .individual,body.darkmode .Profile .team{background:#323232}body.darkmode .FeaturedPost h3.title{-webkit-box-shadow:0 0 0 2px #323232;box-shadow:0 0 0 2px #323232}body.darkmode #header .widget a,body.darkmode #header .widget,body.darkmode #navmenu-sidebar-closebtn .closebtn,body.darkmode #navmenu-sidebar-closebtn .closebtn-title{color:#eee}body.darkmode #header .widget p.title-description{color:#bbb}body.darkmode .navmenu-content>ul>li>a,body.darkmode .navmenu-button{color:#eee}body.darkmode .navmenu-button div{background-color:#eee}body.darkmode .navmenu-content>ul>li>a::before{background:#eee}body.darkmode .navmenu-content>ul>li.has-sub>a::after{border-bottom:1px solid #eee;border-left:1px solid #eee}body.darkmode .navmenu-content ul li ul{background:#4a4a4a}body.darkmode .navmenu-content>ul>li>ul:before{border-bottom-color:#4a4a4a}body.darkmode .navmenu-content li li a:before{background:#eee}body.darkmode #social-button .social-icon{background:#232323}body.darkmode #social-button .social-icon:hover{background:#353535}body.darkmode .iconsearch-label{background:#2b2b2b}body.darkmode .iconsearch-label:hover{background:#000}body.darkmode .iconsearch-label path{fill:#eee}body.darkmode .darkmode-switch .switch{opacity:1}body.darkmode .darkmode-switch .switch-title{color:#bbb;opacity:1}body.darkmode .darkmode-switch .slider{border:2px solid #bbb}body.darkmode .darkmode-switch .slider:before{background:#eee}body.darkmode .darkmode-switch .switch:hover .slider:before{background:#fff}body.darkmode .normalwidget-title::after{background:#383838}body.darkmode .normalwidget-title h3.title{color:#eee}body.darkmode .latestposts-title::after,body.darkmode .html-produk .normalwidget-title::after,body.darkmode .html-jasa .normalwidget-title::after{background:#383838}body.darkmode .latestposts-title h2,body.darkmode .html-produk .normalwidget-title h3.title,body.darkmode .html-jasa .normalwidget-title h3.title{color:#eee}body.darkmode .post-title,body.darkmode .post-title a{color:#eee}body.darkmode .post-title a:hover{color:#fff}body.darkmode .post-info,body.darkmode .post-info a,body.darkmode .breadcrumbs,body.darkmode .breadcrumbs a{color:#bbb}body.darkmode .post-info a:hover,body.darkmode .breadcrumbs a:hover{color:#fff}body.darkmode .FeaturedPost .post-summary,body.darkmode .FeaturedPost .post-summary .featured-info{background:#2f2f2f}@media only screen and (max-width:600px){body.darkmode .FeaturedPost .post-summary{background:#323232}}body.darkmode .FeaturedPost h3 a,body.darkmode .FeaturedPost h2 a{color:#eee}body.darkmode .FeaturedPost h3 a:hover,body.darkmode .FeaturedPost h2 a:hover{color:#fff}body.darkmode .FeaturedPost p.featured-desc{color:#eee}body.darkmode #sidebar-wrap ul li::before{border:3px solid #eee}body.darkmode #sidebar-wrap ol li::before{color:#eee}body.darkmode .PopularPosts .popular-post-snippet{color:#bbb}body.darkmode .PopularPosts .popular-post-title a{color:#eee}body.darkmode .PopularPosts .popular-post-title a:hover{color:#fff}body.darkmode .Profile{color:#eee}body.darkmode .Profile .individual .profile-link{border:1px solid #eee;color:#eee}body.darkmode .Profile .individual .profile-link:hover{border:1px solid #fff;color:#fff}body.darkmode .Profile .profile-link-author{color:#eee}body.darkmode .Profile .profile-link-author:hover{color:#fff}body.darkmode .Profile .location path{fill:#eee}body.darkmode .FollowByEmail{background:#2d2d2d;color:#bbb}body.darkmode .FollowByEmail ::-webkit-input-placeholder{color:#666;opacity:.9}body.darkmode .FollowByEmail ::-moz-placeholder{color:#666;opacity:.9}body.darkmode .FollowByEmail :-ms-input-placeholder{color:#666;opacity:.9}body.darkmode .FollowByEmail ::-ms-input-placeholder{color:#666;opacity:.9}body.darkmode .FollowByEmail ::placeholder{color:#666;opacity:.9}body.darkmode .FollowByEmail .follow-by-email-address{background:#fff}body.darkmode .label-size a.label-name{border:1px solid #eee}body.darkmode .label-size a.label-name:hover{border:1px solid #fff}body.darkmode #footer-outer{background:#313131}body.darkmode #footer-content{background:#282828;color:#eee}body.darkmode #footer-content a{color:#eee}body.darkmode #footer-content a:hover{color:#fff}body{font-size:16px;font-size:1rem;line-height:1.575;padding:0;margin:0;overflow-y:scroll;position:relative}blockquote{background:rgba(153,163,173,0.08);border-left:5px solid rgba(121,128,136,0.07);padding:15px 20px;font-style:italic;margin:20px 0 20px 32px;margin:1.25rem 0 1.25rem 2rem}@media only screen and (max-width:480px){blockquote{margin:1.25rem 0 1.25rem 0;padding:10px 15px}}ul,ol{margin:20px 0 20px 0;margin:1.25rem 0 1.25rem 0;padding-left:48px;padding-left:3rem}@media only screen and (max-width:480px){ul,ol{padding-left:1.25rem}}li ul,li ol{margin:12px 0;margin:.75rem 0}div>code{background:rgba(232,191,115,0.08);padding:3px 6px}pre{word-break:break-word;white-space:pre-wrap;background:rgba(232,191,115,0.08);border-left:5px solid rgba(245,228,194,0.17);padding:15px 20px;margin:20px 0;margin:1.25rem 0}.lazyload,.blur-up{opacity:.3;-webkit-transition:opacity 300ms;transition:opacity 300ms}.lazyload.shown,.blur-up.lazyloaded{opacity:1}#header .widget img.lazyload{min-width:160px}.template-settings{visibility:hidden;height:0}.navbarrr,.quickedit,.BlogSearch h3{display:none}iframe{max-width:100%}table,img{max-width:100%;height:auto}table[border="1"]{border-collapse:collapse}table[border="1"] td{vertical-align:top;text-align:left;font-size:14px;font-size:.875rem;padding:3px 10px;border:1px solid rgba(0,0,0,0.23)}table[border="1"] th{vertical-align:top;text-align:center;font-size:14px;font-size:.875rem;font-weight:bold;padding:5px 10px;border:1px solid rgba(0,0,0,0.23)}.post-body{word-wrap:break-word}.post-body a:link{text-decoration:underline}.post-body a[imageanchor]{display:inline-block}.post-body iframe{max-width:100%;display:block;margin:0 auto}.post-body table.tr-caption-container{margin-bottom:16px;margin-bottom:1rem;position:relative}.post-body td.tr-caption{font-size:12px;font-size:.75rem;position:absolute;bottom:0;right:0;background:rgba(0,0,0,0.5);padding:3px 10px;color:#fff;border-radius:6px 0 0 0}.post-body table.tr-caption-container a,.post-body table.tr-caption-container img{display:block;margin-bottom:0 !important}
.post-body>.YOUTUBE-iframe-video{width:474px}.youtube-responsive{overflow:hidden;position:relative;width:100%}.youtube-responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.youtube-responsive::after{padding-top:56.25%;display:block;content:''}@media only screen and (max-width:480px){.youtube-responsive{margin:0 -22px;width:100vw}}@media only screen and (max-width:480px){.post-body img.fullwidth{width:100vw;margin:0 -22px !important;max-width:100vw}.post-body .tr-caption.fullwidth{margin-right:-22px !important}.post-body a[imageanchor],table.tr-caption-container{float:none !important;margin-left:auto !important;margin-right:auto !important}.post-body .separator>a{margin-left:auto !important;margin-right:auto !important}}.CSS_LIGHTBOX{z-index:9999 !important}.CSS_LAYOUT_COMPONENT{color:transparent}#header-outer{width:100%}#header-outer #header-wrap{width:100%}#header-outer #header-content{position:relative;margin:0 auto;padding:0 36px;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}@media only screen and (max-width:900px){#header-outer #header-content{padding:3px 30px}}@media only screen and (max-width:480px){#header-outer #header-content{padding:22px 22px 12px}}#header-outer #header-content:after{content:'';min-height:inherit;font-size:0;display:block}@media only screen and (max-width:480px){#header-outer #header-content:after{min-height:0}}#header-outer #navmenu-wrap{width:100%}#header-outer .menu-sticky .nav-outer{min-height:52px}#header-outer .navmenu,#header-outer .menu-sticky{margin:0 auto;padding:0 36px;-webkit-box-sizing:border-box;box-sizing:border-box}#header-outer .navmenu .nav-outer,#header-outer .menu-sticky .nav-outer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}@media only screen and (max-width:900px){#header-outer .navmenu,#header-outer .menu-sticky{padding:0 30px}}@media only screen and (max-width:480px){#header-outer .navmenu,#header-outer .menu-sticky{padding:0 22px}}#header-outer #navmenu-wrap-sticky{position:fixed;width:100%;z-index:9;top:0;left:0;right:0;-webkit-transform:translateY(-101%);transform:translateY(-101%);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden}#header-outer #navmenu-wrap-sticky.navsticky-show{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}#header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media only screen and (max-width:480px){#header{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;text-align:center;margin-bottom:10px}}#header .widget{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media only screen and (max-width:480px){#header .widget{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}@media only screen and (max-width:480px){#header .widget .blog-title-wrap{margin:0 auto}}#header .widget a{-webkit-transition:all .2s;transition:all .2s}@media only screen and (max-width:480px){#header .widget a{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}@media only screen and (max-width:480px){#header .widget>h1.blog-title,#header .widget>h2.blog-title{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}#header .widget h1.blog-title,#header .widget h2.blog-title{margin:5px 25px 5px 0;text-transform:uppercase;font-size:28px;font-size:1.75rem;padding:0;line-height:32px;line-height:2rem}@media only screen and (max-width:480px){#header .widget h1.blog-title,#header .widget h2.blog-title{margin:0;text-align:center}}#header .widget p.title-description{font-size:14px;font-size:.875rem;margin:5px 0}@media only screen and (max-width:480px){#header .widget p.title-description{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;margin-top:8px;margin-bottom:0;text-align:center}}#header .widget img{display:block;width:auto;margin:5px 25px 5px 0}@media only screen and (max-width:480px){#header .widget img{display:block;margin:0 auto;max-width:100%}}#header .widget .hide-title .blog-title{text-indent:-9999px;visibility:hidden;margin:0;padding:0;height:0}.navmenu-content{text-transform:uppercase;font-size:14px;font-size:.875rem;-webkit-box-flex:1;-ms-flex:1 1 75%;flex:1 1 75%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@media only screen and (max-width:900px){.navmenu-content{display:none}}.navmenu-content ul{list-style:none;margin:0;padding:0}.navmenu-content>ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.navmenu-content>ul>li{position:relative;-webkit-transition-duration:.2s;transition-duration:.2s;font-weight:bold;margin:0 38px 0 0;padding:0}.navmenu-content>ul>li>a::before{position:absolute;bottom:12px;left:0;content:'';display:block;width:0;height:2px;-webkit-transition:width .2s;transition:width .2s}.navmenu-content>ul>li>a{line-height:42px;display:inline-block;position:relative}.navmenu-content>ul>li.has-sub>a{padding-right:13px}.navmenu-content>ul>li.has-sub:hover>a::before{width:calc(100% - 13px);-webkit-transition:width .2s;transition:width .2s}.navmenu-content>ul>li:hover>a::before{width:100%;-webkit-transition:width .2s;transition:width .2s}.navmenu-content>ul>li.has-sub>a::after{width:4px;content:'';height:4px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);position:absolute;top:16px;right:0}.navmenu-content>ul>li a:hover{cursor:pointer}.navmenu-content ul li ul{background:#fff;padding:12px 0;-webkit-box-shadow:0 5px 20px rgba(99,99,99,0.11);box-shadow:0 5px 20px rgba(99,99,99,0.11);border-radius:5px;visibility:hidden;opacity:0;min-width:100px;position:absolute;z-index:2;-webkit-transition:all .2s ease;transition:all .2s ease;top:42px;left:0;-webkit-transform:translateY(10px);transform:translateY(10px);-webkit-transition:visibility .2s ease,-webkit-transform .2s ease;transition:visibility .2s ease,-webkit-transform .2s ease;transition:visibility .2s ease,transform .2s ease;transition:visibility .2s ease,transform .2s ease,-webkit-transform .2s ease;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column wrap;flex-flow:column wrap}.navmenu-content>ul>li>ul::before{content:'';display:block;position:absolute !important;left:10px;top:-12px;bottom:100%;width:0;height:0;border-bottom:6px solid #fff;border-top:6px solid transparent;border-left:6px solid transparent;border-right:6px solid transparent}.navmenu-content li li a{color:#666;position:relative;line-height:35px;display:inline-block}.navmenu-content li li{display:block;padding:0 24px;position:relative;text-transform:none;font-weight:normal;-webkit-transition-duration:.2s;transition-duration:.2s;float:none;white-space:nowrap;text-overflow:ellipsis;min-width:150px}.navmenu-content ul li:hover>ul,.navmenu-content ul li ul:hover,.navmenu-content ul li ul:focus{visibility:visible;opacity:1;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:opacity .2s ease,visibility .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,visibility .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,visibility .2s ease,transform .2s ease;transition:opacity .2s ease,visibility .2s ease,transform .2s ease,-webkit-transform .2s ease}.navmenu-content ul li:focus-within>ul{visibility:visible;opacity:1;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:opacity .2s ease,visibility .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,visibility .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,visibility .2s ease,transform .2s ease;transition:opacity .2s ease,visibility .2s ease,transform .2s ease,-webkit-transform .2s ease}.navmenu-content ul ul li a:hover{cursor:pointer}.navmenu-content li li a::before{position:absolute;bottom:8px;left:0;content:'';display:block;width:0;height:2px;opacity:.15;background:#787d84;-webkit-transition:width .2s;transition:width .2s}.navmenu-content li li:hover>a::before{width:100%;-webkit-transition:width .2s;transition:width .2s}.navmenu-content li li.has-sub::after{border-bottom:1px solid #77858f;border-right:1px solid #77858f;width:4px;content:'';height:4px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);position:absolute;top:14px;right:15px}.navmenu-content ul li ul li{clear:both}.navmenu-content ul ul ul{top:0;margin-left:100%;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.nav-secondary{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.navmenu-button{display:none}@media only screen and (max-width:900px){.navmenu-button{display:block;background:transparent;height:19px;width:24px;padding:0;margin:0;border:0;cursor:pointer;outline:0}}.navmenu-button div{width:24px;height:3px;border-radius:2px;margin-bottom:5px}.navmenu-button div:last-child{margin-bottom:0;width:17px}#navmenu-overlay{display:none;position:fixed;z-index:22;top:0;left:0;width:100%;height:100%;height:100vh;background-color:rgba(0,0,0,0.85)}@media only screen and (max-width:900px){.navmenu-activated #navmenu-overlay{display:block}.navmenu-activated #navmenu-sidebar{-webkit-transform:translateX(0);transform:translateX(0)}}#navmenu-sidebar{display:none;position:fixed;width:80%;z-index:24;height:100%;height:100vh;top:0;left:0;-webkit-transform:translateX(-101%);transform:translateX(-101%);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}@media only screen and (max-width:900px){#navmenu-sidebar{display:block}}#navmenu-sidebar-body{padding:110px 22px 22px;overflow-y:auto;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}#navmenu-sidebar-body ul{margin:0;padding:0}#navmenu-sidebar-body ul ul{margin:0 0 5px 20px;margin:0 0 5px 1.25rem;padding:0}#navmenu-sidebar-body ul li{list-style:none;display:block;font-weight:bold;text-transform:uppercase}#navmenu-sidebar-body ul li ul li{list-style:none;display:block;font-weight:normal;text-transform:none;font-size:14px;font-size:.875rem}#navmenu-sidebar-body ul li a{display:inline-block;padding:10px 0;font-size:14px;font-size:.875rem}#navmenu-sidebar-body ul li li a{padding:5px 0}#navmenu-sidebar-closebtn{display:block;padding:25px 22px;overflow:hidden;position:absolute;top:0;left:0;right:0}#navmenu-sidebar-closebtn .closebtn{background:rgba(0,0,0,0.08);display:inline-block;padding:10px 10px;margin-right:10px;border-radius:25px;font-weight:bold;text-align:center;height:25px;width:25px}#navmenu-sidebar-closebtn .closebtn-title{display:inline-block;font-size:14px;font-size:.875rem;text-transform:uppercase;font-weight:bold}#navmenu-sidebar-closebtn .closebtn:hover{cursor:pointer}#wrapper{margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;position:relative}.main-content{overflow-x:auto;overflow-y:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 0 36px;padding:0 36px}@media only screen and (max-width:900px){.main-content{margin:0 0 30px;padding:0 30px}}@media only screen and (max-width:480px){.main-content{margin:0 0 22px;padding:0 22px}}.latestposts-title{width:100%;margin:0 0 30px;position:relative;text-align:center;line-height:16px;line-height:1rem}.latestposts-title::after{content:"";position:absolute;top:0;left:0;right:0;height:16px;height:1rem}.latestposts-title h2{position:relative;z-index:1;display:inline-block;margin:0;padding:0 10px;font-size:16px;font-size:1rem;text-transform:uppercase}.post-filter-message{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;text-align:center;margin:0 0 30px;padding:0 36px}.post-filter-message .post-filter-description .search-label,.post-filter-message .post-filter-description .search-query{font-weight:bold}.status-message-danger{text-align:center;margin:30px 0}#content-wrap{-webkit-box-flex:1;-ms-flex:1 1 69%;flex:1 1 69%;max-width:69%;padding:36px 0}@media only screen and (max-width:900px){#content-wrap{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;padding:30px 0}}@media only screen and (max-width:480px){#content-wrap{padding:22px 0}}#content-wrap .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}#content-wrap .content .post-outer{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:45px;padding-right:15px}@media only screen and (max-width:480px){#content-wrap .content .post-outer{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;padding-right:0}}#content-wrap .content .post-outer:nth-of-type(2n+0){padding-left:15px;padding-right:0}@media only screen and (max-width:480px){#content-wrap .content .post-outer:nth-of-type(2n+0){padding-left:0}}#content-wrap .content .post-outer .post-content{height:100%}#content-wrap .content .post-outer .img-thumbnail{width:100%;position:relative}#content-wrap .content .post-outer .img-thumbnail>a{display:block}#content-wrap .content .post-outer .img-thumbnail img{width:100%;display:block}#content-wrap .content .post-outer .img-thumbnail .label-info{position:absolute;z-index:1;bottom:0;left:0;font-size:11px;font-size:.6875rem}#content-wrap .content .post-outer .img-thumbnail .label-info a{display:inline-block;margin-top:3px;padding:4px 8px 2px;text-transform:uppercase}#content-wrap .content .post-outer .post-title{font-size:20px;font-size:1.25rem;margin:13px 0 8px}@media only screen and (max-width:900px){#content-wrap .content .post-outer .post-title{font-size:1.2rem}}@media only screen and (max-width:480px){#content-wrap .content .post-outer .post-title{font-size:1.1rem}}#content-wrap .content .post-outer .post-info{margin:0 0 8px;font-size:14px;font-size:.875rem}#content-wrap .content .post-outer .post-info span,#content-wrap .content .post-outer .post-info time{display:inline-block;margin:0}#content-wrap .content .post-outer .post-info span:not(:last-child):after,#content-wrap .content .post-outer .post-info time:not(:last-child):after{content:"\b7";margin:0 3.2px;margin:0 .2rem}#content-wrap .content .post-outer .post-snippet b,#content-wrap .content .post-outer .post-snippet strong,#content-wrap .content .post-outer .post-snippet i,#content-wrap .content .post-outer .post-snippet em,#content-wrap .content .post-outer .post-snippet strike,#content-wrap .content .post-outer .post-snippet u,#content-wrap .content .post-outer .post-snippet s,#content-wrap .content .post-outer .post-snippet del{font-weight:normal;font-style:normal;text-decoration:none}#content-wrap .content .post-outer .post-snippet b.info-produk{display:none}#content-wrap .content .post-outer .post-snippet b.harga-produk-coret,#content-wrap .content .post-outer .post-snippet b.harga-produk{display:block}#content-wrap .content .post-outer .post-snippet b.harga-produk-coret{color:#d65c49;text-decoration:line-through;font-size:13px;font-size:.8125rem}#content-wrap .content .post-outer .post-snippet b.harga-produk{margin-bottom:13px}#content-wrap .content-single .post-outer-single{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%}#content-wrap .content-single .post-outer-single .post-content{color:inherit;border-bottom:6px dotted rgba(121,128,136,0.24);padding:0 0 16px;padding:0 0 1rem}#content-wrap .content-single .post-outer-single .post-title{font-size:32px;font-size:2rem;margin:0 0 16px;margin:0 0 1rem}@media only screen and (max-width:900px){#content-wrap .content-single .post-outer-single .post-title{font-size:1.5rem}}@media only screen and (max-width:480px){#content-wrap .content-single .post-outer-single .post-title{font-size:1.25rem}}#content-wrap .content-single .post-outer-single .post-info{margin:0 0 25px;margin:0 0 1.5625rem;font-size:14px;font-size:.875rem}#content-wrap .content-single .post-outer-single .post-info span,#content-wrap .content-single .post-outer-single .post-info time{display:inline-block;margin:0}#content-wrap .content-single .post-outer-single .post-info span:not(:last-child):after,#content-wrap .content-single .post-outer-single .post-info time:not(:last-child):after{content:"\b7";margin:0 3.2px;margin:0 .2rem}#content-wrap-page{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;margin:0 auto;padding:36px 0}@media only screen and (max-width:900px){#content-wrap-page{padding:30px 0}}@media only screen and (max-width:480px){#content-wrap-page{padding:22px 0}}#content-wrap-page .post-outer-single{max-width:800px;margin:0 auto}#content-wrap-page h1{text-align:center;margin:0 0 25.6px;margin:0 0 1.6rem}.iklan-tengah1 .widget,.iklan-tengah2 .widget,.iklan-bawah .widget,.iklan-atas .widget,.iklan-tengah1 .widget-content,.iklan-tengah2 .widget-content,.iklan-bawah .widget-content,.iklan-atas .widget-content{margin:0 36px !important}@media only screen and (max-width:900px){.iklan-tengah1 .widget,.iklan-tengah2 .widget,.iklan-bawah .widget,.iklan-atas .widget,.iklan-tengah1 .widget-content,.iklan-tengah2 .widget-content,.iklan-bawah .widget-content,.iklan-atas .widget-content{margin:0 30px !important}}@media only screen and (max-width:480px){.iklan-tengah1 .widget,.iklan-tengah2 .widget,.iklan-bawah .widget,.iklan-atas .widget,.iklan-tengah1 .widget-content,.iklan-tengah2 .widget-content,.iklan-bawah .widget-content,.iklan-atas .widget-content{margin:0 22px !important}}.post-body .widget-content{text-align:center;margin:24px 0;margin:1.5rem 0;display:block;clear:both}.post-body .widget-content>*{text-align:center;margin:0 auto}.post-body .widget-content.kode-iklan-atas{margin-top:0}.post-body .widget-content.kode-iklan-bawah{margin-bottom:0}.post-body .widget-content:blank{margin:0}body>.google-auto-placed,#wrapper>.google-auto-placed,#content-wrap .google-auto-placed,#content-wrap-produk-index .google-auto-placed,#content-wrap-page .google-auto-placed,footer .google-auto-placed,header .google-auto-placed,#sidebar-wrap>.google-auto-placed,#subscribe-box-wrap .google-auto-placed,.post-body pre .google-auto-placed,.post-body blockquote .google-auto-placed{display:none}.post-body>.google-auto-placed{display:block}#sidebar-wrap{-webkit-box-flex:1;-ms-flex:1 1 31%;flex:1 1 31%;max-width:31%;padding:36px 0;-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:900px){#sidebar-wrap{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;padding:30px 0;margin-top:45px}
}@media only screen and (max-width:480px){#sidebar-wrap{padding:22px 0}}.sidebar-content .widget,.sidebar-content-sticky .widget{margin-bottom:36px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 36px}@media only screen and (max-width:900px){.sidebar-content .widget,.sidebar-content-sticky .widget{overflow-x:auto;padding:0 30px}}@media only screen and (max-width:480px){.sidebar-content .widget,.sidebar-content-sticky .widget{padding:0 22px}}.sidebar-content .widget-content,.sidebar-content-sticky .widget-content{overflow-x:hidden}@media only screen and (max-width:900px){.sidebar-content .widget-content,.sidebar-content-sticky .widget-content{overflow-x:unset}}.sidebar-content h2,.sidebar-content h3,.sidebar-content-sticky h2,.sidebar-content-sticky h3{margin:0 0 15px;font-size:18px;font-size:1.125rem;text-align:center}.sidebar-content ul,.sidebar-content ol,.sidebar-content-sticky ul,.sidebar-content-sticky ol{margin:0}.sidebar-content ul li,.sidebar-content ol li,.sidebar-content-sticky ul li,.sidebar-content-sticky ol li{padding:0;margin:10px 0}.sidebar-content ul,.sidebar-content-sticky ul{padding:0 0 0 20px;padding:0 0 0 1.25rem}.sidebar-content ul li,.sidebar-content-sticky ul li{list-style-type:none;position:relative}.sidebar-content ul li::before,.sidebar-content-sticky ul li::before{position:absolute;top:7px;left:-18px;content:" ";width:3px;height:3px;display:inline-block;opacity:.7}.sidebar-content ol,.sidebar-content-sticky ol{list-style:none;counter-reset:my-awesome-counter;padding:0}.sidebar-content ol li,.sidebar-content-sticky ol li{counter-increment:my-awesome-counter}.sidebar-content ol li::before,.sidebar-content-sticky ol li::before{content:counter(my-awesome-counter) ". ";margin-right:8px;margin-right:.5rem;display:inline-block;font-weight:bold}.sidebar-content-sticky{position:-webkit-sticky;position:sticky;top:36px}@media only screen and (max-width:900px){.sidebar-content-sticky{position:static}}#top-widget{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;text-align:center}#top-widget .widget-content{text-align:center;margin:0 0 36px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 36px;overflow-x:auto;overflow-y:hidden}@media only screen and (max-width:900px){#top-widget .widget-content{margin:0 0 30px;padding:0 30px}}@media only screen and (max-width:480px){#top-widget .widget-content{margin:0 0 22px;padding:0 22px}}#top-widget h3,#top-widget .normalwidget-title,#top-widget .normalwidget-title::after{display:none;visibility:hidden;height:0;opacity:0}.PopularPosts{margin:14px auto 45px;max-width:405px;overflow-x:unset !important}.popular-posts-wrap{color:inherit}.popular-posts-wrap .the-most-popular .popular-post-thumbnail img,.popular-posts-wrap .the-most-popular .popular-post-thumbnail a{display:block}.popular-posts-wrap .the-most-popular .popular-post-thumbnail img{width:100%}.popular-posts-wrap .the-most-popular .popular-post-info{padding:10px 15px}.popular-posts-wrap .the-most-popular .popular-post-info .popular-post-title{margin:0}.popular-posts-wrap .the-most-popular .popular-post-info .popular-post-snippet{margin-top:8px;font-size:14px;font-size:.875rem}.popular-posts-wrap .the-most-popular .info-has-thumbnail{padding:10px 15px}.popular-posts-wrap .popular-post-content{margin:2px 0}.popular-posts-wrap .popular-post-content .popular-post-info{padding:10px 15px}.popular-posts-wrap .popular-post-content .popular-post-info .popular-post-title{margin:0}.popular-posts-wrap .popular-post-content .popular-post-info .popular-post-snippet{margin-top:8px;font-size:14px;font-size:.875rem}#subscribe-box-wrap{padding:0}#subscribe-box-wrap #subscribe-box{margin:0 auto;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}#subscribe-box-wrap #subscribe-box p{font-size:32px;padding:0;margin:0;font-weight:bold}.FollowByEmail{overflow-y:auto}.FollowByEmail .subscribewidget-title{position:relative;padding:36px 36px 20px;word-break:break-word}.FollowByEmail .subscribewidget-title h3.title{text-transform:uppercase;font-size:32px;font-size:2rem;margin:0;line-height:32px;line-height:2rem}.FollowByEmail .widget-content{padding:0 36px 36px}.FollowByEmail .widget-content .follow-by-email-inner form .follow-by-email-address{padding:15px 20px;border-radius:4px;margin:5px;border:0;max-width:80%}.FollowByEmail .widget-content .follow-by-email-inner form .follow-by-email-submit{cursor:pointer;padding:15px 20px;margin:5px;border:0;border-radius:4px;-webkit-transition:all .2s;transition:all .2s;text-transform:uppercase}.cloud-label-widget-content .label-size{margin:3px 1px;display:inline-block}.cloud-label-widget-content .label-size a.label-name{display:inline-block;padding:4px 8px;font-size:14px;font-size:.875rem;border-radius:3px;-webkit-transition:all .2s;transition:all .2s}.cloud-label-widget-content .label-size a.label-name span.label-count{color:inherit;margin-left:3px}.Profile .individual{position:relative;padding:30px 20px}.Profile .individual .profile-img-wrap{text-align:center}.Profile .individual .profile-img-wrap .profile-img{width:100px;border-radius:50px;margin-bottom:10px}.Profile .individual .profile-info{text-align:center}.Profile .individual .profile-info .profile-link-author{font-size:20px;font-size:1.25rem;margin:10px 0 5px;display:inline-block}.Profile .individual .profile-info .profile-link{padding:4px 20px;display:inline-block;border-radius:18px;margin-top:15px;font-size:14px;font-size:.875rem;-webkit-transition:all .2s;transition:all .2s}.Profile .individual .profile-info .location{font-size:14px;font-size:.875rem;margin-bottom:12px}.Profile .individual .profile-info .location svg{width:18px;height:18px;margin-bottom:-3px}.Profile .individual .profile-info .profile-textblock{color:inherit}.Profile .team{padding:20px;text-align:center}.Profile .team .team-member{margin:15px 0}.Profile .team .team-member .profile-link{display:block}.Profile .team .team-member .profile-link .profile-img,.Profile .team .team-member .profile-link .default-avatar{display:inline-block;width:50px;height:50px;background:#828282;vertical-align:middle;margin-right:12px;border-radius:25px}.Profile .team .team-member .profile-link .profile-name{font-size:20px;font-size:1.25rem;color:inherit;vertical-align:middle}.contact-form-widget .form .input-label{font-size:14px;font-size:.875rem;opacity:.9}.contact-form-widget .form span.required{font-weight:bold;color:red}.contact-form-widget .form input[type=text],.contact-form-widget .form select,.contact-form-widget .form textarea{width:100%;padding:12px 14px;margin:5px 0 20px;display:inline-block;border:1px solid #ccc;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.contact-form-widget .form input[type=button]{width:100%;padding:14px 20px;margin:8px 0;border:0;border-radius:4px;cursor:pointer;-webkit-transition:all .2s;transition:all .2s}.contact-form-widget .form .contact-form-message-wrap p.contact-form-error-message,.contact-form-widget .form .contact-form-message-wrap p.contact-form-error-message-with-border{color:#b34e27}.contact-form-widget .form .contact-form-message-wrap p.contact-form-success-message,.contact-form-widget .form .contact-form-message-wrap p.contact-form-success-message-with-border{color:#338a1d}#toc{border-left:6px dotted rgba(121,128,136,0.24);padding-left:20px;padding-left:1.25rem;margin:0 0 20px;margin:0 0 1.25rem;font-size:14px;font-size:.875rem}@media only screen and (max-width:480px){#toc{padding-left:.75rem}}#toc a{text-decoration:none}#toc b.toc{text-transform:uppercase}#toc ol{padding-left:0;margin:0}#toc ol li{margin:8px 0}#toc ol li ol{padding-left:32px;padding-left:2rem;margin:0}#toc ol li ol li{list-style-type:disc}#toc>ol{counter-reset:item;list-style:none}#toc>ol>li:before,#toc>ol li>li:before{content:counters(item,".") " ";counter-increment:item;margin-right:5px}#toc>ol>ol{padding-left:16px;padding-left:1rem}#toc>ol>ol li{list-style-type:disc}#toc-0::before,#toc-1::before,#toc-2::before,#toc-3::before,#toc-4::before,#toc-5::before,#toc-6::before,#toc-7::before,#toc-8::before,#toc-9::before,#toc-10::before,#toc-11::before,#toc-12::before,#toc-13::before,#toc-14::before,#toc-15::before{content:" ";margin-top:-72px;height:72px;display:block;visibility:hidden}.toc button{background:transparent;border:0;padding:0;outline:0;margin:0 4px;cursor:pointer;text-transform:lowercase;font-weight:normal}.author-profile{margin:32px 0;margin:2rem 0}.author-profile::after{content:"";display:block;clear:both}.author-profile .author-image{float:left;margin-right:16px;margin-right:1rem;border-radius:35px;width:70px}.author-profile .author-about .author-name{display:block;font-weight:bold;margin-bottom:6px}.author-profile .author-about .author-bio{font-size:15.008px;font-size:.938rem}#ms-related-post{margin:30px auto 0;overflow:hidden}#ms-related-post h4{font-weight:700;margin:0 0 16px;margin:0 0 16px;margin:0 0 1rem;display:inline-block;position:relative;padding-right:7px}#ms-related-post ul{padding:0 !important;font-size:14px}#ms-related-post .related-title{position:relative}#ms-related-post .related-title::before{content:"";border-top:4px dotted rgba(121,128,136,0.24);position:absolute;top:12px;left:0;right:0}#ms-related-post ul{margin:0;padding:0;list-style:none;word-wrap:break-word;overflow:hidden}#ms-related-post ul li{margin:0;padding:0;list-style:none;word-wrap:break-word;overflow:hidden;-webkit-transition:opacity .2s linear;transition:opacity .2s linear;float:left;width:23.5%;height:auto;margin-right:2%;margin-bottom:10px}#ms-related-post ul li:hover{opacity:.7}#ms-related-post ul li:nth-of-type(4n+0){margin-right:0}#ms-related-post ul li:nth-of-type(4n+1){clear:both}@media only screen and (max-width:480px){#ms-related-post ul li{width:48%;margin-right:4%}#ms-related-post ul li:nth-of-type(2n+0){margin-right:0}
#ms-related-post ul li:nth-of-type(2n+1){clear:both}}@media only screen and (max-width:320px){#ms-related-post ul li{width:100%;margin-right:0}}#ms-related-post ul li .related-thumb{display:block;max-height:none;background-color:transparent;border:0;padding:0;width:100%}#ms-related-post ul li a{color:inherit}#ms-related-post ul li div{padding:10px 0 20px}#ms-related-post ul div a{font-weight:bold;display:block}.BlogSearch input{padding:8px 12px;margin:3px 0;border-radius:4px;border:1px solid #bdbdbd}.BlogSearch button{padding:8px 12px;margin:3px 0;border-radius:4px;border:1px solid #bdbdbd}.Attribution svg{display:none}.Attribution .widget-content{text-align:center}#comments{margin:35px 0}#comments h3.title{margin:0 0 32px;margin:0 0 2rem}#comments-block{margin:15px 0}#comments-block .comment-author{background:rgba(153,163,173,0.08);padding:15px 15px 0}#comments-block .comment-body{background:rgba(153,163,173,0.08);padding:30px 15px 25px;margin:0}#comments-block .comment-body p{margin:0}#comments-block .comment-footer{background:rgba(153,163,173,0.08);padding:0 15px 15px;margin:0 0 20px;font-size:14px;font-size:.875rem}#comments-block .avatar-image-container{display:inline-block;margin-right:4px;margin-bottom:-10px;background:#888;border-radius:17px}#comments-block .avatar-image-container img{display:block}p.comment-footer{display:inline-block;font-weight:bold;margin:0}h4#comment-post-message{display:none;margin:0}.comments{clear:both;margin-top:10px;margin-bottom:0}.comments .comments-content{font-size:14px;font-size:.875rem}.comments .comments-content .comment-thread ol{text-align:left;margin:13px 0;padding:0;list-style:none}.comment .avatar-image-container{background:rgba(153,163,173,0.08);border-radius:20px;float:left;max-height:36px;overflow:hidden;width:36px;height:36px;background-repeat:no-repeat;background-position:8px 7px}.comments .avatar-image-container img{max-width:36px;border-radius:17px}.comments .comment-block{background:rgba(153,163,173,0.08);position:relative;padding:20px;margin-left:45px;word-break:break-word}.comments .comments-content .comment-replies{margin:10px 0;margin-left:45px}.comments .comments-content .comment-thread:empty{display:none}.comments .comment-replybox-single{margin-left:45px;margin:20px 0}.comments .comments-content .comment{margin-bottom:6px;padding:0}.comments .comments-content .comment:first-child{padding:0;margin:0}.comments .comments-content .comment:last-child{padding:0;margin:0}.comments .comment-thread.inline-thread .comment,.comments .comment-thread.inline-thread .comment:last-child{margin:0 0 5px 14%}.comment .comment-thread.inline-thread .comment:nth-child(6){margin:0 0 5px 12%}.comment .comment-thread.inline-thread .comment:nth-child(5){margin:0 0 5px 10%}.comment .comment-thread.inline-thread .comment:nth-child(4){margin:0 0 5px 8%}.comment .comment-thread.inline-thread .comment:nth-child(3){margin:0 0 5px 4%}.comment .comment-thread.inline-thread .comment:nth-child(2){margin:0 0 5px 2%}.comment .comment-thread.inline-thread .comment:nth-child(1){margin:0 0 5px 0}.comments .comments-content .comment-thread{margin:0;padding:0}.comments .comments-content .inline-thread{margin:0}.comments .comments-content .icon.blog-author{display:inline;margin:0 0 -4px 6px}.comments .comments-content .icon.blog-author::after{content:"author";padding:2px 6px;border-radius:10px;font-size:11px;font-size:.6875rem}.comments .comments-content .comment-header{font-size:14px;font-size:.875rem;margin:0 0 15px}.comments .comments-content .comment-content{margin:0 0 15px;text-align:left;line-height:1.6}.comments .comments-content .datetime{margin-left:6px}.comments .comments-content .datetime a{color:#707070}.comments .comments-content .user{font-weight:bold;font-style:normal}.comments .comment .comment-actions a{display:inline-block;font-size:13px;font-size:.8125rem;line-height:15px;margin:4px 8px 0 0}.comments .continue a{display:inline-block;font-size:13px;font-size:.8125rem}.comments .comment .comment-actions a:hover,.comments .continue a:hover{text-decoration:underline}.deleted-comment{font-style:italic;opacity:.5}.comments .comments-content .loadmore{cursor:pointer;margin-top:3em;max-height:3em}.comments .comments-content .loadmore.loaded{max-height:0;opacity:0;overflow:hidden}.comments .thread-chrome.thread-collapsed{display:none}.comments .thread-toggle{display:inline-block}.comments .thread-toggle .thread-arrow{display:inline-block;height:6px;margin:.3em;overflow:visible;padding-right:4px;width:7px}.comments .thread-expanded .thread-arrow{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVR42mNgwAfKy8v/48I4FeA0AacVDFQBAP9wJkE/KhUMAAAAAElFTkSuQmCC") no-repeat scroll 0 0 transparent}.comments .thread-collapsed .thread-arrow{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAJUlEQVR42mNgAILy8vL/DLgASBKnApgkVgXIkhgKiNKJ005s4gDLbCZBiSxfygAAAABJRU5ErkJggg==") no-repeat scroll 0 0 transparent}.comments .hidden{display:none}iframe.blogger-comment-from-post{padding:6px;background:#fff}.comment-note{word-break:break-word;margin:0;border-left:6px dotted rgba(153,163,173,0.08);padding-left:16px;padding-left:1rem;font-size:14px;font-size:.875rem}@media screen and (max-device-width:480px){.comments .comments-content .comment-replies{margin-left:10px}.comments .thread-toggle{margin-left:45px}.comments .comments-content .comment-replies .continue{margin-left:45px}}.normalwidget-title{width:100%;margin:0 0 25px;position:relative;text-align:center;line-height:16px;line-height:1rem;min-height:16px;min-height:1rem}.normalwidget-title::after{content:"";position:absolute;top:0;left:0;right:0;height:16px;height:1rem}.normalwidget-title h3.title{position:relative;z-index:1;display:inline-block;margin:0;padding:0 10px;font-size:16px;font-size:1rem;text-transform:uppercase}.PopularPosts,.FeaturedPost{position:relative}.FeaturedPost h3.title,.PopularPosts .popular-post-widget-title h3.title{position:absolute;top:-14px;margin:0;font-size:11px;font-size:.6875rem;font-weight:normal;text-transform:uppercase;padding:5px 10px 3px;display:inline-block;z-index:1}@media only screen and (max-width:600px){.FeaturedPost h3.title{left:2px}}.FeaturedPost .featured-outer{margin:14px 0 45px}.FeaturedPost .post-summary{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin:0}@media only screen and (max-width:600px){.FeaturedPost .post-summary{margin-left:-30px;margin-right:-30px}}@media only screen and (max-width:480px){.FeaturedPost .post-summary{margin-left:-22px;margin-right:-22px}}.FeaturedPost .post-summary h3,.FeaturedPost .post-summary h2{font-size:26px;font-size:1.625rem;margin:-5px 0 20px;padding:0;width:100%}@media only screen and (max-width:900px){.FeaturedPost .post-summary h3,.FeaturedPost .post-summary h2{font-size:1.5rem;margin:0 0 15px}}@media only screen and (max-width:480px){.FeaturedPost .post-summary h3,.FeaturedPost .post-summary h2{font-size:1.25rem}}.FeaturedPost .post-summary p.featured-desc{margin:0}.FeaturedPost .post-summary p.featured-desc b.harga-produk-coret,.FeaturedPost .post-summary p.featured-desc b.harga-produk{display:block;margin:5px 0}.FeaturedPost .post-summary p.featured-desc b.harga-produk-coret{text-decoration:line-through;color:#c23613}.FeaturedPost .post-summary p.featured-desc b.harga-produk{font-size:24px;font-size:1.5rem;margin-bottom:16px;margin-bottom:1rem}.FeaturedPost .post-summary p.featured-desc b.info-produk,.FeaturedPost .post-summary p.featured-desc b.toc{display:none}.FeaturedPost .post-summary p.featured-desc b,.FeaturedPost .post-summary p.featured-desc strong,.FeaturedPost .post-summary p.featured-desc i,.FeaturedPost .post-summary p.featured-desc em,.FeaturedPost .post-summary p.featured-desc strike,.FeaturedPost .post-summary p.featured-desc u,.FeaturedPost .post-summary p.featured-desc s,.FeaturedPost .post-summary p.featured-desc del{font-weight:normal;font-style:normal;text-decoration:none}.FeaturedPost .post-summary p.featured-more{margin:25px 0 0}.FeaturedPost .post-summary p.featured-more a{display:inline-block;border-radius:4px;padding:8px 20px;-webkit-transition:all .2s;transition:all .2s}.FeaturedPost .post-summary p.featured-more a:hover{text-decoration:none}.FeaturedPost .post-summary p.featured-more a span{vertical-align:middle;font-size:18px;font-size:1.125rem}.FeaturedPost .post-summary .featured-img{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;position:relative;padding-right:15px}.FeaturedPost .post-summary .featured-img img.image{width:100%;margin:0;padding:0;display:block}@media only screen and (max-width:600px){.FeaturedPost .post-summary .featured-img img.image{position:absolute;bottom:0}}@media only screen and (max-width:600px){.FeaturedPost .post-summary .featured-img{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;padding-right:0}}.FeaturedPost .post-summary .featured-img .featured-img-bg{height:100%}@media only screen and (max-width:600px){.FeaturedPost .post-summary .featured-img .featured-img-bg{position:relative;padding-top:75%;height:0;overflow:hidden}}.FeaturedPost .post-summary .featured-info{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-item-align:center;align-self:center;max-width:50%;padding:30px 30px 30px 15px}@media only screen and (max-width:600px){.FeaturedPost .post-summary .featured-info{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;padding:22px;margin:-25% 30px 0;z-index:0}}@media only screen and (max-width:480px){.FeaturedPost .post-summary .featured-info{margin:-30% 22px 0;padding:18px}}.FeaturedPost .post-summary .no-featured-img{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;padding:30px 30px}@media only screen and (max-width:600px){.FeaturedPost .post-summary .no-featured-img{padding:22px;margin:0 30px 0}}@media only screen and (max-width:480px){.FeaturedPost .post-summary .no-featured-img{margin:0 22px 0}}.breadcrumbs{margin:0 0 16px;margin:0 0 1rem;font-size:12px;font-size:.75rem;text-transform:uppercase}
.breadcrumbs a{text-decoration:none}.post-body .breadcrumbs a{text-decoration:none}#social-button{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;text-align:right}@media only screen and (max-width:480px){#social-button{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;text-align:center}}#social-button a{display:inline-block}#social-button .social-icon{display:inline-block;padding:7px;margin:3px 0 3px 5px;border-radius:20px;width:24px;height:24px;-webkit-transition:all .2s;transition:all .2s}#social-button .social-icon i{background-repeat:no-repeat;height:22px;width:22px;display:inline-block;margin:1px;padding:0}#social-button .social-icon:hover{background:rgba(0,0,0,0.09)}#social-button .facebook-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/></svg>")}#social-button .twitter-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z'/></svg>")}#social-button .youtube-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.5,18.78 17.18,18.84C15.88,18.91 14.69,18.94 13.59,18.94L12,19C7.81,19 5.2,18.84 4.17,18.56C3.27,18.31 2.69,17.73 2.44,16.83C2.31,16.36 2.22,15.73 2.16,14.93C2.09,14.13 2.06,13.44 2.06,12.84L2,12C2,9.81 2.16,8.2 2.44,7.17C2.69,6.27 3.27,5.69 4.17,5.44C4.64,5.31 5.5,5.22 6.82,5.16C8.12,5.09 9.31,5.06 10.41,5.06L12,5C16.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z'/></svg>")}#social-button .instagram-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z'/></svg>")}#social-button .linkedin-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z'/></svg>")}#social-button .telegram-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M9.78,18.65L10.06,14.42L17.74,7.5C18.08,7.19 17.67,7.04 17.22,7.31L7.74,13.3L3.64,12C2.76,11.75 2.75,11.14 3.84,10.7L19.81,4.54C20.54,4.21 21.24,4.72 20.96,5.84L18.24,18.65C18.05,19.56 17.5,19.78 16.74,19.36L12.6,16.3L10.61,18.23C10.38,18.46 10.19,18.65 9.78,18.65Z'/></svg>")}#social-button .whatsapp-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91C2.13 13.66 2.59 15.36 3.45 16.86L2.05 22L7.3 20.62C8.75 21.41 10.38 21.83 12.04 21.83C17.5 21.83 21.95 17.38 21.95 11.92C21.95 9.27 20.92 6.78 19.05 4.91C17.18 3.03 14.69 2 12.04 2M12.05 3.67C14.25 3.67 16.31 4.53 17.87 6.09C19.42 7.65 20.28 9.72 20.28 11.92C20.28 16.46 16.58 20.15 12.04 20.15C10.56 20.15 9.11 19.76 7.85 19L7.55 18.83L4.43 19.65L5.26 16.61L5.06 16.29C4.24 15 3.8 13.47 3.8 11.91C3.81 7.37 7.5 3.67 12.05 3.67M8.53 7.33C8.37 7.33 8.1 7.39 7.87 7.64C7.65 7.89 7 8.5 7 9.71C7 10.93 7.89 12.1 8 12.27C8.14 12.44 9.76 14.94 12.25 16C12.84 16.27 13.3 16.42 13.66 16.53C14.25 16.72 14.79 16.69 15.22 16.63C15.7 16.56 16.68 16.03 16.89 15.45C17.1 14.87 17.1 14.38 17.04 14.27C16.97 14.17 16.81 14.11 16.56 14C16.31 13.86 15.09 13.26 14.87 13.18C14.64 13.1 14.5 13.06 14.31 13.3C14.15 13.55 13.67 14.11 13.53 14.27C13.38 14.44 13.24 14.46 13 14.34C12.74 14.21 11.94 13.95 11 13.11C10.26 12.45 9.77 11.64 9.62 11.39C9.5 11.15 9.61 11 9.73 10.89C9.84 10.78 10 10.6 10.1 10.45C10.23 10.31 10.27 10.2 10.35 10.04C10.43 9.87 10.39 9.73 10.33 9.61C10.27 9.5 9.77 8.26 9.56 7.77C9.36 7.29 9.16 7.35 9 7.34C8.86 7.34 8.7 7.33 8.53 7.33Z'/></svg>")}#social-button .googlemaps-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M15.5,4.5C15.5,5.06 15.7,5.54 16.08,5.93C16.45,6.32 16.92,6.5 17.5,6.5C18.05,6.5 18.5,6.32 18.91,5.93C19.3,5.54 19.5,5.06 19.5,4.5C19.5,3.97 19.3,3.5 18.89,3.09C18.5,2.69 18,2.5 17.5,2.5C16.95,2.5 16.5,2.69 16.1,3.09C15.71,3.5 15.5,3.97 15.5,4.5M22,4.5C22,5.5 21.61,6.69 20.86,8.06C20.11,9.44 19.36,10.56 18.61,11.44L17.5,12.75C17.14,12.38 16.72,11.89 16.22,11.3C15.72,10.7 15.05,9.67 14.23,8.2C13.4,6.73 13,5.5 13,4.5C13,3.25 13.42,2.19 14.3,1.31C15.17,0.44 16.23,0 17.5,0C18.73,0 19.8,0.44 20.67,1.31C21.55,2.19 22,3.25 22,4.5M21,11.58V19C21,19.5 20.8,20 20.39,20.39C20,20.8 19.5,21 19,21H5C4.5,21 4,20.8 3.61,20.39C3.2,20 3,19.5 3,19V5C3,4.5 3.2,4 3.61,3.61C4,3.2 4.5,3 5,3H11.2C11.08,3.63 11,4.13 11,4.5C11,5.69 11.44,7.09 12.28,8.7C13.13,10.3 13.84,11.5 14.41,12.21C15,12.95 15.53,13.58 16.03,14.11L17.5,15.7L19,14.11C20.27,12.5 20.94,11.64 21,11.58M9,14.5V15.89H11.25C11,17 10.25,17.53 9,17.53C8.31,17.53 7.73,17.28 7.27,16.78C6.8,16.28 6.56,15.69 6.56,15C6.56,14.31 6.8,13.72 7.27,13.22C7.73,12.72 8.31,12.47 9,12.47C9.66,12.47 10.19,12.67 10.59,13.08L11.67,12.05C10.92,11.36 10.05,11 9.05,11H9C7.91,11 6.97,11.41 6.19,12.19C5.41,12.97 5,13.91 5,15C5,16.09 5.41,17.03 6.19,17.81C6.97,18.59 7.91,19 9,19C10.16,19 11.09,18.63 11.79,17.91C12.5,17.19 12.84,16.25 12.84,15.09C12.84,14.81 12.83,14.61 12.8,14.5H9Z'/></svg>")}#social-button .pinterest-icon i{background:url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'><path fill='white' d='M9.04,21.54C10,21.83 10.97,22 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2A10,10 0 0,0 2,12C2,16.25 4.67,19.9 8.44,21.34C8.35,20.56 8.26,19.27 8.44,18.38L9.59,13.44C9.59,13.44 9.3,12.86 9.3,11.94C9.3,10.56 10.16,9.53 11.14,9.53C12,9.53 12.4,10.16 12.4,10.97C12.4,11.83 11.83,13.06 11.54,14.24C11.37,15.22 12.06,16.08 13.06,16.08C14.84,16.08 16.22,14.18 16.22,11.5C16.22,9.1 14.5,7.46 12.03,7.46C9.21,7.46 7.55,9.56 7.55,11.77C7.55,12.63 7.83,13.5 8.29,14.07C8.38,14.13 8.38,14.21 8.35,14.36L8.06,15.45C8.06,15.62 7.95,15.68 7.78,15.56C6.5,15 5.76,13.18 5.76,11.71C5.76,8.55 8,5.68 12.32,5.68C15.76,5.68 18.44,8.15 18.44,11.43C18.44,14.87 16.31,17.63 13.26,17.63C12.29,17.63 11.34,17.11 11,16.5L10.33,18.87C10.1,19.73 9.47,20.88 9.04,21.57V21.54Z'/></svg>")}.blog-pager{text-align:center;font-size:12px;font-size:.75rem;text-transform:uppercase}.blog-pager a.blog-pager-older-link,.blog-pager a.blog-pager-newer-link{display:inline-block;border-radius:4px;padding:6px 12px;-webkit-transition:all .2s;transition:all .2s}.blog-pager a.blog-pager-older-link{float:right}.blog-pager a.blog-pager-older-link::after{content:"";border-width:0 2px 2px 0;display:inline-block;padding:3px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.blog-pager a.blog-pager-newer-link{float:left}.blog-pager a.blog-pager-newer-link::before{content:"";border-width:0 0 2px 2px;display:inline-block;padding:3px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.blog-pager::after{content:"";display:block;clear:both}.blog-pager .js-load,.blog-pager .js-loading,.blog-pager .js-loaded{display:inline-block;border-radius:4px;padding:8px 20px;-webkit-transition:all .2s;transition:all .2s}.blog-pager .js-loading::after{content:"";width:10px;height:10px;vertical-align:middle;margin-left:8px;margin-left:.5rem;margin-bottom:3px;border-radius:100%;display:inline-block;border-top:2px solid transparent;-webkit-animation:load-animate infinite linear 1s;animation:load-animate infinite linear 1s}@-webkit-keyframes load-animate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.35}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load-animate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.35}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}#goTop{position:fixed;z-index:8;bottom:30px;right:-30px;border:0;opacity:0;-webkit-transition:all .2s;transition:all .2s;border-radius:22px;outline:0;cursor:pointer;padding:18px 16px 14px}#goTop::after{content:"";display:block;width:6px;height:6px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#goTop.is-visible{opacity:.7;right:20px}.tabbed-toc{margin:0 auto;position:relative}.tabbed-toc .loading{display:block;padding:2px 12px;color:#eee}.tabbed-toc ul,.tabbed-toc ol,.tabbed-toc li{margin:0;padding:0;list-style:none}.tabbed-toc .toc-tabs{width:20%;float:left;background:rgba(51,51,51,0.03);font-size:12px;font-size:.75rem}.tabbed-toc .toc-tabs li a{display:block;overflow:hidden;text-transform:uppercase;text-decoration:none;padding:12px}.tabbed-toc .toc-tabs li a:hover{background-color:rgba(0,0,0,0.05)}.tabbed-toc .toc-tabs li a.active-tab{background:rgba(0,0,0,0.05);position:relative;z-index:5}.tabbed-toc .toc-content,.tabbed-toc .toc-line{width:80%;float:right;border-left:5px solid rgba(0,0,0,0.07);-webkit-box-sizing:border-box;box-sizing:border-box}.tabbed-toc .toc-line{float:none;display:block;position:absolute;top:0;right:0;bottom:0}.tabbed-toc .panel{position:relative;z-index:5}.tabbed-toc .panel li a{display:block;position:relative;padding:8px 12px;overflow:hidden}.tabbed-toc .panel li time{display:block;font-size:12px;font-size:.75rem}.tabbed-toc .panel li .summary{display:block;padding:10px 12px 10px;font-size:13px}.tabbed-toc .panel li .summary img.thumbnail{float:left;display:block;margin:5px 8px 0 0;width:72px;height:72px;background-color:#fafafa}.tabbed-toc .panel li{background-color:rgba(0,0,0,0.03)}.tabbed-toc .panel li:nth-child(even){background-color:transparent}.tabbed-toc .panel li a:hover,.tabbed-toc .panel li a:focus,.tabbed-toc .panel li.bold a{background-color:rgba(64,64,64,0.1);outline:0}@media(max-width:700px){.tabbed-toc .toc-tabs,.tabbed-toc .toc-content{overflow:hidden;width:auto;float:none;display:block;border-bottom:5px solid rgba(0,0,0,0.07)}.tabbed-toc .toc-tabs li{float:left}.tabbed-toc .toc-content{border-left:0}.tabbed-toc .toc-line,.tabbed-toc .panel li time{display:none}}#share-container{margin:20px auto 30px;overflow:hidden}.share-title{position:relative}.share-title::before{content:"";border-top:4px dotted rgba(121,128,136,0.24);position:absolute;top:12px;left:0;right:0}.share-this-pleaseeeee{font-weight:700;margin:0 0 16px;margin:0 0 1rem;display:inline-block;position:relative;padding-right:7px}#share{width:100%;text-align:center}#share a{width:25%;height:40px;display:block;font-size:24px;color:#fff;-webkit-transition:opacity .15s linear;transition:opacity .15s linear;float:left}#share a:hover{opacity:.8}#share a svg{width:24px;height:24px;margin-top:7px}#share a svg path{fill:#fff}.facebook{background:#3b5998}.twitter{background:#55acee}.linkedin{background:#0077b5}.pinterest{background:#cb2027}.whatsapp{background:#25d366}.darkmode-switch{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:15px}.darkmode-switch .switch-title{font-size:10px;font-size:.625rem;margin-right:4px;text-transform:uppercase;opacity:.7;-webkit-transition:all .2s;transition:all .2s}.darkmode-switch .switch-title::before{content:"Dark Mode"}.darkmode-switch .switch{position:relative;display:inline-block;width:38px;height:20px;vertical-align:middle;opacity:.7;-webkit-transition:all .2s;transition:all .2s}.darkmode-switch .switch:hover{opacity:1}.darkmode-switch .switch input{opacity:0;width:0;height:0}.darkmode-switch .slider{position:absolute;cursor:pointer;border-radius:34px;top:0;left:0;right:0;bottom:0;-webkit-transition:.2s;transition:.2s}.darkmode-switch .slider:before{position:absolute;content:"";border-radius:50%;height:12px;width:12px;left:2px;bottom:2px;-webkit-transition:.2s;transition:.2s}.darkmode-switch input:checked+.slider{background-color:#428c2f;border:2px solid #fff}.darkmode-switch input:checked+.slider::before{background:#fff}.darkmode-switch input:checked+.slider:before{-webkit-transform:translateX(18px);transform:translateX(18px)}.iconsearch-label{cursor:pointer;margin-left:15px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;padding:6px;border-radius:18px;height:25px;width:25px;-webkit-transition:all .2s;transition:all .2s}.iconsearch-label svg{width:100%;height:100%;vertical-align:middle}.iconsearch-label:hover{background:rgba(0,0,0,0.09)}div#searchcontainer{position:fixed;width:100%;height:100%;z-index:100;display:block;background:rgba(0,0,0,0.85);left:-100%;top:0;padding-top:50px;opacity:0;cursor:pointer;text-align:center;-webkit-transform:scale(0.9) translate3d(0,-50px,0);transform:scale(0.9) translate3d(0,-50px,0);-webkit-transition:-webkit-transform .3s,opacity .3s,left 0s .3s;-webkit-transition:opacity .3s,left 0s .3s,-webkit-transform .3s;transition:opacity .3s,left 0s .3s,-webkit-transform .3s;transition:transform .3s,opacity .3s,left 0s .3s;transition:transform .3s,opacity .3s,left 0s .3s,-webkit-transform .3s}div#searchcontainer form{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);-webkit-transition:all .3s 0s;transition:all .3s 0s}div#searchcontainer form input[type="text"]{width:90%;top:0;left:0;z-index:99;padding:10px;border:0;border-bottom:2px solid rgba(255,255,255,0.38);outline:0;font-size:28px;font-size:1.75rem;background:transparent;color:#fff;text-align:center}div#searchcontainer form input::-webkit-input-placeholder{color:#fff;opacity:.5}div#searchcontainer form input::-moz-placeholder{color:#fff;opacity:.5}div#searchcontainer form input:-ms-input-placeholder{color:#fff;opacity:.5}div#searchcontainer form input::-ms-input-placeholder{color:#fff;opacity:.5}div#searchcontainer form input::placeholder{color:#fff;opacity:.5}div#searchcontainer form input:-ms-input-placeholder{color:#fff;opacity:.5}div#searchcontainer form input::-ms-input-placeholder{color:#fff;opacity:.5}div#searchcontainer.opensearch{left:0;opacity:1;-webkit-transform:scale(1) translate3d(0,0,0);transform:scale(1) translate3d(0,0,0);-webkit-transition:-webkit-transform .3s,opacity .3s,left 0s 0s;-webkit-transition:opacity .3s,left 0s 0s,-webkit-transform .3s;transition:opacity .3s,left 0s 0s,-webkit-transform .3s;transition:transform .3s,opacity .3s,left 0s 0s;transition:transform .3s,opacity .3s,left 0s 0s,-webkit-transform .3s}
div#searchcontainer.opensearch form{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:all .3s .3s;transition:all .3s .3s;transition:all .3s .3s}#baca-juga{display:none}.post-body #baca-juga{display:block;overflow:hidden;clear:both}.post-body .baca-juga-wrap{margin:24px 32px;margin:1.5rem 2rem;font-size:14.4px;font-size:.9rem;background:rgba(38,144,80,0.08);border-left:5px solid rgba(38,144,80,0.1);padding:16px 16px 20.8px;padding:1rem 1rem 1.3rem}@media only screen and (max-width:480px){.post-body .baca-juga-wrap{margin:1.5rem 0}}.post-body #baca-juga strong{display:inline-block;font-size:14px;font-size:.875rem;text-transform:uppercase;margin-bottom:9.6px;margin-bottom:.6rem}.post-body #baca-juga a{font-weight:bold;text-decoration:none;padding:0}.post-body #baca-juga ul{margin:0 0 0 20px;padding-left:0}.post-body #baca-juga li{padding:0;margin:0 0 9.6px;margin:0 0 .6rem}.post-body #baca-juga li:last-child{margin:0}.error-page{text-align:center;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%;padding:60px 40px}.error-page h2{font-size:112px;font-size:7rem;margin:0}.error-page p{font-size:32px;font-size:2rem;margin:0 0 16px;margin:0 0 1rem}#footer-outer #footer-content{padding:20px 36px;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:14px;font-size:.875rem}@media only screen and (max-width:900px){#footer-outer #footer-content{padding:20px 30px}}@media only screen and (max-width:480px){#footer-outer #footer-content{padding:20px 22px}}#footer-outer #footer-content .normalwidget-title,#footer-outer #footer-content .normalwidget-title::after,#footer-outer #footer-content h3.title{display:none}#footer-outer #footer-content .PageList ul{margin:0 0 10px;padding:0}#footer-outer #footer-content .PageList ul li{list-style-type:none;display:inline-block}#footer-outer #footer-content .PageList ul li::after{content:" - ";margin:0 5px}#footer-outer #footer-content .PageList ul li:last-child::after{display:none}.buttonDownload{margin:16px 0;margin:1rem 0;border-radius:3px;display:inline-block;text-decoration:none !important;position:relative;padding:10px 25px;color:white !important;font-weight:bold;font-size:.9em;text-align:center;text-indent:15px;-webkit-transition:all .4s;transition:all .4s}.buttonDownload:hover{opacity:.85}.buttonDownload::before,.buttonDownload::after{content:' ';display:block;position:absolute;left:15px;top:52%}.buttonDownload::before{width:10px;height:2px;border-style:solid;border-width:0 2px 2px}.buttonDownload::after{width:0;height:0;margin-left:3px;margin-top:-7px;border-style:solid;border-width:4px 4px 0 4px;border-color:transparent;border-top-color:inherit;-webkit-animation:downloadArrow 2s linear infinite;animation:downloadArrow 2s linear infinite;-webkit-animation-play-state:paused;animation-play-state:paused}.buttonDownload:hover::after{-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes downloadArrow{0%{margin-top:-7px;opacity:1}0.001%{margin-top:-15px;opacity:0}50%{opacity:1}100%{margin-top:0;opacity:0}}@keyframes downloadArrow{0%{margin-top:-7px;opacity:1}0.001%{margin-top:-15px;opacity:0}50%{opacity:1}100%{margin-top:0;opacity:0}}#content-wrap-produk-index{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:900px;margin:0 auto;padding:36px 0}@media only screen and (max-width:900px){#content-wrap-produk-index{max-width:100%;padding:30px 0}}@media only screen and (max-width:480px){#content-wrap-produk-index{padding:22px 0}}#content-wrap-produk-index .banner-produk .widget-content,#content-wrap-produk-index .banner-jasa .widget-content,#content-wrap-produk-index .html-produk .widget-content,#content-wrap-produk-index .html-jasa .widget-content{text-align:center;margin:0 0 36px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 36px;overflow-x:auto}@media only screen and (max-width:900px){#content-wrap-produk-index .banner-produk .widget-content,#content-wrap-produk-index .banner-jasa .widget-content,#content-wrap-produk-index .html-produk .widget-content,#content-wrap-produk-index .html-jasa .widget-content{margin:0 0 30px;padding:0 30px}}@media only screen and (max-width:480px){#content-wrap-produk-index .banner-produk .widget-content,#content-wrap-produk-index .banner-jasa .widget-content,#content-wrap-produk-index .html-produk .widget-content,#content-wrap-produk-index .html-jasa .widget-content{margin:0 0 22px;padding:0 22px}}#content-wrap-produk-index .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin:0 -18px}@media only screen and (max-width:900px){#content-wrap-produk-index .content{margin:0 -15px}}@media only screen and (max-width:480px){#content-wrap-produk-index .content{margin:0 -11px}}#content-wrap-produk-index .content .post-outer{-webkit-box-flex:1;-ms-flex:1 1 33.33333333333333%;flex:1 1 33.33333333333333%;max-width:33.33333333333333%;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 auto;padding:0 18px 36px}@media only screen and (max-width:700px){#content-wrap-produk-index .content .post-outer{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}}@media only screen and (max-width:900px){#content-wrap-produk-index .content .post-outer{padding:0 15px 30px}}@media only screen and (max-width:480px){#content-wrap-produk-index .content .post-outer{padding:0 11px 22px}}@media only screen and (max-width:320px){#content-wrap-produk-index .content .post-outer{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}}#content-wrap-produk-index .content .post-outer .post-content{background:rgba(153,163,173,0.08);height:100%;position:relative;-webkit-transition:all .2s;transition:all .2s}#content-wrap-produk-index .content .post-outer .post-content .produk-status{position:absolute;font-weight:normal;top:4px;left:0;display:inline-block;padding:3px 8px;background:#333;color:#fff}#content-wrap-produk-index .content .post-outer .post-content:hover{-webkit-box-shadow:0 0 20px 5px rgba(0,0,0,0.12);box-shadow:0 0 20px 5px rgba(0,0,0,0.12)}#content-wrap-produk-index .content .post-outer .img-thumbnail{width:100%;position:relative}#content-wrap-produk-index .content .post-outer .img-thumbnail>a{display:block}#content-wrap-produk-index .content .post-outer .img-thumbnail img{width:100%;display:block}#content-wrap-produk-index .content .post-outer .post-title{font-size:16px;font-size:1rem;padding:10px;font-weight:normal;margin:0;text-align:center}#content-wrap-produk-index .content .post-outer .post-snippet{height:45px;overflow:hidden;padding:0 10px 15px;font-size:11px;font-size:.6875rem}#content-wrap-produk-index .content .post-outer b.harga-produk{font-weight:normal;font-size:16px;font-size:1rem;display:block;height:22px;line-height:22px;text-align:center;margin-bottom:50px}#content-wrap-produk-index .content .post-outer b.harga-produk-coret{font-weight:normal;text-decoration:line-through;display:block;height:22px;line-height:22px;text-align:center;font-size:13px;font-size:.8125rem;color:#d65c49}#content-wrap-produk-index .content .post-outer b.info-produk{position:absolute;top:0;left:0;padding:4px 8px 2px;font-size:11px;font-size:.6875rem;text-transform:uppercase;font-weight:normal}#content-wrap-produk-index h1{text-align:center}#content-wrap-produk-index .blog-pager a.blog-pager-newer-link,#content-wrap-produk-index .blog-pager a.blog-pager-older-link{float:none}.content-single-produk .breadcrumbs{text-align:center;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%}.content-single-produk .post-outer-single{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;max-width:100%}.content-single-produk .post-outer-single .post-content{border-bottom:none !important}.content-single-produk .post-outer-single .produk-container{position:relative;max-width:550px;margin:0 auto}.content-single-produk .post-outer-single .produk-container h1.post-title{margin:0 0 22px;margin:0 0 1.375rem;text-align:center;font-size:32px;font-size:2rem}@media only screen and (max-width:600px){.content-single-produk .post-outer-single .produk-container h1.post-title{text-align:center}}.content-single-produk .post-outer-single .produk-container .gambar-produk{position:relative;text-align:center;margin:0 -32px 32px;margin:0 -2rem 2rem}@media only screen and (max-width:600px){.content-single-produk .post-outer-single .produk-container .gambar-produk{position:relative;margin:0 0 36px}}.content-single-produk .post-outer-single .produk-container .gambar-produk img{width:100%;display:block}.content-single-produk .post-outer-single .produk-container .gambar-produk .gambar-slider{max-width:100%}.content-single-produk .post-outer-single .produk-container .gambar-produk .gambar-slider img{width:100%}.content-single-produk .post-outer-single .produk-container .gambar-produk button{position:absolute;outline:0;cursor:pointer;background:transparent;border:0;display:block;top:calc(50% - 18px);padding:10px}.content-single-produk .post-outer-single .produk-container .gambar-produk button.next{right:14px}.content-single-produk .post-outer-single .produk-container .gambar-produk button.prev{left:14px}.content-single-produk .post-outer-single .produk-container .gambar-produk button.next::after,.content-single-produk .post-outer-single .produk-container .gambar-produk button.prev::after{content:"";display:block;width:14px;height:14px;border-bottom:1px solid rgba(255,255,255,0.6)}.content-single-produk .post-outer-single .produk-container .gambar-produk button.next::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);border-right:1px solid rgba(255,255,255,0.6)}.content-single-produk .post-outer-single .produk-container .gambar-produk button.prev::after{-webkit-transform:rotate(45deg);transform:rotate(45deg);border-left:1px solid rgba(255,255,255,0.6)}
.content-single-produk .post-outer-single .produk-container .keterangan-produk{color:inherit;background:rgba(234,202,83,0.12);padding:15px 15px;border:4px dashed rgba(234,202,83,0.32)}.content-single-produk .post-outer-single .produk-container .keterangan-produk b.harga-produk-coret{text-align:center;text-decoration:line-through;display:block;color:#c54816;font-weight:normal}.content-single-produk .post-outer-single .produk-container .keterangan-produk b.harga-produk{text-align:center;font-size:28px;font-size:1.75rem;display:block;font-weight:normal}.content-single-produk .post-outer-single .produk-container .keterangan-produk b.info-produk{text-align:center;display:block;color:#2f7418;font-weight:normal}.content-single-produk .post-outer-single .produk-container .produk-deskripsi{-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:32px;margin-top:2rem}@media only screen and (max-width:900px){#banner-produk,#banner-jasa{margin:0 auto 30px}}@media only screen and (max-width:480px){#banner-produk,#banner-jasa{margin:0 auto 22px}}#banner-produk .normalwidget-title,#banner-jasa .normalwidget-title{display:none;visibility:hidden;height:0;opacity:0}#banner-produk .widget-content,#banner-jasa .widget-content{margin:0 auto 36px}#banner-produk .widget-content a,#banner-jasa .widget-content a{display:block}#banner-produk .widget-content img,#banner-jasa .widget-content img{width:100%;display:block}#banner-produk .widget-content br,#banner-jasa .widget-content br{display:none}#banner-produk .widget-content .caption,#banner-jasa .widget-content .caption{text-align:center;display:block;padding:15px}.order-produk{text-align:center;display:block}.order-produk a,.order-produk a:visited{-webkit-transition:all .2s;transition:all .2s;display:inline-block;text-align:center;background:#4c8e1a;padding:10px 30px;color:#fff !important;margin:32px auto;margin:2rem auto;border-radius:4px;-webkit-box-shadow:0 0 0 6px rgba(95,95,95,0.1);box-shadow:0 0 0 6px rgba(95,95,95,0.1);font-size:22px;font-size:1.375rem;text-transform:uppercase;text-decoration:none !important;font-weight:bold}.order-produk a:hover{background-color:#336909}.order-wa a{background-color:#4c8e1a;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAB8AAAAfABTP6PgwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAM+SURBVEiJrZdbiFVlFMd/3zFs9NC9oYzIMtOGmQeTJDICqZcuD0UvRYFBglAvEfTQQ1ER2UMPUVFgZleIItKii1IKgdHFkCx9KKHJicJqsOziaObMr4fzHVzzzZ4z+5xaL/vs//qv9V/72+tb+zuJmqYuA64ClgOLgH5gDrAf+AXYDmwD3kwp/V4373RiSb1F3WF9+0tdp87vlDt1EB0A1gKXB/gosBP4FPgp3zeBhcClwLmBewh4GHgkpTRR90mvUf8ITzGs3qmeOEPcUvVZ9UiIfV89pY7ozerRHHRYvUc9rlbFx3IMFK/nc/XkTgFXhmpH1cu6ESxyzVVfDeJb1VlVxNPUHzPpgHpRr6IhZ1JfCOL3V5GeDIQbCt8y9UH12h7EZ6sfh1e3IDrPzqDqa0XgoDqWfb+pzR7Eh8IrfCk61mRwXF1YBG1xsq3qVjjneS7Hj6kntcHdGXyvIPeFlWjbth6FL55UvHpOAFYX5KZTbVSddvDMIN5u3ucbwIXB91kkppQOAl8HaBxYmVKyF2FasxxgSQM4Lzi+ryCvD7+/TClt6lEUYCRf5zeAucFRNVOfDgUtVa/7D8K/5muzARwMjilLmFIaA24LvnVl53dh7a14uBGqADijip1S2go8lm/7gS3qYOTYmnw3qbM7CJ+Vr6NlV984XYQ6S90QuAfU2zPeVD/J+HfqSivmsrozcza2gR8y8HKHalHnqG8U2+sbqw8KHxaxF6gT2Xd3G1ybgTH19BnEG7Ym3XiFWLSPirg1wbegDQ6Eah7tJBwSDalvh7ho/xi6X52n/pl9m8tE72TH33bRter56kN5ufepb6mXFJxXQlHLywT3hmr76wrXKOyuIPpiFeGL7PzgfxS9w2PHqGHLM5u6OFRVfijm9SDYdPLBYp+6qIp4X1jmM9Ur1CfUkdw8G9QlNQT71NXq3iC6Vx0quSkH7AKGaJ2FDwGnTpP7K2ATsAsYBo4H+oDFtM7VVwNxOd8Fbk0p7a+qcnDKZmjZqLpefcbWv4NubLd6/UzL80AIGFEfV1cYRp56grpK3az+XCE0oe5Rn1JXdBTMltTXgT3ARmBHnY+8rYZrD/wjwLf5K1bb/gWmMra2uud+NQAAAABJRU5ErkJggg==");background-repeat:no-repeat;background-position:15px 11px;padding:10px 20px 10px 55px}
]]></b:skin>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='defaultHomepage'>
<b:include name='blogPostThumbnail'/>
<div class='post-summary-wrap'>
<b:include name='blogPostTitle'/>
<b:if cond='data:post.labels any (label => label.name in ["Produk","Products","Jasa","Services"])'>
<b:elseif cond='data:post.labels any (label => label.name in ["Advertorial","Iklan","Sponsor"])'/>
<b:include name='postInfoAdvertorial'/>
<b:else/>
<b:include name='postInfo'/>
</b:if>
<b:include name='blogPostSnippet'/>
</div>
</b:includable>
<b:includable id='defaultProdukIndexPage'>
<b:include name='blogPostThumbnailProduk'/>
<b:include name='blogPostTitle'/>
<b:include name='blogPostSnippet'/>
</b:includable>
<b:includable id='defaultProdukPage'>
<script>
//<![CDATA[
/*! Siema Slider */
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("Siema",[],t):"object"==typeof exports?exports.Siema=t():e.Siema=t()}("undefined"!=typeof self?self:this,function(){return n={},r.m=i=[function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n=(function(e,t,i){return t&&l(e.prototype,t),i&&l(e,i),e}(s,[{key:"attachEvents",value:function(){window.addEventListener("resize",this.resizeHandler),this.config.draggable&&(this.pointerDown=!1,this.drag={startX:0,endX:0,startY:0,letItGo:null,preventClick:!1},this.selector.addEventListener("touchstart",this.touchstartHandler),this.selector.addEventListener("touchend",this.touchendHandler),this.selector.addEventListener("touchmove",this.touchmoveHandler),this.selector.addEventListener("mousedown",this.mousedownHandler),this.selector.addEventListener("mouseup",this.mouseupHandler),this.selector.addEventListener("mouseleave",this.mouseleaveHandler),this.selector.addEventListener("mousemove",this.mousemoveHandler),this.selector.addEventListener("click",this.clickHandler))}},{key:"detachEvents",value:function(){window.removeEventListener("resize",this.resizeHandler),this.selector.removeEventListener("touchstart",this.touchstartHandler),this.selector.removeEventListener("touchend",this.touchendHandler),this.selector.removeEventListener("touchmove",this.touchmoveHandler),this.selector.removeEventListener("mousedown",this.mousedownHandler),this.selector.removeEventListener("mouseup",this.mouseupHandler),this.selector.removeEventListener("mouseleave",this.mouseleaveHandler),this.selector.removeEventListener("mousemove",this.mousemoveHandler),this.selector.removeEventListener("click",this.clickHandler)}},{key:"init",value:function(){this.attachEvents(),this.selector.style.overflow="hidden",this.selector.style.direction=this.config.rtl?"rtl":"ltr",this.buildSliderFrame(),this.config.onInit.call(this)}},{key:"buildSliderFrame",value:function(){var e=this.selectorWidth/this.perPage,t=this.config.loop?this.innerElements.length+2*this.perPage:this.innerElements.length;this.sliderFrame=document.createElement("div"),this.sliderFrame.style.width=e*t+"px",this.enableTransition(),this.config.draggable&&(this.selector.style.cursor="-webkit-grab");var i=document.createDocumentFragment();if(this.config.loop)for(var r=this.innerElements.length-this.perPage;r<this.innerElements.length;r++){var n=this.buildSliderFrameItem(this.innerElements[r].cloneNode(!0));i.appendChild(n)}for(var s=0;s<this.innerElements.length;s++){var l=this.buildSliderFrameItem(this.innerElements[s]);i.appendChild(l)}if(this.config.loop)for(var o=0;o<this.perPage;o++){var a=this.buildSliderFrameItem(this.innerElements[o].cloneNode(!0));i.appendChild(a)}this.sliderFrame.appendChild(i),this.selector.innerHTML="",this.selector.appendChild(this.sliderFrame),this.slideToCurrent()}},{key:"buildSliderFrameItem",value:function(e){var t=document.createElement("div");return t.style.cssFloat=this.config.rtl?"right":"left",t.style.float=this.config.rtl?"right":"left",t.style.width=(this.config.loop?100/(this.innerElements.length+2*this.perPage):100/this.innerElements.length)+"%",t.appendChild(e),t}},{key:"resolveSlidesNumber",value:function(){if("number"==typeof this.config.perPage)this.perPage=this.config.perPage;else if("object"===r(this.config.perPage))for(var e in this.perPage=1,this.config.perPage)window.innerWidth>=e&&(this.perPage=this.config.perPage[e])}},{key:"prev",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop)if(this.currentSlide-e<0){this.disableTransition();var r=this.currentSlide+this.innerElements.length,n=r+this.perPage,s=(this.config.rtl?1:-1)*n*(this.selectorWidth/this.perPage),l=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(s+l)+"px, 0, 0)",this.currentSlide=r-e}else this.currentSlide=this.currentSlide-e;else this.currentSlide=Math.max(this.currentSlide-e,0);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"next",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop)if(this.currentSlide+e>this.innerElements.length-this.perPage){this.disableTransition();var r=this.currentSlide-this.innerElements.length,n=r+this.perPage,s=(this.config.rtl?1:-1)*n*(this.selectorWidth/this.perPage),l=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(s+l)+"px, 0, 0)",this.currentSlide=r+e}else this.currentSlide=this.currentSlide+e;else this.currentSlide=Math.min(this.currentSlide+e,this.innerElements.length-this.perPage);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"disableTransition",value:function(){this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing}},{key:"enableTransition",value:function(){this.sliderFrame.style.webkitTransition="all "+this.config.duration+"ms "+this.config.easing,this.sliderFrame.style.transition="all "+this.config.duration+"ms "+this.config.easing}},{key:"goTo",value:function(e,t){if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;this.currentSlide=this.config.loop?e%this.innerElements.length:Math.min(Math.max(e,0),this.innerElements.length-this.perPage),i!==this.currentSlide&&(this.slideToCurrent(),this.config.onChange.call(this),t&&t.call(this))}}},{key:"slideToCurrent",value:function(e){var t=this,i=this.config.loop?this.currentSlide+this.perPage:this.currentSlide,r=(this.config.rtl?1:-1)*i*(this.selectorWidth/this.perPage);e?requestAnimationFrame(function(){requestAnimationFrame(function(){t.enableTransition(),t.sliderFrame.style[t.transformProperty]="translate3d("+r+"px, 0, 0)"})}):this.sliderFrame.style[this.transformProperty]="translate3d("+r+"px, 0, 0)"}},{key:"updateAfterDrag",value:function(){var e=(this.config.rtl?-1:1)*(this.drag.endX-this.drag.startX),t=Math.abs(e),i=this.config.multipleDrag?Math.ceil(t/(this.selectorWidth/this.perPage)):1,r=0<e&&this.currentSlide-i<0,n=e<0&&this.currentSlide+i>this.innerElements.length-this.perPage;0<e&&t>this.config.threshold&&this.innerElements.length>this.perPage?this.prev(i):e<0&&t>this.config.threshold&&this.innerElements.length>this.perPage&&this.next(i),this.slideToCurrent(r||n)}},{key:"resizeHandler",value:function(){this.resolveSlidesNumber(),this.currentSlide+this.perPage>this.innerElements.length&&(this.currentSlide=this.innerElements.length<=this.perPage?0:this.innerElements.length-this.perPage),this.selectorWidth=this.selector.offsetWidth,this.buildSliderFrame()}},{key:"clearDrag",value:function(){this.drag={startX:0,endX:0,startY:0,letItGo:null,preventClick:this.drag.preventClick}}},{key:"touchstartHandler",value:function(e){-1!==["TEXTAREA","OPTION","INPUT","SELECT"].indexOf(e.target.nodeName)||(e.stopPropagation(),this.pointerDown=!0,this.drag.startX=e.touches[0].pageX,this.drag.startY=e.touches[0].pageY)}},{key:"touchendHandler",value:function(e){e.stopPropagation(),this.pointerDown=!1,this.enableTransition(),this.drag.endX&&this.updateAfterDrag(),this.clearDrag()}},{key:"touchmoveHandler",value:function(e){if(e.stopPropagation(),null===this.drag.letItGo&&(this.drag.letItGo=Math.abs(this.drag.startY-e.touches[0].pageY)<Math.abs(this.drag.startX-e.touches[0].pageX)),this.pointerDown&&this.drag.letItGo){e.preventDefault(),this.drag.endX=e.touches[0].pageX,this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing;var t=(this.config.loop?this.currentSlide+this.perPage:this.currentSlide)*(this.selectorWidth/this.perPage),i=this.drag.endX-this.drag.startX,r=this.config.rtl?t+i:t-i;this.sliderFrame.style[this.transformProperty]="translate3d("+(this.config.rtl?1:-1)*r+"px, 0, 0)"}}},{key:"mousedownHandler",value:function(e){-1!==["TEXTAREA","OPTION","INPUT","SELECT"].indexOf(e.target.nodeName)||(e.preventDefault(),e.stopPropagation(),this.pointerDown=!0,this.drag.startX=e.pageX)}},{key:"mouseupHandler",value:function(e){e.stopPropagation(),this.pointerDown=!1,this.selector.style.cursor="-webkit-grab",this.enableTransition(),this.drag.endX&&this.updateAfterDrag(),this.clearDrag()}},{key:"mousemoveHandler",value:function(e){if(e.preventDefault(),this.pointerDown){"A"===e.target.nodeName&&(this.drag.preventClick=!0),this.drag.endX=e.pageX,this.selector.style.cursor="-webkit-grabbing",this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing;var t=(this.config.loop?this.currentSlide+this.perPage:this.currentSlide)*(this.selectorWidth/this.perPage),i=this.drag.endX-this.drag.startX,r=this.config.rtl?t+i:t-i;this.sliderFrame.style[this.transformProperty]="translate3d("+(this.config.rtl?1:-1)*r+"px, 0, 0)"}}},{key:"mouseleaveHandler",value:function(e){this.pointerDown&&(this.pointerDown=!1,this.selector.style.cursor="-webkit-grab",this.drag.endX=e.pageX,this.drag.preventClick=!1,this.enableTransition(),this.updateAfterDrag(),this.clearDrag())}},{key:"clickHandler",value:function(e){this.drag.preventClick&&e.preventDefault(),this.drag.preventClick=!1}},{key:"remove",value:function(e,t){if(e<0||e>=this.innerElements.length)throw new Error("Item to remove doesn't exist 😭");var i=e<this.currentSlide,r=this.currentSlide+this.perPage-1===e;(i||r)&&this.currentSlide--,this.innerElements.splice(e,1),this.buildSliderFrame(),t&&t.call(this)}},{key:"insert",value:function(e,t,i){if(t<0||t>this.innerElements.length+1)throw new Error("Unable to inset it at this index 😭");if(-1!==this.innerElements.indexOf(e))throw new Error("The same item in a carousel? Really? Nope 😭");var r=0<(t<=this.currentSlide)&&this.innerElements.length;this.currentSlide=r?this.currentSlide+1:this.currentSlide,this.innerElements.splice(t,0,e),this.buildSliderFrame(),i&&i.call(this)}},{key:"prepend",value:function(e,t){this.insert(e,0),t&&t.call(this)}},{key:"append",value:function(e,t){this.insert(e,this.innerElements.length+1),t&&t.call(this)}},{key:"destroy",value:function(){var e=0<arguments.length&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(this.detachEvents(),this.selector.style.cursor="auto",e){for(var i=document.createDocumentFragment(),r=0;r<this.innerElements.length;r++)i.appendChild(this.innerElements[r]);this.selector.innerHTML="",this.selector.appendChild(i),this.selector.removeAttribute("style")}t&&t.call(this)}}],[{key:"mergeSettings",value:function(e){var t={selector:".siema",duration:200,easing:"ease-out",perPage:1,startIndex:0,draggable:!0,multipleDrag:!0,threshold:20,loop:!1,rtl:!1,onInit:function(){},onChange:function(){}},i=e;for(var r in i)t[r]=i[r];return t}},{key:"webkitOrNot",value:function(){return"string"==typeof document.documentElement.style.transform?"transform":"WebkitTransform"}}]),s);function s(e){var t=this;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),this.config=s.mergeSettings(e),this.selector="string"==typeof this.config.selector?document.querySelector(this.config.selector):this.config.selector,null===this.selector)throw new Error("Something wrong with your selector 😭");this.resolveSlidesNumber(),this.selectorWidth=this.selector.offsetWidth,this.innerElements=[].slice.call(this.selector.children),this.currentSlide=this.config.loop?this.config.startIndex%this.innerElements.length:Math.max(0,Math.min(this.config.startIndex,this.innerElements.length-this.perPage)),this.transformProperty=s.webkitOrNot(),["resizeHandler","touchstartHandler","touchendHandler","touchmoveHandler","mousedownHandler","mouseupHandler","mouseleaveHandler","mousemoveHandler","clickHandler"].forEach(function(e){t[e]=t[e].bind(t)}),this.init()}function l(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}t.default=n,e.exports=t.default}],r.c=n,r.d=function(e,t,i){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=0);function r(e){if(n[e])return n[e].exports;var t=n[e]={i:e,l:!1,exports:{}};return i[e].call(t.exports,t,t.exports,r),t.l=!0,t.exports}var i,n});
//]]>
</script>
<b:include name='blogPostBodyProduk'/>
<script>
var waPostTitle = "<data:post.title.jsonEscaped/>";
//<![CDATA[
"use strict";function LMorderButtonWA(){"undefined"==typeof linkMagzSetting&&(linkMagzSetting={judulPesanWA:"Pesan Sekarang",nomorWA:6285e9,teksPesanWA:"Halo Admin. Saya mau pesan"});var e=document.querySelector(".order-wa-link"),t=encodeURI(linkMagzSetting.teksPesanWA),n=encodeURI(waPostTitle);e.href="https://api.whatsapp.com/send?phone="+linkMagzSetting.nomorWA+"&text="+t+"%20*"+n+"*%20",e.innerHTML=linkMagzSetting.judulPesanWA}function hideLMorderButtonWA(e){var t=document.querySelector(e);t.parentNode.removeChild(t)}"undefined"!=typeof linkMagzSetting&&void 0!==linkMagzSetting.tombolPesanWA||(linkMagzSetting={tombolPesanWA:!0}),1==linkMagzSetting.tombolPesanWA?LMorderButtonWA():hideLMorderButtonWA(".order-wa");var sliderButton=function(){var e=document.createElement("button"),t=document.createElement("button");e.setAttribute("aria-label","Button"),t.setAttribute("aria-label","Button"),e.classList.add("prev"),t.classList.add("next");var n=document.querySelector(".gambar-produk");if(n){n.appendChild(e),n.appendChild(t);var a=new Siema({selector:".gambar-slider",loop:!0});document.querySelector(".prev").addEventListener("click",function(){a.prev()}),document.querySelector(".next").addEventListener("click",function(){a.next()})}};sliderButton();
//]]>
</script>
</b:includable>
<b:includable id='defaultStaticPage'>
<b:include name='blogPostTitle'/>
<b:include name='blogPostBody'/>
</b:includable>
<b:includable id='defaultPostPage'>
<b:include name='blogPostTitle'/>
<b:include name='postInfo'/>
<b:include name='blogPostBody'/>
<b:include name='blogPostAuthorProfile'/>
<b:include name='postShareButton'/>
<b:include name='relatedPost'/>
<b:include name='relatedPostScript'/>
</b:includable>
<b:includable id='defaultPostAdPage'>
<b:include name='blogPostTitle'/>
<b:include name='postInfoAdvertorial'/>
<b:include name='blogPostBody'/>
<b:include name='postShareButton'/>
<b:include name='relatedPost'/>
<b:include name='relatedPostScript'/>
</b:includable>
<b:includable id='breadcrumb'>
<b:if cond='data:view.isPost'>
<b:loop values='data:posts' var='post'>
<div class='breadcrumbs' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a expr:href='data:blog.homepageUrl' itemprop='item' title='Home'>
<meta content='1' itemprop='position'/>
<span itemprop='name'><b:switch var='data:blog.locale'><b:case value='id'/>Beranda<b:default/>Home</b:switch></span></a>
</span>
<b:if cond='data:post.labels'>
<b:loop index='nomor' values='data:post.labels' var='label'> /
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<meta expr:content='data:nomor+2' itemprop='position'/>
<a expr:href='data:label.url + "?&max-results=8"' expr:title='data:label.name' itemprop='item' rel='nofollow'>
<span itemprop='name'><data:label.name/></span>
</a>
</span>
</b:loop>
<b:else/>
/ <span itemprop='name'><data:blog.pageName/></span>
</b:if>
</div>
</b:loop>
</b:if>
</b:includable>
<b:includable id='recentPostTitle'>
<div class="latestposts-title">
<h2><data:messages.latestPosts/></h2>
</div>
</b:includable>
<b:includable id='recentPostTitleProduk'>
<b:if cond='data:view.search.label in ["Produk","Products"]'>
<div class="latestposts-title">
<h2><b:switch var='data:blog.locale'><b:case value='id'/>Daftar Produk<b:default/>List of Products</b:switch></h2>
</div>
<b:elseif cond='data:view.search.label in ["Jasa","Services"]'/>
<div class="latestposts-title">
<h2><b:switch var='data:blog.locale'><b:case value='id'/>Daftar Jasa<b:default/>List of Services</b:switch></h2>
</div>
</b:if>
</b:includable>
<b:includable id='darkmodeSwitch'>
<div class='darkmode-switch'><span class='switch-title'></span><label class="switch"><input aria-label='checkbox' class="checkbox" type="checkbox" onclick="darkMode()"></input><span class="slider"></span></label>
</div>
</b:includable>
<b:includable id='searchIcon'>
<label for="search-terms" class="iconsearch-label">
<svg viewBox='0 0 24 24'>
<path d='M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z'/>
</svg>
</label>
</b:includable>
<b:includable id='searchFormContainer'>
<div id='searchcontainer'>
<form id='search' expr:action='data:blog.searchUrl'>
<input autocomplete='off' tabindex='-1' expr:aria-label='data:messages.searchThisBlog' type='text' expr:value='data:view.isSearch ? data:view.search.query.escaped : ""' name='q' id='search-terms' expr:placeholder='data:messages.searchThisBlog'/>
</form>
</div>
</b:includable>
<b:includable id='mobileMenuContainer'>
<div id="navmenu-sidebar">
<div id="navmenu-sidebar-closebtn"><div class="closebtn">✕</div><div class="closebtn-title"><b:switch var='data:blog.locale'><b:case value='id'/>Tutup<b:default/>Close</b:switch></div></div>
<div id="navmenu-sidebar-body"></div>
</div>
<div id="navmenu-overlay"></div>
</b:includable>
<b:includable id='blogPostThumbnail'>
<div class='img-thumbnail'>
<b:if cond='data:post.featuredImage'>
<b:class cond='data:post.featuredImage.isYoutube' name='is-video'/>
<b:if cond='data:post.featuredImage.isResizable'>
<a expr:href='data:post.url'>
<img class='lazyload blur-up' expr:alt='data:post.title' expr:data-src='resizeImage(data:post.featuredImage, 400, "16:9")' width='400' height='225' expr:title='data:post.title' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII='/>
</a>
</b:if>
<b:else/>
<a expr:href='data:post.url'><img class='lazyload blur-up' width='400' height='225' data-src='//1.bp.blogspot.com/-aR5w9KXuWGU/XhSDNRAVuhI/AAAAAAAAHG8/dLxcaZxSgh0v85JG0mWRMQyEwqMgpL1_gCLcBGAsYHQ/w400-h225-n-k-no-nu/no-image.jpg' expr:alt='data:post.title' expr:title='data:post.title' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII='/></a>
</b:if>
<b:include name='labelInfo'/>
</div>
</b:includable>
<b:includable id='blogPostThumbnailProduk'>
<div class='img-thumbnail'>
<b:if cond='data:post.featuredImage'>
<b:if cond='data:post.featuredImage.isResizable'>
<a expr:href='data:post.url'><img class='lazyload blur-up' expr:alt='data:post.title' expr:data-src='resizeImage(data:post.featuredImage, 400, "1:1")' expr:title='data:post.title' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD2AAAA9gBbkdjNQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAANSURBVAiZY2BgYGAEAAAGAAKHf+MhAAAAAElFTkSuQmCC'/>
</a>
</b:if>
<b:else/>
<a expr:href='data:post.url'><img class='lazyload blur-up' width='400' height='400' data-src='//1.bp.blogspot.com/-aR5w9KXuWGU/XhSDNRAVuhI/AAAAAAAAHG8/dLxcaZxSgh0v85JG0mWRMQyEwqMgpL1_gCLcBGAsYHQ/w400-h400-n-k-no-nu/no-image.jpg' expr:alt='data:post.title' expr:title='data:post.title' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD2AAAA9gBbkdjNQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAANSURBVAiZY2BgYGAEAAAGAAKHf+MhAAAAAElFTkSuQmCC'/></a>
</b:if>
</div>
</b:includable>
<b:includable id='blogPostTitle'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title != ""'>
<b:if cond='data:view.isMultipleItems'>
<h2 class='post-title entry-title'>
<b:if cond='data:post.link or (data:post.url and data:view.url != data:post.url)'>
<a expr:href='data:post.link ?: data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h2>
<b:else/>
<h1 class='post-title entry-title'>
<b:if cond='data:post.link or (data:post.url and data:view.url != data:post.url)'>
<a expr:href='data:post.link ?: data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h1>
</b:if>
<b:else/>
<b:if cond='data:view.isMultipleItems'>
<h2 class='post-title entry-title'>
<b:if cond='data:post.link or (data:post.url and data:view.url != data:post.url)'>
<a expr:href='data:post.link ?: data:post.url'>[<data:messages.noTitle/>]</a>
<b:else/>
[<data:messages.noTitle/>]
</b:if>
</h2>
<b:else/>
<h1 class='post-title entry-title'>
<b:if cond='data:post.link or (data:post.url and data:view.url != data:post.url)'>
<a expr:href='data:post.link ?: data:post.url'>[<data:messages.noTitle/>]</a>
<b:else/>
[<data:messages.noTitle/>]
</b:if>
</h1>
</b:if>
</b:if>
</b:includable>
<b:includable id='blogPostSnippet'>
<b:if cond='data:post.labels any (label => label.name in ["Produk","Products","Jasa","Services"])'>
<div class='post-snippet' expr:id='"post-snippet-" + data:post.id'>
<b:eval expr='snippet(data:post.snippets.long, { length: 120 })'/>
</div>
<div class='js-post-snippet' expr:id='"js-post-snippet-" + data:post.id'><!--<b:eval expr='snippet(data:post.body, { length: 170, links: false, linebreaks: false })'></b:eval>--></div>
<b:else/>
<div class='post-snippet' expr:id='"post-snippet-" + data:post.id'>
<b:eval expr='snippet(data:post.snippets.long, { length: 120 })'/>
</div>
</b:if>
</b:includable>
<b:includable id='blogPostBody'>
<div class='post-body post-body-artikel' expr:id='"post-body-" + data:post.id'>
<data:post.body/>
</div>
<div id='baca-juga'></div>
<script>
//<![CDATA[
"use strict";var bacaJugaJudul=[],bacaJugaNum=0,bacaJugaUrl=[];function bacaJuga(a){for(var u=0;u<a.feed.entry.length;u++){var e=a.feed.entry[u];bacaJugaJudul[bacaJugaNum]=e.title.$t;for(var l=0;l<e.link.length;l++)if("alternate"==e.link[l].rel){bacaJugaUrl[bacaJugaNum]=e.link[l].href,bacaJugaNum++;break}}}function showBacaJuga(a){var u=document.querySelector("#baca-juga"),e=document.createElement("div"),l=document.querySelector(".post-body-artikel").querySelectorAll("div > br, span > br, div > p, span > p"),t=Math.ceil(.5*l.length),n=document.getElementById("related");e.setAttribute("class","baca-juga-wrap");var r={bacaJuga:!0,jumlahBacaJuga:3,judulBacaJuga:"Baca Juga"};"undefined"!=typeof linkMagzSetting&&(r=linkMagzSetting);function g(a,u){u.parentNode.insertBefore(a,u.nextSibling)}var c;if(!0===r.bacaJuga&&void 0!==l[t]){g(u,null!==n?n:l[t]);for(var i=0;i<bacaJugaUrl.length;i++)bacaJugaUrl[i]==a&&(bacaJugaUrl.splice(i,1),bacaJugaJudul.splice(i,1));var J=Math.floor((bacaJugaJudul.length-1)*Math.random());if((i=0)<bacaJugaJudul.length&&0<r.jumlahBacaJuga){u.appendChild(e),null!=(c=u.previousElementSibling)&&"BR"===c.tagName&&(c.style.display="none");for(var b="<strong>"+r.judulBacaJuga+"</strong><ul>";i<bacaJugaJudul.length&&i<r.jumlahBacaJuga;i++)b+='<li><a href="'+bacaJugaUrl[J]+'">'+bacaJugaJudul[J]+"</a></li>",J<bacaJugaJudul.length-1?J++:J=0;b+="</ul>",e.innerHTML=b}}}
//]]>
</script>
<b:loop values='data:post.labels' var='label'>
<script expr:src='"/feeds/posts/summary/-/" + data:label.name + "?alt=json-in-script&callback=bacaJuga&max-results=5"'/>
</b:loop>
<script>
showBacaJuga("<data:post.url/>");
</script>
</b:includable>
<b:includable id='blogPostBodyProduk'>
<div class='post-body' expr:id='"post-body-" + data:post.id'>
<div class='produk-container'>
<b:include name='blogPostTitle'/>
<data:post.body/>
<b:include name='tombolOrderWA'/>
</div>
</div>
</b:includable>
<b:includable id='tombolOrderWA'>
<span class="order-produk order-wa">
<a class='order-wa-link' href='#'>Pesan Sekarang</a>
</span>
</b:includable>
<b:includable id='postInfoAuthor'>
<span class='author-info'>
<b:message name='messages.byAuthor'>
<b:param expr:value='data:post.author.name' name='authorName'/>
</b:message>
</span>
</b:includable>
<b:includable id='postInfoPostDate'>
<time expr:datetime='data:post.date.iso8601' expr:title='data:post.date.iso8601'>
<b:eval expr='format(data:post.date, "dd MMM, YYYY")'/>
</time>
</b:includable>
<b:includable id='postInfoComment'>
<b:if cond='data:post.allowComments'>
<span class='comment-info'>
<b:if cond='data:view.isSingleItem'>
<a class='comment-link' href='#comments' expr:onclick='data:post.commentsUrlOnclick'>
<b:if cond='data:post.numberOfComments > 0'>
<b:message name='messages.numberOfComments'>
<b:param expr:value='data:post.numberOfComments' name='numComments'/>
</b:message>
<b:else/>
<data:messages.postAComment/>
</b:if>
</a>
<b:else/>
<a class='comment-link' expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:if cond='data:post.numberOfComments > 0'>
<b:message name='messages.numberOfComments'>
<b:param expr:value='data:post.numberOfComments' name='numComments'/>
</b:message>
<b:else/>
<data:messages.postAComment/>
</b:if>
</a>
</b:if>
</span>
</b:if>
</b:includable>
<b:includable id='postInfo'>
<div class='post-info'>
<b:loop values='data:widgets.Blog.first.allBylineItems where (i => i.name == "author")' var='byline'>
<b:include name='postInfoAuthor'/>
</b:loop>
<b:loop values='data:widgets.Blog.first.allBylineItems where (i => i.name == "timestamp")' var='byline'>
<b:include name='postInfoPostDate'/>
</b:loop>
<b:include name='postInfoComment'/>
</div>
</b:includable>
<b:includable id='postInfoAdvertorial'>
<div class="post-info">
<span class="advertorial-label">Sponsored Post </span>
<b:loop values='data:widgets.Blog.first.allBylineItems where (i => i.name == "timestamp")' var='byline'>
<b:include name='postInfoPostDate'/>
</b:loop>
</div>
</b:includable>
<b:includable id='labelInfo'>
<b:loop values='data:widgets.Blog.first.allBylineItems where (i => i.name == "labels")' var='byline'>
<div class='label-info'>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url + "?&max-results=8"' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != "true"'/>
</b:loop>
</div>
</b:loop>
</b:includable>
<b:includable id='blogPostAuthorProfile'>
<b:if cond='data:post.author.aboutMe and data:view.isPost'>
<div class='author-profile'>
<b:if cond='data:post.author.authorPhoto.image'>
<img expr:alt='data:post.author.name' class='author-image lazyload blur-up' expr:data-src='data:post.author.authorPhoto.image' width='50px' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD2AAAA9gBbkdjNQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAANSURBVAiZY2BgYGAEAAAGAAKHf+MhAAAAAElFTkSuQmCC'/>
<div class='author-about'>
<span class='author-name'><data:post.author.name/></span>
<span class='author-bio'><data:post.author.aboutMe/></span>
</div>
<b:else/>
<span class='author-name'><data:post.author.name/></span>
<span class='author-bio'><data:post.author.aboutMe/></span>
</b:if>
</div>
</b:if>
</b:includable>
<b:includable id='postShareButton'>
<div id='share-container'> <!-- social sharing button -->
<div class='share-title'>
<p class='share-this-pleaseeeee'><data:messages.share/></p>
</div>
<div id='share'>
<!-- facebook -->
<a aria-label='facebook' class='facebook' expr:href='"https://www.facebook.com/sharer/sharer.php?u=" + data:blog.url' rel='nofollow noopener' target='_blank' title='facebook'>
<svg viewBox='0 0 24 24'>
<path d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/>
</svg>
</a>
<!-- twitter -->
<a aria-label='twitter' class='twitter' expr:href='"https://twitter.com/intent/tweet?text=" + data:post.title + "&url=" + data:post.url' rel='nofollow noopener' target='_blank' title='twitter'>
<svg viewBox='0 0 24 24'>
<path d='M17.71,9.33C18.19,8.93 18.75,8.45 19,7.92C18.59,8.13 18.1,8.26 17.56,8.33C18.06,7.97 18.47,7.5 18.68,6.86C18.16,7.14 17.63,7.38 16.97,7.5C15.42,5.63 11.71,7.15 12.37,9.95C9.76,9.79 8.17,8.61 6.85,7.16C6.1,8.38 6.75,10.23 7.64,10.74C7.18,10.71 6.83,10.57 6.5,10.41C6.54,11.95 7.39,12.69 8.58,13.09C8.22,13.16 7.82,13.18 7.44,13.12C7.81,14.19 8.58,14.86 9.9,15C9,15.76 7.34,16.29 6,16.08C7.15,16.81 8.46,17.39 10.28,17.31C14.69,17.11 17.64,13.95 17.71,9.33M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2Z'/>
</svg>
</a>
<a aria-label='pinterest' class='pinterest' expr:href='"https://pinterest.com/pin/create/button/?url=" + data:post.url + "&amp;media=" + data:blog.postImageUrl + "&amp;description=" + data:post.title' rel='nofollow noopener' target='_blank' title='pinterest'>
<svg viewBox='0 0 24 24'>
<path d='M9.04,21.54C10,21.83 10.97,22 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2A10,10 0 0,0 2,12C2,16.25 4.67,19.9 8.44,21.34C8.35,20.56 8.26,19.27 8.44,18.38L9.59,13.44C9.59,13.44 9.3,12.86 9.3,11.94C9.3,10.56 10.16,9.53 11.14,9.53C12,9.53 12.4,10.16 12.4,10.97C12.4,11.83 11.83,13.06 11.54,14.24C11.37,15.22 12.06,16.08 13.06,16.08C14.84,16.08 16.22,14.18 16.22,11.5C16.22,9.1 14.5,7.46 12.03,7.46C9.21,7.46 7.55,9.56 7.55,11.77C7.55,12.63 7.83,13.5 8.29,14.07C8.38,14.13 8.38,14.21 8.35,14.36L8.06,15.45C8.06,15.62 7.95,15.68 7.78,15.56C6.5,15 5.76,13.18 5.76,11.71C5.76,8.55 8,5.68 12.32,5.68C15.76,5.68 18.44,8.15 18.44,11.43C18.44,14.87 16.31,17.63 13.26,17.63C12.29,17.63 11.34,17.11 11,16.5L10.33,18.87C10.1,19.73 9.47,20.88 9.04,21.57V21.54Z'/>
</svg>
</a>
<a aria-label='whatsapp' class='whatsapp' expr:href='"https://api.whatsapp.com/send?phone=&text=" + data:post.title + "%20%2D%20" + data:post.url' rel='nofollow noopener' target='_blank' title='whatsapp'>
<svg viewBox='0 0 24 24'>
<path d='M16.75,13.96C17,14.09 17.16,14.16 17.21,14.26C17.27,14.37 17.25,14.87 17,15.44C16.8,16 15.76,16.54 15.3,16.56C14.84,16.58 14.83,16.92 12.34,15.83C9.85,14.74 8.35,12.08 8.23,11.91C8.11,11.74 7.27,10.53 7.31,9.3C7.36,8.08 8,7.5 8.26,7.26C8.5,7 8.77,6.97 8.94,7H9.41C9.56,7 9.77,6.94 9.96,7.45L10.65,9.32C10.71,9.45 10.75,9.6 10.66,9.76L10.39,10.17L10,10.59C9.88,10.71 9.74,10.84 9.88,11.09C10,11.35 10.5,12.18 11.2,12.87C12.11,13.75 12.91,14.04 13.15,14.17C13.39,14.31 13.54,14.29 13.69,14.13L14.5,13.19C14.69,12.94 14.85,13 15.08,13.08L16.75,13.96M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C10.03,22 8.2,21.43 6.65,20.45L2,22L3.55,17.35C2.57,15.8 2,13.97 2,12A10,10 0 0,1 12,2M12,4A8,8 0 0,0 4,12C4,13.72 4.54,15.31 5.46,16.61L4.5,19.5L7.39,18.54C8.69,19.46 10.28,20 12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4Z'/>
</svg>
</a>
</div>
</div> <!-- social sharing button end -->
</b:includable>
<b:includable id='relatedPost'>
<div id='ms-related-post'/>
<script>
var postLabels = [<b:if cond='data:post.labels'><b:loop values='data:post.labels' var='label'>"<data:label.name/>"<b:if cond='data:label.isLast != "true"'>, </b:if></b:loop></b:if>];
var relatedConfig = {
postUrl: "<data:post.url/>",
homePageUrl: "<data:blog.homepageUrl/>",
relatedTitle: "<div class='related-title'><h4><data:messages.youMayLikeThesePosts/></h4></div>",
};
</script> <!-- related posts end -->
</b:includable>
<b:includable id='relatedPostScript'>
<script>
//<![CDATA[
// related post js http://www.dte.web.id
function msRelatedPosts(e){var h={postUrl:"https://linkmagz.sugeng.id",homePageUrl:"https://linkmagz.sugeng.id",relatedTitle:"<h4>Artikel Terkait:</h4>",numRelatedPosts:e,thumbWidth:192,thumbHeight:108,noImage:"https://1.bp.blogspot.com/-aR5w9KXuWGU/XhSDNRAVuhI/AAAAAAAAHG8/dLxcaZxSgh0v85JG0mWRMQyEwqMgpL1_gCLcBGAsYHQ/w192-h108-c/no-image.jpg",imgBlank:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII=",relatedOuter:"ms-related-post"};for(var t in relatedConfig)"undefined"!=relatedConfig[t]&&(h[t]=relatedConfig[t]);function r(e){var t=document.createElement("script");t.src=e,document.getElementsByTagName("head")[0].appendChild(t)}function m(e){var t,a,l=e.length;if(0===l)return!1;for(;--l;)t=Math.floor(Math.random()*(l+1)),a=e[l],e[l]=e[t],e[t]=a;return e}if("object"==typeof postLabels&&0<postLabels.length)var n="/-/"+m(postLabels)[0];else n="";printRelated=function(e){var t,a,l,r=document.getElementById(h.relatedOuter),n=m(e.feed.entry);relatedList=h.relatedTitle+"<ul>";for(var s=0;s<n.length;s++)for(var i=0,d=n[s].link.length;i<d;i++)n[s].link[i].href==h.postUrl&&n.splice(s,1);if(1<n.length){for(var o=0;o<h.numRelatedPosts&&o<n.length;o++){a=n[o].title.$t,l="media$thumbnail"in n[o]?n[o].media$thumbnail.url.replace(/.*?:\/\//g,"//").replace(/\/s[0-9]+(\-c)?/,"/w"+h.thumbWidth+"-h"+h.thumbHeight+"-c"):h.noImage;var A=0;for(d=n[o].link.length;A<d;A++)t="alternate"==n[o].link[A].rel?n[o].link[A].href:"#";relatedList+='<li><a aria-label="related post" href="'+t+'"><img alt="'+a+'" class="lazyload related-thumb" src="'+h.imgBlank+'" data-src="'+l+'" width="'+h.thumbWidth+'" height="'+h.thumbHeight+'"></a><div><a title="'+a+'" href="'+t+'">'+a+"</a></div></li>"}r.innerHTML=relatedList+="</ul>"}},indexAcak=function(e){var t,a=h.numRelatedPosts+1;totalPosts=e.feed.openSearch$totalResults.$t-a;var l=(t=0<totalPosts?totalPosts:1,Math.floor(Math.random()*(t-1+1))+1);r(h.homePageUrl.replace(/\/$/,"")+"/feeds/posts/summary"+n+"?alt=json-in-script&orderby=updated&start-index="+l+"&max-results="+a+"&callback=printRelated")},r(h.homePageUrl.replace(/\/$/,"")+"/feeds/posts/summary"+n+"?alt=json-in-script&orderby=updated&max-results=0&callback=indexAcak")}function runRelated(){var e={relatedPosts:!0,jumlahRelatedPosts:4};"undefined"!=typeof linkMagzSetting&&(e=linkMagzSetting),1==e.relatedPosts&&msRelatedPosts(e.jumlahRelatedPosts)}runRelated();
"use strict";function fullwidthImg(){var t=document.querySelector(".post-body"),l=t.querySelector("img"),e=t.querySelector(".tr-caption");l&&l.classList.add("fullwidth"),e&&e.classList.add("fullwidth")}"undefined"==typeof linkMagzSetting&&(linkMagzSetting={fullwidthImage:!0}),1==linkMagzSetting.fullwidthImage&&fullwidthImg();
//]]>
</script>
</b:includable>
<b:includable id='allJavaScripts'>
<script>
//<![CDATA[
/*! smooth-scroll v16.1.2 | (c) 2020 Chris Ferdinandi | MIT License | http://github.com/cferdinandi/smooth-scroll */
!function(e,t){"function"==typeof define&&define.amd?define([],function(){return t(e)}):"object"==typeof exports?module.exports=t(e):e.SmoothScroll=t(e)}("undefined"!=typeof global?global:"undefined"!=typeof window?window:this,function(A){"use strict";function C(){var n={};return Array.prototype.forEach.call(arguments,function(e){for(var t in e){if(!e.hasOwnProperty(t))return;n[t]=e[t]}}),n}function r(e){"#"===e.charAt(0)&&(e=e.substr(1));for(var t,n=String(e),o=n.length,a=-1,r="",i=n.charCodeAt(0);++a<o;){if(0===(t=n.charCodeAt(a)))throw new InvalidCharacterError("Invalid character: the input contains U+0000.");r+=1<=t&&t<=31||127==t||0===a&&48<=t&&t<=57||1===a&&48<=t&&t<=57&&45===i?"\\"+t.toString(16)+" ":128<=t||45===t||95===t||48<=t&&t<=57||65<=t&&t<=90||97<=t&&t<=122?n.charAt(a):"\\"+n.charAt(a)}return"#"+r}function w(){return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight,document.body.offsetHeight,document.documentElement.offsetHeight,document.body.clientHeight,document.documentElement.clientHeight)}function L(e,t,n,o){if(t.emitEvents&&"function"==typeof A.CustomEvent){var a=new CustomEvent(e,{bubbles:!0,detail:{anchor:n,toggle:o}});document.dispatchEvent(a)}}var H={ignore:"[data-scroll-ignore]",header:null,topOnEmptyHash:!0,speed:500,speedAsDuration:!1,durationMax:null,durationMin:null,clip:!0,offset:0,easing:"easeInOutCubic",customEasing:null,updateURL:!0,popstate:!0,emitEvents:!0};return function(o,e){var b,a,O,I,M={cancelScroll:function(e){cancelAnimationFrame(I),I=null,e||L("scrollCancel",b)}};M.animateScroll=function(i,s,e){M.cancelScroll();var t,c=C(b||H,e||{}),u="[object Number]"===Object.prototype.toString.call(i),n=u||!i.tagName?null:i;if(u||n){var l=A.pageYOffset;c.header&&!O&&(O=document.querySelector(c.header));var o,a,d,r,f,m,h=(t=O)?parseInt(A.getComputedStyle(t).height,10)+t.offsetTop:0,p=u?i:function(e,t,n,o){var a=0;if(e.offsetParent)for(;a+=e.offsetTop,e=e.offsetParent;);return a=Math.max(a-t-n,0),o&&(a=Math.min(a,w()-A.innerHeight)),a}(n,h,parseInt("function"==typeof c.offset?c.offset(i,s):c.offset,10),c.clip),g=p-l,y=w(),S=0,v=(a=(o=c).speedAsDuration?o.speed:Math.abs(g/1e3*o.speed),o.durationMax&&a>o.durationMax?o.durationMax:o.durationMin&&a<o.durationMin?o.durationMin:parseInt(a,10)),E=function(e){var t,n;S+=e-(d=d||e),f=l+g*(t=r=1<(r=0===v?0:S/v)?1:r,"easeInQuad"===c.easing&&(n=t*t),"easeOutQuad"===c.easing&&(n=t*(2-t)),"easeInOutQuad"===c.easing&&(n=t<.5?2*t*t:(4-2*t)*t-1),"easeInCubic"===c.easing&&(n=t*t*t),"easeOutCubic"===c.easing&&(n=--t*t*t+1),"easeInOutCubic"===c.easing&&(n=t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1),"easeInQuart"===c.easing&&(n=t*t*t*t),"easeOutQuart"===c.easing&&(n=1- --t*t*t*t),"easeInOutQuart"===c.easing&&(n=t<.5?8*t*t*t*t:1-8*--t*t*t*t),"easeInQuint"===c.easing&&(n=t*t*t*t*t),"easeOutQuint"===c.easing&&(n=1+--t*t*t*t*t),"easeInOutQuint"===c.easing&&(n=t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t),c.customEasing&&(n=c.customEasing(t)),n||t),A.scrollTo(0,Math.floor(f)),function(e,t){var n,o,a,r=A.pageYOffset;if(e==t||r==t||(l<t&&A.innerHeight+r)>=y)return M.cancelScroll(!0),o=t,a=u,0===(n=i)&&document.body.focus(),a||(n.focus(),document.activeElement!==n&&(n.setAttribute("tabindex","-1"),n.focus(),n.style.outline="none"),A.scrollTo(0,o)),L("scrollStop",c,i,s),!(I=d=null)}(f,p)||(I=A.requestAnimationFrame(E),d=e)};0===A.pageYOffset&&A.scrollTo(0,0),m=i,u||history.pushState&&c.updateURL&&history.pushState({smoothScroll:JSON.stringify(c),anchor:m.id},document.title,m===document.documentElement?"#top":"#"+m.id),"matchMedia"in A&&A.matchMedia("(prefers-reduced-motion)").matches?A.scrollTo(0,Math.floor(p)):(L("scrollStart",c,i,s),M.cancelScroll(!0),A.requestAnimationFrame(E))}};function t(e){if(!e.defaultPrevented&&!(0!==e.button||e.metaKey||e.ctrlKey||e.shiftKey)&&"closest"in e.target&&(a=e.target.closest(o))&&"a"===a.tagName.toLowerCase()&&!e.target.closest(b.ignore)&&a.hostname===A.location.hostname&&a.pathname===A.location.pathname&&/#/.test(a.href)){var t,n;try{t=r(decodeURIComponent(a.hash))}catch(e){t=r(a.hash)}if("#"===t){if(!b.topOnEmptyHash)return;n=document.documentElement}else n=document.querySelector(t);(n=n||"#top"!==t?n:document.documentElement)&&(e.preventDefault(),function(){if(history.replaceState&&b.updateURL&&!history.state){var e=A.location.hash;e=e||"",history.replaceState({smoothScroll:JSON.stringify(b),anchor:e||A.pageYOffset},document.title,e||A.location.href)}}(),M.animateScroll(n,a))}}function n(e){if(null!==history.state&&history.state.smoothScroll&&history.state.smoothScroll===JSON.stringify(b)){var t=history.state.anchor;"string"==typeof t&&t&&!(t=document.querySelector(r(history.state.anchor)))||M.animateScroll(t,null,{updateURL:!1})}}return M.destroy=function(){b&&(document.removeEventListener("click",t,!1),A.removeEventListener("popstate",n,!1),M.cancelScroll(),I=O=a=b=null)},function(){if(!("querySelector"in document&&"addEventListener"in A&&"requestAnimationFrame"in A&&"closest"in A.Element.prototype))throw"Smooth Scroll: This browser does not support the required JavaScript methods and browser APIs.";M.destroy(),b=C(H,e||{}),O=b.header?document.querySelector(b.header):null,document.addEventListener("click",t,!1),b.updateURL&&b.popstate&&A.addEventListener("popstate",n,!1)}(),M}});
"use strict";var LMstickyMenu=function(){var t=document.querySelector("#header-outer").getBoundingClientRect().height,n=document.querySelector("#navmenu-wrap-sticky"),e=document.querySelector(".nav-copy"),i=document.querySelector(".nav-original"),c=document.querySelector(".sidebar-content-sticky");stickyClass="navsticky-show",e.innerHTML=i.innerHTML;window.addEventListener("resize",function(){t=document.querySelector("#header-outer").getBoundingClientRect().height}),window.addEventListener("scroll",function(){var e=Math.round(window.pageYOffset);t<=e?n.classList.add(stickyClass):n.classList.remove(stickyClass)}),null!=c&&(c.style.top="88px")};"undefined"==typeof linkMagzSetting&&(linkMagzSetting={menuSticky:!0}),1==linkMagzSetting.menuSticky&&LMstickyMenu();
"use strict";function LMmobileMenu(){var e=document.querySelector(".navmenu-content"),n=document.querySelector("#navmenu-sidebar-body"),t=document.querySelectorAll(".navmenu-button"),u=document.querySelector("#navmenu-overlay"),c=document.querySelector("#navmenu-sidebar-closebtn"),r=document.querySelector("#navmenu"),o="navmenu-activated";n.innerHTML=e.innerHTML;for(var a=0;a<t.length;a++)t[a].addEventListener("click",function(e){e.preventDefault,r.classList.add(o)});function l(e){e.preventDefault,r.classList.remove(o)}u.addEventListener("click",l),c.addEventListener("click",l)}LMmobileMenu();
"use strict";function LMsearchForm(){for(var t=document.getElementById("searchcontainer"),n=document.getElementById("search-terms"),e=document.querySelectorAll(".iconsearch-label"),c=0;c<e.length;c++)e[c].addEventListener("click",function(e){t.classList.toggle("opensearch"),t.classList.contains("opensearch")||(n.blur(),e.preventDefault()),e.stopPropagation()},!1);n.addEventListener("click",function(e){e.stopPropagation()},!1),document.addEventListener("click",function(e){t.classList.remove("opensearch"),n.blur(),e.stopPropagation()},!1),document.addEventListener("keydown",function(e){"Escape"==e.key&&(t.classList.remove("opensearch"),n.blur())})}LMsearchForm();
"use strict";function LMcheckCheckbox(){for(var e=document.querySelectorAll(".checkbox"),o=0;o<e.length;o++)"darkmode"===localStorage.getItem("mode")?e[o].checked=!0:e[o].checked=!1}function darkMode(){localStorage.setItem("mode","darkmode"===localStorage.getItem("mode")?"light":"darkmode"),"darkmode"===localStorage.getItem("mode")?document.querySelector("body").classList.add("darkmode"):document.querySelector("body").classList.remove("darkmode"),LMcheckCheckbox()}function darkModeHide(){for(var e=document.querySelectorAll(".darkmode-switch"),o=0;o<e.length;o++)e[o].parentNode.removeChild(e[o])}LMcheckCheckbox(),"undefined"==typeof linkMagzSetting&&(linkMagzSetting={tombolDarkmode:!0}),0==linkMagzSetting.tombolDarkmode&&darkModeHide();
"use strict";var LMScrollTop=function(){var i=document.querySelector("#goTop");window.addEventListener("scroll",function(){300<=window.pageYOffset?i.classList.add("is-visible"):i.classList.remove("is-visible")})};"undefined"==typeof linkMagzSetting&&(linkMagzSetting={scrollToTop:!0}),1==linkMagzSetting.scrollToTop&&LMScrollTop();
var scroll = new SmoothScroll('a[href*="#"]', {
speed: 600,
speedAsDuration: true,
easing: 'easeInOutCubic'
});
//]]>
<b:if cond='data:view.isHomepage'>
//<![CDATA[
/*! Simple AJAX infinite scroll by Taufik Nurrohman <http://latitudu.com> */
!function(){var E,j;"undefined"==typeof linkMagzSetting&&(linkMagzSetting={infiniteScrollNav:!0}),1==linkMagzSetting.infiniteScrollNav&&(E=window,j=document,E.InfiniteScroll=function(t){function d(t,e){return(e=e||j).querySelectorAll(t)}function r(t){return void 0!==t}function o(t){return"function"==typeof t}function f(t,e){if(r(i[t]))for(var n in i[t])i[t][n](e)}function n(){return l.innerHTML=u.text.loading,p=!0,v?(T.classList.add(u.state.loading),f("loading",[u]),void e(v,function(t,e){T.className=H+" "+u.state.load,(g=j.createElement("div")).innerHTML=t;var n=d("title",g),r=d(u.target.post,g),o=d(u.target.anchors+" "+u.target.anchor,g),i=d(u.target.post,h);if(n=n&&n[0]?n[0].innerHTML:"",r.length&&i.length){var a=i[i.length-1];j.title=n,a.insertAdjacentHTML("afterend",'<span class="fi" id="#fi:'+S+'"></span>'),g=j.createElement("div");for(var l=0,s=r.length;l<s;++l)g.appendChild(r[l]);a.insertAdjacentHTML("afterend",g.innerHTML),c(),v=!!o.length&&o[0].href,p=!1,S++,f("load",[u,t,e])}},function(t,e){T.classList.add(u.state.error),p=!1,c(1),f("error",[u,t,e])})):(T.classList.add(u.state.loaded),l.innerHTML=u.text.loaded,f("loaded",[u]))}function c(t){if(l.innerHTML="",a){g.innerHTML=u.text[t?"error":"load"];var e=g.firstChild;e.onclick=function(){return 2===u.type&&(a=!1),n(),!1},l.appendChild(e)}}var u={target:{posts:".posts",post:".post",anchors:".anchors",anchor:".anchor"},text:{load:"%s",loading:"%s",loaded:"%s",error:"%s"},state:{load:(e="infinite-scroll-state-")+"load",loading:e+"loading",loaded:e+"loaded",error:e+"error"}},i={load:[],loading:[],loaded:[],error:[]};(u=function t(e,n){for(var r in e=e||{},n)e[r]="object"==typeof n[r]?t(e[r],n[r]):n[r];return e}(u,t||{})).on=function(t,e,n){return r(t)?r(e)?void(r(n)?i[t][n]=e:i[t].push(e)):i[t]:i},u.off=function(t,e){r(e)?delete i[t][e]:i[t]=[]};var g=null,e=function(t,e,n){if(E.XMLHttpRequest){var r=new XMLHttpRequest;r.onreadystatechange=function(){if(4===r.readyState){if(200!==r.status)return void(n&&o(n)&&n(r.responseText,r));e&&o(e)&&e(r.responseText,r)}},r.open("GET",t),r.send()}},a=1!==u.type,p=!1,h=d(u.target.posts)[0],l=d(u.target.anchors)[0],v=d(u.target.anchor,l),s=j.body,T=j.documentElement,H=T.className||"",L=h.offsetTop+h.offsetHeight,M=E.innerHeight,m=0,y=null,S=1;if(v.length){v=v[0].href,h.insertAdjacentHTML("afterbegin",'<span class="fi" id="#fi:0"></span>'),g=j.createElement("div"),c();function x(){L=h.offsetTop+h.offsetHeight,M=E.innerHeight,m=s.scrollTop||T.scrollTop,p||m+M<L||n()}x(),0!==u.type&&E.addEventListener("scroll",function(){a||(y&&E.clearTimeout(y),y=E.setTimeout(x,500))},!1)}return u})}();
//]]>
var infinite_scroll = new InfiniteScroll({
type: 0,
target: {
posts: ".content",
post: ".post-outer",
anchors: ".blog-pager",
anchor: ".blog-pager-older-link"
},
text: {
load: "<a class="js-load" href="javascript:;"><data:messages.morePosts/></a>",
loading: "<span class="js-loading"><data:messages.loading/></span>",
loaded: "<span style="display:none" class="js-loaded">Habis.</span>",
error: "<a class="js-error" href="javascript:;">Error.</a>"
}
});
</b:if>
<b:if cond='data:view.isMultipleItems'>
//<![CDATA[
function customFeaturedPostSnippet(){var e=document.querySelector(".featured-info .featured-desc"),t=document.querySelector(".featured-info .js-featured-desc");null!==t&&(e.innerHTML=t.innerHTML.slice(4,-3))}function customPostSnippet(){for(var e,t,n=document.querySelectorAll(".post-outer"),o=0;o<n.length;o++)e=n[o].querySelector(".post-snippet"),null!==(t=n[o].querySelector(".js-post-snippet"))&&(e.innerHTML=t.innerHTML.slice(4,-3))}customFeaturedPostSnippet(),customPostSnippet(),"undefined"!=typeof infinite_scroll&&infinite_scroll.on("load",function(){customPostSnippet()});
//]]>
</b:if>
<b:if cond='data:view.isPost or data:view.isPage'>
//<![CDATA[
/* www.cssscript.com/generating-a-table-of-contents-with-pure-javascript-toc */
!function(e){"use strict";function p(e){if("string"!=typeof e)return 0;var t=e.match(/\d/g);return t?Math.min.apply(null,t):1}function o(e){var i,c,n,t,o,r,a=e.selector,l=e.scope,u=document.createElement("ol"),d=u,s=(i=e.overwrite,c=e.prefix,function(e,t,n){e.textContent;var o=c+"-"+n;t.textContent=e.textContent;var r=!i&&e.id||o;r=encodeURIComponent(r),e.id=r,t.href="#"+r});return n=a,t=l,o=[],r=document.querySelectorAll(t),Array.prototype.forEach.call(r,function(e){var t=e.querySelectorAll(n);o=o.concat(Array.prototype.slice.call(t))}),o.reduce(function(e,t,n){var o=p(t.tagName),r=h(d,o-e)||u,i=document.createElement("li"),c=document.createElement("a");return s(t,c,n),r.appendChild(i).appendChild(c),d=i,o},p(a)),u}function t(e){var t=(e=function(e,t){for(var n in t)t.hasOwnProperty(n)&&t[n]&&(e[n]=t[n]);return e}({selector:"h1, h2, h3, h4, h5, h6",scope:"body",overwrite:!1,prefix:"toc"},e)).selector;if("string"!=typeof t)throw new TypeError("selector must be a string");if(!t.match(/^(?:h[1-6],?\s*)*$/g))throw new TypeError("selector must contains only h1-6");var n=location.hash;return n&&setTimeout(function(){location.hash="",location.hash=n},0),o(e)}var h=function(e,t){return t<0?h(e.parentElement,t+1):0<t?function(e,t){for(;t--;){var n=document.createElement("ol");e.appendChild(n),e=n}return e}(e,t):e.parentElement};"function"==typeof define&&define.amd?define("toc",[],function(){return t}):e.initTOC=t}(window);var aside=document.getElementById("toc"),toc=initTOC({selector:"h2, h3",scope:".post-body"});function tocShowHide(){var e=document.querySelector(".toc"),t=document.createElement("button"),n=document.querySelector("#toc ol");e.appendChild(t),t.innerHTML="(show)",n.style.display="none",t.addEventListener("click",function(e){"none"==n.style.display?(n.style.display="",t.innerHTML="(hide)"):(n.style.display="none",t.innerHTML="(show)")})}function tocOption(){var e=document.querySelector(".toc");"undefined"==typeof linkMagzSetting&&(linkMagzSetting={judulTOC:"Daftar Isi",showHideTOC:!0}),e.innerHTML=linkMagzSetting.judulTOC,1==linkMagzSetting.showHideTOC&&tocShowHide()}null!=aside&&(aside.appendChild(toc),tocOption());
//]]>
</b:if>
var media_loaded = function (media) {
media.className += ' shown';
}
deferimg('img.lazyload', 300, 'lazied', media_loaded);
if (typeof infinite_scroll !== 'undefined') {
infinite_scroll.on('load', function() {
deferimg('img.lazyload', 300, 'lazied', media_loaded);
});
}
</script>
</b:includable>
<b:includable id='halamanProdukCSS'>
<style>
#content-wrap {
flex: 1 1 100%;
-webkit-box-flex: 1;
}
#wrapper #sidebar-wrap {
display: none;
visibility: hidden;
}
#content-wrap {
margin: 0 auto;
}
</style>
</b:includable>
<b:includable id='errorPage'>
<b:if cond='data:view.isError'>
<style>#content-wrap{flex:1 1 100%;max-width:100%}</style>
<div class='error-page'>
<h2>404</h2>
<p><data:messages.theresNothingHere/></p>
</div>
</b:if>
</b:includable>
<b:includable id='filterMessage'>
<b:if cond='data:view.isArchive or (data:view.isSearch and data:view.search.resultsMessageHtml)'>
<div class='post-filter-message'>
<div class='post-filter-description'>
<b:if cond='data:view.isArchive'>
<data:view.archive.rangeMessage/>
<b:elseif cond='data:view.isSearch and data:view.search.resultsMessageHtml'/>
<data:view.search.resultsMessageHtml/>
</b:if>
</div>
</div>
</b:if>
</b:includable>
<b:includable id='poststatusMessage'>
<b:if cond='data:view.isHomepage'>
<b:if cond='data:posts.empty'>
<div class='status-message status-message-danger' id='status-message' role='alert'>
<data:messages.theresNothingHere/>
</div>
</b:if>
<b:elseif cond='data:view.isSearch or data:view.isArchive'/>
<b:if cond='data:posts.empty'>
<div class='status-message status-message-danger' id='status-message' role='alert'>
<data:messages.noResultsFound/>
</div>
</b:if>
</b:if>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET HEADER -->
<b:defaultmarkup type='Header'>
<b:includable id='main' var='this'>
<b:include cond='data:imagePlacement in {"REPLACE","BEFORE_DESCRIPTION"}' name='image'/>
<b:include name='title'/>
<b:include cond='data:imagePlacement != "REPLACE"' name='description'/>
</b:includable>
<b:includable id='description'>
<p class='title-description'>
<data:this.description/>
</p>
</b:includable>
<b:includable id='image'>
<a expr:href='data:blog.homepageUrl' expr:title='data:title'><img class='lazyload blur-up' expr:alt='data:title' expr:title='data:title' expr:data-src='resizeImage(data:sourceUrl, 300)' width='300' height='60' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAABCAYAAAD9yd/wAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAPSURBVAiZY+zt7c1kwAIALtACEvr8z1AAAAAASUVORK5CYII='/></a>
</b:includable>
<b:includable id='title'>
<div class='blog-title-wrap'>
<b:class cond='data:this.imagePlacement in {"REPLACE","BEFORE_DESCRIPTION"}' name='hide-title'/>
<b:if cond='data:view.isSingleItem'>
<h2 class="blog-title">
<a expr:href='data:blog.homepageUrl' expr:title='data:title' expr:data-text='data:title'><data:title/></a>
</h2>
<b:else/>
<h1 class="blog-title">
<a expr:href='data:blog.homepageUrl' expr:title='data:title' expr:data-text='data:title'><data:title/></a>
</h1>
</b:if>
</div>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET HEADER END -->
<!-- WIDGET FEATURED POST -->
<b:defaultmarkup type='FeaturedPost'>
<b:includable id='main' var='this'>
<b:if cond='data:view.isHomepage'>
<div class='featured-outer'>
<b:include name='widget-title'/>
<div class='post-summary'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:postDisplay.showFeaturedImage'>
<div class='featured-img'>
<div class="featured-img-bg">
<b:class cond='data:post.featuredImage.isYoutube' name='is-video'/>
<b:if cond='data:post.featuredImage'>
<b:if cond='data:post.featuredImage.isYoutube'>
<a expr:href='data:post.link ?: data:post.url'>
<img expr:data-src='data:post.featuredImage.youtubeMaxResDefaultUrl.isResizable ? resizeImage(data:post.featuredImage.youtubeMaxResDefaultUrl, 400, "1:1") : data:post.featuredImage.youtubeMaxResDefaultUrl' class='image lazyload blur-up' width='400' height='400' expr:alt='data:post.title ? data:post.title : data:messages.image' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD2AAAA9gBbkdjNQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAANSURBVAiZY2BgYGAEAAAGAAKHf+MhAAAAAElFTkSuQmCC'/>
</a>
<b:else/>
<a expr:href='data:post.link ?: data:post.url'>
<img expr:data-src='data:post.featuredImage.isResizable ? resizeImage(data:post.featuredImage, 400, "1:1") : data:post.featuredImage' class='image lazyload blur-up' width='400' height='400' expr:alt='data:post.title ? data:post.title : data:messages.image' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD2AAAA9gBbkdjNQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAANSURBVAiZY2BgYGAEAAAGAAKHf+MhAAAAAElFTkSuQmCC'/>
</a>
</b:if>
<b:else/>
<a expr:href='data:post.url'><img class='image lazyload blur-up' width='400' height='400' data-src='//1.bp.blogspot.com/-aR5w9KXuWGU/XhSDNRAVuhI/AAAAAAAAHG8/dLxcaZxSgh0v85JG0mWRMQyEwqMgpL1_gCLcBGAsYHQ/w400-h400-n-k-no-nu/no-image.jpg' expr:alt='data:post.title' expr:title='data:post.title' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII='/></a>
</b:if>
<b:if cond='data:postDisplay.showTitle and data:postDisplay.showFeaturedImage'>
</b:if>
</div>
</div>
</b:if>
<div class='featured-info'>
<b:class cond='not data:postDisplay.showFeaturedImage' name='no-featured-img'/>
<b:if cond='data:postDisplay.showTitle'>
<h2>
<a expr:href='data:post.link ?: data:post.url'>
<b:eval expr='data:post.title ? data:post.title : data:messages.noTitle'/>
</a>
</h2>
</b:if>
<b:if cond='data:postDisplay.showSnippet'>
<b:if cond='data:post.labels any (label => label.name in ["Produk","Products","Jasa","Services"])'>
<p class='featured-desc' expr:id='"featured-desc-" + data:post.id'>
<b:eval expr='snippet(data:post.snippets.long, { length: 120 })'/>
</p>
<div class='js-featured-desc' expr:id='"js-featured-desc-" + data:post.id'><!--<b:eval expr='snippet(data:post.body, { length: 170, links: false, linebreaks: false })'></b:eval>--></div>
<b:else/>
<p class='featured-desc'>
<b:eval expr='snippet(data:post.snippets.long, { length: 120 })'/>
</p>
</b:if>
</b:if>
<p class='featured-more'><a expr:href='data:post.url'><data:messages.readMore/></a></p>
</div>
</b:loop>
</div>
</div>
</b:if>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET FEATURED POST END -->
<!-- WIDGET POPULAR POSTS -->
<b:defaultmarkup type='PopularPosts'>
<b:includable id='main' var='this'>
<div>
<b:class cond='data:postDisplay.showFeaturedImage' name='popular-post-widget-title'/>
<b:class cond='not data:postDisplay.showFeaturedImage' name='normalwidget-title'/>
<b:include name='widget-title'/>
</div>
<div class='widget-content'>
<div class='popular-posts-wrap'>
<!-- kecualikan postingan dengan label produk pada widget popular posts -->
<b:with value='data:view.isMultipleItems or data:view.isSingleItem ? data:posts filter (p => p.labels none (l => l.name in ["Produk","Products","Jasa","Services"])) : data:posts' var='posts'>
<b:loop values='data:posts' var='post' index='i'>
<div>
<b:class cond='data:i == 0' name='the-most-popular'/>
<b:class cond='data:i != 0' name='popular-post-content'/>
<!-- Featured image only first post -->
<b:if cond='data:i == 0'>
<b:if cond='data:postDisplay.showFeaturedImage'>
<div class='popular-post-thumbnail'>
<b:if cond='data:post.featuredImage'>
<b:if cond='data:post.featuredImage.isYoutube'>
<a expr:href='data:post.link ?: data:post.url'>
<img expr:data-src='data:post.featuredImage.youtubeMaxResDefaultUrl.isResizable ? resizeImage(data:post.featuredImage.youtubeMaxResDefaultUrl, 300, "16:9") : data:post.featuredImage.youtubeMaxResDefaultUrl' class='lazyload blur-up' width='300' height='169' expr:alt='data:post.title ? data:post.title : data:messages.image' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII='/>
</a>
<b:else/>
<a expr:href='data:post.link ?: data:post.url'>
<img expr:data-src='data:post.featuredImage.isResizable ? resizeImage(data:post.featuredImage, 300, "16:9") : data:post.featuredImage' class='lazyload blur-up' width='300' height='169' expr:alt='data:post.title ? data:post.title : data:messages.image' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAD6AAAA+gBtXtSawAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAYSURBVCiRY0xISOBgoAAwUaJ51IBhYwAAuQABOsYCprwAAAAASUVORK5CYII='/>
</a>
</b:if>
<b:else/><!-- fallback -->
<a expr:href='data:post.link ?: data:post.url'>
<img expr:data-src='resizeImage("https://lh3.googleusercontent.com/kBzrgG0CUVwpWe8oT8iPxL8HhKQdNVj1AX5BR2Y0Q_zoSpxHGPRtcysgTJsb8ZEsYmbWoNm-nEOyjBc03w=w1920-h1080-rw-no", 300, "16:9")' class='lazyload' width='300' height='169' expr:alt='data:messages.image'/>
</a>
</b:if>
</div>
</b:if>
</b:if>
<!-- Content -->
<div class='popular-post-info'>
<b:class cond='data:i == 0 and data:postDisplay.showFeaturedImage' name='info-has-thumbnail'/>
<h4 class='popular-post-title'>
<a expr:href='data:post.link ?: data:post.url'>
<b:eval expr='data:post.title ? data:post.title : data:messages.noTitle'/>
</a>
</h4>
<b:if cond='data:postDisplay.showSnippet'>
<div class='popular-post-snippet'>
<b:eval expr='snippet(data:post.snippets.long, { length: 60 })'/>
</div>
</b:if>
</div>
</div>
</b:loop>
</b:with>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET POPULAR POSTS END -->
<!-- WIDGET HTML -->
<b:defaultmarkup type='HTML'>
<b:includable id='main'>
<b:if cond='data:content'>
<b:if cond='data:title'>
<div class='normalwidget-title html'>
<b:include name='widget-title'/>
</div>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
</b:if>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET HTML END -->
<!-- WIDGET STATS -->
<b:defaultmarkup type='Stats'>
<b:includable id='main'>
<b:if cond='data:title'>
<div class='normalwidget-title'>
<b:include name='widget-title'/>
</div>
</b:if>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<!-- Content is going to be visible when data will be fetched from server. -->
<div expr:id='data:widget.instanceId + "_content"' style='display: none;'>
<!-- Counter and image will be injected later via AJAX call. -->
<b:if cond='data:showSparkline'>
<script src='https://www.gstatic.com/charts/loader.js'/>
<span expr:id='data:widget.instanceId + "_sparklinespan"' style='display:inline-block; width:75px; height:30px'/>
</b:if>
<span expr:class='"counter-wrapper " + (data:showGraphicalCounter ? "graph-counter-wrapper" : "text-counter-wrapper")' expr:id='data:widget.instanceId + "_totalCount"'>
</span>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<!-- WIDGET STATS END -->
<!-- WIDGET BLOG ARCHIVE -->
<b:defaultmarkup type='BlogArchive'>
<b:includable id='main' var='this'>
<b:if cond='data:title'>
<div class='normalwidget-title'>
<b:include name='widget-title'/>
</div>
</b:if>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<div id='ArchiveList'>
<div expr:id='data:widget.instanceId + "_ArchiveList"'>
<b:include cond='data:this.style == "HIERARCHY"' name='hierarchy'/>
<b:include cond='data:this.style in {"FLAT", "MENU"}' name='flat'/>
</div>
</div>
</div>
</b:includable>
<b:includable id='flat'>
<ul class='flat'>
<b:loop values='data:data' var='i'>
<li class='archivedate'>
<a expr:href='data:i.url'>
<data:i.name/> <span class='post-count'>(<data:i.post-count/>)</span>
</a>
</li>
</b:loop>
</ul>
</b:includable>
<b:includable id='hierarchy'>
<b:include data='data' name='interval'/>
</b:includable>
<b:includable id='interval' var='intervals'>
<ul class='hierarchy'>
<b:loop values='data:intervals' var='interval'>
<li class='archivedate'>
<div class='hierarchy-title'>
<a class='post-count-link' expr:href='data:interval.url'>
<data:interval.name/>
<span class='post-count'>(<data:interval.post-count/>)</span>
</a>
</div>
<div class='hierarchy-content'>
<b:include cond='data:interval.data' data='interval.data' name='interval'/>
<b:include cond='data:interval.posts' data='interval.posts' name='posts'/>
</div>
</li>
</b:loop>
</ul>
</b:includable>
<b:includable id='posts' var='posts'>
<ul class='posts hierarchy'>
<b:loop values='data:posts' var='post'>
<li>