-
Notifications
You must be signed in to change notification settings - Fork 42
/
Median AMP v1.5 Blogger Template By Affizoo.blogspot.com.xml
3097 lines (2905 loc) · 259 KB
/
Median AMP v1.5 Blogger Template By Affizoo.blogspot.com.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 b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateUrl='indie.xml' b:templateVersion='1.3.0' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale.language' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<b:attr cond='data:view.url == data:view.url params { amp: "1" }' name='amp' value='amp'/>
<b:attr name='xmlns' value=''/>
<b:attr name='xmlns:b' value=''/>
<b:attr name='xmlns:data' value=''/>
<b:attr name='xmlns:expr' value=''/><head>
<!--
Name : Median AMP
Version : 1.4
Date : December 17, 2020
Demo : median-amp.blogspot.com
Type : Premium
Website : Affizoo.blogspot.com
============================================================================
NOTE :
This theme is premium (paid).
You can only get it by purchasing officially.
If you get it for free through any method, that means you get it illegally.
============================================================================
-->
<!-- JavaScript Google AMP -->
<meta charset='utf-8'/>
<meta content='width=device-width, minimum-scale=1, initial-scale=1' name='viewport'/>
<meta content='IE=9; IE=8; IE=7; IE=EDGE; chrome=1' http-equiv='X-UA-Compatible'/>
<script async='async' src='https://cdn.ampproject.org/v0.js'/>
<script async='async' custom-element='amp-form' src='https://cdn.ampproject.org/v0/amp-form-0.1.js'/>
<script async='async' custom-element='amp-ad' src='https://cdn.ampproject.org/v0/amp-ad-0.1.js'/>
<script async='async' custom-element='amp-iframe' src='https://cdn.ampproject.org/v0/amp-iframe-0.1.js'/>
<style amp-boilerplate='amp-boilerplate'>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate='amp-boilerplate'>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<b:if cond='data:view.isError'><title>Error 404: Page Not Found</title></b:if>
<b:if cond='!data:view.isMultipleItems'><title><data:blog.pageName/></title></b:if>
<b:if cond='data:view.isMultipleItems'>
<b:if cond='data:view.isHomepage'><title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:view.search.query'><title><data:messages.search/>: <data:view.search.query/></title></b:if>
<b:if cond='data:view.search.label'>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:else/>
<title>Recent post: <data:blog.title/></title>
</b:if>
<b:if cond='data:view.isArchive'><title>Blog archive in: <data:blog.pageName/></title></b:if>
</b:if>
</b:if>
<b:if cond='!data:view.isError'>
<!-- Meta Title -->
<b:if cond='data:view.isMultipleItems'>
<meta expr:content='data:blog.pageTitle' property='og:title'/>
<meta expr:content='data:blog.pageTitle' property='og:image:alt'/>
<meta expr:content='data:blog.pageTitle' name='twitter:title'/>
<meta expr:content='data:blog.pageTitle' name='twitter:image:alt'/>
<b:else/>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.pageName' property='og:image:alt'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<meta expr:content='data:blog.pageName' name='twitter:image:alt'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<!-- Meta Image -->
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='resizeImage(data:blog.postImageUrl, 0)' property='og:image'/>
<b:else/>
<meta content='https://1.bp.blogspot.com/-mxCVT67mucg/XuGnFewKQLI/AAAAAAAAPn0/43iTLOGDAO0nOPouyKKo4OpVGjoOpWnNwCK4BGAsYHg/s320/median-img.png' property='og:image'/>
</b:if>
<b:if cond='data:view.isMultipleItems'>
<meta content='https://1.bp.blogspot.com/-mxCVT67mucg/XuGnFewKQLI/AAAAAAAAPn0/43iTLOGDAO0nOPouyKKo4OpVGjoOpWnNwCK4BGAsYHg/s320/median-img.png' name='twitter:image'/>
<b:else/>
<meta expr:content='resizeImage(data:blog.postImageUrl, 0)' name='twitter:image'/>
</b:if>
<b:if cond='data:view.isPost'>
<link expr:href='resizeImage(data:blog.postImageUrl, 0)' rel='image_src'/>
</b:if>
<!-- Meta Description -->
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:post.snippet' name='description'/>
<meta expr:content='data:post.snippet' property='og:description'/>
<meta expr:content='data:post.snippet' name='twitter:description'/>
</b:if>
<!-- Meta Keywords -->
<meta expr:content='data:blog.title + ", " + data:blog.pageName + ", Add_your_addtional_keyword_here "' name='keywords'/>
<meta expr:content='data:blog.title' property='article:tag'/>
<!-- Link Canonical -->
<b:if cond='data:view.url == data:view.url params { amp: "1" }'>
<link expr:href='data:blog.url.canonical' rel='canonical'/>
<link expr:href='data:view.url' rel='alternate'/>
<b:else/>
<link expr:href='data:blog.url.canonical' rel='canonical'/>
<link expr:href='data:view.url + "?m=1"' rel='alternate'/>
<link expr:href='data:view.url params { amp: "1" }' rel='amphtml'/>
</b:if>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<!-- Site Owner -->
<meta content='' name='Author'/>
<link href='#' rel='author'/>
<link href='https://affizoo.blogspot.com' rel='publisher'/>
<meta content='' property='article:author'/>
<meta content='' property='article:publisher'/>
<meta content='' name='twitter:site'/>
<meta content='' name='twitter:creator'/>
<!-- Theme Color -->
<meta content='#005af0' name='theme-color'/>
<meta content='#005af0' name='msapplication-navbutton-color'/>
<meta content='#005af0' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/>
<!-- Blogger Rss -->
<meta content='blogger' name='generator'/>
<link href='https://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.url' rel='openid.delegate'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='"//www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<link href='https://affizoo.blogspot.com' rel='publisher'/>
<!-- Open Graph -->
<meta content='article' property='og:type'/>
<meta content='id_ID' property='og:locale'/>
<meta content='en_US' property='og:locale:alternate'/>
<meta content='summary_large_image' name='twitter:card'/>
<!-- Robots Search -->
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='IE=Edge' http-equiv='X-UA-Compatible'/>
<meta content='true' name='MSSmartTagsPreventParsing'/>
<meta content='index, follow' name='googlebot'/>
<meta content='follow, all' name='Googlebot-Image'/>
<meta content='follow, all' name='msnbot'/>
<!-- Sife Verification -->
<meta content='' name='google-site-verification'/>
<meta content='' name='msvalidate.01'/>
<meta content='' name='p:domain_verify'/>
<meta content='' name='majestic-site-verification'/>
<meta content='Affizoo' name='copyright'/>
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "<data:blog.homepageUrl.canonical/>",
"name": "<data:blog.title/>",
"alternateName": "<data:blog.title/>",
"potentialAction": {
"@type": "SearchAction",
"target": "<data:blog.homepageUrl.canonical/>search?q={search_term_string}&max-results=12",
"query-input": "required name=search_term_string"
}
}
</script>
</b:if>
<!-- /*<b:skin version='1.3.0'><![CDATA[ */
/*
<Variable name="fontBody" description="Nunito Sans" type="font" default="'Nunito Sans', sans-serif" hideEditor="true" value="'Nunito Sans', sans-serif"/>
<Group description="New Comment Required - Dont edit">
<Variable name="body.background" description="Background" color="#505050" type="background" default="$(color) none repeat scroll center center" value="$(color) url() no-repeat scroll center center"/>
<Variable name="body.text.font" description="Font komentar Blogger" type="font" default="$(fontBody)" value="400 14px 'Roboto', sans-serif"/>
<Variable name="body.text.color" description="Color" type="color" default="#505050" value="#505050"/>
<Variable name="body.link.color" description="Link color" type="color" default="#005af0" value="#161617"/>
<Variable name="posts.title.color" description="Post title color" type="color" default="#161617" value="#161617"/>
<Variable name="posts.text.color" description="Post text color" type="color" default="#48525c" value="#505050"/>
<Variable name="posts.icons.color" description="Post info color" type="color" default="#161617" value="#505050"/>
<Variable name="posts.background.color" description="Post background color" type="color" default="#f7f7fc" value="transparent"/>
<Variable name="tabs.font" description="Font" type="font" default="$(fontBody)" value="400 14px 'Roboto', sans-serif"/>
<Variable name="tabs.color" description="Text color" type="color" default="#4d4d4d" value="#505050"/>
<Variable name="tabs.selected.color" description="Selected color" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="Popup background color" type="color" default="$(posts.background.color)" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="Popup text color" type="color" default="#48525c" value="#4d4d4d"/>
<Variable name="tabs.overflow.selected.color" description="Popup selected color" type="color" default="#161617" value="#161617"/>
<Variable name="labels.background.color" description="Labels background color" type="color" default="#fff" value="#ffffff"/>
<Variable name="blog.title.font" description="Blog title font" type="font" default="$(fontBody)" value="400 14px 'Roboto', sans-serif"/>
<Variable name="blog.title.color" description="Blog title color" type="color" default="#fff" value="#ffffff"/>
</Group>
*/
body#layout{width:922px}
body#layout .mainContainer{display:flex}
body#layout header{width:50%}
body#layout .mainbar{width:65%}
body#layout .sidebar{width:35%}
body#layout div#HTML02, body#layout div#HTML03{width:calc(50% - 4px);float:left}
body#layout div#HTML03{float:right}
body#layout div.section:after{content:'';display:block;clear:both}
]]></b:skin>
<style amp-custom='amp-custom'>/*<![CDATA[*/
/* Style warna dan font */
:root {
--main-colors: #161617;
--text-colors: #48525c;
--alt-text-colors: #767676;
--link-colors: #005af0;
--link-hover-colors: #767676;
--link-bg-colors: #005af0;
--icon-colors: #161617;
--icon-alt-colors: #48525c;
--icon-sec-colors: #767676;
--icon-link-colors: #005af0;
--header-bg-colors: #fefefe;
--header-text-colors: #161617;
--header-text-alt-colors: #48525c;
--header-icon-colors: #161617;
--header-icon-alt-colors: #48525c;
--header-icon-sec-colors: #767676;
--nav-bg-colors: #fefefe;
--nav-text-colors: #161617;
--body-bg-colors: #fafafc;
--dark-bg-colors: #1e1e1e;
--dark-bg-sec-colors: #2d2d30;
--dark-bg-hov-colors: #252526;
--dark-colors: #fefefe;
--dark-sec-colors: #989b9f;
--dark-link-colors: #005af0;
--body-font: 'Nunito Sans', sans-serif;
--heading-font: Poppins, sans-serif;
}
/* Body Font */
@font-face {font-family: 'Nunito Sans';font-style: normal;font-weight: 400;font-display: swap;src: local('Nunito Sans Regular'), local('NunitoSans-Regular'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8cfe5.woff) format('woff'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8ccezI9tScg.woff2) format('woff2')}
@font-face {font-family: 'Nunito Sans';font-style: normal;font-weight: 700;font-display: swap;src: local('Nunito Sans Bold'), local('NunitoSans-Bold'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8GBv5p.woff) format('woff'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8GBs5jU1EQVg.woff2) format('woff2')}
@font-face {font-family: 'Nunito Sans';font-style: italic;font-weight: 400;font-display: swap;src: local('Nunito Sans Italic'), local('NunitoSans-Italic'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe0oMImSLYBIv1o4X1M8cce4I90.woff) format('woff'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe0oMImSLYBIv1o4X1M8cce4E9dKdmwp.woff2) format('woff2')}
@font-face {font-family: 'Nunito Sans';font-style: italic;font-weight: 700;font-display: swap;src: local('Nunito Sans Bold Italic'), local('NunitoSans-BoldItalic'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G2JvU1c.woff) format('woff'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G2JvY10IUql-.woff2) format('woff2')}
/* Heading Font */
@font-face {font-family: 'Poppins';font-style: normal;font-weight: 700;font-display: swap;src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v13/pxiByp8kv8JHgFVrLCz7V1g.woff) format('woff'), url(https://fonts.gstatic.com/s/poppins/v13/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2')}
/* Source Code Font */
@font-face {font-family: 'Fira Mono';font-style: normal;font-weight: 400;font-display: swap;src: local('Fira Mono Regular'), local('FiraMono-Regular'), url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtQIg.woff) format('woff'), url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtgJv7S.woff2) format('woff2')}
/* Standar Element */
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
a{-webkit-transition:all .1s ease;transition:all .1s ease;color:var(--link-colors);text-decoration:none}a:hover{color:var(--link-hover-colors)}
h1, h2, h3, h4, h5, h6{margin:0;font-weight:700;font-family:var(--heading-font);color:var(--main-colors)} h1{font-size:1.8rem} h2{font-size:1.7rem} h3{font-size:1.5rem} h4{font-size:1.3rem} h5{font-size:1.2rem} h6{font-size:1.1rem}
table{border-spacing:0} iframe{width:100%;border:0} input,button,select,textarea{font:inherit;font-size:100%;color:inherit;line-height:normal;vertical-align:baseline} img{display:block;position:relative;max-width:100%;font-size:10px;color:transparent}
svg{width:22px;height:22px;vertical-align:middle;fill:var(--icon-colors)}
svg .svg-c{fill:var(--icon-link-colors)}
svg.line .svg-c{fill:none;stroke:var(--icon-link-colors)}
svg.line, svg .line{fill:none;stroke:var(--icon-colors);stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
.hidden, .replaced{display:none} .invisible{visibility:hidden} .clear{width:100%;display:block;margin:0;padding:0;float:none;clear:both}
.full-close{display:block;position:fixed;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:all .2s ease-in;transition:all .2s ease-in;background:transparent;opacity:0;visibility:hidden}
/* Scrollbar Custom */
html, .mainMenu, .Blog pre, .Blog pre code, .Blog code{scrollbar-width:thin}
/* Main Content */
html{scroll-behavior:smooth;overflow-x:hidden}
body{position:relative;margin:0;padding:0;width:100%;font-family:var(--body-font);font-size:14px;color:var(--text-colors);background-color:var(--body-bg-colors);-webkit-font-smoothing: antialiased;-webkit-transition:all .1s ease;transition:all .1s ease}
main{display:block;padding:30px 10px 50px 0;-webkit-transition:all .1s ease;transition:all .1s ease}
main > *:not(:last-child), .sidebar > *:not(:last-child){margin-bottom:60px}
main > #add-widget{padding-top:50px}
.mainAd .widget{margin:30px 0 10px}
.mainSection{width:100%;padding:0 30px 0 250px;-webkit-transition:all .1s ease;transition:all .1s ease}
.mainContainer{display:flex;justify-content:space-between;flex-wrap:wrap}
.mainWrapper:before{content:'';display:block;width:100%;padding-top:60px}
.mainWrapper:after{content:'';display:block;position:absolute;top:0;right:0;width:170px;height:170px;border-radius:0 0 0 200px;background:rgba(0,0,0,.02);z-index:-1}
.dark-mode .mainWrapper:after{background:rgba(0,0,0,.10)}
.mainMenu{position:fixed;top:0;left:0;background-color:var(--nav-bg-colors);width:225px;height:100%;padding:calc(60px + 15px) 0 0 0;-webkit-transition:all .1s ease;transition:all .1s ease;z-index:2;overflow:hidden;box-shadow:0 6px 18px 0 rgba(30,30,30,.035)}
.mainMenu:hover{overflow-y:auto}
.mainMenu .widget{padding-bottom:90px}
.mainbar{min-height:100vh;width:calc(100% - 330px)}
.sidebar{background-color:transparent;width:330px;padding:30px 0 50px 30px;flex-shrink:0}
.sidebar #sidebar-sticky{position:sticky;top:calc(60px + 20px)}
/* Header */
header{position:fixed;top:0;left:0;display:flex;width:100%;height:60px;padding:0 30px 0 25px;background-color:var(--header-bg-colors);color:var(--header-text-colors);z-index:50;box-shadow:0 2px 10px 0 rgba(0,0,0,.07);-webkit-transition:all .1s ease;transition:all .1s ease}
header #header-widget{flex:0 0 auto;display:flex;align-items:center;height:100%;padding:0 0 0 23px;overflow:hidden}
header .widget{margin:auto 0;background-repeat:no-repeat;background-size:100%;background-position:center}
header .header-inner img{max-width:150px;max-height:30px}
header .header-inner h1, header .header-inner h2{max-width:157px;font-size:130%;color:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
header .header-inner a{color:inherit;-webkit-transition:none;transition:none}
header .headerLeft, header .headerRight{display:flex}
header .headerLeft{flex-shrink:0;width:200px}
header .headerRight{flex-grow:1;padding-left:25px}
/* Header Navicon */
header .navicon{position:relative;flex-shrink:0;display:flex;align-items:center;height:100%;z-index:4}
header .navicon.right{margin-left:auto}
header .navicon.search{display:flex;width:14px;position:absolute;top:0;right:10px;padding:0;border:0;outline:0;background:transparent;-webkit-transition:all .3s ease;transition:all .3s ease;opacity:0;visibility:hidden}
header .navicon.search svg{cursor:default;fill:var(--header-icon-sec-colors);width:inherit}
header .navicon.search svg.line{fill:none;stroke:var(--header-icon-sec-colors)}
header .navicon > *{margin:auto 0;width:20px;cursor:pointer}
header .navicon > * svg{width:20px;height:20px}
header .navicon .nav{position:relative;height:20px;padding:3px 0}
header .navicon .nav:before{content:'';width:45px;height:45px;display:block;background-color:rgba(0,0,0,.04);border-radius:50%;position:absolute;top:-13px;left:-12.5px;opacity:0;visibility:hidden;-webkit-transition:all .1s ease;transition:all .1s ease;transform: scale(.75,.75)}
header .navicon .nav:hover:before{opacity:1;visibility:visible;transform: scale(1,1)}
header .navicon .nav i{display:block;position:relative;width:100%;height:1px;background-color:var(--header-icon-alt-colors);margin:0 0 5px 0}
header .navicon .nav i:nth-child(2){width:60%;margin:0}
header .navicon .nav i:nth-child(3){width:80%;background-color:var(--link-bg-colors);margin:5px auto 0 0}
header .navicon .nav.home{display:none}
header .navicon .navSearch{margin-left:12px;display:none}
header .navicon .dark-switch{display:flex;align-items:center;width:auto;font-size:78%;color:var(--header-text-alt-colors);white-space:nowrap}
header .navicon .dark-switch:before{content: attr(data-text)}
header .navicon .dark-switch i{display:flex;align-items:center;position:relative;margin-left:8px;width:28px;height:18px;border-radius:10px;border:1px solid var(--header-icon-alt-colors)}
header .navicon .dark-switch i:before{content:'';display:block;position:relative;left:3px;width:10px;height:10px;border-radius:50%;background-color:var(--header-icon-alt-colors);-webkit-transition:all .1s ease;transition:all .1s ease}
.dark-mode .navicon .dark-switch i{border-color:var(--dark-sec-colors)}
.dark-mode .navicon .dark-switch i:before{left:12px;background-color:var(--dark-sec-colors)}
.dark-mode .navicon .nav:before{background-color:var(--dark-bg-hov-colors)}
/* Header Search */
header .searchbar{flex:0 0 auto;display:flex;align-items:center;width:50%;height:100%;max-width:550px}
header .searchbar form{position:relative;width:100%;margin:auto 0}
header .searchbar .search-button{position:absolute;top:0;left:15px;display:flex;height:100%;align-items:center;padding:0;border:0;outline:0;background:transparent;cursor:pointer}
header .searchbar .search-button svg{width:18px;height:18px;fill:var(--header-icon-sec-colors);-webkit-transition:all .2s ease;transition:all .2s ease}
header .searchbar .search-button svg.line{fill:none;stroke:var(--header-icon-sec-colors)}
header .searchbar input[type=text]{background-color:rgba(236,239,241,.8);outline:0;border:0;padding:12px 20px 12px 45px;border-radius:5px;width:100%;transition: box-shadow .3s;-webkit-transition: box-shadow .3s}
header .searchbar input[type=text]:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.07)}
header .searchbar input[type=text]:focus + .search-button svg{fill:var(--icon-link-colors)}
header .searchbar input[type=text]:focus + .search-button svg.line{fill:none;stroke:var(--icon-link-colors)}
header .searchbar input[type=text]:focus + .search-button + .navicon.search{top:0;opacity:1;visibility:visible}
/* Navigation Menu */
.navMenu, .navMobile{list-style:none;margin:0;padding:0;color:var(--nav-text-colors);font-size:90%}
.navMenu > li{position:relative;padding:10px 20px 10px 25px}
.navMenu > li:before{content:'';position:absolute;top:-1px;left:0;display:block;width:2px;height:42px;border-radius:0 3px 3px 0}
.navMenu > li:hover:before{background-color:var(--icon-link-colors)}
.navMenu > li.break:after{content:'';display:block;width:100%;border-bottom:1px solid #ebeced;margin-top:20px}
.navMenu li .link{display:flex;align-items:center}
.navMenu li .link svg{height:20px;flex-shrink:0;fill:var(--icon-colors)}
.navMenu li .link svg.line{fill:none;stroke:var(--icon-colors)}
.navMenu li .link svg.drop{width:14px;height:14px;margin-left:auto}
.navMenu li .link span.name{display:block;margin-left:21px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:700;line-height:20px}
.navMenu li .link span.new:after{content:'New!';margin-left:5px;font-size:85%;font-weight:400;color:var(--icon-link-colors)}
.navMenu li a{display:block;color:inherit;white-space:nowrap}
.navMenu ul{list-style:none;margin:0;padding:0;overflow:hidden;-webkit-transition:all .1s ease;transition:all .1s ease}
.navMenu ul li{height:0;padding:0 20px 0 43px;-webkit-transition:inherit;transition:inherit;opacity:0;visibility:hidden}
.navMenu .close{display:none;position:fixed;top:0;left:0;padding:20px 20px 20px 25px;width:85%;max-width:480px;background:var(--nav-bg-colors);margin-left:-100%;-webkit-transition:all .1s ease;transition:all .1s ease}
.navMenu .close svg{height:16px}
.navMenu .sosmed{position:fixed;bottom:0;left:0;padding:20px 20px 30px 25px;width:225px;background:var(--nav-bg-colors);-webkit-transition:all .1s ease;transition:all .1s ease}
.navMenu .sosmed:before, .navMenu .close:before{top:10px}
.navMenu .sosmed .link{display:none}
.navMenu .sosmed .link svg{width:22px;height:22px}
.navMenu .sosmed ul{display:flex}
.navMenu .sosmed ul li{height:auto;opacity:1;visibility:visible;padding:0 7px 0 0}
.navMenu .sosmed ul svg{fill:var(--icon-alt-colors)}
.navMenu .sub-menu:checked ~ ul{padding:10px 0 0}
.navMenu .sub-menu:checked ~ ul li{height:38px;padding:10px 20px 10px 43px;opacity:1;visibility:visible}
.navMenu .sub-menu:checked + .link svg.drop{-webkit-transform:rotate(180deg);transform: rotate(180deg)}
.nav-menu:checked + .mainWrapper .mainSection{padding-left:100px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article{width:calc(25% - 15px)}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(3n){margin-right:20px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(4n){margin-right:0}
.nav-menu:checked + .mainWrapper .mainMenu,
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed{width:68px}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed .link{display:block}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu li > * .name,
.nav-menu:checked + .mainWrapper .mainMenu .navMenu li > * .drop,
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed ul{display:none}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu ul{padding:0}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu ul li{height:0;padding:0 20px 0 43px;opacity:0;visibility:hidden}
.nav-menu:checked + .mainWrapper.singleItem .mainSection{padding-left:150px}
.nav-menu:checked + .mainWrapper.singleItem main{padding-right:50px}
/* Navigation Mobile */
.navMobile{display:flex;align-items:center;justify-content:space-evenly;position:fixed;left:0;bottom:-50px;width:100%;height:50px;padding:0 25px;background-color:transparent;z-index:-1}
.navMobile li{visibility:hidden;opacity:0;width:20%;text-align:center}
.navMobile a{display:inline-block}
.navMobile svg{fill:var(--icon-alt-colors);height:20px;width:20px}
.navMobile svg.line{fill:none;stroke:var(--icon-alt-colors)}
.navMobile .dark-link .svg-2{display:none}
.navMobile .top-link{visibility:visible;opacity:1}
.navMobile .top-link > *{display:flex;align-items:center;justify-content:center;position:fixed;right:20px;bottom:20px;width:45px;height:45px;background-color:#fefefe;border-radius:20px;box-shadow:0 10px 20px 0 rgba(30,30,30,.1)}
.navMobile .top-link svg{width:22px;height:22px}
.navMobile .top-link svg.line{stroke:var(--text-colors)}
.dark-mode .navMobile .dark-link .svg-2{display:inline-block}
.dark-mode .navMobile .dark-link .svg-1{display:none}
/* Widget Default */
.widget-title, .sidebar .title, .related-posts .title, .comments .title{display:flex;align-items:center;justify-content:space-between;margin:0 0 25px;font-size:15px}
.widget-title > *{font-size:inherit}
.widget-title a{font-size:85%;color:var(--text-colors)}
.widget:not(:last-child){margin-bottom:50px}
.widget .post-thumb{display:block;position:absolute;top:50%;left:50%;max-width:none;max-height:100%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}
.widget input[type=email], .widget input[type=text], .widget textarea{width:100%;padding:15px;outline:0;border:0px solid rgba(230,230,230,1);border-left:0;border-right:0;border-radius:1px;line-height:22px;background-color:#fefefe;box-shadow:0 10px 20px 0 rgba(30,30,30,.08)}
.widget input[type=submit], .widget input[type=button]{outline:0;border:0;border-radius:1px;padding:10px 15px;line-height:22px;background-color:var(--link-bg-colors);color:#fefefe;cursor:pointer}
.widget input[type=button]{padding:8px 30px}
.sidebar ul, .sidebar ol{list-style:none;margin:0;padding:0}
/* Widget Blog */
.multipleItems .Blog .blog-posts{display:flex;flex-wrap:wrap}
.multipleItems .Blog article{width:calc(33.333% - 13.333px);margin-right:20px}
.multipleItems .Blog article:nth-of-type(3n){margin-right:0}
.singleItem .Blog{padding:0 15px}
.Blog article, .FeaturedPost article{display:block;background-color:#fefefe;margin:0 0 20px;padding:10px 10px 15px;border-radius:8px;box-shadow:0 10px 20px 0 rgba(30,30,30,.07)}
.Blog .post-thumbnail{margin-bottom:15px}
.Blog .post-thumbnail a, .FeaturedPost .item-thumbnail a, .PopularPosts .item-thumbnail a, .Blog .related-posts li .item-thumbnail > *{position:relative;display:block;width:100%;padding-top:52.5%;background-color:#f7f9f8;border-radius:6px;overflow:hidden}
.Blog .post-thumbnail a{padding-top:0;min-height:80px}
.Blog .post-thumbnail a amp-img{min-height:110px}
.Blog .post-thumbnail a amp-img img, .FeaturedPost .item-thumbnail a amp-img img, .PopularPosts .item-thumbnail a amp-img img{position:absolute;max-width:initial;width:auto;height:initial;max-height:100%;top:0;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, 0)}
.FeaturedPost .item-content{width:calc(100% - 225px);padding:20px;flex-grow:1;z-index:2}
.Blog .post-content{}
.Blog .post-label{font-size:11px;line-height:1.58em;margin-bottom:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.Blog .post-label > *{}
.Blog .post-label > *:before{content:'#' attr(data-text)}
.Blog .post-label > *:not(:last-child):after, .FeaturedPost .item-label > *:not(:last-child):after, .PopularPosts .item-label > *:not(:last-child):after{content:','}
.Blog .post-label a:hover, .Blog .post-info .post-author a:hover{text-decoration:underline}
.Blog .post-title{font-size:92%;line-height:1.62em}
.Blog .post-title a, .Blog .post-info .post-author a, .FeaturedPost a, .PopularPosts a{color:inherit}
.Blog .post-title a, .FeaturedPost .item-title a, .PopularPosts .item-title a, .Blog .related-posts .item-title a{color:inherit;overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}
.Blog .post-info .post-header .post-timestamp time:before, .Blog .post-info .post-author .post-authorName > *:before, .Blog .post-info .post-comment > *:before,
.Blog .post-shareInner li > *:after, .Blog .post-authorsName:after, .Blog .post-authorsDesc:before,
.FeaturedPost .item-header .item-label > *:before, .FeaturedPost .item-header .item-timestamp > *:before, .FeaturedPost .item-comment > *:before,
.PopularPosts .item-header .item-label > *:before, .PopularPosts .item-header .item-timestamp > *:before, .PopularPosts .item-comment > *:before, .Profile .solo .profile-data:after, .Label .label-count:before, .Profile .team .team-member > * .profile-name:before, .Profile .team .more-member > span:before{content:attr(data-text)}
/* Ubah jadi display:block; untuk menampilkan snippet artikel */
.Blog .post-snippet{display:none;margin-top:12px;font-size:11px;color:var(--alt-text-colors)}
.Blog .post-info, .FeaturedPost .item-header, .PopularPosts .item-header{display:flex;justify-content:space-between;align-items:flex-end;margin-top:12px;font-size:75%;color:var(--text-colors)}
.Blog .post-info .post-author, .FeaturedPost .item-label, .PopularPosts .item-label{font-size:inherit;line-height:1.58em}
.Blog .post-info .post-header, .FeaturedPost .item-header .item-info, .PopularPosts .item-header .item-info{width:calc(100% - 55px)}
.Blog .post-info .post-header .post-timestamp, .Blog .post-info .post-author .post-authorName,
.FeaturedPost .item-header .item-timestamp, .FeaturedPost .item-header .item-label,
.PopularPosts .item-header .item-timestamp, .PopularPosts .item-header .item-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.Blog .post-info .post-author .post-authorName{display:block}
.Blog .post-info .post-comment, .FeaturedPost .item-comment, .PopularPosts .item-comment{display:flex;width:55px;flex-shrink:0;justify-content:flex-end}
.Blog .post-info .post-comment > *, .FeaturedPost .item-comment > *, .PopularPosts .item-comment > *{display:flex;align-items:flex-end;color:inherit}
.Blog .post-info .post-comment > * svg, .FeaturedPost .item-comment > * svg, .PopularPosts .item-comment > * svg{width:20px;height:20px;fill:var(--icon-sec-colors);margin-left:5px}
.Blog .post-info .post-comment > * svg.line, .FeaturedPost .item-comment > * svg.line, .PopularPosts .item-comment > * svg.line{fill:none;stroke:var(--icon-sec-colors)}
.Blog article.noThumbnail .post-thumb{color:#989b9f;font-size:10px}
.Blog .post{margin:0;padding:0;box-shadow:none;background:transparent;border-radius:0}
.Blog .post h1, .Blog .post h2, .Blog .post h3, .Blog .post h4, .Blog .post h5, .Blog .post h6{margin:1.7em 0 20px;line-height:1.3em}
.Blog .post h1:target, .Blog .post h2:target, .Blog .post h3:target, .Blog .post h4:target, .Blog .post h5:target, .Blog .post h6:target{padding-top:70px;margin-top:0}
.Blog .post .post-headline{margin-bottom:3rem}
.Blog .post .post-title{font-size:27px;margin:0}
.Blog .post .post-description{margin-top:12px;line-height:1.5em;color:var(--alt-text-colors);overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:none}
.Blog .post .post-info{margin-top:30px;font-size:85%;position:relative;flex-wrap:wrap}
.Blog .post .post-info .post-author, .Blog .post .post-info .post-published{font-size:inherit;font-family:var(--heading-font);font-weight:700;color:var(--text-colors);margin-right:18px;flex-shrink:0;line-height:1.58em}
.Blog .post .post-info .post-authorName:before, .Blog .post .post-info .post-header .post-timestamp:before{content:attr(data-text);font-weight:400;font-family:var(--body-font);display:block;margin-bottom:2px}
.Blog .post .post-info .post-authorImage{flex-shrink:0;width:46px;height:46px;margin-right:18px;padding:4px;border-radius:50%;position:relative}
.Blog .post .post-info .post-authorImage img, .Blog .post-authorsImg img{border-radius:50%}
.Blog .post .post-info .post-author .post-authorName, .Blog .post .post-info .post-header .post-timestamp{max-width:120px}
.Blog .post .post-info .post-authorIcon, .Blog .post-authorsIcon{width:50px;z-index:2;position:absolute;left:-2px;bottom:-2px}
.Blog .post .post-info .post-authorIcon svg, .Blog .post .post-authorsIcon svg{width:100%;height:50%;stroke:var(--icon-link-colors)}
.Blog .post .post-info .post-header{width:100%;display:flex;align-items:center}
.Blog .post .post-info .post-header .post-timestamp:before{content:attr(data-update)}
.Blog .post .post-info .post-published{margin-right:0}
.Blog .post .post-info .post-readTime{margin-right:auto}
.Blog .post .post-info .post-readTime span:after{content:' \2605'}
.Blog .post .post-info .post-readTime svg{margin:0 5px 0 0;width:20px;height:20px;fill:var(--icon-sec-colors)}
.Blog .post .post-info .post-readTime svg.line{fill:none;stroke:var(--icon-sec-colors)}
.Blog .post .post-info .post-comment{width:100%;margin-top:18px}
.Blog .post .post-info .post-comment > *{align-items:flex-end}
.Blog .post .post-entry{font-size:16px;line-height:1.65em}
.Blog .post .post-entry p{margin:1.7em 0}
.Blog .post .post-entry img{display:inline-block;border-radius:3px;height:auto}
.Blog .post .post-labels{display:flex;flex-wrap:wrap;margin:30px 0 30px;padding:0;font-size:13px}
.Blog .post .post-labels a:before{content:attr(aria-label)}
/* Widget Blog Share */
.Blog .post-share{display:flex;margin:40px 0;padding:25px 0;border:2px solid rgba(230,230,230,.5);border-left:0;border-right:0;font-size:13px;color:var(--alt-text-colors)}
.Blog .post-shareIcon{flex-grow:1}
.Blog .post-shareIcon:not(:first-child){margin-left:15px}
.Blog .post-shareIcon > *{display:flex;align-items:center;padding:10px 18px;line-height:20px;font-size:14px;color:var(--text-colors)}
.Blog .post-shareIcon > * svg{width:20px;height:20px;fill:var(--icon-alt-colors)}
.Blog .post-shareIcon > * svg.line, .Blog .post-shareInner li > * svg.line{fill:none;stroke:var(--icon-alt-colors)}
.Blog .post-shareIcon.facebook a:after{content:'Facebook';margin-left:15px}
.Blog .post-shareIcon.facebook a:hover svg{fill:#3059b0}
.Blog .post-shareIcon.whatsapp a:after{content:'Whatsapp';margin-left:15px}
.Blog .post-shareIcon.whatsapp a:hover svg{fill:#25D366}
.Blog .post-shareIcon.twitter a:after{content:'Twitter';margin-left:15px}
.Blog .post-shareIcon.twitter a:hover svg{fill:#55acef}
.Blog .post-shareButton{flex-grow:0}
.Blog .post-shareInner ul{display:flex;flex-wrap:wrap;padding:90px 25px 0;list-style:none}
.Blog .post-shareInner ul:before{top:0;left:0;text-align:center}
.Blog .post-shareInner li{width:25%;text-align:center;padding:0 8px 30px}
.Blog .post-shareInner li > *{display:inline-block;color:inherit}
.Blog .post-shareInner li > * svg{width:28px;height:30px;fill:var(--icon-sec-colors)}
.Blog .post-shareInner li > *:after{display:block;margin:5px 0 0;font-size:90%;line-height:20px}
.Blog .post-shareInner li input{margin:0;padding:0;outline:0;border:0;width:1px;height:0;opacity:0}
.Blog .post-shareInner li > .post-shareNotif{display:flex;position:fixed;left:0;right:0;bottom:-42px}
.Blog .post-shareInner li > .post-shareNotif span{display:block;position:relative;bottom:-200px;width:240px;margin:0 auto;padding:10px;border-radius:1px;background-color:rgba(0,0,0,.9);color:#fefefe;line-height:22px;text-align:center;opacity:0;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-webkit-animation:slidein 2s ease forwards;animation:slidein 2s ease forwards}
.Blog .post-shareInner li.close > *:after, .Blog .post-shareInner li > .post-shareNotif:after, .Blog .post-shareInner li > input:after{display:none}
.Blog .post-shareInner, .Profile .team .all-member{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;z-index:50;-webkit-transition:all .2s ease;transition:all .2s ease;opacity:0;visibility:hidden}
.Blog .post-shareInner ul, .Profile .team .all-member .all-memberBox{position:relative;width:95%;max-width:500px;margin:0 auto -50%;background-color:#fafafc;border-radius:20px;z-index:3;-webkit-transition:all .2s ease;transition:all .2s ease}
.Blog .post-shareInner ul:before, .Profile .team .all-member .all-memberBox:before{content:attr(data-text);width:100%;display:block;padding:28px 25px 10px;background-color:#fafafc;border-radius:20px 20px 0 0;font-size:15px;font-weight:700;font-family:var(--heading-font);color:var(--main-colors);position:absolute;z-index:1}
.Blog .post-shareInner .close, .Profile .team .all-member .member-close{width:30px;height:30px;margin:0;position:absolute;top:20px;right:-15px;z-index:1;padding:0}
.Blog .post-shareInner .close label, .Profile .team .all-member .member-close label{margin:0;display:flex;align-items:center;justify-content:center;height:100%;background-color:var(--link-bg-colors);border-radius:50%}
.Blog .post-shareInner .close svg, .Profile .team .all-member .member-close svg{width:22px;height:22px;padding:0;margin:0;background:transparent;fill:#fefefe}
.Blog .post-shareIn:checked + .post-shareInner, .Profile .team .all-team:checked + .all-member{opacity:1;visibility:visible}
.Blog .post-shareIn:checked + .post-shareInner ul, .Profile .team .all-team:checked + .all-member .all-memberBox{margin:0 auto}
.Blog .post-shareIn:checked + .post-shareInner .full-close, .Profile .team .all-team:checked + .all-member .full-close{background:rgba(0,0,0,.35);opacity:1;visibility:visible}
.Blog .separate{display:block;margin:20px 0}
.Blog .separate:before{content:'\2027 \2027 \2027';display:block;color:#505050;text-align:center;font-size:28px;font-style:normal;letter-spacing:0.6em;text-indent:0.6em;clear:both}
.Blog blockquote{position:relative;font-size:.9rem;line-height:1.62em;margin-left:0;margin-right:0;padding:30px 25px;border-left:2px solid #ebeced}
.Blog blockquote.style-1{padding:30px 25px 30px 80px;border-radius:4px;border:2px solid #ebeced}
.Blog blockquote.style-1:before{content:'\201D';display:block;position:absolute;font-weight:700;font-size:60px;font-family:var(--heading-font);top:7px;left:25px;line-height:normal;color:rgba(0,0,0,.15)}
.Blog blockquote.style-1 ul{font-size:97%}
.Blog .note{position:relative;padding:20px 30px 20px 50px;background-color:#e1f5fe;color:#01579b;font-size:.87rem;line-height:1.62em;border-radius:3px}
.Blog .note:before{content:'\2605';position:absolute;left:18px;font-size:20px}
.Blog .noteAlert{background-color:#ffdfdf;color:#e65151}
.Blog .noteAlert:before{content:'\2691'}
.Blog table.tr-caption-container{min-width:inherit;width:auto;margin:0 auto;border:0;position:relative}
.Blog table.tr-caption-container tr td{background-color:transparent;border:0;padding:0}
.Blog table.tr-caption-container tr:nth-child(2n+1) td, .Blog table.tr-caption-container tr:nth-child(2n+1) td:first-child{border:0;background:transparent}
.Blog table.tr-caption-container .tr-caption{display:block;font-size:12px;font-style:italic;color:var(--alt-text-colors);background-color:transparent;border:0}
.Blog table{min-width:70%;margin:0 auto;border:0;overflow:hidden;font-size:14px}
.Blog table th{background-color:transparent;padding:15px 20px;border:1px solid #ddd;border-left:0;font-family:var(--heading-font);font-size:13px}
.Blog table th:last-child, .Blog table tr td:last-child, .Blog table tr:nth-child(2n) td:last-child{border-right:0}
.Blog table td{padding:15px 20px;border:1px solid #ddd;border-left:0;border-top:0;vertical-align:middle}
.Blog table tr:nth-child(2n + 1) td{background-color:rgba(0,0,0,.025)}
.Blog .table{display:block;overflow-y:hidden;overflow-x:auto;border-radius:3px;scroll-behavior:smooth}
.Blog pre{position:relative;font-family: 'Fira Mono', monospace;line-height:1.5em;font-size:13px}
.Blog pre:before{content:'</>';position:absolute;right:0;color:#c5c8c6;font-size:10px;padding:0 15px;z-index:2;line-height:35px}
.Blog pre.html:before{content:'.html'}
.Blog pre.css:before{content:'.css'}
.Blog pre.js:before{content:'.js'}
.Blog code, .Blog .comment-content i[rel="pre"]{display:block;white-space:pre;font-size:13px;position:relative;width:100%;background-color:#2e2e31;color:#c5c8c6;border-radius:3px;padding:30px 20px 20px;margin:25px auto;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;overflow:auto;font-family: 'Fira Mono', monospace;line-height:1.5em}
.Blog pre span{color:#b5bd68}
.Blog pre span.block{color:#fff;background:#1c5393}
.Blog pre i{color:#81a2be;font-style:normal}
.Blog pre i.comment, .Blog pre i.tag, .Blog pre i.blue{color:#969896;user-select:text;-moz-user-select:text;-ms-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-webkit-touch-callout:text} .Blog pre i.tag{color:#cc6666} .Blog pre i.blue{color:#81a2be}
.Blog .code{display:inline;padding:2px 4px;font-size:85%;line-height:inherit;color:#f15a5a;background-color:rgba(0,0,0,.05);font-family: 'Fira Mono', monospace}
.Blog .daftar-isi, .Blog .spoiler{border:2px solid #ebeced;border-left:0;border-right:0;padding:25px 15px;margin:30px 0;font-size:15px}
.Blog .daftar-isi .isi-judul, .Blog .spoiler .spoiler-judul{outline:0;font-weight:700;font-family:var(--heading-font);color:var(--main-colors);display:flex}
.Blog .daftar-isi .isi-judul:after{content: ' Hide all ';font-weight:400;font-size:85%;font-family:var(--body-font);color:var(--text-colors);margin-left:auto}
.Blog .daftar-isi .isi-content{max-height:1000vh;transition:all .4s ease;-webkit-transition:all .4s ease;overflow:hidden}
.Blog .daftar-isi .isi-input:checked ~ .isi-content{max-height:0}
.Blog .daftar-isi .isi-input:checked + .isi-judul:after{content: ' Show all '}
.Blog .spoiler{padding:20px 15px}
.Blog .spoiler .spoiler-judul{align-items:center}
.Blog .spoiler .spoiler-judul .button{margin:0 0 0 auto;padding:5px 15px;font-size:11px;font-weight:400;font-family:var(--body-font)}
.Blog .spoiler .spoiler-judul .button:before{content:' Show all'}
.Blog .spoiler .spoiler-isi{max-height:0;margin-top:0;transition:all .2s ease;-webkit-transition:all .2s ease;overflow:hidden}
.Blog .spoiler .spoiler-isi p, .Blog .post .spoiler .spoiler-isi p{margin-top:10px}
.Blog .spoiler .spoiler-isi pre{margin:10px auto 0}
.Blog .spoiler .spoiler-input:checked + .spoiler-judul .button:before{content:' Hide all'}
.Blog .spoiler .spoiler-input:checked ~ .spoiler-isi{max-height:1000vh;margin-top:1em}
.Blog .post-tabsHeader{display:flex;border-bottom:1px solid #ebeced;margin-bottom:30px;font-size:13px;cursor:default}
.Blog .post-tabsHeader > *:not(:last-child){margin-right:7px}
.Blog .post-tabsHeader > *{padding:8px 15px;border:1px solid #ebeced;border-bottom:0;border-radius:4px 4px 0 0;position:relative}
.Blog .post-tabsHeader > *:after{content:'';display:block;width:100%;height:2px;background-color:#fafafc;position:absolute;left:0;bottom:-1px;visibility:hidden;opacity:0}
.Blog .post-tabsContent{position:relative}
.Blog .post-tabsContent > *{display:none;width:100%}
.Blog .post-tabsContent > * p:first-child{margin-top:0}
.Blog .post-body input[id*="1"]:checked ~ .post-tabs label[for*="1"]:after,
.Blog .post-body input[id*="2"]:checked ~ .post-tabs label[for*="2"]:after,
.Blog .post-body input[id*="3"]:checked ~ .post-tabs label[for*="3"]:after,
.Blog .post-body input[id*="4"]:checked ~ .post-tabs label[for*="4"]:after,
.Blog .post-body input[id*="5"]:checked ~ .post-tabs label[for*="5"]:after{visibility:visible;opacity:1}
.Blog .post-body input[id*="1"]:checked ~ .post-tabs .post-tabsContent div[class*="Content-1"],
.Blog .post-body input[id*="2"]:checked ~ .post-tabs .post-tabsContent div[class*="Content-2"],
.Blog .post-body input[id*="3"]:checked ~ .post-tabs .post-tabsContent div[class*="Content-3"],
.Blog .post-body input[id*="4"]:checked ~ .post-tabs .post-tabsContent div[class*="Content-4"],
.Blog .post-body input[id*="5"]:checked ~ .post-tabs .post-tabsContent div[class*="Content-5"]{display:block}
.Blog .post-pagenav > *{padding:6px 15px}
.Blog .post-pagenav > *:not(:last-child){margin-right:12px}
.Blog .blog-pager, .Blog .post-pagenav{display:flex;flex-wrap:wrap;justify-content:center;margin:20px 0 0;font-size:12px;color:#fefefe;line-height:22px}
.Blog .blog-pager > *, .Blog .post-pagenav > *{display:flex;align-items:center;padding:9px 18px;border-radius:3px;background-color:var(--link-bg-colors);color:inherit;box-shadow:0 10px 20px 0 rgba(30,30,30,.1)}
.Blog .blog-pager > * svg{width:20px;fill:#fefefe}
.Blog .blog-pager > * svg.line{fill:none;stroke:#fefefe}
.Blog .blog-pager .no-post, .Blog .post-pagenav .current{cursor:not-allowed;background-color:#fefefe;color:var(--alt-text-colors)}
.Blog .blog-pager .newer-link{margin-right:auto}
.Blog .blog-pager .older-link{margin-left:auto}
.Blog .blog-pager .js-load svg{margin-right:10px}
.Blog .blog-pager .js-load.error{background-color:#f15a5a}
.Blog .blog-pager > span{margin:0 10px 10px 0}
.Blog .blog-pager > span:last-child{margin-right:0}
.Blog .breadcrumbs{display:flex;align-items:center;margin:0 0 8px;font-size:11px;font-weight:700;font-family:var(--heading-font);color:var(--alt-text-colors)}
.Blog .breadcrumbs > *:first-child{display:none}
.Blog .breadcrumbs > *:not(:last-child):after{content:'\203A';margin:0 7px 0 4px;font-size:13px;line-height:16px}
.Blog .breadcrumbs > *{flex-shrink:0}
.Blog .breadcrumbs > .title-link{flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--alt-text-colors)}
.Blog .accordion{position:relative;list-style:none;margin:20px 0 0;padding:0;display:flex;flex-wrap:wrap;font-size:.9rem;line-height:1.58em}
.Blog .accordion li{width:100%;padding:20px 0;border-bottom:2px solid #ebeced}
.Blog .accordion .accor-title{display:flex;align-items:center}
.Blog .accordion .accor-title .accor-icon{display:flex;align-items:center;justify-content:center;width:20px;height:20px;margin-right:15px;position:relative}
.Blog .accordion .accor-title .accor-icon:before, .Blog .accordion .accor-title .accor-icon:after{content:'';display:block;width:60%;height:2px;border-radius:2px;background-color:var(--main-colors)}
.Blog .accordion .accor-title .accor-icon:after{position:absolute;transform:rotate(90deg);-webkit-transform:rotate(90deg)}
.Blog .accordion .accor-title .title{flex-grow:1;margin:0;line-height:1.48em;font-weight:700;font-family:var(--heading-font);color:var(--main-colors)}
.Blog .accordion .accor-menu:checked + .accor-title .title{color:var(--link-colors)}
.Blog .accordion .accor-menu:checked + .accor-title .accor-icon:before,
.Blog .accordion .accor-menu:checked + .accor-title .accor-icon:after{background-color:var(--link-colors)}
.Blog .accordion .accor-menu:checked + .accor-title .accor-icon:after{visibility:hidden;opacity:0}
.Blog .accordion .accor-menu:checked ~ .content{max-height:100vh;padding-top:15px;padding-bottom:8px}
.Blog .accordion .content{margin:0;padding-left:35px;position:relative;overflow:hidden;max-height:0;-webkit-transition:all .2s ease;transition:all .2s ease}
.Blog .download-info{display:flex;align-items:center;margin:1.7em 0;padding:15px;border:2px solid #ebeced;border-radius:3px;font-size:13px}
.Blog .download-info .file-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:50px;height:50px;padding:10px;border-radius:8px;color:#fefefe;background:#ebeced linear-gradient(200deg,#00dcc0 0,#005af0 80%);font-weight:700;font-family:var(--heading-font)}
.Blog .download-info .file-text{padding:0 12px;width:calc(100% - 150px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.Blog .download-info .file-link{flex-shrink:0;display:flex;font-size:11px;margin:0 0 0 auto;padding:7px 12px}
.Blog .download-info .file-link .m-icon{width:15px;height:15px}
/* Widget Blog Authors */
.Blog .post-authors{display:flex;margin:50px 0;font-size:13px}
.Blog .post-authorsPhoto{flex-shrink:0;margin-top:10px;margin-right:20px}
.Blog .post-authorsImg{position:relative;padding:4px;width:60px;height:60px;border-radius:50%}
.Blog .post-authorsIcon{width:64px}
.Blog .post-authorsInfo{flex-grow:1}
.Blog .post-authorsName{font-weight:700;font-size:14px;font-family:var(--heading-font);color:var(--main-colors)}
.Blog .post-authorsName:before{content:attr(data-write);line-height:20px;font-weight:400;font-size:12px;font-family:var(--body-font);color:var(--alt-text-colors);display:block}
.Blog .post-authorsDesc{font-size:inherit;margin:10px 0 0;color:var(--text-colors);line-height:1.4em}
.Blog .post-authorsFollow:before{content:'Follow'}
.Blog .post-authorsFollow{display:inline-flex;align-items:center;line-height:19px;margin-top:12px}
.Blog .post-authorsFollow svg.line{width:20px;height:15px;margin-left:5px;stroke:var(--link-colors)}
/* Widget Blog Comments */
.Blog .comments{margin:40px 0}
.Blog .comments-content{margin-bottom:20px}
.Blog .comments-disable{text-align:center}
.Blog .comments-title{display:flex;align-items:center;position:relative;padding-bottom:12px;margin-bottom:35px;border-bottom:2px solid rgba(230,230,230,.5)}
.Blog .comments-title .title{margin:0}
.Blog .comments-title .label-sort{margin-left:auto;display:flex;align-items:center;color:var(--alt-text-colors);font-size:11px}
.Blog .comments-title .label-sort:before, .Blog .comments-title .comment-list label:before, .Blog .comment-disqus .show-comment .button > *:before, .Blog .show-comments.button > *:before{content:attr(data-text)}
.Blog .comments-title .label-sort:before{margin-right:10px}
.Blog .comments-title .label-sort svg{width:20px;height:20px}
.Blog .comments-title .comment-list{position:absolute;top:-5px;right:0;width:150px;padding:10px 0;background-color:rgba(254,254,254,.98);color:var(--alt-text-colors);font-size:12px;border-radius:4px;box-shadow:0 10px 20px 0 rgba(30,30,30,.07);overflow:hidden;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out;z-index:3;opacity:0;visibility:hidden}
.Blog .comments-title .comment-list:before, .Blog .comments-title .comment-list:after{content:'';z-index:3;position:absolute;top:10px;height:37px;width:100%}
.Blog .comments-title .comment-list:after{content:'';z-index:1;background-color:#f1f1f0}
.Blog .comments-title .comment-list label{display:block;position:relative;padding:10px 16px;z-index:2}
.Blog .comments-title .comment-list label:first-child, .Blog .comment-all:checked + .comments-title .comment-list label:last-child{color:var(--link-colors)}
.Blog .comment-short:checked + .comment-list{opacity:1;visibility:visible;top:0;z-index:52}
.Blog .comment-short:checked ~ .full-close{opacity:1;visibility:visible;z-index:51}
.Blog .comment-all:checked + .comments-title .comment-list label:first-child{color:inherit}
.Blog .comment-all:checked + .comments-title .comment-list:before,
.Blog .comment-all:checked + .comments-title .comment-list:after{top:47px}
.Blog .comment-all:checked ~ .comments-content > ol{flex-direction:column-reverse}
.Blog .comments-content .comment-avatar{width:52px;height:52px}
.Blog .comments-content .comment-avatar div{position:relative;overflow:hidden;height:100%;border-radius:50%;background-color:#f2f2f2;box-shadow:0 6px 18px 0 rgba(30,30,30,.035)}
.Blog .comments-content .comment-block{padding:10px 20px 0 40px}
.Blog .comments-content .comment-content{margin-top:15px}
.Blog .comments-content .comment-content.no-reply{margin-bottom:20px}
.Blog .comments-content .comment-replies .comment-content.no-reply{margin-bottom:0}
.Blog .comments-content .comment-header{display:flex;align-items:baseline;overflow:hidden}
.Blog .comments-content .comment-header .name{display:flex;align-items:flex-start;flex-shrink:0;font-size:13px;font-weight:700;font-family:var(--heading-font);color:inherit}
.Blog .comments-content .comment-header .name svg{width:20px;height:16px;margin-left:5px;fill:#519bd6}
.Blog .comments-content .comment-header .name span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:130px}
.Blog .comments-content .comment-header .datetime{margin-left:10px;font-size:11px;color:var(--alt-text-colors);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.Blog .comments-content .comment-header .datetime:before{content:'\2022';margin-right:5px;color:rgba(0,0,0,.3)}
.Blog .comments-content li li{position:relative}
.Blog .comments-content li li .comment-block{padding:5px 0 0 44px}
.Blog .comments-content li li .comment-content{margin-top:10px}
.Blog .comments-content li li .comment-avatar{position:absolute;top:0;left:0;width:32px;height:32px}
.Blog .comments-content li li .comment-avatar div{box-shadow:none}
.Blog .comments-content > ol, .Blog .comments-content > ol ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.Blog .comments-content > ol > li{position:relative;margin:0 0 20px 26px;padding:15px 0 0;background-color:#fefefe;border-radius:12px;box-shadow:0 10px 20px 0 rgba(30,30,30,.07)}
.Blog .comments-content > ol > li > .comment-avatar{position:absolute;top:10px;left:-26px}
.Blog .comments-content > ol > li > .comment-replies{padding:12px 20px 20px 15px;margin-top:15px;background-color:rgba(0,0,0,.025);border-radius:0 0 12px 12px}
.Blog .comments-content > ol > li > .comment-replies .comment-reply{padding:12px 0 0 44px}
.Blog .comments-content > ol > li > .comment-replies .thread-toggle{margin-left:25px}
.Blog .comments-content > ol > li > .comment-replies + .comment-actions{display:none}
.Blog .comments-content > ol > li > .comment-actions{padding:12px 20px 15px 40px;font-size:13px}
.Blog .comments-content > ol > li > .comment-replybox-single{padding:0 20px 0 40px}
.Blog .comments-content > ol ul{margin:15px 0 0}
.Blog .comments-content > ol ul li:not(:last-child){margin-bottom:20px;padding-bottom:20px;border-bottom:1px dashed #ebeced}
.Blog .comment-actions, .Blog .comment-reply, .Blog .thread-toggle{font-size:90%}
.Blog .comment-actions svg, .Blog .comment-reply svg, .Blog .thread-toggle svg{width:14px;height:14px;margin-right:5px;stroke:var(--text-colors)}
.Blog .comment-actions a span:before, .Blog .comment-reply a span:before, .Blog .comment-thread .thread-count:before{content:attr(data-text)}
.Blog .comment-actions a, .Blog .comment-reply a, .Blog .thread-toggle{color:var(--alt-text-colors);display:inline-flex;align-items:center}
.Blog .thread-show:checked + .comment-replies .comment-thread .thread-toggle svg{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
.Blog .thread-show:checked + .comment-replies .comment-thread .thread-chrome,
.Blog .thread-show:checked + .comment-replies .comment-reply,
.Blog .thread-show:checked ~ .comment-replybox-single{display:none}
.Blog .comment-add .comment-reply{display:block;text-align:center}
.Blog .comment-disqus .show-comment .button, .Blog .show-comments.button{display:block;text-align:center;border-width:2px;border-radius:3px;padding-top:15px;padding-bottom:15px;margin-right:0;cursor:pointer;border-color:#ebeced}
.Blog .show-comments + .comments, .Blog .comment-add .comment-reply.hidden{display:none}
.Blog .comment-show:checked + .show-comments{display:none}
.Blog .comment-show:checked ~ .comments{display:block}
.Blog .comment-replybox-single{margin-top:20px}
.Blog .comment-content pre code, .Blog .comment-content i[rel="pre"]{margin:15px 0;display:block;font-size:12px;font-style:normal}
.Blog .comment-content i[rel="pre"]{padding-top:20px}
.Blog .comment-content blockquote, .Blog .comment-content b[rel="quote"]{display:block;padding:15px 25px;margin:15px auto;font-size:14px;font-style:italic;font-weight:400;border-left:2px solid #ebeced}
.Blog .comment-content img{margin:15px auto 15px 0;border-radius:3px}
.Blog .comment-content i[rel="image"]{font-size:13px;display:block;position:relative;min-height:90px;margin:15px auto;overflow:hidden}
.Blog .comment-content i[rel="image"]:before{content:'Image not available on AMP!';border:1px dashed #ebeced;border-radius:3px;padding:15px 25px;text-align:center;font-style:normal;display:flex;align-items:center;justify-content:center;position:absolute;top:0;left:0;bottom:0;right:0;background-color:var(--body-bg-colors)}
.dark-mode .Blog .comment-content i[rel="image"]:before{background-color:var(--dark-bg-colors)}
.Blog .comment-messages{margin:0 0 1.7em;padding:15px 25px;border:2px solid rgba(230,230,230,1);border-radius:3px;line-height:1.58em}
.Blog .comment-messages ol{padding-left:15px;margin:1em 0}
.Blog .sitemaps .sitemap-box{font-size:14px;line-height:1.58em}
.Blog .sitemaps .sitemap-box:not(:last-child){margin-bottom:35px;padding-bottom:25px;border-bottom:2px solid #ebeced}
.Blog .sitemaps .judul{margin-top:0;font-size:14px;color:var(--text-colors)}
.Blog .sitemaps .judul:before{content:'Label: ';margin-right:5px}
.Blog .sitemaps ol{list-style:none;margin:0;padding:0;counter-reset:panduan-count}
.Blog .sitemaps li:not(:last-child){margin-bottom:10px}
.Blog .sitemaps li{display:flex}
.Blog .sitemaps li:before{content:counter(panduan-count) '.';counter-increment:panduan-count;flex-shrink:0;width:40px;font-size:22px;font-family:var(--heading-font);line-height:normal;color:rgba(0,0,0,.15)}
.Blog .sitemaps li a{color:var(--main-colors);font-size:90%;font-weight:700;font-family:var(--heading-font)}
.Blog .sitemaps li a:after{content:'Read more';display:block;margin-top:2px;color:var(--text-colors);font-size:11px;font-family:var(--body-font);font-weight:400;line-height:1.58em}
.Blog .sitemaps li a:hover:after{text-decoration:underline}
.page .Blog .post{border:0}
.page .Blog .breadcrumbs > *:first-child{display:block}
/* Widget FeaturedPost */
.FeaturedPost article{display:flex;align-items:center;flex-wrap:wrap;margin:0;padding:10px;position:relative;overflow:hidden}
.FeaturedPost article:after{content:'';display:block;min-width:25px;padding:4px 0;background-color:var(--link-bg-colors);position:absolute;top:0;right:0;border-radius:0 0 0 3px}
.FeaturedPost .item-thumbnail{flex:0 0 auto;width:310px;margin-right:20px}
.FeaturedPost .item-thumbnail a{padding-top:0;min-height:80px}
.FeaturedPost .item-thumbnail a amp-img{min-height:160px}
.FeaturedPost .item-content{flex:1 0;padding:8px 8px 8px 0;width:calc(100% - 330px)}
.FeaturedPost .item-label a:hover, .PopularPosts .item-label a:hover, .Label li a .label-title:hover{text-decoration:underline}
.FeaturedPost .item-title{font-size:120%;line-height:1.48em}
.FeaturedPost .item-title a, .PopularPosts .item-title a{-webkit-line-clamp:2}
.FeaturedPost .item-entry{margin-top:12px;font-size:90%}
.sidebar .FeaturedPost article{display:block;padding:0;box-shadow:none}
.sidebar .FeaturedPost .item-content{padding:15px 0 0}
.sidebar .FeaturedPost .item-title, .PopularPosts .item-title{font-size:95%}
/* Widget PopularPosts */
.PopularPosts{counter-reset:popular-count}
.PopularPosts article:not(:last-child){margin-bottom:25px}
.PopularPosts .item-thumbnail{margin-bottom:15px}
.PopularPosts .item-thumbnail a{padding-top:0;min-height:80px;background-color:#fefefe;border-radius:3px}
.PopularPosts .item-header{margin-top:5px}
.PopularPosts .no-thumbnail{display:flex}
.PopularPosts .no-thumbnail:before{flex-shrink:0;content:'0' counter(popular-count);counter-increment:popular-count;width:45px;font-weight:700;font-size:22px;font-family:var(--heading-font);color:rgba(0,0,0,.15)}
.PopularPosts .no-thumbnail .item-content{flex-grow:1;width:calc(100% - 45px)}
/* Widget Label */
.Label .widget-content{font-size:90%;color:var(--main-colors)}
.Label ul, .Label .cloud, .Label .cloud .label-all{display:flex;flex-wrap:wrap}
.Label li{width:calc(50% - 12.5px);margin-bottom:13px}
.Label li:nth-child(2n+1){margin-right:25px}
.Label li > *{display:flex;align-items:center;color:inherit}
.Label li > * svg{flex-shrink:0;width:20px;height:20px;margin-left:5px;fill:var(--icon-sec-colors)}
.Label li > * svg.line{fill:none;stroke:var(--icon-sec-colors)}
.Label li > a:hover svg{fill:var(--icon-link-colors)}
.Label li > a:hover svg.line{fill:none;stroke:var(--icon-link-colors)}
.Label li > div > .label-title{color:var(--alt-text-colors)}
.Label li:nth-child(2n+1).label-show{margin:0}
.Label .label-show{width:100%;margin:0}
.Label .label-show ul, .Label .cloud .label-all{width:100%;margin:0;padding:0;max-height:0;overflow:hidden;-webkit-transition:all .4s ease;transition:all .4s ease}
.Label .label-show label{display:inline-flex;align-items:baseline;margin-top:4px;padding:4px 0;color:var(--link-colors)}
.Label .label-show label:before{content: attr(data-show)}
.Label .label-show label:after{content:attr(data-text);margin-left:5px}
.Label .label-show .hidden{display:none}
.Label .label-input:checked + .label-all ul, .Label .cloud .label-input:checked + .label-all{max-height:100vh}
.Label .label-input:checked ~ label:before{content: attr(data-hide)}
.Label .label-input:checked ~ label:after{visibility:hidden}
.Label .label-title{margin-right:auto;padding-right:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.Label .label-count, .Label .label-show label:after{flex-shrink:0;font-size:11px;color:var(--alt-text-colors)}
.Label .cloud > *, .Label .cloud .label-all > *{display:block}
.Label .cloud .label-name, .Blog .post .post-labels a{display:flex;justify-content:space-between;margin:0 8px 8px 0;padding:6px 18px;font-size:12px;border:1px solid rgba(230,230,230,1);border-radius:3px;color:var(--text-colors);line-height:20px}
.Label .cloud .label-size > *:hover, .Label .cloud div.label-name, .Blog .post-labels a:hover{border-color:var(--link-bg-colors)}
.Label .cloud .label-size > *:hover .label-count, .Label .cloud div.label-name .label-count{color:var(--link-bg-colors)}
/* Widget Profile solo */
.Profile{font-size:13px}
.Profile .solo{display:flex;align-items:center;flex-direction:row;position:relative;border-radius:4px;overflow:hidden}
.Profile .solo.has-location{align-items:flex-start}
.Profile .solo .profile-image{flex:0 0 auto;width:60px;height:60px;border-radius:28px;background-color:#f1f1f0}
.Profile .solo .profile-image .profile-g{position:relative;height:60px}
.Profile .solo .profile-image img{border-radius:28px}
.Profile .solo .profile-info{flex-grow:1;margin-right:auto;padding-left:15px}
.Profile .solo .profile-link{color:var(--main-colors);font-weight:700}
.Profile .solo .profile-text{font-size:11px;margin:4px 0 0;color:var(--alt-text-colors);line-height:1.4em}
.Profile .solo .profile-data{font-size:90%;display:flex;align-items:center;margin-top:10px;color:var(--icon-link-colors)}
.Profile .solo .profile-data svg{width:18px;height:18px;margin-right:8px;fill:var(--icon-link-colors)}
.Profile .solo .profile-data svg.line{fill:none;stroke:var(--icon-link-colors)}
.Profile .solo .profile-media{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:var(--body-bg-colors);padding:15px;opacity:0;visibility:hidden;-webkit-transition:all .2s ease;transition:all .2s ease;z-index:2}
.Profile .solo .profile-media li:not(:last-child) a{margin-right:10px}
.Profile .solo .profile-media li a{display:block;padding:5px}
.Profile .solo .profile-media li a:hover svg{fill:var(--icon-link-colors)}
.Profile .solo .profile-media li svg{width:24px;height:24px;fill:var(--icon-sec-colors)}
/* Widget Profile Team */
.Profile .team ul{display:flex;flex-wrap:wrap}
.Profile .team li{width:60px;margin:0 15px 20px 0}
.Profile .team .team-member > *, .Profile .team .more-member > *, .Profile .team .more-member{display:block;position:relative}
.Profile .team .team-member > * .profile-image{position:relative;padding-top:0;height:60px;background-color:#fefefe;border-radius:28px;box-shadow:0 10px 20px 0 rgba(30,30,30,.08);-webkit-transition:transform .2s cubic-bezier(.25,.1,.25,1);transition:transform .2s cubic-bezier(.25,.1,.25,1)}
.Profile .team .team-member > * .profile-image svg{fill:var(--icon-sec-colors)}
.Profile .team .team-member > * .profile-image > *{border-radius:28px}
.Profile .team .team-member > * .profile-image:after, .Profile .solo .profile-g:after{content:'+';display:flex;align-items:center;justify-content:center;width:18px;height:18px;background-color:#fefefe;color:var(--link-bg-colors);border-radius:50%;position:absolute;right:0;bottom:-2px;box-shadow:0 4px 10px 0 rgba(30,30,30,.08);-webkit-transition:all .1s ease;transition:all .1s ease}
.Profile .team .team-member > * .profile-name, .Profile .team .more-member > span{position:absolute;width:100%;text-align:center;color:var(--text-colors);font-size:80%;line-height:1.3em;-webkit-transition:all .2s ease;transition:all .2s ease;opacity:0;visibility:hidden;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.Profile .team .team-member > *:hover .profile-image, .Profile .team .more-member:hover > .profile-more{transform:translateY(-8px);-webkit-transform:translateY(-8px)}
.Profile .team .team-member > *:hover .profile-image:after, .Profile .solo .profile-image:hover .profile-g:after{opacity:0;visibility:hidden}
.Profile .team .team-member > *:hover .profile-name, .Profile .team .more-member:hover > span, .Profile .solo .profile-image:hover .profile-media{opacity:1;visibility:visible}
.Profile .team .more-member > *{padding-top:calc(100% - 4px);border-radius:28px;border:2px dashed #ebeced}
.Profile .team .more-member > * svg{fill:var(--icon-link-colors)}
.Profile .team .more-member > .profile-more{-webkit-transition:transform .2s cubic-bezier(.25,.1,.25,1);transition:transform .2s cubic-bezier(.25,.1,.25,1)}
.Profile .team .more-member > span{padding:0;border:0;border-radius:0}
.Profile .team .all-member .all-memberBox{height:60%}
.Profile .team .all-member ul{overflow-x:hidden;overflow-y:auto;width:100%;max-height:100%;padding:70px 10px 10px 25px}
.Profile .team .all-member li{margin:0 20px 25px 0}
/* Widget FollowByEmail */
.FollowByEmail{position:relative;padding:18px 20px 25px;border:2px solid #ebeced;border-radius:4px;font-size:90%}
.FollowByEmail:after{content:'';display:block;position:absolute;top:0;right:0;width:80px;height:60px;background:rgba(0,0,0,.01);border-radius:0 0 0 100px}
.FollowByEmail .title{font-size:14px;margin-bottom:15px;color:var(--text-colors)}
.FollowByEmail .follow-text{display:block;margin-bottom:18px}
.FollowByEmail .follow-label{position:absolute;top:0;right:0;display:flex;align-items:center;padding:0 15px;height:54px;cursor:pointer}
.FollowByEmail .follow-label svg.line{height:19px;stroke:var(--icon-link-colors)}
.FollowByEmail form, .FollowByEmail > *{position:relative;z-index:1}
.FollowByEmail input[type=submit]{margin-top:13px;width:100%}
/* Widget Contact Form */
.ContactForm{font-size:14px;margin-top:30px;max-width:480px}
.ContactForm form > *:not(:last-child){margin-bottom:15px}
.ContactForm label{display:inline-block;margin-bottom:8px}
.ContactForm div p{display:flex;align-items:center;margin-bottom:0}
/* Footer */
.footbar{position:relative;margin-top:0;padding-top:30px;padding-bottom:30px;color:inherit;font-size:88%}
.footbar .credit p{margin:20px 0 0;overflow:hidden;white-space:nowrap}
.footbar .credit a:hover{text-decoration:underline}
.footbar .credit .creator{opacity:0}
/* Addtional Style */
.button{display:inline-flex;align-items:center;margin:15px 15px 15px 0;padding:10px 20px;outline:0;border:0;color:#fefefe;background-color:var(--link-bg-colors);border-radius:3px;font-size:13px;line-height:22px}
.button.outline{color:var(--text-colors);background-color:transparent;border:1px solid var(--alt-text-colors)}
.button.whatsapp{background-color:#25D366}
.button:hover{color:#fefefe;opacity:.75}
.button.outline:hover{color:var(--link-bg-colors);border-color:var(--link-bg-colors)}
.button-info{display:flex;flex-wrap:wrap;justify-content:center;margin:12px 0 0}
.button-info > *{margin:0 12px 12px 0}
.button-info > *:last-child{margin-right:0}
/* Widget Blog Ad */
.Blog .post-ad .widget, .Blog .post-entry .widget{margin:60px 0}
.Blog .post-ad .widget:before, .Blog .post-entry .widget:before{content:'Sponsored';display:block;margin-bottom:8px;font-size:0.66rem;color:var(--alt-text-colors)}
.mainbar #main-widget > .HTML{display:none}
/* Non-user Select */
.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}
/* Background Icon */
.m-icon{display:inline-block;margin-right:12px;width:18px;height:18px;background-size:cover;background-repeat:no-repeat;background-position:center center}
.m-icon.download{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23161617" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M3 17v3a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-3"/><polyline points="8 12 12 16 16 12"/><line x1="12" x2="12" y1="2" y2="16"/></svg>')}
.m-icon.whatsapp{background-image:url("data:image/svg+xml,<svg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path d='M16,3A13,13,0,0,0,4.53,22.13L3,27.74a1,1,0,0,0,.27,1A1,1,0,0,0,4,29a.84.84,0,0,0,.27,0l5.91-1.65a1,1,0,0,0-.53-1.93L5.42,26.56l1.15-4.3a1,1,0,0,0-.1-.76A11,11,0,1,1,16,27a11.23,11.23,0,0,1-1.84-.15,1,1,0,0,0-1.15.82,1,1,0,0,0,.82,1.15A13,13,0,1,0,16,3Z' fill='%23fff'/><path d='M15,11.21l-1.16-1.6a2.06,2.06,0,0,0-1.5-.84,2.08,2.08,0,0,0-1.62.6l-1.2,1.2a2.81,2.81,0,0,0-.8,2.08c0,1.77,1.36,4,4,6.6,3.09,3,5.23,4,6.69,4a2.7,2.7,0,0,0,2-.81l1.2-1.2a2,2,0,0,0-.24-3.11L20.8,17a2.09,2.09,0,0,0-1.83-.3l-1.49.47a.53.53,0,0,1-.26-.09,11.42,11.42,0,0,1-2.35-2.26.31.31,0,0,1,0-.11c.13-.44.35-1.15.5-1.64A2,2,0,0,0,15,11.21Zm1.29,7.63a2.33,2.33,0,0,0,1.75.2l1.54-.46,1.61,1.25L20,21c-.48.47-2.25.33-5.86-3.21-3-2.91-3.41-4.5-3.41-5.18A.89.89,0,0,1,11,12l1.28-1.19,1.18,1.65c-.16.49-.39,1.22-.51,1.65A2.12,2.12,0,0,0,13,15.51,11.24,11.24,0,0,0,16.33,18.84Z' fill='%23fff'/></svg>")}
/* Keyframes Animation */
@-webkit-keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:62px}50%{opacity:1;bottom:62px}80%{opacity:1;bottom:62px}100%{opacity:0;bottom:-200px;visibility:hidden}}
@keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:62px}50%{opacity:1;bottom:62px}80%{opacity:1;bottom:62px}100%{opacity:0;bottom:-200px;vibility:hidden}}
@-webkit-keyframes nudge{0%{transform:translateX(0)}30%{transform:translateX(-5px)}50%{transform:translateX(5px)}70%{transform:translateX(-2px)}100%{transform:translateX(0)}}
@keyframes nudge{0%{transform:translateX(0)}30%{transform:translateX(-5px)}50%{transform:translateX(5px)}70%{transform:translateX(-2px)}100%{transform:translateX(0)}}
/* Responsive */
@media screen and (min-width:1440px){
.mainMenu{width:280px}
.mainSection{padding-left:310px}
header .headerLeft{width:255px}
header .headerRight{padding-left:30px}
.mainbar{width:calc(100% - 380px)}
.sidebar{width:380px}
.nav-menu:checked + .mainWrapper .mainSection{padding-left:130px}
}
@media screen and (min-width:1600px){
body{font-size:15px}
.mainMenu{width:300px}
.mainSection{padding-left:350px}
header .headerLeft{width:275px}
header .headerRight{padding-left:50px}
header .header-inner h1, header .header-inner h2{max-width:200px}
.nav-menu:checked + .mainWrapper .mainSection{padding-left:150px}
.singleItem #main-widget{max-width:800px;margin-left:auto;margin-right:auto}
.Blog .post .post-entry{font-size:17px;line-height:1.64em}
.Blog input[id*="check1"]:checked ~ .post .post-entry{font-size:15px}
.Blog input[id*="check3"]:checked ~ .post .post-entry{font-size:19px}
}
@media screen and (min-width:1920px){
.multipleItems main > *{max-width:1024px;margin-left:auto;margin-right:auto}
.mainMenu{width:340px}
.mainSection{padding-left:400px}
header .headerLeft{width:315px}
header .headerRight{padding-left:60px}
.nav-menu:checked + .mainWrapper .mainSection{padding-left:220px}
}
@media screen and (min-width:768px){::-webkit-scrollbar{-webkit-appearance:none;width:4px;height:5px}::-webkit-scrollbar-track{background-color:transparent}::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.15);border-radius:10px}::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.45)}::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.45)}}
@media screen and (max-width:1100px){
header .headerLeft{width:175px}
header .header-inner h1, header .header-inner h2{max-width:130px}
.sidebar{width:300px;padding:30px 0 50px 25px}
main{padding-right:0}
.mainbar{width:calc(100% - 300px)}
.mainMenu, .navMenu .sosmed{width:200px}
.mainSection{padding-left:225px;padding-right:25px}
.nav-menu:checked + .mainWrapper.singleItem main{padding-right:30px}
.nav-menu:checked + .mainWrapper.singleItem .mainSection{padding-left:120px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article{width:calc(33.333% - 13.333px)}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(2n),
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(4n){margin-right:20px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(3n),
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(6n){margin-right:0}
.FeaturedPost .item-thumbnail{width:240px}
.FeaturedPost .item-content{width:calc(100% - 260px)}
.FeaturedPost .item-entry{display:none}
.FeaturedPost .item-title{font-size:110%}
.singleItem .Blog{padding:0}
.Blog .post .post-title{font-size:25px}
.multipleItems .Blog article{width:calc(50% - 10px)}
.multipleItems .Blog article:nth-of-type(3n){margin-right:20px}
.multipleItems .Blog article:nth-of-type(2n),
.multipleItems .Blog article:nth-of-type(6n){margin-right:0}
}
@media screen and (max-width:800px){
header{padding:0 25px}
header .navicon > *{cursor:default}
.mainbar, .sidebar{width:100%;padding:0 0 50px} main{padding:40px 0 0}
.mainSection .mainArea{max-width:640px;margin-left:auto;margin-right:auto}
.mainMenu{width:100%;padding:0;background:transparent;box-shadow:none;margin-left:-100%}
.mainMenu .section, .mainMenu .widget{height:100%}
.navMenu{position:fixed;top:0;left:0;background-color:var(--nav-bg-colors);max-width:480px;width:85%;height:100%;margin-left:-100%;padding:calc(60px + 15px) 0 90px;-webkit-transition:all .1s ease;transition:all .1s ease;z-index:3;overflow:hidden;box-shadow:0 6px 18px 0 rgba(30,30,30,.035);border-radius:0 10px 10px 0}
.navMenu .sosmed{max-width:480px;width:85%;margin-left:-100%;border-radius:0 0 10px 0} .navMenu .close{display:block;border-radius:0 10px 0 0}
.navMenu:hover{overflow-y:auto}
/* Navigation menu */
.nav-menu:checked + .mainWrapper .mainSection, .nav-menu:checked + .mainWrapper.singleItem .mainSection, .mainSection{padding-left:25px;padding-right:25px}
.nav-menu:checked + .mainWrapper .mainMenu .full-close.nav-close{background:rgba(0,0,0,.25);opacity:1;visibility:visible}
.nav-menu:checked + .mainWrapper .mainMenu{width:100%;margin-left:0;z-index:51}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed{width:85%;margin-left:0}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .close,
.nav-menu:checked + .mainWrapper .mainMenu .navMenu{margin-left:0}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu li > * .name,
.nav-menu:checked + .mainWrapper .mainMenu .navMenu li > * .drop{display:block}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed .link{display:none}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed ul{display:flex}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sosmed ul li{height:auto;opacity:1;visibility:visible;padding:0 7px 0 0}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sub-menu:checked ~ ul{padding:10px 0 0}
.nav-menu:checked + .mainWrapper .mainMenu .navMenu .sub-menu:checked ~ ul li{height:38px;padding:10px 20px 10px 43px;opacity:1;visibility:visible}
.nav-menu:checked + .mainWrapper.singleItem main{padding-right:0}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article{width:calc(50% - 10px);margin-right:20px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(3n){margin-right:15px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(2n),
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(4n),
.nav-menu:checked + .mainWrapper.multipleItems .Blog article:nth-of-type(6n){margin-right:0}
.dark-mode .mainMenu{background-color:transparent}
.dark-mode .navMenu, .dark-mode .navMenu .close{background-color:var(--dark-bg-sec-colors)}
}
@media screen and (max-width:640px){
.mainSection{overflow:hidden}
header{padding:0 20px;position:absolute}
header .header-inner h1, header .header-inner h2{font-size:120%;max-width:none}
header .searchbar{width:100%;height:auto;max-width:none;position:fixed;left:0;top:0;z-index:10}
header .searchbar input[type=text]{background-color:#fefefe;z-index:3;position:absolute;border-radius:0 0 15px 15px;padding:40px 25px 25px 60px;margin-top:-100%;-webkit-transition:all .3s ease;transition:all .3s ease}
header .searchbar .search-button{margin-top:-100%;z-index:4;height:18px;left:20px;-webkit-transition:all .3s ease;transition:all .3s ease}
header .searchbar input[type=text]:focus{margin-top:0}
header .searchbar input[type=text]:focus + .search-button, header .searchbar input[type=text]:focus + .search-button + .navicon.search{margin-top:40px}
header .searchbar input[type=text]:focus + .search-button + .navicon.search + .full-close.search{background:rgba(0,0,0,.25);opacity:1;visibility:visible}
header .navicon.search{margin-top:-100%;height:22px;right:20px}
.singleItem .navicon .nav{display:none;transform: rotate(180deg);-webkit-transform: rotate(180deg)}
.singleItem .navicon .nav.home{display:block}
.singleItem .navicon .nav i:nth-child(1){width:45%;margin-left:55%;-webkit-transform:translateY(3px) rotate(40deg);transform:translateY(3px) rotate(40deg)}
.singleItem .navicon .nav i:nth-child(2){width:95%;margin-left:0%}
.singleItem .navicon .nav i:nth-child(3){width:10%;margin-left:62.5%;background-color:transparent;-webkit-transform:translateY(0px) rotate(-40deg);transform:translateY(0px) rotate(-40deg)}
/* Navigation mobile show */
.navMobile{background-color:var(--nav-bg-colors);box-shadow:0 -10px 20px 0 rgba(30,30,30,.1);bottom:0}
.navMobile li{visibility:visible;opacity:1}
.navMobile .top-link > *{display:block;position:relative;right:auto;bottom:auto;width:auto;height:auto;background-color:transparent;box-shadow:none}
.navMobile .svg{position:absolute;width:100%;top:-28px;display:block}
.navMobile .svg svg{width:100%;height:36px;fill:var(--nav-bg-colors)}
.dark-mode .navMobile{background-color:var(--dark-bg-sec-colors)}
.dark-mode .navMobile svg{fill:var(--dark-colors)}
.dark-mode .navMobile svg.line, .dark-mode .navMobile svg .line, .dark-mode .navMobile .top-link svg.line{fill:none;stroke:var(--dark-colors)}
.dark-mode .navMobile .svg svg{fill:var(--dark-bg-sec-colors)}
.navMenu > li, .navMenu .close, .navMenu .sosmed{padding-left:20px}
.nav-menu:checked + .mainWrapper .mainSection,
.nav-menu:checked + .mainWrapper.singleItem .mainSection, .mainSection{padding-left:20px;padding-right:20px}
.nav-menu:checked + .mainWrapper.multipleItems .Blog article{width:calc(50% - 7.5px);margin-right:15px}