-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
3196 lines (3084 loc) · 293 KB
/
style.css
File metadata and controls
3196 lines (3084 loc) · 293 KB
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
/***************************************
Theme Name: Rehub theme
Theme URI: https://themeforest.net/item/rehub-directory-multi-vendor-shop-coupon-affiliate-theme/7646339
Description: A Hybrid magazine/shop/review/news Wordpress Theme
Author: Wpsoul
Author URI: https://wpsoul.com/
Version: 9.9.6
Tags: two-columns, fluid-layout, custom-background, threaded-comments, translation-ready, custom-menu
License:
License URI:
Text Domain: rehub-theme
***************************************/
/****************************************************************************
CSS RESET
****************************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, menu, nav, section { display: block; }
ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: none; }
table { border-collapse: collapse; }
*{-webkit-box-sizing: border-box; box-sizing: border-box;}
mark, ins{text-decoration: none;}
/****************************************************************************
BASIC STYLES
****************************************************************************/
body { background-color: #fff; color: #000; font: 15px Roboto, Helvetica, trebuchet ms; }
a {text-decoration: none; -webkit-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
a:after{-webkit-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s;}
a:focus, button{outline: none;}
.btn{ text-decoration: none;}
a.no-color-link{color: #333; text-decoration: none;}
a:hover, a:active { color: #000;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #111; text-decoration: none; }
h1 { font: 700 28px/34px 'Roboto', trebuchet ms, arial; color: #111111; margin: 10px 0 30px 0;}
h2 { font: 700 24px/30px 'Roboto', trebuchet ms; color: #111111; margin: 10px 0 30px 0; }
h3 { font: 700 21px/28px 'Roboto', trebuchet ms; color: #111111; margin: 10px 0 25px 0; }
h4 { font: 700 18px/24px 'Roboto', trebuchet ms; color: #111111; margin: 10px 0 18px 0 }
h5 { font: 700 16px/20px 'Roboto', trebuchet ms; color: #111111; margin: 10px 0 15px 0 }
h6 { font: 700 14px/16px 'Roboto', trebuchet ms; margin: 0 0 10px 0 }
hr{background: #ddd;border: 0;height: 1px;}
.post-readopt .post-inner h2{font-size: 28px; line-height: 34px}.post-readopt .post-inner h3{font-size: 24px; line-height: 30px}
.post-readopt .post-inner h2::first-letter{font-size: 1.15em}
.cegg-list-logo-title a{color: #111}
.rehub-main-font, .vc_general.vc_btn3, .cegg-list-logo-title, .wp-block-quote.is-style-large p, .wp-block-button .wp-block-button__link, .woocommerce a.woo_loop_btn, .woocommerce a.add_to_cart_button, .woocommerce-page a.add_to_cart_button, .wcv-grid a.button, .woofiltersbig .prdctfltr_buttons a.prdctfltr_woocommerce_filter_submit, .woocommerce div.product .summary .price, .woocommerce div.product .single_add_to_cart_button, .woocommerce div.product .summary .masked_coupon, .widget.better_woocat{font-family: Roboto, Arial}
article p, .post p{ margin: 0 0 31px 0 }
article em, .post em { font-style: italic }
article strong, .post strong { font-weight: bold }
article, .post { font-size: 16px; line-height: 28px; color: #333; }
p strong { font-weight: bold; }
p em { font-style: italic; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img {max-width: 100%;height: auto;vertical-align: top; border: 0;}
#rhLoader { position: fixed; display: table; text-align: center; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(255, 255, 255, 0.85); z-index: 999999999; }
.preloader-cell { display: table-cell; vertical-align: middle; font-size: 60px }
.screen-reader-text {border: 0;clip: rect(1px, 1px, 1px, 1px);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute !important;width: 1px;word-wrap: normal !important;}
.screen-reader-text:focus {background-color: #f1f1f1;border-radius: 3px;box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);clip: auto !important;clip-path: none;color: #21759b;display: block;font-size: 14px;font-size: 0.875rem;font-weight: bold;height: auto;left: 5px;line-height: normal;padding: 15px 23px 14px;text-decoration: none;top: 5px;width: auto;z-index: 100000;}
::selection { background: #999; color: #fff; text-shadow: none; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearbox{ clear: both;}.clearboxleft{ clear: left;}.clearboxright{ clear: right;}
/****************************************************************************
Header
****************************************************************************/
#main_header { width: 100%; position: relative; z-index: 1000 }
.header-top { border-bottom: 1px solid #eee; min-height: 30px; overflow: visible; }
.header-top .top-nav a { color: #111111; }
.header-top .top-nav li { float: left; font-size: 12px; line-height: 14px; position: relative;z-index: 99999999; }
.header-top .top-nav > ul > li{padding-left: 13px; border-left: 1px solid #666666; margin: 0 13px 0 0;}
.header-top .top-nav ul { list-style: none; }
.header-top .top-nav a:hover { text-decoration: underline }
.header-top .top-nav li:first-child { margin-left: 0px; border-left: 0px; padding-left: 0; }
.top-nav ul.sub-menu{width: 160px;}
.top-nav ul.sub-menu > li > a{padding: 10px;display: block;}.top-nav ul.sub-menu > li{float: none; display: block; margin: 0}.top-nav ul.sub-menu > li > a:hover{background-color: #f1f1f1; text-decoration: none;}
.responsive_nav_wrap { display: none; position: relative; width: 100% }
header .logo-section { padding: 15px 0; overflow: visible; }
header .logo { max-width: 450px; float: left; margin-right: 15px; line-height: 0; }
header .logo img { max-width: 100%; height: auto; }
header .header_third_style .logo, header .header_fourth_style .logo { margin: 0 auto; width: auto; text-align: center; float: none; max-width: 2000px }
header .header_third_style .logo img, header .header_fourth_style .logo img { max-width: 100%; height: auto; }
.logo .textlogo { font-size: 26px; line-height: 26px; letter-spacing: -0.5px; padding-bottom: 10px; font-family: Roboto}
.logo .sloganlogo { font-size: 14px; line-height: 14px; color: #888 }
.megatop_mediad { float: none; text-align: center; line-height: 0; overflow: hidden; }
.mediad.megatop_mediad img { max-width: 100%; }
.megatop_wrap { border-bottom: 1px solid #ddd; padding: 15px 0; }
.content.mediad_footer, .rh-container.mediad_footer{ background: none transparent; box-shadow: none; margin: 20px auto;}
header .header_first_style .mediad { width: 468px; margin: 12px 20px 0 0 }
header .header_second_style .mediad { width: 728px }
header .header_fourth_style .mediad { width: 728px; float: none; margin: 15px auto 5px; text-align: center; }
.header_six_style .head_search{max-width: 215px}
.header-actions-logo{float: right;}
.header-actions-logo .wpsm-button{margin: 0}
.header-actions-logo .celldisplay{padding: 0 12px; vertical-align: middle;}
.heads_icon_label{font-size: 12px; display: block;line-height: 15px; color: #111}
.header_seven_style .search{ margin: 0 30px; padding: 0; flex-grow: 1; width: 100%; max-width: 580px}
.header_seven_style > .rh-flex-right-align{flex: 0 0 auto}
.header_one_row .main-nav{background: none transparent !important; border:none !important;}
.is-sticky .logo_section_wrap{background: #fff}
.header_one_row nav.top_menu > ul > li{border: none !important;}
.is-sticky .main-nav{position: relative; z-index: 999; width: 100%;}
.is-sticky .header_one_row .main-nav{width: auto;}
.rh_woocartmenu_cell{min-width: 100px; position: relative;}
.rh_woocartmenu_cell .widget_shopping_cart {position: absolute;right: 12px;width: 330px;z-index: -1;box-shadow: 1px 1px 4px 0px #ddd;background-color: #fff;padding: 15px 20px;border-radius: 5px;display: none;text-align: left;top: 100%;}
.rh_woocartmenu_cell .widget_shopping_cart.loaded {display: block;-webkit-animation: stuckMoveUpOpacity .6s;animation: stuckMoveUpOpacity .6s;z-index: 9999;}
.head_search{position: relative;}
header .mediad img { max-width: 100% !important; height: auto !important; }
.icon-search-onclick{ cursor: pointer; }
.icon-search-onclick:before{ font-family: Font Awesome\ 5 Pro; content: "\f002";}
button.icon-search-onclick i, button.act-rehub-login-popup i{ font-size: 20px !important}
button.icon-search-onclick:before{ display: none;}
.top-search-onclick{ float: right; position: relative;}
.header_top_wrap .icon-in-header-small{float: right;font-size: 12px; line-height:12px;margin: 10px 7px 10px 7px}
form.search-form { padding: 0; border: none; position: relative;width: auto;display: flex; margin: 0; max-width: 100% }
form.search-form input[type="text"] { border: 1px solid #e1e1e1; height: 38px; background-color: #fff; padding: 2px 45px 2px 12px; transition: all 0.4s ease; border-radius: 4px }
form.search-form input[type="text"]:focus{outline: 0;}
.litesearchstyle form.search-form input[type="text"]{height: 34px;padding: 2px 37px 2px 12px;}
form.search-form [type="submit"] {border: none; cursor: pointer; padding: 0 16px; line-height: 38px; height: 38px; vertical-align: middle; position: absolute;top: 0; right: 0 }
.litesearchstyle form.search-form [type="submit"]{background: none transparent !important;height: 34px; color: #999 !important; padding: 0 12px; line-height: 34px}
form.search-form.product-search-form [type="submit"]{position: static;}
form.search-form.product-search-form input[type="text"] {padding-right: 12px; padding-left: 12px;border-right: none;}
.search-header-contents{ width: 100%; background-color: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.15); position: absolute; left:0; top:100%; right: 0; opacity: 0; visibility: hidden; z-index: 9999999; border-top: 4px solid #43c801; transition: all 0.5s ease; padding: 44px 34px; text-align: center;}
.widget_search .re-aj-search-wrap, .head_search .re-aj-search-wrap, .custom_search_box .re-aj-search-wrap{position: absolute;z-index: 999999;right: 0;top: 100%; background-color: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.15);}
.head_search .re-aj-search-wrap, .widget_search .re-aj-search-wrap{width: 100%; margin-top: 10px; border-radius: 4px; min-width: 280px}
.custom_search_box .re-aj-search-wrap{width: calc(100% - 40px); margin: -10px 20px 0 20px}
.widget.widget_search {position: relative; overflow: visible;}
.search-header-contents .re-aj-search-wrap{max-width: 1200px; margin: 0 auto;}
.re-aj-search-wrap.re-aj-search-overflow{max-height: 280px; overflow-y: auto;}
select.dropdown_product_cat{ border: 1px solid #e1e1e1; width: 100%;}
@media screen and (min-width: 1100px) {.search-header-contents{padding: 35px}}
.top-search-onclick-open .search-header-contents{ visibility: visible; opacity: 1; display: block;}
.search-header-contents .search-form{width: 100%; max-width: 1200px}
.search-header-contents form.search-form input[type="text"]{width: 100%; height: 48px; line-height: 48px; font-size: 18px; padding: 2px 37px 2px 15px}
.search-header-contents form.search-form [type="submit"], .search-header-contents form.search-form .nice-select{line-height: 48px; height: 48px}
.re-aj-search-wrap{opacity: 0; transform: translate3d(0, -10px, 0); transition: all .4s ease-out;-webkit-backface-visibility: hidden;}
.re-aj-search-open{opacity: 1; transform: translate3d(0, 0, 0);}
/* ajax search css */
.re-aj-search-wrap-results {background-color: #fff;padding: 10px 0;position: relative;-webkit-box-sizing:border-box;box-sizing:border-box;}
.re-search-result-div.re-sch-cur-element, .re-search-result-div:hover {background-color: #f2f2f2;}
.re-search-result-div{position: relative; overflow: hidden; padding: 15px; text-align: left; border-bottom: 1px solid #eee}
.re-search-result-thumb {width: 90px;float: left; text-align: center;}
.re-search-result-thumb img{ max-height: 80px; max-width: 90px }
.re-search-result-info {float: right;width: calc(100% - 105px);min-height: 60px}
.re-search-result-title {font-size: 15px;line-height: 18px;margin: 0 0 5px 0;}
.re-search-result-meta {font-size: 11px;margin-bottom: 7px;line-height: 1;min-height: 17px;font-style: italic;color: #999}
.re-aj-search-result-msg {text-align: center;padding: 8px 0;font-size: 12px;color: #222;font-style: italic;}
.re-aj-search-result-msg a{color: #222;}
.re-search-result-excerpt{display: none; font-size:13px;}
@media(min-width: 500px){
.custom_search_box .re-search-result-excerpt, .main-nav .re-search-result-excerpt{display: block;}
}
/*Search box*/
.custom_search_box{padding: 20px 0; }
.custom_search_box form{ position: relative; display: block; width: 100%;}
.custom_search_box input[type="text"] {transition: all 0.5s ease-out; background: #f6f6f6;border: 3px solid #ececec;height: 50px;width: 100%;padding:0 55px 0 40px;outline: none; }
@media(min-width: 1224px){
.custom_search_box input[type="text"]{font-size: 115%}
.custom_search_box.flat_style_form input[type="text"]{font-size: 105%}
}
.custom_search_box i.inside-search{ position: absolute; top: 50%; left: 16px; margin-top: -8px}
.custom_search_box.flat_style_form i{display: none;}
.custom_search_box button[type="submit"] { padding: 0 13px; position: absolute; height: calc(100% - 6px); right: 3px; top:3px; color: #fff !important; font-size: 130% !important; margin: 0; border-radius: 0; box-shadow: none !important;}
.custom_search_box input[type="text"]:focus, .custom_search_box input[type="text"]:hover{border-color: #666; background-color: #fff}
.custom_search_box.flat_style_form input[type="text"] {border-width: 1px;height: 52px;padding:0 130px 0 20px; }
.custom_search_box.flat_style_form button[type="submit"] { padding: 0 35px; height: 100%; right: 0; top:0; font-size: 100% !important;}
.head_search .search-form, .head_search form.search-form input[type="text"], .widget_search .search-form, .widget_search form.search-form input[type="text"]{ width: 100%; clear: both;}
.product-search-form .nice-select{border-radius: 0; height: 38px; line-height: 36px; border-width: 1px 0 1px 1px}
.sidebar .product-search-form .nice-select{display: none}
header .search { width: 220px; float: right; position: relative; }
.logo-section .search form.search-form input[type="text"]{min-width: 215px}
.post.errorpage form.search-form{ display: inline-block; margin: 20px auto}
.re-ajax-search.searching-now{position:relative;}
.re-ajax-search.searching-now {animation: colorsearchchange 1.2s ease-in infinite;}
.main-nav { background: #fcfcfc;}
.main-nav.white_style{border-top: 1px solid #eee; border-bottom: 1px solid #eee}
.main-nav:after{content: ''; display:table; clear: both; }
nav.top_menu { position: relative; }
nav.top_menu > ul{display: flex;display: -ms-flexbox;}
nav.top_menu ul li { display: inline-block; position: relative; }
nav.top_menu > ul > li.floatright{ margin-left: auto;}
nav.top_menu ul li i, #slide-menu-mobile ul li.menu-item > a i{margin: 0 5px 0 0}
nav.top_menu ul li.rehub-custom-menu-item{ float: right; border: none !important}
nav.top_menu ul li.rehub-custom-menu-item a:hover{ box-shadow: none;}
nav.top_menu ul.sub-menu li { display: block; float: none; }
nav.top_menu > ul > li > a { font: 700 16px/19px 'Roboto', trebuchet ms; -webkit-transition: all 300ms cubic-bezier(0.5, 0, 0.5, 1);transition: all 300ms cubic-bezier(0.5, 0, 0.5, 1); position:relative; color: #111; padding: 8px 13px 11px 13px; display: inline-block; }
nav.top_menu ul span.subline{font-weight: 400; font-size:12px; line-height:12px;display: block;text-transform: none;margin: 5px 0px 0px 0px; opacity: 0.8;-webkit-transition: all 300ms cubic-bezier(0.5, 0, 0.5, 1);transition: all 300ms cubic-bezier(0.5, 0, 0.5, 1);}
nav.top_menu ul.menu:not(.off-canvas) > li.menu-item-has-children > a:before, .header-top .top-nav > ul > li.menu-item-has-children > a:before { font: 14px Font Awesome\ 5 Pro; content: '\f107';margin: 0 0 0 7px; float: right; }
nav.top_menu ul li.menu-item-has-children { position: relative }.header-top .top-nav > ul > li.menu-item-has-children > a:before{font-size: 12px}
nav.top_menu ul li.menu-item-has-children ul li.menu-item-has-children > a:before { color: #111; content: "\f105"; font-family: Font Awesome\ 5 Pro;cursor: pointer; float: right; padding-left: 8px}
nav.top_menu ul.sub-menu, .top-nav ul.sub-menu {-webkit-transform: translateY(10px); transform: translateY(10px); opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s ease, transform 0.3s ease; transition: opacity 0.3s ease, transform 0.3s ease;background: #fff; position: absolute; z-index: 9999999; width: 210px; box-shadow: 0 2px 6px #ddd;backface-visibility: hidden; left: -999999px;}
nav.top_menu .noshadowdrop ul.sub-menu{box-shadow: none}
nav.top_menu ul.sub-menu ul.sub-menu { top: 0; }
nav.top_menu > ul > li > ul.sub-menu > li.hovered > ul.sub-menu{left: 100%; opacity: 1; visibility: visible;transform: translateY(0); }
nav.top_menu ul.sub-menu > li > a { text-transform: none; font-size: 15px; line-height: 16px; color: #111 !important; display: block; padding: 15px 18px; border-top: 1px solid #eee; font-weight: 400 }
nav.top_menu ul.sub-menu > li:first-child > a{ border-top-color: transparent;}
nav.top_menu > ul > li.hovered > .sub-menu, .top-nav > ul > li.hovered ul.sub-menu { opacity: 1; visibility: visible; -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); left: 0; top: 100% }
.top-nav > ul > li.hovered ul.sub-menu{top: 22px}
nav.top_menu > ul > li > ul.sub-menu > li:first-child > a:after, .top-nav > ul > li > ul.sub-menu > li:first-child > a:after, .rh_woocartmenu_cell .widget_shopping_cart:after {position: absolute;content: "";width: 0;height: 0;border-style: solid;top: -5px;left: 19px;border-width: 0 6px 6px 6px;border-color: transparent transparent #FFF transparent;}
.rh_woocartmenu_cell .widget_shopping_cart:after{right: 19px; left: auto}
nav.top_menu > ul:not(.off-canvas) li:not(.rh-megamenu) ul.sub-menu > li > a:hover {background: #F9F9F9;}
nav.top_menu > ul > li > a:hover span.subline{opacity: 1}
nav.top_menu ul li.rh-megamenu{position: static;}
nav.top_menu ul li.rh-megamenu > ul.sub-menu{width: 100% !important; padding: 0; margin: 0; }
nav.top_menu ul li.rh-megamenu > ul.sub-menu > li.menu-item-object-gs_sim{padding: 20px}
nav.top_menu ul li.rh-megamenu > ul > li > a{border: none; padding: 0; margin: 0; box-shadow: none; text-transform: none; text-decoration: none;}
nav.top_menu ul li.rh-megamenu ul li:hover{box-shadow: none;}
nav.top_menu ul li.rh-megamenu ul.sub-menu{ border: none; }
.rh-megamenu .widget_categories li a, .rh-megamenu .widget_nav_menu li a, .rh-megamenu .widget_recent_entries li a, .rh-megamenu .widget_pages ul li a, .rh-megamenu .widget_product_categories ul li a{display: inline-block; margin-bottom: 10px}
nav.top_menu ul li.rh-subitem-menus > ul.sub-menu{width: auto; min-width: 250px; padding: 0 15px 25px 12px; }
nav.top_menu ul li.rh-subitem-menus.rh-left-slide-menu.hovered > ul.sub-menu{right: 0; left: auto;}
nav.top_menu > ul > li.rh-left-slide-menu > ul.sub-menu > li:first-child > a:after{display: none;}
nav.top_menu ul li.rh-subitem-menus > ul > li{width: 250px; display: none;min-width: 250px; z-index: 1}
nav.top_menu ul li.rh-subitem-menus.hovered > ul > li{display: table-cell;}
nav.top_menu ul li.rh-subitem-menus > ul > li > ul.sub-menu{position: static;display: block; width: auto; box-shadow: none; border: none;transform: translateY(0);opacity: 1;visibility: visible;}
nav.top_menu ul li.rh-subitem-menus ul.sub-menu > li > a{border: none !important; padding: 8px 10px !important;}
nav.top_menu ul li.rh-subitem-menus > ul > li > a{ font-size: 110%; font-weight: bold; margin: 15px 0 5px 0 }
nav.top_menu ul li.rh-subitem-menus > ul > li > a:before{display: none !important;}
nav.top_menu > ul > li.vertical-menu > .sub-menu{width: 250px; }
nav.top_menu > ul > li.vertical-menu.width-200 > .sub-menu{width: 200px}
nav.top_menu > ul > li.vertical-menu.width-300 > .sub-menu{width: 300px}
.vertical-menu.width-200 > a, .vertical-menu.width-250 > a, .vertical-menu.width-300 > a{width: 100%}
.home:not(.groups) nav.top_menu > ul > li.vertical-menu.vmenu-opened > .sub-menu {opacity: 1;visibility: visible;transform: translateY(0px);left: 0;}
.vmenu-opened > a:before{display: none !important}
nav.top_menu > ul > li.vertical-menu .sub-menu {box-shadow: none;}
nav.top_menu > ul > li.vertical-menu > .sub-menu{padding: 10px 0}
nav.top_menu > ul > li.vertical-menu > .sub-menu{border: 2px solid transparent; border-top: none }
.vertical-menu .border-grey-bottom{margin-bottom: 10px}
nav.top_menu > ul > li.vertical-menu ul li.menu-item > a{padding: 9px 16px; font-size: 14px; border:none;}
nav.top_menu > ul > li.vertical-menu > ul > li > ul > li > ul > li > a{padding: 7px 16px; font-size: 13px}
nav.top_menu > ul > li.vertical-menu > ul > li > .sub-menu {position: fixed;min-width: 250px;padding: 18px 11px 15px 11px;min-height: calc(100% + 2px);display: flex;border-right: 2px solid transparent;width: auto;}
nav.top_menu > ul > li.vertical-menu > ul > li > .sub-menu li.menu-item-has-children > a:before{display: none;}
nav.top_menu > ul > li.vertical-menu > ul > li > .sub-menu li.menu-item-has-children > a{font-weight: bold; margin-bottom: 5px}
nav.top_menu > ul > li.vertical-menu > ul > li > ul > li{display: block;min-width: 250px; width:250px; z-index: 1}
nav.top_menu > ul > li.vertical-menu > ul > li.inner-700 > .sub-menu{min-width: 700px; padding: 0;min-height: 1px;}
nav.top_menu > ul > li.vertical-menu > ul > li.inner-500 > .sub-menu{min-width: 500px; padding: 0;min-height: 1px;}
nav.top_menu > ul > li.vertical-menu > ul > li.inner-700 > ul > li, nav.top_menu > ul > li.vertical-menu > ul > li.inner-500 > ul > li{width: 100%;}
nav.top_menu > ul > li.vertical-menu > ul > li > .sub-menu .sub-menu{position: static;display: block;width: auto;box-shadow: none;border: 0;transform: translateY(0);opacity: 1;visibility: visible; background: transparent;}
nav.top_menu .vmegamenu-bg, nav.top_menu .vmegamenu-bg-ext {position: absolute;right: 0;bottom: 0;z-index: 0 !important;}
nav.top_menu .vmegamenu-bg-ext {right: -55px;bottom: -55px}
.rh-megamenu h4{margin-top: 0 }
#slide-menu-mobile{display: none;}
#slide-menu-mobile *{}
#slide-menu-mobile .subline{display: block;font-size: 12px;font-weight: normal;color: #999;}
#slide-menu-mobile ul.off-canvas { position: fixed; width: 270px; top: 0; left: 0; padding: 0; overflow-x: hidden; overflow-y: auto; background-color: #fff; -webkit-box-shadow: 0 100px 0 0 #fff; box-shadow: 0 100px 0 0 #fff; z-index: 99999; -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); -o-transform: translateX(-100%); transform: translateX(-100%);transition: all 0.3s ease; backface-visibility: hidden;-webkit-backface-visibility: hidden;}
#slide-menu-mobile ul li.menu-item { border-bottom: 1px solid #eee; position: static; display: block; margin: 0; float: none; overflow: hidden; width: 100% }
#slide-menu-mobile ul li.menu-item > a {line-height: 22px !important;float:left; padding: 10px 15px; font-size: 16px; text-transform: none; border-top: none; width: calc(100% - 50px); text-decoration: none; color: #111; font-weight: bold; }
#slide-menu-mobile ul ul.sub-menu { transition: all 0.3s ease; opacity: 1; visibility: visible; position: absolute; border: 0; width: 100%; min-height: 100%; top: 0; left: 0; background-color: #fff; -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); -o-transform: translateX(-100%); transform: translateX(-100%); backface-visibility: hidden;-webkit-backface-visibility: hidden;}
#slide-menu-mobile ul ul.sub-menu li a { border-bottom: none; }
#slide-menu-mobile ul ul.sub-menu.sub-menu-active { -webkit-transform: translateX(0); transform: translateX(0); z-index: 999; }
#slide-menu-mobile ul li.back-mb span{ cursor:pointer; background-color: rgba(0, 0, 0, 0.02);padding: 13px 15px; font-size: 15px; text-decoration: none; display: block; }
#slide-menu-mobile ul.off-canvas-active { opacity: 1; visibility: visible; -webkit-transform: translateX(0); transform: translateX(0); }
#slide-menu-mobile ul span.submenu-toggle { float:right; width: 42px; height: 42px; line-height: 42px; text-align: center; cursor: pointer; color: #000; }
#slide-menu-mobile ul span.submenu-toggle .fa, #slide-menu-mobile ul span.submenu-toggle .far, #slide-menu-mobile ul span.submenu-toggle .fab, #slide-menu-mobile ul span.submenu-toggle .fal { font-size: 14px; line-height: 42px; }
#slide-menu-mobile ul .rehub-custom-menu-item, #slide-menu-mobile .countdown_dashboard .dash{display: none;}
#slide-menu-mobile ul > li.close-menu { border:none !important;margin: 10px auto;}
.rh-close-btn, .rh-close-btn i{width: 40px; height: 40px;font-size: 20px;line-height: 40px;}
#slide-menu-mobile ul > li#social_icons_in_panel{padding: 15px;}
#slide-menu-mobile ul li.rh-megamenu .vc_row{padding: 15px 0}
#slide-menu-mobile ul li.rh-megamenu .vc_column_container>.vc_column-inner{padding: 0 15px; margin: 0}
#slide-menu-mobile ul li.rh-megamenu .vc_row a{ font-size: 15px; float: none; width: auto; padding: 0 }
#slide-menu-mobile ul li.rh-megamenu .vc_row .vc_tta-panel-heading a{padding: 14px 20px}
#slide-menu-mobile ul li.rh-megamenu .vc_row .vc_tta-panel-heading a.active {border-color: #ededed;background-color: #f2f2f2; color: #111;}
#slide-menu-mobile ul li.rh-megamenu .vc_row .vc_tta-panel-body{padding: 0; margin: 12px 2px;}
#slide-menu-mobile ul li.rh-megamenu .vc_row li{border: none;}
#slide-menu-mobile .rh-menu-label{display: none;}
.rh-megamenu .wpsm_recent_posts_list .item-small-news{border: none; padding: 0 0 8px 0}
.offsetnav-overlay { position: fixed; top: 0; left: 270px; right: 0; height: 120vh; background-color: rgba(0,0,0,0.5); z-index: 99999; }
#slide-menu-mobile .vc_col-sm-3, #slide-menu-mobile .vc_col-sm-4, #slide-menu-mobile .vc_col-sm-6, #slide-menu-mobile .vc_col-sm-2{width: 100%; margin-bottom: 15px}
#slide-menu-mobile .news_widget_item .detail, #slide-menu-mobile .item-small-news-image .item-small-news-details, #slide-menu-mobile .news_widget_item figure, #slide-menu-mobile .item-small-news figure, #slide-menu-mobile .left_news_col, #slide-menu-mobile .right_news_col, #slide-menu-mobile .wpsm-one-half, #slide-menu-mobile .wpsm-one-third, #slide-menu-mobile .wpsm-two-third, #slide-menu-mobile .wpsm-three-fourth, #slide-menu-mobile .wpsm-one-fourth, #slide-menu-mobile .wpsm-one-fifth, #slide-menu-mobile .wpsm-two-fifth, #slide-menu-mobile .wpsm-three-fifth, #slide-menu-mobile .wpsm-four-fifth, #slide-menu-mobile .wpsm-one-sixth, #slide-menu-mobile .wpsm-five-sixth{width: 100%; padding: 15px}
.widget.tabs > ul > li:hover, .comm_meta_wrap .rh_user_s2_label, .dark_sidebar .tabs-item .detail .post-meta a.cat, .wpsm_pretty_hover li:hover, .wpsm_pretty_hover li:hover a, .wpsm_pretty_hover li.current a, .wpsm_pretty_hover li.current { color: #ffffff; }
.footer-bottom .widget .f_menu li a:hover { text-decoration: underline; }
.rh-menu-label{z-index:1;position: absolute;top: -9px;right: 15px;padding: 2px 4px;color: #fff; font: 9px/10px Arial;text-transform: uppercase;background: #cc0000;}
.rh-menu-label.rh-menu-label-green{background: green}
.rh-menu-label.rh-menu-label-blue{background: blue}
.rh-menu-label:after {font-weight:900; content: "\f0da";font-family: Font Awesome\ 5 Pro;font-size: 16px;position: absolute;bottom: -4px;left: 0; color: #cc0000}
.rh-menu-label.rh-menu-label-green:after{color: green}
.rh-menu-label.rh-menu-label-blue:after{color: blue}
.header_top_wrap.dark_style { background-color: #000; width: 100%; border-bottom: 1px solid #3c3c3c; color: #ccc }
.header_top_wrap.dark_style .header-top a.cart-contents, .header_top_wrap.dark_style .icon-search-onclick:before {color: #ccc}
.header_top_wrap.dark_style .header-top { border: none;}
#main_header.dark_style .header-top{border-color: rgba(238, 238, 238, 0.22)}
.header_top_wrap.dark_style .header-top .top-nav > ul > li > a { color: #b6b6b6 }
#main_header.dark_style { background-color: #141414; }
.header_top_wrap.dark_style .user-ava-intop:after, .main-nav.dark_style .user-ava-intop:after, #main_header.dark_style .textlogo a, #main_header.dark_style .textlogo, #main_header.dark_style .sloganlogo, #main_header.dark_style .logo-section .user-ava-intop:after, #main_header.dark_style .logo-section .rh-header-icon, #main_header.dark_style .logo-section .heads_icon_label, .main-nav.dark_style .dl-menuwrapper button i, .main-nav.dark_style .dl-menuwrapper .rh-header-icon, #main_header.dark_style #re_menu_near_logo li a, #main_header.dark_style a.header-link-add { color: #ffffff; }
.main-nav.dark_style .dl-menuwrapper button svg line{stroke:#fff}
.main-nav.dark_style { max-height: 70px;background: #353535;}
.main-nav.dark_style nav.top_menu ul li.menu-item-has-children ul li.menu-item-has-children a:after{color: #ccc}
.main-nav.dark_style nav.top_menu > ul > li > a{color: #fbfbfb}
nav.top_menu > ul > li{border-right: 1px solid rgba(0, 0, 0, 0.08); }
nav.top_menu > ul > li:last-child{ border-right: none !important; box-shadow: none;}
.main-nav.dark_style nav.top_menu > ul > li {border-right: 1px solid rgba(255, 255, 255, 0.15);}
a.logo_image_insticky {display: none; text-decoration: none; margin: 6px 0 }
a.logo_image_insticky img, a.logo_image_mobile img{max-height: 40px; max-width: 180px; vertical-align: middle;}
.is-sticky a.logo_image_insticky, #dl-menu a.logo_image_mobile{display: inline-block;}
.is-sticky .logo_insticky_enabled nav.top_menu ul li a{ overflow: visible; font-size: 14px;}
.is-sticky .logo_insticky_enabled nav.top_menu > ul > li > a{padding-left: 10px; padding-right: 10px}
.is-sticky .logo_insticky_enabled nav.top_menu > ul > li{border: none !important;}
.is-sticky .rh-stickme, .stickyscroll_widget.scrollsticky{-webkit-animation: stuckMoveDown .6s;animation: stuckMoveDown .6s;}
.logo_insticky_enabled .top_menu{flex-grow: 1}
#logo_mobile_wrapper, a.logo_image_mobile img{display: none;}
#dl-menu a.logo_image_mobile img{ position: absolute; top: 0; left: 50%;transform: translate(-50%); right: auto; bottom: 0; margin: auto; display: block;}
.header_icons_menu #dl-menu a.logo_image_mobile img{left: 55px; transform: none;}
.ubermenu-loc-primary-menu{max-width: 1200px; margin: 0 auto !important}
.ubermenu-loc-primary-menu + .responsive_nav_wrap{display: none;}
#re_menu_near_logo{max-width: 370px; float: left; margin: 0 15px; overflow: hidden;}
#re_menu_near_logo li{float: left; font-size:16px; margin: 0 10px; line-height: 34px; font-family: Roboto, Arial; font-weight: bold;}
#re_menu_near_logo li i, .widget .title i{margin: 0 6px 0 0}
#re_menu_near_logo li a{color: #111}
.rh-header-icon{font-size: 24px;line-height: 23px; color: #222;}
#main_header #dl-menu .rh-header-icon{margin: 15px 9px}#main_header #dl-menu .rehub-main-btn-bg .rh-header-icon{margin: 0}
#main_header .rehub-main-btn-bg{padding: 8px 14px}
.rhsloganlogo { width: 440px; color: #ccc; font-size: 15px; line-height: 20px; float: left; margin-right: 25px }
.top_menu .user-dropdown-intop{margin: 15px 10px !important; float: right;}
/****************************************************************************
Content Wrappers
****************************************************************************/
.rh-boxed-container .rh-outer-wrap{box-shadow: 0 0 20px 0 rgba(0,0,0,.1);margin: 0 auto; width: 1260px;background: #fff;}
.rh-container, .content{margin: 0 auto; border: none; background: none transparent;width: 1200px; box-shadow: none; position: relative; clear: both; padding: 0 /*Inner is 1200*/}
.vc_section > .vc_row, .centered-container .vc_col-sm-12 > * > .wpb_wrapper, body .elementor-section.elementor-section-boxed > .elementor-container{max-width: 1200px; margin: 0 auto}
.rh-content-wrap{padding-top: 20px; padding-bottom: 20px}
.rh-mini-sidebar {width: 260px; margin-bottom: 30px}
.rh-mini-sidebar-content-area{width: calc(100% - 290px);}
.rh-300-sidebar {width: 300px; margin-bottom: 30px}
.rh-300-content-area{width: calc(100% - 330px);}
.rh-336-sidebar {width: 336px; margin-bottom: 30px}
.rh-336-content-area{width: calc(100% - 366px);}
.widget.rh-cartbox{margin: 0 0 25px 0}
.rh-mini-sidebar .widget{margin-bottom: 30px}
.rh-cartbox .widget-inner-title{font-weight:bold; font-size:16px; line-height: 18px; text-align: center;margin: -20px -20px 20px -20px;padding: 12px;color: #000;background: #f7f7f7;}
.main-side {width: 840px; float: left; position: relative; }
body:not(.noinnerpadding) .rh-post-wrapper {background:#fff; border: 1px solid #e3e3e3;padding: 25px;box-shadow: 0 2px 2px #ECECEC;}
.rh-container.no_shadow .main-side, .main-side.full_width:not(.single){padding: 0; border: none; box-shadow: none; background: none transparent}
.main-side.full_width { float: none; width: 100%; }
.main-side{min-height: 500px }
.main-side.authorcontent {float:right;}
.main-side .right-sec { float: right; }
.vc_row.vc_rehub_container{margin: 0 auto }
.vc_row.vc_rehub_container > .vc_col-sm-8 {width: 840px; float: left; padding: 0}
.vc_row.vc_rehub_container > .vc_col-sm-4 {width: 336px; float: right; padding: 0}
.vc_row.vc_rehub_container > .vc_col-sm-8.floatright{float: right;}
.vc_row.vc_rehub_container > .vc_col-sm-4.floatleft{float: left;}
.vc_custom_row_width {margin: 0 auto; padding: 0}
.vc_custom_row_width > .vc_column_container, .vc_custom_row_width > .vc_column_container > .vc_column-inner{margin: 0; padding: 0;}
.sidebar, .side-twocol { width: 336px; float: right; overflow: hidden;}
.sidebar.authorsidebar{float: left; background-color: #fff; color: #333; padding: 30px 20px; column-count: auto !important; -webkit-column-count: auto !important; margin-bottom: 30px}
.full_post_area.content, .full_post_area.rh-container{width: 100%; overflow: hidden; padding: 0;}
.full_post_area .rh-content-wrap{padding: 0}
.vc_row{margin-right: 0; margin-left: 0}
.wpsm-one-half { width: 48%; }
.wpsm-one-third { width: 30.66%; }
.wpsm-two-third { width: 65.33%; }
.wpsm-one-fourth { width: 22%; }
.wpsm-three-fourth { width: 74%; }
.wpsm-one-fifth { width: 16.8%; }
.wpsm-two-fifth { width: 37.6%; }
.wpsm-three-fifth { width: 58.4%; }
.wpsm-four-fifth { width: 79.2%; }
.wpsm-one-sixth { width: 13.33%; }
.wpsm-five-sixth { width: 82.67%; }
.wpsm-one-half, .wpsm-one-third, .wpsm-two-third, .wpsm-three-fourth, .wpsm-one-fourth, .wpsm-one-fifth, .wpsm-two-fifth, .wpsm-three-fifth, .wpsm-four-fifth, .wpsm-one-sixth, .wpsm-five-sixth { position: relative; margin-right: 4%; margin-bottom: 5px; float: left; }
.wpsm-column-last, .wpsm-one-half:last-of-type, .wpsm-one-third:last-of-type, .wpsm-one-fourth:last-of-type, .wpsm-one-fifth:last-of-type, .wpsm-one-sixth:last-of-type { margin-right: 0!important; clear: right; }
.wpsm-column-last:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
@media (min-width: 768px){
.vc_row.vc_rehub_container .vc_column_container>.vc_column-inner{padding: 0}
}
@media screen and (max-width: 1279px) and (min-width: 1141px){
.rh-boxed-container .rh-outer-wrap{width: 1120px}
.rh-container, .content{width: 1080px; }
.centered-container .vc_col-sm-12 > * > .wpb_wrapper, .vc_section > .vc_row, body .elementor-section.elementor-section-boxed > .elementor-container{max-width: 1080px}
.vc_row.vc_rehub_container > .vc_col-sm-8, .main-side{width: 755px}
.vc_row.vc_rehub_container>.vc_col-sm-4, .sidebar, .side-twocol{width: 300px}
}
@media (max-width: 1140px) {
.rh-boxed-container .rh-outer-wrap{width: 100%}
#mobile-menu-icons > .wpsm-button, #main_header .header_six_style .wpsm-button{ font-size: 0 !important; line-height: 0!important }
#mobile-menu-icons > .wpsm-button i, #main_header .header_six_style .wpsm-button i{font-size: 15px; padding: 0 !important}
header .logo { max-width: 250px;}
.laptopblockdisplay{display: block !important;width: 100% !important;float: none !important; margin: 0 0 10px 0}
}
@media (max-width: 1140px) and (min-width: 1024px){
.rh-container, .content{width: 980px; }
.centered-container .vc_col-sm-12 > * > .wpb_wrapper, .vc_section > .vc_row, body .elementor-section.elementor-section-boxed > .elementor-container{max-width: 980px}
.vc_row.vc_rehub_container > .vc_col-sm-8, .main-side{width: 655px}
.vc_row.vc_rehub_container>.vc_col-sm-4, .sidebar, .side-twocol{width: 300px}
}
@media (max-width: 1024px){
.logo-section .mobileinmenu, .hideontablet{display: none !important;}
.logo-section #mobile-menu-icons .mobileinmenu{display: inline-block !important;}
.header_nine_style .logo-section .mobileinmenu{display: block !important;}
.responsive_nav_wrap { display: block;}
.rh_woocartmenu-amount, .header-actions-logo, .header_seven_style .search{ display: none;}
#re_menu_near_logo{ float: none; margin: 10px auto; text-align: center;}
#re_menu_near_logo li{float: none; display: inline-block;}
.rhsloganlogo{ float: none; margin: 0 auto 10px auto;width: 95%; text-align: center;}
.tabletcenterdisplay{text-align: center !important;;}
.tabletblockdisplay{display: block !important;width: 100% !important;float: none !important; margin: 0 0 10px 0; clear: both !important}
.tabletpadding{padding: 0 20px !important}
.tabletrelative{position: relative !important; }
.disable-bg-on-tablet, .vc_row.disable-bg-on-tablet{background: none transparent !important}
.disablefloattablet.floatright, .disablefloattablet.floatleft{ float: none !important; margin-right: 0 !important; margin-left: 0 !important; display: inline-block !important;}
}
@media (max-width: 1023px) and (min-width: 768px){
.rh-container,
.main-side:not(.full_width),
.vc_row.vc_rehub_container > .vc_col-sm-8,
.vc_row.vc_rehub_container>.vc_col-sm-4,
.content{width: 740px; float: none; margin: 0 auto; clear: both;}
.centered-container .vc_col-sm-12 > * > .wpb_wrapper, .vc_section > .vc_row, body .elementor-section.elementor-section-boxed > .elementor-container{max-width: 740px}
.sidebar{width: 740px; border: none; clear: both; float: none;-webkit-column-count: 2;-webkit-column-gap: 20px;-moz-column-count: 2;-moz-column-gap: 20px;column-count: 2;column-gap: 20px;}
.sidebar .widget{ margin: 0 0 20px 0; width: 350px;clear: none;-webkit-column-break-inside: avoid;-moz-column-break-inside: avoid; column-break-inside: avoid; -webkit-column-width: 350px;transform: translateZ(0);column-width: 350px;}
}
@media (max-width: 1023px){
.hideonsmalltablet{display: none !important;}
.side-twocol{ float: none; width: 100%; margin-bottom: 10px; overflow: hidden; }
.vc_row:not(.vc_custom_row_width), .vc_row .vc_column_container{margin-left: auto; margin-right: auto; padding-left: 0; padding-right: 0;}
.vc_row .vc_column_container>.vc_column-inner{margin-left: 0; margin-right: 0;}
.sidebar{margin: 30px auto 0 auto;}
.left-sidebar-archive .sidebar{margin: 0 auto 30px auto;}
body .disabletabletpadding{padding: 0 !important;}
}
@media (max-width: 767px){
.centered-container .vc_col-sm-12 > * > .wpb_wrapper,
body .elementor-section.elementor-section-boxed > .elementor-container,
.vc_section > .vc_row,
.rh-336-content-area,
.rh-336-sidebar,
.rh-300-content-area,
.rh-300-sidebar,
.rh-mini-sidebar-content-area,
.rh-mini-sidebar,
.sidebar,
.main-side,
.vc_row.vc_rehub_container > .vc_col-sm-8,
.vc_row.vc_rehub_container>.vc_col-sm-4,
.vc_row.vc_rehub_container > .vc_col-sm-8.floatright,
.content{width: 100%; float: none; display: block;}
.rh-container{width: 100%; padding-left: 15px; padding-right: 15px}
.main-nav .rh-container{padding: 0}
.responsive_nav_wrap{display: block;}
.carousel-style-3 .controls.prev { left: 10px; }
.carousel-style-3 .controls.next { right: 10px; }
body .mobilepadding{padding: 0 15px !important}
.hideonmobile{display: none !important; }
.mobilevisible{display: inline-block !important;}
body .disablemobilepadding{padding: 0 !important;}
body .disablemobilemargin{margin: 0 !important;}
body .disablemobileborder{border:none !important;}
body .disablemobilealign{text-align: inherit !important;}
.vc_row.disablebgmobile, .disable-bg-on-mobile, .vc_row.disable-bg-on-mobile{background: none transparent !important}
.mobilecenterdisplay{text-align: center !important;}
.mobilerelative{position: relative !important;}
.vc_row .vc_col-sm-4 .sidebar{padding: 0}
.tabledisplay.mobileblockdisplay, .mobileblockdisplay .celldisplay, .mobileblockdisplay .rowdisplay, .mobileblockdisplay{display: block !important;width: 100% !important;float: none !important;}
.disablefloatmobile.floatright, .disablefloatmobile.floatleft{ float: none !important; margin-right: 0 !important; margin-left: 0 !important; clear: both; }
}
@media (max-width: 600px){
.wpsm-one-half, .wpsm-one-third, .wpsm-two-third, .wpsm-three-fourth, .wpsm-one-fourth, .wpsm-one-fifth, .wpsm-two-fifth, .wpsm-three-fifth, .wpsm-four-fifth, .wpsm-one-sixth, .wpsm-five-sixth { width: 100%; float: none; margin-right: 0; margin-bottom: 20px; }
.wpsm-one-half-mobile{width: 48%; margin-right: 4%;}
.wpsm-one-third-mobile{width: 30.66%; margin-right: 4%;}
}
@media (max-width: 479px) {
.main-side{border: none; box-shadow: none; padding: 0}
body:not(.dark_body):not(.page-template-template-systempages){background: #fff !important}
body:not(.dark_body) .rh-post-wrapper{background: none; padding: 0; border: none; box-shadow: none}
.showonsmobile{display: block !important; }
.hideonsmobile{display: none !important; }
.mobilesblockdisplay{display: block !important;width: 100% !important;float: none !important; margin-left: 0 !important; margin-right: 0 !important}
}
@media (min-width: 768px){.desktabldisplaynone{display: none !important;}}
@media (min-width: 1023px){.desktopdisplaynone{display: none !important;}}
.title_single_area h1{font-size: 34px; line-height: 34px;margin: 0 0 20px 0; word-break: break-word;}
.rh_post_layout_outside .title_single_area h1{ font-size: 38px; line-height: 40px; }
.rh_post_layout_fullimage .title_single_area h1{ font-size: 44px; line-height: 46px; }
.rh_post_layout_compact .title_single_area h1, .rh_post_layout_compare_autocontent .title_single_area h1{font-size: 24px;line-height: 28px;margin-bottom: 15px;}
.title_single_area .post-meta{ margin-bottom: 20px; overflow: hidden;}
.title_single_area { margin-bottom: 15px;}
.rh_post_layout_outside .title_single_area {border-bottom: 1px solid #ddd; margin-bottom: 25px;}
.title_single_area .re-line-badge{margin-bottom: 10px}
#rh_post_layout_inimage{color:#fff; background-position: center center; background-repeat: no-repeat; background-size: cover; background-color: #333;position: relative;width: 100%;z-index: 1;}
.rh_post_layout_inner_image, .rh_post_layout_fullimage{margin: 0 0 25px 0}
.rh_post_layout_inner_image #rh_post_layout_inimage{min-height: 500px;}
.rh-post-layout-image-mask{width: 100%;height: 100%;position: absolute;top: 0;left: 0;right: 0;bottom: 0; z-index: 1;
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,.3)),color-stop(18%,rgba(0,0,0,0)),color-stop(28%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.6)));
background: -webkit-linear-gradient(top,rgba(0,0,0,.3) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 28%,rgba(0,0,0,.6) 100%);
background: -o-linear-gradient(top,rgba(0,0,0,.3) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 28%,rgba(0,0,0,.6) 100%);
background: -ms-linear-gradient(top,rgba(0,0,0,.3) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 28%,rgba(0,0,0,.6) 100%);
background: linear-gradient(to bottom,rgba(0,0,0,.3) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 28%,rgba(0,0,0,.6) 100%);
}
#rh_post_layout_inimage .rh_post_breadcrumb_holder{z-index: 2;position: absolute;top: 0;left: 0;min-height: 35px;padding: 20px 50px 0 20px;}
#rh_post_layout_inimage .breadcrumb a, #rh_post_layout_inimage h1, #rh_post_layout_inimage .post-meta span a, #rh_post_layout_inimage .post-meta a.admin, #rh_post_layout_inimage .post-meta a.cat, #rh_post_layout_inimage .post-meta{color: #fff;text-shadow: 0 1px 1px #000;}
#rh_post_layout_inimage .breadcrumb{color: #f4f4f4}
#rh_post_layout_inimage .title_single_area{margin: 0 0 25px 0}
.rh_post_layout_inner_image .rh_post_header_holder{position: absolute;bottom: 0;padding: 0 20px 0;z-index: 2;color: white;width: 100%; }
.title_single_area .post-meta span{margin-right: 15px }
.rh_post_layout_fullimage .rh-container{overflow: hidden; z-index:2; position:relative; min-height: 420px;}
.rh_post_layout_fullimage .re-starburst{position: absolute; top: 30px; right: 20px}
.rh-cat-list-title{margin: 0 0 8px 0; line-height: 11px; display: inline-block;}
.title_single_area .post-meta{color: #111}
.rh_post_layout_default .wpsm-button-new-compare, .rh_post_layout_metabig .wpsm-button-new-compare, .rh_post_layout_compare_ce .wpsm-button-new-compare{float: right; margin: 0 0 5px 15px}
.rh_post_layout_default.rh_post_layout_center .wpsm-button{float: none;}
@media (min-width: 1024px){
.post-readopt .ph-article-featured-image{ margin-left: 2.04082%;margin-right: 2.04082%;}
.post-readopt.full_width .post-inner, .post-readopt:not(.main-side){margin-left: 12%;margin-right: 12%; max-width: 800px}
.post-readopt.w_sidebar .post-inner{margin-left: 4%;margin-right: 4%;}
.post-readopt blockquote p{font-size: 28px; line-height: 1.3em; }
.post-readopt img.alignright{margin: 1.5em -10% 1.5em 1.5em}
.post-readopt img.alignleft{margin: 1.5em 1.5em 1.5em -10%}
.post-readopt .wpsm_box, .post-readopt .rate_bar_wrap{font-size: 18px; line-height: 30px}
.post-readopt .title_comments{display: none;}
.post-readopt .post-meta-left{width: 100px; color: #666; text-transform: uppercase;}
.post-readopt .leftbarcalc{width: calc(100% - 140px);}
}
@media (max-width: 1023px){
}
@media (min-width:500px){
.post-readopt .post-inner, .post-readopt:not(.main-side), .post-readopt .post{font-size: 18px;line-height: 1.85em;}
}
.featured_single_left{width: 135px; height: 135px; margin: 0 0 20px 0; padding-right: 20px }
.featured_single_left figure{width: 135px; height: 135px; max-width:135px; border: 1px solid #eee; padding: 5px; vertical-align: middle; text-align: center; position: relative;display: table-cell; }
.featured_single_left figure img{width: auto; max-height: 123px}
.featured_single_left, .single_top_main, .single_top_corner{display: table-cell; vertical-align: top}
.single_top_corner{padding-left: 20px; text-align: right;}
.single_top_corner .wpsm-button{float: right; margin: 0 0 15px 0; white-space: nowrap;}
.single_top_postproduct{clear: both;overflow: hidden; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 30px}
.floating .single_top_postproduct{border:none; margin: 0 auto;}
.floating .single_top_postproduct .post-meta{display: none;}
.left_st_postproduct{float: left;}
.left_st_postproduct .post_thumbs_wrap, .left_st_postproduct .post-meta{float: left;}
.left_st_postproduct .post_thumbs_wrap{margin-right: 20px}
.left_st_postproduct .post-meta{line-height: 32px; font-size: 12px; margin-bottom: 0}
.left_st_postproduct .post-meta span{margin-right: 12px}
.right_st_postproduct{float: right;}
.single_top_postproduct .wpsm-button{margin: 0}
.single_top_corner .brand_logo_small{clear: both;}
.single_top_corner .brand_logo_small img{ max-width: 120px;max-height: 65px;}
.rh_post_layout_compact .title_single_area{display: table; width: 100%}
.rh_post_layout_compact .title_single_area .post-meta{margin: 0 0 15px 0}
.right_aff { float: right; width: 35%; margin: 0 0 0 20px; position: relative; }
.right_aff .priced_block .btn_offer_block, .right_aff .priced_block .button { position: absolute; top: -26px; right: 0; padding: 15px; box-shadow: none; }
.separate_sidebar_bg .right_aff .priced_block .btn_offer_block{right: -26px; box-shadow: none !important;}
body.noinnerpadding .right_aff .priced_block .btn_offer_block{right: 0; top:0;}
.right_aff .priced_block .price_count { position: absolute; top: -38px; left: 0; padding: 28px 12px 22px 12px; font-size:15px; line-height: 15px; font-weight: bold; text-shadow: 0 1px 1px #FFF9E7; background: #F9CC50;color: #111; }
.right_aff .priced_block .price_count:before { width: 0; height: 0; border-style: solid; border-width: 13px 0 0 8px; border-color: transparent transparent transparent #967826; content: ""; position: absolute; top: 0; right: -8px }
.right_aff .priced_block .price_count .triangle_aff_price { width: 0; height: 0; border-style: solid; border-color: #f9cc50 transparent transparent transparent; content: ""; position: absolute; top: 100%; left: 0 }
.right_aff .priced_block .price_count ins { border: 1px dashed #444; padding: 5px 0; border-left: none; border-right: none; }
.right_aff .priced_block .price_count del{display: none;}
.right_aff .priced_block .price_count, .right_aff .priced_block .btn_offer_block, .right_aff .priced_block .button, .custom_search_box button[type="submit"]{border-radius: 0 !important}
.post .right_aff .priced_block{ margin: 20px 0 26px 0}
.right_aff .rehub_offer_coupon{display: block;}
.right_aff .priced_block .btn_offer_block:active{ top: -25px}
body.noinnerpadding .right_aff .priced_block .price_count{top:-13px;}
body.noinnerpadding .right_aff{border-top: 1px solid #eee}
.right_aff .not_masked_coupon{margin-top: 40px}
.rehub_quick_offer_justbtn{ margin: 20px auto;}
.post .rehub_quick_offer_justbtn .priced_block{ display: inline-block; }
.post .rehub_quick_offer_justbtn .priced_block .btn_offer_block{padding: 12px 20px; font-size: 18px}
.ameb_search{ font-size: 12px; line-height: 12px; text-align: right; }
.ameb_search a{ display: block; margin-bottom: 10px}
.featured_compare_left, .single_compare_right{float: left; width: 47%; }
.featured_compare_left{width: 53%; padding-right:20px; padding-bottom: 20px }
.featured_compare_left figure, .compare-full-images figure{text-align: center; position: relative;}
.offer-box-price h5{font-size: 34px;line-height: 40px;font-weight: normal;margin: 0 0 18px 0;}
.offer-box-price .retail-old{font-size: 20px;opacity: 0.3;}
.rh_post_layout_big_offer .priced_block .btn_offer_block {display: inline-block;float: none;text-align: center;font-size: 24px;line-height: 21px;padding: 14px 50px;text-transform: none;border-bottom: 4px solid rgba(0,0,0,0.2) !important;border-radius: 4px;text-shadow: 2px 2px rgba(0,0,0,0.4);}
.rh_post_layout_big_offer .priced_block .btn_offer_block:not(.rehub_offer_coupon):before{font-family: Font Awesome\ 5 Pro; margin: 0 5px; content: "\f058"}
.rh_post_layout_big_offer .rh-float-panel .priced_block .btn_offer_block{font-size: 21px; padding: 12px 35px; white-space: nowrap;}
.rh_post_layout_big_offer .title_single_area h1{font-size: 26px; line-height: 28px}
.rh_post_layout_big_offer .not_masked_coupon{margin-bottom:10px; width: 200px; padding: 8px; font-size: 16px; display: inline-block;text-decoration: none;}
.rh_post_layout_big_offer .brand_logo_small img{display: block;margin-bottom: 18px}
.featured_compare_left figure img{max-height: 350px; width: auto}
.compare-full-images figure img{width: auto; max-height: 500px}
.rh_post_layout_big_offer .post-meta-big{margin: 0 0 5px 0; border: none;}
.rh_post_layout_compare_holder{border-bottom: 1px solid #ededed; overflow: hidden; padding-bottom: 20px; margin: 0 0 30px 0}
.rh_post_layout_compare_full .title_single_area h1{ font-size: 24px; line-height: 30px; }
.meta-in-compare-full{overflow: hidden;padding: 10px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin: 0 0 20px 0}
.rh_post_layout_compare_full{overflow: hidden; margin-bottom: 25px; margin-top: 20px}
.noinnerpadding .rh_post_layout_compare_full{padding: 20px; border: 1px solid #eee;}
.rh-boxed-container .rh_post_layout_compare_full{padding: 20px; }
.rh_post_layout_compare_full .featured_list{margin: 0 0 20px 0; font-size: 15px; line-height: 22px}
.rh_post_layout_compare_full .featured_list li{margin: 0 0 5px 15px; list-style: disc;}
.compare-button-holder .wpsm-button.rehub_main_btn{box-shadow: 0 18px 38px 0 rgba(0,0,0,0.06),0 8px 40px 0 rgba(0,0,0,0.06) !important;}
.compare-button-holder .price {font-weight: normal;font-size: 1.5em;font-family: "Roboto", Arial;letter-spacing: -0.5px;padding: 0 0 15px 0;margin: 0;}
.rh_post_layout_compare_full .top_share .post_share{margin-bottom: 0}
.notextshare .row_social_inpost span.fb:after, .notextshare .row_social_inpost span.tw:after{display: none;}
.compare-domain-icon span{font-weight: normal;display: inline-block;}
.compare-domain-icon .compare-domain-text{font-weight: bold;margin: 0 3px}
.compare-domain-text::first-letter{text-transform: uppercase;}
.compare-domain-icon img{vertical-align: middle; max-width: 80px; margin: 0 3px }
.rh_post_layout_compact_dir .single_top_main .stars-rate {margin: 0 0 10px 0;display: inline-block;}
.rh-tabletext-block{clear:both; border: 1px solid #ededed;overflow: hidden; margin: 0 0 25px 0; width: 100%; background: #fff; box-shadow: 0 1px 1px 0 rgba(0,0,0,.12); }
.rh-tabletext-block-heading{border-bottom: 1px solid #ededed; padding: 12px 15px; font-weight: bold; background: #fafafa;}
.rh-tabletext-block-heading h4{font-size: 17px; line-height: 18px; margin: 0}
.rh-tabletext-block-heading.no-border{border:none;}
.rh-tabletext-block-left{background: #f4f4f4; width: 200px; font-size: 11px;box-shadow: inset -50px 0 50px #eee;}
.rh-tabletext-block-left, .rh-tabletext-block-right{padding: 15px; vertical-align: top;}
.rh-tabletext-block-wrapper{padding: 20px; }
.rh-tabletext-block-wrapper .wpsm-table table{margin: 0}
.rh-tabletext-block-wrapper .heading-th-spec-line{display: none;}
.rh-tabletext-block-wrapper .wpsm-table table tr th{text-transform: none;}
.rh-tabletext-block.closedtable div:not(.rh-tabletext-block-heading){display: none;}
.toggle-this-table{float: right; margin: 0 0 0 10px; cursor: pointer;line-height: 18px;}
.toggle-this-table:after{content: "\f107"; font-family: Font Awesome\ 5 Pro}
.closedtable .toggle-this-table:after{content: "\f106"}
body .ce-price-hist ul li{padding: 0 0 5px 0; margin: 0; list-style: none !important;}
body .ce-price-hist ul{margin: 0 0 10px 0}
body .ce-price-hist ul.rh-lowest-highest {margin: 20px 0 0 10px}
.widget_merchant_list .csspopuptrigger, .pricealertpopup-wrap .csspopuptrigger{font-size: 13px;}
@media screen and (max-width: 760px) {
.rh-tabletext-block-left{width: 180px}
}
@media screen and (max-width: 560px) {
.rh-tabletext-block{display: block;}
.rh-tabletext-block-left, .rh-tabletext-block-right{display: block; width: 100%}
}
.csspopup {overflow-x: auto; overflow-y: scroll;position: fixed;top: -2000px;left: 0;right: 0;background: rgba(0, 0, 0, 0.7);transition: opacity 500ms;visibility: hidden;opacity: 0;}
.csspopup.active {visibility: visible;opacity: 1;z-index: 999999999; top: 0; bottom: 0}
.csspopupinner {max-width:92%; margin: 70px auto;padding: 25px;box-sizing:border-box; background: #fff;border-radius: 5px;width: 700px;position: relative;transition: all 5s ease-in-out;}
.csspopup .cpopupclose {position: absolute;top: -20px;right: -20px;font-size: 30px;font-weight: bold;text-decoration: none;color: #fff;background: #ccc;width: 40px;height: 40px;line-height: 40px;text-align: center;}
.csspopup .cpopupclose:hover {background: #000;}
.cpopupclose, .csspopuptrigger{cursor: pointer;}
.limited-thumb-number a:nth-child(n+5){display: none;}
.compare-full-thumbnails{overflow: hidden;}
.compare-full-thumbnails a {width: 23%;vertical-align: middle;max-height: 300px;float: left;text-align: center;margin: 1%; text-decoration: none;}
.compare-full-thumbnails.five-thumbnails a{width: 18%}
.rh_mini_thumbs.compare-full-thumbnails img{max-height:65px; display:inline-block}
.rh_post_layout_compare_autocontent .pros-list{overflow: hidden; margin: 0 0 20px 0}
.rh_post_layout_compare_autocontent .pros-list li{ font-size: 14px;line-height: 18px;width: 47%;float: left;margin: 0 3% 8px 0;list-style: none; }
.rh_post_layout_compare_autocontent .pros-list li:before{font-family: Font Awesome\ 5 Pro; content: "\f00c"; margin: 0 3px; font-size: 13px; color: green}
.rh_post_layout_compare_autocontent{overflow: hidden; margin: 0 0 30px 0}
.rh_post_layout_rev_price_holder{position: relative;}
.rh_price_holder_add_links{position: absolute;top: 0;right: 0;font-size: 12px;line-height: 16px;}
.bigoffer-overall-score .overall{font-weight: bold; font-size: 20px;}
.bigoffer-overall-score .wpsm-bar-percent{display: none;}
.bigoffer-overall-score .wpsm-bar, .bigoffer-overall-score .wpsm-bar-bar{height: 18px}
.re_title_inmodal {font: normal 25px Roboto;text-align: center;padding: 5px 0 15px;position: relative;}
.re_title_inmodal .fa-bell-o{color:#17baae}
.csspopupinner .wpcf7 p{margin: 0 0 12px 0}
@media screen and (max-width: 1224px) {
.left_st_postproduct .post-meta span{margin: 0; display: block; line-height: 18px}
}
@media screen and (max-width: 1224px) and (min-width: 1024px){
}
@media screen and (max-width: 1023px) and (min-width: 768px){
.rh_post_layout_compare_full .wpsm-one-half{width: 100%; margin-right: 0}
.rh_post_layout_compare_full .wpsm-one-half.wpsm-column-first{margin-bottom: 25px}
.right_aff .priced_block .btn_offer_block, .right_aff .priced_block .button{right: -25px}
.rh_post_layout_inner_image #rh_post_layout_inimage, .rh_post_layout_fullimage .rh-container{min-height: 370px;}
#rh_post_layout_inimage .title_single_area h1{font-size: 28px; line-height: 34px}
}
@media screen and (max-width: 767px){
.rh_post_layout_compare_autocontent .pros-list li{float: none; width: 100%}
.rh_post_layout_compare_autocontent .review-top{float: none !important}
.rh_post_layout_compare_autocontent .compare-button-holder{margin-top: 20px}
.csspopupinner{width: 92%}
.rh_post_layout_compact_dir .single_top_corner .btn_offer_block{display: block;}
.rh_post_layout_compare_full .wpsm-one-half, .rh_post_layout_compare_full .wpsm-one-third, .rh_post_layout_compare_full .wpsm-two-third{width: 100%; margin-right: 0}
.rh_post_layout_compare_full figure{text-align: center;}
.rh_post_layout_compare_full .wpsm-button-new-compare, .rh_post_layout_compare_autocontent .wpsm-button-new-compare{margin-top:12px;}
.rh_post_layout_compare_full .wpsm-one-half.wpsm-column-first{margin-bottom: 25px}
.right_aff { width: 100%; margin: 0 0 30px 0}
#rh_post_layout_inimage .title_single_area{margin: 0 0 12px 0}
.rh_post_layout_inner_image #rh_post_layout_inimage, .rh_post_layout_fullimage .rh-container{min-height: 300px;}
#rh_post_layout_inimage .title_single_area h1{font-size: 24px; line-height: 24px}
.rh_post_layout_corner{margin-top: 25px}
}
a.comment { background: none transparent; border: 1px solid #fff; padding: 2px 5px; line-height: 16px; width: auto; height: auto; top: 10px; right: 10px; min-width: 11px; font: bold 15px 'Roboto', trebuchet ms; text-align: center; display: inline-block; position: absolute; color: #fff !important; z-index: 101; text-decoration: none !important; }
a.comment:after { top: 100%; right: 0; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(255, 255, 255, 0); border-top-color: #ffffff; border-width: 7px 9px 9px 0; margin-left: -9px; }
a.comment_two { background: none transparent; border: 1px solid #000; padding: 2px 5px; line-height: 16px; width: auto; height: auto; position: relative; min-width: 11px; color: #111 !important; font: bold 15px 'Roboto', trebuchet ms; text-align: center; display: inline-block; text-decoration: none !important; }
a.comment_two:after { top: 100%; right: 0; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(0, 0, 0, 0); border-top-color: #000000; border-width: 7px 9px 9px 0; margin-left: -9px; }
.pattern { pointer-events: none}
.pattern { bottom: 0; display: block; left: 0; opacity: 1; position: absolute; right: 0; top: 0; transition: opacity 0.5s ease 0s; width: 100%; z-index: 9; }
.news:hover .pattern, .side-twocol .columns:hover .pattern, .video_widget figure:hover .pattern, .small_post:hover .pattern, .post_slider:hover .pattern, .edd_masonry_grid:hover .pattern{ opacity: 0 }
.woocommerce-pagination, .pagination { text-align: center; clear: both; margin: 10px auto;}
body .woocommerce-pagination{display: block;}
ul.page-numbers{ flex-basis: 100%; display: inline-block; white-space: nowrap; padding: 0; clear: both; border: 1px solid #e0dadf; border-right: 0; margin: 1px; }
ul.page-numbers li {list-style: none !important; text-align: center; border-right: 1px solid #e0dadf; padding: 0; margin: 0; float: left;}
ul.page-numbers li a, ul.page-numbers li span{ margin: 0; text-decoration: none; line-height: 1em; font-size: 1em; font-weight: normal; padding: .5em; min-width: 2em; display: block; }
ul.page-numbers li a { color: #555 }
ul.page-numbers li span.current, ul.page-numbers li a:hover, ul.page-numbers li.active a, .page-link > span:not(.page-link-title) { background: #f7f6f7; }
.page-link { border-right: 1px solid #e0dadf; position:relative; margin: 15px 0 20px 0; overflow:hidden; display: inline-block; white-space: nowrap;clear: both; }
.page-link a, .page-link > span {border: 1px solid #e0dadf; border-right:none; margin: 0;float: left;overflow: hidden;text-align: center;line-height: 1em;font-size: 15px;padding: .7em;white-space: nowrap;min-width: 1em; text-decoration: none !important; }
.page-link a:hover { background: #f7f6f7; }
.cats_def a { font: 700 11px/13px 'Roboto', trebuchet ms; color: #888; margin-right: 4px; display: inline-block; margin-bottom: 4px; text-transform: uppercase; text-decoration: none;}
figure.top_featured_image img { width: auto; height: auto;}
.post-meta { margin-bottom: 12px; font-size: 12px; line-height: 12px; font-style: italic; color: #999;}
span.date_meta:before, span.cat_link_meta:before, span.comm_count_meta:before, span.postview_meta:before, span.admin_meta:before{ font-size: 3px;line-height: 12px;vertical-align: middle; padding-right: 5px; content: "\f111"; font-family: Font Awesome\ 5 Pro}
span.date_meta:before, span.postview_meta:before{font-weight: 900}
.admin_meta .admin img{vertical-align: middle; margin-right: 5px; border-radius: 50%}
span.postview_meta:before{content: "\f06e"; font-size: 12px; font-style: normal;}
span.comm_count_meta:before{content: "\f4ad"; font-size: 12px;font-style: normal;}
.post-meta span:first-child:before{display: none;}
.post-meta span.postview_meta:first-child:before, .post-meta span.comm_count_meta:first-child:before{display: inline-block;}
.post-meta span {display: inline-block; margin-right: 8px; }
.post-meta span a, .post-meta a.admin, .post-meta a.cat, .post-meta-big a{color: #111; text-decoration: none;}
.post-meta-big{overflow: hidden; margin: 0 0 15px 0; padding: 0 0 18px 0; color: #aaa; border-bottom: 1px solid #eee}
.post-meta-big img{border-radius: 50%}
.post-meta-big span.postview_meta:before, .post-meta-big span.comm_count_meta:before{font-size: 20px; padding-right: 8px}
.authortimemeta{line-height: 18px; font-weight: bold;}
.post-meta-big span.postview_meta{color: #cc0000}
.post-meta-big span.postview_meta:before{content: "\f0e7"; font-weight: 900 }
.post-meta-big span.comm_count_meta:before{content: "\f4a6"; font-weight: 300}
.date_time_post{font-size: 13px; font-weight: normal;}
.postviewcomm{line-height: 28px; font-size: 15px}
.sticky h2 i { margin-right: 6px }
.post { margin-bottom: 15px; counter-reset: wpsmtop; word-wrap: break-word; }
.post .comment_two, .stream_title .comment_two{ float: right; }
h2.ext_link { display: inline-block }
.post .player { margin-bottom: 10px; display: inline-block; }
.post figure.top_featured_image{ max-width: 100%; margin-bottom: 25px; position: relative; overflow: hidden; text-align: center; }
.post ul li { list-style: disc outside none; }
.post li { margin: 0 0 5px 15px; }
.post ul.list-unstyled{margin: 0}
.post ul.list-unstyled li{list-style: none; margin: 0 0 5px 0}
ul.list-unstyled.list-line-style li{display: inline-block; margin: 0 10px 5px 0;}
ul.list-line-style li a{color: #333}
.post ol, .post ul { margin-bottom: 25px }
/******** Feature Side Column ********/
.wpsm_featured_wrap{overflow: hidden; margin-bottom: 35px}
.vc_row .wpsm_featured_wrap{margin: 0}
.side-twocol .columns { height: 220px; position: relative; overflow: hidden; }
.side-twocol .columns .col-item{height: 100%}
.side-twocol .news_in_thumb figure{min-height: 100px; margin: 0}
.side-twocol figure img, .side-twocol figure{height: 100%; width: 100% }
.col-feat-grid{z-index:2; background-position: center center;background-size: cover; position: relative;}
.col-feat-grid.item-1, .col-feat-50{ width: 50%; float: left; height: 450px}
.col-feat-50 .col-feat-grid{ width: calc(50% - 5px); float: left; height: 220px}
.feat_overlay_link{width: 100%;height: 100%;position: absolute;z-index: 1; bottom: 0; left: 0; right: 0;}
.col-feat-grid.item-1 .text_in_thumb h2{ font-size: 28px; line-height: 34px}
.featured_grid .wcvendors_sold_by_in_loop{color: #eee}
.featured_grid .wcvendors_sold_by_in_loop a{color: #fff}
.blacklabelprice {margin: 0 0 12px 0;background: #000000;padding: 8px;display: inline-block;font-weight: bold;}
.blacklabelprice del{opacity: 0.8 !important;font-weight: normal; color: #fff !important}
@media screen and (max-width: 1224px) and (min-width: 1024px) {
.col-feat-grid.item-1, .col-feat-50{ height: 380px}
.col-feat-50 .col-feat-grid{height: 185px}
.side-twocol .columns {height: 200px}
}
@media screen and (max-width: 1023px) {
.col-feat-grid.item-1, .col-feat-50 { float: none; width: 100%; margin-bottom: 10px; overflow: hidden; }
.col-feat-50{margin: 0}
.side-twocol .columns{ width: 48.5%; float: left;}
.side-twocol .col-1 {margin: 0 3% 0 0;}
.side-twocol .columns a.comment{ display:none}
.side-twocol .columns{height: auto;}
}
@media only screen and (max-width: 767px) {
.col-feat-50 .col-feat-grid{ height: 200px}
.col-feat-50 {height: auto;}
.col-feat-grid.item-1{height: 350px}
.col-feat-grid.item-1 .text_in_thumb h2{font-size: 21px;line-height: 24px}
}
@media only screen and (max-width: 400px) {.col-feat-grid.item-1{height: 260px} }
/******** All Headings ********/
.wpsm-title{text-align: left; position: relative; overflow: hidden;}
.wpsm-title.right-align-title{text-align: right;}
.wpsm-title.center-align-title{text-align: center;}
.wpsm-title h5{margin: 0; padding: 15px 0; display: inline-block; position: relative; z-index: 9; background-color: #fff}
.wpsm-title h5 i{ padding: 0 4px}
.wpsm-cat-title.wpsm-title h5{background-color: transparent;}
.wpsm-title.extrasmall-size-title{margin: 0 0 22px 0}
.wpsm-title.small-size-title{margin: 0 0 23px 0}
.wpsm-title.middle-size-title{margin: 0 0 25px 0}
.wpsm-title.big-size-title{margin: 0 0 33px 0}
.wpsm-title.extrabig-size-title{margin: 0 0 32px 0}
.wpsm-title.inside-title-line.middle-size-title, .wpsm-title.inside-title-line.small-size-title{ margin: 0 0 15px 0}
.wpsm-title.under-title-line:after{content: ""; height: 1px; width: 100%; position: absolute; bottom: 0; left: 0; background-color: #eee; z-index: 10}
.wpsm-title.above-title-line:after{content: ""; height: 1px; width: 100%; position: absolute; top: 0; left: 0; background-color: #eee; z-index: 10}
.wpsm-title.inside-title-line:after{content: ""; height: 1px; width: 100%; position: absolute; top: 50%; left: 0; background-color: #eee; z-index: 1}
.wpsm-title.inside-title-line.left-align-title h5:after,
.wpsm-title.inside-title-line.right-align-title h5:before,
.wpsm-title.inside-title-line.center-align-title h5:after,
.wpsm-title.inside-title-line.center-align-title h5:before{content: ""; padding-right: 7px; padding-left: 7px; background-color: #fff}
.wpsm-title.small-line-line.left-align-title:after{z-index: 10;content: ""; height: 3px; width: 60px; position: absolute; bottom: 0; left: 0; background-color: #eee}
.wpsm-title.small-line-line.right-align-title:after{z-index: 10;content: ""; height: 3px; width: 60px; position: absolute; bottom: 0; right: 0; background-color: #eee}
.wpsm-title.small-line-line.center-align-title:after{z-index: 10;content: ""; height: 3px; width: 60px; position: absolute; bottom: 0; left: 50%; background-color: #eee; margin-left: -30px}
.add-link-title{float: right;padding: 14px;line-height: 18px;background-color: #fff;z-index: 9;position: relative; font-size: 13px;}
.wpsm-title.extrasmall-size-title .add-link-title{padding: 6px 12px;}
.wpsm-title.small-size-title .add-link-title{padding: 10px 12px;}
.wpsm-title.middle-size-title .add-link-title{padding: 14px 12px;}
.wpsm-title.big-size-title .add-link-title{padding: 18px 12px;}
.wpsm-title.extrabig-size-title .add-link-title{padding: 21px 12px;}
.wpsm-title.right-align-title .add-link-title{ float: left;}
.wpsm-title.extrasmall-size-title h5{ font-size: 13px; padding: 6px 0}
.wpsm-title.small-size-title h5{ font-size: 16px; padding: 10px 0}
.wpsm-title.middle-size-title h5{ font-size: 20px; padding: 14px 0; line-height: 25px}
.wpsm-title.big-size-title h5{ font-size: 25px; padding: 18px 0; line-height: 30px }
.wpsm-title.extrabig-size-title h5{ font-size: 32px; padding: 21px 0; line-height: 36px}
.wpsm-title.background_title.middle-size-title h5, .wpsm-title.background_title.middle-size-title .add-link-title{padding: 8px 13px}
.wpsm-title.background_title.small-size-title h5, .wpsm-title.background_title.small-size-title .add-link-title{padding: 5px 10px}
.wpsm-title.background_title.extrasmall-size-title h5, .wpsm-title.background_title.extrasmall-size-title .add-link-title{padding: 3px 8px}
.wpsm-title.background_title.big-size-title h5, .wpsm-title.background_title.big-size-title .add-link-title{padding: 10px 16px}
.wpsm-title.background_title.extrabig-size-title h5, .wpsm-title.background_title.extrabig-size-title .add-link-title{padding: 13px 20px}
.wpsm-title.background_title h5:before, .wpsm-title.background_title h5:after{ display: none !important;}
.wpsm-title.no_bold_title h5, .wpsm-title.no_bold_title span.wpsm-title-link, .wpsm-title h5 span{font-weight: 400;}
.center { text-align: center; }
.rh_news_wrap_two{max-width: 840px}
.news_third_col, .news_sec_col{width: 28.5%}
.rh_news_wrap_two .re_ajax_pagination{display: none;}
.news_out_thumb figure, .news_in_thumb figure{position: relative; box-shadow: 0 0 1px #ddd; margin-bottom: 20px; min-height: 110px}
.news_out_thumb .news_cat a, .column_grid figure .rh-cat-list-title, .blog_string figure .rh-cat-list-title{position: absolute; bottom: 0; left: 0; margin: 0}
.column_grid figure a.rh-cat-label-title{margin-bottom: 0; margin-top: 3px}
.news_out_thumb .post-meta a, .news_out_thumb .post-meta span{ color: #aaa}
.news_out_thumb figure .fa-play-circle{font-size: 30px;}
.news_out_tabs{min-height: 300px}
.tabs-menu{margin: 0 0 20px 0}
.tabs-menu li{ list-style:none !important;cursor:pointer; float: left; margin: 0 8px 8px 0; text-decoration: none; background: #000;transition: background-color 0.3s; text-align: center; padding: 8px 14px; font: 700 15px/16px Roboto; color: #fff; text-transform: uppercase; outline: 0}
.tabs .tabs-item { display: none; }
.news_in_thumb figure:before, .col-feat-grid:before {bottom: 0;content: "";display: block;height: 80%;width: 100%;position: absolute;z-index: 1;pointer-events: none;background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0.6)));background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);background: -o-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);background: -ms-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);transition: 0.5s;}
.news_in_thumb .text_in_thumb, .col-feat-grid .feat-grid-overlay{position: absolute;bottom: 0px;color: #ffffff;padding: 0px 20px 10px 20px; z-index: 9; transition: all 0.5s ease-in-out; white-space: normal}
.news_in_thumb:hover .text_in_thumb, .col-feat-grid:hover .text_in_thumb {padding-bottom: 25px}
.feat-grid-overlay .price del{opacity: 0.7}
.news_in_thumb:hover figure:before, .col-feat-grid:hover:before{opacity: 0.8}
.text_in_thumb h2{font-size: 18px; line-height: 21px; margin: 15px 0 12px 0}
.text_in_thumb h2 a{color: #ffffff;}
.text_in_thumb .post-meta span a, .text_in_thumb .post-meta a.admin, .text_in_thumb .post-meta a.cat, .text_in_thumb .post-meta span{ color: #f4f4f4}
.news_cat a, .custom_col_label{font-style: normal;background-color: #111;padding: 3px 6px; text-shadow:none; color: #fff !important; font-size: 12px; line-height: 13px; text-decoration: none !important;}
.text_out_thumb h2{font-size: 24px; line-height: 26px; margin: 20px 0}
.text_out_thumb h3{font-size: 18px; line-height: 24px; margin: 10px 0;}
.text_out_thumb p{font-size: 15px; line-height: 20px}
.btn_more { font: 400 13px/15px 'Roboto', trebuchet ms; color: #111111; padding: 4px 8px; border: 1px solid #1e1e1e; display: inline-block; transition: all 0.3s ease 0s; vertical-align: middle; text-decoration: none !important; text-transform: uppercase; }
.item-small-news figure { width: 80px; height: 80px; float: left; position: relative; }
.item-small-news-image .item-small-news-details { float: right; width: calc(100% - 100px); }
.news_no_thumbs h3 { font-size: 16px; font-weight: 700; line-height: 20px; margin: 0 0 8px 0 }
.item-small-news h3{ font-size: 16px; line-height: 22px; margin: 0 0 10px 0; font-weight: normal;}
.item-small-news h3 a, .widget_text .item-small-news h3 a{text-decoration: none;}
.item-small-news:not(.border-lightgrey) {padding: 10px 0; clear: both;overflow: hidden;}
.rh_news_wrap .item-small-news{padding: 0 0 13px 0}
.sidebar .item-small-news:not(.border-lightgrey){border-bottom: 1px dashed #f1f1f1;}
.item-small-news .star-small {margin: 12px 0; line-height: 10px;}
.wpsm_three_col_posts{overflow: hidden; position: relative; margin-bottom: 25px}
.wpsm_three_col_posts .col-item{ width: 32.66%; position: relative; z-index: 2}
.wpsm_three_col_posts .col-item figure{border: none;}
.wpsm_three_col_posts .col-item figure img{ width: 100%; max-height: 240px}
.wpsm_three_col_posts .custom_col_label{ position: absolute; left: 20px; top:20px;z-index: 9;}
/*News Block and css list grid*/
.news-community, .rh_offer_list{ padding: 20px; margin-bottom: 20px; border: 1px solid #e3e3e3; background-color: #fff; position: relative; }
.w_disclaimer .rh_grid_image_3_col{padding: 20px}
.magazinenews{padding: 0; border: none;margin-bottom: 35px; background: none transparent; position: relative;}
.magazinenews-desc{width: calc(100% - 250px)}.magazinenews-img{width: 240px}
.news-community .hotmeter_wrap{margin-bottom: 10px}
.rh_grid_image_wrapper{display: grid;grid-template-columns: auto 1fr;grid-template-rows: auto 1fr;grid-column-gap: 20px;column-gap: 20px;}
.rh_grid_image_3_col{display: grid;grid-template-columns: auto 1fr auto;grid-template-rows: auto 1fr;grid-column-gap: 20px;column-gap: 20px;}
.rh_gr_img{grid-row: 1 / 5;grid-column: 1;}
.rh_gr_img_first{grid-row: 1 / 4;grid-column: 1;}
.rh_gr_btn_block{grid-row: 1 / 4;grid-column: 5;text-align: center;align-self: center; min-width: 150px}
.rh_gr_btn_block .price del{display:block}
.rh_gr_top_middle{grid-column: 2 / 4;grid-row: 1;}
.rh_gr_middle_desc{grid-column: 2 / 4;grid-row: 2;}
.rh_gr_middle_last{grid-column: 2 / 4;grid-row: 3;}
.rh_gr_top_right{grid-column: 2 / 5;grid-row: 1;}
.rh_gr_right_sec{grid-column: 2 / 5;grid-row: 2;}
.rh_gr_right_desc{grid-column: 2 / 5;grid-row: 3;margin-top: 10px}
.rh_gr_right_btn{grid-column: 2 / 5;grid-row: 4;}
.rh_gr_img figure, .rh_gr_img_first figure{ width:160px; vertical-align: middle; text-align: center; position: relative;display: table-cell; margin-bottom:5px; }
.rh_gr_img figure img, .rh_gr_img_first figure img{width: auto; max-height: 160px}
.news-community .button_action{position: absolute; top: 6px; right: 6px; z-index: 2}
.rh_gr_btn_block .priced_block .btn_offer_block, .rh_gr_btn_block .not_masked_coupon, .rh_gr_btn_block .post_offer_anons, .rh_gr_btn_block .post_offer_anons .rehub_offer_coupon{display: block;}
.rh_gr_btn_block .not_masked_coupon{margin-top: 10px}
.news-community .post-meta{margin: 0; }
@media(max-width: 767px){
.news-community .post-meta{margin: 0 0 10px 0; }
.news-community .hotmeter_wrap{margin-bottom: 15px}
.news-community{padding: 15px}
.rh_gr_top_right{grid-column: 1 / 4;grid-row: 1;}
.rh_gr_right_sec{grid-column: 2 / 4;grid-row: 2;}
.rh_gr_img{grid-row: 2;grid-column: 1;}
.rh_gr_right_desc{grid-column: 1 / 4;grid-row: 3;}
.rh_gr_right_btn{grid-column: 1 / 4;grid-row: 4;}
.rh_gr_img_first{grid-row: 1;grid-column: 1;}
.rh_gr_top_middle{grid-column: 2 / 4;grid-row: 1;}
.rh_gr_middle_desc{grid-column: 1 / 4;grid-row: 2;margin-top: 15px}
.rh_gr_middle_last{grid-column: 1 / 4;grid-row: 3;}
.rh_gr_btn_block{grid-column: 1 / 4; grid-row: 4; margin-top: 12px}
.rh_gr_btn_block .btn_more{display: none;}
.rh_gr_img figure, .rh_gr_img_first figure{ width:90px;}
.rh_gr_img figure img, .rh_gr_img_first figure img{max-height: 100px}
.left_st_postproduct, .right_st_postproduct{ float: none; overflow: hidden; width: 100% }
.newscom_btn_block, .featured_single_left, .single_top_main, .single_top_corner, .newscom_detail, .featured_newscom_left{display: block; padding-left: 0; padding-right: 0}
.featured_single_left, .featured_newscom_left, .newscom_detail{padding: 0; margin: 0 auto 30px auto}
.newscom_detail, .featured_newscom_left, .newscom_btn_block{width: 100%}
.featured_newscom_left > div{width: 150px; margin: 0 auto 5px auto}
.single_top_corner{padding: 0;text-align: left; margin-top: 10px}
.left_st_postproduct{margin-bottom: 20px}
.single_top_corner .wpsm-button{float: none;}
.single_top_postproduct{border-top: none; padding: 0 0 20px 0}
.row_social_inpost span:after{display: none;}
.left_st_postproduct .post_thumbs_wrap{margin-bottom: 10px}
.wpsm_three_col_posts .col-item figure {height: 150px;}
.news-community .rh-deal-compact-btn, .news-community .woo_loop_btn{float: left;}
.news-community .rewise-box-price{float: left; margin: 0 8px 0 0 !important}
.magazinenews .magazinenews-img{width: 30%}
}
@media(max-width: 550px){
.wpsm_three_col_posts .col-item figure{margin-bottom: 0; height: 180px}
.featured_compare_left, .single_compare_right{float: none; width: 100%; padding-right: 0;}
.magazinenews-desc{width: 70%}
}
.blog_string .not_masked_coupon{max-width: 155px; float: right; clear: none;}
.blog_string .post-meta-big{border: none;}
.blog_string p{color: #888}
.blog_string .rev-in-blog-circle{position: absolute; top: 15px; right: 15px}
.blog_string .radial-progress .inset{width: 50px; height: 50px; margin: 7px 0 0 7px;}
.blog_string .radial-progress .inset .percentage{width: 50px}
@media (max-width: 767px){
.blog_string .not_masked_coupon{float: left;clear: both; margin-top: 10px}
}
/****************************************************************************
*-*-*-* CAROUSEL *-*-*-*
****************************************************************************/
.post_carousel_block, .woo_carousel_block { margin: 0 0 25px 0; position: relative; }
.loading.post_carousel_block, .woo_carousel_block.loading { background: #f4f4f4 !important; min-height: 120px; max-height: 160px }
.loading .carousel-stamp, .loading .re_carousel{opacity: 0}
.re_carousel { overflow: hidden; }
.re_carousel a{text-decoration: none !important; }
.re_carousel .controls { background-color: rgba(0, 0, 0, 0.5);width: 30px;height: 30px;line-height: 30px;position: absolute;color: transparent;cursor: pointer;text-align: center; z-index: 999}
.re_carousel .controls.disabled{opacity: 0.3}
.re_carousel .controls:after{font-family: Font Awesome\ 5 Pro; color: #fff; }
.re_carousel .controls.prev:after{content: "\f104";}
.re_carousel .controls.next:after{content: "\f105";}
.carousel-style-2 .re_carousel, .carousel-style-3 .re_carousel { padding: 0 40px; }
.no-nav-carousel .re_carousel{padding: 0}
.carousel-style-2 .controls{top:40%;}
.carousel-style-2 .controls.prev { left: 0; }
.carousel-style-2 .controls.next { right: 0; }
.carousel-style-2 .controls:after{font-size: 15px; line-height:30px;}
.carousel-style-2 .carousel-item{margin: 0 10px}
.carousel-style-2 figure{border: 1px solid #f4f4f4}
.carousel-style-2 h3{font-size: 18px;line-height: 22px; margin: 0 0 12px 0; }
.carousel-style-2 .text-oncarousel{padding-top: 12px;}
.carousel-style-2 .carousel-stamp{position: absolute; top: -5px; left: 25px; z-index: 999; }
.carousel-style-3 .controls:after, .carousel-style-3 .controls:before{line-height: 30px; font-size: 30px; color:#555;}
.carousel-style-3 .controls.prev { left: 0; }
.carousel-style-3 .controls.next { right: 0; }
.carousel-style-3 .controls{top:40%; background-color: transparent; width: auto;}
.carousel-style-3 .controls:hover{ background-color: transparent !important; }
.re_carousel .carousel-item { display: block; line-height: 1.2em; position: relative; text-decoration: none; }
.re_carousel .priced_block{margin: 0}
.re_carousel .star-small{margin-bottom: 9px}
.re_carousel figure { position: relative; margin: 0}
.re_carousel .carousel-item figure:hover .text-oncarousel{ padding-bottom: 25px}
.views-in-carosel { position: absolute; left: 15px; bottom: -35px; font-size: 11px; color: #ccc; transition: all 0.3s ease 0s; line-height: 11px}
.views-in-carosel a{color: #ccc;}
.views-in-carosel p{margin: 0}
.re_carousel .carousel-item figure:hover .views-in-carosel{ bottom: 8px}
.re_carousel .woo_loop_btn{ margin-bottom: 10px;display: inline-block; padding: 5px 12px }
.post_carousel_block.loading:before, .woo_carousel_block.loading:before{ position: absolute; top: 50%; left: 50%; color: #ccc}
.media_owl_carousel { padding: 20px; border: 1px solid #cecece !important; margin-bottom: 30px; box-shadow : 0 1px 1px #EDEDED;text-align: center; }
.media_owl_carousel .photo-item{ margin: 0 10px; position: relative;}
.media_owl_carousel .gp-overlay { display: none; width: 100%; height: 100%; background: rgba(0,0,0,0.8); position: absolute; top: 0px; left: 0px; }
.media_owl_carousel .gp-overlay a { width: 50px; height: 50px; display: block; position: absolute; top: 50%; left: 50%; margin: -25px 0 0 -25px; color: #fff !important; text-decoration: none }
.media_owl_carousel .gp-overlay a:before{font-family: Font Awesome\ 5 Pro; content: "\f055"; font-size: 50px}
.text-oncarousel, .deal-item-wrap .deal-detail, .info-overlay, .small_sale_a_proc, .news_cat a{transform: translate3d(0,0,0);-webkit-backface-visibility: hidden;}
.carouselhor-item{overflow: hidden;}
.carouselhor-item .l-part-car{float: left;width: 25%; width: 180px; padding: 1px}
.carouselhor-item figure{display: table-cell; height: 130px; padding: 5px; width: 180px; max-width: 180px; border: 1px solid #eee; vertical-align: middle; text-align: center;}
.carouselhor-item .r-part-car{margin: 0 15px 0 200px;word-break: break-word;}
.carouselhor-item h2{margin: 0 0 10px 0; font-size: 15px; line-height: 18px; font-weight: normal;}
.owl-item .carouselhor-item figure img{width: auto; max-width: 100%; max-height: 100%; display: inline-block; }
.carouselhor-item .temperatur{font-size: 18px}
.carouselhor-item .fa-fire{color: #CA212A;font-size: 20px;}
.carouselhor-item .simple_price_count{margin: 0}
@media screen and (max-width: 500px){
.carouselhor-item .l-part-car{width: 120px}
.carouselhor-item figure{ width: 120px; height: 90px; max-width: 120px;}
.carouselhor-item .r-part-car{margin: 0 0 0 135px;}
}
@media screen and (max-width: 400px){
.carouselhor-item .l-part-car{width: 100%}
.carouselhor-item figure{ width: 180px; height: 130px; max-width: 180px; margin: 0 auto; display: block;}
.carouselhor-item .r-part-car{margin: 0 0 10px 0;}
}
.re_carousel .offer_grid figure{height: 150px}
.carousel-style-fullpost .owl-item{padding: 0 10px;display: flex;}
.carousel-style-fullpost .controls{top:20%;line-height:50px; width: 50px; height: 50px}