873e3d80
Administrator
14.09.16
|
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
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
|
#call,
a,
nav.top a {
color: #6a6a6a
}
.basket,
.menu ul li a {
text-transform: uppercase
}
.basket_item .info,
.content,
.content2 {
overflow: hidden
}
.pic a,
.pic a img,
.pixbox a,
.pixbox img,
ul.product_colors li a,
ul.product_mod li a,
ul.product_mod li img,
ul.why_list li div {
vertical-align: middle
}
body,
form,
html {
padding: 0;
margin: 0;
font-family: Roboto;
font-size: 14px;
color: #333;
height: 100%
}
h1,
h2,
h3 {
margin: 0;
padding: 0 0 10px
}
.fl {
float: left
}
.fotter .wrap .fr {
float: right;
width: 180px;
height: 50px;
position: relative;
font-size: 12px
}
.phone,
.search,
nav.top ul li {
float: left
}
.fotter .wrap .fr img {
position: absolute;
top: 50%;
margin-top: -10px;
right: 0
}
.fotter .wrap .fl {
line-height: 50px;
font-size: 12px
}
.both {
clear: both
}
h1 {
margin: 10px 0;
font-size: 24px
}
h3 {
margin-bottom: 30px
}
p {
margin: 3px 0;
padding: 0
}
a {
font-size: 14px;
text-decoration: underline
}
#login,
nav.top,
nav.top ul li a {
font-size: 12px
}
#call,
.menu ul li a,
nav.top a {
text-decoration: none
}
a:hover {
color: #799920
}
.wrap {
width: 960px;
margin: 0 auto
}
.f {
background: #fff
}
.br {
-webkit-box-shadow: -1px 5px 14px 0 rgba(50, 46, 50, .46);
-moz-box-shadow: -1px 5px 14px 0 rgba(50, 46, 50, .46);
box-shadow: -1px 5px 14px 0 rgba(50, 46, 50, .46);
padding: 20px
}
nav.top {
background: #f5f5f5;
padding: 10px 0;
border-bottom: 1px solid #d2d2d2
}
nav.top ul {
list-style: none;
margin: 0;
padding: 0
}
#help,
#login,
nav.top ul li {
padding-right: 20px
}
#help {
background: url(../img/help.png) right no-repeat
}
#help span,
#login span {
border-bottom: 1px dotted #6a6a6a
}
#login {
background: url(../img/login.png) right no-repeat
}
.search {
margin: -5px 0 -5px 100px
}
nav input[type=text] {
width: 325px;
outline: 0;
border: 1px solid #d8d6d6;
border-radius: 5px;
padding: 5px 0;
font-size: 14px;
text-indent: 10px
}
nav input[type=submit] {
width: 35px;
height: 29px;
border: none;
background: url(../img/lupa_sub.png) center no-repeat;
margin-left: -35px;
cursor: pointer
}
.header {
margin: 0 0 20px
}
.phone {
position: relative;
text-align: center
}
.phone .tel {
font-size: 23px
}
.phone .tel span.more {
margin-bottom: 3px
}
.more_block {
background: #fff;
border: 1px solid #d2d2d2;
padding: 10px;
position: absolute;
font-size: 20px;
display: none;
z-index: 99
}
.more {
background: url(../img/more.png) no-repeat;
width: 12px;
height: 7px;
display: inline-block;
cursor: pointer;
margin-bottom: 5px
}
.logo {
margin: 0 auto;
width: 193px;
padding-top: 22px
}
.logo a {
display: block;
width: 193px;
height: 84px;
background: url(../img/logo.png) no-repeat
}
.logo a span {
display: none
}
#call {
border-bottom: 1px dotted #6a6a6a
}
.basket {
float: right;
position: relative;
border: 1px solid #d2d2d2;
border-radius: 5px;
padding: 15px 20px;
font-size: 18px
}
.basket .info {
float: left;
border-right: 1px solid #d2d2d2;
padding-right: 10px;
margin-right: 17px
}
.basket .info span {
color: #f75d50;
font-size: 22px
}
.basket a:link,
.basket a:visited {
text-decoration: none;
color: #000;
font-size: 18px
}
.basket span.more {
margin-bottom: -1px
}
.menu ul,
.menu_childs ul {
margin: 0;
list-style: none
}
.menu {
background: #596065;
border: 1px solid #e8e8e8
}
.menu ul {
padding: 0
}
.menu ul li {
float: left;
border-left: 1px solid #8b9094;
height: 43px
}
.menu ul li:first-child {
border-left: none
}
.menu ul li a {
width: 100%;
height: 100%;
line-height: 43px;
float: left;
box-sizing: border-box;
padding: 0 19px;
color: #fff;
font-size: 15px;
font-weight: 600
}
.menu_childs ul li a,
.rubrics ul li a {
font-weight: 700;
text-decoration: none;
float: left;
text-transform: uppercase
}
.menu ul li:hover {
background: #3e454b
}
.menu ul li.active a {
background: #f5f5f5;
color: #596065
}
.menu ul li.active a:hover {
cursor: default
}
.menu_childs {
background: #f5f5f5;
border: 1px solid #e8e8e8;
border-bottom: 2px solid #596065
}
.menu_childs ul {
padding: 0
}
.menu_childs ul li {
float: left
}
.menu_childs ul li a {
padding: 15px 23px;
color: #596065;
font-size: 14px
}
.menu_childs ul li a:hover {
color: #878b8e
}
.fr ul li {
border: none
}
.akciya a {
background: #f75d50;
color: #fff
}
.brands a {
background: #95ba2f;
color: #fff
}
a.myorders {
color: #f75d50
}
.sub {
margin: 2px 0 0
}
.sub img {
float: left;
margin-right: 2px
}
.rubrics {
margin: 60px 0 0;
padding-bottom: 27px
}
.rubrics ul {
list-style: none;
margin: 0;
padding: 0
}
.rubrics ul li {
float: left;
margin: 0 35px
}
.rubrics ul li a {
width: 120px;
padding-top: 130px;
text-align: center;
color: #494949
}
.rubrics ul li.item_ryukzaki a {
background: url(../img/ico1.png) no-repeat
}
.rubrics ul li.item_sumki a {
background: url(../img/ico2.png) no-repeat
}
.rubrics ul li.item_chehly a {
background: url(../img/ico3.png) no-repeat
}
.rubrics ul li.item_nesessery a {
background: url(../img/ico4.png) no-repeat
}
.rubrics ul li.item_koshelki a {
background: url(../img/ico5.png) no-repeat
}
.products {
padding-bottom: 30px;
padding-top: 20px
}
.products,
.why_me_ {
border-top: 1px solid #d2d2d2
}
.products ul {
list-style: none;
margin: 0;
padding: 0
}
.products ul li.item {
float: left;
width: 192px;
margin: 0 0 50px;
text-align: center;
position: relative
}
.products ul li a.name,
.special-products a.name {
display: block;
color: #799920;
font-size: 15px;
text-decoration: none;
margin: 15px 0 0;
height: 35px;
overflow: hidden;
box-sizing: border-box;
padding: 0 10px
}
.products ul li a.name:hover,
.special-products a.name:hover {
text-decoration: underline
}
.products ul li .info {
text-align: left
}
a.more_map,
h3,
ul.product_colors li,
ul.product_mod li {
text-align: center
}
.pn {
border: none
}
.cost,
.product_read_price #cost {
color: #f75d50;
margin: 0;
padding: 0
}
strike,
strike span#old_cost {
font-size: 14px;
color: #333
}
.checkout_basket button,
.submit4,
.submit4m,
a.link_buy {
background: #95ba2f;
border-radius: 4px;
height: 29px;
text-transform: uppercase;
color: #fff;
text-decoration: none;
font-weight: 600;
text-align: center;
border-bottom: 3px solid #799920;
font-size: 12px
}
.basket .submit4.bottom3,
.submit4.bottom3 {
font-size: 12px!important;
display: block
}
.basket .submit4.bottom3 {
margin-top: 10px
}
.checkout_basket button,
a.link_buy {
display: block;
margin: 0 auto 10px;
width: 122px;
line-height: 32px
}
.checkout_basket button,
.submit4 {
margin: 0;
padding: 0 20px;
line-height: 31px;
width: auto;
border-top: 0;
border-left: 0;
border-right: 0;
cursor: pointer
}
ul.mycarousel,
ul.mycarousel li {
margin: 0;
padding: 0
}
.btn-primary:hover,
.checkout_basket button:hover,
.submit4:hover,
.submit4m:hover,
a.link_buy:hover {
border-bottom: 3px solid #95ba2f
}
.btn-primary:active,
.checkout_basket button:active,
.submit4:active,
.submit4m:active,
a.link_buy:active {
background: #799920;
border-bottom: 3px solid #799920
}
.checkout_basket button:focus,
.submit4:focus {
outline: 0
}
.mycarousel {
position: absolute;
right: 22px;
top: 13px
}
ul.mycarousel {
list-style: none
}
h3 {
text-transform: uppercase;
font-size: 20px
}
span.why {
width: 213px;
background: url(../img/logo-why.png) no-repeat;
margin: 0 auto;
padding: 0 0 20px;
height: 29px;
display: block
}
ul.why_list {
list-style: none;
margin: 0;
padding: 0
}
ul.why_list li {
float: left;
margin-left: 58px;
width: 288px;
height: 96px;
box-sizing: border-box;
padding-left: 110px;
margin-top: 20px
}
ul.why_list li div {
display: table-cell;
height: 96px
}
ul.why_list li span {
font-weight: 700;
color: #799920
}
ul.why_list li.item1 {
background: url(../img/why_item1.png) left no-repeat
}
ul.why_list li.item2 {
background: url(../img/why_item2.png) left no-repeat
}
ul.why_list li.item3 {
background: url(../img/why_item3.png) left no-repeat
}
ul.why_list li.item4 {
background: url(../img/why_item4.png) left no-repeat
}
ul.why_list li.item5 {
background: url(../img/why_item5.png) left no-repeat
}
ul.why_list li.item6 {
background: url(../img/why_item6.png) left no-repeat
}
.banner_akciya {
margin: 50px 0
}
body>.bottom {
background: #4d5458;
padding: 40px 0;
color: #fff
}
body>.bottom .leftbar {
float: left;
width: 210px
}
body>.bottom ul {
list-style: none;
margin: 0;
padding: 0;
line-height: 23px
}
body>.bottom ul a {
color: #fff;
font-size: 15px;
text-decoration: none
}
body>.bottom ul a:hover {
color: #799920
}
.phones {
margin-top: 50px;
line-height: 23px;
font-size: 18px
}
.map {
padding: 5px 0 5px 25px;
background: url(../img/map.png) left no-repeat;
margin-bottom: 7px
}
a.more_map {
color: #99a5ad;
border-bottom: 1px dotted #99a5ad;
text-decoration: none;
font-size: 11px
}
.bread-crumbs {
padding: 0 0 0 20px;
border-bottom: 1px solid #d2d2d2;
height: 29px
}
.bread-crumbs ul {
list-style: none;
margin: 0;
padding: 0;
height: 29px
}
.leftbar,
.rightbar.basket_rightbar {
margin-right: 20px
}
.bread-crumbs ul li {
float: left;
padding-left: 20px;
height: 100%;
line-height: 29px;
color: #7d7d7d;
position: relative;
font-size: 12px
}
* html .content,
* html .content2 {
height: 1%
}
.bread-crumbs ul li:first-child {
padding-left: 0
}
.bread-crumbs ul li a {
font-size: 12px;
display: block;
color: #7d7d7d
}
.bread-crumbs ul li a:link,
.bread-crumbs ul li a:visited {
color: #7d7d7d;
text-decoration: underline
}
.bread-crumbs ul li a:hover {
color: #464646;
text-decoration: none
}
.breadcrumb>li+li:before {
color: #ccc;
content: "/";
position: absolute;
top: 0;
left: 8px
}
.loyout {
padding: 20px 0
}
.leftbar {
float: left;
width: 172px
}
.rightbar {
float: right;
width: 380px;
margin-left: 40px
}
.rightbar2 {
float: right;
width: 320px
}
.filters {
border-top: 1px solid #d2d2d2;
padding: 20px 0 0;
margin-top: 20px
}
.filters .begin {
text-transform: uppercase;
font-weight: 700;
font-size: 12px
}
.filters ul {
list-style: none;
margin: 6px 0 0;
padding: 0;
line-height: 22px
}
.filters ul li {
position: relative;
box-sizing: border-box;
padding-left: 24px;
line-height: 16px;
margin-top: 7px
}
.filters ul li:first-child {
margin-top: 0
}
.filters ul li>input {
position: absolute;
left: 4px;
margin: 0;
top: 3px
}
.filters ul li a {
color: #464646;
text-decoration: none;
font-size: 13px;
line-height: 16px
}
.filters ul li a:hover {
text-decoration: underline
}
.productLeftBar {
float: left;
width: 228px;
margin-left: 20px;
margin-right: 20px
}
.productRightBar {
float: right;
width: 260px;
margin: 0 20px
}
.productLeftBar h1 {
font-size: 24px;
border-bottom: 1px solid #d2d2d2;
margin-bottom: 10px
}
ul.product_mod {
list-style: none;
margin: 10px 0 0;
padding: 0;
float: left
}
ul.product_mod li {
float: left;
width: 46px;
height: 46px;
background: #fff;
border: 1px solid #d2d2d2;
margin: 5px 5px 0 0;
position: relative
}
ul.product_mod li.active:before {
width: 48px;
height: 48px;
position: absolute;
content: '';
background: 0 0;
border: 2px solid #95ba2f;
top: -1px;
left: -1px;
box-sizing: border-box
}
ul.product_mod li a {
width: 46px;
height: 46px;
display: table-cell
}
ul.product_mod li a:focus {
outline: 0
}
ul.product_mod li img {
max-width: 46px;
max-height: 46px
}
ul.product_colors {
list-style: none;
margin: 30px 0 0;
padding: 0;
float: left
}
ul.product_colors li {
float: left;
margin: 10px 10px 0 0;
width: 98px;
height: 98px;
border: 1px solid #d2d2d2
}
ul.product_colors li a {
width: 98px;
height: 98px;
display: table-cell
}
ul.product_colors li img {
max-width: 98px;
max-height: 98px;
vertical-align: middle
}
.productLeftBar .begin {
text-transform: uppercase;
font-weight: 700;
font-size: 12px
}
.cost_box {
border-top: 1px solid #d2d2d2;
border-bottom: 1px solid #d2d2d2;
margin: 10px 0;
padding: 10px 0
}
.cost_box .w {
float: left;
margin-right: 20px;
padding-top: 5px
}
.product_service ul {
list-style: none;
margin: 0;
padding: 0
}
.product_service ul li a {
color: #799920;
text-decoration: none;
border-bottom: 1px dotted #799920;
font-size: 12px
}
.product_service ul li.item1 {
background: url(../img/li1.png) left no-repeat;
padding: 3px 23px
}
.product_service ul li.item2 {
background: url(../img/li2.png) left no-repeat;
padding: 3px 23px
}
.product_service ul li.item3 {
background: url(../img/li3.png) left no-repeat;
padding: 3px 23px
}
#nav_product {
list-style: none;
margin: 0;
padding: 0;
line-height: 23px
}
#nav_product li a {
background: url(../img/li_plus.png) left no-repeat;
padding: 3px 15px;
color: #000;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
font-size: 12px
}
#nav_product li a.active {
background: url(../img/li_minus.png) left no-repeat
}
#nav_product li .info {
display: none;
border-bottom: 1px solid #d2d2d2;
padding: 10px 0;
margin-bottom: 10px
}
#nav_product li .info,
#nav_product li .info p {
font-size: 12px;
line-height: 16px
}
.modal_box {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 999;
background: #000;
filter: alpha(opacity=50);
-moz-opacity: .5;
-khtml-opacity: .5;
opacity: .5
}
#data_box {
position: absolute;
top: 100px;
z-index: 1000;
width: 400px;
background: #fff;
-webkit-box-shadow: 0 0 15px #000;
-moz-box-shadow: 0 0 15px #000;
box-shadow: 0 0 15px #000;
border: 7px solid #1b9bb6;
border-radius: 5px
}
#data_box .data_wrp hr,
#data_box .data_wrp hr.hr {
height: 1px;
border: none;
color: #000;
background: #000
}
#data_box .data_wrp {
padding: 25px 15px 15px
}
#data_box .data_wrp h1 {
text-transform: uppercase
}
#data_box .data_wrp hr {
margin: 45px 0 20px
}
#data_box .data_wrp hr.hr {
margin: 20px 0
}
#data_box .pic-tango {
margin-right: 7px;
margin-bottom: 7px
}
#modal_close {
cursor: pointer;
margin-top: -80px;
margin-right: -50px
}
.rightbar .control-label,
.textareagroup .control-label {
float: left;
width: 80px;
padding-top: 5px
}
.form-control {
outline: 0;
border: 1px solid #d8d6d6;
border-radius: 5px;
padding: 5px 0;
font-size: 14px;
text-indent: 10px;
margin-bottom: 3px;
width: 250px
}
.form-control:focus {
border: 1px solid #1b9bb6;
box-shadow: 0 0 10px #1b9bb6;
-webkit-box-shadow: 0 0 10px #1b9bb6;
-moz-box-shadow: 0 0 10px #1b9bb6
}
.help-block {
color: red;
font-size: 12px;
margin-bottom: 5px
}
.basket_item {
padding: 10px 0;
border-bottom: 1px solid #b7b7b7;
clear: both
}
.basket_item img {
margin-right: 20px
}
.basket_item .count {
margin: 20px 0
}
.basket_item .fr {
margin-top: 13px
}
.basket_item>a {
display: block;
float: left
}
a.del:link,
a.del:visited {
background: url(../img/del.png) left center no-repeat;
padding: 2px 25px;
font-size: 12px;
font-weight: 400;
color: #787878;
text-decoration: underline
}
.btn-primary,
.submit4m {
background: #95ba2f;
height: 29px;
line-height: 29px
}
a.del:hover {
color: #a52828;
text-decoration: underline
}
.total {
text-align: right;
color: #87476a;
font-size: 20px;
margin: 10px 0
}
._form_checkbox_reset,
.basket_item input,
.basket_title_,
.color_variants .variant,
.compare,
.content ul.pagination,
.jcarousel-skin-tango .jcarousel-item,
.lay_title .center,
.orders_view .order,
.pixbox,
.price,
.product p,
.special-products .item,
ul.brends_list li {
text-align: center
}
.btn-primary,
.submit4m,
a.logout:link,
a.logout:visited {
color: #fff;
cursor: pointer;
text-transform: uppercase
}
.submit4m {
font-family: Roboto;
border: none;
border-radius: 4px;
font-size: 10px;
width: 102px;
border-bottom: 3px solid #799920
}
.submit4m:active,
.submit4m:focus {
outline: 0
}
.btn-primary {
border-bottom: 3px solid #799920;
border-top: 0;
border-right: 0;
border-left: 0;
margin-top: 5px;
padding: 0 15px;
border-radius: 4px;
text-decoration: none;
font-size: 12px;
font-weight: 700
}
.btn-primary:active,
.btn-primary:focus {
outline: 0
}
a.logout:link,
a.logout:visited {
border: none;
padding: 3px 5px;
background: #f75d50;
border-radius: 5px;
text-decoration: none;
font-size: 11px;
font-weight: 400
}
.txtb1,
.txtf,
a.btn-success {
font-size: 14px
}
a.logout:hover {
background: #95ba2f
}
.boy_box {
border-bottom: 1px solid #b7b7b7;
padding: 0 0 15px
}
.boy_box div {
padding-top: 10px
}
.content_product .info {
padding: 0 0 20px
}
a.btn-success {
display: inline-block;
border: 2px solid #d8d6d6;
color: #95ba2f;
border-radius: 5px;
padding: 5px;
margin-bottom: 10px;
text-decoration: none
}
a.btn-success:hover {
border: 2px solid #95ba2f;
color: #f75d50
}
.txtf,
.txtfb {
color: #87476a;
font-weight: 700
}
.txtb1 {
font-weight: 700
}
.txtfb {
font-size: 20px
}
.count {
margin: 20px 0
}
.count input[type=number] {
outline: 0;
width: 50px;
border: 1px solid #d8d6d6;
border-radius: 5px;
padding: 5px 0;
font-size: 14px;
text-indent: 10px;
margin-bottom: 7px
}
a.link2:link,
a.link2:visited {
font-size: 14px;
font-weight: 700;
color: #95ba2f;
text-decoration: none
}
a.link2:hover {
color: #f75d50;
text-decoration: underline
}
.well {
margin: 50px auto;
width: 400px;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 20px;
border-radius: 5px
}
.control-label {
float: left;
width: 100px;
padding-top: 5px
}
#user-verifycode-image {
display: block
}
.form-inline {
display: inline
}
.form-inline .form-group {
float: left;
margin-right: 10px
}
.form-inline .form-group select {
width: 100px
}
.form-group {
margin-bottom: 10px
}
.table-bordered {
width: 100%;
border: 1px solid silver
}
.table-bordered th {
background: #B3D1FD;
padding: 5px
}
.table-bordered tr td {
border: 1px solid silver;
padding: 5px
}
.table-bordered .filters {
display: none
}
.formCost label {
float: left;
width: 30px
}
.pic,
.pic a {
width: 392px;
height: 365px
}
ul.brends_list {
list-style: none;
margin: 0;
padding: 0
}
|
f9e08bbf
Administrator
image size
|
1363
|
|
873e3d80
Administrator
14.09.16
|
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
|
ul.brends_list li {
float: left;
margin: 0 15px 20px
}
.compare a:link,
.compare a:visited {
font-size: 12px;
text-decoration: underline
}
.alert-success {
margin: 10px 0;
padding: 10px;
border: 1px solid #3ed824;
border-radius: 5px;
background: #c0feb5
}
#subscribe-sale,
.news_item img {
margin-right: 20px
|
f9e08bbf
Administrator
image size
|
1386
|
}
|
f9e08bbf
Administrator
image size
|
1387
|
|
873e3d80
Administrator
14.09.16
|
1388
1389
1390
1391
1392
1393
1394
1395
1396
|
.news_item,
.txts {
margin-bottom: 20px
}
.news_item {
padding-bottom: 20px;
border-bottom: 1px solid silver
}
|
f9e08bbf
Administrator
image size
|
1397
|
|
873e3d80
Administrator
14.09.16
|
1398
1399
1400
1401
1402
|
.block_content .item,
.borderbottom,
.content ul.pagination {
border-bottom: 1px solid #d2d2d2
}
|
f9e08bbf
Administrator
image size
|
1403
|
|
873e3d80
Administrator
14.09.16
|
1404
1405
1406
|
.news_item a {
font-size: 16px
}
|
f9e08bbf
Administrator
image size
|
1407
|
|
873e3d80
Administrator
14.09.16
|
1408
1409
1410
|
.pic a {
display: table-cell
}
|
f9e08bbf
Administrator
image size
|
1411
|
|
873e3d80
Administrator
14.09.16
|
1412
1413
1414
1415
|
.pic a img {
max-width: 392px;
max-height: 365px
}
|
f9e08bbf
Administrator
image size
|
1416
|
|
873e3d80
Administrator
14.09.16
|
1417
1418
1419
|
input#subscribe-email::-webkit-input-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1420
|
|
873e3d80
Administrator
14.09.16
|
1421
1422
1423
|
input#subscribe-email::-moz-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1424
|
|
873e3d80
Administrator
14.09.16
|
1425
1426
1427
|
input#subscribe-email:-ms-input-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1428
|
|
873e3d80
Administrator
14.09.16
|
1429
1430
1431
|
input#subscribe-sale::-webkit-input-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1432
|
|
873e3d80
Administrator
14.09.16
|
1433
1434
1435
|
input#subscribe-sale::-moz-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1436
|
|
873e3d80
Administrator
14.09.16
|
1437
1438
1439
|
input#subscribe-sale:-ms-input-placeholder {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1440
|
|
873e3d80
Administrator
14.09.16
|
1441
1442
1443
1444
|
#subscribe-email,
#subscribe-sale {
color: #596065
}
|
f9e08bbf
Administrator
image size
|
1445
|
|
873e3d80
Administrator
14.09.16
|
1446
1447
1448
1449
1450
|
#subscribe-sale {
width: 100px;
float: left;
height: 28px
}
|
f9e08bbf
Administrator
image size
|
1451
|
|
873e3d80
Administrator
14.09.16
|
1452
1453
1454
1455
1456
1457
|
.saletxt {
width: 150px;
float: left;
color: #fff;
font-size: 12px
}
|
f9e08bbf
Administrator
image size
|
1458
|
|
873e3d80
Administrator
14.09.16
|
1459
1460
|
#subscribe-email {
width: 370px
|
f9e08bbf
Administrator
image size
|
1461
|
}
|
f9e08bbf
Administrator
image size
|
1462
|
|
873e3d80
Administrator
14.09.16
|
1463
1464
1465
1466
|
.txts {
color: #9da9b1;
font-size: 18px
}
|
f9e08bbf
Administrator
image size
|
1467
|
|
873e3d80
Administrator
14.09.16
|
1468
1469
1470
1471
1472
|
.content ul.pagination {
list-style: none;
margin: 0 0 16px;
padding: 0 0 20px
}
|
f9e08bbf
Administrator
image size
|
1473
|
|
873e3d80
Administrator
14.09.16
|
1474
1475
1476
|
.content ul.pagination li {
display: inline
}
|
f9e08bbf
Administrator
image size
|
1477
|
|
873e3d80
Administrator
14.09.16
|
1478
1479
1480
1481
1482
1483
1484
|
.content ul.pagination li a {
padding: 3px;
color: #82a02f;
font-size: 15px;
margin: 0;
text-decoration: none
}
|
f9e08bbf
Administrator
image size
|
1485
|
|
873e3d80
Administrator
14.09.16
|
1486
1487
1488
1489
|
.footer .fl,
.fotter a {
font-size: 12px
}
|
f9e08bbf
Administrator
image size
|
1490
|
|
873e3d80
Administrator
14.09.16
|
1491
1492
1493
|
.content ul.pagination li a:hover {
text-decoration: underline
}
|
f9e08bbf
Administrator
image size
|
1494
|
|
873e3d80
Administrator
14.09.16
|
1495
1496
|
.content ul.pagination li.active a {
color: #333
|
f9e08bbf
Administrator
image size
|
1497
|
}
|
f9e08bbf
Administrator
image size
|
1498
|
|
873e3d80
Administrator
14.09.16
|
1499
1500
1501
|
.boxitem {
height: 318px
}
|
f9e08bbf
Administrator
image size
|
1502
|
|
873e3d80
Administrator
14.09.16
|
1503
1504
1505
|
ul.social {
margin-top: 20px
}
|
f9e08bbf
Administrator
image size
|
1506
|
|
873e3d80
Administrator
14.09.16
|
1507
1508
1509
1510
1511
|
.social {
list-style: none;
margin: 10px;
padding: 0;
height: 48px
|
f9e08bbf
Administrator
image size
|
1512
|
}
|
f9e08bbf
Administrator
image size
|
1513
|
|
873e3d80
Administrator
14.09.16
|
1514
1515
1516
1517
|
.social li {
display: inline-block;
margin-right: 7px;
padding-bottom: 10px
|
f9e08bbf
Administrator
image size
|
1518
|
}
|
873e3d80
Administrator
14.09.16
|
1519
1520
1521
1522
1523
|
.social li a {
width: 36px;
height: 36px;
display: block;
|
f9e08bbf
Administrator
image size
|
1524
|
margin: 0;
|
873e3d80
Administrator
14.09.16
|
1525
1526
1527
1528
1529
1530
1531
1532
1533
|
padding: 0;
text-indent: -9999px;
background: url(../img/social-ico-two.png) no-repeat #bcbcbc;
border-radius: 48px;
-moz-border-radius: 48px;
-webkit-border-radius: 48px;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out;
transition: all .5s ease-out
|
f9e08bbf
Administrator
image size
|
1534
|
}
|
873e3d80
Administrator
14.09.16
|
1535
1536
1537
1538
|
.content2 br,
.hide {
display: none
|
f9e08bbf
Administrator
image size
|
1539
|
}
|
f9e08bbf
Administrator
image size
|
1540
|
|
873e3d80
Administrator
14.09.16
|
1541
1542
1543
|
.social .fb {
background-position: -44px 0;
cursor: pointer
|
f9e08bbf
Administrator
image size
|
1544
|
}
|
f9e08bbf
Administrator
image size
|
1545
|
|
873e3d80
Administrator
14.09.16
|
1546
1547
1548
|
.social .vk {
cursor: pointer
}
|
f9e08bbf
Administrator
image size
|
1549
|
|
873e3d80
Administrator
14.09.16
|
1550
1551
|
.social .vk:hover {
background-color: #5B7FA6
|
f9e08bbf
Administrator
image size
|
1552
|
}
|
873e3d80
Administrator
14.09.16
|
1553
1554
1555
1556
1557
1558
1559
1560
|
.social .fb:hover {
background-color: #354f89
}
.social .gp {
background-position: -132px 0;
cursor: pointer
|
f9e08bbf
Administrator
image size
|
1561
1562
|
}
|
873e3d80
Administrator
14.09.16
|
1563
1564
1565
|
.social .gp:hover {
background-color: #c72f21
}
|
f9e08bbf
Administrator
image size
|
1566
|
|
873e3d80
Administrator
14.09.16
|
1567
1568
1569
1570
|
.social .tw {
background-position: -144px 0;
cursor: pointer
}
|
f9e08bbf
Administrator
image size
|
1571
|
|
873e3d80
Administrator
14.09.16
|
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
|
.social .tw:hover {
background-color: #6398c9
}
.social .ok {
background-position: -89px 0;
cursor: pointer
}
.social .ok:hover {
background-color: #f88f15
}
.social ul li a:hover {
background-color: #065baa
}
.socialbox {
margin: 10px 0
}
.fotter {
background: #484f55;
height: 50px;
color: #98a3ab
}
.fotter a {
color: #98a3ab;
line-height: 50px;
float: left
}
.view_products2 {
list-style: none;
overflow: auto;
height: 400px
}
.view_products2 img {
float: left;
margin-right: 20px
}
.view_products2 li {
margin: 10px 0
}
.pixbox {
width: 160px;
margin: 0 auto;
height: 200px;
overflow: hidden
}
.form-order {
background: #f5f5f5;
padding: 0 20px 20px
}
#order-delivery,
#order-payment {
float: right;
width: 280px
}
.delivery-data {
margin-bottom: 27px;
|
f9e08bbf
Administrator
image size
|
1640
|
position: relative;
|
873e3d80
Administrator
14.09.16
|
1641
1642
1643
1644
|
background: #95ba2f;
display: none;
border-radius: 5px;
float: left;
|
f9e08bbf
Administrator
image size
|
1645
|
box-sizing: border-box;
|
873e3d80
Administrator
14.09.16
|
1646
1647
1648
|
padding: 14px 20px;
color: #fff;
font-size: 13px
|
f9e08bbf
Administrator
image size
|
1649
|
}
|
873e3d80
Administrator
14.09.16
|
1650
1651
1652
1653
1654
|
.edit_menu a,
.mycabinet a {
color: #799920;
text-decoration: none
|
f9e08bbf
Administrator
image size
|
1655
|
}
|
f9e08bbf
Administrator
image size
|
1656
|
|
873e3d80
Administrator
14.09.16
|
1657
1658
1659
1660
1661
|
.jcarousel-next-disabled,
.jcarousel-prev-disabled {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}
|
f9e08bbf
Administrator
image size
|
1662
|
|
873e3d80
Administrator
14.09.16
|
1663
1664
1665
1666
|
.pixbox a {
width: 160px;
height: 200px;
display: table-cell
|
f9e08bbf
Administrator
image size
|
1667
|
}
|
873e3d80
Administrator
14.09.16
|
1668
1669
1670
1671
|
.pixbox img {
max-width: 160px;
max-height: 200px
|
f9e08bbf
Administrator
image size
|
1672
|
}
|
873e3d80
Administrator
14.09.16
|
1673
1674
1675
1676
|
.pagination li.next.disabled span,
.pagination li.prev.disabled span {
display: none
|
f9e08bbf
Administrator
image size
|
1677
|
}
|
873e3d80
Administrator
14.09.16
|
1678
1679
1680
|
.fr {
float: right
|
f9e08bbf
Administrator
image size
|
1681
|
}
|
873e3d80
Administrator
14.09.16
|
1682
1683
1684
|
.nobottom {
border-bottom: none!important
|
f9e08bbf
Administrator
image size
|
1685
1686
|
}
|
873e3d80
Administrator
14.09.16
|
1687
1688
|
.dotted a {
border-bottom: 1px dotted grey
|
f9e08bbf
Administrator
image size
|
1689
|
}
|
873e3d80
Administrator
14.09.16
|
1690
1691
1692
1693
|
.mycabinet {
padding-left: 20px;
margin-top: 20px
|
f9e08bbf
Administrator
image size
|
1694
|
}
|
873e3d80
Administrator
14.09.16
|
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
|
.mycabinet .begin {
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
padding-bottom: 15px
}
.mycabinet ul {
margin: 0;
padding: 0;
list-style: none
|
f9e08bbf
Administrator
image size
|
1707
|
}
|
f9e08bbf
Administrator
image size
|
1708
|
|
873e3d80
Administrator
14.09.16
|
1709
1710
1711
1712
|
.mycabinet ul li {
padding-top: 10px;
padding-bottom: 10px
}
|
f9e08bbf
Administrator
image size
|
1713
|
|
873e3d80
Administrator
14.09.16
|
1714
1715
1716
|
.lay_title .uppercase {
text-transform: uppercase
}
|
f9e08bbf
Administrator
image size
|
1717
|
|
873e3d80
Administrator
14.09.16
|
1718
1719
1720
1721
|
.lay_title {
padding-top: 15px;
font-size: 24px
}
|
f9e08bbf
Administrator
image size
|
1722
|
|
873e3d80
Administrator
14.09.16
|
1723
1724
1725
1726
1727
1728
1729
1730
|
.edit_menu,
.user_data .data,
.user_data .title,
.user_data_editing .data,
.user_data_editing .title {
float: left;
font-size: 13px
}
|
f9e08bbf
Administrator
image size
|
1731
|
|
873e3d80
Administrator
14.09.16
|
1732
1733
1734
1735
1736
|
.user_data {
width: 390px;
border-right: 1px solid #d2d2d2;
float: left
}
|
f9e08bbf
Administrator
image size
|
1737
|
|
873e3d80
Administrator
14.09.16
|
1738
1739
|
.user_data .col {
padding-bottom: 35px
|
f9e08bbf
Administrator
image size
|
1740
|
}
|
873e3d80
Administrator
14.09.16
|
1741
1742
1743
|
.user_data .col.last {
padding-bottom: 0
|
f9e08bbf
Administrator
image size
|
1744
|
}
|
f9e08bbf
Administrator
image size
|
1745
|
|
873e3d80
Administrator
14.09.16
|
1746
1747
1748
1749
1750
|
.user_data .title {
text-transform: uppercase;
font-weight: 700;
width: 170px
}
|
f9e08bbf
Administrator
image size
|
1751
|
|
873e3d80
Administrator
14.09.16
|
1752
1753
|
.edit_menu {
padding-left: 60px
|
f9e08bbf
Administrator
image size
|
1754
|
}
|
f9e08bbf
Administrator
image size
|
1755
|
|
873e3d80
Administrator
14.09.16
|
1756
1757
1758
|
.edit_menu div {
padding-bottom: 20px
}
|
f9e08bbf
Administrator
image size
|
1759
|
|
873e3d80
Administrator
14.09.16
|
1760
1761
1762
|
.edit_menu .dotted {
border-bottom: 1px dotted #799920
}
|
f9e08bbf
Administrator
image size
|
1763
|
|
873e3d80
Administrator
14.09.16
|
1764
1765
1766
|
.user_edit_area {
padding-top: 30px
}
|
f9e08bbf
Administrator
image size
|
1767
|
|
873e3d80
Administrator
14.09.16
|
1768
1769
1770
|
.user_data_editing {
float: left
}
|
f9e08bbf
Administrator
image size
|
1771
|
|
873e3d80
Administrator
14.09.16
|
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
|
.inputs .col {
padding-bottom: 12px!important
}
.user_data_editing .col {
padding-bottom: 35px;
width: 432px
}
.user_data_editing .title {
|
f9e08bbf
Administrator
image size
|
1782
|
text-transform: uppercase;
|
873e3d80
Administrator
14.09.16
|
1783
1784
1785
1786
1787
1788
|
font-weight: 700;
width: 170px
}
.user_data_editing .data {
width: 262px
|
f9e08bbf
Administrator
image size
|
1789
|
}
|
f9e08bbf
Administrator
image size
|
1790
|
|
873e3d80
Administrator
14.09.16
|
1791
1792
1793
1794
1795
1796
1797
1798
|
.user_data_editing input[type=text] {
padding: 7px 10px;
margin: -10px 0 0;
border: 1px solid #d2d2d2;
border-radius: 4px;
font-size: 12px;
width: 240px
}
|
f9e08bbf
Administrator
image size
|
1799
|
|
873e3d80
Administrator
14.09.16
|
1800
1801
1802
1803
1804
1805
|
#cancel,
.user_data_editing .add {
border-bottom: 1px dotted #799920;
color: #799920;
text-decoration: none
}
|
f9e08bbf
Administrator
image size
|
1806
|
|
873e3d80
Administrator
14.09.16
|
1807
1808
1809
1810
|
.add_more {
padding-bottom: 24px;
padding-left: 170px
}
|
f9e08bbf
Administrator
image size
|
1811
|
|
873e3d80
Administrator
14.09.16
|
1812
1813
1814
|
.delete {
float: right
}
|
f9e08bbf
Administrator
image size
|
1815
|
|
873e3d80
Administrator
14.09.16
|
1816
1817
1818
1819
1820
1821
|
.delete_button {
background: url(../img/ico_close.png) right no-repeat;
width: 16px;
height: 16px;
float: right
}
|
f9e08bbf
Administrator
image size
|
1822
|
|
873e3d80
Administrator
14.09.16
|
1823
1824
1825
|
.content_area {
width: 450px
}
|
f9e08bbf
Administrator
image size
|
1826
|
|
873e3d80
Administrator
14.09.16
|
1827
1828
1829
1830
1831
|
#cancel {
font-size: 13px;
float: left;
margin-left: 40px
}
|
f9e08bbf
Administrator
image size
|
1832
|
|
873e3d80
Administrator
14.09.16
|
1833
1834
1835
1836
|
.buttons {
display: inline-flex;
align-items: center
}
|
f9e08bbf
Administrator
image size
|
1837
|
|
873e3d80
Administrator
14.09.16
|
1838
1839
1840
1841
1842
|
.favorites {
background-color: #f5f5f5;
padding: 5px;
font-size: 14px
}
|
f9e08bbf
Administrator
image size
|
1843
|
|
873e3d80
Administrator
14.09.16
|
1844
1845
1846
1847
1848
1849
1850
|
.favorites .fav_point {
background-color: #fff;
border: 1px solid #d2d2d2;
border-radius: 3px;
margin-top: 5px;
padding: 10px 20px
}
|
f9e08bbf
Administrator
image size
|
1851
|
|
873e3d80
Administrator
14.09.16
|
1852
1853
1854
1855
1856
|
.favorites .fav_point .left {
float: left;
padding-right: 0;
width: 178px
}
|
f9e08bbf
Administrator
image size
|
1857
|
|
873e3d80
Administrator
14.09.16
|
1858
1859
1860
1861
1862
|
.favorites .fav_point .right {
float: right;
padding-right: 0;
padding-left: 0
}
|
f9e08bbf
Administrator
image size
|
1863
|
|
873e3d80
Administrator
14.09.16
|
1864
1865
1866
1867
1868
|
.favorites .link {
color: #799920;
text-decoration: none;
border-bottom: 1px dotted #799920
}
|
f9e08bbf
Administrator
image size
|
1869
|
|
873e3d80
Administrator
14.09.16
|
1870
1871
1872
|
.redtext {
color: #f75d50
}
|
f9e08bbf
Administrator
image size
|
1873
|
|
873e3d80
Administrator
14.09.16
|
1874
1875
1876
|
.greentext {
color: #95ba2f
}
|
f9e08bbf
Administrator
image size
|
1877
|
|
873e3d80
Administrator
14.09.16
|
1878
1879
1880
|
.hold .orders_view {
display: none!important
}
|
f9e08bbf
Administrator
image size
|
1881
|
|
873e3d80
Administrator
14.09.16
|
1882
1883
1884
1885
1886
1887
1888
|
.orders_view {
width: 680px;
margin-top: 13px;
padding-top: 13px;
padding-bottom: 5px;
border-top: 1px solid #d2d2d2;
display: block
|
f9e08bbf
Administrator
image size
|
1889
|
}
|
873e3d80
Administrator
14.09.16
|
1890
1891
1892
1893
|
.orders_view .order {
float: left;
width: 225px
|
f9e08bbf
Administrator
image size
|
1894
|
}
|
873e3d80
Administrator
14.09.16
|
1895
1896
1897
1898
1899
|
.orders_view .order .order_price {
color: #f75d50;
font-weight: 700;
font-size: 15px
|
f9e08bbf
Administrator
image size
|
1900
|
}
|
873e3d80
Administrator
14.09.16
|
1901
1902
1903
|
.orders_view .order .order_price span {
font-size: 24px
|
f9e08bbf
Administrator
image size
|
1904
1905
|
}
|
873e3d80
Administrator
14.09.16
|
1906
1907
|
.orders_view .order img {
padding-bottom: 22px
|
f9e08bbf
Administrator
image size
|
1908
1909
|
}
|
873e3d80
Administrator
14.09.16
|
1910
1911
1912
|
.orders_view .order .note {
font-size: 13px
}
|
f9e08bbf
Administrator
image size
|
1913
|
|
873e3d80
Administrator
14.09.16
|
1914
1915
|
.orders_view .order .note span {
color: #f75d50
|
f9e08bbf
Administrator
image size
|
1916
|
}
|
873e3d80
Administrator
14.09.16
|
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
|
.basket_hovered {
position: absolute;
border: 1px solid #d2d2d2;
border-radius: 5px;
padding: 15px 20px;
background-color: #fff;
right: -1px;
margin-top: 10px;
width: 640px;
display: none;
z-index: 1111
|
f9e08bbf
Administrator
image size
|
1929
1930
|
}
|
873e3d80
Administrator
14.09.16
|
1931
1932
|
.open .basket_hovered {
display: block
|
f9e08bbf
Administrator
image size
|
1933
1934
|
}
|
873e3d80
Administrator
14.09.16
|
1935
1936
1937
1938
1939
1940
|
.open,
.open .basket_hovered {
-moz-box-shadow: 0 0 5px rgba(149, 149, 149, .75);
-webkit-box-shadow: 0 0 5px rgba(149, 149, 149, .75);
box-shadow: 0 0 5px rgba(149, 149, 149, .75)
}
|
f9e08bbf
Administrator
image size
|
1941
|
|
873e3d80
Administrator
14.09.16
|
1942
1943
1944
1945
1946
1947
1948
1949
1950
|
.basket_hovered1:before {
position: absolute;
left: 0;
content: ' ';
width: 100%;
background-color: #fff;
height: 10px;
top: 45px;
z-index: 1112
|
f9e08bbf
Administrator
image size
|
1951
|
}
|
873e3d80
Administrator
14.09.16
|
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
|
.basket_item input {
border: 1px solid #d2d2d2;
border-radius: 4px;
padding: 9px;
width: 26px;
font-size: 18px;
font-weight: 700;
background-color: #fff;
color: #000;
margin: 7px
|
f9e08bbf
Administrator
image size
|
1963
|
}
|
873e3d80
Administrator
14.09.16
|
1964
1965
1966
1967
1968
1969
1970
|
.minus,
.plus {
width: 15px;
height: 15px;
display: inline-block;
cursor: pointer
|
f9e08bbf
Administrator
image size
|
1971
|
}
|
873e3d80
Administrator
14.09.16
|
1972
1973
1974
1975
1976
|
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0
|
f9e08bbf
Administrator
image size
|
1977
|
}
|
873e3d80
Administrator
14.09.16
|
1978
1979
1980
|
.minus {
background: url(../img/minus.png) no-repeat
|
f9e08bbf
Administrator
image size
|
1981
1982
|
}
|
873e3d80
Administrator
14.09.16
|
1983
1984
1985
|
.plus {
background: url(../img/plus.png) no-repeat
}
|
f9e08bbf
Administrator
image size
|
1986
|
|
873e3d80
Administrator
14.09.16
|
1987
1988
1989
1990
1991
|
.black,
.black:before {
width: 100%;
height: 100%
}
|
f9e08bbf
Administrator
image size
|
1992
|
|
873e3d80
Administrator
14.09.16
|
1993
1994
1995
|
.basket_sum {
padding-top: 15px
}
|
f9e08bbf
Administrator
image size
|
1996
|
|
873e3d80
Administrator
14.09.16
|
1997
1998
1999
2000
2001
2002
2003
|
.basket_sum .sum_text {
font-size: 15px;
text-transform: none;
float: right!important;
padding-top: 1px;
margin-bottom: 11px
}
|
f9e08bbf
Administrator
image size
|
2004
|
|
873e3d80
Administrator
14.09.16
|
2005
2006
2007
2008
2009
2010
2011
2012
|
.item_added_win h2,
.left_block .begin,
.note_prod,
.title_spoiler,
.uppercase,
ul.product-special li div {
text-transform: uppercase
}
|
f9e08bbf
Administrator
image size
|
2013
|
|
873e3d80
Administrator
14.09.16
|
2014
2015
2016
2017
2018
|
.basket_sum .sum_text span {
font-size: 18px;
color: #f75d50;
font-weight: 700
}
|
f9e08bbf
Administrator
image size
|
2019
|
|
873e3d80
Administrator
14.09.16
|
2020
2021
2022
2023
2024
|
.basket_sum a {
color: #fff!important;
font-size: 15px!important;
float: right
}
|
f9e08bbf
Administrator
image size
|
2025
|
|
873e3d80
Administrator
14.09.16
|
2026
2027
2028
2029
2030
2031
|
.black {
z-index: 9999;
position: absolute;
display: block;
padding-top: 6%
}
|
f9e08bbf
Administrator
image size
|
2032
|
|
873e3d80
Administrator
14.09.16
|
2033
2034
2035
2036
2037
2038
|
.black:before {
content: '';
background-color: rgba(0, 0, 0, .5);
position: fixed;
top: 0
}
|
f9e08bbf
Administrator
image size
|
2039
|
|
873e3d80
Administrator
14.09.16
|
2040
2041
2042
|
.black.hidden {
display: none
}
|
f9e08bbf
Administrator
image size
|
2043
|
|
873e3d80
Administrator
14.09.16
|
2044
2045
2046
2047
|
.black_close,
.left_block .links li {
display: inline-block;
cursor: pointer
|
f9e08bbf
Administrator
image size
|
2048
|
}
|
873e3d80
Administrator
14.09.16
|
2049
2050
2051
2052
2053
2054
|
.black .item_added_win {
background-color: #fff;
width: 640px;
margin: auto;
position: relative
|
f9e08bbf
Administrator
image size
|
2055
|
}
|
873e3d80
Administrator
14.09.16
|
2056
2057
2058
2059
2060
2061
2062
2063
|
.black_close {
position: absolute;
top: 30px;
right: 30px;
background: url(../img/ico_close2.png) no-repeat;
width: 22px;
height: 22px
|
f9e08bbf
Administrator
image size
|
2064
|
}
|
873e3d80
Administrator
14.09.16
|
2065
2066
2067
2068
|
.block_content {
padding-left: 20px;
padding-right: 20px
|
f9e08bbf
Administrator
image size
|
2069
|
}
|
f9e08bbf
Administrator
image size
|
2070
|
|
873e3d80
Administrator
14.09.16
|
2071
2072
2073
2074
|
.item_added_win h2 {
text-align: center;
padding: 30px
}
|
f9e08bbf
Administrator
image size
|
2075
|
|
873e3d80
Administrator
14.09.16
|
2076
2077
2078
2079
|
.block_content .item {
padding-top: 20px;
padding-bottom: 20px
}
|
f9e08bbf
Administrator
image size
|
2080
|
|
873e3d80
Administrator
14.09.16
|
2081
2082
2083
|
.w230 {
width: 230px
}
|
f9e08bbf
Administrator
image size
|
2084
|
|
873e3d80
Administrator
14.09.16
|
2085
2086
2087
|
.w260 {
width: 260px
}
|
f9e08bbf
Administrator
image size
|
2088
|
|
873e3d80
Administrator
14.09.16
|
2089
2090
2091
|
.w430 {
width: 430px
}
|
f9e08bbf
Administrator
image size
|
2092
|
|
873e3d80
Administrator
14.09.16
|
2093
2094
2095
2096
2097
|
.left_block .begin {
font-size: 13px;
font-weight: 700;
padding-bottom: 15px
}
|
f9e08bbf
Administrator
image size
|
2098
|
|
873e3d80
Administrator
14.09.16
|
2099
2100
2101
2102
2103
2104
|
.color_variants .variant {
border: 1px solid #d2d2d2;
float: left;
margin-right: 5px;
margin-bottom: 5px
}
|
f9e08bbf
Administrator
image size
|
2105
|
|
873e3d80
Administrator
14.09.16
|
2106
2107
2108
|
.variant:hover {
cursor: pointer
}
|
f9e08bbf
Administrator
image size
|
2109
|
|
873e3d80
Administrator
14.09.16
|
2110
2111
2112
2113
|
.color_variants {
margin-top: 14px;
margin-bottom: -5px
}
|
f9e08bbf
Administrator
image size
|
2114
|
|
873e3d80
Administrator
14.09.16
|
2115
2116
2117
2118
|
.color_variants .variant.active {
width: 44px;
height: 44px;
border: 2px solid #95ba2f
|
f9e08bbf
Administrator
image size
|
2119
2120
|
}
|
873e3d80
Administrator
14.09.16
|
2121
2122
2123
2124
|
.color_variants .variant.active a {
width: 44px;
height: 44px
}
|
f9e08bbf
Administrator
image size
|
2125
|
|
873e3d80
Administrator
14.09.16
|
2126
2127
2128
2129
|
.tobasket {
margin-top: 20px;
margin-bottom: 20px
}
|
f9e08bbf
Administrator
image size
|
2130
|
|
873e3d80
Administrator
14.09.16
|
2131
2132
2133
|
.tobasket:hover {
color: #fff
}
|
f9e08bbf
Administrator
image size
|
2134
|
|
873e3d80
Administrator
14.09.16
|
2135
2136
2137
2138
|
.variant {
width: 46px;
height: 46px
}
|
f9e08bbf
Administrator
image size
|
2139
|
|
873e3d80
Administrator
14.09.16
|
2140
2141
2142
2143
|
.variant.active {
width: 44px;
height: 44px
}
|
f9e08bbf
Administrator
image size
|
2144
|
|
873e3d80
Administrator
14.09.16
|
2145
2146
2147
|
.layout {
margin-top: 15px
}
|
f9e08bbf
Administrator
image size
|
2148
|
|
873e3d80
Administrator
14.09.16
|
2149
2150
2151
|
.left_block {
float: left
}
|
f9e08bbf
Administrator
image size
|
2152
|
|
873e3d80
Administrator
14.09.16
|
2153
2154
2155
|
.right_block {
float: right
}
|
f9e08bbf
Administrator
image size
|
2156
|
|
873e3d80
Administrator
14.09.16
|
2157
2158
2159
2160
|
.center_block {
float: left;
margin-left: 23px
}
|
f9e08bbf
Administrator
image size
|
2161
|
|
873e3d80
Administrator
14.09.16
|
2162
2163
2164
|
.left_block .links {
margin-top: 25px
}
|
f9e08bbf
Administrator
image size
|
2165
|
|
873e3d80
Administrator
14.09.16
|
2166
2167
2168
2169
|
.left_block .links li {
list-style: none;
padding-left: 25px;
height: 20px
|
f9e08bbf
Administrator
image size
|
2170
2171
|
}
|
873e3d80
Administrator
14.09.16
|
2172
2173
2174
2175
|
.left_block .links ul {
margin: 0;
padding: 0
}
|
f9e08bbf
Administrator
image size
|
2176
|
|
873e3d80
Administrator
14.09.16
|
2177
2178
2179
2180
|
.left_block .links a {
font-size: 13.5px;
text-decoration: none;
color: #8ba73e
|
f9e08bbf
Administrator
image size
|
2181
2182
|
}
|
873e3d80
Administrator
14.09.16
|
2183
2184
|
.links .add_bookmarks {
background: url(../img/ico_add_bookmark.png) center left no-repeat
|
f9e08bbf
Administrator
image size
|
2185
|
}
|
873e3d80
Administrator
14.09.16
|
2186
2187
2188
|
.links .what_price {
background: url(../img/ico_price.png) center left no-repeat
|
f9e08bbf
Administrator
image size
|
2189
2190
|
}
|
873e3d80
Administrator
14.09.16
|
2191
2192
|
.links .add_compare {
background: url(../img/ico_scales.png) center left no-repeat
|
f9e08bbf
Administrator
image size
|
2193
|
}
|
f9e08bbf
Administrator
image size
|
2194
|
|
873e3d80
Administrator
14.09.16
|
2195
2196
2197
2198
2199
|
.spoiler_one {
padding-top: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #d2d2d2
}
|
f9e08bbf
Administrator
image size
|
2200
|
|
873e3d80
Administrator
14.09.16
|
2201
2202
2203
2204
|
.spoiler_one .spoiler_content {
margin-top: 15px;
font-size: 13px
}
|
f9e08bbf
Administrator
image size
|
2205
|
|
873e3d80
Administrator
14.09.16
|
2206
2207
2208
|
.spoiler_one .spoiler_content.hidden {
display: none
}
|
f9e08bbf
Administrator
image size
|
2209
|
|
873e3d80
Administrator
14.09.16
|
2210
2211
2212
|
.title_spoiler:hover {
cursor: pointer
}
|
f9e08bbf
Administrator
image size
|
2213
|
|
873e3d80
Administrator
14.09.16
|
2214
2215
2216
2217
2218
2219
2220
2221
|
.title_spoiler {
background: url(../img/ico_open.png) center left no-repeat;
padding-left: 17px;
font-size: 13px;
color: #333;
font-weight: 700;
text-decoration: none
}
|
f9e08bbf
Administrator
image size
|
2222
|
|
873e3d80
Administrator
14.09.16
|
2223
2224
|
.title_spoiler.closed {
background: url(../img/ico_close3.png) center left no-repeat
|
f9e08bbf
Administrator
image size
|
2225
|
}
|
f9e08bbf
Administrator
image size
|
2226
|
|
873e3d80
Administrator
14.09.16
|
2227
2228
2229
2230
2231
2232
|
.features {
list-style: none;
padding: 0;
margin: 0;
font-size: 13px
}
|
f9e08bbf
Administrator
image size
|
2233
|
|
873e3d80
Administrator
14.09.16
|
2234
2235
2236
2237
2238
2239
|
.features a {
font-size: 13px;
text-decoration: none;
border-bottom: 1px dotted #8ba73e;
color: #8ba73e
}
|
f9e08bbf
Administrator
image size
|
2240
|
|
873e3d80
Administrator
14.09.16
|
2241
2242
2243
2244
|
.features li {
padding-top: 5px;
padding-bottom: 4px
}
|
f9e08bbf
Administrator
image size
|
2245
|
|
873e3d80
Administrator
14.09.16
|
2246
2247
2248
2249
2250
2251
|
.note_prod .blue,
.note_prod .red,
.note_prod .yellow {
padding: 5px 5px 5px 10px;
float: left
}
|
f9e08bbf
Administrator
image size
|
2252
|
|
873e3d80
Administrator
14.09.16
|
2253
2254
2255
2256
2257
2258
2259
2260
2261
|
.note_prod {
width: 225px;
height: 23px;
overflow: hidden;
border-radius: 5px;
display: table;
font-size: 11px;
font-weight: 700
}
|
f9e08bbf
Administrator
image size
|
2262
|
|
873e3d80
Administrator
14.09.16
|
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
|
.note_prod .blue:after,
.note_prod .red:after,
.note_prod .yellow:after {
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
top: -1px;
margin-left: 5px;
content: ''
|
f9e08bbf
Administrator
image size
|
2273
|
}
|
f9e08bbf
Administrator
image size
|
2274
|
|
873e3d80
Administrator
14.09.16
|
2275
2276
2277
|
.note_prod .one {
z-index: 999
}
|
f9e08bbf
Administrator
image size
|
2278
|
|
873e3d80
Administrator
14.09.16
|
2279
2280
2281
|
.note_prod .two {
z-index: 998
}
|
f9e08bbf
Administrator
image size
|
2282
|
|
873e3d80
Administrator
14.09.16
|
2283
2284
2285
2286
|
.note_prod .blue {
background-color: #42b9f6;
position: relative
}
|
f9e08bbf
Administrator
image size
|
2287
|
|
873e3d80
Administrator
14.09.16
|
2288
2289
2290
2291
|
.note_prod .blue:after {
border-left: 5px solid #42b9f6;
position: absolute
}
|
f9e08bbf
Administrator
image size
|
2292
|
|
873e3d80
Administrator
14.09.16
|
2293
2294
2295
2296
2297
|
.note_prod .red {
background-color: #f75d50;
position: relative;
color: #fff
}
|
f9e08bbf
Administrator
image size
|
2298
|
|
873e3d80
Administrator
14.09.16
|
2299
2300
2301
2302
|
.note_prod .red:after {
border-left: 5px solid #f75d50;
position: absolute
}
|
f9e08bbf
Administrator
image size
|
2303
|
|
873e3d80
Administrator
14.09.16
|
2304
2305
2306
2307
|
.note_prod .yellow {
background-color: #fbc665;
position: relative
}
|
f9e08bbf
Administrator
image size
|
2308
|
|
873e3d80
Administrator
14.09.16
|
2309
2310
2311
2312
|
.note_prod .yellow:after {
border-left: 5px solid #fbc665;
position: absolute
}
|
f9e08bbf
Administrator
image size
|
2313
|
|
873e3d80
Administrator
14.09.16
|
2314
2315
2316
2317
2318
|
.products_block .product {
float: left;
width: 190px;
vertical-align: bottom
}
|
f9e08bbf
Administrator
image size
|
2319
|
|
873e3d80
Administrator
14.09.16
|
2320
2321
2322
|
.product .image {
height: 225px;
position: relative
|
f9e08bbf
Administrator
image size
|
2323
|
}
|
873e3d80
Administrator
14.09.16
|
2324
2325
2326
2327
2328
|
.product .image img {
position: absolute;
bottom: 0;
left: 15px
|
f9e08bbf
Administrator
image size
|
2329
2330
|
}
|
873e3d80
Administrator
14.09.16
|
2331
2332
2333
2334
|
.price {
font-size: 18px;
color: #f75d50;
font-weight: 700
|
f9e08bbf
Administrator
image size
|
2335
|
}
|
873e3d80
Administrator
14.09.16
|
2336
2337
2338
2339
|
.product {
padding-bottom: 30px;
position: relative
|
f9e08bbf
Administrator
image size
|
2340
|
}
|
873e3d80
Administrator
14.09.16
|
2341
2342
2343
2344
|
.product p {
font-size: 15px;
margin-top: 15px
|
f9e08bbf
Administrator
image size
|
2345
2346
|
}
|
873e3d80
Administrator
14.09.16
|
2347
2348
|
.left52 {
margin-left: 52px
|
f9e08bbf
Administrator
image size
|
2349
2350
|
}
|
873e3d80
Administrator
14.09.16
|
2351
2352
|
.product a {
color: #fff
|
f9e08bbf
Administrator
image size
|
2353
|
}
|
873e3d80
Administrator
14.09.16
|
2354
2355
2356
2357
|
.mrg1 {
margin-top: 25px;
margin-bottom: 15px
|
f9e08bbf
Administrator
image size
|
2358
2359
|
}
|
873e3d80
Administrator
14.09.16
|
2360
2361
2362
|
.products_martopbot {
margin-top: 60px;
margin-bottom: 100px
|
f9e08bbf
Administrator
image size
|
2363
2364
|
}
|
873e3d80
Administrator
14.09.16
|
2365
2366
2367
2368
|
.cont_shop_but {
display: table-cell;
vertical-align: middle;
padding: 35px
|
f9e08bbf
Administrator
image size
|
2369
2370
|
}
|
873e3d80
Administrator
14.09.16
|
2371
2372
2373
2374
2375
2376
|
.cont_shop {
text-decoration: none;
font-size: 12px;
border-bottom: 1px dotted #799920;
color: #799920
}
|
f9e08bbf
Administrator
image size
|
2377
|
|
873e3d80
Administrator
14.09.16
|
2378
2379
2380
2381
2382
2383
2384
2385
2386
|
.icons {
width: 45px;
height: 50%;
position: absolute;
z-index: 9;
right: 0;
padding-top: 25px;
padding-right: 15px
}
|
f9e08bbf
Administrator
image size
|
2387
|
|
873e3d80
Administrator
14.09.16
|
2388
2389
2390
|
.icons a {
width: 44px;
height: 44px;
|
f9e08bbf
Administrator
image size
|
2391
2392
2393
|
float: left;
border: 1px solid #d2d2d2;
margin-bottom: 5px;
|
873e3d80
Administrator
14.09.16
|
2394
2395
2396
2397
2398
|
background-color: #fff
}
a:hover {
cursor: pointer
|
f9e08bbf
Administrator
image size
|
2399
|
}
|
f9e08bbf
Administrator
image size
|
2400
|
|
873e3d80
Administrator
14.09.16
|
2401
2402
2403
|
.basket_item .form-group {
display: inline
}
|
f9e08bbf
Administrator
image size
|
2404
|
|
873e3d80
Administrator
14.09.16
|
2405
2406
2407
2408
2409
2410
|
.HOME_RIGHT,
.sort_block,
.sort_block ul,
.sort_block ul li {
display: inline-block
}
|
f9e08bbf
Administrator
image size
|
2411
|
|
873e3d80
Administrator
14.09.16
|
2412
|
.basket.open:after {
|
f9e08bbf
Administrator
image size
|
2413
2414
2415
2416
2417
|
content: '';
position: absolute;
top: 43px;
width: 100%;
height: 10px;
|
873e3d80
Administrator
14.09.16
|
2418
|
background-color: #fff;
|
f9e08bbf
Administrator
image size
|
2419
|
left: 0;
|
873e3d80
Administrator
14.09.16
|
2420
|
z-index: 9990
|
f9e08bbf
Administrator
image size
|
2421
2422
|
}
|
873e3d80
Administrator
14.09.16
|
2423
2424
2425
|
.basket_hovered .basket_sum {
float: left
}
|
f9e08bbf
Administrator
image size
|
2426
|
|
873e3d80
Administrator
14.09.16
|
2427
2428
2429
2430
|
a.active {
font-weight: 700;
text-decoration: underline
}
|
f9e08bbf
Administrator
image size
|
2431
2432
|
.HOME_RIGHT {
|
f9e08bbf
Administrator
image size
|
2433
2434
|
vertical-align: top;
margin-left: 10px;
|
873e3d80
Administrator
14.09.16
|
2435
|
position: absolute
|
f9e08bbf
Administrator
image size
|
2436
2437
|
}
|
873e3d80
Administrator
14.09.16
|
2438
|
#HOME_UNDER_SLIDER>div {
|
f9e08bbf
Administrator
image size
|
2439
2440
|
display: inline-block;
margin-right: 3px;
|
873e3d80
Administrator
14.09.16
|
2441
|
margin-top: 3px
|
f9e08bbf
Administrator
image size
|
2442
2443
|
}
|
f9e08bbf
Administrator
image size
|
2444
|
.sort_block ul {
|
f9e08bbf
Administrator
image size
|
2445
|
margin: 0;
|
873e3d80
Administrator
14.09.16
|
2446
|
padding: 0
|
f9e08bbf
Administrator
image size
|
2447
|
}
|
873e3d80
Administrator
14.09.16
|
2448
2449
2450
2451
2452
2453
|
.special-products,
.why_me_ {
padding-top: 30px
}
|
f9e08bbf
Administrator
image size
|
2454
|
.sort_block ul li {
|
873e3d80
Administrator
14.09.16
|
2455
2456
|
margin: 0 .5em;
list-style: none
|
f9e08bbf
Administrator
image size
|
2457
|
}
|
873e3d80
Administrator
14.09.16
|
2458
2459
2460
|
.sort_block ul li a.asc:after,
.sort_block ul li a.desc:after {
|
f9e08bbf
Administrator
image size
|
2461
2462
2463
2464
2465
2466
2467
2468
|
display: block;
width: 5px;
height: 3px;
position: absolute;
top: 50%;
margin-top: -1px;
right: -10px;
content: '';
|
873e3d80
Administrator
14.09.16
|
2469
|
background: url(../img/arrow_sort_asc_desc.png) no-repeat
|
f9e08bbf
Administrator
image size
|
2470
|
}
|
873e3d80
Administrator
14.09.16
|
2471
|
|
f9e08bbf
Administrator
image size
|
2472
|
.sort_block ul li a.asc:after {
|
873e3d80
Administrator
14.09.16
|
2473
|
background-position: 0 0
|
f9e08bbf
Administrator
image size
|
2474
|
}
|
873e3d80
Administrator
14.09.16
|
2475
|
|
f9e08bbf
Administrator
image size
|
2476
|
.sort_block ul li a.desc:after {
|
873e3d80
Administrator
14.09.16
|
2477
2478
2479
2480
2481
|
background-position: 0 -3px
}
.home_banner_up {
margin-top: 20px
|
f9e08bbf
Administrator
image size
|
2482
|
}
|
873e3d80
Administrator
14.09.16
|
2483
|
|
f9e08bbf
Administrator
image size
|
2484
2485
2486
2487
|
.home_banner_up .HOME_RIGHT {
display: block;
float: right;
position: static;
|
873e3d80
Administrator
14.09.16
|
2488
|
margin-left: 0
|
f9e08bbf
Administrator
image size
|
2489
|
}
|
873e3d80
Administrator
14.09.16
|
2490
2491
2492
2493
|
#HOME_SLIDER .jssorb03 .av,
#HOME_SLIDER .jssorb03 div,
#HOME_SLIDER .jssorb03 div:hover {
|
f9e08bbf
Administrator
image size
|
2494
2495
2496
2497
2498
2499
|
width: 6px;
height: 6px;
border-radius: 50%;
line-height: 6px;
background: #fff;
border: 2px solid #fff;
|
873e3d80
Administrator
14.09.16
|
2500
|
box-shadow: 0 0 5px 0 rgba(54, 54, 54, .75)
|
f9e08bbf
Administrator
image size
|
2501
2502
|
}
|
873e3d80
Administrator
14.09.16
|
2503
2504
2505
|
#HOME_SLIDER .jssorb03 .av,
#HOME_SLIDER .jssorb03 div.av:active,
#HOME_SLIDER .jssorb03 div.av:hover {
|
f9e08bbf
Administrator
image size
|
2506
|
cursor: default;
|
873e3d80
Administrator
14.09.16
|
2507
|
background: #95BA2F
|
f9e08bbf
Administrator
image size
|
2508
|
}
|
873e3d80
Administrator
14.09.16
|
2509
|
|
f9e08bbf
Administrator
image size
|
2510
|
.special-products .link_buy {
|
873e3d80
Administrator
14.09.16
|
2511
|
margin-bottom: 0
|
f9e08bbf
Administrator
image size
|
2512
|
}
|
873e3d80
Administrator
14.09.16
|
2513
|
|
f9e08bbf
Administrator
image size
|
2514
|
.special-products .item {
|
873e3d80
Administrator
14.09.16
|
2515
2516
2517
2518
2519
2520
|
margin-bottom: 0!important
}
.why_me_ {
overflow: hidden;
margin-bottom: 60px
|
f9e08bbf
Administrator
image size
|
2521
|
}
|
f9e08bbf
Administrator
image size
|
2522
|
|
873e3d80
Administrator
14.09.16
|
2523
2524
2525
|
.why_me_ .why_list {
width: 1038px;
margin-left: -58px
|
f9e08bbf
Administrator
image size
|
2526
|
}
|
873e3d80
Administrator
14.09.16
|
2527
|
|
f9e08bbf
Administrator
image size
|
2528
|
.seo_text p {
|
873e3d80
Administrator
14.09.16
|
2529
2530
2531
2532
2533
2534
2535
2536
|
margin: 12px 0 0;
font-size: 13px!important;
color: #333!important;
font-family: Roboto!important
}
.seo_text p:first-child {
margin-top: 0
|
f9e08bbf
Administrator
image size
|
2537
|
}
|
873e3d80
Administrator
14.09.16
|
2538
2539
2540
2541
2542
|
.product-special {
position: absolute
}
|
f9e08bbf
Administrator
image size
|
2543
2544
2545
2546
|
.jcarousel-skin-tango .jcarousel-item {
width: 38px;
height: 38px;
border: 1px solid #d2d2d2;
|
873e3d80
Administrator
14.09.16
|
2547
|
background: #fff
|
f9e08bbf
Administrator
image size
|
2548
|
}
|
873e3d80
Administrator
14.09.16
|
2549
|
|
f9e08bbf
Administrator
image size
|
2550
2551
2552
2553
|
.jcarousel-skin-tango .jcarousel-item a {
display: table-cell;
width: 38px;
height: 38px;
|
873e3d80
Administrator
14.09.16
|
2554
|
vertical-align: middle
|
f9e08bbf
Administrator
image size
|
2555
|
}
|
873e3d80
Administrator
14.09.16
|
2556
|
|
f9e08bbf
Administrator
image size
|
2557
2558
2559
2560
|
.mycarousel img {
max-width: 38px;
max-height: 38px;
border: 0;
|
873e3d80
Administrator
14.09.16
|
2561
|
vertical-align: middle
|
f9e08bbf
Administrator
image size
|
2562
|
}
|
873e3d80
Administrator
14.09.16
|
2563
2564
2565
2566
|
.jcarousel-skin-tango .jcarousel-clip-vertical,
.jcarousel-skin-tango .jcarousel-container-vertical {
height: 175px
|
f9e08bbf
Administrator
image size
|
2567
|
}
|
873e3d80
Administrator
14.09.16
|
2568
|
|
f9e08bbf
Administrator
image size
|
2569
|
.jcarousel-skin-tango .jcarousel-container-vertical {
|
873e3d80
Administrator
14.09.16
|
2570
|
padding: 0
|
f9e08bbf
Administrator
image size
|
2571
|
}
|
873e3d80
Administrator
14.09.16
|
2572
|
|
f9e08bbf
Administrator
image size
|
2573
|
.jcarousel-skin-tango .jcarousel-prev-vertical {
|
873e3d80
Administrator
14.09.16
|
2574
|
top: -13px
|
f9e08bbf
Administrator
image size
|
2575
|
}
|
873e3d80
Administrator
14.09.16
|
2576
|
|
f9e08bbf
Administrator
image size
|
2577
|
.jcarousel-skin-tango .jcarousel-next-vertical {
|
873e3d80
Administrator
14.09.16
|
2578
|
bottom: -13px
|
f9e08bbf
Administrator
image size
|
2579
|
}
|
873e3d80
Administrator
14.09.16
|
2580
2581
2582
|
.jcarousel-skin-tango .jcarousel-next-vertical,
.jcarousel-skin-tango .jcarousel-prev-vertical {
|
f9e08bbf
Administrator
image size
|
2583
2584
|
left: 0;
width: 42px;
|
873e3d80
Administrator
14.09.16
|
2585
2586
2587
2588
2589
2590
2591
|
background-position: 14px 0
}
.products.pn>ul,
ul.product-special li {
width: 100%;
float: left
|
f9e08bbf
Administrator
image size
|
2592
|
}
|
873e3d80
Administrator
14.09.16
|
2593
2594
2595
|
.jcarousel-skin-tango .jcarousel-next-vertical:hover,
.jcarousel-skin-tango .jcarousel-prev-vertical:hover {
|
f9e08bbf
Administrator
image size
|
2596
|
background-position: 14px 0;
|
873e3d80
Administrator
14.09.16
|
2597
|
left: 0
|
f9e08bbf
Administrator
image size
|
2598
|
}
|
873e3d80
Administrator
14.09.16
|
2599
|
|
f9e08bbf
Administrator
image size
|
2600
2601
2602
|
ul.product-special {
position: absolute;
top: 0;
|
873e3d80
Administrator
14.09.16
|
2603
|
left: 16px
|
f9e08bbf
Administrator
image size
|
2604
|
}
|
873e3d80
Administrator
14.09.16
|
2605
|
|
f9e08bbf
Administrator
image size
|
2606
2607
2608
|
ul.product-special li div {
color: #333;
font-size: 10px;
|
f9e08bbf
Administrator
image size
|
2609
2610
2611
2612
2613
2614
2615
2616
|
font-weight: 700;
height: 22px;
line-height: 24px;
padding: 0 9px;
position: relative;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
margin-top: 8px;
|
873e3d80
Administrator
14.09.16
|
2617
|
float: left
|
f9e08bbf
Administrator
image size
|
2618
|
}
|
873e3d80
Administrator
14.09.16
|
2619
2620
2621
2622
2623
|
ul.product-special li:first-child {
margin-top: 0
}
|
f9e08bbf
Administrator
image size
|
2624
|
ul.product-special li.top div {
|
873e3d80
Administrator
14.09.16
|
2625
|
background: #fbc665
|
f9e08bbf
Administrator
image size
|
2626
|
}
|
873e3d80
Administrator
14.09.16
|
2627
|
|
f9e08bbf
Administrator
image size
|
2628
2629
2630
2631
2632
2633
2634
|
ul.product-special li.top div:after {
content: '';
position: absolute;
right: -19px;
top: 3px;
border: 11px solid transparent;
border-top: 5px solid #fbc665;
|
873e3d80
Administrator
14.09.16
|
2635
|
transform: rotate(-90deg)
|
f9e08bbf
Administrator
image size
|
2636
2637
|
}
|
873e3d80
Administrator
14.09.16
|
2638
2639
|
ul.product-special li.new div:after,
ul.product-special li.promo div:after {
|
f9e08bbf
Administrator
image size
|
2640
2641
2642
2643
|
content: '';
position: absolute;
right: -18px;
top: 2px;
|
873e3d80
Administrator
14.09.16
|
2644
2645
2646
2647
2648
2649
2650
2651
|
transform: rotate(-90deg)
}
ul.product-special li.new div {
background: #42b9f6
}
ul.product-special li.new div:after {
|
f9e08bbf
Administrator
image size
|
2652
|
border: 11px solid transparent;
|
873e3d80
Administrator
14.09.16
|
2653
|
border-top: 5px solid #42b9f6
|
f9e08bbf
Administrator
image size
|
2654
|
}
|
873e3d80
Administrator
14.09.16
|
2655
|
|
f9e08bbf
Administrator
image size
|
2656
|
ul.product-special li.promo div {
|
873e3d80
Administrator
14.09.16
|
2657
|
background: #f75d50
|
f9e08bbf
Administrator
image size
|
2658
|
}
|
873e3d80
Administrator
14.09.16
|
2659
|
|
f9e08bbf
Administrator
image size
|
2660
|
ul.product-special li.promo div:after {
|
f9e08bbf
Administrator
image size
|
2661
|
border: 11px solid transparent;
|
873e3d80
Administrator
14.09.16
|
2662
|
border-top: 5px solid #f75d50
|
f9e08bbf
Administrator
image size
|
2663
|
}
|
873e3d80
Administrator
14.09.16
|
2664
|
|
f9e08bbf
Administrator
image size
|
2665
|
.cost-block {
|
873e3d80
Administrator
14.09.16
|
2666
|
margin-top: 1px
|
f9e08bbf
Administrator
image size
|
2667
|
}
|
873e3d80
Administrator
14.09.16
|
2668
|
|
f9e08bbf
Administrator
image size
|
2669
|
.products.pn a.link_buy {
|
873e3d80
Administrator
14.09.16
|
2670
|
margin-bottom: 0
|
f9e08bbf
Administrator
image size
|
2671
|
}
|
873e3d80
Administrator
14.09.16
|
2672
|
|
f9e08bbf
Administrator
image size
|
2673
|
.products.pn {
|
873e3d80
Administrator
14.09.16
|
2674
|
padding-bottom: 0
|
f9e08bbf
Administrator
image size
|
2675
|
}
|
873e3d80
Administrator
14.09.16
|
2676
|
|
f9e08bbf
Administrator
image size
|
2677
|
.products.pn>ul {
|
873e3d80
Administrator
14.09.16
|
2678
|
margin-bottom: -3px
|
f9e08bbf
Administrator
image size
|
2679
2680
|
}
|
873e3d80
Administrator
14.09.16
|
2681
2682
2683
2684
2685
2686
2687
2688
2689
|
._form_checkbox_reset,
.sort_block,
.sort_block ul li a {
font-size: 12px
}
.filter_accept_bloc {
margin-top: 13px;
margin-bottom: 0
|
f9e08bbf
Administrator
image size
|
2690
|
}
|
873e3d80
Administrator
14.09.16
|
2691
|
|
f9e08bbf
Administrator
image size
|
2692
2693
2694
2695
2696
2697
2698
|
._form_checkbox_reset {
color: #6a6a6a;
display: block;
width: 128px;
height: 28px;
border: 1px solid #d2d2d2;
line-height: 28px;
|
f9e08bbf
Administrator
image size
|
2699
2700
|
border-radius: 4px;
text-decoration: none;
|
873e3d80
Administrator
14.09.16
|
2701
|
margin: 0 auto
|
f9e08bbf
Administrator
image size
|
2702
|
}
|
873e3d80
Administrator
14.09.16
|
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
|
.irs-max,
.irs-min,
.irs-slider:after {
display: none
}
.footer-mail,
input.custom-radio+label:hover {
text-decoration: underline
}
|
f9e08bbf
Administrator
image size
|
2715
2716
|
._form_checkbox_reset:hover {
border: 1px solid #95ba2f;
|
873e3d80
Administrator
14.09.16
|
2717
|
color: #6a6a6a
|
f9e08bbf
Administrator
image size
|
2718
|
}
|
873e3d80
Administrator
14.09.16
|
2719
|
|
f9e08bbf
Administrator
image size
|
2720
2721
2722
|
._form_checkbox_reset:active {
border: 1px solid #95ba2f;
background: #95ba2f;
|
873e3d80
Administrator
14.09.16
|
2723
|
color: #fff
|
f9e08bbf
Administrator
image size
|
2724
|
}
|
873e3d80
Administrator
14.09.16
|
2725
|
|
f9e08bbf
Administrator
image size
|
2726
2727
|
.sort_block ul li a {
color: #8fa951;
|
873e3d80
Administrator
14.09.16
|
2728
|
position: relative
|
f9e08bbf
Administrator
image size
|
2729
|
}
|
873e3d80
Administrator
14.09.16
|
2730
|
|
f9e08bbf
Administrator
image size
|
2731
|
.sort_block ul li a:hover {
|
873e3d80
Administrator
14.09.16
|
2732
|
color: #333
|
f9e08bbf
Administrator
image size
|
2733
|
}
|
873e3d80
Administrator
14.09.16
|
2734
2735
2736
|
#HOME_SLIDER .jssora03l,
#HOME_SLIDER .jssora03r {
|
f9e08bbf
Administrator
image size
|
2737
2738
|
width: 36px;
height: 340px;
|
873e3d80
Administrator
14.09.16
|
2739
|
background: url(../img/new_arrows_.png) no-repeat
|
f9e08bbf
Administrator
image size
|
2740
|
}
|
873e3d80
Administrator
14.09.16
|
2741
2742
2743
|
#HOME_SLIDER .jssora03l,
#HOME_SLIDER .jssora03l:hover {
|
f9e08bbf
Administrator
image size
|
2744
2745
|
background-position: 0 50%;
left: 0;
|
873e3d80
Administrator
14.09.16
|
2746
|
top: 0
|
f9e08bbf
Administrator
image size
|
2747
|
}
|
873e3d80
Administrator
14.09.16
|
2748
2749
2750
|
#HOME_SLIDER .jssora03r,
#HOME_SLIDER .jssora03r:hover {
|
f9e08bbf
Administrator
image size
|
2751
2752
|
background-position: -36px 50%;
right: 0;
|
873e3d80
Administrator
14.09.16
|
2753
2754
2755
2756
2757
|
top: 0
}
.loyout ._prd_spec-wr {
margin-top: 10px
|
f9e08bbf
Administrator
image size
|
2758
|
}
|
873e3d80
Administrator
14.09.16
|
2759
|
|
f9e08bbf
Administrator
image size
|
2760
2761
|
.loyout .special-products:first-child {
border-top: 0;
|
873e3d80
Administrator
14.09.16
|
2762
|
padding-top: 0
|
f9e08bbf
Administrator
image size
|
2763
|
}
|
873e3d80
Administrator
14.09.16
|
2764
|
|
f9e08bbf
Administrator
image size
|
2765
2766
2767
2768
2769
2770
2771
|
.irs-slider {
width: 13px;
height: 13px;
top: 25px;
border-radius: 100%;
box-shadow: none;
border: 1px solid #d2d2d2;
|
873e3d80
Administrator
14.09.16
|
2772
2773
2774
2775
2776
|
background: #fff;
background: -moz-linear-gradient(top, #fff 0, #ebebeb 100%);
background: -webkit-linear-gradient(top, #fff 0, #ebebeb 100%);
background: linear-gradient(to bottom, #fff 0, #ebebeb 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb', GradientType=0)
|
f9e08bbf
Administrator
image size
|
2777
|
}
|
873e3d80
Administrator
14.09.16
|
2778
2779
2780
2781
|
.irs-slider.state_hover,
.irs-slider:hover {
background: #fff
|
f9e08bbf
Administrator
image size
|
2782
|
}
|
873e3d80
Administrator
14.09.16
|
2783
|
|
f9e08bbf
Administrator
image size
|
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
|
.irs-slider:before {
content: "";
position: absolute;
width: 5px;
height: 5px;
z-index: 2;
border: 1px solid #d2d2d2;
border-radius: 100%;
background: #799920;
top: 3px;
|
873e3d80
Administrator
14.09.16
|
2794
2795
2796
2797
2798
2799
2800
|
left: 3px
}
.delivery-data:after,
.irs-line:before,
.owl-controls .owl-buttons div:before {
content: ''
|
f9e08bbf
Administrator
image size
|
2801
|
}
|
873e3d80
Administrator
14.09.16
|
2802
|
|
f9e08bbf
Administrator
image size
|
2803
2804
|
.irs-bar {
height: 3px;
|
873e3d80
Administrator
14.09.16
|
2805
|
top: 30px
|
f9e08bbf
Administrator
image size
|
2806
|
}
|
873e3d80
Administrator
14.09.16
|
2807
|
|
f9e08bbf
Administrator
image size
|
2808
2809
2810
2811
|
.irs-line {
height: 9px;
background: #ebebeb;
border: 1px solid #d2d2d2;
|
873e3d80
Administrator
14.09.16
|
2812
|
top: 27px
|
f9e08bbf
Administrator
image size
|
2813
|
}
|
873e3d80
Administrator
14.09.16
|
2814
|
|
f9e08bbf
Administrator
image size
|
2815
2816
2817
2818
|
.irs-line:before {
width: 166px;
height: 5px;
position: absolute;
|
f9e08bbf
Administrator
image size
|
2819
2820
2821
|
top: 2px;
left: 2px;
background: #d2d2d2;
|
873e3d80
Administrator
14.09.16
|
2822
2823
2824
2825
2826
2827
2828
2829
2830
|
border-radius: 5px
}
.irs {
height: 49px
}
.price_filter.first_price_li {
margin-top: 8px
|
f9e08bbf
Administrator
image size
|
2831
|
}
|
873e3d80
Administrator
14.09.16
|
2832
2833
|
.product_read_ .w {
|
f9e08bbf
Administrator
image size
|
2834
2835
2836
2837
2838
2839
2840
|
width: 110px;
overflow: hidden;
margin: 0;
padding-top: 0;
display: table-cell;
vertical-align: middle;
height: 32px;
|
873e3d80
Administrator
14.09.16
|
2841
|
float: none
|
f9e08bbf
Administrator
image size
|
2842
|
}
|
873e3d80
Administrator
14.09.16
|
2843
2844
2845
2846
2847
2848
|
.cont_shopping-wr,
.field-orders-body .control-label,
.field-orders-delivery .control-label,
.field-orders-payment .control-label,
.textareagroup .control-label {
|
f9e08bbf
Administrator
image size
|
2849
|
float: left;
|
873e3d80
Administrator
14.09.16
|
2850
2851
2852
2853
2854
2855
2856
|
width: 100%
}
.product_read_ .w .cost,
.product_read_ .w strike {
width: 100%;
float: left
|
f9e08bbf
Administrator
image size
|
2857
2858
2859
2860
2861
2862
2863
|
}
.product_read_price .link_buy {
width: 118px;
position: absolute;
top: 50%;
right: 0;
|
873e3d80
Administrator
14.09.16
|
2864
2865
2866
2867
2868
2869
2870
|
margin: -16px 0 0
}
.product_read_price {
position: relative;
min-height: 32px;
margin-top: 10px
|
f9e08bbf
Administrator
image size
|
2871
|
}
|
873e3d80
Administrator
14.09.16
|
2872
2873
2874
2875
2876
|
.special-products.products h3 {
margin-bottom: 10px
}
|
f9e08bbf
Administrator
image size
|
2877
|
.special-products.products li.item {
|
873e3d80
Administrator
14.09.16
|
2878
|
margin-top: 30px
|
f9e08bbf
Administrator
image size
|
2879
|
}
|
873e3d80
Administrator
14.09.16
|
2880
|
|
f9e08bbf
Administrator
image size
|
2881
2882
|
.productLeftBar .cost_box {
border-top: 0;
|
873e3d80
Administrator
14.09.16
|
2883
|
padding: 10px 0 0
|
f9e08bbf
Administrator
image size
|
2884
|
}
|
873e3d80
Administrator
14.09.16
|
2885
|
|
f9e08bbf
Administrator
image size
|
2886
2887
2888
2889
|
.productLeftBar .product_mod {
width: 100%;
float: left;
border-bottom: 1px solid #d2d2d2;
|
873e3d80
Administrator
14.09.16
|
2890
|
padding-bottom: 15px
|
f9e08bbf
Administrator
image size
|
2891
|
}
|
873e3d80
Administrator
14.09.16
|
2892
|
|
f9e08bbf
Administrator
image size
|
2893
|
.cont_shopping-wr {
|
873e3d80
Administrator
14.09.16
|
2894
|
margin-top: 10px
|
f9e08bbf
Administrator
image size
|
2895
|
}
|
873e3d80
Administrator
14.09.16
|
2896
|
|
f9e08bbf
Administrator
image size
|
2897
|
.cont_shopping-wr .cont_shopping {
|
873e3d80
Administrator
14.09.16
|
2898
|
float: right
|
f9e08bbf
Administrator
image size
|
2899
|
}
|
873e3d80
Administrator
14.09.16
|
2900
|
|
f9e08bbf
Administrator
image size
|
2901
|
.cont_shopping {
|
873e3d80
Administrator
14.09.16
|
2902
|
display: block!important;
|
f9e08bbf
Administrator
image size
|
2903
2904
2905
2906
2907
2908
2909
2910
2911
|
border-top: 0!important;
border-left: 0!important;
border-right: 0!important;
border-bottom: 1px dashed #799920!important;
color: #799920!important;
margin: 0!important;
padding: 0!important;
font-size: 12px!important;
float: left;
|
873e3d80
Administrator
14.09.16
|
2912
2913
2914
2915
2916
2917
2918
2919
2920
|
border-radius: 0!important
}
.delivery-data .field-order-delivery-childs .control-label,
.jcarousel-skin-tango>li,
.owl-pagination,
input.custom-check,
input.custom-radio {
display: none
|
f9e08bbf
Administrator
image size
|
2921
|
}
|
873e3d80
Administrator
14.09.16
|
2922
|
|
f9e08bbf
Administrator
image size
|
2923
2924
|
.info.product-thumb-video {
width: 100%;
|
873e3d80
Administrator
14.09.16
|
2925
|
height: 100%
|
f9e08bbf
Administrator
image size
|
2926
|
}
|
873e3d80
Administrator
14.09.16
|
2927
2928
2929
2930
2931
|
.info.product-thumb-video embed,
.info.product-thumb-video iframe {
width: 100%!important;
height: auto!important
|
f9e08bbf
Administrator
image size
|
2932
|
}
|
873e3d80
Administrator
14.09.16
|
2933
2934
2935
|
.input-blocks,
.input-blocks-wrapper {
|
f9e08bbf
Administrator
image size
|
2936
|
width: 100%;
|
873e3d80
Administrator
14.09.16
|
2937
|
float: left
|
f9e08bbf
Administrator
image size
|
2938
|
}
|
873e3d80
Administrator
14.09.16
|
2939
|
|
f9e08bbf
Administrator
image size
|
2940
|
.form-order .input-blocks-wrapper {
|
873e3d80
Administrator
14.09.16
|
2941
|
margin-top: 6px
|
f9e08bbf
Administrator
image size
|
2942
|
}
|
873e3d80
Administrator
14.09.16
|
2943
|
|
f9e08bbf
Administrator
image size
|
2944
2945
|
.input-blocks label {
font-size: 13px;
|
873e3d80
Administrator
14.09.16
|
2946
|
color: #333
|
f9e08bbf
Administrator
image size
|
2947
|
}
|
873e3d80
Administrator
14.09.16
|
2948
|
|
f9e08bbf
Administrator
image size
|
2949
2950
2951
2952
|
.basket_input_2 label {
height: 30px;
line-height: 30px;
float: left;
|
873e3d80
Administrator
14.09.16
|
2953
2954
|
width: 70px!important;
padding-top: 0!important
|
f9e08bbf
Administrator
image size
|
2955
2956
2957
2958
2959
|
}
.custom-input-2 {
width: 100%;
height: 30px;
|
873e3d80
Administrator
14.09.16
|
2960
|
outline: 0;
|
f9e08bbf
Administrator
image size
|
2961
2962
2963
2964
|
line-height: 30px;
padding-left: 8px;
margin-top: 5px;
background: #fff;
|
873e3d80
Administrator
14.09.16
|
2965
|
border-radius: 4px
|
f9e08bbf
Administrator
image size
|
2966
|
}
|
873e3d80
Administrator
14.09.16
|
2967
2968
2969
2970
|
.custom-area-2,
.custom-input-2,
.textareagroup textarea {
|
f9e08bbf
Administrator
image size
|
2971
2972
2973
|
border: 1px solid #d2d2d2;
box-sizing: border-box;
font-size: 13px;
|
873e3d80
Administrator
14.09.16
|
2974
|
color: #636363
|
f9e08bbf
Administrator
image size
|
2975
|
}
|
873e3d80
Administrator
14.09.16
|
2976
2977
2978
|
.custom-area-2,
.textareagroup textarea {
|
f9e08bbf
Administrator
image size
|
2979
2980
2981
2982
2983
|
min-height: 128px;
max-height: 128px;
resize: none;
width: 100%;
max-width: 100%;
|
873e3d80
Administrator
14.09.16
|
2984
|
outline: 0;
|
f9e08bbf
Administrator
image size
|
2985
2986
|
padding-left: 8px;
padding-top: 8px;
|
873e3d80
Administrator
14.09.16
|
2987
|
margin-top: 8px
|
f9e08bbf
Administrator
image size
|
2988
|
}
|
873e3d80
Administrator
14.09.16
|
2989
|
|
f9e08bbf
Administrator
image size
|
2990
2991
2992
|
.basket_input_2 .custom-input-2 {
width: 270px;
float: right;
|
873e3d80
Administrator
14.09.16
|
2993
|
margin-top: 0
|
f9e08bbf
Administrator
image size
|
2994
|
}
|
873e3d80
Administrator
14.09.16
|
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
|
.custom-area-3:focus,
.custom-input-2:focus,
.textareagroup textarea:focus {
box-shadow: 1px 2px 2px 0 rgba(215, 215, 215, .75) inset;
transition: .1s
}
.textareagroup textarea:focus {
border: 1px solid #d2d2d2
}
.radio_grp label.control-label,
.textareagroup .control-label,
.title_groups {
|
f9e08bbf
Administrator
image size
|
3010
|
font-size: 12px;
|
873e3d80
Administrator
14.09.16
|
3011
|
font-weight: 700;
|
f9e08bbf
Administrator
image size
|
3012
|
text-transform: uppercase;
|
873e3d80
Administrator
14.09.16
|
3013
|
margin-bottom: 12px
|
f9e08bbf
Administrator
image size
|
3014
|
}
|
873e3d80
Administrator
14.09.16
|
3015
|
|
f9e08bbf
Administrator
image size
|
3016
3017
3018
3019
3020
|
.input-blocks-group {
width: 100%;
float: left;
border-bottom: 1px solid #d2d2d2;
padding-bottom: 20px;
|
873e3d80
Administrator
14.09.16
|
3021
|
margin-top: 18px
|
f9e08bbf
Administrator
image size
|
3022
|
}
|
873e3d80
Administrator
14.09.16
|
3023
|
|
f9e08bbf
Administrator
image size
|
3024
3025
|
.custom-form-buttons {
width: 100%;
|
873e3d80
Administrator
14.09.16
|
3026
|
float: left
|
f9e08bbf
Administrator
image size
|
3027
|
}
|
873e3d80
Administrator
14.09.16
|
3028
3029
3030
|
input.custom-check+label,
input.custom-radio+label {
|
f9e08bbf
Administrator
image size
|
3031
3032
|
font-size: 13px;
cursor: pointer;
|
873e3d80
Administrator
14.09.16
|
3033
|
margin-left: 6px
|
f9e08bbf
Administrator
image size
|
3034
|
}
|
873e3d80
Administrator
14.09.16
|
3035
3036
|
input.custom-radio+label span {
|
f9e08bbf
Administrator
image size
|
3037
3038
|
width: 16px;
height: 16px;
|
873e3d80
Administrator
14.09.16
|
3039
|
background: url(../img/radio_new.png) no-repeat;
|
f9e08bbf
Administrator
image size
|
3040
3041
|
float: left;
transition: .2s;
|
873e3d80
Administrator
14.09.16
|
3042
|
margin-top: 1px
|
f9e08bbf
Administrator
image size
|
3043
3044
|
}
|
873e3d80
Administrator
14.09.16
|
3045
3046
3047
|
input.custom-radio:checked+label span,
input.custom-radio:checked+label:hover span {
background: url(../img/radio_new-active.png) no-repeat
|
f9e08bbf
Administrator
image size
|
3048
|
}
|
873e3d80
Administrator
14.09.16
|
3049
|
|
f9e08bbf
Administrator
image size
|
3050
|
.custom-form-buttons {
|
873e3d80
Administrator
14.09.16
|
3051
3052
3053
3054
3055
|
margin-top: 7px
}
.custom-form-buttons:first-child {
margin-top: 0
|
f9e08bbf
Administrator
image size
|
3056
|
}
|
873e3d80
Administrator
14.09.16
|
3057
|
|
f9e08bbf
Administrator
image size
|
3058
3059
|
.checkout_basket {
width: 100%;
|
873e3d80
Administrator
14.09.16
|
3060
|
float: left
|
f9e08bbf
Administrator
image size
|
3061
|
}
|
873e3d80
Administrator
14.09.16
|
3062
|
|
f9e08bbf
Administrator
image size
|
3063
|
.checkout_basket button {
|
873e3d80
Administrator
14.09.16
|
3064
|
margin: 0 auto
|
f9e08bbf
Administrator
image size
|
3065
|
}
|
873e3d80
Administrator
14.09.16
|
3066
|
|
f9e08bbf
Administrator
image size
|
3067
3068
3069
3070
3071
3072
|
.input-blocks-wrapper .help-block {
padding-left: 71px;
padding-top: 4px;
width: 100%;
float: left;
box-sizing: border-box;
|
873e3d80
Administrator
14.09.16
|
3073
|
margin-bottom: 0
|
f9e08bbf
Administrator
image size
|
3074
|
}
|
873e3d80
Administrator
14.09.16
|
3075
|
|
f9e08bbf
Administrator
image size
|
3076
3077
3078
|
.cont_shop_but-wr {
height: 33px;
margin-top: 35px;
|
873e3d80
Administrator
14.09.16
|
3079
|
padding-bottom: 29px
|
f9e08bbf
Administrator
image size
|
3080
|
}
|
873e3d80
Administrator
14.09.16
|
3081
|
|
f9e08bbf
Administrator
image size
|
3082
3083
|
.cont_shop_but-wr .cont_shop {
margin-top: 8px;
|
873e3d80
Administrator
14.09.16
|
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
|
float: left
}
.cont_shop_but-wr .submit4.bottom3 {
float: right
}
._qqq_ .params {
font-size: 12px
}
.activeShow {
border-bottom: 0!important
}
.delivery-data:after,
.special-products {
border-bottom: 1px solid #d2d2d2
|
f9e08bbf
Administrator
image size
|
3102
|
}
|
873e3d80
Administrator
14.09.16
|
3103
|
|
f9e08bbf
Administrator
image size
|
3104
3105
|
.delivery-data:after {
width: 100%;
|
f9e08bbf
Administrator
image size
|
3106
|
position: absolute;
|
f9e08bbf
Administrator
image size
|
3107
|
bottom: -27px;
|
873e3d80
Administrator
14.09.16
|
3108
|
left: 0
|
f9e08bbf
Administrator
image size
|
3109
|
}
|
873e3d80
Administrator
14.09.16
|
3110
|
|
f9e08bbf
Administrator
image size
|
3111
3112
3113
3114
|
.img_ajax_basket img {
margin-right: 0!important;
max-width: 90px;
max-height: 90px;
|
873e3d80
Administrator
14.09.16
|
3115
|
vertical-align: middle
|
f9e08bbf
Administrator
image size
|
3116
|
}
|
873e3d80
Administrator
14.09.16
|
3117
|
|
f9e08bbf
Administrator
image size
|
3118
|
#login-form {
|
873e3d80
Administrator
14.09.16
|
3119
|
margin: 50px auto 0
|
f9e08bbf
Administrator
image size
|
3120
|
}
|
873e3d80
Administrator
14.09.16
|
3121
|
|
f9e08bbf
Administrator
image size
|
3122
|
#bg {
|
873e3d80
Administrator
14.09.16
|
3123
3124
|
top: 0!important;
z-index: 1!important
|
f9e08bbf
Administrator
image size
|
3125
|
}
|
873e3d80
Administrator
14.09.16
|
3126
3127
3128
3129
3130
|
body>.bottom,
body>.fotter,
body>.top,
body>.wrap {
|
f9e08bbf
Administrator
image size
|
3131
|
position: relative;
|
873e3d80
Administrator
14.09.16
|
3132
|
z-index: 2
|
f9e08bbf
Administrator
image size
|
3133
|
}
|
873e3d80
Administrator
14.09.16
|
3134
|
|
f9e08bbf
Administrator
image size
|
3135
|
.owl-controls .owl-buttons div {
|
873e3d80
Administrator
14.09.16
|
3136
3137
3138
3139
3140
3141
3142
|
width: 34px!important;
height: 50px!important;
background: #596065!important;
top: 50%!important;
margin: -25px 0 0!important;
opacity: 1!important;
border-radius: 0!important;
|
f9e08bbf
Administrator
image size
|
3143
|
padding: 0!important;
|
873e3d80
Administrator
14.09.16
|
3144
|
position: absolute
|
f9e08bbf
Administrator
image size
|
3145
|
}
|
873e3d80
Administrator
14.09.16
|
3146
|
|
f9e08bbf
Administrator
image size
|
3147
|
.owl-controls .owl-buttons div:hover {
|
873e3d80
Administrator
14.09.16
|
3148
3149
|
background: #acafb2!important;
transition: .2s!important
|
f9e08bbf
Administrator
image size
|
3150
|
}
|
f9e08bbf
Administrator
image size
|
3151
|
|
873e3d80
Administrator
14.09.16
|
3152
3153
3154
3155
|
.owl-controls .owl-buttons .owl-prev {
border-top-right-radius: 4px!important;
border-bottom-right-radius: 4px!important;
left: -20px
|
f9e08bbf
Administrator
image size
|
3156
|
}
|
f9e08bbf
Administrator
image size
|
3157
|
|
873e3d80
Administrator
14.09.16
|
3158
3159
3160
3161
|
.owl-controls .owl-buttons .owl-next {
border-top-left-radius: 4px!important;
border-bottom-left-radius: 4px!important;
right: -20px
|
f9e08bbf
Administrator
image size
|
3162
|
}
|
873e3d80
Administrator
14.09.16
|
3163
|
|
f9e08bbf
Administrator
image size
|
3164
3165
|
.owl-controls .owl-buttons div:before {
position: absolute;
|
f9e08bbf
Administrator
image size
|
3166
3167
|
width: 8px;
height: 22px;
|
873e3d80
Administrator
14.09.16
|
3168
3169
|
background: url(../img/arrows_blocks.png) no-repeat;
top: 50%;
|
f9e08bbf
Administrator
image size
|
3170
3171
|
margin-top: -11px;
left: 50%;
|
873e3d80
Administrator
14.09.16
|
3172
|
margin-left: -4px
|
f9e08bbf
Administrator
image size
|
3173
|
}
|
873e3d80
Administrator
14.09.16
|
3174
|
|
f9e08bbf
Administrator
image size
|
3175
|
.owl-controls .owl-buttons .owl-prev:before {
|
873e3d80
Administrator
14.09.16
|
3176
|
background-position: 0 0
|
f9e08bbf
Administrator
image size
|
3177
|
}
|
873e3d80
Administrator
14.09.16
|
3178
|
|
f9e08bbf
Administrator
image size
|
3179
|
.owl-controls .owl-buttons .owl-next:before {
|
873e3d80
Administrator
14.09.16
|
3180
3181
3182
3183
3184
|
background-position: -8px 0
}
.basket_input_2.required .control-label {
position: relative
|
f9e08bbf
Administrator
image size
|
3185
|
}
|
873e3d80
Administrator
14.09.16
|
3186
|
|
f9e08bbf
Administrator
image size
|
3187
3188
3189
3190
3191
3192
|
.basket_input_2.required .control-label:before {
position: absolute;
top: 0;
content: '*';
color: #D60000;
left: -11px;
|
873e3d80
Administrator
14.09.16
|
3193
|
padding-top: 2px
|
f9e08bbf
Administrator
image size
|
3194
|
}
|
33a05556
Administrator
01.06.16
|
3195
|
|
873e3d80
Administrator
14.09.16
|
3196
3197
|
.float-left {
float: left
|
e2aaf166
Administrator
01.06.16
|
3198
3199
|
}
|
873e3d80
Administrator
14.09.16
|
3200
3201
|
.blog-show-img {
padding-right: 20px
|
57c10be3
Виталий
Веталь
|
3202
3203
|
}
|
873e3d80
Administrator
14.09.16
|
3204
|
.text_seo.hidden_seo {
|
57c10be3
Виталий
Веталь
|
3205
3206
|
height: 178px;
overflow: hidden;
|
873e3d80
Administrator
14.09.16
|
3207
|
position: relative
|
57c10be3
Виталий
Веталь
|
3208
|
}
|
873e3d80
Administrator
14.09.16
|
3209
|
|
57c10be3
Виталий
Веталь
|
3210
3211
3212
|
.text_seo.hidden_seo div {
height: 162px;
overflow: hidden;
|
873e3d80
Administrator
14.09.16
|
3213
|
position: relative
|
57c10be3
Виталий
Веталь
|
3214
|
}
|
873e3d80
Administrator
14.09.16
|
3215
|
|
57c10be3
Виталий
Веталь
|
3216
3217
3218
3219
|
.text_seo.hidden_seo a {
position: absolute;
bottom: 0;
right: 0;
|
873e3d80
Administrator
14.09.16
|
3220
|
font-size: 16px
|
57c10be3
Виталий
Веталь
|
3221
|
}
|
873e3d80
Administrator
14.09.16
|
3222
|
|
7f028cd7
Виталий
Веталь
|
3223
|
.text_seo.hidden_seo div:before {
|
57c10be3
Виталий
Веталь
|
3224
3225
3226
3227
3228
3229
|
content: '';
display: block;
position: absolute;
bottom: 0;
right: 0;
left: 0;
|
2bcb7bf4
Виталий
Веталь
|
3230
|
height: 120px;
|
873e3d80
Administrator
14.09.16
|
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
|
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, #fff));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
background: linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%)
}
.checkout_basket button,
.submit4,
a.link_buy {
font-size: 15px
}
.cost,
.product_read_price #cost {
font-size: 20px
}
.cost span,
.cost span.valute,
.product_read_price .valute {
font-size: 15px
}
|
e608c5f7
Yarik
Comment added
|
3256
|
.comment_display_block {
|
873e3d80
Administrator
14.09.16
|
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
|
height: 35px
}
.basket {
margin-top: 34px!important
}
.header-time {
float: right;
margin-right: 25px
}
.header-time table {
border: 0;
padding: 0;
outline: 0;
height: 129px
}
.header-time table td {
font-size: 14px;
line-height: 14px
}
.header-time table td span {
font-size: 16px
}
.header-time table table {
height: auto
}
.header-time.footer_time {
width: 100%;
float: left;
margin-top: 68px
}
.header-time.footer_time table td {
vertical-align: top
}
.footer-mail {
color: #99a5ad
}
.footer-mail:hover {
color: #fff
|
7026e8c8
Administrator
20.07.16
|
3305
|
}
|
873e3d80
Administrator
14.09.16
|
3306
|
|
3cd9d528
Yarik
Added icons to ba...
|
3307
3308
|
.labels_block .labels_item {
display: inline-block;
|
873e3d80
Administrator
14.09.16
|
3309
|
width: 49%
|
fe7f596f
Yarik
Added comments to...
|
3310
3311
3312
|
}
.article_comment_description {
|
873e3d80
Administrator
14.09.16
|
3313
|
margin: -10px 0 10px
|
2211268d
Yarik
Added comments to...
|
3314
|
}
|
873e3d80
Administrator
14.09.16
|
3315
|
|
2211268d
Yarik
Added comments to...
|
3316
3317
|
.article_list_comment {
height: auto;
|
873e3d80
Administrator
14.09.16
|
3318
|
margin: 10px 0
|
20ef43de
Yarik
Avarage rating st...
|
3319
|
}
|
873e3d80
Administrator
14.09.16
|
3320
|
|
20ef43de
Yarik
Avarage rating st...
|
3321
3322
|
.check_price {
font-size: 12px;
|
873e3d80
Administrator
14.09.16
|
3323
|
color: #708090;
|
20ef43de
Yarik
Avarage rating st...
|
3324
3325
|
margin: 20px 0 10px;
padding-bottom: 10px;
|
873e3d80
Administrator
14.09.16
|
3326
|
border-bottom: 1px solid #d2d2d2
|
20ef43de
Yarik
Avarage rating st...
|
3327
|
}
|
873e3d80
Administrator
14.09.16
|
3328
|
|
20ef43de
Yarik
Avarage rating st...
|
3329
|
.product_rating_block {
|
873e3d80
Administrator
14.09.16
|
3330
|
display: inline-block
|
20ef43de
Yarik
Avarage rating st...
|
3331
|
}
|
873e3d80
Administrator
14.09.16
|
3332
|
|
20ef43de
Yarik
Avarage rating st...
|
3333
|
.product_review_block {
|
873e3d80
Administrator
14.09.16
|
3334
|
float: right
|
20ef43de
Yarik
Avarage rating st...
|
3335
|
}
|
873e3d80
Administrator
14.09.16
|
3336
|
|
20ef43de
Yarik
Avarage rating st...
|
3337
3338
3339
|
.product_review_block a {
font-size: 13px;
text-decoration: none;
|
873e3d80
Administrator
14.09.16
|
3340
|
border-bottom: 1px dotted #799920
|
e407c463
Yarik
Rating styling fix.
|
3341
|
}
|
873e3d80
Administrator
14.09.16
|
3342
|
|
e407c463
Yarik
Rating styling fix.
|
3343
|
.artbox_comment_description {
|
873e3d80
Administrator
14.09.16
|
3344
3345
3346
3347
3348
3349
|
min-height: 20px
}
.flip-clock-wrapper ul{
width: 40px;
}
|