-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAeroMag (Default).xml
5657 lines (5439 loc) · 343 KB
/
AeroMag (Default).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:version='2' class='v2' expr:dir='data:blog.languageDirection' 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'>
<head>
<b:include data='blog' name='all-head-content'/>
<!-- [ Meta Tag SEO ] -->
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1, maximum-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'/>
<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='xxxxx' 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 href='/favicon.ico' rel='icon' type='image/x-icon'/>
<!-- [ Social Media meta tag ] -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:blog.url'>
<meta expr:content='data:blog.url' property='og:url'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.pageName'>
<meta expr:content='data:blog.pageName' property='og:title'/>
</b:if></b:if></b:if></b:if>
<meta expr:content='data:blog.pageTitle' property='og:title'/>
<b:if cond='data:blog.pageType == "item"'>
<meta content='article' property='og:type'/>
<b:else/>
<meta content='website' property='og:type'/>
</b:if>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<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 expr:content='data:blog.blogspotFaviconUrl' property='og:image'/>
</b:if></b:if>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta content='xxxxx' property='og:description'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<link href='https://plus.google.com/xxxxx/posts' rel='publisher'/>
<link href='https://plus.google.com/xxxxx/about' rel='author'/>
<link href='https://plus.google.com/xxxxx' rel='me'/>
<meta content='xxxxx' name='google-site-verification'/>
<meta content='xxxxx' name='msvalidate.01'/>
<meta content='xxxxx' name='alexaVerifyID'/>
<meta content='Pakistan' name='geo.placename'/>
<meta content='xxxxx' name='Author'/>
<meta content='general' name='rating'/>
<meta content='id' name='geo.country'/>
<meta content='Facebook App ID here' property='fb:app_id'/>
<meta content='Facebook Admin ID here' 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='@username' name='twitter:site'/>
<meta content='@username' name='twitter:creator'/>
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<!--CSS Style Sheets-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300|Oswald:400,300' rel='stylesheet' type='text/css'/>
<link href='http://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css' rel='stylesheet' type='text/css'/>
<!--External JS-->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js'/>
<b:skin><![CDATA[
/*-----------------------------------------------
Name: AeroMag - Blogger Template
Version: 1.1
Designer: alistarbot
Template Shared By: http://www.alistarbot.com/
copyright: All Rights Reserved by alistarbot.com
----------------------------------------------- */
/* Variable Definitions
<Group description="Body Backgrounds" selector="body">
<Variable name="wrap.bg" description="Outer Wrap Background" type="color" default="#eee" value="#eeeeee"/>
<Variable name="content.bg" description="Post Background" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="metro.bg" description="Featured Background" type="color" default="#F8F8F8" value="#F8F8F8"/>
<Variable name="body.meta.bg" description="Meta Background" type="color" default="#F5F5F5" value="#F5F5F5"/>
</Group>
<Group description="Body Colors" selector="body">
<Variable name="main.color" description="Theme Color" type="color" default="#0583f2" value="#0583f2"/>
<Variable name="body.text.c" description="Body Text" type="color" default="#222222" value="#222222"/>
<Variable name="body.heading.c" description="Body Heading" type="color" default="#222222" value="#222222"/>
<Variable name="body.meta.c" description="Body Meta" type="color" default="#6F6F6F" value="#6F6F6F"/>
<Variable name="body.border" description="Body Border" type="color" default="#eeeeee" value="#eeeeee"/>
</Group>
<Group description="Main Fonts" selector="body">
<Variable name="body.font" description="Text Font" type="font" default="normal normal 14px 'open sans', sans-serif" value="normal normal 14px 'open sans', sans-serif"/>
<Variable name="heading.font" description="Heading Font" type="font" default="normal normal 15px 'Oswald', sans-serif" value="normal normal 15px 'Oswald', sans-serif"/>
</Group>
<Group description="Top Bar Nav" selector=".topnav">
<Variable name="topnav.bg" description="TopBar Background" type="color" default="#f5f5f5" value="#f5f5f5"/>
<Variable name="topnav.link" description="TopBar Link" type="color" default="#222222" value="#222222"/>
<Variable name="topnav.icon.bg" description="TopBar Icon Background" type="color" default="#EEEEEE" value="#EEEEEE"/>
<Variable name="topnav.icon.color" description="TopBar Icon Color" type="color" default="#222222" value="#222222"/>
<Variable name="topnav.txt.color" description="TopBar Text color" type="color" default="#FFFFFF" value="#FFFFFF"/>
</Group>
<Group description="Middle Header" selector=".tl-midheader">
<Variable name="midheader.bg" description="Middle Header Background " type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="midheader.link" description="Mid Header Link" type="color" default="#222222" value="#222222"/>
<Variable name="midheader.text" description="Mid Header Text" type="color" default="#222222" value="#222222"/>
<Variable name="midheader.font" description="Header Font" type="font" default="normal normal 45px 'Oswald', sans-serif" value="normal normal 45px 'Oswald', sans-serif"/>
</Group>
<Group description="Dropdown Navigation" selector=".DropDownNavigation">
<Variable name="nav.p" description="Nav Background" type="color" default="#222222" value="#222222"/>
<Variable name="nav.link" description="Nav Link" type="color" default="#fff" value="#ffffff"/>
<Variable name="nav.subp" description="Nav SubMenu bg" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="nav.sublink" description="Nav SubMenu color" type="color" default="#313131" value="#313131"/>
<Variable name="nav.trc" description="Nav Hover" type="color" default="#0583f2" value="#0583f2"/>
</Group>
<Group description="News Ticker" selector=".news-ticker">
<Variable name="news.bg" description="Ticker Background" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="news.c" description="Ticker Link Color" type="color" default="#222222" value="#222222"/>
</Group>
<Group description="Author Box" selector=".tl-author">
<Variable name="author.bg" description="Author Box Background" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="author.text" description="Author Box Text" type="color" default="#666666" value="#666666"/>
</Group>
<Group description="Footer" selector=".tl-footer-wrap">
<Variable name="footer.bg" description="Footer background" type="color" default="#222222" value="#222222"/>
<Variable name="footer.text" description="Footer text" type="color" default="#bbb" value="#bbbbbb"/>
<Variable name="footer.link" description="Footer links" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="footer.border" description="Footer Border" type="color" default="#404040" value="#404040"/>
</Group>
<Group description="Footer Social Area" selector=".footer-heading">
<Variable name="fs.bg" description="Footer Social Background" type="color" default="#1e1e20" value="#1e1e20"/>
</Group>
<Group description="Credit Section" selector=".credit">
<Variable name="credit.bg" description="Credit Background" type="color" default="#2B2B2B" value="#2B2B2B"/>
<Variable name="credit.c" description="Credit text color" type="color" default="#fff" value="#ffffff"/>
</Group>
*/
/*
----------
Index
----------
1. Layout
2. Header
3. Navigation
4. Search Form
5. All Recent Post, comments and random posts
6. Main Wrapper
7. Social Widgets
8. Sidebar
9. Footer
10. Credit
11. Responsive Code
*/
/*-----------
CSS Reset
-----------*/
h1,h2,h3,h4,h5,h6{margin:20px 0;font:$(heading.font)}
h6{font-size:13px}
h5{font-size:15px}
h4{font-size:18px}
h3{font-size:20px}
h2{font-size:25px}
h1{font-size:30px}
.col1{width:100%}
.col2{width:50%}
.col3{width:33.3333333333%}
.col4{width:25%}
i{font-style:normal}
/*-----------
1. Layout
-----------*/
body{background:$(wrap.bg);position:relative;margin:0;padding:0;font:$(body.font);color:$(body.text.c)}
.section,.widget,.widget li,.BlogArchive #ArchiveList ul.flat li,.widget ul{padding:0;margin:0;line-height:1}
[data-style]{position:relative}
.blog-feeds,.post-feeds,.status-msg-wrap{display:none}
a{text-decoration:none}
.inner{max-width:1200px;margin:0 auto;padding:0 25px}
img{max-width:100%}
a{color:$(main.color)}
/*----------
2. Header
-----------*/
#BlogHeader h1,#BlogHeader h1 a,#BlogHeader p,#BlogHeader p a,#header-inner h2,#header-inner h2 a{color:$(midheader.link);font:$(midheader.font);padding:0;margin:0}
#BlogHeader h1,#BlogHeader h1 a,#header-inner h2,#header-inner h2 a,#BlogHeader .titlewrapper p{max-height:90px;line-height:90px}
#BlogHeader h1 a:hover,#BlogHeader p a:hover,#header-inner h2 a:hover{color:$(main.color)}
.header-inner .Header .titlewrapper{padding:0}
.header-inner .Header .descriptionwrapper{padding:0;margin:0}
.tl-midheader{padding:33px 0;color:$(midheader.text);background-color:$(midheader.bg)}
.tl-midheader .main-header{max-width:350px}
.tl-midheader .main-header,.tl-midheader .adbanner{display:table-cell;vertical-align:middle;width:100%}
.header span{display:block;font-size:13px;color:$(midheader.text)}
.header-section.header-contents{position:relative}
.adbanner h2{display:none}
.tl-midheader .main-header{text-align:left;float:left;margin:0 auto;max-height:90px}
.tl-midheader .adbanner{float:right;max-width:728px;max-height:90px}
header.main-header .search-button{float:right;text-align:center;color:#fff;font:inherit;line-height:35px;width:35px;text-align:center;outline:none;padding:0;-webkit-appearance:none;border:none;cursor:pointer;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.headicons{float:right;display:inline-block;margin-right:10px}
.headicons ul{padding:0;margin:0;list-style:none}
.headicons ul li{float:right}
.headicons ul li a{display:block;margin:5px 2px;font:400 23px 'fontawesome',sans-serif;height:25px;width:25px;line-height:25px;text-align:center}
.headicons ul li.twitter a{color:#00aced}
.headicons ul li.facebook a{color:#3b5998}
.headicons ul li.google a{color:#dd4b39}
.headicons ul li.youtube a{color:#bb0000}
.headicons ul li.vimeo a{color:#45bbff}
.headicons ul li.soundcloud a{color:#f50}
.headicons ul li.pinterest a{color:#cb2027}
.headicons ul li.instagram a{color:#9b6954}
header.main-header .header img{height:auto}
.topnav,.tl-midheader{display:block;position:relative}
/* Top Bar */
.topnav{min-height:40px;background:$(topnav.bg)}
.topnav-block{position:relative;overflow:hidden}
.navigation{display:inline-block;float:left}
.tl-topsocial{display:inline-block;float:right}
.navigation-button{display:none;color:$(topnav.txt.color);font:400 22px 'fontawesome';line-height:35px;margin-right:15px}
.navigation h2{display:none}
.navigation ul{padding:0;margin:0;list-style:none}
.navigation ul li{float:left;margin:0;line-height:40px}
.navigation ul li a{display:block;font-size:12px;color:$(topnav.link);padding:0 7px;text-transform:capitalize}
.navigation ul li.selected a,.navigation ul li a:hover{color:$(main.color);font-weight:normal}
.top-social .tl-social-icons .fa{color:$(topnav.icon.color);background:$(topnav.icon.bg)}
.top-social .tl-social-icons .fa:hover{color:#fff}
/*-----------
3. Navigation
-------------*/
.dd-area{position:relative}
.dd-area.is_stuck{z-index:999}
.nav-button{padding:15px;background:$(main.color);color:#fff;font-size:15px!important;font:$(heading.font);line-height:20px;display:none}
.DropDownNavigation{width:100%;position:relative;background:$(nav.p);-webkit-box-shadow:3px 4px 5px rgba(0,0,0,.05);-moz-box-shadow:3px 4px 5px rgba(0,0,0,.05);box-shadow:3px 4px 5px rgba(0,0,0,.05)}
.DropDownNavigation.active{display:block}
.DropDownNavigation{display:block}
.DropDownNavigation>div>h2,.below-post-col>div>div>h2{display:none}
a.search-button{cursor:pointer;border-right:none!important;border-left:1px solid rgba(255,255,255,0.2)}
.dd-area>.navicon,.dd-area>.searchMenu{display:none}
nav .navicon{float:left;width:40px;height:50px;margin-right:5px;cursor:pointer}
.navicon.active span{background:rgba(187,187,187,0)}
.navicon.active span:before{transform:rotate(45deg);top:0}
.navicon.active span:after{transform:rotate(-45deg);bottom:0}
.navicon span{width:30px;border-radius:0;height:1px;display:block;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;margin:25px 0;background:$(nav.link);position:Relative}
.navicon span:before{content:'';top:-10px}
.navicon span:after{content:'';bottom:-10px}
.navicon span:after,.navicon span:before{background:$(nav.link);display:block;position:absolute;border-radius:0;width:30px;height:1px;left:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.panel{width:300px;position:fixed;overflow-y:auto;height:100%;background:#222;color:#CBD2D6;z-index:120;left:0;margin-left:-300px;top:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.panel a{color:#CBD2D6}
.panel a:hover{color:$(main.color)}
.side-panel-in{padding:25px}
.panel .small-slider img{height:auto!important;overflow:hidden!important}
.panel .cloud-label-widget-content a{border:1px solid #101010}
.panel .list-label-widget-content ul li a{color:#CBD2D6}
.list-label-widget-content ul li a:hover{color:$(main.color)}
.panel .list-label-widget-content ul li{border-bottom:1px solid #4A4A4A;background:none}
.panel img#Image1_img{width:100%;height:auto;overflow:hidden}
.panel span.caption{margin-top:15px;text-align:center;font-size:13px;position:relative;display:block}
.panel .widget{margin-bottom:40px}
.panel #Image1 h2{display:none}
.panel .recent-post-item li,.panel .random-inner li,.panel .PopularPosts .widget-content ul li{padding:5px 0;background:none}
.panel .meta{display:none!important}
.panel .random-inner li h3 a,.panel .recent-post-item li h3 a,.panel .PopularPosts .item-title a{color:#CBD2D6}
.panel .recent-list-c,.panel .PopularPosts .item-title{border-bottom:none}
.panel.active{margin-left:0;z-index:9999}
.close-panel{font-family:fontAwesome;cursor:pointer;color:#666;position:absolute;right:0;display:block;top:0;font-size:17px;width:30px;text-align:center;height:30px;line-height:30px;padding:0}
.close-panel:hover{color:$(main.color)}
.poverlay{z-index:119;position:fixed;left:0;top:0;width:100%;height:100%;display:none;background:rgba(0,0,0,0.5)}
nav #rbutton{float:right;display:block;border-left:1px solid rgba(255,255,255,0.2);border-right:1px solid rgba(255,255,255,0.2);color:$(nav.link);text-align:center;line-height:50px}
li.randomPostMenu{float:right}
nav{max-width:1200px;margin:0 auto}
nav ul{list-style:none;padding:0;margin:0;z-index:10}
nav>ul>li{float:left;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;position:relative}
nav>ul>li>a{font:$(heading.font);font-size:14px;color:$(nav.link);border-right:1px solid rgba(255,255,255,0.15);text-transform:uppercase;padding:0 15px;line-height:50px;position:relative;-webkit-transition:color 300ms ease-in-out;-moz-transition:color 300ms ease-in-out;-ms-transition:color 300ms ease-in-out;-o-transition:color 300ms ease-in-out;transition:color 300ms ease-in-out;z-index:1;display:block}
nav>ul>li>a>span{display:none;font:400 13px 'oswald',sans-serif;color:#666}
li.homelink{background:$(nav.trc)}
nav>ul>li:hover>a{color:$(nav.link)}
nav>ul>li>a:before{content:'';-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;height:100%;width:100%;z-index:-1;position:absolute;left:0;top:0;background:$(nav.trc);-webkit-transform:rotate3d(1,0,0,90deg);transform:rotate3d(1,0,0,90deg)}
nav>ul>li:hover>a:before{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}
nav>ul>li.submenu>a,nav>ul>li.nav-rec>a,nav>ul>li.megamenu>a{position:relative}
nav>ul>li.submenu>a,nav>ul>li.nav-rec>a,nav>ul>li.megamenu>a,nav>ul>li.nav-rec-tab>a{padding-right:40px}
nav>ul>li.submenu>a:after,nav ul li.submenu2>a:after,nav>ul>li.nav-rec>a:after,nav>ul>li.megamenu>a:after,nav>ul>li.nav-rec-tab>a:after{content:'\f107';position:Absolute;right:5px;top:50%;width:20px;height:20px;font:400 15px 'fontawesome',sans-serif;margin-top:-10px;text-align:Center;line-height:20px}
nav ul li.submenu2>a:after{content:'\f0da'}
nav ul li.submenu2>a:after{color:#222}
nav>ul>li.submenu>ul,nav>ul>li.submenu>ul>li.submenu2>ul,li.megamenu .megamenu-inner,li.nav-rec-tab .nto,li.nav-rec .nav-outer{filter:drop-shadow(0 0 2px 2px rgba(0,0,0,0.3));-webkit-filter:drop-shadow(0 0 5px rgba(0,0,0,0.1));position:absolute;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}
.toCenter{max-width:1200px;overflow:auto;margin:0 auto;padding:25px 0;background:$(nav.subp);border-top:3px solid $(nav.trc)}
.nav-rec .toCenter{padding:25px 10px}
nav>ul>li.submenu>ul{width:200px;border-top:3px solid $(nav.trc);left:0;top:100%}
nav>ul>li.submenu:hover>ul,nav li.nav-rec:hover div.nav-outer,li.megamenu:hover .megamenu-inner,li.nav-rec-tab:hover .nto{opacity:1;top:100%;visibility:visible}
nav>ul>li ul a{display:block;padding:10px 10px;color:$(nav.sublink);background:$(nav.subp);border-bottom:1px solid rgba(255,255,255,0.15);font:500 14px 'oswald',sans-serif;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}
nav>ul>li ul a:hover{padding-left:15px;color:#fff;background:$(nav.trc)}
nav>ul>li.submenu>ul>li.submenu2{position:relative}
nav>ul>li.submenu>ul>li.submenu2>ul{left:100%;top:0;width:200px}
nav img{width:100%;max-height:200px}
nav>ul>li>ul>li.submenu2:hover>ul{left:100%;visibility:visible;opacity:1}
nav li.nav-rec,li.megamenu,li.nav-rec-tab{position:static}
nav div.nav-outer,li.megamenu .megamenu-inner,nav div.nto{width:100%;left:0;z-index:1000;top:100%;height:0}
li.megamenu .megamenu-inner img{height:150px;width:100%}
.megamenu h4{color:$(nav.sublink)}
.n-item{position:relative;margin:0 10px}
.nimeta{color:#fff;margin-top:10px;font:400 12px 'open sans','fontawesome',sans-serif;text-transform:uppercase}
.n-item .content{position:Absolute;bottom:0;left:0;z-index:11}
.n-item img{position:Absolute;left:0;top:0;z-index:1;width:100%;height:100%!important}
.dd-area .owl-nav{text-align:right;padding:0 20px 0 0;height:40px}
.dd-area .owl-theme .owl-controls .owl-nav [class*=owl-]{padding:5px 10px}
.dd-area .owl-theme .owl-controls .owl-nav [class*=owl-]{background:none}
.dd-area .owl-next,.dd-area .owl-prev{position:relative;text-align:right}
.n-item .popup-c{height:170px}
.n-item h3{margin:10px 0}
.n-item h3 a{color:$(nav.sublink)}
.n-item .currentLabel{background:$(main.color);border-radius:0}
.megamenu-inner{width:100%;z-index:2}
.megamenu>ul{display:none}
.megamenu-inner ul{float:left;width:21%;margin:0 2%}
.megamenu-inner h3{font:500 17px 'oswald',sans-serif;color:$(nav.sublink);margin:10px 0;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}
.megamenu-inner ul li a:hover{padding:10px 0 10px 10px;background:$(nav.trc);color:#fff}
.megamenu-inner ul li a{color:$(nav.sublink);background:transparent;border-bottom:1px solid rgba(255,255,255,0.15);padding:10px 0}
.nav-rec-tab>ul{display:none}
.nav-rec-tab li.active{color:#fff;padding-left:15px;background:$(nav.trc)}
li.nav-rec-tab .tab-outer{float:left;width:20%}
li.nav-rec-tab .nav-tab-outer{float:right;position:relative;min-height:170px;width:80%}
.nav-tabi{display:none}
.nav-tabi.active{display:block!important}
.nto .toCenter{padding:25px 0;position:relative;overflow:hidden}
.nav-outer .owl-nav>div,.nto .owl-nav>div{border:1px solid rgba(255,255,255,0.15);color:$(nav.sublink)}
.nav-outer .owl-nav>div:hover,.nto .owl-nav>div:hover{background:$(main.color);border:1px solid $(main.color);color:#fff}
.nav-layer{width:100%;height:100%;position:Absolute;left:0;top:0}
nav .loaded .nav-layer{display:none}
nav #loader div{background:$(main.color)}
.tab-outer li{padding:10px;border-bottom:1px solid rgba(255,255,255,0.15);color:$(nav.sublink);cursor:pointer;font:$(heading.font);font-size:14px;text-transform:uppercase;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}
li.nav-rec-tab .nav-tab-outer>div .n-item{margin:0 10px}
.tinynav{display:none}
.nav-oi .owl-nav{margin-left:10px}
.toCenter{webkit-box-shadow:3px 4px 5px rgba(0,0,0,.05);-moz-box-shadow:3px 4px 5px rgba(0,0,0,.05);box-shadow:3px 4px 5px rgba(0,0,0,.05)}
/*--------------
4. Search form
---------------*/
.searchpop,.overlay{display:none;position:fixed;width:80%;height:80%;margin:0;left:10%;bottom:10%;z-index:11;overflow:auto;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}
.overlay.active{z-index:10;width:100%;height:100%;left:0;top:0;background:#000;background:rgba(0,0,0,0.7);position:fixed}
.live-search{}
.search-result span{color:#fff}
.queryword{margin:10px;font:400 19px 'open sans',sans-serif;color:#222}
.search-content{z-index:6;display:none;position:relative;width:90%;margin:0 auto}
.live-search .searchbar{width:90%;margin:15px auto;padding:10px;border-radius:2px;background:#fff;border:none;outline:none;color:#666;display:block;font:300 40px 'open sans',sans-serif;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1)}
.live-search .searchbar:focus{outline:none}
.search-result .search-item{overflow:auto;padding:15px;background:#eee;margin-bottom:10px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1)}
.more-result{display:none;background:#222;cursor:pointer;padding:15px;color:#fff;border-radius:5px;font:400 18px 'open sans',sans-serif;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1)}
.more-result a{text-decoration:none;color:#222}
.more-result b{border-bottom:2px dashed #222}
span.close-search:hover{background:#222}
.close-search{position:absolute;right:5px;top:5px;color:#fff;background:$(main.color);width:30px;height:30px;line-height:30px!important;font:100 20px 'fontawesome',sans-serif;cursor:pointer;text-align:center}
.search-item img{width:50px;height:50px;float:left;border-radius:50%}
.search-item a{width:calc(100% - 60px);float:right;display:block;font:300 35px 'open sans',sans-serif;text-decoration:none;color:#222}
/*--------------------------------------------
5. All Recent Post,comments and random posts
---------------------------------------------*/
.forHomeBigger>div>h2{display:none}
.w-gallery{margin:20px 0}
.w-gallery .container{padding-bottom:20%;float:left;width:20%;position:relative}
.w-gallery img{position:absolute;left:0;top:0;width:100%;height:100%}
.w-gallery .wg-date{text-align:center;font:400 13px 'open sans','fontawesome',sans-serif;color:#eee;text-shadow:1px 1px 1px #000;margin-top:70px}
.w-gallery h3{text-align:center;font:400 19px 'oswald',sans-serif;text-shadow:1px 1px 1px #000}
.w-gallery .content h3 a{color:#fff}
.w-gallery .recentLabel{margin-top:10px;background:$(main.color)}
.w-gallery .content{width:100%;height:100%;text-align:center;position:absolute;left:0;top:0;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background:-webkit-linear-gradient(top,rgba(25,35,45,0) 0%,rgba(0,0,0,0.6) 100%);background:linear-gradient(to bottom,rgba(25,35,45,0) 0%,rgba(0,0,0,0.6) 100%)}
.w-gallery .container:hover .content{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background:-webkit-linear-gradient(top,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%);background:linear-gradient(to bottom,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%)}
.tabhead{width:50%;float:left}
.tabhead .popup-c{min-height:300px}
.tabsub{width:47%;float:right;padding:0;margin:0;list-style:none}
.tabsub li.container{height:150px;position:relative;margin-bottom:10px}
.tabsub li.container .layerc{position:absolute;left:0;bottom:0;width:90%;padding:15px 5%}
.rt-contents .container .recentLabel,.recent-post-headline .container .recentLabel{background:#f1c40f}
.rt-contents .container img,.recent-post-headline .container img{position:Absolute;left:0;top:0;width:100%;height:100%}
.rt-contents .layerc h3,.recent-post-headline .layerc h3{margin:10px 0 0 0}
.rt-contents .layerc h3 a,.recent-post-headline .layerc h3 a{color:#fff}
.recent-post-column .toggler{overflow:hidden;margin:-5px}
.recent-post-column .column{width:50%;float:left;margin:-5px 0}
.recent-post-column .columnitem{margin:10px 5px;background:$(content.bg);min-height:80px;overflow:auto}
.recent-post-column img{float:left;width:80px;height:80px}
.recent-post-column .content{float:right;width:-webkit-calc(100% - 100px);width:calc(100% - 100px);padding:5px 10px 10px 10px}
.recent-post-column .content h3{margin:0;padding:0 0 10px 0;font-size: 14px!important;}
.recent-post-slider img{width:100%;height:400px}
.recent-post-slider ul{padding:0;margin:0;list-style:none}
.recent-post-slider .imgouter{height:350px;display:block}
.small-slider img{width:100%;height:250px}
.small-slider .content{background:$(content.bg);padding:15px}
.small-slider h3{padding:10px 0;margin:0}
.small-slider ul li{padding:0;margin:0}
.simple-inner h3{font:normal normal 18px 'oswald',sans-serif;padding:10px 0;margin:0}
.simple-inner .simplehead{position:relative}
.simple-inner .layerc{bottom:0;position:Absolute;width:90%;padding:10px 5%;left:0;z-index:10}
.simple-inner .simple-layer-link{position:Absolute;left:0;bottom:0;width:100%;height:100%;z-index:11}
.simple-content-inner{position:Absolute;left:0;right:0;padding:20px;bottom:0;z-index:12}
.simple-inner h3 a{color:#fff}
.simple-inner .simplehead .imgwrap{min-height:230px}
.simple-inner .simplehead .imgwrap img{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}
.simple-inner a.recentLabel{background:#ffd34e}
.simple-inner .simplesub h3{font-size:15px}
.simple-inner .simplesub h3 a{color:#222}
.simple-inner .simplesubmeta{font-size:12px}
.simple-inner .simplesub{padding:15px}
.simplesub:nth-child(even){background:$(content.bg)}
.simplesub:nth-child(odd){background:$(body.meta.bg);border-top:1px solid $(body.border);border-bottom:1px solid $(body.border)}
.simple-inner .simplemeta{font-size:12px;color:#fff}
.recent-post-single .rhead .name{background:#27ae60}
.recent-post-slider .rhead .name{background:#2980b9}
.recent-post-car .rhead .name{background:#40d47e}
.recent-post-article .rhead .name{background:#2ecc71}
.recent-post-cards .rhead .name{background:#e74c3c}
.recent-post-headline .rhead .name{background:#3498db}
.recent-post-simple .rhead .name{background:#ffd34e}
.recent-post-gallery .rhead .name{background:#f57d00}
.recent-post-headline .rhead .name{background:#8e44ad}
.recent-post-column .rhead .name{background:#e74c3c}
.recent-post-vcar .rhead .name{background:#16a085}
.recent-post-car .owl-controls{position:absolute;top:-55px;right:0}
.recent-post-car .owl-nav{margin:0;background:$(body.meta.bg)!important;height:35px;line-height:35px;width:62px}
.recent-post-car .owl-nav>div{margin:0;padding:0!important;width:30px;height:35px;font-size:20px;border:none;background:$(body.meta.bg);color:$(body.meta.c);border-right:1px solid #eee;line-height:35px}
.recent-post-car .owl-nav>div:hover{background:$(main.color);color:#fff}
.recent-post-car .rhead .link{margin-right:62px;border-right:1px solid #eee}
.rt-contents{position:relative}
.rt-outer.loading .loadingTab{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(255,255,255,0.8);display:block;z-index:20}
.rt-head{background-image:url(https://2.bp.blogspot.com/-x9ForF2_n24/VwtKyy6BApI/AAAAAAAAApE/oaDTOk4egeMH_QmLlnIDWeoCLF-ECV1UA/s1600/bg-pattern.png);background-repeat:repeat;overflow:hidden;position:relative;height:35px;line-height:35px;margin-bottom:15px}
.rt-heading{display:inline-block;line-height:35px!important;font:400 15px 'oswald','fontawesome',sans-serif;padding:0 10px;text-transform:uppercase;background:$(main.color);float:left;color:#fff}
.rt-buttons{padding:0;margin:0;list-style:none;width:70%;float:right;text-align:right}
.rt-buttons>li{font-size:13px;display:inline-block;color:$(body.meta.c);border-right:1px solid $(body.border);background:$(body.meta.bg);text-transform:uppercase;line-height:35px;padding:0 10px;cursor:pointer}
.rt-buttons>li:hover,.rt-buttons>li.active{color:#fff;background:$(main.color)}
.news-ticker{position:relative;height:70px;margin:25px 0;background:$(news.bg);-webkit-box-shadow:0 2px 5px rgba(162,152,143,0.2);-moz-box-shadow:0 2px 5px rgba(162,152,143,0.2);-o-box-shadow:0 2px 5px rgba(162,152,143,0.2);box-shadow:0 2px 5px rgba(162,152,143,0.2)}
.item .news-ticker{margin-bottom:0!important}
.news-ticker .inner{padding:0}
.ticker-inner{padding:0;margin:0;list-style:none;position:Absolute;top:0}
.tickercontainer{float:right;width:-webkit-calc(100% - 120px)!important;width:calc(100% - 120px)!important;height:70px;overflow:hidden;position:relative}
.ticker-inner>li{height:70px;display:inline-block;float:left;margin-right:10px}
.ticker-inner>li img{float:left;width:60px;height:60px;margin:5px 10px;display:block}
.ticker-inner>li .content{float:right;width:-webkit-calc(100% - 80px)!important;width:calc(100% - 80px)!important}
.ticker-inner>li .content .recentLabel{font-size:13px!important;line-height:20px!important;margin:5px 0;color:#fff;background:$(main.color)}
.ticker-inner>li .content h3{margin:0;line-height:30px!important}
.ticker-inner>li .content h3 a{color:$(news.c)}
.ticker-inner>li .content h3 a:hover{color:$(main.color)}
.ticker-label{float:left;background:$(main.color);width:120px;position:relative;height:70px;font-size:15px!important;text-align:Center;color:#fff;line-height:70px!important}
span.ticker-label:after{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(187,0,0,0);border-left-color:$(main.color);border-width:20px;margin-top:-20px;z-index:1;border-left-width:10px}
.single-outer .container{background:$(content.bg)}
ul.cards-outer{position:relative;margin:-10px -1%;overflow:hidden}
.cards-outer .container{float:left;width:31.333%;margin:10px 1%;background:$(content.bg)}
.cards-outer{padding:0;margin:0;list-style:none}
.cards-outer .imgwrap{position:relative;height:150px;background:#222;overflow:hidden}
.single-outer .container .imgwrap{position:relative;height:250px;background:#222;overflow:hidden}
.cards-outer .imgwrap img,.single-outer .container img{display:block;position:absolute;left:0;top:0;width:100%;height:100%}
.cards-outer .content,.single-outer .content{padding:10px;font-size:13px;line-height:normal}
.cards-outer .content p{margin:0;color:$(body.text.c);min-height:80px}
.single-outer p{margin-top:5px}
.cards-outer .card-meta,.single-outer .card-meta{margin:15px 10px 0 10px;padding-top:10px;text-align:center;border-top:1px solid $(body.border)}
.single-outer .single-author{padding:10px;font-size:13px!important}
.layerimg{z-index:2}
.layer{position:absolute;left:0;top:0;width:100%;height:100%;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background:-webkit-linear-gradient(top,rgba(25,35,45,0) 0%,rgba(0,0,0,0.6) 100%);background:linear-gradient(to bottom,rgba(25,35,45,0) 0%,rgba(0,0,0,0.6) 100%);z-index:3}
.layerc{z-index:4}
.cards-outer .recentLabel{background:#e44f25}
.single-outer .recentLabel{background:#27ae60}
.cards-outer .imgwrap .hcontent,.single-outer .hcontent{position:Absolute;bottom:0;left:0;padding:5px 5%;width:90%}
.below-post-col{overflow:auto;position:relative;margin:0 -1%}
.below-post-col>div{width:48%;margin:0 1%}
.below-post-col .bpc1{float:left}
.below-post-col .bpc2{float:right}
.below-post-col>div>div,.ForRecentWidgets>div,.colOuter .widget,.midRecent .widget{margin:0 0 40px 0}
div#Top-FullWidth .widget:first-child{margin-top:25px}
div#bot-full .widget:first-child {margin-top: 40px!important;}
.midRecent{margin:0 -1%}
.midRecent .midcol{float:left;width:31.333%;margin:0 1% 0 1%}
.colOuter{margin:0 0 0 0}
.leftCol{float:left;width:65%}
.rightcol{padding-left:15px}
.leftcol{padding-right:15px}
.rightCol{float:right;width:35%}
div#WideRecent .rhead{display:none!important}
.rhead,.st-content>div>h2,.sidebarWidgets>div>h2,.panel .widget>h2,.rightCol .widget>h2,.footerw>div>h2,.commentTabs{margin-bottom:20px;margin-top:0;height:35px;padding:0;line-height:35px;background-image:url(https://2.bp.blogspot.com/-x9ForF2_n24/VwtKyy6BApI/AAAAAAAAApE/oaDTOk4egeMH_QmLlnIDWeoCLF-ECV1UA/s1600/bg-pattern.png);background-repeat:repeat;text-overflow:ellipsis;white-space:nowrap;position:relative;overflow:hidden}
.rhead .name,.st-content>div>h2 span,.sidebarWidgets>div>h2 span,.panel .widget>h2 span,.rightCol .widget>h2 span,.footerw>div>h2 span,.commentTabs h4 span{text-transform:uppercase;font:$(heading.font);display:inline-block;letter-spacing:1px;line-height:35px;padding:0 20px;vertical-align:middle;float:left;background:$(main.color);color:#fff}
.rhead .link:before{content:"";display:inline-block;vertical-align:middle;height:100%}
.rhead .link{float:right;margin-left:20px;color:$(body.meta.c);background:$(body.meta.bg);padding:0 10px;font:100 12px 'open sans','fontawesome',sans-serif;text-transform:uppercase;line-height:35px;vertical-align:middle;text-overflow:ellipsis}
.rhead .link:hover{background:$(main.color);color:#fff}
.recentLabel{background:$(main.color);text-transform:uppercase;font-size:13px!important;padding:3px 8px;color:#fff;display:inline-block}
.headline{float:left;width:40%;width:-webkit-calc(40% - 20px);width:calc(40% - 20px);margin-right:-webkit-calc(5px + 5px);margin-right:calc(5px + 5px)}
.subhead{float:right;width:60%;padding:0;margin:0;list-style:none}
.popup-c{background:#222;overflow:hidden;min-height:150px;font-family:'fontawesome';position:relative}
.popup-c img{width:100%;height:auto;display:block;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.n-item:hover .popup-c img{-webkit-transform:scale(1.3);-moz-transform:scale(1.3);-ms-transform:scale(1.3);-o-transform:scale(1.3);transform:scale(1.3)}
.popup-c .popup-stuff{position:Absolute;left:0;top:0;opacity:0;width:100%;height:0;background:#2c3e50;background:rgba(44,62,80,0.4);-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.popup-c:hover .popup-stuff{height:100%;opacity:1}
.popup-c .ss{position:Absolute;left:10px;z-index:10;top:10px;height:25px}
.popup-c .ss a{opacity:0;color:#fff;height:25px;width:25px;font-size:15px;line-height:25px;display:block;float:left;text-align:center;border-radius:2px;margin-left:4px;box-shadow:0 1px 1px rgba(0,0,0,0.2)}
.popup-c:hover .ss a{opacity:1}
.popup-c .ss a.ss-f{-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;background:#3765A3}
.popup-c .ss a.ss-g{-webkit-transition:all 300ms ease-in-out 200ms;-moz-transition:all 300ms ease-in-out 200ms;-ms-transition:all 300ms ease-in-out 200ms;-o-transition:all 300ms ease-in-out 200ms;transition:all 300ms ease-in-out 200ms;background:#DF4B38}
.popup-c .ss a.ss-t{-webkit-transition:all 300ms ease-in-out 100ms;-moz-transition:all 300ms ease-in-out 100ms;-ms-transition:all 300ms ease-in-out 100ms;-o-transition:all 300ms ease-in-out 100ms;transition:all 300ms ease-in-out 100ms;background:#5EA9DD}
.popup-c .popup-stuff a{width:35px;height:35px;display:block;background:#2c3e50;color:#fff;font-size:20px;line-height:35px;text-align:center}
.popup-c .popup-stuff a:hover{background:#e74c3c}
.popup-c .popup-link{position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-17.5px}
.popup-c .popup-icon{position:absolute;left:50%;top:50%;margin-left:5px;margin-top:-17.5px}
.popup-c:hover .ss{opacity:1}
.PopularPosts .item-thumbnail{margin:0!important;padding:0!important;width:60px;height:60px}
.PopularPosts .item-thumbnail img{padding:0!important}
.PopularPosts ul,.recent-comments ul,.random-post ul,.recent-post-list ul,.Label ul{padding:0;margin:0;list-style:none}
.recent-comments .comment-item{padding:10px 0;border-bottom:1px solid #eee;clear:both;font:400 13px 'open sans','fontawesome',sans-serif;color:#666;line-height:20px!important}
.recent-comments .comment-item img{width:50px;height:50px;margin:5px;float:left;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,0.2)}
.recent-comments .comment-item .authornamec{color:#333}
.recent-comments .comment-item .commentcontent{color:#666}
.recent-comments .comment-item .commenttime{color:#666}
.recent-comments .comment-item .commentlink{text-align:right}
.recent-comments .comment-item .commentlink a{color:#333;text-decoration:none}
.recent-comments .comment-item .commentlink a:hover{color:#0099ff}
.recent-post-item li,.random-inner li,.PopularPosts .widget-content ul li{position:relative;overflow:auto;padding:10px;background:$(content.bg)}
.recent-post-item li img,.random-inner li img,.PopularPosts img{float:left;margin:0;display:block;width:60px;height:60px}
.recent-list-c,.PopularPosts .item-title{float:right;padding-bottom:10px;border-bottom:1px solid $(body.border);width:-webkit-calc(100% - 70px);width:calc(100% - 70px)}
.recent-post-item li a,.random-inner li a,.PopularPosts .item-title a{display:block}
.PopularPosts .item-title{font:300 17px 'oswald',sans-serif;min-height:35px}
.random-inner li h3,.recent-post-item li h3{padding:0;margin:0 0 10px 0}
.gallery-inner .metadata{font:500 12px 'ubuntu','fontawesome',sans-serif;color:#eee;text-align:Center}
.gallery-inner .container{position:relative;width:33.333%;height:0;padding-bottom:25%;float:left;text-align:center;overflow:hidden}
.gallery-inner h3{margin:0;padding:10px;position:relative}
.gallery-inner h3:before{content:'';height:1px;width:20px;background:#fff;bottom:0;position:absolute;left:50%;margin-left:-5px}
.small-slider .recentLabel{background:#e74c3c}
.gallery-inner .recentLabel{background:#f57d00;margin-top:10px}
.gallery-inner .container img{width:100%;position:absolute;left:0;top:0;display:block;height:100%}
.gallery-inner .container .recentcontent{display:none}
.gallery-inner .content{position:absolute;width:100%;height:100%;left:-100%;background:rgba(0,0,0,0.3)}
.gallery-pop{position:Absolute;width:400px;z-index:10;background:#fff;padding:15px;border:1px solid #eee;display:none}
.gallery-pop h3{font:500 20px 'ubuntu condensed',sans-serif;text-align:Center;margin:0;padding:10px}
.gallery-pop p{color:#bbb;font:400 13px 'open sans',sans-serif;margin:5px 0}
.gallery-pop .metadata{font:400 15px 'open sans','fontawesome',sans-serif;color:#666}
.gallery-inner .container a{color:#FFF}
.headOver{position:absolute;bottom:0;left:0;width:90%;padding:10px 5%;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background:-webkit-linear-gradient(top,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%);background:linear-gradient(to bottom,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%);text-shadow:0 1px 1px #000}
.headOver h3{margin:10px 0}
.headOver .recentLabel,.subhead .recentLabel{background:#e74c3c}
.cards-outer .hcontent h3,.single-outer h3{padding:10px 0;margin:0}
.headOver h3 a,.cards-outer .hcontent h3 a,.single-outer h3 a{color:#fff}
.headcontent{background:$(content.bg);padding:10px 20px}
.headcontent .headmeta{border-top:1px solid $(body.border);padding:10px 0;margin:20px 0 0 0}
.column .container h3{font:400 18px 'oswald',sans-serif;margin:0;padding:0;text-align:Center;text-transform:capitalize}
.headcontent a,.column .container h3 a{color:#ecf0f1}
.headcontent p,.column .container p{line-height:20px;text-align:justify}
.headmeta,.column .container .headmeta{text-align:center;margin:10px 0}
.subhead .container h3,.subcolumn .container h3{font:400 14px 'oswald',sans-serif;margin:0;padding:10px 0 0 0}
.subhead .container h3 a,.subcolumn .container h3 a{color:#e74c3c}
.headline .container{margin-top:10px}
.subhead .container{padding:15px;background:#374140;margin:10px 0;border-radius:3px;box-shadow:1px 1px 1px 1px rgba(0,0,0,0.1)}
.subhead .container .metadata,.subcolumn .container .metadata{font:400 10px 'oswald','fontawesome',sans-serif;color:#666;margin:10px 0}
.column{margin-bottom:10px}
.column .container{padding:15px;background:#e74c3c}
.subcolumn .container{padding:15px;float:left;width:-webkit-calc(50% - 35px);width:calc(50% - 35px);background:#fff;margin:0 2.5px 5px 2.5px
border-radius:4px;box-shadow:1px 1px 1px rgba(0,0,0,0.08)}
.metro-top{padding:25px 0;background:$(metro.bg)}
.metro-top img,.metro-top .imgwrap{width:100%;height:auto}
.metro-top .right{float:right;width:45%;height:445px;margin:2.5px 0;position:relative}
.right-outer{position:relative}
.right-outer .content,.recent-post-slider .content{position:absolute;bottom:0;right:0;left:0;padding:30px 25px}
.slider-meta{color:#fff;font-size:12px}
.slider-meta span.authorname{padding-right:5px}
.metro-top .right img{height:445px}
.metro-top .left{float:left;width:55%;height:450px}
.metro-top img{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out}
.metro-top .sq:hover img,.metro-top .rect:hover img{transform:scale(1.2)}
.metro-top .left-top,.metro-top .left-bottom{height:225px}
.metro-top .sq{background:$(main.color);width:220px;height:220px;margin:2.5px;overflow:hidden;position:relative}
.sq .imgwrap{height:50%;overflow:hidden}
.metro-top .sq .recentLabel{padding:0}
.metro-top .rect{width:60%;position:relative;overflow:hidden;height:220px;width:-moz-calc(100% - 230px);width:calc(100% - 230px);margin:2.5px}
.metro-top .left-top .sq,.metro-top .left-bottom .rect{float:right}
.metro-top .left-bottom .sq,.metro-top .left-top .rect{float:left}
.metro-top .left .content{bottom:0;left:0;position:absolute;padding:10px 5%;width:90%;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.metro-top .left .content,.right-outer .content,.recent-post-slider .content{vertical-align:top;background:transparent;z-index:1;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0.4)));background-image:-moz-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.4));background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.4));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.4))}
.metro-top .left .sq .content{background:transparent!important}
.metro-top h3{font-size:15px}
.metro-top .recentLabel{background:$(main.color)}
.metro-top .left h3{margin:0;padding:10px 0}
.metro-top h3 a{color:#FFF}
.metro-top .right h3{font-size:30px;padding:20px;padding:10px 0;text-transform:capitalize;margin:0}
span.recentdate{padding-right:3px}
.tl-wspace{position:relative;overflow:hidden}
.tl-headlineWrap{float:left;width:60%;min-height:370px;max-height:370px;background:$(content.bg)}
.tl-subheadWrap{float:right;width:40%}
.tl-recentHeadline .mag-subhead{padding-left:25px}
.tl-recentHeadline .container{background:$(content.bg);overflow:hidden;margin-bottom:10px}
.tl-recentHeadline .container:last-child{margin-bottom:0!important}
.tl-recentHeadline .imagewrap{width:100px;height:85px;float:left;overflow:hidden;display:block}
.tl-recentHeadline .recentcontent{float:right;width:calc(100% - 110px);width:-moz-calc(100% - 110px)}
.mag-head h3{font-size:18px!important;margin:10px;text-transform:capitalize}
.mag-subhead h3{font-size:14px!important;padding:10px 10px 5px 5px;margin:0}
.tl-recentHeadline .tl-magMedia img{width:100%}
.tl-recentHeadline .tl-magMedia{position:relative;height:160px;overflow:hidden}
.car-inner .container h3{padding:10px 0;margin:0}
.car-inner .container h3,.rt-contents .layerc h3,.recent-post-headline .layerc h3,.headOver h3,.recent-post-slider h3,.gallery-inner h3,.mag-head h3,.mag-subhead h3,.cards-outer .hcontent h3,.single-outer h3,.simple-inner h3,.recent-post-column .content h3,h2.home-post-title,.random-inner li h3,.recent-post-item li h3,.PopularPosts .item-title,.small-slider h3,.ticker-inner>li .content h3,.n-item h3,header.post-header h1,h1.post-title,.blog-pager-item h6,.blog-pager-item h5,.about-author h3,.related-item h3,.comment-buttons button,.comments .comments-content .user,.comments h4,.home-post .jumpbreak a,.ticker-label,.recentLabel,.metro-top h3,.footer-sub h3{font:$(heading.font);font-size:15px;font-weight:400}
.mag-head h3 a,.mag-subhead h3 a,.simple-inner .simplesub h3 a,.recent-post-column .content h3 a,h2.home-post-title a,.random-inner li h3 a,.recent-post-item li h3 a,.PopularPosts .item-title a,.small-slider h3 a{color:$(body.heading.c)}
.mag-head h3 a:hover,.mag-subhead h3 a:hover,.simple-inner .simplesub h3 a:hover,.recent-post-column .content h3 a:hover,h2.home-post-title a:hover,.random-inner li h3 a:hover,.recent-post-item li h3 a:hover,.PopularPosts .item-title a:hover,.small-slider h3 a:hover{color:$(main.color)}
.headmeta,.column .container .headmeta,.cards-outer .card-meta,.single-outer .card-meta,.simple-inner .simplesubmeta,span.home-time,span.home-author,.recent-list-c .meta,.small-slider-meta,.recent-post-column .content .columnmeta{font-size:12px;color:$(body.meta.c)}
.mag-head p{font-size:13px;line-height:normal}
.mag-head p,.mag-head .tl-headm{padding:0 15px}
.tl-subheadWrap .metadata .authorname{display:none}
.tl-headm,.tl-subheadWrap .metadata{color:$(body.meta.c);font-size:12px}
.tl-subheadWrap .metadata{font-size:12px!important;padding-left:5px;padding-top:3px}
div#WidgetColumnLeft .tl-headlineWrap,div#WidgetColumnRight .tl-headlineWrap,div#WidgetColumn1 .tl-headlineWrap,div#WidgetColumn2 .tl-headlineWrap{float:none;width:100%;border-bottom:1px solid $(body.border);min-height:355px;max-height:none}
#WidgetColumnLeft .tl-subheadWrap,#WidgetColumnRight .tl-subheadWrap,#WidgetColumn1 .tl-subheadWrap,#WidgetColumn2 .tl-subheadWrap{float:none;width:100%}
#WidgetColumnLeft .tl-recentHeadline .mag-subhead,#WidgetColumnRight .tl-recentHeadline .mag-subhead,#WidgetColumn1 .tl-recentHeadline .mag-subhead,#WidgetColumn2 .tl-recentHeadline .mag-subhead{padding-left:0}
#WidgetColumnLeft .tl-recentHeadline .container,#WidgetColumnRight .tl-recentHeadline .container,#WidgetColumn1 .tl-recentHeadline .container,#WidgetColumn2 .tl-recentHeadline .container{margin-bottom:0;border-bottom:1px solid $(body.border)}
#WidgetColumnLeft .mag-head p,#WidgetColumnRight .mag-head p,#WidgetColumn1 .mag-head p,#WidgetColumn2 .mag-head p{margin:10px 0 px 0}
#WidgetColumnLeft .tl-recentHeadline .imagewrap,#WidgetColumnRight .tl-recentHeadline .imagewrap,#WidgetColumn1 .tl-recentHeadline .imagewrap,#WidgetColumn2 .tl-recentHeadline .imagewrap{padding:5px}
/*
Colorbox Core Style:The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden}
#cboxWrapper{max-width:none}
#cboxOverlay{position:fixed;width:100%;height:100%}
#cboxMiddleLeft,#cboxBottomLeft{clear:left}
#cboxContent{position:relative}
#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}
#cboxTitle{margin:0}
#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}
#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}
.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}
.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}
#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}
/*
User Style:Change the following styles to modify the appearance of Colorbox. They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;opacity:0.9;filter:alpha(opacity = 90)}
#colorbox{outline:0}
#cboxContent{margin-top:20px;background:#000}
.cboxIframe{background:#fff}
#cboxError{padding:50px;border:1px solid #ccc}
#cboxLoadedContent{border:5px solid #000;background:#fff}
#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}
#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}
#cboxLoadingGraphic{background:url(https://lh3.googleusercontent.com/ZPmqqrMlb8pdHV5G5F5-sObuNFVr1gS9YogypNkLWjQ=s32-no) no-repeat center center}
/* these elements are buttons,and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:none}
/* avoid outlines on:active (mouseclick),but preserve outlines on:focus (tabbed navigating) */
#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}
#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}
#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(https://lh3.googleusercontent.com/_2-dLkGR8dgq-H1RzkUPLbrSgbpavhrZmisxVlHsZlk=w98-h130-no) no-repeat top left;width:28px;height:65px;text-indent:-9999px}
#cboxPrevious:hover{background-position:bottom left}
#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(https://lh3.googleusercontent.com/_2-dLkGR8dgq-H1RzkUPLbrSgbpavhrZmisxVlHsZlk=w98-h130-no) no-repeat top right;width:28px;height:65px;text-indent:-9999px}
#cboxNext:hover{background-position:bottom right}
#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(https://lh3.googleusercontent.com/_2-dLkGR8dgq-H1RzkUPLbrSgbpavhrZmisxVlHsZlk=w98-h130-no) no-repeat top center;width:38px;height:19px;text-indent:-9999px}
#cboxClose:hover{background-position:bottom center}
/*----------
Owl carousel
------------*/
.owl-carousel .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}
.owl-carousel .owl-animated-in{z-index:0}
.owl-carousel .owl-animated-out{z-index:1}
.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
.owl-height{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}
.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}
.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}
.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0px,0,0)}
.owl-carousel .owl-controls .owl-dot,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.owl-carousel.owl-loaded{display:block}
.owl-carousel.owl-loading{opacity:0;display:block}
.owl-carousel.owl-hidden{opacity:0}
.owl-carousel .owl-refresh .owl-item{display:none}
.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}
.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}
.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}
.owl-carousel.owl-rtl{direction:rtl}
.owl-carousel.owl-rtl .owl-item{float:right}
.no-js .owl-carousel{display:block}
.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}
.owl-carousel .owl-item img{transform-style:preserve-3d}
.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}
.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale 100ms ease;-moz-transition:scale 100ms ease;-ms-transition:scale 100ms ease;-o-transition:scale 100ms ease;transition:scale 100ms ease}
.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);-moz-transition:scale(1.3,1.3);-ms-transition:scale(1.3,1.3);-o-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}
.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}
.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;background-size:contain;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}
.owl-carousel .owl-video-frame{position:relative;z-index:1}
.owl-theme .owl-controls{margin-top:0;text-align:center;-webkit-tap-highlight-color:transparent}
.owl-theme .owl-controls .owl-nav [class*=owl-]{font-family:FontAwesome;color:#999;font-size:20px;padding:10px 10px;background:#fff;display:inline-block;cursor:pointer}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#fff;color:#666;text-decoration:none}
.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}
.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}
.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}
.owl-theme .owl-dots .owl-dot.active span{border:2px solid #fff;background:$(main.color)!important}
.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
.owl-next,.owl-prev{position:absolute;top:50%;z-index:1;bottom:auto;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%)}
.owl-next{right:0}
.owl-prev{left:0}
.metro-top .right:hover .owl-nav{display:block}
.metro-top .right .owl-nav{display:none}
.recent-post-car{overflow:hidden}
.car-inner{padding:0;margin:0;list-style:none}
div#Top-FullWidth .car-inner .container{height:300px!important}
.car-inner .container{position:relative;height:330px}
.car-inner .container .imgwrap img{position:absolute;left:0;top:0;display:block;width:100%;height:100%}
div#Top-FullWidth .recent-post-car .car-inner .container .wrap{background:$(content.bg)}
div#Top-FullWidth .recent-post-car h3 a{color:$(body.heading.c);!important;text-shadow:none}
div#Top-FullWidth .recent-post-car h3 a:hover{color:$(main.color);!important}
.car-inner .container .wrap{bottom:0;left:0;width:90%;padding:10px 5%;position:absolute;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background:-webkit-linear-gradient(top,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%);background:linear-gradient(to bottom,rgba(25,35,45,0) 0%,rgba(0,0,0,0.8) 100%);text-shadow:0 1px 1px #000}
.car-inner .recentLabel{background:#363f45}
.car-inner .container h3 a{color:#fff}
.recent-post-slider h3{margin-top:5px;margin-bottom:0;font-size:22px!important;text-transform:capitalize}
.recent-post-slider h3 a{color:#fff}
.recent-post-slider .slider-meta span.recentdate{padding-right:5px}
.ForRecentWidgets>div>h2{display:none}
.loaded #loader{display:none}
#loader{width:100px;height:70px;position:absolute;top:50%;left:50%;margin:-35px -50px}
#loader div{width:20px;height:20px;background:$(main.color);border-radius:50%;position:absolute}
#d1{-webkit-animation:animate 2s linear infinite;animation:animate 2s linear infinite}
#d2{-webkit-animation:animate 2s linear infinite -.4s;animation:animate 2s linear infinite -.4s}
#d3{-webkit-animation:animate 2s linear infinite -.8s;animation:animate 2s linear infinite -.8s}
#d4{-webkit-animation:animate 2s linear infinite -1.2s;animation:animate 2s linear infinite -1.2s}
#d5{-webkit-animation:animate 2s linear infinite -1.6s;animation:animate 2s linear infinite -1.6s}
@-webkit-keyframes animate{0%{left:100px;top:0}80%{left:0;top:0}85%{left:0;top:-20px;width:20px;height:20px}90%{width:40px;height:15px}95%{left:100px;top:-20px;width:20px;height:20px}100%{left:100px;top:0}}
/*-----------------
6. Main Wrapper
-----------------*/
.wrapper{background:$(wrap.bg);padding-bottom:40px}
.main-wrap{width:70%;float:left;margin-top:40px}
.main-wrap-inner{padding:0 15px 0 0}
.main-wrap .ForRecentWidgets{padding-right:0}
.main-wrap .error-page svg{float:left;margin-right:5px}
.error-page{margin:50px 0 100px 0;text-align:center}
body.error_page .main-wrap{width:100%}
body.error_page .sidebar{display:none!important}
.main-wrap .error-page h2{color:$(main.color);font:$(heading.font);font-size:60px!important;margin:15px 0;line-height:80px}
.error-page h3{font:$(heading.font);font-size:30px!important;margin:10px}
.errorsearch .errorbar{float:left;width:270px;height:40px;background:#fff;border:none;outline:none;text-indent:10px;line-height:40px;padding:0}
.errorsearch .errorsubmit{float:right;background:$(main.color);color:#fff;height:40px;width:80px;font:400 18px 'fontawesome','ubuntu condensed',sans-serif;outline:none;border:none;line-height:40px}
.errorsearch{margin:20px auto;width:350px;height:40px}
.home-post{width:100%;margin-bottom:20px;background:$(content.bg)}
.home-post-inner{position:relative;overflow:hidden}
.hp-imgw{float:left;width:45%}
.hp-tdm{float:right;width:55%}
.postags{position:absolute;left:0}
.postags a{display:none}
.postags a:first-child{display:block!important;background:#222;padding:5px 10px;border-right:4px solid $(main.color);color:#fff}
.postags a:first-child:hover{background:$(main.color);color:#fff}
.home-post-image{position:relative}
.home-post figure{margin:0;overflow:hidden}
.home-post figure img{width:100%;display:block;min-height:170px}
span.home-author{padding:0 15px!important}
span.home-time,span.home-author{padding:0;display:inline-block}
.home-author a{color:$(body.meta.c)}
h2.home-post-title{text-transform:capitalize;font-size:20px!important;margin:0;padding:0}
.home-post-body{font-size:15px;padding:10px 15px;line-height:normal}
h2.home-post-title a{display:block;padding:10px 15px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
h2.home-post-title:hover a{color:$(main.color)}
.home-post .home-desc{font:400 18px 'open sans',sans-serif;color:#666;margin:0 15px 15px 15px;line-height:27px}
.home-post .jumpbreak{text-align:right;margin:0;bottom:0;position:absolute;right:0}
.home-post .jumpbreak a{display:inline-block;padding:10px;margin:0;background:$(content.bg);-webkit-box-shadow:0 0 40px 2px rgba(0,0,0,0.1);box-shadow:0 0 40px 2px rgba(0,0,0,0.1);color:$(body.heading.c);-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.home-post .jumpbreak a:hover{background:$(main.color);color:#fff}
.home-post .jumplink a:hover{color:#3498db}
.breadcrumbs{padding:12px;border-left:3px solid $(main.color);background:#222;color:#fff;margin:0 0 20px 0}
.breadcrumbs a,.breadcrumbs span{color:#fff;margin:0 5px}
.post header{background:$(body.meta.bg)}
header.post-header{margin:10px 0 0 0;border-bottom:3px solid $(main.color);padding:25px}
header.post-header h1,h1.post-title{padding:0 0 15px 0;margin:0 0 20px 0;font-size:35px;color:$(body.heading.c);border-bottom:2px solid $(body.border)}
header .header-labels a{display:inline-block;padding:5px;font:400 13px 'open sans',sans-serif;color:#fff;margin-right:5px;border-radius:2px;background:$(main.color)}
.postmetanshare{height:50px;position:relative;overflow:hidden}
header .post-meta{font-size:12px;color:$(body.meta.c);line-height:25px;width:50%;float:left;text-transform:uppercase}
.post-sharing{margin-top:5px;float:right;text-align:right;width:50%}
.post-sharing span{display:inline-block;float:left;font-weight:bold;line-height:42px}
.post-meta .content span{display:block}
.post-meta img.author-img{width:50px;margin-right:10px;height:50px;border-radius:50%}
.post-meta a{color:$(body.meta.c)}
.post-meta .content,.post-meta .author-img{float:left}
header .post-desc{display:none!important;font:400 17px 'open sans',sans-serif;color:#bbb}
header.post-header .post-header-content{position:absolute;bottom:0;left:0;padding:20px 5%;width:90%;background:rgba(0,0,0,0.5);text-shadow:0 1px 1px #000}
.header-labels{margin-bottom:10px}
.header-labels a{display:inline-block;padding:10px;border-radius:2px;background:$(main.color);font:400 14px 'open sans',sans-serif;text-transform:uppercase;color:#fff}
header.post-header .post-header-content h1{color:#fff;margin:10px 0;font:400 25px 'oswald',sans-serif}
header.post-header .post-header-content .post-meta{font:400 13px 'open sans','fontawesome',sans-serif;leftter-spacing:1px;text-transform:uppercase}
.abovepost{background:$(content.bg)}
.post .post-body{padding:25px;width:auto!important;background:$(content.bg);color:$(body.text.c);font-size:14px;line-height:27px}
.quote-rotate blockquote{float:right;margin:0;min-height:160px;width:-moz-calc(100% - 240px);width:calc(100% - 240px);padding:20px;background:#0583F2;font:400 19px 'open sans',sans-serif;color:#fff}
.quote-rotate blockquote span{display:block;font:400 16px 'oswald',sans-serif;color:#222;text-transform:uppercase;letter-spacing:1px;margin-top:10px}
.quote-rotate img{float:left;width:200px!important;height:200px}
.quote-rotate .owl-dots .owl-dot span{float:left;border-radius:0;width:30px;height:7px;margin-right:10px;background:#222}
.related-posts .related-item{background:$(content.bg)}
.related-item .related-img{position:relative;height:180px}
.related-item img{position:absolute;left:0;top:0;width:100%;height:100%}
.related-item .recentLabel{position:absolute;bottom:0;left:0;border-radius:0;background:#2c3e50}
.related-item .related-content{padding:0 15px}
.related-item h3{font-size:16px;padding:10px 0;margin:0;min-height:50px}
.related-item h3 a{color:$(body.heading.c)}
.related-item .related-meta{border-top:2px solid $(body.border);padding:10px;text-align:center;font-size:13px;color:$(body.meta.c)}
.about-author{overflow:auto;margin-bottom:30px;padding:25px;border-bottom:3px solid $(main.color);background:$(author.bg)}
.authorcontent p{color:$(author.text)}
.auth-social{text-align:right}
.about-author img{float:left;width:100px;height:100px}
.about-author .authorcontent{float:right;width:-moz-calc(100% - 110px);width:calc(100% - 110px)}
.about-author h3{margin:0 10px 5px 0;color:$(author.text);font-size:16px}
.about-author .author-profile a:hover{box-shadow:0 0 50px rgba(0,0,0,0.2)}
.about-author .author-profile a{padding:10px 15px;overflow:hidden;color:#fff;background:#0583f2;display:inline-block;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;font:700 15px 'open sans','fontawesome',sans-serif}
.about-author p{margin:10px 0;color:#0d0d0d;line-height:20px;font:300 14px 'open sans',sans-serif}
.pagenav{margin:30px 0}
.pagenav .pages{display:inline-block;padding:10px 15px;color:#222;margin-right:10px}
.pagenav .current,.pagenav a{display:inline-block;padding:10px 15px;background:$(main.color);color:#fff;border-radius:2px;margin-right:2px;border:2px solid $(main.color)}
.pagenav .current{background:#222;color:$(main.color)}
.post-lspan{width:100px;float:left;text-transform:uppercase;line-height:40px}
.post-lspan i{color:$(main.color);font-style:normal;margin-right:5px}
.post-share{background:$(body.meta.bg);padding:25px;overflow:auto}
.post-share ul{padding:0;margin:0;list-style:none}
.post-share ul li{float:left;margin-right:5px}
.post-share ul li.facebook a{display:inline-block;line-height:40px;padding:0 10px;background:#3b5998}
.post-share ul li.twitter a{display:inline-block;line-height:40px;padding:0 10px;background:#00aced}
.post-share li.gplus a{background:#dd4b39}
.post-share li.linkedin a{background:#007bb5}
.post-share li.pinterest a{background:#cb2027}
.post-share li.tumblr a{background:#32506d}
.post-share ul li.square a{display:inline-block;width:40px;height:40px;line-height:40px}
.post-share a{font:400 16px 'fontawesome','open sans',sans-serif;color:#fff;border-radius:3px;text-align:center}
.post-footer-labels{background:$(content.bg);padding:25px}
span.headingspan{background:#222;color:#fff;display:inline-block;font-size:12px;padding:3px 10px}
.post-footer-labels a{background:$(main.color);padding:3px 10px;font-size:12px;display:inline-block;color:#fff}
.post-footer-labels a:hover{background:#222;color:#fff}
.postadafter{padding:25px;text-align:center;margin-top:15px}
.post-reaction{margin:20px 25px}
.reaction-buttons{display:inline-block;padding:10px;height:20px}
.blog-pager-item{background:$(content.bg);overflow:auto;padding:0;margin:15px 0}
.linkgrey.left{float:right;width:50%;display:block;text-align:right}
.linkgrey.right{float:left;width:50%;display:block;text-align:left}
.pager-outer {position: relative;overflow: hidden;}
.blog-pager-item .blog-pager-newer-link{float:right;text-align:right;width:50%;}
.blog-pager-item .blog-pager-newer-link img{float:right;margin-left: 15px;}
.blog-pager-item .blog-pager-older-link{float:left;text-align:left;width:50%;}
.blog-pager-item .blog-pager-older-link img{float:left;margin-right: 15px;}
.blog-pager-item h6{margin:3px 10px 0px 10px;font-size:12px;color:$(body.meta.c)}
.blog-pager-item h5{margin:0 10px;font-size:15px;color:$(body.heading.c)}
.commentTabs{margin-top:30px}
.commentTabs h4{margin:0}
.commentTabs .comment-buttons{float:right}
.comment-buttons button{display:inline-block;padding:0 15px;cursor:pointer;font-size:14px;color:#fff;border:none;outline:none;line-height:35px}
.comment-buttons button.active{border-bottom:3px solid $(main.color)}
.comment-buttons button.blogger{background:#FF6600}
.comment-buttons button.facebook{background:#3765A3}
.comment-buttons button.disqus{background:#2E9FFF}
.comment-buttons button.blogger svg{margin:10px 5px 10px 0}
.comment-buttons button.disqus svg{margin:5px 5px 5px 0}
.comment-buttons button.facebook svg{margin:10px 5px 10px 0}
.comment-buttons button svg{float:left}
.comments h4{color:#222;font-size:20px}
.comments .comment .comment-actions a{color:$(main.color);font:12px 'open sans',sans-serif;margin-right:8px;padding:5px;text-decoration:none!important}
.comments .comment-block{font-size:14px;background:$(content.bg);padding:25px}
.comments .comments-content .comment-content{text-align:left;margin:15px 0;line-height:25px}
.comments .comments-content .datetime{margin-left:10px;font-size:12px}
.comments .comments-content .datetime:before{content:"\f017 ";margin-right:5px}
.continue{border-top:none!important}
.continue a{background:#0099ff;color:#ffffff;display:inline-block!important;margin-top:8px;padding:8px 10px!important;border-radius:2px;text-decoration:none!important;font-size:12px}
.comment-header a{color:$(body.heading.c)!important}
.comments .comments-content .datetime a{color:$(body.meta.c)}
#comments .avatar-image-container img{height:35px;max-width:35px}
.comments .avatar-image-container{float:left;margin-left:10px;overflow:hidden}
/*----------
Social Media
------------*/
.list-unstyled{padding-left:0;list-style:none;margin:2px}
.list-inline li{display:inline-block;padding-right:5px;padding-left:5px;margin-bottom:10px}
.tl-colored-social .fa,.tl-social-icons .fa{font-size:16px}
.tl-colored-social .fa,.tl-social-icons .fa{width:40px;height:40px;line-height:40px;text-align:center;color:#FFF;color:rgba(255,255,255,0.8)}
.tl-colored-social.icon-circle .fa,.tl-social-icons.icon-circle .fa{border-radius:50%}
.tl-colored-social.icon-rounded .fa,.tl-social-icons.icon-rounded .fa{border-radius:2px}
.tl-colored-social.icon-flat .fa,.tl-social-icons.icon-flat .fa{border-radius:0}
.tl-colored-social .fa:hover,.tl-colored-social .fa:active,.tl-social-icons .fa:hover,.tl-social-icons .fa:active{color:#FFF}
.tl-colored-social.icon-zoom .fa:hover,.tl-colored-social.icon-zoom .fa:active,.tl-social-icons.icon-zoom .fa:hover,.tl-social-icons.icon-zoom .fa:active,.tl-social-sidebar li:hover{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}
.tl-colored-social.icon-rotate .fa:hover,.tl-colored-social.icon-rotate .fa:active,.tl-social-icons.icon-rotate .fa:hover,.tl-social-icons.icon-rotate .fa:active{-webkit-transform:scale(1.1) rotate(360deg);-moz-transform:scale(1.1) rotate(360deg);-ms-transform:scale(1.1) rotate(360deg);-o-transform:scale(1.1) rotate(360deg);transform:scale(1.1) rotate(360deg)}
.tl-colored-social .fa-dribbble,.tl-social-icons .fa-dribbble:hover,.tl-socialicons .tl-dribbble:hover .tl-sicon{background-color:#F46899}
.tl-colored-social .fa-stumbleupon,.tl-social-icons .fa-stumbleupon:hover{background-color:#eb4924}
.tl-colored-social .fa-reddit,.tl-social-icons .fa-reddit:hover{background-color:#5f99cf}
.tl-colored-social .fa-facebook,.tl-social-icons .fa-facebook:hover,.tl-socialicons .tl-facebook:hover .tl-sicon{background-color:#3C599F}
.tl-colored-social .fa-rss,.tl-social-icons .fa-rss:hover{background-color:#f26522}
.tl-colored-social .fa-lastfm,.tl-social-icons .fa-lastfm:hover{background-color:#d51007}
.tl-colored-social .fa-flickr,.tl-social-icons .fa-flickr:hover{background-color:#FF0084}
.tl-colored-social .fa-instagram,.tl-social-icons .fa-instagram:hover,.tl-socialicons .tl-instagram:hover .tl-sicon{background-color:#685243}
.tl-colored-social .fa-foursquare,.tl-social-icons .fa-foursquare:hover,.tl-socialicons .tl-foursquare:hover .tl-sicon{background-color:#0086BE}
.tl-colored-social .fa-github,.tl-social-icons .fa-github:hover,.tl-socialicons .tl-github:hover .tl-sicon{background-color:#070709}
.tl-colored-social .fa-google-plus,.tl-social-icons .fa-google-plus:hover,.tl-socialicons .tl-googleplus:hover .tl-sicon{background-color:#CF3D2E}
.tl-colored-social .fa-instagram,.tl-social-icons .fa-instagram:hover{background-color:#A1755C}
.tl-colored-social .fa-linkedin,.tl-social-icons .fa-linkedin:hover{background-color:#0085AE}
.tl-colored-social .fa-pinterest,.tl-social-icons .fa-pinterest:hover,.tl-socialicons .tl-pinterest:hover .tl-sicon{background-color:#CC2127}
.tl-colored-social .fa-twitter,.tl-social-icons .fa-twitter:hover,.tl-socialicons .tl-twitter:hover .tl-sicon{background-color:#32CCFE}
.tl-colored-social .fa-vk,.tl-social-icons .fa-vk:hover,.tl-socialicons .tl-vk:hover .tl-sicon{background-color:#375474}
.tl-colored-social .fa-soundcloud,.tl-social-icons .fa-soundcloud:hover,.tl-socialicons .tl-soundcloud:hover .tl-sicon{background-color:#FF4100}
.tl-colored-social .fa-vine,.tl-social-icons .fa-vine:hover,.tl-socialicons .tl-vine:hover .tl-sicon{background-color:#35B57C}
.tl-colored-social .fa-xing,.tl-social-icons .fa-xing:hover{background-color:#00555C}
.tl-colored-social .fa-youtube,.tl-social-icons .fa-youtube:hover,.tl-socialicons .tl-youtube:hover .tl-sicon{background-color:#C52F30}
.top-social ul li{margin:0;padding:0}
div#socialicons-top{float:left}
.top-social .list-unstyled{margin:0}
.tl-socialicons{text-align:center;overflow:auto;font-size:22px;margin-top:-5px}
.tl-socialicons .tl-socialInner{position:relative;overflow:hidden}
.tl-socialicons .tl-social{float:left;width:25%}
.tl-socialicons .tl-sinn:hover .tl-sicon{color:#fff}
.tl-socialicons .tl-sicon{display:block;padding:10px 0}
.tl-socialicons .tl-facebook .tl-sicon{color:#3B5998}
.tl-socialicons .tl-googleplus .tl-sicon{color:#DD4B39}
.tl-socialicons .tl-twitter .tl-sicon{color:#2AA9E0}
.tl-socialicons .tl-instagram .tl-sicon{color:#685243}
.tl-socialicons .tl-pinterest .tl-sicon{color:#CC2028}
.tl-socialicons .tl-youtube .tl-sicon{color:#DE1829}
.tl-socialicons .tl-vine .tl-sicon{color:#35B57C}
.tl-socialicons .tl-soundcloud .tl-sicon{color:#FF4100}
.tl-socialicons .tl-vk .tl-sicon{color:#45668e}
.tl-socialicons .tl-foursquare .tl-sicon{color:#f94877}
.tl-socialicons .tl-github .tl-sicon{color:#333333}
.tl-socialicons .tl-dribbble .tl-sicon{color:#ea4c89}
.tl-socialicons .tl-scount{display:block;color:#222222;padding:5px 0;position:relative;margin-bottom:8px;font-size:13px}
.tl-social:hover .tl-scount{background:#7ac143;color:#FFF}
/*----------------
7. Social Widget
------------------*/
.zd-social{min-width:250px;margin:10px 0}
.zd-social a{color:#fff;position:relative;display:block;overflow:hidden}
.zd-social .sq{width:50%;height:0;padding-bottom:50%;float:left}
.zd-social .icon{left:0%;top:0;width:100%;height:100%;position:absolute;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.zd-social a:hover .icon{left:-100%}
.zd-social a:hover .content{left:0}
.zd-social .content{-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;position:absolute;top:0;left:100%;word-wrap:break-word;width:90%;height:100%;margin:0 5%;font:400 14px 'open sans',sans-serif;text-align:center}
.zd-social .display{margin-top:40px;display:block}
.zd-social .count{font-weight:bold;display:block;margin-top:5px}
.zd-social .icon span{position:Absolute;left:50%;top:50%;color:#fff;text-align:Center;width:40px;height:40px;text-shadow:2px 2px 2px rgba(0,0,0,0.2);display:block;margin-top:-20px;margin-left:-20px;border:2px solid #fff;font:400 20px 'fontawesome';line-height:40px}
.zd-social .facebook{background:#3b5998}
.zd-social .twitter{background:#00aced}
.zd-social .google{background:#dd4b39}
.zd-social .instagram{background:#9b6954}
.zd-social .email{background:#6dc993}
.zd-social .rec{height:0;padding-bottom:40%}
/*------------
8. Sidebar
-------------*/
#sidebar-wrapper div#ContactForm1{display:none!important}
.sidebar{float:right;width:30%;margin-top:40px}
.contact-form-widget .contact-form-name,.contact-form-widget .contact-form-email,.contact-form-widget .contact-form-email-message{padding:10px 0;text-indent:10px;background:#fff;color:#222;max-width:100%;border:none;box-shadow:1px 1px 1px rgba(0,0,0,0.2);margin-bottom:10px;outline:none}
.contact-form-widget{max-width:100%;font:400 17px 'oswald','fontawesome',sans-serif}
.contact-form-widget i{font-style:normal;color:$(main.color)}
.contact-form-widget p{font:italic 400 13px 'open sans',sans-serif;color:#bbb;margin:5px 0}
.contact-form-button{padding:5px 0;width:100%;background:$(main.color);text-align:Center;border:none;height:40px;outline:none;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}
.contact-form-button:hover{background:#222}
.FeaturedPost h3{margin:10px 0;font:400 20px 'oswald',sans-serif}
.FeaturedPost p{font:400 17px 'open sans',sans-serif;color:#222;line-height:28px}
.sidebar .follow-by-email-address{background:$(content.bg)!important;display:block!important;padding:15px 0!important;border:none!important;text-indent:20px;outline:none!important;color:$(body.text.c)!important;width:100%!important;height:auto!important;font:400 15px 'open sans',sans-serif!important}
.sidebar .follow-by-email-submit{display:block!important;margin:10px 0 0 0!important;background:$(main.color)!important;width:100%!important;height:auto!important;color:#fff!important;font:400 15px 'oswald','fontawesome',sans-serif!important;text-align:center!important;padding:15px 0!important;text-transform:uppercase!important;outline:none!important;border:none!important;trxt-align:center}
.list-label-widget-content ul{padding:0;margin:0;list-style:none}
.list-label-widget-content ul li{border-bottom:1px solid $(body.border);padding:10px;background:$(content.bg);font:$(heading.font);color:$(body.meta.c)}
.list-label-widget-content ul li a{color:$(body.text.c);font-size:14px!important;text-transform:uppercase;letter-spacing:1px}
.list-label-widget-content ul li span{font:$(body.font)}
.list-label-widget-content ul li:hover:before{margin-right:15px}
.list-label-widget-content ul li:before{content:'\f07c';font-family:'fontawesome';margin-right:10px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.cloud-label-widget-content{text-align:left!important}
.cloud-label-widget-content .label-size{font:$(heading.font);opacity:1!important;display:inline-block}
.cloud-label-widget-content a{background:$(main.color);color:#fff;margin-bottom:4px;font-size:14px!important;padding:5px 7px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;border:1px solid $(body.border);display:block}
.cloud-label-widget-content a:hover{border-color:$(main.color);background:#222;color:#fff}
.stab-buttons{margin:10px 0 0 0;box-shadow:0 1px 10px rgba(0,0,0,0.08);position:relative}
.stab-buttons>span{padding:12px 0;width:33.333%;float:left;display:block;text-align:center;color:#fff;background:#222222;font:$(heading.font);font-size:14px!important;text-transform:uppercase;cursor:pointer;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}
.stab-buttons>span.active{background:#e74c3c;color:#fff}
.stab-buttons>span:hover{background:$(main.color);color:#fff}
.st-content>div>h2{display:none!important}
.sidebarWidgets .widget,.stabs .widget{margin-bottom:40px!important}
.sidebar-inner{padding:0 0 0 15px}
.sidebarWidgets>div>h2 span{background:#222!important}
/*-----------
9. Footer
-----------*/
footer.main-footer{background:$(footer.bg);color:$(footer.text);position:relative;overflow:hidden}