style.css
65.1 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
/*
Theme Name: REIZE
Theme URI: http://fgc.vn
Description: Child theme for the Storefront theme. A business, portfolio and blog theme.
Author: Tran Trong Thang
Email: trantrongthang1207@gmail.com
Version: 1.0.0
Author URI: http://fgc.vn
Template: storefront
*/
/*Dark Grey - used for header/ footer
#232323
Warm Grey - used for main headings
#94937f
Light background
#f8f7f6
Yellow
#ffe833
Orange
#f17824
Aqua
#1b9cb1*/
/*
* Created on : Mar 4, 2016, 8:39:49 AM
* Author: Tran Trong Thang
* Email: trantrongthang1207@gmail.com
* Skype: trantrongthang1207
*/
/*global*/
h1,h2,h3,h4,h5,h6{font-family:"Roboto Condensed"}.byline,.byline a,.signle_container #jp-relatedposts h3.jp-relatedposts-headline em{font-style:italic}.button,a.button,h1,h2,h3,h4,h5,h6,input.button{letter-spacing:0;text-transform:uppercase}#page,#sidebar-wrapper{transition:all .5s ease 0s}.crl-ajax-auth a,.secondary-navigation .menu a:hover,.secondary-navigation .menu>li:hover>a{text-decoration:none}.button,.itemcontent,.menu_title,.stepcheckout,a.button,h1,h2,h3,h4,h5,h6,input.button{text-transform:uppercase}.box.box1:hover,.boximg:hover::after,a:hover{cursor:pointer}.pull-right{float:right!important}.pull-left{float:left!important}.hide,.woocommerce-cart .carthide,.woocommerce-checkout .tvhide{display:none!important}a:focus{outline-width:0}h1{font-size:56px;font-weight:700}h2,h3,h4,h5,h6{color:#1a1a1a;font-weight:300}.button,a.button,body,input.button{font-family:Roboto}h2{font-size:46px}.button,a.button,input.button{background:#ffe833;border-radius:5px;display:inline-block;font-size:24px;font-style:italic;font-weight:700;line-height:25px;padding:13px 20px}a.button.tvarrow,input.button.tvarrow{background:url(assets/images/bg_arrow.png) 91% center no-repeat #ffe833;padding:12px 60px 12px 20px}.button:active,.button:focus,a.button:active,a.button:focus,a:active,a:focus,input.button:active,input.button:focus{border:none;outline:0}.hentry .entry-header{text-align:center}.hentry .entry-header,.hentry .entry-header h1{border:none;margin:0}.col-full{margin:0 auto}.aborder{border-bottom:3px solid #ffe833;color:#000}body{font-size:16px;font-weight:400}body .input-text,body input[type=text],body input[type=email],body input[type=url],body input[type=password],body input[type=search],body textarea{background-color:rgba(0,0,0,0);border:1px solid #4c4d51;border-radius:3px;box-shadow:none;font-family:Roboto;font-size:16px;font-weight:400;line-height:20px;padding:8px 14px}.title-text{color:#94937f}.clwhite,.nobutton{color:#fff}.fontweight{font-weight:700}.bgef{background:#efefec}.bgee{background:#eeedec}.bg4d{background:#d4d4cc}.innerbox{padding:15px 21px}.tvbox{background:#efefec;margin-top:13px;padding-left:15px;padding-right:17px;padding-top:15px}.nomargin{margin:0}table.bgnone tbody td{background:rgba(0,0,0,0)}.form-row-first{clear:both;float:left;margin-right:5.88235%;width:47.0588%}.form-row-last{float:right;margin-right:0;width:47.0588%}.noborderbottom th{border-bottom:medium none!important}.nobordertop td,.nobordertop th{border-top:medium none!important}.nobutton{font-weight:400}.tv-header{padding-top:35px}.tv-title{margin:0;padding-bottom:.618em}.inline_block{display:inline-block}.required{border-bottom:1px solid #4c4d51!important}.home.blog .site-header,.home.page:not(.page-template-template-homepage) .site-header,.home.post-type-archive-product .site-header{margin-bottom:0}.site-header-cart,.site-search{display:none}.site .site-header{padding-top:12px}.site-header .site-branding,.site-header .site-logo-anchor,.site-header .site-logo-link{clear:both;display:block;float:left;width:21.7391%;margin:0;padding-left:0;padding-top:7px}.site-header .site-branding img,.site-header .site-logo-anchor img,.site-header .site-logo-link img{height:auto;max-height:none;max-width:100%}.my_avatar img,.my_friends img{max-height:100%}.icon_user{background:url(assets/images/icon-user.png) center center/contain no-repeat rgba(0,0,0,0);bottom:0;display:inline-block;left:-1px;padding:2px;position:absolute}.handheld-navigation,.main-navigation.toggled .handheld-navigation,.main-navigation.toggled div.menu,.menu-toggle{display:none}.primary-navigation{display:block}.main-navigation,.secondary-navigation{clear:both;display:block;width:100%}.main-navigation ul,.secondary-navigation ul{display:block;list-style:none;margin:0;padding-left:0}.main-navigation ul li,.secondary-navigation ul li{display:inline-block;position:relative;text-align:left}.main-navigation ul li a,.secondary-navigation ul li a{display:block}.main-navigation ul li.focus>ul,.main-navigation ul li:hover>ul,.secondary-navigation ul li.focus>ul,.secondary-navigation ul li:hover>ul{display:block;left:0}.main-navigation ul li.focus>ul li>ul,.main-navigation ul li:hover>ul li>ul,.secondary-navigation ul li.focus>ul li>ul,.secondary-navigation ul li:hover>ul li>ul{display:none}.main-navigation ul li.focus>ul li.focus>ul,.main-navigation ul li.focus>ul li:hover>ul,.main-navigation ul li:hover>ul li.focus>ul,.main-navigation ul li:hover>ul li:hover>ul,.secondary-navigation ul li.focus>ul li.focus>ul,.secondary-navigation ul li.focus>ul li:hover>ul,.secondary-navigation ul li:hover>ul li.focus>ul,.secondary-navigation ul li:hover>ul li:hover>ul{display:block;left:100%;top:0}.main-navigation ul ul,.secondary-navigation ul ul{background-color:#2c2d33;display:none;float:left;position:absolute;top:100%;z-index:99999}.main-navigation ul ul li a,.secondary-navigation ul ul li a{width:200px}ul.menu li.current-menu-item>a{color:#60646c}.main-navigation{padding-top:1.618em}.main-navigation ul.menu>li.menu-item-has-children:hover::after,.main-navigation ul.menu>li.page_item_has_children:hover::after,.main-navigation ul.nav-menu>li.menu-item-has-children:hover::after,.main-navigation ul.nav-menu>li.page_item_has_children:hover::after{display:block}.main-navigation ul.menu>li.menu-item-has-children>a::after,.main-navigation ul.menu>li.page_item_has_children>a::after,.main-navigation ul.nav-menu>li.menu-item-has-children>a::after,.main-navigation ul.nav-menu>li.page_item_has_children>a::after{content:"";font-family:FontAwesome;font-weight:inherit;line-height:1;margin-left:1em}.main-navigation ul.menu ul,.main-navigation ul.nav-menu ul{background-color:#2c2d33;margin-left:0}.main-navigation ul.menu ul a:hover,.main-navigation ul.menu ul li,.main-navigation ul.menu ul li:hover>a,.main-navigation ul.nav-menu ul a:hover,.main-navigation ul.nav-menu ul li,.main-navigation ul.nav-menu ul li:hover>a{background-color:rgba(0,0,0,.024)}.main-navigation ul.menu ul li a,.main-navigation ul.nav-menu ul li a{padding:.857em 1em}.main-navigation ul.menu ul li:last-child,.main-navigation ul.nav-menu ul li:last-child{border-bottom:0 none}.main-navigation ul.menu ul li.menu-item-has-children>a::after,.main-navigation ul.menu ul li.page_item_has_children>a::after,.main-navigation ul.nav-menu ul li.menu-item-has-children>a::after,.main-navigation ul.nav-menu ul li.page_item_has_children>a::after{content:"";float:right;font-family:FontAwesome}.main-navigation ul.menu ul ul,.main-navigation ul.nav-menu ul ul{border-top-color:rgba(0,0,0,.1);box-shadow:none;margin-left:0}.main-navigation a{padding:0 1em 2.244em}.secondary-navigation{clear:none;line-height:1;margin:0 0 1.618em;width:auto}.content-area,.page-template-cancel-subscription #main,.page-template-template-fluidpage #main{margin-bottom:0}.secondary-navigation .menu{float:right;font-size:.857em;width:auto}.secondary-navigation .menu>li>a{position:relative}.secondary-navigation .menu>li>a::before{background-color:rgba(0,0,0,.05);content:"";display:block;height:25%;left:-3px;position:absolute;top:37.5%;width:1px}.secondary-navigation .menu>li:first-child a::before{display:none}.secondary-navigation .menu ul{background-color:#2c2d33}.secondary-navigation .menu ul a{background:rgba(0,0,0,.05);padding:.326em .857em}.secondary-navigation .menu ul li:first-child a{padding-top:1em}.secondary-navigation .menu ul li:last-child a{padding-bottom:1em}.secondary-navigation .menu ul ul{margin-top:-.618em}.secondary-navigation .menu a{color:#93979f;font-weight:400;padding:1.387em .857em}.woocommerce-active .site-header .secondary-navigation{float:right;margin:0;width:auto}.secondary-navigation ul.menu li{padding-left:10px}.secondary-navigation ul.menu li:first-child{padding-right:7px}.secondary-navigation ul.menu li:last-child{border-left:1px solid #fff;padding-right:4px}.secondary-navigation ul.menu a{color:#9aa0a7;display:inline-block;font-family:"Roboto Condensed";font-size:13px;font-weight:300;letter-spacing:.3px;padding:0;text-transform:uppercase}.site-header .secondary-navigation ul.menu a:hover::before{background:#fff;bottom:-3px;content:"";display:block;height:1px;left:0;position:absolute;top:auto;width:100%}.woocommerce-active .site-header .main-navigation{clear:none;float:right;height:100%;margin:0;width:auto;padding-top:45px}.main-navigation ul.menu>li,.main-navigation ul.nav-menu>li{padding:0 0 11px 55px}.main-navigation ul.menu>li>a,.main-navigation ul.nav-menu>li>a{font-family:"Roboto Condensed";font-size:16px;padding:0;position:relative}.main-navigation ul.menu>li>a:hover::before,.main-navigation ul.nav-menu>li>a:hover::before{background:#ffe833;bottom:-2px;content:"";display:block;height:2px;left:0;position:absolute;top:auto;width:100%}body.toggled{overflow-x:hidden}#page{padding-left:0}body.toggled #page{padding-left:260px;width:100%}#sidebar-wrapper{background:url(assets/images/btn-menu-left.png) 108% 13px no-repeat #4a4a4b;height:100%;left:260px;margin-left:-260px;overflow-y:auto;position:fixed;width:0;z-index:1000}.boximg::after,.itemcontent{transition:all .2s ease-in-out 0s}.menu_title{color:#d9d9d9;font-family:"Roboto Slab";font-size:16px;padding-bottom:32px;padding-top:19px}body.toggled #page #sidebar-wrapper{width:260px}.primary-mobile-navigation,.tvmenumobile-subscribe{display:none}.menu-toggle::before{content:""}.main-navigation .menu-toggle{background:url(assets/images/btn-menu.png) center center no-repeat rgba(0,0,0,0);left:17px;right:auto}.main-navigation .handheld-navigation,.main-navigation div.menu{background-color:#4a4a4b;border:none;box-shadow:none;overflow-y:auto}#tvmenu-mobile>div,.boximg,.section_post,.woocommerce-billing-fields,.woocommerce-shipping-fields{overflow:hidden}#tvmenu-mobile>div{box-shadow:none;height:auto;position:relative;width:100%}#tvmenu-mobile .main-navigation ul.menu>li,#tvmenu-mobile .main-navigation ul.nav-menu>li{padding:0 0 11px 20px}.main-navigation ul.menu>li>a{display:inline-block}.main-navigation ul.menu>li:hover a,.main-navigation ul.menu>li>a:hover,.shm-close,ul.menu li a{color:#fff}.main-navigation ul li a::before{content:"";margin-right:0}#tvmenu-mobile .icon-theme-icons,.menu_title{padding-left:20px}.subscribe-and-connect-connect .icon-theme-icons>li{background:#fff;border-radius:50%;color:#444645;display:inline-block;font-size:14px;height:24px;margin-left:0;margin-right:11px;padding:0;text-align:center;width:25px}.subscribe-and-connect-connect .icon-theme-icons>li>a,.subscribe-and-connect-connect ul.icon-theme-icons li a{color:#4a4a4b;display:inline-block;font-size:14px;padding:5px 10px;vertical-align:middle}.subscribe-and-connect-connect .flickr a::before{content:'\f2ab';}.menu-toggle-user{background:url(assets/images/icon-user.png) center center/contain no-repeat rgba(0,0,0,0);display:none;height:30px;position:relative;right:0;top:5px;width:18px}.site-content .col-full{background:#fff}.footer-widgets{border:none;padding-top:4px}.site-footer .tvsocials li{display:inline-block}.site-footer .tvsocials>li{padding:0 11px 0 0}.site-footer .tvsocials>li>a{background:#fff;border-radius:50%;color:#444645;display:block;font-size:14px;height:24px;margin-left:0;padding:0;text-align:center;width:25px}.footer-widgets.col-2 .block.footer-widget-2{float:left}.footer-widgets .block.footer-widget-1{float:right;margin:0;padding-left:7%}.widget_nav_menu ul li::before{display:none}.block.footer-widget-1 ul li{border-right:1px solid #fff;display:inline-block;font-family:Roboto;font-weight:700;letter-spacing:.2px;line-height:10px;margin:0;padding-left:7px;padding-right:15px;word-spacing:1px}.block.footer-widget-1 ul li a:hover::before,.site-footer .site-info a:hover::before{display:block;height:2px;top:auto;width:100%;left:0;content:""}.block.footer-widget-1 ul li a{font-family:Roboto;font-size:14px;font-weight:400;position:relative}.site-footer .site-info a,.site-info{font-family:"Roboto Condensed"}.block.footer-widget-1 ul li:last-child{border:none}.block.footer-widget-1 ul li a:hover::before{background:#ffe833;bottom:-3px;position:absolute}.site-info{font-size:14px;font-weight:300;padding:13px 122px 13px 0}.site-footer .site-info span{word-spacing:1px}.site-footer .site-info a{color:#545454;font-weight:400;position:relative}.site-footer .site-info a:hover::before{background:#545454;bottom:-2px;position:absolute}.sd-sharing-enabled{display:none}.tvshare .sd-sharing-enabled{display:block}.page-template-cancel-subscription .entry-header,.page-template-template-fluid .entry-header,.page-template-template-fluidpage .entry-header,.tv_video_box.acitve::before{display:none}.tvshare div.sharedaddy h3.sd-title::before{border-top:1px solid transparent}.hentry{border:none;margin:0;padding-bottom:0}.bg1{background:#d4d4cc;padding-bottom:11px;padding-top:50px}.bg2,.bgnp2{background:#f8f7f6}.bg2{padding-bottom:50px}.bg3{background:#c9c9bf}.page-template-cancel-subscription .site-content .col-full,.page-template-challenge_results .site-content .col-full,.page-template-template-fluid .site-content .col-full,.page-template-template-fluidpage .site-content .col-full{max-width:100%;padding:0}#tvplayer{height:100%;width:100%}.tv_module{position:relative}.tv_video_overlay{height:100%;position:absolute;top:0;width:auto}.tv_video_box{position:relative}.tv_video_box::before{/* background:url(assets/images/bgbox.png) 0 0/contain no-repeat rgba(0,0,0,0); *//* bottom:-15px; *//* content:""; */height:57px;left:0;position:absolute;width:100%}.tv_video_overlay.acitve{left:-10000px;top:-10000px}.tv_video_box{display:inline-block}.fluid-width-video-wrapper{display:block;height:100%}.tv_video_overlay_hover{bottom:25px;left:25px;position:absolute}.homeleft strong,.item-thumbnail{position:relative}.tv_video_image{/*border:7px solid #fff*/}
.tv_video_play{background:#fee54a;border-radius:50%;color:#fff;display:block;height:25px;padding-left:3px;text-align:center;width:25px}
.tvshare div.sharedaddy h3.sd-title{color:#535354;font-family:"Roboto Slab";font-size:14px;font-weight:400;margin-top:9px}
.tvshare .sd-content{display:inline-block;padding-left:13px}
.tvshare .sd-social-icon .sd-content ul li[class*=share-] a,.tvshare .sd-social-icon .sd-content ul li[class*=share-] a:hover,.tvshare .sd-social-icon .sd-content ul li[class*=share-] div.option a{border:0;border-radius:50%;box-shadow:none;height:auto;line-height:1;margin-bottom:0;margin-right:11px;padding:4px;position:relative;top:-2px;width:auto}.hw100,.itemcontent{display:block;height:100%;width:100%}.homeleft h2{font-family:"Roboto Condensed";letter-spacing:-1px;line-height:52px;margin-bottom:38px;padding-top:10px;word-spacing:4px}.section_free div.bg_free table,.section_post p{margin:0}
.button.btnrow,.homeleft a.button,.innersmall .button.btnrow,.change_your_plan a.button{background:url(assets/images/bg_arrow.png) 91% center no-repeat #ffe833;padding:12px 60px 12px 20px}.btnbgnone{color:#232323;padding:12px 20px}.btnbgnone.btnrow{background:url(assets/images/bg_arrow_yl.png) 100% center no-repeat rgba(0,0,0,0)}.btnbgnone.btnrowleft{background:url(assets/images/bg_arrow_left.png) 0 center no-repeat rgba(0,0,0,0);padding:12px 0 12px 20px}.homeleft strong{bottom:2px;word-spacing:4px}.button.btnrow span,.homeleft a span{padding-top:0;vertical-align:middle}.homeleft a i{font-size:42px;padding-left:18px;vertical-align:middle}.section_post{padding-top:4.5%}.item-title,.itemcontent{font-size:18px;position:absolute;color:#fff;font-weight:400}.item-title{background:#000;border-radius:5px;font-family:"Roboto Slab";left:10px;padding:9px 15px;top:-20px;z-index:99}.itemcontent{bottom:0;font-family:"Roboto Condensed";line-height:22px;padding:12% 15% 20px}.addresses header.title,.section_free a i,.tvcol-full,header.title{position:relative}.itemcontent:hover{background:rgba(255,255,255,.6)}.itemcontent>div:last-child{font-family:Roboto;font-size:12px}.item:hover .itemcontent{bottom:0}.itemcontent img{display:inline-block}.section_free{padding-bottom:2%;padding-top:4%}.section_free div.bg_free{background:url(assets/images/bg_free_reize.png) center center no-repeat rgba(0,0,0,0)}.section_free div.bg_free table td{padding:20px 10px;vertical-align:middle}.free_reize{color:#fff;font-size:76px;letter-spacing:-1px;padding-left:10px}.free_conntent{padding-left:9%;padding-right:5%}.section_free a{color:#000;font-size:20px}.section_free a i{bottom:-5px;color:#fce63b;font-size:35px;padding-left:6px}.innersmall{margin:0 auto;max-width:300px}.css-fbl{background:url(assets/images/loginfb.png) center center no-repeat rgba(0,0,0,0);display:block;height:60px;max-width:300px}.header_title h1{margin-bottom:23px;margin-top:45px}.header_title h3{font-size:20px;margin-bottom:51px}.loginor{padding:11px 0}input:-moz-placeholder,textarea::-moz-placeholder{color:#4c4d51!important;opacity:1!important}input::-moz-placeholder,textarea::-moz-placeholder{color:#4c4d51!important;opacity:1!important}.select2-container .select2-choice{color:#4c4d51!important}.showpassword label{font-weight:400}#showpass{margin-right:5px;margin-top:4px;transform:scale(1.3)}.showpassword{margin-bottom:37px}.innersmall .button{padding:1px 20px 8px}.button span{padding-top:5px;vertical-align:middle}.button i{font-size:42px;padding-left:18px;vertical-align:middle}.forgotpassword{padding:22px 0}.crl-ajax-auth a{font-weight:400}.byline a,.footer_text_more a,.forgotpassword a,.linkpayment a {text-decoration:underline}#pop_forgot{font-family:times new roman;font-weight:400;padding-left:5px}.close{background:url(assets/images/btn_close.png) center center no-repeat rgba(0,0,0,0);height:20px;width:20px}.tvcol-full{margin:0 auto;width:1024px}.footer_text_more,.footer_text_more a,.forgotpassword,.forgotpassword a{color:grey}.woocommerce-breadcrumb{margin:0 0 3px;padding-bottom:5px}.mobile{display:none}.plan_options .button{display:block;font-size:15px;margin-top:2px;padding-bottom:11px;padding-left:24px;padding-top:11px}.plan_options .too_much_reize .button{margin-top:4px}.plan_options .change_your_plan .button{margin-top:3px}.content_myaccount div[class*=col-]{padding-left:10px;padding-right:10px}.content_myaccount table tbody td,.content_myaccount table tbody tr:nth-child(2n) td{background:rgba(0,0,0,0)}.woocommerce_account_subscriptions h2{margin-bottom:5px;margin-top:3px}.woocommerce_account_subscriptions th{letter-spacing:0}.account_information td,.woocommerce_account_subscriptions td{letter-spacing:-.2px}.content_myaccount table td,.content_myaccount table th{padding:0 0 6px}.content_myaccount table .subscription-gst th{padding-bottom:20px}.content_myaccount table tr.subscription-total td,.content_myaccount table tr.subscription-total th{border-bottom:1px solid #4a4a4b!important;border-top:1px solid #4a4a4b;padding-bottom:17px;padding-top:18px}.woocommerce_account_subscriptions .innerbox{margin-bottom:28px;padding-bottom:26px}.plan_options h2{margin-bottom:4px}.plan_options .innerbox{margin-bottom:32px;padding-bottom:17px;padding-top:18px}.account_information .innerbox{margin-bottom:15px;padding-bottom:12px;padding-left:22px;padding-top:17px}.account_information h2{margin-bottom:7px}.content_myaccount table .not_enougt_reize td{vertical-align:middle}.content_myaccount table .too_much_reize td{padding-bottom:11px;padding-top:27px;vertical-align:middle}.addresses header.title a,header.title a{height:auto;margin:0;padding:0;position:absolute;right:0;text-decoration:underline;text-indent:inherit;top:11px;width:auto}.addresses header.title a::before{content:""}.col_billing h2,.col_shipping h2{margin-bottom:6px}.col_shipping h2{margin-bottom:10px}.col_billing.innerbox{margin-bottom:15px;padding-bottom:11px;padding-top:18px}.col_shipping.innerbox{margin-bottom:22px;padding-bottom:38px}.col_shipping.innerbox input{margin-right:10px}.profile-user{line-height:41px}.profile-user .innerbox h2{font-size:30px;margin-bottom:33px;padding-right:11px}.profile-user .my_avatar>div{height:230px;position:relative}.my_avatar img{border:5px solid #fff;border-radius:50%;bottom:0;margin:auto;max-width:100%;position:absolute}.my_friends{float:right;height:230px;position:relative}.colfriends{background:#a9a998;border-radius:10px;height:223px;width:18px;position:absolute}.dotfriends{letter-spacing:-1px;line-height:22px;padding:26px 0 0 33px;position:relative;word-spacing:0}.dotfriends::after{border-top:3px dotted #959480;content:"";display:inline-block;height:1px;left:1px;position:absolute;top:37px;width:29px}.doticon{bottom:0;left:-1px;position:absolute;z-index:99}.informore{padding:35px 0 20px}h1.your_bonus{background:url(assets/images/rebang.png) center center no-repeat rgba(0,0,0,0);color:#fff;font-size:24px;margin-bottom:33px;padding:15px 0 25px}.contentline{font-size:16px;line-height:25px;margin:0 auto 22px;text-align:center;width:75%}.home .share-email,.woocommerce-account div.sharedaddy h3.sd-title{display:none}.woocommerce-account .informore .sd-sharing-enabled{display:block}.page_challengeresults .sd-social-icon .sd-content ul li[class*=share-] a,.page_challengeresults .sd-social-icon .sd-content ul li[class*=share-] a.sd-button,.page_challengeresults .sd-social-icon .sd-content ul li[class*=share-] a:hover,.page_challengeresults .sd-social-icon .sd-content ul li[class*=share-] div.option a,.woocommerce-account .sd-social-icon .sd-content ul li[class*=share-] a,.woocommerce-account .sd-social-icon .sd-content ul li[class*=share-] a.sd-button,.woocommerce-account .sd-social-icon .sd-content ul li[class*=share-] a:hover,.woocommerce-account .sd-social-icon .sd-content ul li[class*=share-] div.option a{margin:9px 13px 0;padding:7px;position:relative}.contentline input{background:#1b9cb1;border:none;color:#fff;height:53px;letter-spacing:.5px;margin-top:9px;text-align:center;width:100%}#order_reviews,.checkout #order_review{margin:0 auto!important;position:relative!important;border:none}.my_address{clear:left;float:none}.checkout #order_review{width:100%!important}#order_reviews{width:50%!important}#order_review_heading{border:none;text-align:left;width:100%}#customer_details .form-row label:first-child,.select2-container .select2-choice .select2-arrow b::after,.subscription-details,.woocommerce-info{display:none}.tvpayment_method{margin-bottom:7px;padding-top:0}#order_review #payment .payment_methods li .payment_box{margin-top:5px}#payment .payment_methods li{margin-bottom:5px}.tvpayment_method img.icon_lock{display:inline-block;float:none;margin-bottom:8px;margin-left:10px;vertical-align:middle}#payment,#payment .payment_methods{border:none}#payment .payment_methods li .payment_box{background:rgba(0,0,0,0);border:none;margin:0;padding:0}#payment .payment_methods li{border:none;list-style:none;margin-left:0;padding:0!important}#payment .payment_methods li .payment_box fieldset .form-row,#payment .terms{margin-bottom:7px}.select2-container .select2-choice .select2-arrow b{background:url(assets/images/arrow_select.png) center center no-repeat rgba(0,0,0,0)}.select2-container .select2-choice{background-color:rgba(0,0,0,0);border:1px solid #4c4d51;padding:6px 15px;font-size:14px;font-weight:400;white-space:nowrap}.select2-container .select2-choice .select2-arrow{right:10px}.woocommerce-checkout .site-logo-link{padding-bottom:18px}#order_reviews .subscription-details,.payment_box.payment_method_stripe>fieldset>p,.select2-container.select2-allowclear .select2-choice abbr,.select2-offscreen,.woocommerce-breadcrumb,.woocommerce-checkout .main-navigation,.woocommerce-checkout .secondary-navigation{display:none}#order_review_heading{padding-bottom:2px;padding-top:0}#order_reviews .tvbox{background:#d4d4cc;padding-bottom:30px;padding-left:10px;}#order_reviews table tbody td{background:rgba(0,0,0,0)}#order_reviews table td,#order_reviews table th{padding:10px 10px 10px 0}#order_reviews table td.product-name,#order_reviews table td.product-total{padding-top:4px}#order_reviews table td:last-child{padding-right:0}.hentry #order_reviews .wp-post-image{display:inline-block;margin:0;padding-left:10px;width:110px}#order_reviews .shop_table{padding-bottom:40px;position:relative}#order_reviews tfoot{bottom:0;position:absolute;right:0;width:100%}#order_reviews .cart-subtotal.recurring-total td.desktop,#order_reviews .order-total td.desktop,#order_reviews .shipping td,#order_reviews .shipping th,#order_reviews .shipping.recurring-total td,#order_reviews .shipping.recurring-total th{border:none}#order_reviews .shipping.recurring-total td,#order_reviews .shipping.recurring-total th,#order_reviews tr.shipping td,#order_reviews tr.shipping th{padding-bottom:15px}#order_reviews .cart-subtotal.recurring-total td,#order_reviews .cart-subtotal.recurring-total th,#order_reviews tr.order-total td,#order_reviews tr.order-total th{border-bottom:1px solid #4a4a4b;border-top:1px solid #4a4a4b;padding-top:16px}.footerorder{padding-left:10px;padding-top: 5px;}.icon_csv{background:url(assets/images/icon_csv.png) center center no-repeat rgba(0,0,0,0);display:block;height:40px;width:87px}.hot_cold{background:url(assets/images/rebang_order.png) center center/contain no-repeat rgba(0,0,0,0);color:#fff;line-height:25px;padding:5% 15% 8%;text-align:center}.update_your_order{color:#4a4a4b;padding-bottom:28px}.despayment{color:#4c4d51;margin-bottom:24px}#payment .payment_methods li .payment_box fieldset{padding:0}#ship-to-different-address.active{margin-bottom:15px}.checkout .tvbox{margin-bottom:25px}#ship_to_different_address{margin-bottom:20px}#ship-to-different-address-checkbox,.tvcard_expriry{left:-10000px;position:absolute;top:-10000px}#payment .place-order{padding:13px 0}.checkout .woocommerce-billing-fields{padding-bottom:35px}.checkout .woocommerce-billing-fields h2{margin-bottom:12px}.checkout .tvdelivery p{margin-bottom:19px}.checkout .woocommerce-billing-fields p{margin-bottom:9px}.checkout .woocommerce-shipping-fields{padding-bottom:15px}.checkout .woocommerce-shipping-fields h2{margin-bottom:8px}#customer_details #authorise_field label input,#ship-to-different-address-checkbox{margin-right:8px}.checkout .tvdelivery.tvbox{margin-top:5px;overflow:hidden}#order_comments{height:88px}#customer_details #authorise_field label{display:block;font-family:Roboto;font-size:16px;font-weight:400}.activeshow .billing_address,.activeshow .billing_mess,.activeshow .shipping_address,.activeshow .shipping_mess,.activeshow .tvshiptobilling,.billing_address_edit label,.shipping.text-uppercase p,.shipping_address_edit label,.woocommerce-order-received .stepcheckout{display:none}.secure_payment{margin-top:20px}.secure_payment div{color:#a5a5a4}.secure_payment .title_stripe{height:70px}.secure_payment h3{background:url(assets/images/icon_lock_small.png) left center no-repeat rgba(0,0,0,0);left:15px;padding-left:15px;position:absolute;top:25px}.secure_payment .title_stripe img{left:170px;position:absolute;top:0}.woocommerce-checkout article.hentry{position:relative}.entry-header{padding-top:35px}.woocommerce-checkout .entry-header{padding-top:75px}.stepcheckout{color:#04aecc;font-family:"Roboto Slab";font-size:12px;position:absolute;text-align:center;top:45px;width:100%}.select2-container.state_select .select2-choice>.select2-chosen{font-size:11px}.order-total strong{line-height:18px}#billing_state_field .select2-choice,#shipping_state_field .select2-choice{padding:9px 15px}.billing_address_edit,.shipping_address_edit{left:-99999px;position:absolute;top:-99999px}.billing_address_edit p,.shipping_address_edit p{margin-bottom:10px}#ship-to-different-address{display:inline}.col2-set .billing_address_edit .form-row-first,.col2-set .billing_address_edit .form-row-last,.col2-set .shipping_address_edit .form-row-first,.col2-set .shipping_address_edit .form-row-last{margin-right:0;width:48%}.activeshow .billing_address_edit,.activeshow .shipping_address_edit{position:static}.shipping_address.nomr{margin-bottom:0}.product-name .variation{margin:5px 0 40px}.product-name .variation .variation-Drinks{display:inline-block;margin-right:5px}.animate-spin{animation:1s linear 0s normal none infinite running spin;display:inline-block}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}i.ajax-loader{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;border-bottom-color:transparent!important;border-image:none;border-left:1px solid #08c;border-radius:20px;border-right:1px solid #08c;border-style:solid;border-top:1px solid #08c;border-width:1px;display:inline-block;vertical-align:middle}i.ajax-loader.small{border-width:2px 3px 1px 0;font-size:16px;height:16px;padding:0;width:16px}i.ajax-loader.large{border-width:3px 5px 2px 0;height:32px;width:32px}.page_cancel_subscription label{font-weight:400;padding-left:5px}.page-template-challenge_results .site-main{margin-bottom:0}.page_challengeresults .tv-header{padding-top:45px}.page_challengeresults .tv-title{padding-bottom:25px}.page_challengeresults p{font-size:20px;letter-spacing:-.3px;margin-bottom:7px}.page_challengeresults h3{letter-spacing:-1px;margin-bottom:0}.page_challengeresults .inline_block{padding-top:40px}.page_challengeresults .tvsocial{padding-bottom:20px}.page_challengeresults .tvsocial h2{letter-spacing:-1px;margin-top:42px}.page_challengeresults div.sharedaddy h3.sd-title{display:none}.page_challengeresults .sd-sharing-enabled{display:block}.tvnotified{margin:0 auto;max-width:960px;padding-top:45px}.page_how_it_works .container,.page_how_it_works .containernp{margin:0 auto;max-width:1024px}.footer_page a{display:block;padding:48px 0 60px;color:#000}.footer_page a .robotoslab{color:#60646c}.footer_page a b{border-bottom:3px solid #ffe833}.page_how_it_works .tv-header{padding-top:45px}.page_how_it_works .tv-title{padding-bottom:25px}.page_how_it_works .container{padding-left:32px;padding-right:32px}.ptext{line-height:30px;margin:0 auto 60px;padding-top:11px;width:77%;word-spacing:-1px}.box{float:left;margin-bottom:30px;min-height:390px;padding:30px 20px 0;width:32%}.box1{background:#55b2b6}.box.box2,.box.box3{background:#efefec;padding-bottom:0;padding-left:20px;padding-right:20px}.box.box2{margin:0 2%}.listbox h2{line-height:30px;padding:0 20% 10px}.listbox .box1 h2{color:#fff}.listbox table td{background:rgba(0,0,0,0);padding:0;vertical-align:middle}.listbox img{display:inline-block}.box.box2>p,.box.box3>p{line-height:23px;margin-bottom:10px}.boximg{float:left;position:relative;width:50%}.boximg::after{background:url(assets/images/htw_bg.png) center center no-repeat rgba(0,0,0,0);content:"";height:100%;left:0;opacity:0;position:absolute;top:-100%;width:100%}.boximg:hover::after{opacity:1;top:0}.htw_footer{margin-top:30px}.htw_footer a{bottom:0;height:auto;left:0;margin:auto;max-height:51px;max-width:265px;position:absolute;right:0;top:0;width:auto;z-index:9999}.page_outdrink .container,.page_outdrink .containernp{margin:0 auto;max-width:1024px}.htw_footer .boximg2 a{max-width:205px;z-index:999}.page_outdrink .tv-header{padding-top:45px}.page_outdrink .tv-title{padding-bottom:25px}.page_outdrink .container{padding-left:32px;padding-right:32px}.page_outdrink h4.font20{margin-bottom:23px}#outdrink_right{float:right;width:300px}#outdrink_left{float:left;margin-bottom:60px;width:60%}.choose_reize{letter-spacing:-2px;margin:25px 0 15px;word-spacing:-1px}.boxdrink{padding:35px 20px 21px 15px}.form_title{color:#ffe833;font-family:signpainter_housescrip;font-size:27px;padding-bottom:32px}.form_your_results{background:#232323;color:#d9d9d9;line-height:20px}.form_your_results input:active,.form_your_results input:focus{background-color:rgba(0,0,0,0);color:#f8f7f6!important}body .form_your_results input{border:1px solid #f8f7f6!important;color:#f8f7f6!important;margin-bottom:20px;padding:14px;width:100%}.whats_in_reize{background:#d4d4cc;margin:40px 0}.whats_in_reize .boxdrink{padding-top:23px}.boxdrink.boxproduct{padding-top:0}.boxproduct ul{list-style:none;margin:0}.boxproduct ul li .productname{display:block;float:left;width:78%}.boxproduct ul li .productweight{display:block;float:left;text-align:right;width:22%}.panel-group .panel+.panel{margin-top:0}.panel-reize .panel-body{background:#e9e9e6}.panel-reize>.panel-heading{background:#4a4a4b;border-radius:3px;padding:12px 15px 12px 0}.panel-reize .panel-title a img{display:inline-block}.panel-reize .panel-title a span{display:block;float:left;min-width:70px;text-align:center;vertical-align:middle}.panel-reize .panel-title>a{background:url(assets/images/arrowup.png) right center no-repeat rgba(0,0,0,0);color:#f8f7f6;display:block;font-family:"Roboto Slab";font-weight:400;padding-right:38px}.panel-reize .panel-title>a.collapsed{background:url(assets/images/arrowdown.png) right center no-repeat rgba(0,0,0,0)}.footer_outdrink .pisrelative>img{height:190px;width:100%}.footer_outdrink img.mobile{height:220px}.footer_outdrink .pisrelative{position:relative}.footer_outdrink .container .text img{display:inline-block}.footer_outdrink .container .text{line-height:28px;margin:0 auto;max-width:1024px;padding:0 4%;position:absolute;text-align:center;top:25px}.form_your_results_mobile{margin:0 auto;max-width:459px;padding:0 15px}.form_your_results_mobile #challenge_results{display:none;padding-top:20px}.form_title img{padding-top:10px}.page_outdrink label.error{display:none!important}body .form_your_results input.error{border:1px solid red!important}.productname span{display:inline-block}.productname span.textdot{border-bottom:2px dotted #60646c;line-height:5px;margin-left:5px}.page-legal-terms .container{margin:0 auto;max-width:900px;padding-left:32px;padding-right:32px}
.page-legal-terms h3{color:#55b2b6;font-family:"Roboto Condensed";font-size:18px;font-weight:700;margin:20px 0 0}
.page-legal-terms .ollevel1, .page-legal-terms .ollevel2{
width: 100%;
overflow: hidden
}
.page-legal-terms p{
margin: 0
}
.page_how_it_works .htw_footer {
margin-top: 0;
}
.footer_outdrink .inline_block.arrowdown {
display: none !important;
}
.footer_outdrink .inline_block.arrowup {
display: none !important;
}
.form_your_results_mobile #challenge_results{
display: block !important;
}
/**change 14sep**/
/*.itemcontent:hover ,
.item-thumbnail:hover{
background: #000 none repeat scroll 0 0;
opacity: 0.2;
}*/
.change_your_plan .button.disable,
.not_enougt_reize .button.disable,
.too_much_reize .button.disable{
background-image: url("assets/images/bg_arrow.png");
background-position: 91% center;
background-repeat: no-repeat;
padding:12px 40px 12px 10px;
background-color: #ccc
}
.change_your_plan .button,
.not_enougt_reize .button,
.too_much_reize .button{
background: url(assets/images/bg_arrow.png) 91% center no-repeat #ffe833;
padding:12px 40px 12px 10px!important;
}
.boximg:hover::after {
opacity: 0;
top: 0;
}
.itemcontent:hover {
background: #000 none repeat scroll 0 0;
opacity: 0.2;
}
.item-thumbnail:hover a.item-title {
background: #ffe833 none repeat scroll 0 0;
color: #000;
}
.main-navigation ul.menu > li > a {
display: inline-block;
margin-left: 55px;
padding: 0 0 11px;
color: #FFF;
}
.secondary-navigation ul.menu a{
color: #FFF;
height: 40px;
}
.main-navigation ul.menu > li, .main-navigation ul.nav-menu > li {
padding: 0;
}
.main-navigation ul.menu > li > a:hover::before, .main-navigation ul.nav-menu > li > a:hover::before {
bottom: 0;
height: 5px;
}
#free-reize a.roboto_condensedbolditalic:hover,
.free_conntent a.roboto_condensedbolditalic:hover{
color: #FFE833
}
.subscribe-and-connect-connect .icon-theme-icons > li a{
color: #9ba09f!important;
}
.subscribe-and-connect-connect .icon-theme-icons > li a:hover{
color: #4a4a4b!important
}
/*.subscribe-and-connect-connect .icon-theme-icons > li:hover a{
color: #fff
}*/
.crl-ajax-auth a.close {
color: #94937f;
}
.crl-ajax-auth a.close:hover {
color: #ffe833;
}
#pop_forgot {
font-family: "Roboto Condensed";
}
.footer_outdrink .pisrelative > img{
display: none
}
/*end*/
.ollevel1,.ollevel2{clear:both;list-style:none;margin:0}.ollevel2{margin-left:25px}.ollevel1 li,.ollevel2 li{clear:both}.ollevel1 li span{float:left;width:25px}.ollevel1 li p{float:left;width:95%}.hentry.type-post .entry-content,.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:100%}.ollevel2 li p{margin:0}.privacy-policy{margin-left:15px}.privacy-policy li{padding-left:10px}.linkpayment{list-style:none;margin:0}.linkpayment a{color:#60646c;font-weight:400}#comments,.navigation.post-navigation,.single-post .sd-content ul li.share-email{display:none}.single-post .sd-sharing-enabled{display:block}.single-post .site-content .col-full{max-width:100%;padding:0}.signle_container{margin:0 auto;max-width:1024px}.signle_container .col-sm-9 h1.entry-title{background:#f8f7f6;color:#000;left:0;min-height:115px;padding:30px 15px 0;position:absolute;top:-140px}.single-post .post h2,.single-post .post h3,.single-post .post h4,.single-post .post h5{color:#55b2b6;font-family:"Roboto Condensed";font-size:16px;font-weight:700;margin:0}.RobotoSlabLight{color:#232323;font-family:"Roboto Slab";font-weight:300}.signle_container .btnbgnone{padding-left:0}.signle_container a{color:#60646c}.signle_container .sd-content{display:inline-block;padding-left:20px}.signle_container #jp-relatedposts h3.jp-relatedposts-headline,.signle_container #jp-relatedposts h3.jp-relatedposts-headline em,.signle_container .tv_relatedposts_headline,.signle_container div.sharedaddy h3.sd-title{color:#4a4a4b;font-family:"Roboto Slab";font-size:14px;font-weight:400}.signle_container #jp-relatedposts h3.jp-relatedposts-headline,.signle_container .tv_relatedposts_headline{border-bottom:1px solid #9ba09f;display:block;margin:0;padding:10px 0;width:100%}.single-post .site-main{margin:0}.single-post .bg2{padding-bottom:0}.pbacktoblog{border-top:1px solid #9ba09f;margin-top:30px;padding-top:10px}.arrowblack{background:url(assets/images/arrow_black.png) left center no-repeat rgba(0,0,0,0);color:#60646c;font-size:14px;font-weight:400;padding:5px 5px 5px 20px}.byline a{text-transform:capitalize}.byline,.byline a{font-family:Roboto;font-size:12px;font-weight:400}#tv_relatedposts,.signle_container #jp-relatedposts{background:#d4d4cc;margin:0 15px;padding:10px 15px 30px}.single-post .bg2 .container{padding:0}.tv_relatedposts_list{list-style:none;margin:0}.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post,.tv_relatedposts_list li{border-bottom:1px solid #9ba09f;padding:10px 0}.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a,.tv_relatedposts_list li a{font-family:"Roboto Condensed";font-size:16px;font-weight:400;text-transform:uppercase}.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover,.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a,.tv_relatedposts_list li a:hover{color:#ec7d03;text-decoration:none}.signle_container #jp-relatedposts h3.jp-relatedposts-headline em::before,.signle_container div.sharedaddy h3.sd-title::before{border:none}.single-post #jp-relatedposts{display:block}.account_information.activeshow table,.account_information_edit,.page_contact .subscribe-and-connect-connect .description,.page_contact .subscribe-and-connect-connect h2,.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span.jp-relatedposts-post-context,.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span.jp-relatedposts-post-date,.tvinner .sd-social .sd-button .share-count,.woocommerce-message{display:none}.page_contact,.page_contact a{color:#232323;font-weight:400}.page_contact .tvphone{background:url(assets/images/phone.png) left center no-repeat rgba(0,0,0,0);padding-left:20px}.page_contact .tvemail{background:url(assets/images/email.png) left center no-repeat rgba(0,0,0,0);padding-left:20px}.page_contact .tvclock{background:url(assets/images/clock.png) left center no-repeat rgba(0,0,0,0);padding-left:20px}.innercontact{margin:0 auto;width:80%}.wpcf7-form input.wpcf7-text{width:100%}.wpcf7-form label{font-size:20px}.page_contact .icons{margin-left:0}.page_contact .subscribe-and-connect-connect .icon-theme-icons>li>a,.page_contact .subscribe-and-connect-connect ul.icon-theme-icons li a{color:#fff}.page_contact .icons .twitter{background:#009fe3}.page_contact .icons .facebook{background:#0069b4}.page_contact .icons .youtube{background:#e30613}.page_contact .icons .instagram{background:#4c4d51}.page_contact .icons .flickr{background:#ffe833}.wpcf7-form-control.wpcf7-submit.button{background:url(assets/images/bg_arrow.png) 91% center no-repeat #ffe833;padding:12px 45px 12px 20px}.sharing_cancel:hover,.sharing_send:hover{opacity:.7}.tvboxtitle{background:#d4d4cc;margin-top:15px}#order_reviews .tvbox{margin-top:0}#order_review_heading{padding:10px 0 0 20px}.tv_chrome .tv_form_login .innersmall .button{padding:5px 20px}.account_information.activeshow .account_information_edit{display:block}.foreign_country button.close{background:rgba(0,0,0,0);border:0;box-shadow:none;color:#60646c!important;cursor:pointer;font-size:16px;font-weight:400;opacity:1;padding:0;position:absolute;right:10px;top:20px;width:80px}.foreign_country ul{margin:0}.foreign_country ul li{line-height:20px;list-style:none;padding-bottom:10px;text-align:justify}.modal-title{color:#94937f;font-weight:700}.subscription-switch-direction{font-family:initial;font-size:13px}.accout_card_number{background-position:right center;background-repeat:no-repeat}.accout_card_number.visa{background-image:url(assets/images/icons/credit-cards/visa.png)}.accout_card_number.mastercard{background-image:url(assets/images/icons/credit-cards/mastercard.png)}.accout_card_number.laser{background-image:url(assets/images/icons/credit-cards/laser.png)}.accout_card_number.dinersclub{background-image:url(assets/images/icons/credit-cards/diners.png)}.accout_card_number.maestro{background-image:url(assets/images/icons/credit-cards/maestro.png)}.accout_card_number.jcb{background-image:url(assets/images/icons/credit-cards/jcb.png)}.accout_card_number.amex{background-image:url(assets/images/icons/credit-cards/amex.png)}.accout_card_number.discover{background-image:url(assets/images/icons/credit-cards/discover.png)}
/*more css for login and register*/
button:hover,.homeleft a.button:hover,
button:hover{
background-color: #FFC833!important;
}
/*.change_your_plan .button.disable{
background: #ffe833 none repeat scroll 0 0;
}*/
.homeleft a.button:hover,
#outdrink_right #challenge_results .button.btnrow:hover,
.button.btnrow:hover,
.change_your_plan .button:hover,
.not_enougt_reize .button:hover,
.too_much_reize .button:hover
{
background-position: 92% center;
background-color: #FFC833!important;
}
.change_your_plan .button.disable:hover,
.not_enougt_reize .button.disable:hover,
.too_much_reize .button.disable:hover{
background-position: 92% center;
background-color: #ccc!important;
/*background: url(assets/images/bg_arrow.png) 92% center no-repeat #cccccc!important;*/
}
.button:hover i {
left: 1px;
/* padding-left: 19px;*/
position: relative;
}
.page_how_it_works .htw_footer .boximg img{
display: none
}
.page_how_it_works .htw_footer .boximg{
background: rgba(0, 0, 0, 0) url("/wp-content/themes/reize/assets/images/how_it_works/htw_join.png") no-repeat scroll 100% 0 / cover ;
height: 310px;
}
.page_how_it_works .htw_footer .boximg2{
background: rgba(0, 0, 0, 0) url("/wp-content/themes/reize/assets/images/how_it_works/htw_outdrink.png") no-repeat scroll 0 0 / cover;
height: 310px;
}
/*.page_how_it_works .htw_footer .boximg a{
left: auto;
right: 150px;
}
.page_how_it_works .htw_footer .boximg2 a{
left: 150px;
right: auto;
}*/
#our-drink-page .site-main{
margin-bottom: 0
}
.page-template-our-drink #content >.col-full{
max-width: 100%;
padding: 0;
background: #f8f7f6 none repeat scroll 0 0;
}
.page-template-our-drink #content >.col-full > .col-full{
float: none;
margin: 0 auto;
max-width: 1024px;
background: #f8f7f6 none repeat scroll 0 0;
}
.page-template-our-drink #site-content{
background: #F8F7F6
}
.page-template-our-drink .pisrelative {
background-attachment: scroll;
background-clip: border-box;
background-color: rgba(0, 0, 0, 0);
background-image: url("/wp-content/themes/reize/assets/images/ourdrink/outdrinkbg.png");
background-origin: padding-box;
background-repeat: no-repeat;
background-size: cover;
height: 190px;
}
.page-template-our-drink .pisrelative .container{
margin: 0 auto;
max-width: 1024px;
text-align: center;
}
.secondary-navigation .menu-top-nav-links-container .menu a:hover span{
border-bottom: 1px solid #9aa0a7;/*#A7A7A7;*/
font-family: "Roboto Condensed";
}
.secondary-navigation .menu-top-nav-links-container .menu a:hover{
text-decoration: none!important;
}
.secondary-navigation .menu-top-nav-links-container .menu a.show_login{
/*height: 44px;*/
}
.secondary-navigation .menu-top-nav-links-container .menu a span{
padding-bottom: 1px;
border-bottom: 1px solid #fff;
}
.secondary-navigation ul.menu li:last-child{
border-left: medium none;
padding-left: 5px;
}
.secondary-navigation ul.menu li:last-child span{
border-left: none;
padding-left: 0;
}
.secondary-navigation ul.menu li.line-break span{
border-left: 1px solid #fff;
}
.secondary-navigation ul.menu li.line-break{
padding: 0
}
.site-header .secondary-navigation ul.menu a:hover::before{
background: transparent
}
.row-show-pass-action{
margin-bottom: 10px
}
/*change by thungan*/
/*.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} */
.flexslider .slides > li {display: block; -webkit-backface-visibility: visible;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block; width:auto\9; /* ie8 */}
.page-template-our-drink .mg-free-sample{
margin-bottom: -5px;
padding-top: 40px;
}
.order-total.tvhide{
display: block !important;
}
.order-total.recurring-total{
display: none !important;
}
.footer-widgets .footer-widget-1.block {
width: 49%;
/*width: 47.8260869565%;*/
}
.woocommerce-checkout .select2-search{
/*display: none !important;*/
}
.woocommerce-checkout .footer-widgets{
display: none !important;
}
.secondary-navigation ul.menu li {
line-height: 40px !important;
}
@media screen and (max-width: 745px){
.islogin .icon_user {
top: 13px !important;
}
}
/* 28-09-16 */
@media screen and (max-width: 480px){
.footer_outdrink .container .text {
top: 0 !important;
}
}
@media screen and (max-width: 745px){
.page_how_it_works a.button, .page_how_it_works h4, .ptext {
font-size: 17px !important;
}
}
@media only screen
and (max-width: 356px) {
.page_how_it_works a.button, .page_how_it_works h4, .ptext {
font-size: 15px !important;
}
.page_how_it_works .button.btnrow {
padding: 12px 40px 12px 10px !important;
}
}
@media only screen
and (min-width: 746px)
and (max-width: 793px) {
.page_how_it_works .htw_footer .boximg a {
font-size: 20px !important;
}
}
@media only screen
and (min-width: 746px)
and (max-width: 947px) {
.content_myaccount table .not_enougt_reize td,
.content_myaccount table .too_much_reize td {
font-size: 14px !important;
}
.change_your_plan .button, .not_enougt_reize .button, .too_much_reize .button {
padding: 12px 0px 12px 7px !important;
}
}
@media only screen
and (min-width: 746px)
and (max-width: 777px) {
.change_your_plan .button, .not_enougt_reize .button, .too_much_reize .button {
font-size: 13px !important;
margin-left: -20px !important;
}
}
@media only screen
and (min-width: 778px)
and (max-width: 880px) {
.change_your_plan .button, .not_enougt_reize .button, .too_much_reize .button {
font-size: 14px !important;
margin-left: -20px !important;
}
}
@media only screen
and (min-width: 881px)
and (max-width: 947px) {
.change_your_plan .button, .not_enougt_reize .button, .too_much_reize .button {
font-size: 14px !important;
margin-left: -10px !important;
}
}
/*29-09-16*/
.home .fluid-width-video-wrapper {
background: #D4D4CC !important;
opacity: 0;
}
.home iframe {
/*height: 99.3% !important;*/
}
#deadpan_thank_text{
color: rgb(3, 145, 94);
}
@media screen and (max-width: 745px){
#top-panel .welcome-form p.text-welcome,
#top-panel .welcome-form p.text-win {
display: none;
}
}
.ui-loader{
display:none;
}
@media screen and (max-width: 380px){
.hot_cold {
background-size: contain;
padding: 11% 20% 13% !important;
font-size: 14px !important;
}
}
@media screen and (max-width: 768px){
.page_how_it_works .htw_footer .boximg a {
left: auto;
right: 23%;
}
.page_how_it_works .htw_footer .boximg2 a {
left: auto;
right: 29%;
}
}
.page-template-free-sample ._form_element._field22{
display: none;
}
#message_free_sample{
color: #00b700;
text-align: center;
font-family: Roboto;
font-size: 18px;
padding: 10px 25px 0 25px;
}
#free-survey-wrapper {
width: 100% !important;
max-width: 700px !important;
background-color: #FFF !important;
margin: 0 auto !important;
}
#free-survey-container {
width: 100% !important;
max-width: 700px !important;
}
#free-survey-iframe{
height: 1885px !important;
border: none !important;
}
.link-spanner{
position:absolute;
width:100%;
height:100%;
top:0;
left: 0;
z-index: 1;
}
.collapse.in {
position: inherit;
}
#dp_term_text {
font-size: 11px !important;
text-transform: inherit !important;
margin-bottom: 0 !important;
}
form#deadpan_form {
margin-bottom: 0 !important;
}
figcaption.wp-caption-text {
padding-bottom: 0.5em !important;
}
figcaption.wp-caption-text p {
margin-bottom: 0 !important;
}
/*=================survey-form page=============================*/
#survey-form *{
color: #323231;
font-size: 16px;
}
#survey-form h1{
text-align: center;
color: #93927F;
font-size: 56px;
/* font-family: Myriad Pro*/
margin-bottom: 20px;
}
#survey-form .style-fgc em{
font-size: 20px
}
#survey-form p{
margin: 0
}
#survey-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
margin-top: 5px;
}
#survey-form .container-top-frm .margin-20{margin-top: 16px}
.page-template-free-sample-survey-form .entry-title,
.page-template-thanks .entry-title{display: none}
.page-template-thanks .entry-title {
}
#survey-form .container-top-frm .content-top-banner{
margin: 0 auto 60px;
width: 80%;
}
#survey-form .container-top-frm .top-banner{
/* height: 550px;*/
margin: 0 auto 25px;
padding-bottom: 0;
width: 100%;
}
#survey-form .container-bottom-frm .box-content .name{
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
display: block
}
#survey-form .container-bottom-frm .box-content .des{
color: #323231;
font-style: italic;
text-transform: uppercase;}
#survey-form .container-bottom-frm .box-content img{
background: #fff none repeat scroll 0 0;
border-radius: 50%;
box-shadow: 0 7px 6px #ddd;
height: 175px;
margin: 0 auto;
padding: 6px;
width: 80%;
}
#survey-form .container-bottom-frm .content-somebody{
margin-top: 10px
}
#survey-form .container-bottom-frm{
border-top: 1px solid #ccc;
margin-top: 30px;
padding-top: 30px;
}
#survey-form .container-bottom-frm .box-content{width: 25%;
float: left;
text-align: center
}
#survey-form .container-bottom-frm .box-content .inner-box{
padding: 10px 20px
}
#survey-form .style-fgc{
font-size: 20px;
text-align: center}
#survey-form .gform_title,
#survey-form .gform_heading{display: none}
#survey-form .gform_body li > label{ font-family: "Roboto Condensed";
font-size: 24px;
font-weight: bold;}
#survey-form .gform_body ul.gfield_checkbox li label,
#survey-form .gform_body ul.gfield_radio li label{
font-size: 15px;
text-transform: uppercase;
color: #515151
}
#survey-form .gform_body ul.gfield_radio li {
display: inline-block;width: 15%
}
#survey-form .gform_footer input[type="submit"]{
background: #ffe833 url("assets/images/bg_arrow.png") no-repeat scroll 91% center;
padding: 12px 123px 12px 20px; border-radius: 5px;
display: inline-block;
font-size: 24px;
font-style: italic;
font-weight: 700;
line-height: 25px;
}
#survey-form .gform_footer input[type="submit"]:hover{
background-color: #ffc833 !important;
background-position: 92% center;
}
#survey-form .gform_body ul.gfield_checkbox li{ display: inline-block;
padding: 0 !important;
width: 50%;}
#survey-form .gform_body .other-field-custom1,
#survey-form .gform_body .other-field-custom{
padding: 0;
margin: 0
}
#survey-form .gform_body .other-field-custom1 .ginput_container_textarea,
#survey-form .gform_body .other-field-custom .ginput_container_textarea{
margin-top: -70px;
}
#survey-form .gform_body .other-field-custom1 textarea.medium ,
#survey-form .gform_body .other-field-custom textarea.medium{
float: right;
height: 100px;
width: 50%;
}
#survey-form .gform_body .custom-details .ginput_complex label{display: none}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address span.ginput_full + span.address_line_2.ginput_right{
margin-right: -8px!important;
padding-right: 8px!important;
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .address_city.ginput_left{
margin-right: 8px;
}
#survey-form .gform_wrapper .gform_body .custom-email input{
width: 100%
}
#survey-form .gform_wrapper .gform_body .custom-name{
width: 50%;
float: left;padding: 0;clear: none;margin-top: 20px
}
#survey-form .gform_wrapper .gform_body {
width: 85%
}
#survey-form .gform_wrapper .gform_body .custom-email .ginput_container_email{
width: 68%;
}
#survey-form .gform_wrapper .gform_body .custom-email{
width: 100%
}
#survey-form .gform_wrapper .gform_body .custom-details{
width: 77%;
padding: 0
}
#survey-form .gform_wrapper .gform_body .custom-date{
float: left;
width: 39.5%;
padding: 0;clear: none;margin-top: 20px
}
#survey-form .gform_wrapper .gform_body .ginput_container_phone{
width: 68%;
}
#survey-form .gform_wrapper .gform_body .ginput_container_phone input{
width: 100%;
}
#survey-form .gform_wrapper .gform_body .custom-name,
#survey-form .gform_wrapper .gform_body .custom-date{
width: 39.5%
}
#survey-form .gform_wrapper .gform_body .custom-date{
/* float: right*/
}
#survey-form .gform_wrapper .gform_body .custom-name input,
#survey-form .gform_wrapper .gform_body .custom-date input{
width: 100%
}
#survey-form .gform_wrapper .gform_body .custom-name .ginput_container,
#survey-form .gform_wrapper .gform_body .custom-date .ginput_container{
margin-right: 8px;
padding-right: 8px;
}
#survey-form .gform_wrapper .gform_body .custom-date .ginput_container{
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .address_state{
margin-right: 8px!important
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .address_state input{
margin-bottom: 0;
}
#survey-form .gform_wrapper .gform_body .custom-date .gfield_description{
font-family: "Roboto Condensed";
font-size: 12px;
padding-top: 10px;
text-transform: uppercase;
font-weight: bold
}
#survey-form .gform_wrapper .gform_body .custom-date .gfield_description.validation_message{
padding-top: 0
}
#survey-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
#survey-form .gform_wrapper select,
#survey-form .gform_wrapper textarea{
border: 1px solid #494a4c;
border-radius: 9px;
font-family: inherit;
font-size: inherit;
letter-spacing: normal;
padding: 5px 4px;
color: #616161;
}
#survey-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
#survey-form .gform_wrapper select{
height: 35px;
/* margin-bottom: 20px;*/
}
#survey-form .gform_wrapper .gform_body .custom-select-howmany{
margin-top: 0;
margin-bottom: 10px
}
#survey-form .gform_wrapper .gform_body .custom-select-howmany select{
color: #323231;
font-family: "Roboto Condensed";
font-size: 20px;
}
#survey-form .gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
background-color: transparent;
border: none;
box-sizing: border-box;
margin: 0 !important;
padding: 0;
}
#survey-form .gform_wrapper li.gfield.gfield_error .validation_message{
color: #c89797;
font-size: 14px;
font-weight: normal; text-transform: none;
}
#survey-form .gform_wrapper div.validation_error{background: rgba(255, 223, 224, 0.25) none repeat scroll 0 0 }
#our-drink-page .mg-free-sample,
#survey-form .fgc-message,
#survey-form .fgc-message a{
color: #00b700;
text-align: center;
font-family: Roboto;
font-size: 18px;
padding: 10px 25px 0 25px;
text-transform: none
}
#survey-form .fgc-message a{
font-size: 18px;
text-decoration: underline
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address input{
margin-bottom: 20px
}
#survey-form .gform_wrapper .field_description_below .gfield_description {
padding-top: 0;
}
#survey-form .gform_wrapper .gform_body .address_state input,
#survey-form .gform_wrapper .gform_body .address_country input{
margin-bottom: 0
}
#survey-form .gform_wrapper .gform_body .custom-date .gfield_description{}
#survey-form .container-bottom-frm h1{
margin-bottom: 10px
}
#survey-form .gform_wrapper .gform_body .custom-details .validation_message{
margin-top: -8px;
}
#survey-form .container-bottom-frm .fgc-line{
display:none;
height: 1px;
width: 100%;
overflow: hidden
}
#survey-form .gform_wrapper .gform_body .custom-date .clear-multi >div{
margin-top: 0!important
}
.page-template-free-sample-survey-form .entry-content{
padding-bottom: 20px
}
.page-template-thanks .thank-page .bd *{
display: inline-block;
}
.page-template-thanks .thank-page .bd{
padding-top: 50px
}
.page-template-thanks .thank-page .bd .smf-icon{
position: relative;
top: 5px;
}
.page-template-thanks .entry-content{
min-height: 600px
}
/**==============================================================*/
@media screen and (min-width: 768px){
.main-navigation ul.menu > li:nth-child(4) {
display: none !important;
}
}
.post .signle_container a {
color: #3594BA !important;
outline: none;
text-decoration: none;
font-weight: 400;
}
.post .signle_container a:hover {
text-decoration: underline !important;
}
.post .signle_container a u {
text-decoration: none !important;
}
.post .signle_container a span {
color: #3594BA !important;
}
@media screen and (max-width: 768px){
.page-template-thanks .entry-content {
min-height: 450px;
}
.page-template-thanks .thank-page .bd * {
display: inline;
}
.page-template-thanks .thank-page .bd{
text-align: center
}
.page-template-thanks .thank-page .bd{
padding-top: 15px
}
figure.wp-caption, figure.wp-caption img {
width: 100% !important;
}
#survey-form .gform_wrapper .gform_body ,
#survey-form .gform_wrapper .gform_body .custom-email .ginput_container_email,
#survey-form .gform_wrapper .gform_body .custom-details,
#survey-form .gform_wrapper .gform_body .ginput_container_phone{
width: 100%
}
#post-21841 .entry-header {
padding-top: 0;
}
#survey-form .container-top-frm {
margin: 0 auto 25px;
width: 100%;
}
#survey-form .gform_wrapper .gform_body .custom-date,
#survey-form .gform_wrapper .gform_body .custom-name{
width: 100%
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .address_city.ginput_left {
margin-right: 0;
}
#survey-form .gform_body ul.gfield_radio li {
display: inline-block;
width: 37%;
}
#survey-form .gform_body ul.gfield_checkbox li {
display: inline-block;
padding: 0 !important;
width: 100%;
margin-bottom: 4px
}
#survey-form .gform_footer input[type="submit"]{
width: auto
}
#survey-form h1 {
color: #93927f;
font-size: 26px;
text-align: center;
}
#survey-form .container-bottom-frm .box-content {
float: left;
text-align: center;
width: 50%;
/* min-height: 320px*/
}
#survey-form .container-bottom-frm .box-content .name{
font-size: 15px;
}
#survey-form .container-bottom-frm h1{
margin-bottom: 10px
}
#survey-form .container-bottom-frm .box-content .des{
color: #323231;
font-style: italic;
text-transform: uppercase;
font-size: 12px
}
#survey-form .container-bottom-frm .style-fgc {
font-size: 13px;
padding: 0 70px;
text-align: center;
}
#survey-form .container-bottom-frm .box-content img{
width: 100%
}
#survey-form .container-bottom-frm {
border-top: medium none;
margin-top: 0;
padding-top: 0;
}
#survey-form .gform_wrapper input[type="text"]{
line-height: 25px
}
#survey-form .gform_wrapper .gform_body .address_state,
#survey-form .gform_wrapper .gform_body .address_zip{
width: 45%;
float: left;
clear: none
}
#survey-form .gform_wrapper .gform_body .address_zip{
float: right
}
#survey-form .gform_wrapper .gform_body .custom-name .ginput_container, #survey-form .gform_wrapper .gform_body .custom-date .ginput_container {
margin-right: 0;
padding-right: 0;
}
#survey-form .margin-20{margin-top: 5px}
#survey-form .gform_body .other-field-custom1 textarea.medium, #survey-form .gform_body .other-field-custom textarea.medium {
float: left;
height: 100px;
width: 100%;
}
#survey-form .gform_body .other-field-custom1 .ginput_container_textarea, #survey-form .gform_body .other-field-custom .ginput_container_textarea {
margin-top: -30px;
}
#survey-form .container-bottom-frm .box-content img{
height: 165px;
width: 166px
}
#survey-form .gform_body li > label {
font-size: 20px;
}
#survey-form .gform_body ul.gfield_checkbox li label, #survey-form .gform_body ul.gfield_radio li label {
font-size: 14px;
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address input {
margin-bottom: 0px;
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .ginput_left,
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .ginput_right{
min-height: 35px!important;
}
#survey-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), #survey-form .gform_wrapper select, #survey-form .gform_wrapper textarea {
border-radius: 12px;
padding: 5px 12px;
}
#survey-form .gform_wrapper select{
height: 32px
}
#survey-form .gform_wrapper.gf_browser_safari .gfield_checkbox li input,
#survey-form .gform_wrapper.gf_browser_safari .gfield_checkbox li input[type=checkbox],
#survey-form .gform_wrapper.gf_browser_safari .gfield_radio li input[type=radio],
#survey-form .gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
#survey-form .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
#survey-form .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio]{
margin-top: 0;
}
#survey-form .gform_body .custom-check-list1 {
padding-top: 15px
}
#survey-form .gform_wrapper .gform_body .custom-select-howmany select {
font-size: 20px;
padding-top: 0;
padding-bottom: 0;
}
#survey-form .container-bottom-frm .fgc-line{display: block}
#survey-form .container-top-frm .top-banner{width: 100%;height: auto;}
}
/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){
/* some CSS here */
}
@media only screen and (min-width: 641px) and (orientation: landscape){
#survey-form .gform_wrapper ul.gform_fields li.gfield {
padding-right: 0;
}
.gform_wrapper .ginput_container span:not(.ginput_price) {
margin-bottom: 8px;
}
#survey-form .gform_wrapper .gform_body .address_zip {
width: 50%;
}
#survey-form .gform_wrapper .gform_body .ginput_complex.ginput_container_address .address_state {
width: 50%;
}
}
.site-header .site-branding {
display: none;
}
.desktop.is_stuck{
padding-top: 15px
}
.homeleft h2{
margin-bottom: 15px;
}
.homeleft h2 .slogan-home{
color: #4b4b48;
display: block;
font-family: "Roboto Slab";
margin-top: 10px;
}
@media only screen and (max-width: 960px){
.fluid-width-video-wrapper {
width: 100% !important;
height: 100% !important;
}
}
.image_footer_post{
width: 100%;
}
.image_footer_post img {
margin: auto;
height: 30px;
}
.site-branding h1{
display: none;
}
.desktop{
display: auto;
}
.mobile{
display: auto;
}
@media screen and (max-width: 768px){
.desktop{
display: none;
}
}
@media screen and (min-width: 769px){
.mobile{
display: none;
}
}