-
Notifications
You must be signed in to change notification settings - Fork 21
/
Fletro Blogger Template.xml
2474 lines (2400 loc) · 282 KB
/
Fletro Blogger Template.xml
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>
<!--<head/>-->
<head>
<!-- [ Meta Tag SEO ] -->
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='blogger' name='generator'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<link href='http://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl' rel='openid.delegate'/>
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found - <data:blog.title/></title>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<meta content='noindex' name='robots'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.isMobile'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<script type='application/ld+json'>{ "@context": "http://schema.org", "@type": "WebSite", "url": "<data:blog.homepageUrl/>", "potentialAction": { "@type": "SearchAction", "target": "<data:blog.homepageUrl/>?q={search_term}", "query-input": "required name=search_term" } }</script>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<meta expr:content='data:blog.pageName + ", " + data:blog.pageTitle + ", " + data:blog.title' name='keywords'/>
</b:if></b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='DESKRIPSI-BLOG' name='keywords'/></b:if>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<link expr:href='"http://www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.postImageThumbnailUrl'>
<link expr:href='data:blog.postImageThumbnailUrl' rel='image_src'/>
</b:if></b:if>
<link expr:href='data:blog.url' hreflang='x-default' rel='alternate'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<meta content='KODE-VALIDASI-GOOGLE-WEBMASTER' name='google-site-verification'/>
<meta content='KODE-VALIDASI-BING-WEBMASTER' name='msvalidate.01'/>
<meta content='Indonesia' name='geo.placename'/>
<meta content='NAMA-ADMIN' name='Author'/>
<meta content='general' name='rating'/>
<meta content='id' name='geo.country'/>
<!-- [ Social Media Meta Tag ] -->
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.title' property='og:title'/>
<meta content='website' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='"Silakan kunjungi " + data:blog.pageTitle + " Untuk membaca postingan menarik."' property='og:description'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postThumbnailUrl' property='og:image'/>
<b:else/>
<meta content='https://1.bp.blogspot.com/-aKZzSAygVKk/VYPkX_nAwrI/AAAAAAAACeo/cgQTs8nR5Rg/s1600/Arlina%2BLogo.png' property='og:image'/>
</b:if>
</b:if>
<meta content='https://www.facebook.com/PROFIL-FACEBOOK' property='article:author'/>
<meta content='https://www.facebook.com/FAN-PAGE-FACEBOOK' property='article:publisher'/>
<meta content='KODE-APLIKASI-FACEBOOK' property='fb:app_id'/>
<meta content='KODE-ADMIN-FACEBOOK' property='fb:admins'/>
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='id_ID' property='og:locale:alternate'/>
<meta content='summary' name='twitter:card'/>
<meta expr:content='data:blog.pageTitle' name='twitter:title'/>
<meta content='USER-TWITTER' name='twitter:site'/>
<meta content='USER-TWITTER' name='twitter:creator'/>
<meta content='summary_large_image' name='twitter:card'/>
<style type="text/css"><!-- /*<b:skin><![CDATA[
#wrapper{width:1024px;display:block;background:transparent;}
#header,#outer,#footer{width:100%;display:block;position: relative;margin: auto;}
#header{background:linear-gradient(-50deg,rgba(242,193,78,.95),rgba(247,129,84,.95));}
#footer{background:linear-gradient(-50deg,rgba(242,193,78,.95),rgba(247,129,84,.95));}
#header-menu{width:100%;display:block;padding:0;}
#blogbar{width:65%;display:inline-block;}
#sidebar{width:35%;display:inline-block;float:right}
#footer-widget{width:100%}
.share-container{height:initial;position:relative}
.setting-container{display:none}
<Group description="Komentar Baru Blogger (Contempo, Soho, Emporio, Notable)">
<Variable name="body.background" description="Body Background" type="background" color="#dddfe2" default="#dddfe2 none repeat scroll top left" value="#dddfe2 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal 400 14px Roboto, Arial, sans-serif" value="normal 400 14px Roboto, Arial, sans-serif"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="body.text.font" description="1" type="font" default="normal 400 14px Arial,sans-serif" value="normal 400 14px Arial,sans-serif"/>
<Variable name="posts.background.color" description="2" type="color" default="#fff" value="#ffffff"/>
<Variable name="body.link.color" description="3" type="color" default="#ea6d23" value="#ea6d23"/>
<Variable name="body.link.visited.color" description="4" type="color" default="#ea6d23" value="#ea6d23"/>
<Variable name="body.link.hover.color" description="5" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="blog.title.font" description="6" type="font" default="normal 400 14px Roboto,Arial,sans-serif" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="blog.title.color" description="7" type="color" default="#fff" value="#ffffff"/>
<Variable name="header.icons.color" description="8" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="9" type="font" default="normal 400 14px Roboto,Arial,sans-serif" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="tabs.color" description="10" type="color" default="#ddd" value="#dddddd"/>
<Variable name="tabs.selected.color" description="11" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="13" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="tabs.overflow.selected.color" description="14" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="posts.title.color" description="15" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="posts.title.font" description="16" type="font" default="normal 400 14px Roboto,Arial,sans-serif" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="posts.text.font" description="17" type="font" default="normal 400 14px Roboto,Arial,sans-serif" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="posts.text.color" description="18" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="posts.icons.color" description="19" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="labels.background.color" description="20" type="color" default="#ea6d23" value="#ea6d23"/>
</Group>*/]]></b:skin>
<style>
/*
Blogger Template Style
Name : Fletro
Version : 4.0 (Februari 2019)
Clonner : Me
*/
/* Font */
@font-face {font-family:'EB Garamond';font-display:swap;font-style:normal;font-weight:400;src:local('EB Garamond Regular'),local('EBGaramond-Regular'),url(https://fonts.gstatic.com/s/ebgaramond/v9/SlGUmQSNjdsmc35JDF1K5GR1SDk.woff2) format('woff2'),url(https://fonts.gstatic.com/s/ebgaramond/v9/SlGUmQSNjdsmc35JDF1K5GR1SD8.woff) format('woff')}
/* Main Elemen */
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
html{scroll-behavior:smooth;}
body{vertical-align:baseline;outline:0;margin:0;padding:0!important;width:100%;font-family:'Segoe UI',sans-serif;color:rgba(0,0,0,.7);position:relative;overflow-x:hidden!important;font-size:16px;scroll-behavior:smooth;}
a{-webkit-transition:all .3s ease;transition:all .3s ease;color:#ea6d23;text-decoration:none}
a:active,a:hover{color:#292f3d}
h1,h2,h3,h4,h5,h6{margin:0 0 0.6em;font-weight:600}
h1{font-size:1.8rem}
h2{font-size:1.6rem}
h3{font-size:1.4rem}
h4{font-size:1.2rem}
h5{font-size:1rem}
h6{font-size:0.9rem}
ul{list-style:none}
.clear{width:100%;display:block;margin:0;padding:0;float:none;clear:both;}
table{border-spacing:0}
iframe{width:100%;border:0!important}
input,button,select,textarea{font:inherit;font-size:100%;color:inherit;line-height:normal;vertical-align:baseline}
/* Main Container */
#wrapper{width:100%;margin:0 auto;background:#fff;overflow:hidden}
#header{width:100%;position:fixed;top:0;left:0;right:0;background:linear-gradient(-50deg,rgba(242,193,78,.95),rgba(247,129,84,.95));box-shadow:0 4px 12px 0 rgba(0,0,0,.1);-webkit-transition: all .3s ease;transition: all .3s ease;z-index:50}
#outer{width:100%;position:relative;left:0;padding:0 0 35px;margin:0 auto;z-index:3;-webkit-transition: all .3s ease .2s;transition: all .3s ease .2s;}
#sidebar{}
#footer{position:relative;background:linear-gradient(-50deg,rgba(242,193,78,.95),rgba(247,129,84,.95));z-index:2}
.main-container{margin:0 auto;width:90%;max-width:1080px}
/* Header */
#header-container{height:60px;position:relative;}
#header-widget,#header-widget .widget{height:100%;display:inline-block;position:relative}
#header-inner{display:table;height:100%;min-height:60px}
#header-inner h1,#header-inner h2{display:table-cell;vertical-align:middle;font-size:30px;font-family:'EB Garamond',serif;font-weight:400}
#header-inner a{display:inline-block;position:relative;margin-right:5px;color:#fff}
#header-inner img{max-height:35px!important}
#header-inner .header-description{display:none}
/* Header Scroll Effect */
#header[style="top: -60px;"],#header[style="top: -60px;"] #Search-container{top:-65px}
#header[style="top: -60px;"] + #header-menu + #outer + #share-container + #footer + #backtop,#header[style="top: -60px;"] + #outer + #share-container + #footer + #backtop,#header[style="top: -60px;"] + #header-menu + #outer + #share-container + .share-thisPost + #footer + #backtop,#header[style="top: -60px;"] + #header-menu + #outer + #share-container + .share-thisPost{bottom:20px}
#header[style="top: -60px;"] + #header-menu + #outer + #share-container.active + .share-thisPost{bottom:20px}
/* Header Search */
#Search-container{width:100%;height:60px;position:fixed;top:0;left:0;background:#fff;z-index:-1;-webkit-transition:all .5s ease-in-out .2s;transition:all .5s ease-in-out .2s;opacity:0}
#search-form{display:table;position:relative}
#search-form button{cursor:pointer;position:absolute;top:13.5px;right:22.5px;display:table-cell;vertical-align:middle;height:35px;padding:0;border:0;outline:0;background:transparent;z-index:3;opacity:0;visibility:hidden;-webkit-transition:all .2s ease-in-out .2s;transition:all .2s ease-in-out .2s;}
#search-form button svg{display:inline-block;width:22.5px;height:22.5px;fill:rgba(0,0,0,.7);text-align:right;}
#search-form input[type=text]{width:100%;height:60px;display:block;position:relative;padding:15px 0;margin:0;background:transparent;z-index:3;outline:0;border:0;border-radius:50px;color:rgba(0,0,0,.7);font-size:14px;font-weight:600}
#search-form .full-close{top:60px;background:rgba(0,0,0,.35)}
/* Search Active */
#header.show[style="top: -60px;"],#header.active[style="top: -60px;"],#header.show[style="top: -60px;"] #Search-container{top:0!important}
#header.show #Search-container{z-index:3;opacity:1}
#header.show button,#header.show #search-form .full-close{opacity:1;visibility:visible}
#header.show button{right:0;top:15px}
#header.show .header-nav .navSearch{opacity:0;right:-22.5px;-webkit-transition:all .2s ease-in-out .2s;transition:all .2s ease-in-out .2s;}
/* Header Nav */ .header-nav{height:60px;-webkit-transition:all .1s ease;transition:all .1s ease;display:none;position:absolute;top:0;padding:15px 0;z-index:2}
.header-nav.right{right:0;display:table;z-index:0}
.header-nav.left{left:0}
.header-nav .navSearch{right:0;-webkit-transition:all .2s ease-in-out .2s;transition:all .2s ease-in-out .2s;}
.header-nav label{position:relative;cursor:pointer;vertical-align:middle;display:table-cell;width:22.5px;-webkit-transition:all .5s ease;transition:all .5s ease;color:#fff;fill:#fff;text-align:right}
.header-nav label:hover{color:rgba(0,0,0,.8);fill:rgba(0,0,0,.8)}
.header-nav label.navHam i{background-color:#fff;display:block;width:100%;height:2px;margin:4px 0;-webkit-transition:all .5s ease;transition:all .5s ease;}
.header-nav label.navHam i:nth-child(2){width:60%;margin:0}
.header-nav label.navHam i:nth-child(3){width:80%}
.header-nav label svg{width:22.5px;height:22.5px}
/* Input Effect */
.canvas-menu,.canvas-share,.widget-slide,.set-menu{display:none}
.full-close{display:block;position:fixed;top:0;left:0;width:100%;height:100%;visibility:hidden;opacity:0;z-index:2;-webkit-transition:all .2s ease-in-out .2s;transition:all .2s ease-in-out .2s;}
/* Menu Container */
.menu-container{display:block;position:absolute;top:0;right:40px;height:100%;-webkit-transition:all .2s ease;transition:all .2s ease;z-index:1;}
.menu-container .widget{height:100%}
.menu-container .full-close{background:rgba(0,0,0,.35)}
.menu-container ul{list-style:none;margin:0;padding:0 15px 0 0;width:100%;height:100%;display:table;font-family:'Segoe UI',sans-serif;font-size:14px;position:relative;}
.menu-container ul li{display:table-cell;vertical-align:middle;position:relative;padding:0;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out;margin:0;}
.menu-container ul li:nth-child(2){-webkit-transition:all .7s ease-in-out;transition:all .7s ease-in-out}
.menu-container ul li:nth-child(3){-webkit-transition:all .8s ease-in-out;transition:all .8s ease-in-out}
.menu-container ul li:nth-child(4){-webkit-transition:all .9s ease-in-out;transition:all .9s ease-in-out}
.menu-container ul li:nth-child(5){-webkit-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out}
.menu-container ul li:nth-child(6){-webkit-transition:all 1.1s ease-in-out;transition:all 1.1s ease-in-out}
.menu-container ul li:nth-child(7){-webkit-transition:all 1.2s ease-in-out;transition:all 1.2s ease-in-out}
.menu-container ul li:nth-child(8){-webkit-transition:all 1.3s ease-in-out;transition:all 1.3s ease-in-out}
.menu-container ul li:nth-child(9){-webkit-transition:all 1.4s ease-in-out;transition:all 1.4s ease-in-out}
.menu-container ul li:hover{background:rgba(64,64,64,0.1)}
.menu-container ul li:hover label .icon:before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
.menu-container ul li a,.menu-container ul li label{color:#fff;display:inline-block;padding:10px 15px;font-weight:600}
.menu-container ul li a:hover,.menu-container ul li label:hover{color:#414141;}
.menu-container ul li label .icon:before{width:15px;height:15px;top:3px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
/* Menu Container (Dropdown) */
.menu-container ul ul{width:initial;height:initial;display:block;position:absolute;top:50px;padding:0;background:rgba(248,248,248,.98);font-size:13px;font-weight:400;box-shadow:0 2px 10px 0 rgba(72,73,121,0.25);border-radius:0 0 5px 5px;-webkit-transition:all 0.2s ease-in-out .1s;transition:all 0.2s ease-in-out .1s;opacity:0;visibility:hidden;overflow:hidden}
.menu-container li li{display:block;}
.menu-container li li a{color:rgba(0,0,0,.5);font-weight:400;white-space:nowrap}
.menu-container li:hover ul{top:60px;opacity:1;visibility:visible}
/* Header Menu */
#header-menu{display:block;position:relative;padding:65px 0 0;background:#f4f4f4;overflow:hidden;z-index:2;top:0}
.header-service{display:block;white-space:nowrap;padding:0;font-size:14px;list-style:none}
.header-service li{display:inline-block;vertical-align:top}
.header-service li a{color:#414141;display:inline-block;position:relative;margin-right:20px;padding:12px 0;border-bottom:2px solid transparent}
.header-service li a:hover{color:rgba(255,138,0,.98);border-color:rgba(255,138,0,.98)}
/* Setting Menu */
.setting-container{display:inline-block;position:absolute;top:30px;right:0;padding:10px 0 0;background:rgba(255,255,255,.98);color:rgba(0,0,0,.7);font-size:13px;border-radius:5px;box-shadow:0 2px 10px 0 rgba(72,73,121,0.25);z-index:10;-webkit-transition:all .3s ease;transition:all .3s ease;opacity:0;visibility:hidden;}
.setting-container .setting{display:block;position:relative;padding:5px 15px;color:rgba(0,0,0,.5);z-index:3}
.setting-container .full-close{z-index:2}
.setting-container ul{position:relative;margin:0;padding:0;z-index:3}
.setting-container li{padding:0;display:block;position:relative}
.setting-container li:last-child label{padding-bottom:15px}
.setting-container li label{display:table;width:220px;padding:10px 15px;-webkit-transition:all .3s ease;transition:all .3s ease;cursor:pointer;}
.setting-container li label:hover{background:#fafafa;}
.setting-container li input,.menu-container ul li input{display:none}
.setting-container li label svg{display:table-cell;vertical-align:middle;font-size:20px;width:25px;height:20px;padding-right:5px;fill:rgba(0,0,0,.6)}
.setting-container li label span{display:table-cell;vertical-align:middle;width:100%}
.setting-container li label .toggle-switch{display:inline-block;position:absolute;top:17px;right:15px;width:30px;height:10px;border-radius:5px;background:#ddd;-webkit-transition:all .4s ease;transition:all .4s ease;}
.setting-container li label .toggle-switch:before{content:'';display:block;position:absolute;top:-3.5px;width:17px;height:17px;border-radius:50%;background:#ebeced;-webkit-transition:all .4s ease;transition:all .4s ease;}
/* Setting Menu Active */
.set-menu:checked + .canvas-menu + #wrapper .setting-container,.set-menu:checked + .canvas-menu + #wrapper .setting-container .full-close{opacity:1;visibility:visible}
.set-menu:checked + .canvas-menu + #wrapper .setting-container{top:15px}
.set-menu:checked + .canvas-menu + #wrapper #header[style="top: -60px;"]{top:0!important}
.setting-container li input:checked + label .toggle-switch:before{background:#f78154;margin-left:13px}
/*Landing Page */
#landing-top{margin-bottom:0px}
.landing-page{width:90%;max-width:1080px;margin:0 auto;padding:20px 0 20px}
/* Blogbar Article */
#blogbar{width:calc(100% - 300px);display:inline-block;position:relative;padding:0 30px 0 0}
/* Post */
.post{display:table;position:relative;width:100%;margin:0 0 25px;padding:0 0 25px;border-bottom:1px solid rgba(0,0,0,.05)}
.post-image{width:230px;max-width:230px;display:table-cell;vertical-align:top;border-radius:3px;overflow:hidden;}
.post-image a{min-height:120px;max-height:150px;display:block;border-radius:3px;background:#f1f1f0;font-size:10px;text-align:center;color:transparent;overflow:hidden}
.post-image img{display:block;max-height:150px;}
.post-content{display:table-cell;vertical-align:top;font-size:14px;padding-left:25px}
.post-title{display:block;margin:0 0 15px;}
.post-title h2,.post-title h3{margin:0;font-size:18px;font-weight:600}
.post-title a{color:#414141}
.post-title a:hover{color:rgba(234,74,56,.98)}
.post-snippet,.post-content p{margin:0;color:rgba(0,0,0,.6);font-family:Lato,sans-serif;line-height:20px}
.post-labels{margin:12px 0 0;font-size:13px;position:relative;z-index:2}
.post-labels a{color:rgba(0,0,0,.84)}
.post-labels a:hover{text-decoration:underline}
.post-date{margin-top:5px;font-size:11px;color:rgba(0,0,0,.6)}
.post-timestamp{display:inline-block;margin-right:5px}
.post-timestamp:after{content:'\00b7';display:inline-block;margin-left:5px}
.comments-bubble{color:#414141}
.comments-bubble:hover{text-decoration:underline}
/* Post Unggulan */
.post-summary{padding:0 25px 0 0;background:rgba(255,255,255,.98);border:0;border-radius:5px;box-shadow:0 1px 7px 0 rgba(72,73,121,0.15)}
.post-summary:after{content:'';display:block;width:140px;height:120px;background:rgba(0,0,0,.025);position:absolute;right:0;bottom:0;border-radius:120px 0 5px 0;}
.post-summary .post-image{border-radius:5px 0 0 5px}
.post-summary .post-image a{max-height:140px;border-radius:5px 0 0 5px}
.post-summary .post-image img{max-width:initial;max-height:140px}
.post-summary .post-content{position:relative;vertical-align:middle;z-index:2}
/* Post Navigation */
.blog-navigation{text-align:center}
.blog-navigation span,.blog-navigation a{height:33px;display:inline-block;padding:8px 10px;font-size:13px;margin:0 3px 5px;border-radius:3px;background:rgba(0,0,0,.08);cursor:pointer;vertical-align:middle;}
.blog-navigation .current,.blog-navigation a{width:35px}
.blog-navigation .pages{font-size:12px}
.blog-navigation .current{background: rgba(0,0,0,.15)}
.blog-navigation a{color:#ea6d23}
.blog-navigation a:hover{color:rgba(0,0,0,.4);background:rgba(0,0,0,.1)}
.blog-navigation .next-post, .blog-navigation .prev-post{padding:5px 7.5px;}
.blog-navigation .next-post .icon::before{transform:rotate(-90deg)}
.blog-navigation .prev-post .icon::before{transform:rotate(90deg)}
.blog-pager{margin:0;padding:0}
.blog-pager li.prev{display:inline-block;float:right}
.blog-pager a{display:inline-block;padding:8px 35px 8px 15px;border:1px solid rgba(0,0,0,.4);border-radius:50px;font-size:14px;position:relative;color:rgba(0,0,0,.6);fill:rgba(0,0,0,.6)}
.blog-pager a:hover{fill:rgba(234,74,56,.98);color:rgba(234,74,56,.98);border-color:rgba(234,74,56,.98)}
.blog-pager a svg{width:25px;position:absolute;right:8px;top:5px}
.blog-pager li.next{display:inline-block}
.blog-pager li.next a{padding:8px 15px 8px 35px}
.blog-pager li.next a svg{left:8px;right:initial}
.blog-pager li:last-child{width:100%;float:none}
/* Post Ads */
.post-topAds,.post-midAds,.post-botAds{padding:20px 0}
.post-topAds{padding:20px 0 0}
/* Post Heading and Entry */
.post .post-entry{line-height:25px}
.post-entry h2,.post-entry h3,.post-entry h4,.post-entry h5,.post-entry h6{font-family:'EB Garamond',serif;;font-weight:400;margin:0 0 25px;line-height:normal}
.post-entry h3{color:#000}
/* Post Blockquote */
.post blockquote{padding:65px 15px 40px;margin:0;font-family:'EB Garamond',serif;text-align:center;position:relative;font-size:20px;line-height:normal;color:rgba(0,0,0,.6)}
.post blockquote:before{content:'\201D';font-size:80px;position:absolute;top:8px;left:0;right:0;z-index:-1}
.post blockquote i{font-style:normal!important}
/* Post List */
.post-entry ul,.post-entry ol{list-style:disc;margin:10px 0 0;padding-left:24px}
.post-entry ol{list-style:decimal}
.post-entry li{padding-left:10px}
/* Post Image */
.post-entry img{display:block;max-width:100%} .post .separator{text-align:center}
/* Post Button */
.post .button{display:inline-block;margin:15px 15px 0 0;padding:6px 20px 6px 15px;border:1px solid rgba(0,0,0,.5);font-size:13px;color:rgba(0,0,0,.7);border-radius:30px;cursor:pointer;}
.post .button:hover{background-color:#f78154;border-color:#f78154;color:#fff}
.post .button i{display:table-cell;vertical-align:middle;position:relative;padding-right:10px;font-size:20px;color:rgba(0,0,0,.4);-webkit-transition: all 0.3s ease;transition: all 0.3s ease}
.post .button span{display:table-cell;vertical-align:middle;max-width:280px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
/* Sidebar and Footer Widget */
#sidebar{width:300px;display:inline-block;float:right;padding:0}
.widgetbar .widget{display:block;margin:0;font-size:14px;-webkit-transition: all .3s ease;transition: all .3s ease;}
.widgetbar .widget ul{margin:0;padding:0;list-style:disc}
.widgetbar h2, .FeaturedPost h2,.footer-widget h2{position:relative;display:block;padding:0 0 12px;margin:0 0 25px;font-size:16px;font-weight:400;border-bottom:1px solid rgba(0,0,0,.15)}
.widgetbar h2:before, .FeaturedPost h2:before,.footer-widget h2:before{content:'';position:absolute;left:0;bottom:-1px;background:#ff8a00;height:1px;width:50px;-webkit-transition:all .5s ease;transition:all .5s ease}
.widgetbar .widget-content{margin:0 0 35px}
/* Widget Post Unggulan */
.FeaturedPost{margin:0 0 25px;border-bottom:1px solid rgba(0,0,0,.05)}
/* Widget Profile */
.widget.Profile div{position:relative;padding:15px;background:rgba(255,255,255,.98);border-radius:5px;box-shadow:0 1px 8px 0 rgba(72,73,121,0.15);overflow:hidden}
.widget.Profile div:after{content:'';display:block;position:absolute;bottom:0;right:0;clear:both;width:110px;height:110px;background:rgba(0,0,0,.015);border-radius:110px 0 5px 0;}
.widget.Profile div a{display:inline-block;position:relative;float:right;margin-left:8px;z-index:2}
.widget.Profile div img{display:block;border-radius:50%}
.widget.Profile div .profile-image{width:80px;height:80px;border-radius:50%;background:rgba(0,0,0,.05)}
.widget.Profile div .profile-datablock{margin:0 0 10px}
.widget.Profile div .profile-data a{display:inline-block;float:none;margin:0 0 5px;font-weight:600}
.widget.Profile div .profile-textblock{margin:0;color:rgba(0,0,0,.6);font-size:11px}
.widget.Profile div a.profile-link{display:block;float:none;margin:0;font-size:12px}
/* Widget Label */
.widget.Label .label-size{display:inline-block;position:relative;margin:0 3px 5px 0;padding:8px 10px;border-radius:3px;background:rgba(0,0,0,.08);font-size:13px;}
.widget.Label .label-size a,.widget.Label .label-size span.label-name{display:block;padding-right:25px}
.widget.Label .label-size .label-count{display:inline-block;position:absolute;top:8px;right:10px}
.widget.Label .label-size:hover{background:rgba(0,0,0,.15)}
.widget.Label .label-size:hover a,.widget.Label .label-size:hover span.label-name{color:rgba(0,0,0,.4)}
.widget.Label ul{list-style:none;column-count:2;column-gap:10px}
.widget.Label li{position:relative;margin-bottom:10px;-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid;}
.widget.Label li:before{content:'';display:inline-block;vertical-align:top;width:18px;height:18px;position:absolute;top:0;left:0;background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M448 119c0-13.3-9.4-23-22.8-23H230.9c-2.8 0-4.3-.6-6.1-2.4l-22.5-22.5-.2-.2c-4.9-4.6-8.9-6.9-17.3-6.9H88.7C74.9 64 64 74.3 64 87v73h384v-41zM64 188h-8.3c-12.8 0-25.3 5.1-23.5 24.3C34 231.5 55.7 423 55.7 423c2.7 17.8 11.7 25 25 25h352.5c12.7 0 21-7.8 23-25 0 0 22.2-184.9 23.6-205.5 1.4-20.5-8.9-29.5-23.6-29.5H64z' fill='%23ea6d23'/></svg>") no-repeat center center;}
.widget.Label li a,.widget.Label li span.label-name{display:inline-block;position:relative;padding:0 0 0 25px;z-index:2}
.widget.Label li span{display:inline-block;}
/* Widget Popular and Random Post */
.widget .popular-posts ul,.widget .random-posts ul{list-style:none}
.widget .popular-posts li,.widget .random-posts li{display:block;position:relative;padding:0 0 15px}
.widget .popular-posts li:last-child,.widget .random-posts li:last-child{padding:0}
.widget .popular-posts .item-content,.widget .random-posts .random-content{display:table-cell}
.widget .popular-posts .item-thumbnail,.widget .random-posts .random-thumbnail{width:72px;display:table-cell;vertical-align:top}
.widget .popular-posts .item-thumbnail a,.widget .popular-posts .item-thumbnail img,.widget .random-posts .random-thumbnail a,.widget .random-posts .random-thumbnail img{display:block;border-radius:3px}
.widget .popular-posts .item-thumbnail a,.widget .random-posts .random-thumbnail a{height:72px;width:72px;color:transparent;background:#f1f1f0}
.widget .popular-posts .item-context,.widget .random-posts .random-context{display:table-cell;padding-left:15px}
.widget .popular-posts .item-title a,.widget .random-posts .random-title a{display:block;color:#414141;font-size:14px;font-weight:600;transition:color .5s;-webkit-transition:color .5s}
.widget .popular-posts .item-title a:after,.widget .random-posts .random-title a:after{content:'Read more';display:block;margin-top:5px;color:#5f6368;font-size:12px;font-weight:400}
.widget .popular-posts .item-title a:hover:after,.widget .random-posts .random-title a:hover:after{color:#292f3d;text-decoration:underline}
.widget .popular-posts .item-title a:hover,.widget .random-posts .random-title a:hover{color:rgba(0,0,0,.6)}
.widget .popular-posts .item-snippet,.widget .random-posts .random-snippet{max-height:40px;display:none;margin:8px 0 0;overflow:hidden}
/* Widget Recent Post */
.widget .recent-posts ul{display:block;list-style:none;margin:0;padding:0;counter-reset:my-sec-counter;}
.widget .recent-posts li{padding:0 0 15px;position:relative;}
.widget .recent-posts li:last-child{padding:0;}
.widget .recent-posts li:before{content:'0' counter(my-sec-counter);counter-increment:my-sec-counter;display:inline-block;position:absolute;top:-8px;color:rgba(0,0,0,.15);font-size:35px;font-family:'EB Garamond',serif}
.widget .recent-posts li a{padding-left:50px;-webkit-transition:color .5s;transition:color .5s;color:#414141;display:block;font-size:14px;font-weight:600;line-height:20px}
.widget .recent-posts li a:hover{color:rgba(0,0,0,.6)}
.widget .recent-posts li a:after{content:'Read more';display:block;font-size:12px;font-weight:400;margin-top:5px;color:#5f6368}.widget .recent-posts li a:hover:after{text-decoration:underline}
.widget .recent-posts li i{display:block;margin-left:50px;background:#f1f1f0;height:18px;position:relative;top:4px}
.widget .recent-posts li i:nth-child(2){display:inline-block;margin:15px 0 0 50px;background:#f1f1f0;height:13px;width:65px}
/* Widget Subscribe */
.widget form table{width:100%;position:relative;}
.widget form table td{width:100%;display:block;}
.widget form table td:last-child{width:100px!important;display:inline-block;position:absolute;top:0;right:0;}
.widget form input[type=text],.widget form textarea{width:100%;padding:12px 110px 12px 15px;outline:0;border:1px solid rgba(0,0,0,.15);border-radius:5px;border-spacing:0;font-size:13px;}
.widget form input[type=text]:focus,.widget form textarea:focus{border-color:#ff8a00}
.widget form input[type=submit]{width:100%;height:29px;margin:7px 0;outline:0;border:0;border-left:1px solid rgba(0,0,0,.1);background:transparent;cursor:pointer}
.widget form input[type=submit]:hover{color:#ff8a00}
/* Widget Kontak */
.widget form label{font-size:13px;display:inline-block;position:relative;margin:0 0 5px;padding:0 7px;background:#fff;color:rgba(0,0,0,.5);left:14px;bottom:-12px}
.widget form label span{color:rgba(234,74,56,.98)}
.widget form input[type=button]{width:50%;display:block;margin-top:15px;padding:10px 35px;outline:0;border:0;border-radius:5px;background:rgba(234,74,56,.98);color:#fff;font-weight:600}
/* Widget Sticky */
#sidebar-sticky{width:100%;max-width:300px;}
#sidebar-sticky .widget-content{margin:0}
#header[style="top: 0px;"] + #header-menu + #outer #sidebar-sticky{top:70px!important;-webkit-transition: all .3s ease;transition: all .3s ease;}
/* Footer and Credits */
.footer-widget{width:90%;position:relative;padding:15px 0 0;font-size:14px}
.footer-widget:after{content:'';display:block;clear:both}
.footer-widget h2{display:none;color:#fff;border-color:rgba(255,255,255,.4)}
.footer a{display:inline-block;color:#fff;fill:#fff}
.footer a:hover{display:inline-block;color:#414141;fill:#414141}
.footer ul{display:block;margin:0;padding:0;font-size:13px;}
.footer ul.link-foot a{white-space:nowrap;}
.footer ul.link-foot a:after{content:'\00b7';display:inline-block;margin-left:8px;font-weight:600}
.footer li:last-child a:after{display:none}
.footer li{display:inline-block;padding:5px 5px 0 0}
/* Social Link */
.footer ul.link-social{display:inline-block;position:absolute;top:18px;right:0}
.footer ul.link-social svg{width:25px;height:25px;}
.footer ul.link-social li{padding-right:10px}
/* Credit */
.credit-wrapper{font-size:12px;padding:5px 0 20px;color:#fff}
.credit-wrapper p{margin:0 auto;display:block}
/* Back Top */ #backtop{position:fixed;bottom:-60px;right:20px;cursor:pointer;text-align:center;z-index:20;-webkit-transform:rotate(180deg);transform:rotate(180deg);width:55px;height:55px;background:#f78154;border-radius:50px;font-size:25px;display:block;-webkit-transition:all .3s ease-in-out;transition: all .3s ease-in-out;color:#fff}#backtop svg{display:block;margin:auto;width:25px;height:55px;fill:#fff}
/* Non User Select */ .post-entry img,.post-breadcrumb a,.post .post-update,.post blockquote,.post .post-related,.post .kotak-panduan,.post .download-info a,.post .button1,.post .button2,#file-info,.file-info,.lazy-youtube,.post pre code i{user-select: none;-moz-user-select: none;-ms-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-webkit-touch-callout: none;}
/* Other Style */ .navbar,#navbar1, #Attribution1, .quickedit, .icon-action, .widget-item-control a{display:none !important;visibility:hidden;}.place-ads{width:100%;display:table;padding:20px;text-align:center;color:rgba(0,0,0,.4)}
.place-ads:before{content:'Adsense place';font-size:12px;display:table-cell;vertical-align:middle}
/* Responsive 1024px */@media screen and (max-width: 1024px){/* Recent and Random Post */ .post-title h2,.post-title h3{font-size:16px} /* Blog Article */.post-image{width:120px;max-width:120px}.post-image a{min-height:100px;max-height:180px}.post-image img{max-height:100px}.post-snippet{display:none}
}
/* Responsive 768px */ @media screen and (max-width:768px){
/* Responsive Header */
#header-inner{margin-left:40px}
.header-nav{display:table}
#header-menu{overflow-y:hidden;overflow-x:auto}
#header[style="top: -60px;"] .menu-container{top:-60px}
.menu-container{position:fixed;left:0;top:0;right:initial;width:100%;height:60px;z-index:-1;-webkit-transition:all .3s ease-in-out .2s;transition:all .3s ease-in-out .2s;}
.menu-container ul{width:80%;height:100%;max-width:500px;display:block;position:fixed;top:0;left:0;margin-left:-100%;padding:60px 0 30px;background:rgba(248,248,248,.98);box-shadow:0 2px 10px 0 rgba(72,73,121,0.25);overflow-x:hidden;overflow-y:auto;z-index:3;-webkit-transition:all .3s ease-in-out .2s;transition:all .3s ease-in-out .2s;}
.menu-container ul:before{content:'';width:80%;max-width:500px;height:60px;display:block;position:fixed;top:0;left:0;margin-left:-100%;background:linear-gradient(to bottom,rgba(248,248,248,.98),rgba(248,248,248,.98),transparent);z-index:1;-webkit-transition:all .3s ease-in-out .2s;transition:all .3s ease-in-out .2s;}
.menu-container ul ul:before{display:none}
.menu-container ul li{display:block;margin-left:-100%}
.menu-container ul li a,.menu-container ul li label{display:block;padding:13px 30px;color:rgba(0,0,0,.5)}
.menu-container ul li label .icon-dropdown:before{content:'';position:absolute;top:18px;right:20px;background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z' fill='%23ccc'/></svg>");}
.menu-container li:hover ul{top:0}
.menu-container ul ul{min-height:0;max-height:0;background:transparent;top:0;position:relative;box-shadow:none;opacity:1;visibility:visible;transition:all 0.3s ease-in-out .1s;-webkit-transition:all 0.3s ease-in-out .1s}
.menu-container li li{margin-left:-100%!important;height:0;}
.menu-container li li a{padding:13px 50px}
.menu-container li input:checked + label .icon:before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
.menu-container li input:checked + label + ul{max-height:initial;min-height:129px}
.menu-container li input:checked + label + ul li{margin-left:0!important;height:43px}
/* Responsive Header effect */
.canvas-menu:checked + #wrapper .header-nav label.navHam{transform:rotate(180deg);-webkit-transform:rotate(180deg)}
.canvas-menu:checked + #wrapper .header-nav label.navHam i:nth-child(1){background:#414141;-webkit-transform:translateY(2px) rotate(35deg);transform:translateY(2px) rotate(35deg);width:60%;margin-left:40%}
.canvas-menu:checked + #wrapper .header-nav label.navHam i:nth-child(2){background:#414141;-webkit-transform:translateY(0px);transform:translateY(0px);width:90%;margin-left:10%}
.canvas-menu:checked + #wrapper .header-nav label.navHam i:nth-child(3){background:#414141;-webkit-transform:translateY(-2px) rotate(-35deg);transform:translateY(-2px) rotate(-35deg);width:60%;margin-left:40%}
.canvas-menu:checked + #wrapper .header-nav + .header-widget + .menu-container{top:0!important;z-index:1}
.canvas-menu:checked + #wrapper .header-nav + .header-widget + .menu-container .full-close{visibility:visible;opacity:1;-webkit-transition:all .3s ease-in-out .2s;transition:all .3s ease-in-out .2s;}
.canvas-menu:checked + #wrapper .header-nav + .header-widget + .menu-container ul,.canvas-menu:checked + #wrapper .header-nav + .header-widget + .menu-container ul:before,.canvas-menu:checked + #wrapper .header-nav + .header-widget + .menu-container ul li{margin-left:0;}
.canvas-menu:checked + #wrapper .share-thisPost{z-index:40}
.canvas-menu:checked + #wrapper #header[style="top: -60px;"]{top:0!important}
.canvas-menu:checked + #wrapper #outer{left:40%;}
/* Responsive Blogbar */
#blogbar{width:100%;padding:10px 0 0}
/* Responsive Post */
.post-image{width:180px;max-width:180px}
.post-image img{max-height:130px}
.post-snippet{display:block}
.FeaturedPost{border:0;}.post{border:0;margin:0}
/* Responsive Post Ads */
.post-leftAds,.post-rightAds{float:none;margin:0;display:block;text-align:center}
/* Responsive Sidebar and Widget */
#sidebar{width:100%;float:none;padding-top:20px}
.widgetbar h2, .FeaturedPost h2, .footer-widget h2{border:0;padding:0 0 10px;margin:0 0 15px;font-size:14px}
#sidebar-sticky{position:relative!important;top:initial!important;width:100%;max-width:100%}#header[style="top: 0px;"] + #header-menu + #outer #sidebar-sticky{top:initial!important}
}
/* Responsive 640px */@media screen and (max-width:640px){
/* Responsive Header */ #header-menu{padding:60px 0 0}
/* Responsive Blog Article */
.post{padding-bottom:15px}
.post-image{width:150px;max-width:150px}
.post-title h2,.post-title h3{font-size:14px}
/* Responsive Post Unggulan */
.post-summary{display:block;position:relative;padding:0;overflow:hidden}
.post-summary:after{z-index:2}
.post-summary .post-image{width:100%;max-width:initial;display:block;border-radius:5px}
.post-summary .post-image a{max-height:150px}
.post-summary .post-image img{max-width:100%;max-height:initial}
.post-summary .post-content{width:100%;height:100%;display:block;position:absolute;top:0;left:0;padding:30px 15px 15px;background:linear-gradient(100deg,rgba(255,255,255,.98),rgba(255,255,255,.9),rgba(255,255,255,.7));}
.post-summary .post-content p{width:80%;max-width:400px;font-size:12px;line-height:normal}
}
/* Responsive 480px */@media screen and (max-width:480px){
/* Responsive Blog Article */
.post-image{width:110px;max-width:110px}
.post-image a,.post-image img{max-height:100px}
.post-content{padding-left:20px}.post-snippet{display:none}
/* Responsive Footer */
.footer ul,.footer ul.link-social{display:block;position:relative;top:initial;text-align:center;font-size:12px}
.credit-wrapper{padding-bottom:10px;text-align:center;}.credit-wrapper .creator{display:block}
}
/* Print */@media print {body {background:transparent;}#header,#sidebar,#footer,.mobile-link-button,.breadcrumb,.post-footer,#disqusshow,#disqus_thread,#comments,.comments,.ads-before,.ads-after,.ads-textTop,.ads-textBottom, .button{display:none!important}#backToTop{opacity:0!important;visibility:hidden!important}#content,#blogbar{width:100%!important;padding:0!important}}
/* Night Mode */
.night-mode{background:#2E3138 !important;color:#fff}
/* Night Mode Header */ .night-mode #header-menu{background:rgba(60,63,72,.98)}.night-mode .header-service li a{color:#fff;}.night-mode .header-nav label i{background:#fff!important}
/* Night Mode Post */
.night-mode .post,.night-mode .post-title a,.night-mode .post-date{color:#fff}
.night-mode .post-image a{background:rgba(60,63,72,.98)}
.night-mode .post-summary{box-shadow:0 3px 10px 0 rgba(0,0,0,0.4)}
.night-mode .post-summary .post-title a{color:#414141}
.night-mode .post-labels a,.night-mode .post-snippet{color:rgba(255,255,255,.6)}
.night-mode .comments-bubble{color:#fff}
.night-mode .blog-navigation span,.night-mode .blog-navigation a,.night-mode .blog-navigation .current{background:rgba(76,80,90,.98);color:rgba(255,255,255,.8)}
.night-mode .blog-navigation a:hover{background:rgba(60,63,72,.98)}
.night-mode .post blockquote{color:rgba(255,255,255,.6)}
.night-mode .post-entry h3{color:#ea6d23}
.night-mode .blog-pager a{color:#fff;border-color:#fff;fill:#fff}
/* Night Mode Post Button */
.night-mode .post .button, .night-mode .post .button i{color:#fff;border-color:rgba(255,255,255,.7)}
.night-mode .post .button:hover, .night-mode .post .button:hover{border-color:#f78154}
/* Night Mode Post Code */ .night-mode .post pre{background-color:rgba(0,0,0,.2)!important}
/* Night Mode Post Breadcrumbs and Related */ .night-mode .post-breadcrumb,.night-mode .post-breadcrumb a{color:rgba(255,255,255,.6)}.night-mode .post .post-related h4{background:#2E3138}
/* Night Mode Post Label */ .night-mode .post-label a, .night-mode .post-label label{background:rgba(76,80,90,.98);color:#fff;fill:#fff}.night-mode .post-label a:hover, .night-mode .post-label label:hover{background:rgba(0,0,0,.3)}
/* Night Mode Post Writter and update */ .night-mode .post-writer .writer-name span{color:#fff} .night-mode .post-writer .writer-name .w-desc{color:rgba(255,255,255,.6)}
/* Night Mode Widget */
.night-mode .widget.Label .label-size{background:rgba(76,80,90,.98);} .night-mode .widget.Label .label-size a,.night-mode .widget.Label li a{color:#fff}
.night-mode .widget .popular-posts .item-thumbnail a,.night-mode .widget .random-posts .random-thumbnail a{background:rgba(60,63,72,.98)} .night-mode .widget .popular-posts .item-title a, .night-mode .widget .random-posts .random-title a,.night-mode .widget .recent-posts li a{color:#fff} .night-mode .widget .popular-posts .item-title a:after, .night-mode .widget .random-posts .random-title a:after,.night-mode .widget .recent-posts li a:after{color:rgba(255,255,255,.6)}.night-mode .widget .recent-posts li:before{color:rgba(255,255,255,.15)}
.night-mode .widget form input[type=text], .night-mode .widget form textarea{background:rgba(60,63,72,.98);border-color:#ddd}
.night-mode .widget form input[type=text]:focus, .night-mode .widget form textarea:focus{border-color:#ff8a00}
/* Night Mode Comment */ .night-mode .comments li .comment-header .datetime a{color:rgba(255,255,255,.6)}.night-mode .comments li .comment-content,.night-mode .comments li .comment-replies .thread-toggle a,.night-mode .comments li .comment-replies .thread-toggle,.night-mode .comments li .comment-replies .comment-thread ol .continue a{color:#fff}.night-mode .comments li .comment-block{background:rgba(0,0,0,.15)}
/* Night Mode Share */ .night-mode .share-container .widget:before,.night-mode .share-container .widget:after{background:rgba(60,63,72,.99)}.night-mode .share-container .menu-share:before{color:rgba(255,255,255,.6)}.night-mode .share-container .menu-share a:after{color:#fff;}.night-mode .share-container .menu-share a{color:#fff;fill:#fff;border-color:#fff;background:transparent}
@media screen and (max-width:768px){
/* Night Mode Menu Container */
.night-mode .menu-container ul{background:rgba(60,63,72,.99)}
.night-mode .menu-container ul:before{background:linear-gradient(to bottom,rgba(60,63,72,.99),rgba(60,63,72,.99),transparent)}
.night-mode .menu-container ul li a,.night-mode .menu-container ul li label{color:rgba(255,255,255,.98)}}
/* Icon SVG */
.icon:before{display:inline-block;position:relative;top:1px;width:20px;height:20px;background-size:cover;background-repeat:no-repeat;background-position:center center}
.icon-paper-plane:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M452.1 49L52.3 265.3c-6 3.3-5.6 12.1.6 14.9l68.2 25.7c4 1.5 7.2 4.5 9 8.4l53 109.1c1 4.8 9.9 6.1 10 1.2l-8.1-90.2c.5-6.7 3-13 7.3-18.2l207.3-203.1c1.2-1.2 2.9-1.6 4.5-1.3 3.4.8 4.8 4.9 2.6 7.6L228 338c-4 6-6 11-7 18l-10.7 77.9c.9 6.8 6.2 9.4 10.5 3.3l38.5-45.2c2.6-3.7 7.7-4.5 11.3-1.9l99.2 72.3c4.7 3.5 11.4.9 12.6-4.9L463.8 58c1.5-6.8-5.6-12.3-11.7-9z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-bookmarks:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M416 32v127.9l-22.9-14.5-9.1-6.4-9.1 6.4-22.9 14.5V32h-41.4c-22.5.2-40.6 18.8-40.6 41.4v313.2c0 7.5-5.8 14-13.3 14.4-8 .4-14.7-6-14.7-14V73.4c0-22.6-18.1-41.2-40.6-41.4H95.1C64.8 32 40 56.8 40 87.1v289.8c0 30.3 24.8 55.1 55.1 55.1l108-.1c4.2.1 8.3.6 12.2 1.4 15.3 3.1 26.8 16.6 26.6 32.2-.1 7.2 5.2 13.6 12.4 14.4 8.5.9 15.7-5.7 15.6-14.1-.2-15.8 11.4-29.4 26.9-32.5 3.8-.8 7.9-1.2 12-1.3l108 .1c30.3 0 55.1-24.8 55.1-55.1V87.1C472 56.8 446.3 32 416 32z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-play-circle:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm83.8 211.9l-137.2 83c-2.9 1.8-6.7-.4-6.7-3.9V173c0-3.5 3.7-5.7 6.7-3.9l137.2 83c2.9 1.7 2.9 6.1 0 7.8z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-cloud-download:before,.icon-ios-cloud-download-outline:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M437.1 165.8C429 90.6 365.4 32 288 32c-51.2 0-96.3 25.6-123.4 64.7-8.3-3.4-17.4-5.3-26.9-5.3-39.1 0-70.8 34.4-71.4 73.4C26.4 177.5 0 216.5 0 257.5 0 307.7 40.7 352 90.9 352H243V211c0-7.2 5.8-13 13-13s13 5.8 13 13v141h152.1c50.2 0 90.9-44.3 90.9-94.5 0-44.7-32.3-84.1-74.9-91.7zM243 435.9l-47.9-47.2c-5.1-5-13.3-5-18.4.1-5 5.1-5 13.3.1 18.4l70 69c2.5 2.4 5.8 3.7 9.1 3.7 1.7 0 3.4-.3 5-1 1.5-.6 2.9-1.6 4.1-2.7l70-69c5.1-5 5.2-13.3.1-18.4-5-5.1-13.3-5.2-18.4-.1L269 435.9V352h-26v83.9z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-chatbubble:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 64C141.1 64 48 139.2 48 232c0 64.9 45.6 121.2 112.3 149.2-5.2 25.8-21 47-33.5 60.5-2.3 2.5.2 6.5 3.6 6.3 11.5-.8 32.9-4.4 51-12.7 21.5-9.9 40.3-30.1 46.3-36.9 9.3 1 18.8 1.6 28.5 1.6 114.9 0 208-75.2 208-168C464 139.2 370.9 64 256 64z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-informaticon-circle:before,.icon-ios-informaticon-outline:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm19 304h-38.2V207.9H275V352zm-19.1-159.8c-11.3 0-20.5-8.6-20.5-20s9.3-19.9 20.5-19.9c11.4 0 20.7 8.5 20.7 19.9s-9.3 20-20.7 20z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-help-outline:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm-4.3 304c-11.8 0-21.4-9-21.4-20.6 0-11.5 9.6-20.6 21.4-20.6 11.9 0 21.5 9 21.5 20.6 0 11.6-9.5 20.6-21.5 20.6zm40.2-96.9c-17.4 10.1-23.3 17.5-23.3 30.3v7.9h-34.7l-.3-8.6c-1.7-20.6 5.5-33.4 23.6-44 16.9-10.1 24-16.5 24-28.9s-12-21.5-26.9-21.5c-15.1 0-26 9.8-26.8 24.6H192c.7-32.2 24.5-55 64.7-55 37.5 0 63.3 20.8 63.3 50.7 0 19.9-9.6 33.6-28.1 44.5z' fill='rgba(0,0,0,.4)'/></svg>")}
.icon-dropdown:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z' fill='rgba(255,255,255,.9)'/></svg>")}
.icon-dropleft:before{content:'';background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z' fill='rgba(0,0,0,.5)'/></svg>")}
/* Addon */
img.image-post-thumbnail{width:100%}
</style>
<b:if cond='data:view.isSearch'>
<style>
/* Blog Article */
#blogbar .blog-posts{column-count:2;column-gap:20px}
.date-outer{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid;}
.post,.post-image,.post-content{display:block;margin:0;padding:0}
.post{margin:0 0 20px;padding:0;background:rgba(255,255,255,.7);border-radius:5px;box-shadow:0 1px 8px 0 rgba(72,73,121,0.15)}
.post-title h2, .post-title h3{font-size:16px}
.post-image{width:100%;max-width:none;border-radius:5px 5px 0 0}
.post-image a{max-height:120px;border-radius:5px 5px 0 0}
.post-image img{max-height:none;max-width:100%;-webkit-transform:translateY(-10%);transform:translateY(-10%)}
.post-content{padding:15px}
.post-snippet div{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:320px}
/* Responsive 1024px */ @media screen and (max-width: 1024px){
/* Blog Article */ #blogbar{width:calc(100% - 300px)}#blogbar .blog-posts{column-gap:15px}.date-outer{margin:0 0 15px}}
/* Responsive 768px */ @media screen and (max-width: 768px){
/* Blog Article */ #blogbar{width:100%;padding-right:0} .blog-pager,.blog-navigation{padding:10px 0}}
/* Responsive 640px */ @media screen and (max-width: 640px){
/* Blog Article */
#blogbar .blog-posts{column-count:1;column-gap:0}
.post{display:table;padding:0 10px 0 0;margin:0 0 10px;border:0;background:transparent;overflow:hidden;box-shadow:none}
.post-image{width:110px;max-width:110px;display:table-cell;border-radius:3px}
.post-image a{max-height:100px!important;overflow:hidden}
.post-image img{max-height:110px;max-width:none;-webkit-transform:translateY(-8px);transform:translatex(-8px)}
.post-content{display:table-cell;padding:0 0 0 20px;z-index:2}
.post-title{overflow:hidden}.post-snippet{display:none}
.post-title h2,.post-title h3{font-size:14px}}
</style>
</b:if>
<b:if cond='data:view.isSingleItem'>
<style type='text/css'>
/* Post */
.post{display:block;position:relative;margin:0;padding:0;border-bottom:1px solid #f1f1f0}
.post-title{font-family:'EB Garamond',serif;line-height:normal;margin:0;padding:0 0 20px;}
.post-title h1{font-size:28px;margin:0;display:block;font-weight:400}
.post .post-entry{font-size:16px}
.post-entry img{max-width:100%;display:inline-block;border-radius:3px;}
/* Post Breadcrumb */
.post-breadcrumb{color:rgba(0,0,0,.5);font-size:13px}
.post-breadcrumb a{display:inline-block;margin:0 0 5px;color:rgba(0,0,0,.5);}
.post-breadcrumb a:hover{text-decoration:underline}
/* Post Label */
.post-label{padding:25px 0 10px}
.post-label a,.post-label label {display:inline-block;margin:0 8px 8px 0;padding:8px 10px;border-radius:3px;font-size:13px;color:rgba(0,0,0,.68);fill:rgba(0,0,0,.68);background:rgba(0,0,0,.05);cursor:pointer}
.post-label a:hover,.post-label label:hover{background:rgba(0,0,0,.1)}
.post-label label{float:right;margin-right:0}
.post-label label svg{display:inline-block;width:13px;height:13px;margin-right:5px;position:relative;top:2px}
/* Post Writer */
.post-writer{display:table;width:100%;padding:20px 0 25px;border-top:1px solid #f1f1f0}
.post-writer div{display:table-cell;vertical-align:middle}
.post-writer .writer-profile{width:60px;height:60px;border-radius:50%;overflow:hidden;font-size:11px;background:rgba(0,0,0,.05)}
.post-writer .writer-profile img{width:60px;height:60px;display:block;}
.post-writer .writer-name{padding:0 8px 0 15px}
.post-writer .writer-name span{display:block;color:#5f6368}
.post-writer .writer-name .w-name{font-size:15px;font-weight:600;padding-bottom:5px}
.post-writer .writer-name .w-desc{color:rgba(0,0,0,.5);font-size:12px;}
.post-writer .writer-follow{text-align:right}
.post-writer .writer-follow a{display:inline-block;font-size:13px;color:#ea6d23;padding:7px 17px;border:1px solid #ea6d23;border-radius:50px;opacity:.8}
/* Post Related */
.post .post-related{padding:15px;margin-top:10px;border:1px solid #ddd;border-radius:3px;font-size:13px;position:relative}
.post .post-related h4{font-size:18px;margin:0;display:inline-block;padding:0 10px;background:#fff;position:absolute;top:-14px;left:10px;color:#7d7d7d}
.post .post-related ul,.post .post-related ol{list-style:circle;padding-left:20px}
.post-related li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:98%;display:inherit}
/* Share Container */
.share-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:-1;-webkit-transition:all .3s ease .2s;transition:all .3s ease .2s;overflow:hidden;}
.share-container .widget{height:100%}
.share-container .widget:before,.share-container .widget:after{content:'';display:inline-block;position:absolute;bottom:-25px;right:-25px;width:100px;height:100px;border-radius:50%;background:rgba(255,255,255,.98);-webkit-transition:all 1.2s ease .1s;transition:all 1.2s ease .1s;transform:scale(1.1);-webkit-transform:scale(1.1)}.share-container .widget:before{box-shadow:0 4px 12px 0 rgba(0,0,0,.05)}
.share-container .widget:after{width:200px;height:200px;-webkit-transition:all .5s ease .5s;transition:all .5s ease .5s;transform:scale(.8);-webkit-transform:scale(.8)}
.share-container .post-shareTable{z-index:5;width:100%;height:100%;position:relative;display:table}
.share-container .post-shareTablecell{position:relative;display:table-cell;vertical-align:middle;text-align:center}
.share-container .menu-share{margin:auto;padding:0;text-align:center;position:relative}
.share-container .menu-share:before{content:'Bagikan artikel ke';display:block;margin-right:-200%;margin-bottom:25px;font-size:20px;color:rgba(0,0,0,.5);-webkit-transition:all .5s ease-in-out .2s;transition:all .5s ease-in-out .2s;}
.share-container .menu-share:after{display:block;content:'';clear:both}
.share-container .menu-share li{display:inline-block;position:relative;right:-200%;}
.share-container .menu-share a{display:block;position:relative;width:80px;height:80px;margin:10px 10px 35px;border:1px solid rgba(0,0,0,.1);background:rgba(255,255,255,.6);border-radius:50%;font-size:25px;text-align:center;color:rgba(0,0,0,.7);fill:rgba(0,0,0,.7);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}
.share-container .menu-share a:hover{color:#fff;fill:#fff}
.share-container .menu-share a svg{display:block;margin:auto;width:25px;height:78px}
.share-container .menu-share a:after{content:'Facebook';font-size:14px;color:rgba(0,0,0,.5);position:absolute;bottom:-25px;left:0;right:0;-webkit-transition:all .3s ease-in-out .5s;transition:all .3s ease-in-out .5s;opacity:0}
.share-container .menu-share li:nth-child(1){-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}
.share-container .menu-share li:nth-child(2){-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}
.share-container .menu-share li:nth-child(3){-webkit-transition:all .7s ease-in-out;transition:all .7s ease-in-out}
.share-container .menu-share li:nth-child(4){-webkit-transition:all .8s ease-in-out;transition:all .8s ease-in-out}
.share-container .menu-share li:nth-child(5){-webkit-transition:all .9s ease-in-out;transition:all .9s ease-in-out}
.share-container .menu-share li:nth-child(6){-webkit-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out}
.menu-share a.sfacebook:hover{background:#4267b2;border-color:#4267b2}
.menu-share a.sgoogle:hover{background:#dd4b39;border-color:#dd4b39}
.menu-share a.stwitter:hover{background:#00aced;border-color:#00aced}
.menu-share a.swhatsapp:hover{background:#25d366;border-color:#25d366}
.menu-share a.sline:hover{background:#00c300;border-color:#00c300}
.menu-share a.slink:hover{background:#ddd;border-color:#ddd;color:#5f6368}
.menu-share a.sgoogle:after{content:'Google Plus'}
.menu-share a.stwitter:after{content:'Twitter'}
.menu-share a.swhatsapp:after{content:'Whatsapp'}
.menu-share a.sline:after{content:'Line'}
.menu-share a.slink:after{content:'Salin Link'}
/* Share Container Active */
.share-container.active{z-index:50}
.share-container.active .widget:before{transform:scale(20);-webkit-transform:scale(50);}
.share-container.active .widget:after{transform:scale(2.1);-webkit-transform:scale(2.1);background:rgba(0,0,0,.03)}
.share-container.active .menu-share li{right:0}
.share-container.active + .share-thisPost{bottom:20px;transform:rotate(360deg);-webkit-transform:rotate(360deg);opacity:1;visibility:visible}
.share-container.active + .share-thisPost .svg-1{display:none}
.share-container.active + .share-thisPost .svg-2{display:block}
.share-container.active .menu-share:before{margin-right:0}
.share-container.active .menu-share a:after,.share-container.active input{opacity:1}
/* Share Button */
.share-thisPost{position:fixed;bottom:-60px;right:20px;cursor:pointer;text-align:center;z-index:51;width:55px;height:55px;background:#f78154;color:#fff;fill:#fff;border-radius:50px;font-size:25px;display:block;-webkit-transition:all .3s ease-in-out;transition: all .3s ease-in-out;opacity:0;visibility:hidden}
.share-thisPost svg{display:block;margin:auto;width:25px;height:55px}
.share-thisPost .svg-2{display:none}
/* Share Copy Link */
.share-container input{display:block;margin:0 auto 0;padding:12px 15px;outline:0;border:1px solid rgba(0,0,0,.1);border-radius:50px;background:rgba(255,255,255,.5);font-family:'Segoe UI',san-serif;font-size:13px;width:70%;max-width:580px;color:rgba(0,0,0,.4);-webkit-transition:all .5s ease-in-out .9s;transition:all .5s ease-in-out .9s;opacity:0!important;position:absolute;left:0;right:0;bottom:50px;}
.share-container input:focus{border-color:#ea6d23}
#linkTooltip{position:fixed;left:0;right:0;bottom:28px}
#linkTooltip span {background:rgba(0,0,0,.5);color:#fff;font-size:13px;padding:10px 25px;border-radius:5px;display:inline-block;position:relative;bottom:-200px;opacity:0;transition:all .5s ease-in-out;-webkit-transition:all .5s ease-in-out;-webkit-animation: slidein 3s ease forwards;-o-animation: slidein 3s ease forwards;animation: slidein 3s ease forwards;}
/* Share Copy Animation */
@-webkit-keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:0}50%{opacity:1;bottom:0}80%{opacity:1;bottom:0}100%{opacity:0;bottom:0}}
@-o-keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:0}50%{opacity:1;bottom:0}80%{opacity:1;bottom:0}100%{opacity:0;bottom:0}}
@keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:0}50%{opacity:1;bottom:0}80%{opacity:1;bottom:0}100%{opacity:0;bottom:0}}
/* Lazy Youtbe */
.lazy-youtube{background-color:#414141;position:relative;overflow:hidden;padding-top:56.30%;cursor:pointer;border-radius:3px;}
.lazy-youtube img{width:100%;top:-16.84%;left:0;opacity:.7}
.lazy-youtube .play-button{width:60px;height:60px;z-index:1;opacity:.9;border-radius:50px;border:2px solid rgba(255,255,255,.8)}
.lazy-youtube .play-button:hover{border-color:#ea6d23}
.lazy-youtube .play-button:hover:before{border-color:transparent transparent transparent #ea6d23}
.lazy-youtube .play-button:before{content:'';border-style:solid;border-width:10px 0 10px 15px;border-color:transparent transparent transparent rgba(255,255,255,.8);border-radius:3px;margin-left:1px}
.lazy-youtube img,.lazy-youtube .play-button{cursor:pointer}
.lazy-youtube img,.lazy-youtube iframe,.lazy-youtube .play-button,.lazy-youtube .play-button:before{position:absolute!important}
.lazy-youtube .play-button,.lazy-youtube .play-button:before{top:50%;left:50%;transform:translate3d(-50%,-50%,0)}
.lazy-youtube iframe{height:100%;width:100%;top:0;left:0}
/* Post Code */
.post pre{background-color:#ddd;border-left:3px solid rgba(0,0,0,.1);border-radius:3px;padding:0;margin:0 auto;position:relative;width:100%;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;transition:all .2s ease;}
.post pre code{font-size:12px;line-height:1.5em;display:block;padding:0 15px 15px;font-family:'source code pro',menlo,consolas,monaco,monospace;overflow:auto;white-space:pre}
.post pre code span{color:#d94f5c}
.post pre code i{color:#275ad1}
/* Related Posts */
.related-posts{padding:25px 0 0}
.related-posts ul{margin:0;padding:0;}
.related-posts ul:after{content:'';display:block;clear:both}
.related-posts li{float:left;width:23.5%;margin-right:2%;margin-bottom:15px;}
.related-posts li:nth-of-type(4n){margin-right:0}
.related-posts li:nth-of-type(4n+1){clear:both}
.related-posts ul{margin:0;padding:0;}
.related-posts .related-img{min-height:75px;max-height:75px;display:block;margin-bottom:8px;background:rgba(0,0,0,.05);border-radius:3px;overflow:hidden}
.related-posts .related-img img{max-width:100%;display:block;}
.related-posts .related-link{display:block;color:#414141;font-size:14px;font-weight:600}
.related-posts .related-link:hover{color:rgba(0,0,0,.6)}
.related-posts .related-snippet{max-height:30px;display:none;margin-top:8px;color:rgba(0,0,0,.5);font-size:12px;overflow:hidden}
/* Disqus Comment */
#disqus_thread{padding:30px 0 20px;position:relative;z-index:2}
.dummy-comment a{display:block;padding:15px;margin:auto;width:100%;max-width:480px;border:1px solid rgba(0,0,0,.1);border-radius:5px;color:rgba(0,0,0,.5);background:rgba(0,0,0,.05);box-shadow:0 1px 4px rgba(0,0,0,.04);font-size:14px;font-family:'Segoe UI',san-serif;font-weight:600}
.dummy-comment a:hover{border-color:#ea6d23;color:#ea6d23}
/* Comments */
.comments{padding:25px 0 15px;position:relative;z-index:3}
.comments p{margin:0;padding: 0}
.comments h4{margin:0 0 15px;font-size:16px;font-weight:400}
.comments .continue,.comments .loadmore{display:block;padding:0;text-align:center;font-size:13px}
.comments .continue a{margin:0}
.comments ol{margin:0;padding:0;list-style:none}
.comments li{margin:0 0 10px 45px;padding:0;position:relative;}
.comments li .avatar-image-container{display:table;position:absolute;top:0;left:-45px;width:35px;height:35px;background:#f1f1f0;border-radius:50%;text-align:center;overflow:hidden}
.comments li .avatar-image-container img{max-width:100%;display:table-cell;vertical-align:middle;position:relative;z-index:2;border-radius:50%}
.comments li .comment-block{margin:0;padding:10px 15px 15px;background:rgba(0,0,0,.03);border-radius:10px}
.comments li .comment-header{padding:0 0 10px}
.comments li .comment-header .user{font-style:normal;font-size:13px;}
.comments li .comment-header .user a{color:#ea6d23}
.comments li .comment-header .icon.blog-author{width:16px;height:16px;margin-left:5px;vertical-align:-3px;display:inline-block;background:url("data:image/svg+xml,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z' fill='%23118ff9'/></svg>") no-repeat center center;}
.comments li .comment-header .datetime a{display:inline-block;padding-left:7px;font-size:11px;color:rgba(0,0,0,.4)}
.comments li .comment-header .datetime a:before{content:'\00b7';display:inline-block;margin-right:7px}
.comments li .comment-content{font-size:14px;margin:0;padding:0;color:rgba(0,0,0,.6)}
.comments li .comment-actions{display:none;}
.comments li .comment-actions a,.comments .continue a,.comments .loadmore a{display:inline-block;font-weight:600;font-size:13px;color:rgba(0,0,0,.68)}
.comments .loadmore a{display:block;padding:10px 0}
.comments li .comment-actions .item-control a{margin-left:15px}
.comments li .comment-actions .comment-reply{margin-top:15px}
.comments li .comment-actions .comment-reply:before,.comments li .comment-replies .comment-thread ol .continue a:before{content:'';display:inline-block;position:relative;top:3px;margin-right:5px;width:12px;height:16px;background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M444.7 230.4l-141.1-132c-1.7-1.6-3.3-2.5-5.6-2.4-4.4.2-10 3.3-10 8v66.2c0 2-1.6 3.8-3.6 4.1C144.1 195.8 85 300.8 64.1 409.8c-.8 4.3 5 8.3 7.7 4.9 51.2-64.5 113.5-106.6 212-107.4 2.2 0 4.2 2.6 4.2 4.8v65c0 7 9.3 10.1 14.5 5.3l142.1-134.3c2.6-2.4 3.4-5.2 3.5-8.4-.1-3.2-.9-6.9-3.4-9.3z' fill='%23414141'/></svg>") no-repeat center center;background-size:cover;}
.comments li .comment-actions a:hover,.comments .continue a:hover,.comments .loadmore a:hover{color:#ea6d23}
.comments li .comment-replies{margin:0;}
.comments li .comment-replies .comment-thread{margin:0;padding:0}
.comments li .comment-replies .comment-thread span.comment-actions{display:none}
.comments li .comment-replies .thread-toggle{display:block;font-size:13px;color:rgba(0,0,0,.68);margin:10px 0 0 15px}
.comments li .comment-replies .thread-toggle a{color:rgba(0,0,0,.68);font-weight:600}
.comments li .comment-replies .comment-thread .thread-toggle.thread-expanded .thread-arrow:before,.comments li .comment-replies .comment-thread .thread-toggle.thread-collapsed .thread-arrow:before{content:'';display:inline-block;position:relative;top:3px;margin-right:5px;width:10px;height:16px;background:url("data:image/svg+xml,<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z' fill='%23414141'/></svg>") no-repeat center center;background-size:cover;}
.comments li .comment-replies .comment-thread .thread-toggle.thread-collapsed .thread-arrow:before{transform:rotate(180deg);-webkit-transform:rotate(180deg);}
.comments li .comment-replies .comment-thread ol.thread-collapsed{display:none}
.comments li .comment-replies .comment-thread ol.thread-expanded{display:block;margin-top:0px}
.comments li li{margin:10px 0;padding:0;background:transparent;border-radius:0}
.comments li li:last-child{margin-bottom:0}
.comments li li .avatar-image-container{left:0;top:15px;width:30px;height:30px}
.comments li li .comment-block{margin:0 0 0 15px;padding:10px 15px 15px 25px}
.comments li li .comment-replies{display:none}
.comments li ol .continue{display:inline-block;text-align:left;margin:0;padding:10px 0 0 15px}
.comments li ol .continue a{display:block}
.comments ol li .comment-replies .comment-replybox-thread{margin:0 0 0 45px;padding:0!important}
.comments ol li .comment-content a,.comments .continue.hidden,.comments .loadmore.hidden,.comments li .comment-replies .hidden .thread-toggle,.comments .item-control,#comment-post-message{display:none}
.comments li .comment-replybox-single{margin:0 0;}
.comments li .comment-replybox-single iframe{margin-top:15px}
.comment-form iframe#comment-editor,#comment-form iframe#comment-editor,#comments iframe#comment-editor{padding:0 0;overflow:hidden}
/* Responsive 768px */ @media screen and (max-width: 768px){
/* Main Container */
#outer{padding:0}#outer .main-container{width:100%}
#blogbar{width:100%;padding:20px 0 0 0}
#sidebar{background:#fafafa;padding:20px 5% 20px}
.post{padding:0 5%;}
.blog-comments{background:#fafafa;padding:0 5%}
/* Night Mode */ .night-mode .blog-comments,.night-mode #sidebar{background:rgba(60,63,72,.98)}
/* Comments */.comments li .comment-block{background:rgba(0,0,0,.05)}
/* Post and Widget */.post{margin:0}.post .post-entry{font-size:16px}}
/* Responsive 640px */ @media screen and (max-width: 640px){/* Post */ .post .post-entry{font-size:15px} /* Related Post */ .related-posts li{width:48%;margin-right:4%}.related-posts li:nth-of-type(2n){margin-right:0}.related-posts li:nth-of-type(2n+1){clear:both}} .night-mode .related-posts .related-link{color:#ddd}
</style>
<script>/*<![CDATA[*/ var relatedTitles = new Array(); var relatedTitlesNum = 0; var relatedUrls = new Array(); function related_results_labels(json) { for (var i = 0; i < json.feed.entry.length; i++) { var entry = json.feed.entry[i]; relatedTitles[relatedTitlesNum] = entry.title.$t; for (var k = 0; k < entry.link.length; k++) { if (entry.link[k].rel == 'alternate') {relatedUrls[relatedTitlesNum] = entry.link[k].href; relatedTitlesNum++; break;}}}} function removeRelatedDuplicates() { var tmp = new Array(0); var tmp2 = new Array(0); for(var i = 0; i < relatedUrls.length; i++) { if(!contains(tmp, relatedUrls[i])) { tmp.length += 1; tmp[tmp.length - 1] = relatedUrls[i]; tmp2.length += 1; tmp2[tmp2.length - 1] = relatedTitles[i];}} relatedTitles = tmp2; relatedUrls = tmp;} function contains(a, e) { for(var j = 0; j < a.length; j++) if (a[j]==e) return true; return false;} function printRelatedLabels() { var r = Math.floor((relatedTitles.length - 1) * Math.random()); var i = 0; document.write('<ul>'); while (i < relatedTitles.length && i < 20) { document.write('<li><a href="' + relatedUrls[r] + '">' + relatedTitles[r] + '</a></li>'); if (r < relatedTitles.length - 1) { r++; } else { r = 0;} i++;} document.write('</ul>');} /*]]>*/</script>
</b:if>
<b:if cond='data:view.isPage'>
<style>
/* Main Container */
#sidebar{width:100%;float:none;padding:0;display:none}#sidebar .widget{width:90%;max-width:500px;margin:0 auto}.widgetbar .widget-content{margin:0}.widgetbar h2{margin:0 0 10px}
#blogbar{width:100%;max-width:100%;padding:90px 0 0}
.post{display:block;border:0;margin:0;padding:0;}
.post-title{font-family:'EB Garamond',serif;line-height:normal;position:relative;width:90%;margin:0 auto;padding:0 0 20px}.post-title h1{font-size:35px;margin:0;display:block;font-weight:400}
.post-entry{width:90%;margin:auto}.post-entry img{margin:auto} /* Night Mode */ .night-mode .widget form input[type=text], .night-mode .widget form textarea{background:#2E3138}.night-mode .widget form label{background:#2E3138;color:#ddd}
/* Responsive 640px */ @media screen and (max-width: 640px){.post-title,.post-entry,#sidebar .widget{width:100%}.post-title h1{font-size:30px}.post-entry{font-size:15px}}</style>
</b:if>
<b:if cond='data:view.isError'>
<style>
/* Css Error Page */
#outer{padding:0}
#container-error{z-index:5;width:100%;height:100vh;position:relative;display:table}
#header-error{display:block;height:65px;width:90%;position:absolute;margin:0 auto;left:5%}
#header-error label{transform:rotate(180deg);-webkit-transform:rotate(180deg)}
#header-error label i{background:#414141}
#header-error label i:nth-child(1){-webkit-transform:translateY(2px) rotate(35deg);transform:translateY(2px) rotate(35deg);width:60%;margin-left:40%}
#header-error label i:nth-child(2){-webkit-transform:translateY(0px);transform:translateY(0px);width:90%;margin-left:10%}
#header-error label i:nth-child(3){-webkit-transform:translateY(-2px) rotate(-35deg);transform:translateY(-2px) rotate(-35deg);width:60%;margin-left:40%}
#outer-error{margin:auto;width:100%;display:table-cell;vertical-align:middle}
#outer-error p{display:block;width:80%;font-size:14px;margin:0 auto;line-height:20px}
#outer-error span{font-family:'EB Garamond',serif;font-size:45px;display:block;width:80%;padding:0 0 20px;position:relative;margin:0 auto 20px;color:#ea6d23}
#outer-error span:before{content:'';display:inline-block;width:100px;height:2px;background:#ddd;position:absolute;bottom:0}</style>
</b:if>
<b:if cond='!data:view.isError'>
<script>/*<![CDATA[*/ var prevScrollpos = window.pageYOffset; window.onscroll = function() { var currentScrollPos = window.pageYOffset; if (prevScrollpos > currentScrollPos) { document.getElementById("header").style.top = "0"; } else { document.getElementById("header").style.top = "-60px"; } prevScrollpos = currentScrollPos;}/*]]>*/</script>
<script>/*<![CDATA[*/ var uri = window.location.toString(); if (uri.indexOf("%3D","%3D") > 0) { var clean_uri = uri.substring(0, uri.indexOf("%3D")); window.history.replaceState({}, document.title, clean_uri);} var uri = window.location.toString(); if (uri.indexOf("%3D%3D","%3D%3D") > 0) { var clean_uri = uri.substring(0, uri.indexOf("%3D%3D")); window.history.replaceState({}, document.title, clean_uri);} var uri = window.location.toString(); if (uri.indexOf("&m=1","&m=1") > 0) { var clean_uri = uri.substring(0, uri.indexOf("&m=1")); window.history.replaceState({}, document.title, clean_uri); } var uri = window.location.toString(); if (uri.indexOf("?m=1","?m=1") > 0) { var clean_uri = uri.substring(0, uri.indexOf("?m=1")); window.history.replaceState({}, document.title, clean_uri);}; var protocol=window.location.protocol.replace(/\:/g,''); if(protocol=='http'){ var url=window.location.href.replace('http','https'); window.location.replace(url);} /*]]>*/</script>
</b:if>
</head>
<body itemscope='itemscope' itemtype='https://schema.org/Blog'>
<input class='set-menu' id='setting-container' type='checkbox'/>
<input class='canvas-menu' id='offcanvas-menu' type='checkbox'/>
<div class='content' id='wrapper'>
<b:if cond='!data:view.isError'>
<div id='header'>
<div id='Search-container'>
<form action='/search' class='search-form main-container' id='search-form' method='get'>
<input id='search-container' name='q' placeholder='Write Something...' type='text'/>
<button aria-label='Submit' type='submit'><svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'>
<path d='M443.5 420.2L336.7 312.4c20.9-26.2 33.5-59.4 33.5-95.5 0-84.5-68.5-153-153.1-153S64 132.5 64 217s68.5 153 153.1 153c36.6 0 70.1-12.8 96.5-34.2l106.1 107.1c3.2 3.4 7.6 5.1 11.9 5.1 4.1 0 8.2-1.5 11.3-4.5 6.6-6.3 6.8-16.7.6-23.3zm-226.4-83.1c-32.1 0-62.3-12.5-85-35.2-22.7-22.7-35.2-52.9-35.2-84.9 0-32.1 12.5-62.3 35.2-84.9 22.7-22.7 52.9-35.2 85-35.2s62.3 12.5 85 35.2c22.7 22.7 35.2 52.9 35.2 84.9 0 32.1-12.5 62.3-35.2 84.9-22.7 22.7-52.9 35.2-85 35.2z'>
</path>
</svg></button>
<label class='full-close' onclick='searchFunction()'/>
<script>/*<![CDATA[*/ function searchFunction(){var x=document.getElementById("header");if(x.classList)x.classList.toggle("show");else{var z=x.className.split(" ");0<=(t=z.indexOf("show"))?z.splice(t,1):z.push("show"),x.className=z.join(" ")}} /*]]>*/</script>
</form>
</div>
<div class='main-container' id='header-container' itemprop='hasPart'>
<div class='header-nav left' id='header-nav'>
<label class='navHam' for='offcanvas-menu'><i/><i/><i/></label>
</div>
<b:section class='header-widget' id='header-widget' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Anewsia (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'/>
<b:widget-setting name='displayHeight'>0</b:widget-setting>
<b:widget-setting name='sectionWidth'>790</b:widget-setting>
<b:widget-setting name='useImage'>false</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>BEHIND</b:widget-setting>
<b:widget-setting name='displayWidth'>0</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<b:if cond='data:mobile'>
<div id='header-inner'>
<h1 class='title'>
<b:include name='title'/>
</h1>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title navbar-brand' itemprop='headline' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a class='navbar-brand' expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<h1 class='title'>
<b:include name='title'/>
</h1>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='header-description'>
<data:description/>
</div>
</b:includable>
<b:includable id='title'>
<b:tag expr:href='data:blog.homepageUrl' expr:title='data:title + " - " + data:description' name='a' rel='home'>
<data:title/>
</b:tag>
</b:includable>
</b:widget>
</b:section>
<b:section class='menu-container' id='menu-container' maxwidgets='1' showaddelement='yes'>
<b:widget id='HTML4' locked='false' title='' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><li itemprop='name'><a href='https://fletro.jagodesain.com/p/contact.html' itemprop='url'>Pertanyaan</a></li>
<li itemprop='name'><a href='https://fletro.jagodesain.com/p/contact.html' itemprop='url'>Beri Masukan</a></li>
<li itemprop='name'><a href='https://studio.jagodesain.com/p/checkout.html' itemprop='url'>Buy this template</a></li>
<li itemprop='name'>
<input id='drop-menu-1' name='drop-menu' type='checkbox'/>
<label for='drop-menu-1'>Menu <i class='icon icon-dropdown'></i></label>
<ul>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 1</a></li>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 2</a></li>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 3</a></li>
</ul>
</li>
<li itemprop='name'>
<input id='drop-menu-2' name='drop-menu' type='checkbox'/>
<label for='drop-menu-2'>Menu <i class='icon icon-dropdown'></i></label>
<ul>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 1</a></li>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 2</a></li>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 3</a></li>
<li itemprop='name'><a href='javascript:void(0)' itemprop='url'>Sub-menu 4</a></li>
</ul>
</li></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<ul class='header-menu widget-content' itemprop='isPartOf' itemscope='itemscope' itemtype='https://schema.org/SiteNavigationElement'>
<data:content/>
</ul>
<label class='full-close' for='offcanvas-menu'/>
</b:includable>
</b:widget>
</b:section>
<div class='header-nav right'>
<label aria-label='Search' class='navSearch' for='search-container' onclick='searchFunction()'>
<svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'>
<path d='M443.5 420.2L336.7 312.4c20.9-26.2 33.5-59.4 33.5-95.5 0-84.5-68.5-153-153.1-153S64 132.5 64 217s68.5 153 153.1 153c36.6 0 70.1-12.8 96.5-34.2l106.1 107.1c3.2 3.4 7.6 5.1 11.9 5.1 4.1 0 8.2-1.5 11.3-4.5 6.6-6.3 6.8-16.7.6-23.3zm-226.4-83.1c-32.1 0-62.3-12.5-85-35.2-22.7-22.7-35.2-52.9-35.2-84.9 0-32.1 12.5-62.3 35.2-84.9 22.7-22.7 52.9-35.2 85-35.2s62.3 12.5 85 35.2c22.7 22.7 35.2 52.9 35.2 84.9 0 32.1-12.5 62.3-35.2 84.9-22.7 22.7-52.9 35.2-85 35.2z'>
</path>
</svg>
</label>
<label class='navSetting' for='setting-container'>
<svg style='position:relative;right:-8px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'>
<path d='M296 136c0-22.002-17.998-40-40-40s-40 17.998-40 40 17.998 40 40 40 40-17.998 40-40zm0 240c0-22.002-17.998-40-40-40s-40 17.998-40 40 17.998 40 40 40 40-17.998 40-40zm0-120c0-22.002-17.998-40-40-40s-40 17.998-40 40 17.998 40 40 40 40-17.998 40-40z'>
</path>
</svg>
</label>
</div>
<div class='setting-container'>
<span class='setting'>Settings</span>
<ul class='setting-menu'>
<li><input id='night-mode' type='checkbox'/><label for='night-mode' onclick='nightFunction()'><svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'>
<path d='M401.4 354.2c-2.9.1-5.8.2-8.7.2-47.9 0-93-18.9-126.8-53.4-33.9-34.4-52.5-80.1-52.5-128.8 0-27.7 6.1-54.5 17.5-78.7 3.1-6.6 9.3-16.6 13.6-23.4 1.9-2.9-.5-6.7-3.9-6.1-6 .9-15.2 2.9-27.7 6.8C135.1 95.5 80 168.7 80 255c0 106.6 85.1 193 190.1 193 58 0 110-26.4 144.9-68.1 6-7.2 11.5-13.8 16.4-21.8 1.8-3-.7-6.7-4.1-6.1-8.5 1.7-17.1 1.8-25.9 2.2z'>
</path>
</svg><span>Night mode</span><i class='toggle-switch'/></label></li>
<li><input id='fullscreen-mode' type='checkbox'/><label for='fullscreen-mode' onclick='toggleFullScreen()'><svg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'>
<path d='M96 124.2c0-6.9 5.2-12.2 12.2-12.2H176V64h-66.8C75.7 64 48 90.7 48 124.2V192h48v-67.8zM403.6 64H336v48h67.2c6.9 0 12.8 5.2 12.8 12.2V192h48v-67.8c0-33.5-27-60.2-60.4-60.2zM416 386.8c0 6.9-5.2 12.2-12.2 12.2H336v49h67.8c33.5 0 60.2-27.7 60.2-61.2V320h-48v66.8zM108.2 399c-6.9 0-12.2-5.2-12.2-12.2V320H48v66.8c0 33.5 27.7 61.2 61.2 61.2H176v-49h-67.8z'>
</path>
</svg><span>Fullscreen</span><i class='toggle-switch'/></label></li>
</ul>
<label class='full-close' for='setting-container'/>
<script>/*<![CDATA[*/ function nightFunction(){var x=document.getElementById("wrapper");if(x.classList)x.classList.toggle("night-mode");else{var z=x.className.split(" ");0<=(t=z.indexOf("night-mode"))?z.splice(t,1):z.push("night-mode"),x.className=z.join(" ")}}; function toggleFullScreen(){document.fullScreenElement&&null!==document.fullScreenElement||!document.mozFullScreen&&!document.webkitIsFullScreen?document.documentElement.requestFullScreen?document.documentElement.requestFullScreen():document.documentElement.mozRequestFullScreen?document.documentElement.mozRequestFullScreen():document.documentElement.webkitRequestFullScreen&&document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT):document.cancelFullScreen?document.cancelFullScreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()}; /*]]>*/</script>
</div>
</div>
</div>
<b:section class='menu-header' id='header-menu'>
<b:widget id='LinkList1' locked='false' title='' type='LinkList' version='1'>
<b:widget-settings>
<b:widget-setting name='text-9'>Label 9</b:widget-setting>
<b:widget-setting name='link-9'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='text-8'>Label 8</b:widget-setting>
<b:widget-setting name='link-7'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='link-8'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='text-10'>Label 10</b:widget-setting>
<b:widget-setting name='link-5'>http://</b:widget-setting>
<b:widget-setting name='link-6'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='link-3'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='link-4'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='text-1'>Label 1</b:widget-setting>
<b:widget-setting name='text-0'>Home</b:widget-setting>
<b:widget-setting name='text-3'>Label 3</b:widget-setting>
<b:widget-setting name='text-2'>Label 2</b:widget-setting>
<b:widget-setting name='text-5'>Label 5</b:widget-setting>
<b:widget-setting name='text-4'>Label 4</b:widget-setting>
<b:widget-setting name='text-7'>Label 7</b:widget-setting>
<b:widget-setting name='text-6'>Label 6</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>javascript:void(0);</b:widget-setting>
<b:widget-setting name='link-2'>javascript:void(0)</b:widget-setting>
<b:widget-setting name='link-0'>http://themeplatinum.blogspot.com</b:widget-setting>
<b:widget-setting name='link-10'>javascript:void(0)</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:title != ""'><h2><data:title/></h2></b:if>
<div class='widget-content'>
<ul class='header-service main-container widget-content' itemscope='itemscope' itemtype='https://schema.org/SiteNavigationElement'>
<b:loop values='data:links' var='link'>
<li itemprop='name'><a expr:href='data:link.target' itemprop='url'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</b:if>
<div id='outer'>
<b:if cond='data:view.isError'>
<div id='container-error'>
<div id='header-error'>
<div class='header-nav' style='display:table'><label class='navHam' for='offcanvas-menu'><a expr:href='data:blog.homepageUrl'><i></i><i></i><i></i></a></label></div>
</div>
<div id='outer-error'>
<span>Something Wrong!</span>
<p>Halaman yang kamu tuju tidak tersedia, <br/>kemungkinan halaman sedang dimodifikasi, telah dipindahkan atau dihapus.</p>
</div>
</div>
<b:else/>