Commit f9e08bbf38e5be3b8f7f9b01c69cab7fe7ad798e

Authored by Administrator
1 parent 4276e0de

image size

.htaccess
... ... @@ -77,4 +77,90 @@ AddDefaultCharset utf-8
77 77 <IfModule mod_php5.c>
78 78 php_value upload_max_filesize 20M
79 79 php_value post_max_size 30M
  80 +</IfModule>
  81 +
  82 +
  83 +1
  84 +2
  85 +3
  86 +4
  87 +5
  88 +6
  89 +7
  90 +8
  91 +9
  92 +10
  93 +11
  94 +12
  95 +13
  96 +14
  97 +15
  98 +16
  99 +17
  100 +18
  101 +19
  102 +20
  103 +21
  104 +22
  105 +23
  106 +24
  107 +25
  108 +26
  109 +27
  110 +28
  111 +29
  112 +30
  113 +31
  114 +32
  115 +33
  116 +34
  117 +35
  118 +36
  119 +37
  120 +38
  121 +39
  122 +40
  123 +41
  124 +42
  125 +# кеширование в браузере на стороне пользователя
  126 +<IfModule mod_expires.c>
  127 +ExpiresActive On
  128 +ExpiresDefault "access 7 days"
  129 +ExpiresByType application/javascript "access plus 1 year"
  130 +ExpiresByType text/javascript "access plus 1 year"
  131 +ExpiresByType text/css "access plus 1 year"
  132 +ExpiresByType text/html "access plus 7 day"
  133 +ExpiresByType text/x-javascript "access 1 year"
  134 +ExpiresByType image/gif "access plus 1 year"
  135 +ExpiresByType image/jpeg "access plus 1 year"
  136 +ExpiresByType image/png "access plus 1 year"
  137 +ExpiresByType image/jpg "access plus 1 year"
  138 +ExpiresByType image/x-icon "access 1 year"
  139 +ExpiresByType application/x-shockwave-flash "access 1 year"
  140 +</IfModule>
  141 +
  142 +# Cache-Control
  143 +<ifModule mod_headers.c>
  144 +# 30 дней
  145 +<filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
  146 +Header set Cache-Control "max-age=2592000, public"
  147 +</filesMatch>
  148 +# 30 дней
  149 +<filesMatch "\.(css|js)$">
  150 +Header set Cache-Control "max-age=2592000, public"
  151 +</filesMatch>
  152 +# 2 дня
  153 +<filesMatch "\.(xml|txt)$">
  154 +Header set Cache-Control "max-age=172800, public, must-revalidate"
  155 +</filesMatch>
  156 +# 1 день
  157 +<filesMatch "\.(html|htm|php)$">
  158 +Header set Cache-Control "max-age=172800, private, must-revalidate"
  159 +</filesMatch>
  160 +</ifModule>
  161 +
  162 +#Запрет отдачи HTTP-заголовков Vary браузерам семейства MSIE
  163 +<IfModule mod_setenvif.c>
  164 +BrowserMatch "MSIE" force-no-vary
  165 +BrowserMatch "Mozilla/4.[0-9]{2}" force-no-vary
80 166 </IfModule>
81 167 \ No newline at end of file
... ...
frontend/web/css/1style.css deleted
1   -html,form,
2   -body { padding:0px;margin:0px;
3   -font-family: 'Ubuntu',Arial, Tahoma, Helvetica, sans-serif;font-size:14px;color:#1d1d1b;height:100%;
4   -}
5   -h1,h2,h3{margin:0px;padding:0px 0px 10px 0px;}
6   -.fl{float:left;}
7   -.fotter .wrap .fr{float:right; width: 180px; height: 50px; position: relative;}
8   -.fotter .wrap .fr img{position: absolute; top: 50%; margin-top: -10px; right: 0;}
9   -.fotter .wrap .fl {line-height: 50px;}
10   -.both{clear:both;}
11   -h1{margin:10px 0px;font-size:24px;}
12   -h3{margin-bottom:30px;}
13   -p{margin:3px 0px;padding:0px;}
14   -
15   -a{color:#6a6a6a;font-size:14px;text-decoration:underline;}
16   -a:hover{color:#799920;}
17   -
18   -.wrap {
19   - width:960px;margin:0px auto;
20   -}
21   -.f{background: #ffffff;}
22   -
23   -.br{-webkit-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
24   --moz-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
25   -box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
26   -padding:20px;}
27   -
28   -nav.top{background:#f5f5f5;padding:10px 0px;border-bottom:1px solid #d2d2d2;font-size:12px;}
29   -nav.top ul{list-style:none;margin:0px;padding:0px;}
30   -nav.top ul li{float:left;padding-right:20px;}
31   -nav.top a{color:#6a6a6a;text-decoration:none;}
32   -
33   -#help{background:url('../img/help.png') right no-repeat;padding-right:20px;}
34   -#help span{border-bottom:1px dotted #6a6a6a;}
35   -
36   -#login{background:url('../img/login.png') right no-repeat;padding-right:20px;}
37   -#login span{border-bottom:1px dotted #6a6a6a;}
38   -
39   -.search{margin:-5px 0px -5px 100px;float:left;}
40   -nav input[type="text"]{width:325px;outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;}
41   -nav input[type="submit"]{width:35px;height:29px;border:none;background:url('../img/lupa_sub.png') center no-repeat;margin-left:-35px;cursor:pointer;}
42   -
43   -
44   -
45   -.header{margin:0px 0px 20px;}
46   -
47   -.phone{float:left;position:relative;text-align:center;margin-top:20px;}
48   -.phone .tel{font-size:23px;}
49   -.phone .tel span.more{margin-bottom: 3px}
50   -.more_block{background:#ffffff;border:1px solid #d2d2d2;padding:10px;position:absolute;font-size:20px;display:none;z-index:99;}
51   -
52   -.more{background:url('../img/more.png') no-repeat;width:12px;height:7px;display:inline-block;cursor:pointer;margin-bottom:5px;}
53   -
54   -
55   -.logo{margin:0px auto 0px;width:193px;}
56   -.logo a{display:block;width:193px;height:84px;background:url('../img/logo.png') no-repeat;}
57   -.logo a span{display:none;}
58   -
59   -#call{color:#6a6a6a;text-decoration:none;border-bottom:1px dotted #6a6a6a;}
60   -
61   -.basket{float:right;position:relative;border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;font-size:18px;text-transform: uppercase;margin-top:13px;}
62   -.basket .info{float:left;border-right:1px solid #d2d2d2;padding-right:10px;margin-right:17px;}
63   -.basket .info span{color:#f75d50;font-size:22px;}
64   -.basket a:link,.basket a:visited{text-decoration:none;color:#000000;font-size:18px;}
65   -
66   -.basket span.more {margin-bottom: -1px}
67   -.menu{background:#596065;border:1px solid #e8e8e8;}
68   -.menu ul{margin:0px;padding:0px;list-style:none;}
69   -.menu ul li{float:left;border-right:1px solid #e8e8e8;}
70   -.menu ul li a{float:left;padding:15px 20px 15px 20px;text-transform: uppercase;color:#ffffff;font-size:14px;font-weight:bold;text-decoration: none;}
71   -.menu ul li a:hover{color:#e5e4e4;}
72   -.menu ul li.active a{background:#f5f5f5;color:#596065;}
73   -
74   -.menu_childs{background:#f5f5f5;border:1px solid #e8e8e8;border-bottom:2px solid #596065;}
75   -.menu_childs ul{margin:0px;padding:0px;list-style:none;}
76   -.menu_childs ul li{float:left;}
77   -.menu_childs ul li a{float:left;padding:15px 23px 15px 23px;text-transform: uppercase;color:#596065;font-size:14px;font-weight:bold;text-decoration: none;}
78   -.menu_childs ul li a:hover{color:#878b8e;}
79   -
80   -.fr ul li{border:none;}
81   -.akciya a{background:#f75d50;color:#ffffff;}
82   -.brends a{background:#95ba2f;color:#ffffff;}
83   -
84   -a.myorders{color:#f75d50}
85   -
86   -
87   -.slider{margin-top:20px;}
88   -
89   -
90   -
91   -
92   -
93   -
94   -
95   -
96   -#slides{width:720px;height:340px;position:relative;}
97   -.banner{float:left;margin-right:20px;}
98   -
99   -.slides_container {
100   - width:720px;
101   - overflow:hidden;
102   - position:relative;
103   - display:none;
104   -}
105   -
106   -/*
107   - Each slide
108   - Important:
109   - Set the width of your slides
110   - If height not specified height will be set by the slide content
111   - Set to display block
112   -*/
113   -
114   -.slides_container div.slide {
115   - width:720px;
116   - height:340px;
117   - display:block;
118   -}
119   -
120   -
121   -/*
122   - Next/prev buttons
123   -*/
124   -
125   -#slides .prev {
126   - position:absolute;
127   - top:150px;
128   - left:20px;
129   - width:25px;
130   - height:39px;
131   - display:block;
132   - z-index:999;
133   -}
134   -
135   -#slides .next {
136   - position:absolute;
137   - top:150px;
138   - right:15px;
139   - width:25px;
140   - height:39px;
141   - display:block;
142   - z-index:999;
143   -}
144   -
145   -
146   -/*
147   - Pagination
148   -*/
149   -
150   -#slides .pagination {
151   - padding:0px;
152   - position:relative;z-index:999;margin:-30px auto;display:table;
153   -}
154   -
155   -#slides .pagination ul{list-style:none;margin:0px;padding:0px;}
156   -
157   -#slides .pagination li {
158   - float:left;
159   - margin:0 3px;
160   - list-style:none;
161   -}
162   -
163   -#slides .pagination li a {
164   - display:block;
165   - width:10px;
166   - height:0;
167   - padding-top:12px;
168   - background-image:url(../img/pagination.png);
169   - background-position:0 -12px;
170   - float:left;
171   - overflow:hidden;
172   -}
173   -
174   -#slides .pagination li.current a {
175   - background-position:0 0px;
176   -}
177   -
178   -
179   -
180   -.sub{margin:2px 0px 0px 0px;}
181   -.sub img{float:left;margin-right:2px;}
182   -
183   -.rubrics{margin:35px 0px;padding-bottom:10px;}
184   -.rubrics ul{list-style:none;margin:0px;padding:0px;}
185   -.rubrics ul li{float:left;margin:0px 35px;}
186   -.rubrics ul li a{float:left;width:120px;padding-top:130px;text-align:center;text-transform: uppercase;color:#494949;text-decoration:none;font-weight:bold;}
187   -.rubrics ul li.item1 a{background:url('../img/ico1.png') no-repeat;}
188   -.rubrics ul li.item2 a{background:url('../img/ico2.png') no-repeat;}
189   -.rubrics ul li.item3 a{background:url('../img/ico3.png') no-repeat;}
190   -.rubrics ul li.item4 a{background:url('../img/ico4.png') no-repeat;}
191   -.rubrics ul li.item5 a{background:url('../img/ico5.png') no-repeat;}
192   -
193   -
194   -.products{border-top:1px solid #d2d2d2;padding-bottom:30px;padding-top:20px;}
195   -.products ul{list-style:none;margin:0px;padding:0px;}
196   -.products ul li.item{float:left;width:160px;margin:0px 35px 15px;text-align:center;position:relative;}
197   -.products ul li a.name{display:block;color:#494949;text-decoration:none;margin:15px 0px;height:30px;text-transform: uppercase;}
198   -.products ul li .info{text-align: left;}
199   -.pn{border:none;}
200   -
201   -.cost{color:#f75d50;font-size:20px;margin:0px;padding:0px;}
202   -.cost span.valute{font-size:16px;}
203   -strike{font-size:18px;}
204   -
205   -a.link_buy{display:block;margin:10px auto;width:122px;height:38px;line-height:38px;background:url('../img/buy.png') no-repeat;text-transform: uppercase;color:#ffffff;text-decoration:none;font-weight:bold;text-align:center;}
206   -
207   -.mycarousel{position:absolute;right:-34px;top:-20px;}
208   -ul.mycarousel{list-style:none;margin:0px;padding:0px;}
209   -ul.mycarousel li{margin:0px;padding:0px;}
210   -.mycarousel img{border:1px solid #d2d2d2;}
211   -
212   -h3{text-align:center;text-transform: uppercase;font-size:20px;}
213   -h2.why{width:213px;height:49px;background:url('../img/logo-why.png') no-repeat;margin:0px auto; padding: 0 0 20px 0;}
214   -h2.why span{display:none;}
215   -
216   -ul.why_list{list-style:none;margin:0px;padding:0px;}
217   -ul.why_list li{float:left;width:180px;margin-right:30px;}
218   -ul.why_list li span{font-weight:bold;color:#799920;}
219   -ul.why_list li.item1{background:url('../img/why_item1.png') left no-repeat;padding:36px 0px 20px 110px;}
220   -ul.why_list li.item2{background:url('../img/why_item2.png') left no-repeat;padding:20px 0px 20px 110px;}
221   -ul.why_list li.item3{background:url('../img/why_item3.png') left no-repeat;padding:40px 0px 40px 110px;}
222   -ul.why_list li.item4{background:url('../img/why_item4.png') left no-repeat;padding:20px 0px 20px 110px;}
223   -ul.why_list li.item5{background:url('../img/why_item5.png') left no-repeat;padding:30px 0px 30px 110px;}
224   -ul.why_list li.item6{background:url('../img/why_item6.png') left no-repeat;padding:40px 0px 40px 110px;}
225   -
226   -.banner_akciya{margin:50px 0px;}
227   -
228   -.bottom{background:#4d5458;padding:40px 0px;color:#ffffff;}
229   -.bottom .leftbar{float:left;width:210px;margin-right:70px;}
230   -.bottom ul{list-style:none;margin:0px;padding:0px;line-height: 23px;}
231   -.bottom ul a{color:#ffffff;font-size:16px;text-decoration:none;}
232   -.bottom ul a:hover{color:#799920;}
233   -
234   -.phones{padding-left:25px;background:url('../img/phone.png') left top no-repeat;margin-top:50px;line-height: 23px;}
235   -.map{padding:5px 0px 5px 25px;background:url('../img/map.png') left no-repeat; margin-bottom: 7px;}
236   -a.more_map{color:#99a5ad;border-bottom:1px dotted #99a5ad;text-decoration:none;font-size:11px;text-align:center;}
237   -
238   -.bread-crumbs{padding:10px 0px 10px 20px;border-bottom:1px solid #d2d2d2;}
239   -.bread-crumbs ul{list-style:none;margin:0px 0px 0px 0px;padding:0px;}
240   -.bread-crumbs ul li{float:left;padding-right:5px;}
241   -.bread-crumbs ul li a:visited,.bread-crumbs ul li a:link{font-size:14px;color:#7d7d7d;text-decoration:underline;}
242   -.bread-crumbs ul li a:hover{color:#464646;text-decoration: none;}
243   -.breadcrumb > li + li:before {
244   - color: #ccc;
245   - content: "/ ";
246   - padding: 0 5px;
247   -}
248   -
249   -
250   -.loyout{padding:20px 0px;}
251   -.leftbar{float:left;width:200px;margin-right:35px;}
252   -.rightbar{float:right;width:380px;margin-left:35px;}
253   -.rightbar2{float:right;width:240px;margin-left:35px;}
254   -.content {overflow:hidden;min-height:500px;}
255   -* html .content{height:1%;}
256   -.content2 {overflow:hidden;}
257   -* html .content2{height:1%;}
258   -
259   -.filters{border-top:1px solid #d2d2d2;padding:20px 0px 0px;margin-top:20px;}
260   -.filters .begin{text-transform: uppercase;font-weight:bold;}
261   -.filters ul{list-style:none;margin:0px;padding:0px;line-height:22px;}
262   -.filters ul li a{color:#8fa951;text-decoration:none;}
263   -.filters ul li a:hover{text-decoration:underline;}
264   -
265   -.productLeftBar{float:left;width:230px;padding-left:20px;margin-right:20px;}
266   -.productRightBar{float:right;width:280px;margin-left:20px;}
267   -.productLeftBar h1{font-size:27px;border-bottom:1px solid #d2d2d2;margin-bottom:10px;}
268   -
269   -ul.product_mod{list-style:none;margin:10px 0px 0px 0px;padding:0px;}
270   -ul.product_mod li{float:left;margin-right:7px;}
271   -ul.product_mod li img{border:1px solid #d2d2d2;}
272   -
273   -ul.product_colors{list-style:none;margin:10px 0px 0px 0px;padding:0px;}
274   -ul.product_colors li{float:left;margin-right:7px;}
275   -ul.product_colors li img{border:1px solid #d2d2d2;}
276   -.productLeftBar .begin{text-transform: uppercase;font-weight:bold;}
277   -
278   -.cost_box{border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;margin:10px 0px;padding:10px 0px;}
279   -.cost_box .w{float:left;margin-right:20px;padding-top:5px;}
280   -
281   -.product_service ul{list-style:none;margin:0px;padding:0px;}
282   -.product_service ul li a{color:#799920;text-decoration:none;border-bottom:1px dotted #799920;font-size:12px;}
283   -.product_service ul li.item1{background:url('../img/li1.png') left no-repeat;padding:3px 23px;}
284   -.product_service ul li.item2{background:url('../img/li2.png') left no-repeat;padding:3px 23px;}
285   -.product_service ul li.item3{background:url('../img/li3.png') left no-repeat;padding:3px 23px;}
286   -
287   -#nav_product{list-style:none;margin:0px;padding:0px;line-height:23px;}
288   -#nav_product li a{background:url('../img/li_plus.png') left no-repeat;padding:3px 15px;color:#000000;text-transform: uppercase;text-decoration:none;font-weight:bold;}
289   -#nav_product li a.active{background:url('../img/li_minus.png') left no-repeat;}
290   -#nav_product li .info{display:none;border-bottom:1px solid #d2d2d2;padding:10px 0px;margin-bottom:10px;}
291   -
292   -
293   -.modal_box{
294   - position: fixed;
295   - left: 0;
296   - top: 0;
297   - width: 100%;
298   - height: 100%;
299   - z-index: 999;
300   -
301   - background: #000;
302   -filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); /* IE 5.5+*/
303   --moz-opacity: 0.5; /* Mozilla 1.6 Р С‘ РЅРёР¶Рµ */
304   --khtml-opacity: 0.5; /* Konqueror 3.1, Safari 1.1 */
305   -opacity: 0.5;
306   -
307   -}
308   -#data_box{position:absolute;top:100px;z-index:1000;width:400px;background:#ffffff;
309   - -webkit-box-shadow: 0 0 15px #000;
310   - -moz-box-shadow: 0 0 15px #000;
311   - box-shadow: 0 0 15px #000;
312   - border:7px solid #1b9bb6;
313   - border-radius:5px;
314   -}
315   -#data_box .data_wrp{padding:25px 15px 15px 15px;}
316   -#data_box .data_wrp h1{text-transform: uppercase;}
317   -#data_box .data_wrp hr{height: 1px;border: none;color: #000000;background: #000000;margin: 45px 0px 20px 0px;}
318   -#data_box .data_wrp hr.hr{height: 1px;border: none;color: #000000;background: #000000;margin: 20px 0px 20px 0px;}
319   -#data_box .pic-tango{margin-right:7px;margin-bottom:7px;}
320   -#modal_close{cursor:pointer;margin-top:-80px;margin-right:-50px;}
321   -
322   -
323   -.rightbar .control-label{float:left;width:80px;padding-top:5px;}
324   -.form-control{outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:3px;width:250px;}
325   -.form-control:focus {
326   -border:#1b9bb6 1px solid;
327   -box-shadow: 0 0 10px #1b9bb6;
328   --webkit-box-shadow: 0 0 10px #1b9bb6;
329   --moz-box-shadow: 0 0 10px #1b9bb6;
330   -}
331   -.help-block{color:red;font-size:12px;margin-bottom:5px;}
332   -
333   -.basket_item{padding:10px 0px;border-bottom:1px solid #b7b7b7;}
334   -.basket_item img{margin-right:20px;}
335   -.basket_item .count{margin:20px 0px;}
336   -.basket_item .fr{margin-top:5px;}
337   -.basket_item .info{overflow:hidden;}
338   -a.del:visited,a.del:link{background:url('../img/del.png') left center no-repeat;padding:2px 25px;font-size:12px;font-weight:normal;color:#787878;text-decoration: underline;}
339   -a.del:hover{color:#a52828;text-decoration: underline;}
340   -
341   -.total{text-align:right;color:#87476a;font-size:20px;margin:10px 0px;}
342   -
343   -.submit4{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;font-weight:bold;cursor:pointer;}
344   -.submit4:hover{background:#f75d50;}
345   -
346   -.submit4m{border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:12px;font-weight:bold;cursor:pointer;}
347   -.submit4m:hover{background:#f75d50;}
348   -
349   -.btn-primary{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;font-weight:bold;cursor:pointer;}
350   -.btn-primary:hover{background:#f75d50;}
351   -
352   -a.logout:visited,a.logout:link{border:none;padding:3px 5px;background:#f75d50;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:11px;font-weight:normal;cursor:pointer;}
353   -a.logout:hover{background:#95ba2f;}
354   -
355   -.boy_box{border-bottom:1px solid #b7b7b7;padding:0px 0px 15px 0px;}
356   -.boy_box div{padding-top:10px;}
357   -
358   -.content_product .info{padding:0px 0px 20px 0px;}
359   -
360   -a.btn-success{display:inline-block;border:2px solid #d8d6d6;color:#95ba2f;border-radius:5px;padding:5px;margin-bottom:10px;text-decoration:none;font-size:14px;}
361   -a.btn-success:hover{border:#95ba2f 2px solid;color:#f75d50;}
362   -
363   -
364   -.txtb1{font-size:14px;font-weight:bold;}
365   -.txtf{font-size:14px;font-weight:bold;color:#87476a;}
366   -.txtfb{font-size:20px;font-weight:bold;color:#87476a;}
367   -
368   -.count{margin:20px 0px;}
369   -.count input[type="number"]{outline:0;width:50px;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:7px;}
370   -
371   -a.link2:visited,a.link2:link{font-size:14px;font-weight:bold;color:#95ba2f;text-decoration: none;}
372   -a.link2:hover{color:#f75d50;text-decoration: underline;}
373   -
374   -
375   -
376   -.well{margin:50px auto;width:400px;background:#f5f5f5;border:1px solid #e8e8e8;padding:20px;border-radius:5px;}
377   -.control-label{float:left;width:100px;padding-top:5px;}
378   -#user-verifycode-image{display:block;}
379   -.form-inline{display:inline;}
380   -.form-inline .form-group{float:left;margin-right:10px;}
381   -.form-inline .form-group select{width:100px;}
382   -.form-group{margin-bottom: 10px;}
383   -.table-bordered{width:100%;border:1px solid silver;}
384   -.table-bordered th{background: #B3D1FD;padding:5px;}
385   -.table-bordered tr td{border:1px solid silver;padding:5px;}
386   -.table-bordered .filters{display: none;}
387   -
388   -.formCost label{float:left;width:30px;}
389   -
390   -ul.brends_list{list-style: none;margin:0px;padding:0px;}
391   -ul.brends_list li{float:left;text-align:center;margin:0px 15px 20px 15px;}
392   -
393   -.compare{text-align: center;}
394   -.compare a:visited,.compare a:link{font-size:12px;text-decoration: underline;}
395   -
396   -.alert-success{margin:10px 0px;padding:10px;border:1px solid #3ed824;border-radius: 5px;background: #c0feb5;}
397   -
398   -.news_item{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid silver;}
399   -.news_item img{margin-right:20px;}
400   -.news_item a{font-size:16px;}
401   -
402   -.pic{margin-right:20px;}
403   -
404   -#subscribe-sale{width:100px;float:left;margin-right:20px;}
405   -.saletxt{width:150px;float:left;color:#ffffff;}
406   -#subscribe-email{width:390px;}
407   -
408   -.txts{color:#9da9b1;font-size:18px;margin-bottom:20px;}
409   -
410   -.content ul.pagination{list-style:none;text-align:center;}
411   -.content ul.pagination li{display:inline;}
412   -.content ul.pagination li a{padding:3px;color:#82a02f;font-size: 16px;margin:0px; text-decoration: none; }
413   -.content ul.pagination li a:hover {text-decoration: underline}
414   -.content ul.pagination li.active a{color: #333333;}
415   -.boxitem{height:300px;}
416   -ul.social {margin-top: 20px;}
417   -.social{list-style: none;margin: 10px;padding: 0px;height:48px;}
418   -.social li{display:inline-block;margin-right:7px;padding-bottom: 10px;}
419   -.social li a{
420   - width:36px;
421   - height:36px;
422   - display:block;
423   - margin:0;padding:0;
424   - text-indent:-9999px;
425   - background:#bcbcbc url(../img/social-ico-two.png) no-repeat 0 0;
426   - border-radius:48px;
427   - -moz-border-radius:48px;
428   - -webkit-border-radius:48px;
429   - -webkit-transition: all 0.5s ease-out;
430   - -moz-transition: all 0.5s ease-out;
431   - transition: all 0.5s ease-out;
432   -}
433   -.social .fb{background-position:-44px 0;
434   -cursor: pointer;
435   -}
436   -.social .vk{
437   -cursor: pointer;
438   -}
439   -.social .vk:hover{background-color:#5B7FA6;}
440   -.social .fb:hover{background-color:#354f89;
441   -}
442   -.social .gp{background-position:-132px 0;
443   -cursor: pointer;}
444   -.social .gp:hover{background-color:#c72f21;}
445   -.social .tw{background-position:-144px 0;
446   -cursor: pointer;}
447   -.social .tw:hover{background-color:#6398c9;}
448   -.social .ok{background-position:-89px 0;
449   -cursor: pointer;}
450   -.social .ok:hover{background-color:#f88f15;}
451   -.social ul li a:hover{
452   - background-color:#065baa;
453   -}
454   -
455   -.socialbox{margin:10px 0px;}
456   -.hide{display:none;}
457   -
458   -
459   -
460   -.fotter{background: #484f55;height: 50px;color:#98a3ab;}
461   -.fotter a{color:#98a3ab; line-height: 50px; float: left;}
462   -
463   -
464   -.view_products2{list-style: none;overflow:auto;height:400px;}
465   -.view_products2 img{float:left;margin-right:20px;}
466   -.view_products2 li{margin:10px 0px;}
467   -
468   -
469   -.pixbox{width:134px;height:200px;overflow: hidden;text-align: center;}
470   -
471   -
472   -.form-order{background:#f5f5f5;padding:10px;border:1px solid #d2d2d2;}
473   -#order-payment{float:right;width:280px;}
474   -#order-delivery{float:right;width:280px;}
475   -
476   -.delivery-data{padding:5px;border:1px solid #1bb631;background: #b7f5bf;display:none;border-radius: 5px;}
477   -
478   -.jcarousel-next-disabled, .jcarousel-prev-disabled {display: none !important;}
479   -.content2 br {display: none;}
480   -.pixbox a {
481   - width: 134px;
482   - height: 200px;
483   - display: table-cell;
484   - vertical-align: middle;
485   -}
486   -.pixbox img {
487   - max-width: 134px;
488   - max-height: 200px;
489   - vertical-align: middle;
490   -}
491   -.pagination li.prev.disabled span {
492   - padding: 9px;
493   - border-radius: 10%;
494   - color: #4D5458;
495   - font-size: 14px;
496   - margin: 0px;
497   - border: 1px solid #4d5458;
498   -}
499   -.fr {float: right;}
500   -
501   -.nobottom{border-bottom:none !important;}
502   -
503   -.dotted a{border-bottom: 1px dotted #808080;}
504   -
505   -.mycabinet{padding-left:20px;margin-top:20px;}
506   -.mycabinet .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
507   -.mycabinet ul{margin:0px;padding:0px;list-style:none;}
508   -.mycabinet ul li{padding-top:10px;padding-bottom:10px;}
509   -.mycabinet a{color:#799920;text-decoration:none;}
510   -
511   -.lay_title .uppercase{text-transform:uppercase;}
512   -.lay_title .center{text-align:center;}
513   -.lay_title{padding-top:15px;font-size:24px;}
514   -
515   -.user_data{width:390px;border-right:1px solid #d2d2d2;float:left;}
516   -.user_data .col{padding-bottom:35px;}
517   -.user_data .col.last{padding-bottom:0px;}
518   -.user_data .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
519   -.user_data .data{float:left;font-size:13px;}
520   -
521   -.edit_menu{float:left;padding-left:60px;font-size:13px;}
522   -.edit_menu div{padding-bottom:20px;}
523   -.edit_menu a{color:#799920;text-decoration:none;}
524   -.edit_menu .dotted{border-bottom:1px dotted #799920;}
525   -
526   -.user_edit_area{padding-top:30px;}
527   -
528   -/* part two */
529   -
530   -.user_data_editing{float:left;}
531   -.inputs .col{padding-bottom:12px !important;}
532   -.user_data_editing .col{padding-bottom:35px; width:432px;}
533   -.user_data_editing .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
534   -.user_data_editing .data{float:left;font-size:13px; width:262px;}
535   -
536   -.user_data_editing input[type="text"] {
537   - padding:0;
538   - margin:0;
539   - border:1px solid #d2d2d2;
540   - padding-top:7px;
541   - padding-bottom:7px;
542   - padding-left:10px;
543   - padding-right:10px;
544   - border-radius:4px;
545   - font-size:12px;
546   - margin-top:-10px;
547   - width: 240px;
548   -}
549   -
550   -.user_data_editing .add {color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
551   -.add_more{padding-bottom:24px; padding-left:170px;}
552   -
553   -.delete{float:right;}
554   -.delete_button{background: url('../img/ico_close.png') right no-repeat; width:16px;height:16px;float:right;}
555   -
556   -.content_area{width:450px;}
557   -
558   -.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;}
559   -.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;}
560   -#cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px;}
561   -
562   -.buttons{
563   - display: inline-flex;
564   - align-items: center;}
565   -
566   -/* part three */
567   -
568   -.favorites{background-color:#f5f5f5; padding:5px;font-size:14px;}
569   -.favorites .fav_point{background-color:#ffffff;border:1px solid #d2d2d2;border-radius:3px;padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px; margin-top:5px;}
570   -.favorites .fav_point .left{float:left; padding-right:0; width:178px;}
571   -.favorites .fav_point .right{float:right; padding-right:0; padding-left:0;}
572   -
573   -.favorites .link{color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
574   -
575   -.redtext{color:#f75d50;}
576   -.greentext{color:#95ba2f;}
577   -
578   -/* part three one */
579   -.hold .orders_view{display:none !important;}
580   -.orders_view{width:680px;margin-top:13px;padding-top:13px;padding-bottom:5px;border-top:1px solid #d2d2d2;display:block;}
581   -.orders_view .order{float:left;width:225px;text-align:center;}
582   -.orders_view .order .order_price{color:#f75d50;font-weight:bold;font-size:15px;}
583   -.orders_view .order .order_price span{font-size:24px;}
584   -.orders_view .order img{padding-bottom:22px;}
585   -.orders_view .order .note{font-size:13px;}
586   -.orders_view .order .note span{color:#f75d50;}
587   -
588   -.basket_hovered{
589   - position:absolute;
590   - border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;
591   - background-color:white;
592   - right:-1px;
593   - margin-top:10px;
594   - width:640px;
595   - display:none;
596   - z-index:1111;
597   -}
598   -
599   -
600   -.open .basket_hovered{
601   - display:block;
602   -}
603   -
604   -.open, .open .basket_hovered {
605   - -moz-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
606   - -webkit-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
607   - box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
608   -}
609   -.basket_hovered1:before{
610   - position:absolute;
611   - left:0;
612   - content:' ';
613   - width:100%;
614   - background-color:white;
615   - height:10px;
616   - top:45px;
617   - z-index:1112;
618   -}
619   -
620   -.basket_item input{
621   - border: 1px solid #d2d2d2;
622   - border-radius: 4px;
623   - padding:9px;
624   - width:26px;
625   - font-size:18px;
626   - font-weight:bold;
627   - text-align:center;
628   - background-color:white;
629   - color: black;
630   - margin:7px;
631   -}
632   -input[type=number]::-webkit-inner-spin-button,
633   -input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;
634   - margin:0;}
635   -
636   -
637   -.minus{background:url('../img/minus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
638   -.plus{background:url('../img/plus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
639   -
640   -.basket_sum{padding-top:15px;}
641   -
642   -.basket_sum .sum_text{font-size:15px; text-transform:none;padding-top:12px;float: right !important;padding-top: 1px;margin-bottom: 11px;}
643   -.basket_sum .sum_text span{font-size:18px; color:#f75d50; font-weight:bold;}
644   -.basket_sum a{color:white !important; font-size:15px !important; float:right;}
645   -
646   -
647   -.black{z-index:9999; background-color:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;display:block;padding-top:9%;}
648   -.black.hidden{display:none;}
649   -.black .item_added_win{background-color:#ffffff;width:640px; margin:auto;position:relative;}
650   -
651   -.black_close{position:absolute; top:30px;right:30px;background:url('../img/ico_close2.png') no-repeat;width:22px;height:22px;display:inline-block;cursor:pointer;}
652   -
653   -.block_content{padding-left:20px;padding-right:20px;}
654   -.item_added_win h2{text-transform:uppercase;text-align:center;padding:30px;}
655   -
656   -.block_content .item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #d2d2d2;}
657   -
658   -.uppercase{text-transform:uppercase;}
659   -
660   -.w230{width:230px;}
661   -.w260{width:260px;}
662   -.w430{width:430px;}
663   -.borderbottom{border-bottom:1px solid #d2d2d2;}
664   -.left_block .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
665   -
666   -.color_variants .variant{
667   - text-align:center;
668   - border:1px solid #d2d2d2;
669   - float:left;
670   - margin-right:5px;
671   - margin-bottom:5px;
672   -}
673   -.variant:hover{cursor:pointer;}
674   -.color_variants{margin-top:14px;margin-bottom:-5px;}
675   -.color_variants .variant.active{width:44px;height:44px;border:2px solid #95ba2f;}
676   -.color_variants .variant.active a{width:44px;height:44px;}
677   -
678   -.tobasket{margin-top:20px;margin-bottom:20px;}
679   -.tobasket:hover{color:white;}
680   -
681   -.variant{width:46px;height:46px;}
682   -.variant.active{width:44px;height:44px;}
683   -
684   -.layout{margin-top:15px;}
685   -.left_block{float:left;}
686   -.right_block{float:right;}
687   -.center_block{float:left;margin-left:23px;}
688   -
689   -.left_block .links{margin-top:25px;}
690   -
691   -.left_block .links li{list-style: none; padding-left:25px;display:inline-block;cursor:pointer;height:20px;}
692   -.left_block .links ul{margin:0;padding:0;}
693   -.left_block .links a{font-size:13.5px;text-decoration:none; color:#8ba73e;}
694   -
695   -
696   -.links .add_bookmarks{background:url('../img/ico_add_bookmark.png') no-repeat center left; }
697   -.links .what_price{background:url('../img/ico_price.png') no-repeat center left; }
698   -.links .add_compare{background:url('../img/ico_scales.png') no-repeat center left; }
699   -
700   -.spoiler_one{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #d2d2d2;}
701   -.spoiler_one .spoiler_content{margin-top:15px;font-size:13px;}
702   -.spoiler_one .spoiler_content.hidden{display:none;}
703   -
704   -.title_spoiler:hover {cursor: pointer}
705   -
706   -.title_spoiler{
707   - background:url('../img/ico_open.png') no-repeat center left;
708   - padding-left: 17px;
709   - font-size:13px;
710   - text-transform:uppercase;
711   - color:#333333;
712   - font-weight:bold;
713   - text-decoration:none;
714   -}
715   -.title_spoiler.closed{
716   - background:url('../img/ico_close3.png') no-repeat center left;
717   -}
718   -
719   -.features{
720   - list-style:none;
721   - padding:0;
722   - margin:0;
723   - font-size:13px;
724   -}
725   -.features a{
726   - font-size:13px;
727   - text-decoration:none;
728   - border-bottom:1px dotted #8ba73e;
729   - color:#8ba73e;
730   -}
731   -.features li{
732   - padding-top:5px;
733   - padding-bottom:4px;
734   -}
735   -
736   -.note_prod{
737   - width:225px;
738   - height:23px;
739   - overflow:hidden;
740   - border-radius:5px;
741   - display:table;
742   - text-transform:uppercase;
743   - font-size:11px;
744   - font-weight:bold;
745   -}
746   -
747   -.note_prod .one{
748   - z-index:999;
749   -}
750   -.note_prod .two{
751   - z-index:998;
752   -}
753   -
754   -.note_prod .blue{
755   - float:left;
756   - padding-top:5px;
757   - padding-bottom:5px;
758   - background-color:#42b9f6;
759   - padding-left:10px;
760   - padding-right:5px;
761   - position:relative;
762   -}
763   -
764   -.note_prod .blue:after{
765   - content:'';
766   - width: 0;
767   - height: 0;
768   - border-top: 13px solid transparent;
769   - border-left: 5px solid #42b9f6;
770   - border-bottom: 13px solid transparent;
771   - position:absolute;
772   - top:-1px;
773   - margin-left:5px;
774   -}
775   -.note_prod .red{
776   - float:left;
777   - padding-top:5px;
778   - padding-bottom:5px;
779   - background-color:#f75d50;
780   - padding-left:10px;
781   - padding-right:5px;
782   - position:relative;
783   - color:#ffffff;
784   -}
785   -.note_prod .red:after{
786   - content:'';
787   - width: 0;
788   - height: 0;
789   - border-top: 13px solid transparent;
790   - border-left: 5px solid #f75d50;
791   - border-bottom: 13px solid transparent;
792   - position:absolute;
793   - top:-1px;
794   - margin-left:5px;
795   -}
796   -.note_prod .yellow{
797   - float:left;
798   - padding-top:5px;
799   - padding-bottom:5px;
800   - background-color:#fbc665;
801   - padding-left:10px;
802   - padding-right:5px;
803   - position:relative;
804   -}
805   -.note_prod .yellow:after{
806   - content:'';
807   - width: 0;
808   - height: 0;
809   - border-top: 13px solid transparent;
810   - border-left: 5px solid #fbc665;
811   - border-bottom: 13px solid transparent;
812   - position:absolute;
813   - top:-1px;
814   - margin-left:5px;
815   -}
816   -
817   -
818   -.products_block .product{float:left; width:190px; vertical-align:bottom;}
819   -.product .image{height:225px;position:relative;}
820   -.product .image img{position:absolute;bottom:0;left:15px;}
821   -
822   -.price{
823   - font-size: 18px;
824   - color: #f75d50;
825   - font-weight: bold;
826   - text-align:center;}
827   -
828   -.product{padding-bottom:30px;position:relative;}
829   -.product p{font-size:15px; text-align:center; margin-top:15px;}
830   -.left52{margin-left:52px;}
831   -.product a{color:#ffffff;}
832   -.mrg1{margin-top: 25px; margin-bottom: 15px;}
833   -
834   -.products_martopbot{margin-top:60px;margin-bottom:100px;}
835   -
836   -.cont_shop_but{display:table-cell;vertical-align:middle;padding:35px;}
837   -.cont_shop{text-decoration:none;font-size:12px;border-bottom:1px dotted #799920;color:#799920;}
838   -
839   -.icons{
840   - width:45px;
841   - height:50%;
842   - position:absolute;
843   - z-index:9;
844   - right:0;
845   - padding-top:25px;
846   - padding-right:15px;
847   -}
848   -.icons a{
849   - width:44px;
850   - height:44px;
851   - float: left;
852   - border: 1px solid #d2d2d2;
853   - margin-bottom: 5px;
854   - background-color: white;
855   -}
856   -a:hover{cursor:pointer;}
857   -
858   -
859   -.basket_item .form-group{display:inline;}
860   -
861   -.basket.open:after{
862   - content: '';
863   - position: absolute;
864   - top: 43px;
865   - width: 100%;
866   - height: 10px;
867   - background-color: white;
868   - left: 0;
869   - z-index: 9990;
870   -}
871   -
872   -.basket_hovered .basket_sum{float:left;}
873   -
874   -a.active{font-weight:bold;text-decoration: underline;}
875 0 \ No newline at end of file
frontend/web/css/_style.css deleted
1   -html,form,
2   -body { padding:0px;margin:0px;
3   -font-family: 'Ubuntu',Arial, Tahoma, Helvetica, sans-serif;font-size:14px;color:#1d1d1b;height:100%;
4   -}
5   -h1,h2,h3{margin:0px;padding:0px 0px 10px 0px;}
6   -.fl{float:left;}
7   -.fotter .wrap .fr{float:right; width: 180px; height: 50px; position: relative;}
8   -.fotter .wrap .fr img{position: absolute; top: 50%; margin-top: -10px; right: 0;}
9   -.fotter .wrap .fl {line-height: 50px;}
10   -.both{clear:both;}
11   -h1{margin:10px 0px;font-size:24px;}
12   -h3{margin-bottom:30px;}
13   -p{margin:3px 0px;padding:0px;}
14   -
15   -a{color:#6a6a6a;font-size:14px;text-decoration:underline;}
16   -a:hover{color:#799920;}
17   -
18   -.wrap {
19   - width:960px;margin:0px auto;
20   -}
21   -.f{background: #ffffff;}
22   -
23   -.br{-webkit-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
24   --moz-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
25   -box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
26   -padding:20px;}
27   -
28   -nav.top{background:#f5f5f5;padding:10px 0px;border-bottom:1px solid #d2d2d2;font-size:12px;}
29   -nav.top ul{list-style:none;margin:0px;padding:0px;}
30   -nav.top ul li{float:left;padding-right:20px;}
31   -nav.top a{color:#6a6a6a;text-decoration:none;}
32   -
33   -#help{background:url('../img/help.png') right no-repeat;padding-right:20px;}
34   -#help span{border-bottom:1px dotted #6a6a6a;}
35   -
36   -#login{background:url('../img/login.png') right no-repeat;padding-right:20px;}
37   -#login span{border-bottom:1px dotted #6a6a6a;}
38   -
39   -.search{margin:-5px 0px -5px 100px;float:left;}
40   -nav input[type="text"]{width:325px;outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;}
41   -nav input[type="submit"]{width:35px;height:29px;border:none;background:url('../img/lupa_sub.png') center no-repeat;margin-left:-35px;cursor:pointer;}
42   -
43   -
44   -
45   -.header{margin:0px 0px 20px;}
46   -
47   -.phone{float:left;position:relative;text-align:center;margin-top:20px;}
48   -.phone .tel{font-size:23px;}
49   -.phone .tel span.more{margin-bottom: 3px}
50   -.more_block{background:#ffffff;border:1px solid #d2d2d2;padding:10px;position:absolute;font-size:20px;display:none;z-index:99;}
51   -
52   -.more{background:url('../img/more.png') no-repeat;width:12px;height:7px;display:inline-block;cursor:pointer;margin-bottom:5px;}
53   -
54   -
55   -.logo{margin:0px auto 0px;width:193px;}
56   -.logo a{display:block;width:193px;height:84px;background:url('../img/logo.png') no-repeat;}
57   -.logo a span{display:none;}
58   -
59   -#call{color:#6a6a6a;text-decoration:none;border-bottom:1px dotted #6a6a6a;}
60   -
61   -.basket{float:right;position:relative;border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;font-size:18px;text-transform: uppercase;margin-top:13px;}
62   -.basket .info{float:left;border-right:1px solid #d2d2d2;padding-right:10px;margin-right:17px;}
63   -.basket .info span{color:#f75d50;font-size:22px;}
64   -.basket a:link,.basket a:visited{text-decoration:none;color:#000000;font-size:18px;}
65   -
66   -.basket span.more {margin-bottom: -1px}
67   -.menu{background:#596065;border:1px solid #e8e8e8;}
68   -.menu ul{margin:0px;padding:0px;list-style:none;}
69   -.menu ul li{float:left;border-right:1px solid #e8e8e8;}
70   -.menu ul li a{float:left;padding:15px 20px 15px 20px;text-transform: uppercase;color:#ffffff;font-size:14px;font-weight:bold;text-decoration: none;}
71   -.menu ul li a:hover{color:#e5e4e4;}
72   -.menu ul li.active a{background:#f5f5f5;color:#596065;}
73   -
74   -.menu_childs{background:#f5f5f5;border:1px solid #e8e8e8;border-bottom:2px solid #596065;}
75   -.menu_childs ul{margin:0px;padding:0px;list-style:none;}
76   -.menu_childs ul li{float:left;}
77   -.menu_childs ul li a{float:left;padding:15px 23px 15px 23px;text-transform: uppercase;color:#596065;font-size:14px;font-weight:bold;text-decoration: none;}
78   -.menu_childs ul li a:hover{color:#878b8e;}
79   -
80   -.fr ul li{border:none;}
81   -.akciya a{background:#f75d50;color:#ffffff;}
82   -.brends a{background:#95ba2f;color:#ffffff;}
83   -
84   -a.myorders{color:#f75d50}
85   -
86   -
87   -.slider{margin-top:20px;}
88   -
89   -
90   -
91   -
92   -
93   -
94   -
95   -
96   -#slides{width:720px;height:340px;position:relative;}
97   -.banner{float:left;margin-right:20px;}
98   -
99   -.slides_container {
100   - width:720px;
101   - overflow:hidden;
102   - position:relative;
103   - display:none;
104   -}
105   -
106   -/*
107   - Each slide
108   - Important:
109   - Set the width of your slides
110   - If height not specified height will be set by the slide content
111   - Set to display block
112   -*/
113   -
114   -.slides_container div.slide {
115   - width:720px;
116   - height:340px;
117   - display:block;
118   -}
119   -
120   -
121   -/*
122   - Next/prev buttons
123   -*/
124   -
125   -#slides .prev {
126   - position:absolute;
127   - top:150px;
128   - left:20px;
129   - width:25px;
130   - height:39px;
131   - display:block;
132   - z-index:999;
133   -}
134   -
135   -#slides .next {
136   - position:absolute;
137   - top:150px;
138   - right:15px;
139   - width:25px;
140   - height:39px;
141   - display:block;
142   - z-index:999;
143   -}
144   -
145   -
146   -/*
147   - Pagination
148   -*/
149   -
150   -#slides .pagination {
151   - padding:0px;
152   - position:relative;z-index:999;margin:-30px auto;display:table;
153   -}
154   -
155   -#slides .pagination ul{list-style:none;margin:0px;padding:0px;}
156   -
157   -#slides .pagination li {
158   - float:left;
159   - margin:0 3px;
160   - list-style:none;
161   -}
162   -
163   -#slides .pagination li a {
164   - display:block;
165   - width:10px;
166   - height:0;
167   - padding-top:12px;
168   - background-image:url(../img/pagination.png);
169   - background-position:0 -12px;
170   - float:left;
171   - overflow:hidden;
172   -}
173   -
174   -#slides .pagination li.current a {
175   - background-position:0 0px;
176   -}
177   -
178   -
179   -
180   -.sub{margin:2px 0px 0px 0px;}
181   -.sub img{float:left;margin-right:2px;}
182   -
183   -.rubrics{margin:35px 0px;padding-bottom:10px;}
184   -.rubrics ul{list-style:none;margin:0px;padding:0px;}
185   -.rubrics ul li{float:left;margin:0px 35px;}
186   -.rubrics ul li a{float:left;width:120px;padding-top:130px;text-align:center;text-transform: uppercase;color:#494949;text-decoration:none;font-weight:bold;}
187   -.rubrics ul li.item1 a{background:url('../img/ico1.png') no-repeat;}
188   -.rubrics ul li.item2 a{background:url('../img/ico2.png') no-repeat;}
189   -.rubrics ul li.item3 a{background:url('../img/ico3.png') no-repeat;}
190   -.rubrics ul li.item4 a{background:url('../img/ico4.png') no-repeat;}
191   -.rubrics ul li.item5 a{background:url('../img/ico5.png') no-repeat;}
192   -
193   -
194   -.products{border-top:1px solid #d2d2d2;padding-bottom:30px;padding-top:20px;}
195   -.products ul{list-style:none;margin:0px;padding:0px;}
196   -.products ul li.item{float:left;width:160px;margin:0px 35px 15px;text-align:center;position:relative;}
197   -.products ul li a.name{display:block;color:#494949;text-decoration:none;margin:15px 0px;height:30px;}
198   -.products ul li .info{text-align: left;}
199   -.pn{border:none;}
200   -
201   -.cost{color:#f75d50;font-size:20px;margin:0px;padding:0px;}
202   -.cost span.valute{font-size:16px;}
203   -strike{font-size:18px;}
204   -
205   -a.link_buy{display:block;margin:10px auto;width:122px;height:38px;line-height:38px;background:url('../img/buy.png') no-repeat;text-transform: uppercase;color:#ffffff;text-decoration:none;font-weight:bold;text-align:center;}
206   -
207   -.mycarousel{position:absolute;right:-34px;top:-20px;}
208   -ul.mycarousel{list-style:none;margin:0px;padding:0px;}
209   -ul.mycarousel li{margin:0px;padding:0px;}
210   -.mycarousel img{border:1px solid #d2d2d2;}
211   -
212   -h3{text-align:center;text-transform: uppercase;font-size:20px;}
213   -h2.why{width:213px;height:49px;background:url('../img/logo-why.png') no-repeat;margin:0px auto; padding: 0 0 20px 0;}
214   -h2.why span{display:none;}
215   -
216   -ul.why_list{list-style:none;margin:0px;padding:0px;}
217   -ul.why_list li{float:left;width:180px;margin-right:30px;}
218   -ul.why_list li span{font-weight:bold;color:#799920;}
219   -ul.why_list li.item1{background:url('../img/why_item1.png') left no-repeat;padding:36px 0px 20px 110px;}
220   -ul.why_list li.item2{background:url('../img/why_item2.png') left no-repeat;padding:20px 0px 20px 110px;}
221   -ul.why_list li.item3{background:url('../img/why_item3.png') left no-repeat;padding:40px 0px 40px 110px;}
222   -ul.why_list li.item4{background:url('../img/why_item4.png') left no-repeat;padding:20px 0px 20px 110px;}
223   -ul.why_list li.item5{background:url('../img/why_item5.png') left no-repeat;padding:30px 0px 30px 110px;}
224   -ul.why_list li.item6{background:url('../img/why_item6.png') left no-repeat;padding:40px 0px 40px 110px;}
225   -
226   -.banner_akciya{margin:50px 0px;}
227   -
228   -.bottom{background:#4d5458;padding:40px 0px;color:#ffffff;}
229   -.bottom .leftbar{float:left;width:210px;margin-right:70px;}
230   -.bottom ul{list-style:none;margin:0px;padding:0px;line-height: 23px;}
231   -.bottom ul a{color:#ffffff;font-size:16px;text-decoration:none;}
232   -.bottom ul a:hover{color:#799920;}
233   -
234   -.phones{padding-left:25px;background:url('../img/phone.png') left top no-repeat;margin-top:50px;line-height: 23px;}
235   -.map{padding:5px 0px 5px 25px;background:url('../img/map.png') left no-repeat; margin-bottom: 7px;}
236   -a.more_map{color:#99a5ad;border-bottom:1px dotted #99a5ad;text-decoration:none;font-size:11px;text-align:center;}
237   -
238   -.bread-crumbs{padding:10px 0px 10px 20px;border-bottom:1px solid #d2d2d2;}
239   -.bread-crumbs ul{list-style:none;margin:0px 0px 0px 0px;padding:0px;}
240   -.bread-crumbs ul li{float:left;padding-right:5px;}
241   -.bread-crumbs ul li a:visited,.bread-crumbs ul li a:link{font-size:14px;color:#7d7d7d;text-decoration:underline;}
242   -.bread-crumbs ul li a:hover{color:#464646;text-decoration: none;}
243   -.breadcrumb > li + li:before {
244   - color: #ccc;
245   - content: "/ ";
246   - padding: 0 5px;
247   -}
248   -
249   -
250   -.loyout{padding:20px 0px;}
251   -.leftbar{float:left;width:200px;margin-right:35px;}
252   -.rightbar{float:right;width:380px;margin-left:35px;}
253   -.rightbar2{float:right;width:240px;margin-left:35px;}
254   -.content {overflow:hidden;min-height:500px;}
255   -* html .content{height:1%;}
256   -.content2 {overflow:hidden;}
257   -* html .content2{height:1%;}
258   -
259   -.filters{border-top:1px solid #d2d2d2;padding:20px 0px 0px;margin-top:20px;}
260   -.filters .begin{text-transform: uppercase;font-weight:bold;}
261   -.filters ul{list-style:none;margin:0px;padding:0px;line-height:22px;}
262   -.filters ul li a{color:#8fa951;text-decoration:none;}
263   -.filters ul li a:hover{text-decoration:underline;}
264   -
265   -.productLeftBar{float:left;width:230px;padding-left:20px;margin-right:20px;}
266   -.productRightBar{float:right;width:280px;margin-left:20px;}
267   -.productLeftBar h1{font-size:27px;border-bottom:1px solid #d2d2d2;margin-bottom:10px;}
268   -
269   -ul.product_mod{list-style:none;margin:10px 0px 0px 0px;padding:0px;}
270   -ul.product_mod li{float:left;margin-right:7px;}
271   -ul.product_mod li img{border:1px solid #d2d2d2;}
272   -
273   -ul.product_colors{list-style:none;margin:10px 0px 0px 0px;padding:0px;}
274   -ul.product_colors li{float:left;margin-right:7px;}
275   -ul.product_colors li img{border:1px solid #d2d2d2;}
276   -.productLeftBar .begin{text-transform: uppercase;font-weight:bold;}
277   -
278   -.cost_box{border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;margin:10px 0px;padding:10px 0px;}
279   -.cost_box .w{float:left;margin-right:20px;padding-top:5px;}
280   -
281   -.product_service ul{list-style:none;margin:0px;padding:0px;}
282   -.product_service ul li a{color:#799920;text-decoration:none;border-bottom:1px dotted #799920;font-size:12px;}
283   -.product_service ul li.item1{background:url('../img/li1.png') left no-repeat;padding:3px 23px;}
284   -.product_service ul li.item2{background:url('../img/li2.png') left no-repeat;padding:3px 23px;}
285   -.product_service ul li.item3{background:url('../img/li3.png') left no-repeat;padding:3px 23px;}
286   -
287   -#nav_product{list-style:none;margin:0px;padding:0px;line-height:23px;}
288   -#nav_product li a{background:url('../img/li_plus.png') left no-repeat;padding:3px 15px;color:#000000;text-transform: uppercase;text-decoration:none;font-weight:bold;}
289   -#nav_product li a.active{background:url('../img/li_minus.png') left no-repeat;}
290   -#nav_product li .info{display:none;border-bottom:1px solid #d2d2d2;padding:10px 0px;margin-bottom:10px;}
291   -
292   -
293   -.modal_box{
294   - position: fixed;
295   - left: 0;
296   - top: 0;
297   - width: 100%;
298   - height: 100%;
299   - z-index: 999;
300   -
301   - background: #000;
302   -filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); /* IE 5.5+*/
303   --moz-opacity: 0.5; /* Mozilla 1.6 Р С‘ РЅРёР¶Рµ */
304   --khtml-opacity: 0.5; /* Konqueror 3.1, Safari 1.1 */
305   -opacity: 0.5;
306   -
307   -}
308   -#data_box{position:absolute;top:100px;z-index:1000;width:400px;background:#ffffff;
309   - -webkit-box-shadow: 0 0 15px #000;
310   - -moz-box-shadow: 0 0 15px #000;
311   - box-shadow: 0 0 15px #000;
312   - border:7px solid #1b9bb6;
313   - border-radius:5px;
314   -}
315   -#data_box .data_wrp{padding:25px 15px 15px 15px;}
316   -#data_box .data_wrp h1{text-transform: uppercase;}
317   -#data_box .data_wrp hr{height: 1px;border: none;color: #000000;background: #000000;margin: 45px 0px 20px 0px;}
318   -#data_box .data_wrp hr.hr{height: 1px;border: none;color: #000000;background: #000000;margin: 20px 0px 20px 0px;}
319   -#data_box .pic-tango{margin-right:7px;margin-bottom:7px;}
320   -#modal_close{cursor:pointer;margin-top:-80px;margin-right:-50px;}
321   -
322   -
323   -.rightbar .control-label{float:left;width:80px;padding-top:5px;}
324   -.form-control{outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:3px;width:250px;}
325   -.form-control:focus {
326   -border:#1b9bb6 1px solid;
327   -box-shadow: 0 0 10px #1b9bb6;
328   --webkit-box-shadow: 0 0 10px #1b9bb6;
329   --moz-box-shadow: 0 0 10px #1b9bb6;
330   -}
331   -.help-block{color:red;font-size:12px;margin-bottom:5px;}
332   -
333   -.basket_item{padding:10px 0px;border-bottom:1px solid #b7b7b7;}
334   -.basket_item img{margin-right:20px;}
335   -.basket_item .count{margin:20px 0px;}
336   -.basket_item .fr{margin-top:5px;}
337   -.basket_item .info{overflow:hidden;}
338   -a.del:visited,a.del:link{background:url('../img/del.png') left center no-repeat;padding:2px 25px;font-size:12px;font-weight:normal;color:#787878;text-decoration: underline;}
339   -a.del:hover{color:#a52828;text-decoration: underline;}
340   -
341   -.total{text-align:right;color:#87476a;font-size:20px;margin:10px 0px;}
342   -
343   -.submit4{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;font-weight:bold;cursor:pointer;}
344   -.submit4:hover{background:#f75d50;}
345   -
346   -.submit4m{border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:12px;font-weight:bold;cursor:pointer;}
347   -.submit4m:hover{background:#f75d50;}
348   -
349   -.btn-primary{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;font-weight:bold;cursor:pointer;}
350   -.btn-primary:hover{background:#f75d50;}
351   -
352   -a.logout:visited,a.logout:link{border:none;padding:3px 5px;background:#f75d50;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:11px;font-weight:normal;cursor:pointer;}
353   -a.logout:hover{background:#95ba2f;}
354   -
355   -.boy_box{border-bottom:1px solid #b7b7b7;padding:0px 0px 15px 0px;}
356   -.boy_box div{padding-top:10px;}
357   -
358   -.content_product .info{padding:0px 0px 20px 0px;}
359   -
360   -a.btn-success{display:inline-block;border:2px solid #d8d6d6;color:#95ba2f;border-radius:5px;padding:5px;margin-bottom:10px;text-decoration:none;font-size:14px;}
361   -a.btn-success:hover{border:#95ba2f 2px solid;color:#f75d50;}
362   -
363   -
364   -.txtb1{font-size:14px;font-weight:bold;}
365   -.txtf{font-size:14px;font-weight:bold;color:#87476a;}
366   -.txtfb{font-size:20px;font-weight:bold;color:#87476a;}
367   -
368   -.count{margin:20px 0px;}
369   -.count input[type="number"]{outline:0;width:50px;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:7px;}
370   -
371   -a.link2:visited,a.link2:link{font-size:14px;font-weight:bold;color:#95ba2f;text-decoration: none;}
372   -a.link2:hover{color:#f75d50;text-decoration: underline;}
373   -
374   -
375   -
376   -.well{margin:50px auto;width:400px;background:#f5f5f5;border:1px solid #e8e8e8;padding:20px;border-radius:5px;}
377   -.control-label{float:left;width:100px;padding-top:5px;}
378   -#user-verifycode-image{display:block;}
379   -.form-inline{display:inline;}
380   -.form-inline .form-group{float:left;}
381   -.form-inline .form-group select{width:100px;}
382   -.form-group{margin-bottom: 10px;}
383   -.table-bordered{width:100%;border:1px solid silver;}
384   -.table-bordered th{background: #B3D1FD;padding:5px;}
385   -.table-bordered tr td{border:1px solid silver;padding:5px;}
386   -.table-bordered .filters{display: none;}
387   -
388   -.formCost label{float:left;width:30px;}
389   -
390   -ul.brends_list{list-style: none;margin:0px;padding:0px;}
391   -ul.brends_list li{float:left;text-align:center;margin:0px 15px 20px 15px;}
392   -
393   -.compare{text-align: center;}
394   -.compare a:visited,.compare a:link{font-size:12px;text-decoration: underline;}
395   -
396   -.alert-success{margin:10px 0px;padding:10px;border:1px solid #3ed824;border-radius: 5px;background: #c0feb5;}
397   -
398   -.news_item{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid silver;}
399   -.news_item img{margin-right:20px;}
400   -.news_item a{font-size:16px;}
401   -
402   -.pic{margin-right:20px;}
403   -
404   -#subscribe-sale{width:100px;float:left;margin-right:20px;}
405   -.saletxt{width:150px;float:left;color:#ffffff;}
406   -#subscribe-email{width:390px;}
407   -
408   -.txts{color:#9da9b1;font-size:18px;margin-bottom:20px;}
409   -
410   -.content ul.pagination{list-style:none;text-align:center;}
411   -.content ul.pagination li{display:inline;}
412   -.content ul.pagination li a{padding:3px;color:#82a02f;font-size: 16px;margin:0px; text-decoration: none; }
413   -.content ul.pagination li a:hover {text-decoration: underline}
414   -.content ul.pagination li.active a{color: #333333;}
415   -.boxitem{height:300px;}
416   -ul.social {margin-top: 20px;}
417   -.social{list-style: none;margin: 10px;padding: 0px;height:48px;}
418   -.social li{display:inline-block;margin-right:7px;padding-bottom: 10px;}
419   -.social li a{
420   - width:36px;
421   - height:36px;
422   - display:block;
423   - margin:0;padding:0;
424   - text-indent:-9999px;
425   - background:#bcbcbc url(../img/social-ico-two.png) no-repeat 0 0;
426   - border-radius:48px;
427   - -moz-border-radius:48px;
428   - -webkit-border-radius:48px;
429   - -webkit-transition: all 0.5s ease-out;
430   - -moz-transition: all 0.5s ease-out;
431   - transition: all 0.5s ease-out;
432   -}
433   -.social .fb{background-position:-44px 0;
434   -cursor: pointer;
435   -}
436   -.social .vk{
437   -cursor: pointer;
438   -}
439   -.social .vk:hover{background-color:#5B7FA6;}
440   -.social .fb:hover{background-color:#354f89;
441   -}
442   -.social .gp{background-position:-132px 0;
443   -cursor: pointer;}
444   -.social .gp:hover{background-color:#c72f21;}
445   -.social .tw{background-position:-144px 0;
446   -cursor: pointer;}
447   -.social .tw:hover{background-color:#6398c9;}
448   -.social .ok{background-position:-89px 0;
449   -cursor: pointer;}
450   -.social .ok:hover{background-color:#f88f15;}
451   -.social ul li a:hover{
452   - background-color:#065baa;
453   -}
454   -
455   -.socialbox{margin:10px 0px;}
456   -.hide{display:none;}
457   -
458   -
459   -
460   -.fotter{background: #484f55;height: 50px;color:#98a3ab;}
461   -.fotter a{color:#98a3ab; line-height: 50px; float: left;}
462   -
463   -
464   -.view_products2{list-style: none;overflow:auto;height:400px;}
465   -.view_products2 img{float:left;margin-right:20px;}
466   -.view_products2 li{margin:10px 0px;}
467   -
468   -
469   -.pixbox{width:134px;height:200px;overflow: hidden;}
470   -
471   -
472   -.form-order{background:#f5f5f5;padding:10px;border:1px solid #d2d2d2;}
473   -#order-payment{float:right;width:280px;}
474   -#order-delivery{float:right;width:280px;}
475   -
476   -.delivery-data{padding:5px;border:1px solid #1bb631;background: #b7f5bf;display:none;border-radius: 5px;}
477   -
478   -.jcarousel-next-disabled, .jcarousel-prev-disabled {display: none !important;}
479   -.content2 br {display: none;}
480   -.pixbox a {
481   - width: 134px;
482   - height: 200px;
483   - display: table-cell;
484   - vertical-align: middle;
485   -}
486   -.pixbox img {
487   - max-width: 134px;
488   - max-height: 200px;
489   - vertical-align: middle;
490   -}
491   -.pagination li.prev.disabled span {
492   - padding: 9px;
493   - border-radius: 10%;
494   - color: #4D5458;
495   - font-size: 14px;
496   - margin: 0px;
497   - border: 1px solid #4d5458;
498   -}
499   -.fr {float: right;}
500   -
501   -.nobottom{border-bottom:none !important;}
502   -
503   -.dotted a{border-bottom: 1px dotted #808080;}
504   -
505   -.mycabinet{padding-left:20px;margin-top:20px;}
506   -.mycabinet .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
507   -.mycabinet ul{margin:0px;padding:0px;list-style:none;}
508   -.mycabinet ul li{padding-top:10px;padding-bottom:10px;}
509   -.mycabinet a{color:#799920;text-decoration:none;}
510   -
511   -.lay_title .uppercase{text-transform:uppercase;}
512   -.lay_title .center{text-align:center;}
513   -.lay_title{padding-top:15px;font-size:24px;}
514   -
515   -.user_data{width:390px;border-right:1px solid #d2d2d2;float:left;}
516   -.user_data .col{padding-bottom:35px;}
517   -.user_data .col.last{padding-bottom:0px;}
518   -.user_data .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
519   -.user_data .data{float:left;font-size:13px;}
520   -
521   -.edit_menu{float:left;padding-left:60px;font-size:13px;}
522   -.edit_menu div{padding-bottom:20px;}
523   -.edit_menu a{color:#799920;text-decoration:none;}
524   -.edit_menu .dotted{border-bottom:1px dotted #799920;}
525   -
526   -.user_edit_area{padding-top:30px;}
527   -
528   -/* part two */
529   -
530   -.user_data_editing{float:left;}
531   -.inputs .col{padding-bottom:12px !important;}
532   -.user_data_editing .col{padding-bottom:35px; width:432px;}
533   -.user_data_editing .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
534   -.user_data_editing .data{float:left;font-size:13px; width:262px;}
535   -
536   -.user_data_editing input[type="text"] {
537   - padding:0;
538   - margin:0;
539   - border:1px solid #d2d2d2;
540   - padding-top:7px;
541   - padding-bottom:7px;
542   - padding-left:10px;
543   - padding-right:10px;
544   - border-radius:4px;
545   - font-size:12px;
546   - margin-top:-10px;
547   - width: 240px;
548   -}
549   -
550   -.user_data_editing .add {color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
551   -.add_more{padding-bottom:24px; padding-left:170px;}
552   -
553   -.delete{float:right;}
554   -.delete_button{background: url('../img/ico_close.png') right no-repeat; width:16px;height:16px;float:right;}
555   -
556   -.content_area{width:450px;}
557   -
558   -.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;}
559   -.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;}
560   -#cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px;}
561   -
562   -.buttons{
563   - display: inline-flex;
564   - align-items: center;}
565   -
566   -/* part three */
567   -
568   -.favorites{background-color:#f5f5f5; padding:5px;font-size:14px;}
569   -.favorites .fav_point{background-color:#ffffff;border:1px solid #d2d2d2;border-radius:3px;padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px; margin-top:5px;}
570   -.favorites .fav_point .left{float:left; padding-right:0; width:178px;}
571   -.favorites .fav_point .right{float:right; padding-right:0; padding-left:0;}
572   -
573   -.favorites .link{color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
574   -
575   -.redtext{color:#f75d50;}
576   -.greentext{color:#95ba2f;}
577   -
578   -/* part three one */
579   -.hold .orders_view{display:none !important;}
580   -.orders_view{width:680px;margin-top:13px;padding-top:13px;padding-bottom:5px;border-top:1px solid #d2d2d2;display:block;}
581   -.orders_view .order{float:left;width:225px;text-align:center;}
582   -.orders_view .order .order_price{color:#f75d50;font-weight:bold;font-size:15px;}
583   -.orders_view .order .order_price span{font-size:24px;}
584   -.orders_view .order img{padding-bottom:22px;}
585   -.orders_view .order .note{font-size:13px;}
586   -.orders_view .order .note span{color:#f75d50;}
587   -
588   -.basket_hovered{
589   - position:absolute;
590   - border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;
591   - background-color:white;
592   - right:-1px;
593   - margin-top:10px;
594   - width:640px;
595   - display:none;
596   - z-index:1111;
597   -}
598   -
599   -
600   -.open .basket_hovered{
601   - display:block;
602   -}
603   -
604   -.open, .open .basket_hovered {
605   - -moz-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
606   - -webkit-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
607   - box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
608   -}
609   -.basket_hovered1:before{
610   - position:absolute;
611   - left:0;
612   - content:' ';
613   - width:100%;
614   - background-color:white;
615   - height:10px;
616   - top:45px;
617   - z-index:1112;
618   -}
619   -
620   -.basket_item input{
621   - border: 1px solid #d2d2d2;
622   - border-radius: 4px;
623   - padding:9px;
624   - width:26px;
625   - font-size:18px;
626   - font-weight:bold;
627   - text-align:center;
628   - background-color:white;
629   - color: black;
630   - margin:7px;
631   -}
632   -input[type=number]::-webkit-inner-spin-button,
633   -input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;
634   - margin:0;}
635   -
636   -
637   -.minus{background:url('../img/minus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
638   -.plus{background:url('../img/plus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
639   -
640   -.basket_sum{padding-top:15px;}
641   -
642   -.basket_sum .sum_text{font-size:15px; text-transform:none;padding-top:12px;}
643   -.basket_sum .sum_text span{font-size:18px; color:#f75d50; font-weight:bold;}
644   -.basket_sum a{color:white !important; font-size:15px !important; float:right;}
645   -
646   -
647   -.black{z-index:9999; background-color:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;display:block;padding-top:9%;}
648   -.black.hidden{display:none;}
649   -.black .item_added_win{background-color:#ffffff;width:640px; margin:auto;position:relative;}
650   -
651   -.black_close{position:absolute; top:30px;right:30px;background:url('../img/ico_close2.png') no-repeat;width:22px;height:22px;display:inline-block;cursor:pointer;}
652   -
653   -.block_content{padding-left:20px;padding-right:20px;}
654   -.item_added_win h2{text-transform:uppercase;text-align:center;padding:30px;}
655   -
656   -.block_content .item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #d2d2d2;}
657   -
658   -.uppercase{text-transform:uppercase;}
659   -
660   -.w230{width:230px;}
661   -.w260{width:260px;}
662   -.w430{width:430px;}
663   -.borderbottom{border-bottom:1px solid #d2d2d2;}
664   -.left_block .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
665   -
666   -.color_variants .variant{
667   - text-align:center;
668   - border:1px solid #d2d2d2;
669   - float:left;
670   - margin-right:5px;
671   - margin-bottom:5px;
672   -}
673   -.variant:hover{cursor:pointer;}
674   -.color_variants{margin-top:14px;margin-bottom:-5px;}
675   -.color_variants .variant.active{width:44px;height:44px;border:2px solid #95ba2f;}
676   -.color_variants .variant.active a{width:44px;height:44px;}
677   -
678   -.tobasket{margin-top:20px;margin-bottom:20px;}
679   -.tobasket:hover{color:white;}
680   -
681   -.variant{width:46px;height:46px;}
682   -.variant.active{width:44px;height:44px;}
683   -
684   -.layout{margin-top:15px;}
685   -.left_block{float:left;}
686   -.right_block{float:right;}
687   -.center_block{float:left;margin-left:23px;}
688   -
689   -.left_block .links{margin-top:25px;}
690   -
691   -.left_block .links li{list-style: none; padding-left:25px;display:inline-block;cursor:pointer;height:20px;}
692   -.left_block .links ul{margin:0;padding:0;}
693   -.left_block .links a{font-size:13.5px;text-decoration:none; color:#8ba73e;}
694   -
695   -
696   -.links .add_bookmarks{background:url('../img/ico_add_bookmark.png') no-repeat center left; }
697   -.links .what_price{background:url('../img/ico_price.png') no-repeat center left; }
698   -.links .add_compare{background:url('../img/ico_scales.png') no-repeat center left; }
699   -
700   -.spoiler_one{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #d2d2d2;}
701   -.spoiler_one .spoiler_content{margin-top:15px;font-size:13px;}
702   -.spoiler_one .spoiler_content.hidden{display:none;}
703   -
704   -.title_spoiler:hover {cursor: pointer}
705   -
706   -.title_spoiler{
707   - background:url('../img/ico_open.png') no-repeat center left;
708   - padding-left: 17px;
709   - font-size:13px;
710   - text-transform:uppercase;
711   - color:#333333;
712   - font-weight:bold;
713   - text-decoration:none;
714   -}
715   -.title_spoiler.closed{
716   - background:url('../img/ico_close3.png') no-repeat center left;
717   -}
718   -
719   -.features{
720   - list-style:none;
721   - padding:0;
722   - margin:0;
723   - font-size:13px;
724   -}
725   -.features a{
726   - font-size:13px;
727   - text-decoration:none;
728   - border-bottom:1px dotted #8ba73e;
729   - color:#8ba73e;
730   -}
731   -.features li{
732   - padding-top:5px;
733   - padding-bottom:4px;
734   -}
735   -
736   -.note_prod{
737   - width:225px;
738   - height:23px;
739   - overflow:hidden;
740   - border-radius:5px;
741   - display:table;
742   - text-transform:uppercase;
743   - font-size:11px;
744   - font-weight:bold;
745   -}
746   -
747   -.note_prod .one{
748   - z-index:999;
749   -}
750   -.note_prod .two{
751   - z-index:998;
752   -}
753   -
754   -.note_prod .blue{
755   - float:left;
756   - padding-top:5px;
757   - padding-bottom:5px;
758   - background-color:#42b9f6;
759   - padding-left:10px;
760   - padding-right:5px;
761   - position:relative;
762   -}
763   -
764   -.note_prod .blue:after{
765   - content:'';
766   - width: 0;
767   - height: 0;
768   - border-top: 13px solid transparent;
769   - border-left: 5px solid #42b9f6;
770   - border-bottom: 13px solid transparent;
771   - position:absolute;
772   - top:-1px;
773   - margin-left:5px;
774   -}
775   -.note_prod .red{
776   - float:left;
777   - padding-top:5px;
778   - padding-bottom:5px;
779   - background-color:#f75d50;
780   - padding-left:10px;
781   - padding-right:5px;
782   - position:relative;
783   - color:#ffffff;
784   -}
785   -.note_prod .red:after{
786   - content:'';
787   - width: 0;
788   - height: 0;
789   - border-top: 13px solid transparent;
790   - border-left: 5px solid #f75d50;
791   - border-bottom: 13px solid transparent;
792   - position:absolute;
793   - top:-1px;
794   - margin-left:5px;
795   -}
796   -.note_prod .yellow{
797   - float:left;
798   - padding-top:5px;
799   - padding-bottom:5px;
800   - background-color:#fbc665;
801   - padding-left:10px;
802   - padding-right:5px;
803   - position:relative;
804   -}
805   -.note_prod .yellow:after{
806   - content:'';
807   - width: 0;
808   - height: 0;
809   - border-top: 13px solid transparent;
810   - border-left: 5px solid #fbc665;
811   - border-bottom: 13px solid transparent;
812   - position:absolute;
813   - top:-1px;
814   - margin-left:5px;
815   -}
816   -
817   -
818   -.products_block .product{float:left; width:190px; vertical-align:bottom;}
819   -.product .image{height:225px;position:relative;}
820   -.product .image img{position:absolute;bottom:0;left:15px;}
821   -
822   -.price{
823   - font-size: 18px;
824   - color: #f75d50;
825   - font-weight: bold;
826   - text-align:center;}
827   -
828   -.product{padding-bottom:30px;position:relative;}
829   -.product p{font-size:15px; text-align:center; margin-top:15px;}
830   -.left52{margin-left:52px;}
831   -.product a{color:#ffffff;}
832   -.mrg1{margin-top: 25px; margin-bottom: 15px;}
833   -
834   -.products_martopbot{margin-top:60px;margin-bottom:100px;}
835   -
836   -.cont_shop_but{display:table-cell;vertical-align:middle;padding:35px;}
837   -.cont_shop{text-decoration:none;font-size:12px;border-bottom:1px dotted #799920;color:#799920;}
838   -
839   -.icons{
840   - width:45px;
841   - height:50%;
842   - position:absolute;
843   - z-index:9;
844   - right:0;
845   - padding-top:25px;
846   - padding-right:15px;
847   -}
848   -.icons a{
849   - width:44px;
850   - height:44px;
851   - float: left;
852   - border: 1px solid #d2d2d2;
853   - margin-bottom: 5px;
854   - background-color: white;
855   -}
856   -a:hover{cursor:pointer;}
857   -
858   -
859   -.basket_item .form-group{display:inline;}
860 0 \ No newline at end of file
frontend/web/css/style.css
1   -html,form,
2   -body { padding:0;margin:0;
3   - font-family: 'Roboto';font-size:14px;color:#333;height:100%;
4   -}
5   -h1,h2,h3{margin:0px;padding:0px 0px 10px 0px;}
6   -.fl{float:left;}
7   -.fotter .wrap .fr{float:right; width: 180px; height: 50px; position: relative;font-size: 12px;}
8   -.fotter .wrap .fr img{position: absolute; top: 50%; margin-top: -10px; right: 0;}
9   -.fotter .wrap .fl {line-height: 50px;font-size: 12px;}
10   -.both{clear:both;}
11   -h1{margin:10px 0;font-size:24px;}
12   -h3{margin-bottom:30px;}
13   -p{margin:3px 0px;padding:0px;}
14   -
15   -a{color:#6a6a6a;font-size:14px;text-decoration:underline;}
16   -a:hover{color:#799920;}
17   -
18   -.wrap {
19   - width:960px;margin:0px auto;
20   -}
21   -.f{background: #ffffff;}
22   -
23   -.br{-webkit-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
24   - -moz-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
25   - box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
26   - padding:20px;}
27   -
28   -nav.top{background:#f5f5f5;padding:10px 0px;border-bottom:1px solid #d2d2d2;font-size:12px;}
29   -nav.top ul{list-style:none;margin:0px;padding:0px;}
30   -nav.top ul li{float:left;padding-right:20px;}
31   -nav.top ul li a{font-size: 12px;}
32   -nav.top a{color:#6a6a6a;text-decoration:none;}
33   -
34   -#help{background:url('../img/help.png') right no-repeat;padding-right:20px;}
35   -#help span{border-bottom:1px dotted #6a6a6a;}
36   -
37   -#login{background:url('../img/login.png') right no-repeat;padding-right:20px; font-size: 12px;}
38   -#login span{border-bottom:1px dotted #6a6a6a;}
39   -
40   -.search{margin:-5px 0px -5px 100px;float:left;}
41   -nav input[type="text"]{width:325px;outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;}
42   -nav input[type="submit"]{width:35px;height:29px;border:none;background:url('../img/lupa_sub.png') center no-repeat;margin-left:-35px;cursor:pointer;}
43   -
44   -
45   -
46   -.header{margin:0px 0px 20px;}
47   -
48   -.phone{float:left;position:relative;text-align:center;margin-top:20px;}
49   -.phone .tel{font-size:23px;}
50   -.phone .tel span.more{margin-bottom: 3px}
51   -.more_block{background:#ffffff;border:1px solid #d2d2d2;padding:10px;position:absolute;font-size:20px;display:none;z-index:99;}
52   -
53   -.more{background:url('../img/more.png') no-repeat;width:12px;height:7px;display:inline-block;cursor:pointer;margin-bottom:5px;}
54   -
55   -
56   -.logo{margin:0px auto 0px;width:193px;}
57   -.logo a{display:block;width:193px;height:84px;background:url('../img/logo.png') no-repeat;}
58   -.logo a span{display:none;}
59   -
60   -#call{color:#6a6a6a;text-decoration:none;border-bottom:1px dotted #6a6a6a;}
61   -
62   -.basket{float:right;position:relative;border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;font-size:18px;text-transform: uppercase;margin-top:13px;}
63   -.basket .info{float:left;border-right:1px solid #d2d2d2;padding-right:10px;margin-right:17px;}
64   -.basket .info span{color:#f75d50;font-size:22px;}
65   -.basket a:link,.basket a:visited{text-decoration:none;color:#000000;font-size:18px;}
66   -
67   -.basket span.more {margin-bottom: -1px}
68   -.menu{
69   - background:#596065;
70   - border:1px solid #e8e8e8;
71   -}
72   -.menu ul{margin:0px;padding:0px;list-style:none;}
73   -.menu ul li{float:left;border-left:1px solid #8b9094; height: 43px;}
74   -.menu ul li:first-child{border-left:none;}
75   -.menu ul li a{width: 100%; height:100%;line-height:43px;float:left;box-sizing:border-box; padding:0 21px;text-transform: uppercase;color:#ffffff;font-size:15px;text-decoration: none;font-weight: 600;}
76   -.menu ul li:hover{background: #3e454b;}
77   -.menu ul li.active a{background:#f5f5f5;color:#596065;}
78   -.menu ul li.active a:hover{cursor: default;}
79   -
80   -.menu_childs{background:#f5f5f5;border:1px solid #e8e8e8;border-bottom:2px solid #596065;}
81   -.menu_childs ul{margin:0px;padding:0px;list-style:none;}
82   -.menu_childs ul li{float:left;}
83   -.menu_childs ul li a{float:left;padding:15px 23px 15px 23px;text-transform: uppercase;color:#596065;font-size:14px;font-weight:bold;text-decoration: none;}
84   -.menu_childs ul li a:hover{color:#878b8e;}
85   -
86   -.fr ul li{border:none;}
87   -.akciya a{background:#f75d50;color:#ffffff;}
88   -.brands a{background:#95ba2f;color:#ffffff;}
89   -
90   -a.myorders{color:#f75d50}
91   -
92   -.sub{margin:2px 0px 0px 0px;}
93   -.sub img{float:left;margin-right:2px;}
94   -
95   -.rubrics{margin:60px 0 0 0;padding-bottom:27px;}
96   -.rubrics ul{list-style:none;margin:0px;padding:0px;}
97   -.rubrics ul li{float:left;margin:0px 35px;}
98   -.rubrics ul li a{float:left;width:120px;padding-top:130px;text-align:center;text-transform: uppercase;color:#494949;text-decoration:none;font-weight:bold;}
99   -.rubrics ul li.item_ryukzaki a{background:url('../img/ico1.png') no-repeat;}
100   -.rubrics ul li.item_sumki a{background:url('../img/ico2.png') no-repeat;}
101   -.rubrics ul li.item_chehly a{background:url('../img/ico3.png') no-repeat;}
102   -.rubrics ul li.item_nesessery a{background:url('../img/ico4.png') no-repeat;}
103   -.rubrics ul li.item_koshelki a{background:url('../img/ico5.png') no-repeat;}
104   -
105   -
106   -.products{padding-bottom:30px;padding-top:20px;}
107   -.why_me_, .products {
108   - border-top: 1px solid #d2d2d2;
109   -}
110   -.products ul{list-style:none;margin:0;padding:0;}
111   -.products ul li.item{float:left;width:192px;margin:0 0 50px 0;text-align:center;position:relative;}
112   -.products ul li a.name, .special-products a.name {display:block;color:#799920;font-size: 15px;text-decoration:none;margin:15px 0 0 0;height:35px;overflow: hidden; box-sizing: border-box;padding: 0 10px;}
113   -.products ul li a.name:hover, .special-products a.name:hover {text-decoration: underline}
114   -.products ul li .info{text-align: left;}
115   -.pn{border:none;}
116   -
117   -.cost, .product_read_price #cost {color:#f75d50;font-size:18px;margin:0;padding:0;}
118   -.cost span, .cost span.valute, .product_read_price .valute {font-size: 14px;}
119   -strike, strike span#old_cost{font-size:14px; color: #333}
120   -
121   -
122   -.submit4m, a.link_buy, .checkout_basket button, .submit4 {
123   - background: #95ba2f;
124   - border-radius:4px;
125   - height: 29px;
126   - text-transform: uppercase;
127   - color:#ffffff;
128   - text-decoration:none;
129   - font-weight:600;
130   - text-align:center;
131   - border-bottom: 3px solid #799920;
132   - font-size: 12px;
133   -}
134   -.submit4.bottom3 {font-size: 12px !important;display: block;}
135   -.basket .submit4.bottom3 {font-size: 12px !important;display: block; margin-top: 10px;}
136   -a.link_buy, .checkout_basket button {
137   -
138   - display:block;
139   - margin:0 auto 10px auto;
140   - width:122px;
141   - line-height:32px;
142   -}
143   -.checkout_basket button, .submit4{
144   - margin: 0;
145   - padding: 0 20px;
146   - line-height: 31px;
147   - width: auto;
148   - border-top: 0;
149   - border-left: 0;
150   - border-right: 0;
151   - cursor: pointer;
152   -}
153   -a.link_buy:hover, .submit4m:hover, .checkout_basket button:hover, .submit4:hover, .btn-primary:hover {
154   - border-bottom: 3px solid #95ba2f;;
155   -}
156   -a.link_buy:active, .submit4m:active,.checkout_basket button:active, .submit4:active, .btn-primary:active {
157   - background: #799920;
158   - border-bottom: 3px solid #799920;
159   -
160   -}
161   -.checkout_basket button:focus, .submit4:focus { outline: none;}
162   -.mycarousel{position:absolute;right:22px;top:13px;}
163   -ul.mycarousel{list-style:none;margin:0px;padding:0px;}
164   -ul.mycarousel li{margin:0px;padding:0px;}
165   -.mycarousel img{border:1px solid #d2d2d2;}
166   -
167   -h3{text-align:center;text-transform: uppercase;font-size:20px;}
168   -h2.why{width:213px;height:49px;background:url('../img/logo-why.png') no-repeat;margin:0px auto; padding: 0 0 20px 0;}
169   -h2.why span{display:none;}
170   -
171   -ul.why_list{list-style:none;margin:0px;padding:0px;}
172   -ul.why_list li{float:left;margin-left:58px; width: 288px; height:96px;box-sizing: border-box;padding-left: 110px; margin-top: 20px;}
173   -ul.why_list li div {
174   - display: table-cell;
175   - height: 96px;
176   - vertical-align: middle;
177   -}
178   -ul.why_list li span{font-weight:bold;color:#799920;}
179   -ul.why_list li.item1{background:url('../img/why_item1.png') left no-repeat;}
180   -ul.why_list li.item2{background:url('../img/why_item2.png') left no-repeat;}
181   -ul.why_list li.item3{background:url('../img/why_item3.png') left no-repeat;}
182   -ul.why_list li.item4{background:url('../img/why_item4.png') left no-repeat;}
183   -ul.why_list li.item5{background:url('../img/why_item5.png') left no-repeat;}
184   -ul.why_list li.item6{background:url('../img/why_item6.png') left no-repeat;}
185   -
186   -.banner_akciya{margin:50px 0px;}
187   -
188   -.bottom{background:#4d5458;padding:40px 0px;color:#ffffff;}
189   -.bottom .leftbar{float:left;width:210px; }
190   -.bottom ul{list-style:none;margin:0px;padding:0px;line-height: 23px;}
191   -.bottom ul a{color:#ffffff;font-size:15px;text-decoration:none;}
192   -.bottom ul a:hover{color:#799920;}
193   -
194   -.phones{padding-left:25px;background:url('../img/phone.png') left top no-repeat;margin-top:50px;line-height: 23px;font-size: 18px;}
195   -.map{padding:5px 0px 5px 25px;background:url('../img/map.png') left no-repeat; margin-bottom: 7px;}
196   -a.more_map{color:#99a5ad;border-bottom:1px dotted #99a5ad;text-decoration:none;font-size:11px;text-align:center;}
197   -
198   -.bread-crumbs{padding:0 0 0 20px;border-bottom:1px solid #d2d2d2; height: 29px;}
199   -.bread-crumbs ul{list-style:none;margin:0 0 0 0;padding:0; height: 29px;}
200   -.bread-crumbs ul li{float:left;padding-left:20px;height: 100%; line-height: 29px; color: #7d7d7d; position: relative; font-size: 12px;}
201   -.bread-crumbs ul li:first-child {padding-left: 0}
202   -.bread-crumbs ul li a {font-size: 12px; display: block; color: #7d7d7d}
203   -.bread-crumbs ul li a:visited,.bread-crumbs ul li a:link{color:#7d7d7d;text-decoration:underline;}
204   -.bread-crumbs ul li a:hover{color:#464646;text-decoration: none;}
205   -.breadcrumb > li + li:before {
206   - color: #ccc;
207   - content: "/";
208   - position: absolute;
209   - top: 0;
210   - left: 8px;
211   -}
212   -
213   -
214   -.loyout{padding:20px 0px;}
215   -.leftbar{float:left;width:172px;margin-right: 20px; }
216   -.rightbar{float:right;width:380px;margin-left:40px;}
217   -.rightbar.basket_rightbar{margin-right: 20px;}
218   -.rightbar2{float:right;width:320px;}
219   -.content {overflow:hidden;}
220   -* html .content{height:1%;}
221   -.content2 {overflow:hidden;}
222   -* html .content2{height:1%;}
223   -
224   -.filters{border-top:1px solid #d2d2d2;padding:20px 0px 0px;margin-top:20px;}
225   -.filters .begin{text-transform: uppercase;font-weight:bold; font-size: 12px;}
226   -.filters ul{list-style:none;margin:0px;padding:0px;line-height:22px; margin-top: 6px;}
227   -.filters ul li {
228   - position: relative;
229   - box-sizing: border-box;
230   - padding-left: 24px;
231   - line-height: 16px;
232   - margin-top: 7px;
233   -}
234   -.filters ul li:first-child {margin-top: 0}
235   -.filters ul li>input {
236   - position: absolute;
237   - left: 4px;
238   - margin: -6px 0 0 ;
239   - top: 50%;
240   -}
241   -.filters ul li a{color:#464646;text-decoration:none; font-size: 13px; line-height: 16px;}
242   -.filters ul li a:hover{text-decoration:underline;}
243   -
244   -.productLeftBar{float:left;width:228px;margin-left:20px;margin-right:20px;}
245   -.productRightBar{float:right;width:260px;margin:0 20px;}
246   -.productLeftBar h1{font-size:24px;border-bottom:1px solid #d2d2d2;margin-bottom:10px;}
247   -
248   -ul.product_mod{list-style:none;margin:10px 0 0 0;padding:0; float: left;}
249   -ul.product_mod li{
250   - float:left;
251   - width: 46px;
252   - height: 46px;
253   - background: #fff;
254   - border: 1px solid #d2d2d2;
255   - margin: 5px 5px 0 0;
256   - text-align: center;
257   - position: relative;
258   -}
259   -ul.product_mod li.active:before {
260   - width: 48px;
261   - height: 48px;
262   - position: absolute;
263   - content: '';
264   - background: none;
265   - border: 2px solid #95ba2f;
266   - top: -1px;
267   - left: -1px;
268   - box-sizing: border-box;
269   -}
270   -ul.product_mod li a{
271   - width: 46px;
272   - height: 46px;
273   - display: table-cell;
274   - vertical-align: middle;
275   -}
276   -ul.product_mod li a:focus {
277   - outline: none;
278   -}
279   -ul.product_mod li img{
280   - vertical-align: middle;
281   - max-width: 46px;
282   - max-height: 46px;
283   -}
284   -
285   -ul.product_colors{list-style:none;margin:30px 0 0 0 ;padding:0; float: left;}
286   -ul.product_colors li{
287   - float:left;
288   - margin:10px 10px 0 0;
289   - width: 98px;
290   - height: 98px;
291   - text-align: center;
292   - border: 1px solid #d2d2d2;
293   -}
294   -ul.product_colors li a {
295   - width: 98px;
296   - height: 98px;
297   - vertical-align: middle;
298   - display: table-cell;
299   -}
300   -ul.product_colors li img{
301   - max-width: 98px;
302   - max-height: 98px;
303   - vertical-align: middle;
304   -}
305   -.productLeftBar .begin{text-transform: uppercase;font-weight:bold; font-size: 12px;}
306   -
307   -.cost_box{border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;margin:10px 0px;padding:10px 0px;}
308   -.cost_box .w{float:left;margin-right:20px;padding-top:5px;}
309   -
310   -.product_service ul{list-style:none;margin:0px;padding:0px;}
311   -.product_service ul li a{color:#799920;text-decoration:none;border-bottom:1px dotted #799920;font-size:12px;}
312   -.product_service ul li.item1{background:url('../img/li1.png') left no-repeat;padding:3px 23px;}
313   -.product_service ul li.item2{background:url('../img/li2.png') left no-repeat;padding:3px 23px;}
314   -.product_service ul li.item3{background:url('../img/li3.png') left no-repeat;padding:3px 23px;}
315   -
316   -#nav_product{list-style:none;margin:0px;padding:0px;line-height:23px;}
317   -#nav_product li a{background:url('../img/li_plus.png') left no-repeat;padding:3px 15px;color:#000000;text-transform: uppercase;text-decoration:none;font-weight:bold; font-size: 12px;}
318   -#nav_product li a.active{background:url('../img/li_minus.png') left no-repeat;}
319   -#nav_product li .info{display:none;border-bottom:1px solid #d2d2d2;padding:10px 0px;margin-bottom:10px;}
320   -
321   -#nav_product li .info, #nav_product li .info p {font-size: 12px; line-height: 16px;}
322   -.modal_box{
323   - position: fixed;
324   - left: 0;
325   - top: 0;
326   - width: 100%;
327   - height: 100%;
328   - z-index: 999;
329   -
330   - background: #000;
331   - filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); /* IE 5.5+*/
332   - -moz-opacity: 0.5; /* Mozilla 1.6 Р С‘ РЅРёР¶Рµ */
333   - -khtml-opacity: 0.5; /* Konqueror 3.1, Safari 1.1 */
334   - opacity: 0.5;
335   -
336   -}
337   -#data_box{position:absolute;top:100px;z-index:1000;width:400px;background:#ffffff;
338   - -webkit-box-shadow: 0 0 15px #000;
339   - -moz-box-shadow: 0 0 15px #000;
340   - box-shadow: 0 0 15px #000;
341   - border:7px solid #1b9bb6;
342   - border-radius:5px;
343   -}
344   -#data_box .data_wrp{padding:25px 15px 15px 15px;}
345   -#data_box .data_wrp h1{text-transform: uppercase;}
346   -#data_box .data_wrp hr{height: 1px;border: none;color: #000000;background: #000000;margin: 45px 0px 20px 0px;}
347   -#data_box .data_wrp hr.hr{height: 1px;border: none;color: #000000;background: #000000;margin: 20px 0px 20px 0px;}
348   -#data_box .pic-tango{margin-right:7px;margin-bottom:7px;}
349   -#modal_close{cursor:pointer;margin-top:-80px;margin-right:-50px;}
350   -
351   -
352   -.rightbar .control-label, .textareagroup .control-label {float:left;width:80px;padding-top:5px;}
353   -.form-control{outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:3px;width:250px;}
354   -.form-control:focus {
355   - border:#1b9bb6 1px solid;
356   - box-shadow: 0 0 10px #1b9bb6;
357   - -webkit-box-shadow: 0 0 10px #1b9bb6;
358   - -moz-box-shadow: 0 0 10px #1b9bb6;
359   -}
360   -.help-block{color:red;font-size:12px;margin-bottom:5px;}
361   -
362   -.basket_item{padding:10px 0px;border-bottom:1px solid #b7b7b7;clear: both}
363   -.basket_item img{margin-right:20px;}
364   -.basket_item .count{margin:20px 0px;}
365   -.basket_item .fr{margin-top:13px;}
366   -.basket_item .info{overflow:hidden;}
367   -.basket_item > a{display: block;
368   - float: left;}
369   -a.del:visited,a.del:link{background:url('../img/del.png') left center no-repeat;padding:2px 25px;font-size:12px;font-weight:normal;color:#787878;text-decoration: underline;}
370   -a.del:hover{color:#a52828;text-decoration: underline;}
371   -
372   -.total{text-align:right;color:#87476a;font-size:20px;margin:10px 0px;}
373   -
374   -/*.submit4{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;cursor:pointer;}*/
375   -/*.submit4:hover{background:#f75d50;}*/
376   -
377   -.submit4m {font-family: Roboto;border:none;background:#95ba2f;border-radius:4px;color:#ffffff;text-transform: uppercase;font-size:10px;cursor:pointer; width:102px; height: 29px; border-bottom: 3px solid #799920; line-height: 29px;}
378   -.submit4m:active,.submit4m:focus {outline: none}
379   -
380   -.btn-primary{
381   - border-bottom: 3px solid #799920;
382   - border-top:0;border-right: 0;border-left: 0;
383   - margin-top:5px;
384   - padding:0 15px;
385   - background:#95ba2f;
386   - border-radius:4px;
387   - color:#ffffff;
388   - text-transform: uppercase;
389   - text-decoration:none;
390   - font-size:12px;
391   - font-weight:bold;
392   - cursor:pointer;
393   - height: 29px;
394   - line-height: 29px;
395   -}
396   -.btn-primary:active, .btn-primary:focus {outline: none;}
397   -
398   -a.logout:visited,a.logout:link{border:none;padding:3px 5px;background:#f75d50;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:11px;font-weight:normal;cursor:pointer;}
399   -a.logout:hover{background:#95ba2f;}
400   -
401   -.boy_box{border-bottom:1px solid #b7b7b7;padding:0px 0px 15px 0px;}
402   -.boy_box div{padding-top:10px;}
403   -
404   -.content_product .info{padding:0px 0px 20px 0px;}
405   -
406   -a.btn-success{display:inline-block;border:2px solid #d8d6d6;color:#95ba2f;border-radius:5px;padding:5px;margin-bottom:10px;text-decoration:none;font-size:14px;}
407   -a.btn-success:hover{border:#95ba2f 2px solid;color:#f75d50;}
408   -
409   -
410   -.txtb1{font-size:14px;font-weight:bold;}
411   -.txtf{font-size:14px;font-weight:bold;color:#87476a;}
412   -.txtfb{font-size:20px;font-weight:bold;color:#87476a;}
413   -
414   -.count{margin:20px 0px;}
415   -.count input[type="number"]{outline:0;width:50px;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:7px;}
416   -
417   -a.link2:visited,a.link2:link{font-size:14px;font-weight:bold;color:#95ba2f;text-decoration: none;}
418   -a.link2:hover{color:#f75d50;text-decoration: underline;}
419   -
420   -
421   -
422   -.well{margin:50px auto;width:400px;background:#f5f5f5;border:1px solid #e8e8e8;padding:20px;border-radius:5px;}
423   -.control-label{float:left;width:100px;padding-top:5px;}
424   -#user-verifycode-image{display:block;}
425   -.form-inline{display:inline;}
426   -.form-inline .form-group{float:left;margin-right:10px;}
427   -.form-inline .form-group select{width:100px;}
428   -.form-group{margin-bottom: 10px;}
429   -.table-bordered{width:100%;border:1px solid silver;}
430   -.table-bordered th{background: #B3D1FD;padding:5px;}
431   -.table-bordered tr td{border:1px solid silver;padding:5px;}
432   -.table-bordered .filters{display: none;}
433   -
434   -.formCost label{float:left;width:30px;}
435   -
436   -ul.brends_list{list-style: none;margin:0px;padding:0px;}
437   -ul.brends_list li{float:left;text-align:center;margin:0px 15px 20px 15px;}
438   -
439   -.compare{text-align: center;}
440   -.compare a:visited,.compare a:link{font-size:12px;text-decoration: underline;}
441   -
442   -.alert-success{margin:10px 0px;padding:10px;border:1px solid #3ed824;border-radius: 5px;background: #c0feb5;}
443   -
444   -.news_item{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid silver;}
445   -.news_item img{margin-right:20px;}
446   -.news_item a{font-size:16px;}
447   -
448   -.pic{
449   - width: 392px;
450   - height: 365px;
451   -}
452   -.pic a {
453   - width: 392px;
454   - height: 365px;
455   - display: table-cell;
456   - vertical-align: middle;
457   -}
458   -.pic a img {
459   - max-width: 392px;
460   - max-height: 365px;
461   - vertical-align: middle;
462   -}
463   -input#subscribe-email::-webkit-input-placeholder {
464   - color: #596065
465   -}
466   -
467   -input#subscribe-email::-moz-placeholder {
468   - color: #596065
469   -}
470   -
471   -
472   -input#subscribe-email:-ms-input-placeholder {
473   - color: #596065
474   -}
475   -input#subscribe-sale::-webkit-input-placeholder {
476   - color: #596065
477   -}
478   -
479   -input#subscribe-sale::-moz-placeholder {
480   - color: #596065
481   -}
482   -
483   -
484   -input#subscribe-sale:-ms-input-placeholder {
485   - color: #596065
486   -}
487   -#subscribe-email, #subscribe-sale {color: #596065}
488   -#subscribe-sale{width:100px;float:left;margin-right:20px;height: 28px;}
489   -.saletxt{width:150px;float:left;color:#ffffff; font-size: 12px;}
490   -#subscribe-email{width:370px;}
491   -
492   -.txts{color:#9da9b1;font-size:18px;margin-bottom:20px;}
493   -
494   -.content ul.pagination{list-style:none;text-align:center; margin: 0 0 16px 0;padding: 0 0 20px 0; border-bottom: 1px solid #d2d2d2;}
495   -.content ul.pagination li{display:inline;}
496   -.content ul.pagination li a{padding:3px;color:#82a02f;font-size: 15px;margin:0; text-decoration: none; }
497   -.content ul.pagination li a:hover {text-decoration: underline}
498   -.content ul.pagination li.active a{color: #333333;}
499   -.boxitem{
500   - height:283px;
501   -}
502   -ul.social {margin-top: 20px;}
503   -.social{list-style: none;margin: 10px;padding: 0px;height:48px;}
504   -.social li{display:inline-block;margin-right:7px;padding-bottom: 10px;}
505   -.social li a{
506   - width:36px;
507   - height:36px;
508   - display:block;
509   - margin:0;padding:0;
510   - text-indent:-9999px;
511   - background:#bcbcbc url(../img/social-ico-two.png) no-repeat 0 0;
512   - border-radius:48px;
513   - -moz-border-radius:48px;
514   - -webkit-border-radius:48px;
515   - -webkit-transition: all 0.5s ease-out;
516   - -moz-transition: all 0.5s ease-out;
517   - transition: all 0.5s ease-out;
518   -}
519   -.social .fb{background-position:-44px 0;
520   - cursor: pointer;
521   -}
522   -.social .vk{
523   - cursor: pointer;
524   -}
525   -.social .vk:hover{background-color:#5B7FA6;}
526   -.social .fb:hover{background-color:#354f89;
527   -}
528   -.social .gp{background-position:-132px 0;
529   - cursor: pointer;}
530   -.social .gp:hover{background-color:#c72f21;}
531   -.social .tw{background-position:-144px 0;
532   - cursor: pointer;}
533   -.social .tw:hover{background-color:#6398c9;}
534   -.social .ok{background-position:-89px 0;
535   - cursor: pointer;}
536   -.social .ok:hover{background-color:#f88f15;}
537   -.social ul li a:hover{
538   - background-color:#065baa;
539   -}
540   -
541   -.socialbox{margin:10px 0px;}
542   -.hide{display:none;}
543   -
544   -
545   -.footer .fl{font-size: 12px;}
546   -.fotter{background: #484f55;height: 50px;color:#98a3ab;}
547   -.fotter a{color:#98a3ab; line-height: 50px; float: left; font-size: 12px;}
548   -
549   -
550   -.view_products2{list-style: none;overflow:auto;height:400px;}
551   -.view_products2 img{float:left;margin-right:20px;}
552   -.view_products2 li{margin:10px 0px;}
553   -
554   -
555   -.pixbox{width:160px;margin:0 auto;height:200px;overflow: hidden;text-align: center;}
556   -
557   -
558   -.form-order{background:#f5f5f5;padding:0 20px 20px 20px;}
559   -#order-payment{float:right;width:280px;}
560   -#order-delivery{float:right;width:280px;}
561   -
562   -.delivery-data{margin-bottom:27px;position:relative;background: #95ba2f;display:none;border-radius: 5px;float: left;box-sizing: border-box; padding: 14px 20px; color: #fff; font-size: 13px;}
563   -
564   -.jcarousel-next-disabled, .jcarousel-prev-disabled {opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";}
565   -.content2 br {display: none;}
566   -.pixbox a {
567   - width: 160px;
568   - height: 200px;
569   - display: table-cell;
570   - vertical-align: middle;
571   -}
572   -.pixbox img {
573   - max-width: 160px;
574   - max-height: 200px;
575   - vertical-align: middle;
576   -}
577   -.pagination li.prev.disabled span {
578   - /*padding: 9px;*/
579   - /*border-radius: 10%;*/
580   - /*color: #4D5458;*/
581   - /*font-size: 14px;*/
582   - /*margin: 0px;*/
583   - /*border: 1px solid #4d5458;*/
584   - display: none;
585   -}
586   -.pagination li.next.disabled span {
587   - display: none;
588   -}
589   -.fr {float: right;}
590   -
591   -.nobottom{border-bottom:none !important;}
592   -
593   -.dotted a{border-bottom: 1px dotted #808080;}
594   -
595   -.mycabinet{padding-left:20px;margin-top:20px;}
596   -.mycabinet .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
597   -.mycabinet ul{margin:0px;padding:0px;list-style:none;}
598   -.mycabinet ul li{padding-top:10px;padding-bottom:10px;}
599   -.mycabinet a{color:#799920;text-decoration:none;}
600   -
601   -.lay_title .uppercase{text-transform:uppercase;}
602   -.lay_title .center{text-align:center;}
603   -.lay_title{padding-top:15px;font-size:24px;}
604   -
605   -.user_data{width:390px;border-right:1px solid #d2d2d2;float:left;}
606   -.user_data .col{padding-bottom:35px;}
607   -.user_data .col.last{padding-bottom:0px;}
608   -.user_data .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
609   -.user_data .data{float:left;font-size:13px;}
610   -
611   -.edit_menu{float:left;padding-left:60px;font-size:13px;}
612   -.edit_menu div{padding-bottom:20px;}
613   -.edit_menu a{color:#799920;text-decoration:none;}
614   -.edit_menu .dotted{border-bottom:1px dotted #799920;}
615   -
616   -.user_edit_area{padding-top:30px;}
617   -
618   -/* part two */
619   -
620   -.user_data_editing{float:left;}
621   -.inputs .col{padding-bottom:12px !important;}
622   -.user_data_editing .col{padding-bottom:35px; width:432px;}
623   -.user_data_editing .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
624   -.user_data_editing .data{float:left;font-size:13px; width:262px;}
625   -
626   -.user_data_editing input[type="text"] {
627   - padding:0;
628   - margin:0;
629   - border:1px solid #d2d2d2;
630   - padding-top:7px;
631   - padding-bottom:7px;
632   - padding-left:10px;
633   - padding-right:10px;
634   - border-radius:4px;
635   - font-size:12px;
636   - margin-top:-10px;
637   - width: 240px;
638   -}
639   -
640   -.user_data_editing .add {color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
641   -.add_more{padding-bottom:24px; padding-left:170px;}
642   -
643   -.delete{float:right;}
644   -.delete_button{background: url('../img/ico_close.png') right no-repeat; width:16px;height:16px;float:right;}
645   -
646   -.content_area{width:450px;}
647   -
648   -/*.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;}*/
649   -/*.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;}*/
650   -#cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px;}
651   -
652   -.buttons{
653   - display: inline-flex;
654   - align-items: center;}
655   -
656   -/* part three */
657   -
658   -.favorites{background-color:#f5f5f5; padding:5px;font-size:14px;}
659   -.favorites .fav_point{background-color:#ffffff;border:1px solid #d2d2d2;border-radius:3px;padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px; margin-top:5px;}
660   -.favorites .fav_point .left{float:left; padding-right:0; width:178px;}
661   -.favorites .fav_point .right{float:right; padding-right:0; padding-left:0;}
662   -
663   -.favorites .link{color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
664   -
665   -.redtext{color:#f75d50;}
666   -.greentext{color:#95ba2f;}
667   -
668   -/* part three one */
669   -.hold .orders_view{display:none !important;}
670   -.orders_view{width:680px;margin-top:13px;padding-top:13px;padding-bottom:5px;border-top:1px solid #d2d2d2;display:block;}
671   -.orders_view .order{float:left;width:225px;text-align:center;}
672   -.orders_view .order .order_price{color:#f75d50;font-weight:bold;font-size:15px;}
673   -.orders_view .order .order_price span{font-size:24px;}
674   -.orders_view .order img{padding-bottom:22px;}
675   -.orders_view .order .note{font-size:13px;}
676   -.orders_view .order .note span{color:#f75d50;}
677   -
678   -.basket_hovered{
679   - position:absolute;
680   - border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;
681   - background-color:white;
682   - right:-1px;
683   - margin-top:10px;
684   - width:640px;
685   - display:none;
686   - z-index:1111;
687   -}
688   -
689   -
690   -.open .basket_hovered{
691   - display:block;
692   -}
693   -
694   -.open, .open .basket_hovered {
695   - -moz-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
696   - -webkit-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
697   - box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
698   -}
699   -.basket_hovered1:before{
700   - position:absolute;
701   - left:0;
702   - content:' ';
703   - width:100%;
704   - background-color:white;
705   - height:10px;
706   - top:45px;
707   - z-index:1112;
708   -}
709   -
710   -.basket_item input{
711   - border: 1px solid #d2d2d2;
712   - border-radius: 4px;
713   - padding:9px;
714   - width:26px;
715   - font-size:18px;
716   - font-weight:bold;
717   - text-align:center;
718   - background-color:white;
719   - color: black;
720   - margin:7px;
721   -}
722   -input[type=number]::-webkit-inner-spin-button,
723   -input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;
724   - margin:0;}
725   -
726   -
727   -.minus{background:url('../img/minus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
728   -.plus{background:url('../img/plus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
729   -
730   -.basket_sum{padding-top:15px;}
731   -
732   -.basket_sum .sum_text{font-size:15px; text-transform:none;padding-top:12px;float: right !important;padding-top: 1px;margin-bottom: 11px;}
733   -.basket_sum .sum_text span{font-size:18px; color:#f75d50; font-weight:bold;}
734   -.basket_sum a{color:white !important; font-size:15px !important; float:right;}
735   -
736   -
737   -.black{z-index:9999; width:100%;height:100%;position:absolute;display:block;padding-top:6%;}
738   -.black:before {
739   - content: '';
740   - background-color: rgba(0,0,0,0.5);
741   - width: 100%;
742   - height: 100%;
743   - position: fixed;
744   - top: 0;
745   -}
746   -.black.hidden{display:none;}
747   -.black .item_added_win{background-color:#ffffff;width:640px; margin:auto;position:relative;}
748   -
749   -.black_close{position:absolute; top:30px;right:30px;background:url('../img/ico_close2.png') no-repeat;width:22px;height:22px;display:inline-block;cursor:pointer;}
750   -
751   -.block_content{padding-left:20px;padding-right:20px;}
752   -.item_added_win h2{text-transform:uppercase;text-align:center;padding:30px;}
753   -
754   -.block_content .item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #d2d2d2;}
755   -
756   -.uppercase{text-transform:uppercase;}
757   -
758   -.w230{width:230px;}
759   -.w260{width:260px;}
760   -.w430{width:430px;}
761   -.borderbottom{border-bottom:1px solid #d2d2d2;}
762   -.left_block .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
763   -
764   -.color_variants .variant{
765   - text-align:center;
766   - border:1px solid #d2d2d2;
767   - float:left;
768   - margin-right:5px;
769   - margin-bottom:5px;
770   -}
771   -.variant:hover{cursor:pointer;}
772   -.color_variants{margin-top:14px;margin-bottom:-5px;}
773   -.color_variants .variant.active{width:44px;height:44px;border:2px solid #95ba2f;}
774   -.color_variants .variant.active a{width:44px;height:44px;}
775   -
776   -.tobasket{margin-top:20px;margin-bottom:20px;}
777   -.tobasket:hover{color:white;}
778   -
779   -.variant{width:46px;height:46px;}
780   -.variant.active{width:44px;height:44px;}
781   -
782   -.layout{margin-top:15px;}
783   -.left_block{float:left;}
784   -.right_block{float:right;}
785   -.center_block{float:left;margin-left:23px;}
786   -
787   -.left_block .links{margin-top:25px;}
788   -
789   -.left_block .links li{list-style: none; padding-left:25px;display:inline-block;cursor:pointer;height:20px;}
790   -.left_block .links ul{margin:0;padding:0;}
791   -.left_block .links a{font-size:13.5px;text-decoration:none; color:#8ba73e;}
792   -
793   -
794   -.links .add_bookmarks{background:url('../img/ico_add_bookmark.png') no-repeat center left; }
795   -.links .what_price{background:url('../img/ico_price.png') no-repeat center left; }
796   -.links .add_compare{background:url('../img/ico_scales.png') no-repeat center left; }
797   -
798   -.spoiler_one{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #d2d2d2;}
799   -.spoiler_one .spoiler_content{margin-top:15px;font-size:13px;}
800   -.spoiler_one .spoiler_content.hidden{display:none;}
801   -
802   -.title_spoiler:hover {cursor: pointer}
803   -
804   -.title_spoiler{
805   - background:url('../img/ico_open.png') no-repeat center left;
806   - padding-left: 17px;
807   - font-size:13px;
808   - text-transform:uppercase;
809   - color:#333333;
810   - font-weight:bold;
811   - text-decoration:none;
812   -}
813   -.title_spoiler.closed{
814   - background:url('../img/ico_close3.png') no-repeat center left;
815   -}
816   -
817   -.features{
818   - list-style:none;
819   - padding:0;
820   - margin:0;
821   - font-size:13px;
822   -}
823   -.features a{
824   - font-size:13px;
825   - text-decoration:none;
826   - border-bottom:1px dotted #8ba73e;
827   - color:#8ba73e;
828   -}
829   -.features li{
830   - padding-top:5px;
831   - padding-bottom:4px;
832   -}
833   -
834   -.note_prod{
835   - width:225px;
836   - height:23px;
837   - overflow:hidden;
838   - border-radius:5px;
839   - display:table;
840   - text-transform:uppercase;
841   - font-size:11px;
842   - font-weight:bold;
843   -}
844   -
845   -.note_prod .one{
846   - z-index:999;
847   -}
848   -.note_prod .two{
849   - z-index:998;
850   -}
851   -
852   -.note_prod .blue{
853   - float:left;
854   - padding-top:5px;
855   - padding-bottom:5px;
856   - background-color:#42b9f6;
857   - padding-left:10px;
858   - padding-right:5px;
859   - position:relative;
860   -}
861   -
862   -.note_prod .blue:after{
863   - content:'';
864   - width: 0;
865   - height: 0;
866   - border-top: 13px solid transparent;
867   - border-left: 5px solid #42b9f6;
868   - border-bottom: 13px solid transparent;
869   - position:absolute;
870   - top:-1px;
871   - margin-left:5px;
872   -}
873   -.note_prod .red{
874   - float:left;
875   - padding-top:5px;
876   - padding-bottom:5px;
877   - background-color:#f75d50;
878   - padding-left:10px;
879   - padding-right:5px;
880   - position:relative;
881   - color:#ffffff;
882   -}
883   -.note_prod .red:after{
884   - content:'';
885   - width: 0;
886   - height: 0;
887   - border-top: 13px solid transparent;
888   - border-left: 5px solid #f75d50;
889   - border-bottom: 13px solid transparent;
890   - position:absolute;
891   - top:-1px;
892   - margin-left:5px;
893   -}
894   -.note_prod .yellow{
895   - float:left;
896   - padding-top:5px;
897   - padding-bottom:5px;
898   - background-color:#fbc665;
899   - padding-left:10px;
900   - padding-right:5px;
901   - position:relative;
902   -}
903   -.note_prod .yellow:after{
904   - content:'';
905   - width: 0;
906   - height: 0;
907   - border-top: 13px solid transparent;
908   - border-left: 5px solid #fbc665;
909   - border-bottom: 13px solid transparent;
910   - position:absolute;
911   - top:-1px;
912   - margin-left:5px;
913   -}
914   -
915   -
916   -.products_block .product{float:left; width:190px; vertical-align:bottom;}
917   -.product .image{height:225px;position:relative;}
918   -.product .image img{position:absolute;bottom:0;left:15px;}
919   -
920   -.price{
921   - font-size: 18px;
922   - color: #f75d50;
923   - font-weight: bold;
924   - text-align:center;}
925   -
926   -.product{padding-bottom:30px;position:relative;}
927   -.product p{font-size:15px; text-align:center; margin-top:15px;}
928   -.left52{margin-left:52px;}
929   -.product a{color:#ffffff;}
930   -.mrg1{margin-top: 25px; margin-bottom: 15px;}
931   -
932   -.products_martopbot{margin-top:60px;margin-bottom:100px;}
933   -
934   -.cont_shop_but{display:table-cell;vertical-align:middle;padding:35px;}
935   -.cont_shop{text-decoration:none;font-size:12px;border-bottom:1px dotted #799920;color:#799920;}
936   -
937   -.icons{
938   - width:45px;
939   - height:50%;
940   - position:absolute;
941   - z-index:9;
942   - right:0;
943   - padding-top:25px;
944   - padding-right:15px;
945   -}
946   -.icons a{
947   - width:44px;
948   - height:44px;
949   - float: left;
950   - border: 1px solid #d2d2d2;
951   - margin-bottom: 5px;
952   - background-color: white;
953   -}
954   -a:hover{cursor:pointer;}
955   -
956   -
957   -.basket_item .form-group{display:inline;}
958   -
959   -.basket.open:after{
960   - content: '';
961   - position: absolute;
962   - top: 43px;
963   - width: 100%;
964   - height: 10px;
965   - background-color: white;
966   - left: 0;
967   - z-index: 9990;
968   -}
969   -
970   -.basket_hovered .basket_sum{float:left;}
971   -
972   -a.active{font-weight:bold;text-decoration: underline;}
973   -
974   -/*
975   - ==== BANNER ====
976   -*/
977   -
978   -.HOME_RIGHT {
979   - display: inline-block;
980   - vertical-align: top;
981   - margin-left: 10px;
982   - position: absolute;
983   -}
984   -
985   -#HOME_UNDER_SLIDER > div {
986   - display: inline-block;
987   - margin-right: 3px;
988   - margin-top: 3px;
989   -}
990   -
991   -.sort_block {
992   - display: inline-block;
993   -}
994   -.sort_block ul {
995   - display: inline-block;
996   - margin: 0;
997   - padding: 0;
998   -}
999   -.sort_block ul li {
1000   - display: inline-block;
1001   - margin: 0 0.5em;
1002   - list-style: none;
1003   -}
1004   -.sort_block ul li a.asc:after, .sort_block ul li a.desc:after {
1005   - display: block;
1006   - width: 5px;
1007   - height: 3px;
1008   - position: absolute;
1009   - top: 50%;
1010   - margin-top: -1px;
1011   - right: -10px;
1012   - content: '';
1013   - background: url("../img/arrow_sort_asc_desc.png") no-repeat;
1014   -}
1015   -.sort_block ul li a.asc:after {
1016   - background-position: 0 0;
1017   -}
1018   -.sort_block ul li a.desc:after {
1019   - background-position: 0 -3px;
1020   -}
1021   -/*************/
1022   -.home_banner_up {margin-top: 20px;}
1023   -.home_banner_up .HOME_RIGHT {
1024   - display: block;
1025   - float: right;
1026   - position: static;
1027   - margin-left: 0;
1028   -}
1029   -#HOME_SLIDER .jssorb03 div, #HOME_SLIDER .jssorb03 div:hover, #HOME_SLIDER .jssorb03 .av {
1030   - width: 6px;
1031   - height: 6px;
1032   - border-radius: 50%;
1033   - line-height: 6px;
1034   - background: #fff;
1035   - border: 2px solid #fff;
1036   - box-shadow: 0px 0px 5px 0px rgba(54, 54, 54, 0.75);
1037   -}
1038   -
1039   -#HOME_SLIDER .jssorb03 div.av:hover, #HOME_SLIDER .jssorb03 div.av:active, #HOME_SLIDER .jssorb03 .av {
1040   - cursor: default;
1041   - background: #95BA2F;
1042   -}
1043   -.special-products {
1044   - padding-top: 30px;
1045   -}
1046   -.special-products .link_buy {
1047   - margin-bottom: 0;
1048   -}
1049   -.special-products .item {
1050   - margin-bottom: 0 !important;
1051   - text-align: center;
1052   -}
1053   -.why_me_ {padding-top: 30px; overflow: hidden; margin-bottom: 60px;}
1054   -.why_me_ .why_list {width: 1038px; margin-left: -58px}
1055   -.seo_text {
1056   -
1057   -}
1058   -.seo_text p {
1059   - margin: 12px 0 0 0;
1060   - font-size: 13px !important;
1061   - color: #333 !important;
1062   - font-family: Roboto !important;
1063   -}
1064   -.seo_text p:first-child {margin-top: 0}
1065   -.product-special {position: absolute}
1066   -.jcarousel-skin-tango .jcarousel-item {
1067   - width: 38px;
1068   - height: 38px;
1069   - border: 1px solid #d2d2d2;
1070   - text-align: center;
1071   - background: #fff;
1072   -}
1073   -.jcarousel-skin-tango .jcarousel-item a {
1074   - display: table-cell;
1075   - width: 38px;
1076   - height: 38px;
1077   - vertical-align: middle;
1078   -}
1079   -.mycarousel img {
1080   - max-width: 38px;
1081   - max-height: 38px;
1082   - border: 0;
1083   - vertical-align: middle;
1084   -}
1085   -.jcarousel-skin-tango .jcarousel-clip-vertical, .jcarousel-skin-tango .jcarousel-container-vertical {
1086   - height: 175px;
1087   -}
1088   -.jcarousel-skin-tango .jcarousel-container-vertical {
1089   - padding: 0;
1090   -}
1091   -.jcarousel-skin-tango .jcarousel-prev-vertical {
1092   - top:-13px;
1093   -}
1094   -.jcarousel-skin-tango .jcarousel-next-vertical {
1095   - bottom: -13px;
1096   -}
1097   -.jcarousel-skin-tango .jcarousel-prev-vertical, .jcarousel-skin-tango .jcarousel-next-vertical {
1098   - left: 0;
1099   - width: 42px;
1100   - background-position: 14px 0;
1101   -}
1102   -.jcarousel-skin-tango .jcarousel-prev-vertical:hover, .jcarousel-skin-tango .jcarousel-next-vertical:hover {
1103   - background-position: 14px 0;
1104   - left: 0;
1105   -}
1106   -ul.product-special {
1107   - position: absolute;
1108   - top: 0;
1109   - left: 16px;
1110   -}
1111   -ul.product-special li {
1112   - width: 100%;
1113   - float: left;
1114   -}
1115   -ul.product-special li div {
1116   - color: #333;
1117   - font-size: 10px;
1118   - text-transform: uppercase;
1119   - font-weight: 700;
1120   - height: 22px;
1121   - line-height: 24px;
1122   - padding: 0 9px;
1123   - position: relative;
1124   - border-top-left-radius: 4px;
1125   - border-bottom-left-radius: 4px;
1126   - margin-top: 8px;
1127   - float: left;
1128   -}
1129   -ul.product-special li:first-child {margin-top: 0}
1130   -ul.product-special li.top div {
1131   - background: #fbc665;
1132   -}
1133   -ul.product-special li.top div:after {
1134   - content: '';
1135   - position: absolute;
1136   - right: -19px;
1137   - top: 3px;
1138   - border: 11px solid transparent;
1139   - border-top: 5px solid #fbc665;
1140   - transform: rotate(-90deg);
1141   -}
1142   -ul.product-special li.new div{
1143   - background: #42b9f6;
1144   -}
1145   -
1146   -ul.product-special li.new div:after {
1147   - content: '';
1148   - position: absolute;
1149   - right: -18px;
1150   - top: 2px;
1151   - border: 11px solid transparent;
1152   - border-top: 5px solid #42b9f6;
1153   - transform: rotate(-90deg);
1154   -}
1155   -ul.product-special li.promo div {
1156   - background: #f75d50;
1157   -}
1158   -ul.product-special li.promo div:after {
1159   - content: '';
1160   - position: absolute;
1161   - right: -18px;
1162   - top: 2px;
1163   - border: 11px solid transparent;
1164   - border-top: 5px solid #f75d50;
1165   - transform: rotate(-90deg);
1166   -}
1167   -.cost-block {
1168   - margin-top: 1px;
1169   -}
1170   -.products.pn a.link_buy {
1171   - margin-bottom: 0;
1172   -}
1173   -.products.pn {
1174   - padding-bottom: 0;
1175   -}
1176   -.products.pn>ul {
1177   - width: 100%;
1178   - float: left;
1179   - margin-bottom: -3px;
1180   -}
1181   -
1182   -._form_checkbox_reset, .sort_block ul li a, .sort_block {
1183   - font-size: 12px;
1184   -}
1185   -.filter_accept_bloc {margin-top: 13px; margin-bottom: 0;}
1186   -._form_checkbox_reset {
1187   - color: #6a6a6a;
1188   - display: block;
1189   - width: 128px;
1190   - height: 28px;
1191   - border: 1px solid #d2d2d2;
1192   - line-height: 28px;
1193   - text-align: center;
1194   - border-radius: 4px;
1195   - text-decoration: none;
1196   - margin: 0 auto;
1197   -}
1198   -._form_checkbox_reset:hover {
1199   - border: 1px solid #95ba2f;
1200   - color: #6a6a6a;
1201   -}
1202   -._form_checkbox_reset:active {
1203   - border: 1px solid #95ba2f;
1204   - background: #95ba2f;
1205   - color: #fff;
1206   -}
1207   -.sort_block ul li a {
1208   - color: #8fa951;
1209   - position: relative;
1210   -}
1211   -.sort_block ul li a:hover {
1212   - color: #333;
1213   -}
1214   -#HOME_SLIDER .jssora03l, #HOME_SLIDER .jssora03r {
1215   - width: 36px;
1216   - height: 340px;
1217   - background: url('../img/new_arrows_.png') no-repeat;
1218   -}
1219   -#HOME_SLIDER .jssora03l, #HOME_SLIDER .jssora03l:hover {
1220   - background-position: 0 50%;
1221   - left: 0;
1222   - top: 0;
1223   -}
1224   -#HOME_SLIDER .jssora03r, #HOME_SLIDER .jssora03r:hover {
1225   - background-position: -36px 50%;
1226   - right: 0;
1227   - top: 0;
1228   -}
1229   -.loyout ._prd_spec-wr {margin-top: 10px;}
1230   -.loyout .special-products:first-child {
1231   - border-top: 0;
1232   - padding-top: 0;
1233   -
1234   -}
1235   -.irs-slider {
1236   - width: 13px;
1237   - height: 13px;
1238   - top: 25px;
1239   - border-radius: 100%;
1240   - box-shadow: none;
1241   - border: 1px solid #d2d2d2;
1242   - background: #ffffff;
1243   - background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
1244   - background: -webkit-linear-gradient(top, #ffffff 0%,#ebebeb 100%);
1245   - background: linear-gradient(to bottom, #ffffff 0%,#ebebeb 100%);
1246   - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 );
1247   -}
1248   -.irs-slider.state_hover, .irs-slider:hover {
1249   - background: #ffffff;
1250   -}
1251   -.irs-slider:after {
1252   - display: none;
1253   -}
1254   -.irs-slider:before {
1255   - content: "";
1256   - position: absolute;
1257   - width: 5px;
1258   - height: 5px;
1259   - z-index: 2;
1260   - border: 1px solid #d2d2d2;
1261   - border-radius: 100%;
1262   - background: #799920;
1263   - top: 3px;
1264   - left: 3px;
1265   -}
1266   -.irs-bar {
1267   - height: 3px;
1268   - top: 30px;
1269   -}
1270   -.irs-line {
1271   - height: 9px;
1272   - background: #ebebeb;
1273   - border: 1px solid #d2d2d2;
1274   - top: 27px;
1275   -}
1276   -.irs-line:before {
1277   - width: 166px;
1278   - height: 5px;
1279   - position: absolute;
1280   - content: '';
1281   - top: 2px;
1282   - left: 2px;
1283   - background: #d2d2d2;
1284   - border-radius: 5px;
1285   -}
1286   -.irs-min, .irs-max {display: none;}
1287   -.irs {height: 49px;}
1288   -.price_filter.first_price_li {margin-top: 8px;}
1289   -.product_read_ .w{
1290   - width: 110px;
1291   - overflow: hidden;
1292   - margin: 0;
1293   - padding-top: 0;
1294   - display: table-cell;
1295   - vertical-align: middle;
1296   - height: 32px;
1297   - float: none;
1298   -}
1299   -.product_read_ .w strike, .product_read_ .w .cost {
1300   - width: 100%;
1301   - float: left;
1302   - /*line-height: 15px;*/
1303   -}
1304   -
1305   -.product_read_price .link_buy {
1306   - width: 118px;
1307   - position: absolute;
1308   - top: 50%;
1309   - right: 0;
1310   - margin: -16px 0 0 0;
1311   -}
1312   -.product_read_price { position: relative; min-height: 32px;margin-top: 10px;}
1313   -.special-products.products h3 {margin-bottom: 10px;}
1314   -.special-products.products li.item {
1315   - margin-top: 30px;
1316   -}
1317   -.productLeftBar .cost_box {
1318   - border-top: 0;
1319   - padding: 10px 0 15px 0;
1320   -}
1321   -.productLeftBar .product_mod {
1322   - width: 100%;
1323   - float: left;
1324   - border-bottom: 1px solid #d2d2d2;
1325   - padding-bottom: 15px;
1326   -}
1327   -#login-form .btn-primary {
1328   -}
1329   -.field-orders-delivery .control-label, .field-orders-payment .control-label, .field-orders-body .control-label, .textareagroup .control-label {
1330   - width: 100%;
1331   - float: left;
1332   -}
1333   -.basket_title_ {
1334   - text-align: center;
1335   -}
1336   -.cont_shopping-wr {
1337   - width: 100%;
1338   - float: left;
1339   - margin-top: 10px;
1340   -}
1341   -.cont_shopping-wr .cont_shopping {
1342   - float: right;
1343   -}
1344   -.cont_shopping {
1345   - display: block !important;
1346   - border-top: 0!important;
1347   - border-left: 0!important;
1348   - border-right: 0!important;
1349   - border-bottom: 1px dashed #799920!important;
1350   - color: #799920!important;
1351   - margin: 0!important;
1352   - padding: 0!important;
1353   - font-size: 12px!important;
1354   - float: left;
1355   - border-radius: 0 !important;
1356   -}
1357   -.info.product-thumb-video {
1358   - width: 100%;
1359   - height: 100%;
1360   -}
1361   -.info.product-thumb-video iframe, .info.product-thumb-video embed {
1362   - width: 100% !important;
1363   - height: auto !important;
1364   -}
1365   -.input-blocks-wrapper, .input-blocks {
1366   - width: 100%;
1367   - float: left;
1368   -}
1369   -.form-order .input-blocks-wrapper {
1370   - margin-top: 6px;
1371   -}
1372   -.input-blocks label {
1373   - font-size: 13px;
1374   - color: #333;
1375   -}
1376   -.basket_input_2 label {
1377   - height: 30px;
1378   - line-height: 30px;
1379   - float: left;
1380   - width: 70px !important;
1381   - padding-top: 0 !important;
1382   -}
1383   -
1384   -.custom-input-2 {
1385   - width: 100%;
1386   - height: 30px;
1387   - box-sizing: border-box;
1388   - outline: none;
1389   - line-height: 30px;
1390   - padding-left: 8px;
1391   - margin-top: 5px;
1392   - background: #fff;
1393   - border-radius: 4px;
1394   -}
1395   -.custom-input-2, .custom-area-2, .textareagroup textarea {
1396   - border: 1px solid #d2d2d2;
1397   - box-sizing: border-box;
1398   - font-size: 13px;
1399   - color: #636363;
1400   -}
1401   -.custom-area-2, .textareagroup textarea {
1402   - min-height: 128px;
1403   - max-height: 128px;
1404   - resize: none;
1405   - width: 100%;
1406   - max-width: 100%;
1407   - outline: none;
1408   - padding-left: 8px;
1409   - padding-top: 8px;
1410   - margin-top: 8px;
1411   -}
1412   -.basket_input_2 .custom-input-2 {
1413   - width: 270px;
1414   - float: right;
1415   - margin-top: 0;
1416   -}
1417   -.custom-input-2:focus, .custom-area-3:focus, .textareagroup textarea:focus {box-shadow: 1px 2px 2px 0px rgba(215, 215, 215, 0.75) inset; transition: 0.1s}
1418   -.textareagroup textarea:focus{border: 1px solid #d2d2d2;}
1419   -.title_groups, .radio_grp label.control-label, .textareagroup .control-label {
1420   - font-size: 12px;
1421   - font-weight: bold;
1422   - text-transform: uppercase;
1423   - margin-bottom: 12px;
1424   -}
1425   -.input-blocks-group {
1426   - width: 100%;
1427   - float: left;
1428   - border-bottom: 1px solid #d2d2d2;
1429   - padding-bottom: 20px;
1430   - margin-top: 18px;
1431   -}
1432   -.custom-form-buttons {
1433   - width: 100%;
1434   - float: left;
1435   -}
1436   -input.custom-radio + label, input.custom-check + label {
1437   - font-size: 13px;
1438   - cursor: pointer;
1439   - margin-left: 6px;
1440   -}
1441   -/***radio***/
1442   -input.custom-radio, input.custom-check {display: none}
1443   -input.custom-radio + label span{
1444   - width: 16px;
1445   - height: 16px;
1446   - background: url('../img/radio_new.png') no-repeat;
1447   - float: left;
1448   - transition: .2s;
1449   - margin-top: 1px;
1450   -}
1451   -input.custom-radio:checked + label span, input.custom-radio:checked + label:hover span {
1452   - background: url('../img/radio_new-active.png') no-repeat;
1453   -}
1454   -
1455   -input.custom-radio + label:hover {
1456   - text-decoration: underline;
1457   -}
1458   -.custom-form-buttons {
1459   - margin-top: 7px;
1460   -}
1461   -.custom-form-buttons:first-child {margin-top: 0}
1462   -.delivery-data .field-order-delivery-childs .control-label {display: none;}
1463   -.checkout_basket {
1464   - width: 100%;
1465   - float: left;
1466   -}
1467   -.checkout_basket button {
1468   - margin: 0 auto;
1469   -}
1470   -.input-blocks-wrapper .help-block {
1471   - padding-left: 71px;
1472   - padding-top: 4px;
1473   - width: 100%;
1474   - float: left;
1475   - box-sizing: border-box;
1476   - margin-bottom: 0;
1477   -}
1478   -.cont_shop_but-wr {
1479   - height: 33px;
1480   - margin-top: 35px;
1481   - padding-bottom: 29px;
1482   -}
1483   -.cont_shop_but-wr .cont_shop {
1484   - margin-top: 8px;
1485   - float: left;
1486   -}
1487   -.cont_shop_but-wr .submit4.bottom3 {float: right;}
1488   -._qqq_ .params {font-size: 12px;}
1489   -.activeShow {border-bottom: 0 !important;}
1490   -.delivery-data:after {
1491   - width: 100%;
1492   - border-bottom: 1px solid #d2d2d2;
1493   - position: absolute;
1494   - content: '';
1495   - bottom: -27px;
1496   - left: 0;
1497   -}
1498   -.img_ajax_basket img {
1499   - margin-right: 0!important;
1500   - max-width: 90px;
1501   - max-height: 90px;
1502   - vertical-align: middle;
1503   -}
1504   -.jcarousel-skin-tango>li{display: none;}
1505   -#login-form {
1506   - margin: 50px auto 0 auto;
1507   -}
1508   -.wrapper_all {}
1509   -#bg {
1510   - top: 0 !important;
1511   - z-index: 1 !important;
1512   -}
1513   -.top, .wrap, .bottom, .fotter {
1514   - position: relative;
1515   - z-index: 2;
1516   -}
1517   -.owl-pagination {display: none;}
1518   -.owl-controls .owl-buttons div {
1519   - width: 34px !important;
1520   - height: 50px !important;
1521   - background: #596065 !important;
1522   - top:50% !important;
1523   - margin: -25px 0 0 0 !important;
1524   - opacity: 1 !important;
1525   - border-radius: 0 !important;
1526   - padding: 0!important;
1527   - position: absolute;
1528   -}
1529   -.owl-controls .owl-buttons div:hover {
1530   - background: #acafb2 !important;
1531   - transition: 0.2s!important;
1532   -}
1533   -.owl-controls .owl-buttons .owl-prev {
1534   - border-top-right-radius: 4px !important;
1535   - border-bottom-right-radius: 4px !important;
1536   - left: -20px;
1537   -
1538   -}
1539   -.owl-controls .owl-buttons .owl-next {
1540   - border-top-left-radius: 4px !important;
1541   - border-bottom-left-radius: 4px !important;
1542   - right: -20px;
1543   -
1544   -}
1545   -.owl-controls .owl-buttons div:before {
1546   - position: absolute;
1547   - content: '';
1548   - width: 8px;
1549   - height: 22px;
1550   - background: url("../img/arrows_blocks.png") no-repeat;
1551   - top:50%;
1552   - margin-top: -11px;
1553   - left: 50%;
1554   - margin-left: -4px;
1555   -}
1556   -.owl-controls .owl-buttons .owl-prev:before {
1557   - background-position: 0 0;
1558   -}
1559   -.owl-controls .owl-buttons .owl-next:before {
1560   - background-position: -8px 0;
1561   -}
1562   -.basket_input_2.required .control-label {position: relative}
1563   -.basket_input_2.required .control-label:before {
1564   - position: absolute;
1565   - top: 0;
1566   - content: '*';
1567   - color: #D60000;
1568   - left: -11px;
1569   - padding-top: 2px;
1570   -}
  1 +html,form,body{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}.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{color:#6a6a6a;font-size:14px;text-decoration:underline}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,0.46);-moz-box-shadow:-1px 5px 14px 0 rgba(50,46,50,0.46);box-shadow:-1px 5px 14px 0 rgba(50,46,50,0.46);padding:20px}nav.top{background:#f5f5f5;padding:10px 0;border-bottom:1px solid #d2d2d2;font-size:12px}nav.top ul{list-style:none;margin:0;padding:0}nav.top ul li{float:left;padding-right:20px}nav.top ul li a{font-size:12px}nav.top a{color:#6a6a6a;text-decoration:none}#help{background:url(../img/help.png) right no-repeat;padding-right:20px}#help span{border-bottom:1px dotted #6a6a6a}#login{background:url(../img/login.png) right no-repeat;padding-right:20px;font-size:12px}#login span{border-bottom:1px dotted #6a6a6a}.search{margin:-5px 0 -5px 100px;float:left}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{float:left;position:relative;text-align:center;margin-top:20px}.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}.logo a{display:block;width:193px;height:84px;background:url(../img/logo.png) no-repeat}.logo a span{display:none}#call{color:#6a6a6a;text-decoration:none;border-bottom:1px dotted #6a6a6a}.basket{float:right;position:relative;border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;font-size:18px;text-transform:uppercase;margin-top:13px}.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{background:#596065;border:1px solid #e8e8e8}.menu ul{margin:0;padding:0;list-style:none}.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 21px;text-transform:uppercase;color:#fff;font-size:15px;text-decoration:none;font-weight:600}.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{margin:0;padding:0;list-style:none}.menu_childs ul li{float:left}.menu_childs ul li a{float:left;padding:15px 23px;text-transform:uppercase;color:#596065;font-size:14px;font-weight:700;text-decoration:none}.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{float:left;width:120px;padding-top:130px;text-align:center;text-transform:uppercase;color:#494949;text-decoration:none;font-weight:700}.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}.why_me_,.products{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}.pn{border:none}.cost,.product_read_price #cost{color:#f75d50;font-size:18px;margin:0;padding:0}.cost span,.cost span.valute,.product_read_price .valute{font-size:14px}strike,strike span#old_cost{font-size:14px;color:#333}.submit4m,a.link_buy,.checkout_basket button,.submit4{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}.submit4.bottom3{font-size:12px!important;display:block}.basket .submit4.bottom3{font-size:12px!important;display:block;margin-top:10px}a.link_buy,.checkout_basket button{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}a.link_buy:hover,.submit4m:hover,.checkout_basket button:hover,.submit4:hover,.btn-primary:hover{border-bottom:3px solid #95ba2f}a.link_buy:active,.submit4m:active,.checkout_basket button:active,.submit4:active,.btn-primary:active{background:#799920;border-bottom:3px solid #799920}.checkout_basket button:focus,.submit4:focus{outline:none}.mycarousel{position:absolute;right:22px;top:13px}ul.mycarousel{list-style:none;margin:0;padding:0}ul.mycarousel li{margin:0;padding:0}.mycarousel img{border:1px solid #d2d2d2}h3{text-align:center;text-transform:uppercase;font-size:20px}h2.why{width:213px;height:49px;background:url(../img/logo-why.png) no-repeat;margin:0 auto;padding:0 0 20px}h2.why span{display:none}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;vertical-align:middle}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}.bottom{background:#4d5458;padding:40px 0;color:#fff}.bottom .leftbar{float:left;width:210px}.bottom ul{list-style:none;margin:0;padding:0;line-height:23px}.bottom ul a{color:#fff;font-size:15px;text-decoration:none}.bottom ul a:hover{color:#799920}.phones{padding-left:25px;background:url(../img/phone.png) left top no-repeat;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;text-align:center}.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}.bread-crumbs ul li{float:left;padding-left:20px;height:100%;line-height:29px;color:#7d7d7d;position:relative;font-size:12px}.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:visited,.bread-crumbs ul li a:link{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;margin-right:20px}.rightbar{float:right;width:380px;margin-left:40px}.rightbar.basket_rightbar{margin-right:20px}.rightbar2{float:right;width:320px}.content{overflow:hidden}* html .content{height:1%}.content2{overflow:hidden}* html .content2{height:1%}.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:0;padding:0;line-height:22px;margin-top:6px}.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:-6px 0 0;top:50%}.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;text-align:center;position:relative}ul.product_mod li.active:before{width:48px;height:48px;position:absolute;content:'';background:none;border:2px solid #95ba2f;top:-1px;left:-1px;box-sizing:border-box}ul.product_mod li a{width:46px;height:46px;display:table-cell;vertical-align:middle}ul.product_mod li a:focus{outline:none}ul.product_mod li img{vertical-align:middle;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;text-align:center;border:1px solid #d2d2d2}ul.product_colors li a{width:98px;height:98px;vertical-align:middle;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:progid:DXImageTransform.Microsoft.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{padding:25px 15px 15px}#data_box .data_wrp h1{text-transform:uppercase}#data_box .data_wrp hr{height:1px;border:none;color:#000;background:#000;margin:45px 0 20px}#data_box .data_wrp hr.hr{height:1px;border:none;color:#000;background:#000;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:#1b9bb6 1px solid;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 .info{overflow:hidden}.basket_item > a{display:block;float:left}a.del:visited,a.del:link{background:url(../img/del.png) left center no-repeat;padding:2px 25px;font-size:12px;font-weight:400;color:#787878;text-decoration:underline}a.del:hover{color:#a52828;text-decoration:underline}.total{text-align:right;color:#87476a;font-size:20px;margin:10px 0}.submit4m{font-family:Roboto;border:none;background:#95ba2f;border-radius:4px;color:#fff;text-transform:uppercase;font-size:10px;cursor:pointer;width:102px;height:29px;border-bottom:3px solid #799920;line-height:29px}.submit4m:active,.submit4m:focus{outline:none}.btn-primary{border-bottom:3px solid #799920;border-top:0;border-right:0;border-left:0;margin-top:5px;padding:0 15px;background:#95ba2f;border-radius:4px;color:#fff;text-transform:uppercase;text-decoration:none;font-size:12px;font-weight:700;cursor:pointer;height:29px;line-height:29px}.btn-primary:active,.btn-primary:focus{outline:none}a.logout:visited,a.logout:link{border:none;padding:3px 5px;background:#f75d50;border-radius:5px;color:#fff;text-transform:uppercase;text-decoration:none;font-size:11px;font-weight:400;cursor:pointer}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;font-size:14px}a.btn-success:hover{border:#95ba2f 2px solid;color:#f75d50}.txtb1{font-size:14px;font-weight:700}.txtf{font-size:14px;font-weight:700;color:#87476a}.txtfb{font-size:20px;font-weight:700;color:#87476a}.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:visited,a.link2:link{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}ul.brends_list{list-style:none;margin:0;padding:0}ul.brends_list li{float:left;text-align:center;margin:0 15px 20px}.compare{text-align:center}.compare a:visited,.compare a:link{font-size:12px;text-decoration:underline}.alert-success{margin:10px 0;padding:10px;border:1px solid #3ed824;border-radius:5px;background:#c0feb5}.news_item{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid silver}.news_item img{margin-right:20px}.news_item a{font-size:16px}.pic{width:392px;height:365px}.pic a{width:392px;height:365px;display:table-cell;vertical-align:middle}.pic a img{max-width:392px;max-height:365px;vertical-align:middle}input#subscribe-email::-webkit-input-placeholder{color:#596065}input#subscribe-email::-moz-placeholder{color:#596065}input#subscribe-email:-ms-input-placeholder{color:#596065}input#subscribe-sale::-webkit-input-placeholder{color:#596065}input#subscribe-sale::-moz-placeholder{color:#596065}input#subscribe-sale:-ms-input-placeholder{color:#596065}#subscribe-email,#subscribe-sale{color:#596065}#subscribe-sale{width:100px;float:left;margin-right:20px;height:28px}.saletxt{width:150px;float:left;color:#fff;font-size:12px}#subscribe-email{width:370px}.txts{color:#9da9b1;font-size:18px;margin-bottom:20px}.content ul.pagination{list-style:none;text-align:center;margin:0 0 16px;padding:0 0 20px;border-bottom:1px solid #d2d2d2}.content ul.pagination li{display:inline}.content ul.pagination li a{padding:3px;color:#82a02f;font-size:15px;margin:0;text-decoration:none}.content ul.pagination li a:hover{text-decoration:underline}.content ul.pagination li.active a{color:#333}.boxitem{height:283px}ul.social{margin-top:20px}.social{list-style:none;margin:10px;padding:0;height:48px}.social li{display:inline-block;margin-right:7px;padding-bottom:10px}.social li a{width:36px;height:36px;display:block;margin:0;padding:0;text-indent:-9999px;background:#bcbcbc url(../img/social-ico-two.png) no-repeat 0 0;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}.social .fb{background-position:-44px 0;cursor:pointer}.social .vk{cursor:pointer}.social .vk:hover{background-color:#5B7FA6}.social .fb:hover{background-color:#354f89}.social .gp{background-position:-132px 0;cursor:pointer}.social .gp:hover{background-color:#c72f21}.social .tw{background-position:-144px 0;cursor:pointer}.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}.hide{display:none}.footer .fl{font-size:12px}.fotter{background:#484f55;height:50px;color:#98a3ab}.fotter a{color:#98a3ab;line-height:50px;float:left;font-size:12px}.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;text-align:center}.form-order{background:#f5f5f5;padding:0 20px 20px}#order-payment{float:right;width:280px}#order-delivery{float:right;width:280px}.delivery-data{margin-bottom:27px;position:relative;background:#95ba2f;display:none;border-radius:5px;float:left;box-sizing:border-box;padding:14px 20px;color:#fff;font-size:13px}.jcarousel-next-disabled,.jcarousel-prev-disabled{opacity:0;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}.content2 br{display:none}.pixbox a{width:160px;height:200px;display:table-cell;vertical-align:middle}.pixbox img{max-width:160px;max-height:200px;vertical-align:middle}.pagination li.prev.disabled span{display:none}.pagination li.next.disabled span{display:none}.fr{float:right}.nobottom{border-bottom:none!important}.dotted a{border-bottom:1px dotted gray}.mycabinet{padding-left:20px;margin-top:20px}.mycabinet .begin{text-transform:uppercase;font-size:13px;font-weight:700;padding-bottom:15px}.mycabinet ul{margin:0;padding:0;list-style:none}.mycabinet ul li{padding-top:10px;padding-bottom:10px}.mycabinet a{color:#799920;text-decoration:none}.lay_title .uppercase{text-transform:uppercase}.lay_title .center{text-align:center}.lay_title{padding-top:15px;font-size:24px}.user_data{width:390px;border-right:1px solid #d2d2d2;float:left}.user_data .col{padding-bottom:35px}.user_data .col.last{padding-bottom:0}.user_data .title{text-transform:uppercase;font-weight:700;width:170px;float:left;font-size:13px}.user_data .data{float:left;font-size:13px}.edit_menu{float:left;padding-left:60px;font-size:13px}.edit_menu div{padding-bottom:20px}.edit_menu a{color:#799920;text-decoration:none}.edit_menu .dotted{border-bottom:1px dotted #799920}.user_edit_area{padding-top:30px}.user_data_editing{float:left}.inputs .col{padding-bottom:12px!important}.user_data_editing .col{padding-bottom:35px;width:432px}.user_data_editing .title{text-transform:uppercase;font-weight:700;width:170px;float:left;font-size:13px}.user_data_editing .data{float:left;font-size:13px;width:262px}.user_data_editing input[type="text"]{padding:0;margin:0;border:1px solid #d2d2d2;padding-top:7px;padding-bottom:7px;padding-left:10px;padding-right:10px;border-radius:4px;font-size:12px;margin-top:-10px;width:240px}.user_data_editing .add{color:#799920;text-decoration:none;border-bottom:1px dotted #799920}.add_more{padding-bottom:24px;padding-left:170px}.delete{float:right}.delete_button{background:url(../img/ico_close.png) right no-repeat;width:16px;height:16px;float:right}.content_area{width:450px}#cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px}.buttons{display:inline-flex;align-items:center}.favorites{background-color:#f5f5f5;padding:5px;font-size:14px}.favorites .fav_point{background-color:#fff;border:1px solid #d2d2d2;border-radius:3px;margin-top:5px;padding:10px 20px}.favorites .fav_point .left{float:left;padding-right:0;width:178px}.favorites .fav_point .right{float:right;padding-right:0;padding-left:0}.favorites .link{color:#799920;text-decoration:none;border-bottom:1px dotted #799920}.redtext{color:#f75d50}.greentext{color:#95ba2f}.hold .orders_view{display:none!important}.orders_view{width:680px;margin-top:13px;padding-top:13px;padding-bottom:5px;border-top:1px solid #d2d2d2;display:block}.orders_view .order{float:left;width:225px;text-align:center}.orders_view .order .order_price{color:#f75d50;font-weight:700;font-size:15px}.orders_view .order .order_price span{font-size:24px}.orders_view .order img{padding-bottom:22px}.orders_view .order .note{font-size:13px}.orders_view .order .note span{color:#f75d50}.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}.open .basket_hovered{display:block}.open,.open .basket_hovered{-moz-box-shadow:0 0 5px rgba(149,149,149,0.75);-webkit-box-shadow:0 0 5px rgba(149,149,149,0.75);box-shadow:0 0 5px rgba(149,149,149,0.75)}.basket_hovered1:before{position:absolute;left:0;content:' ';width:100%;background-color:#fff;height:10px;top:45px;z-index:1112}.basket_item input{border:1px solid #d2d2d2;border-radius:4px;padding:9px;width:26px;font-size:18px;font-weight:700;text-align:center;background-color:#fff;color:#000;margin:7px}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.minus{background:url(../img/minus.png) no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer}.plus{background:url(../img/plus.png) no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer}.basket_sum{padding-top:15px}.basket_sum .sum_text{font-size:15px;text-transform:none;padding-top:12px;float:right!important;padding-top:1px;margin-bottom:11px}.basket_sum .sum_text span{font-size:18px;color:#f75d50;font-weight:700}.basket_sum a{color:#fff!important;font-size:15px!important;float:right}.black{z-index:9999;width:100%;height:100%;position:absolute;display:block;padding-top:6%}.black:before{content:'';background-color:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;top:0}.black.hidden{display:none}.black .item_added_win{background-color:#fff;width:640px;margin:auto;position:relative}.black_close{position:absolute;top:30px;right:30px;background:url(../img/ico_close2.png) no-repeat;width:22px;height:22px;display:inline-block;cursor:pointer}.block_content{padding-left:20px;padding-right:20px}.item_added_win h2{text-transform:uppercase;text-align:center;padding:30px}.block_content .item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #d2d2d2}.uppercase{text-transform:uppercase}.w230{width:230px}.w260{width:260px}.w430{width:430px}.borderbottom{border-bottom:1px solid #d2d2d2}.left_block .begin{text-transform:uppercase;font-size:13px;font-weight:700;padding-bottom:15px}.color_variants .variant{text-align:center;border:1px solid #d2d2d2;float:left;margin-right:5px;margin-bottom:5px}.variant:hover{cursor:pointer}.color_variants{margin-top:14px;margin-bottom:-5px}.color_variants .variant.active{width:44px;height:44px;border:2px solid #95ba2f}.color_variants .variant.active a{width:44px;height:44px}.tobasket{margin-top:20px;margin-bottom:20px}.tobasket:hover{color:#fff}.variant{width:46px;height:46px}.variant.active{width:44px;height:44px}.layout{margin-top:15px}.left_block{float:left}.right_block{float:right}.center_block{float:left;margin-left:23px}.left_block .links{margin-top:25px}.left_block .links li{list-style:none;padding-left:25px;display:inline-block;cursor:pointer;height:20px}.left_block .links ul{margin:0;padding:0}.left_block .links a{font-size:13.5px;text-decoration:none;color:#8ba73e}.links .add_bookmarks{background:url(../img/ico_add_bookmark.png) no-repeat center left}.links .what_price{background:url(../img/ico_price.png) no-repeat center left}.links .add_compare{background:url(../img/ico_scales.png) no-repeat center left}.spoiler_one{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #d2d2d2}.spoiler_one .spoiler_content{margin-top:15px;font-size:13px}.spoiler_one .spoiler_content.hidden{display:none}.title_spoiler:hover{cursor:pointer}.title_spoiler{background:url(../img/ico_open.png) no-repeat center left;padding-left:17px;font-size:13px;text-transform:uppercase;color:#333;font-weight:700;text-decoration:none}.title_spoiler.closed{background:url(../img/ico_close3.png) no-repeat center left}.features{list-style:none;padding:0;margin:0;font-size:13px}.features a{font-size:13px;text-decoration:none;border-bottom:1px dotted #8ba73e;color:#8ba73e}.features li{padding-top:5px;padding-bottom:4px}.note_prod{width:225px;height:23px;overflow:hidden;border-radius:5px;display:table;text-transform:uppercase;font-size:11px;font-weight:700}.note_prod .one{z-index:999}.note_prod .two{z-index:998}.note_prod .blue{float:left;background-color:#42b9f6;position:relative;padding:5px 5px 5px 10px}.note_prod .blue:after{content:'';width:0;height:0;border-top:13px solid transparent;border-left:5px solid #42b9f6;border-bottom:13px solid transparent;position:absolute;top:-1px;margin-left:5px}.note_prod .red{float:left;background-color:#f75d50;position:relative;color:#fff;padding:5px 5px 5px 10px}.note_prod .red:after{content:'';width:0;height:0;border-top:13px solid transparent;border-left:5px solid #f75d50;border-bottom:13px solid transparent;position:absolute;top:-1px;margin-left:5px}.note_prod .yellow{float:left;background-color:#fbc665;position:relative;padding:5px 5px 5px 10px}.note_prod .yellow:after{content:'';width:0;height:0;border-top:13px solid transparent;border-left:5px solid #fbc665;border-bottom:13px solid transparent;position:absolute;top:-1px;margin-left:5px}.products_block .product{float:left;width:190px;vertical-align:bottom}.product .image{height:225px;position:relative}.product .image img{position:absolute;bottom:0;left:15px}.price{font-size:18px;color:#f75d50;font-weight:700;text-align:center}.product{padding-bottom:30px;position:relative}.product p{font-size:15px;text-align:center;margin-top:15px}.left52{margin-left:52px}.product a{color:#fff}.mrg1{margin-top:25px;margin-bottom:15px}.products_martopbot{margin-top:60px;margin-bottom:100px}.cont_shop_but{display:table-cell;vertical-align:middle;padding:35px}.cont_shop{text-decoration:none;font-size:12px;border-bottom:1px dotted #799920;color:#799920}.icons{width:45px;height:50%;position:absolute;z-index:9;right:0;padding-top:25px;padding-right:15px}.icons a{width:44px;height:44px;float:left;border:1px solid #d2d2d2;margin-bottom:5px;background-color:#fff}a:hover{cursor:pointer}.basket_item .form-group{display:inline}.basket.open:after{content:'';position:absolute;top:43px;width:100%;height:10px;background-color:#fff;left:0;z-index:9990}.basket_hovered .basket_sum{float:left}a.active{font-weight:700;text-decoration:underline}.HOME_RIGHT{display:inline-block;vertical-align:top;margin-left:10px;position:absolute}#HOME_UNDER_SLIDER > div{display:inline-block;margin-right:3px;margin-top:3px}.sort_block{display:inline-block}.sort_block ul{display:inline-block;margin:0;padding:0}.sort_block ul li{display:inline-block;margin:0 .5em;list-style:none}.sort_block ul li a.asc:after,.sort_block ul li a.desc:after{display:block;width:5px;height:3px;position:absolute;top:50%;margin-top:-1px;right:-10px;content:'';background:url(../img/arrow_sort_asc_desc.png) no-repeat}.sort_block ul li a.asc:after{background-position:0 0}.sort_block ul li a.desc:after{background-position:0 -3px}.home_banner_up{margin-top:20px}.home_banner_up .HOME_RIGHT{display:block;float:right;position:static;margin-left:0}#HOME_SLIDER .jssorb03 div,#HOME_SLIDER .jssorb03 div:hover,#HOME_SLIDER .jssorb03 .av{width:6px;height:6px;border-radius:50%;line-height:6px;background:#fff;border:2px solid #fff;box-shadow:0 0 5px 0 rgba(54,54,54,0.75)}#HOME_SLIDER .jssorb03 div.av:hover,#HOME_SLIDER .jssorb03 div.av:active,#HOME_SLIDER .jssorb03 .av{cursor:default;background:#95BA2F}.special-products{padding-top:30px}.special-products .link_buy{margin-bottom:0}.special-products .item{margin-bottom:0!important;text-align:center}.why_me_{padding-top:30px;overflow:hidden;margin-bottom:60px}.why_me_ .why_list{width:1038px;margin-left:-58px}.seo_text p{margin:12px 0 0;font-size:13px!important;color:#333!important;font-family:Roboto!important}.seo_text p:first-child{margin-top:0}.product-special{position:absolute}.jcarousel-skin-tango .jcarousel-item{width:38px;height:38px;border:1px solid #d2d2d2;text-align:center;background:#fff}.jcarousel-skin-tango .jcarousel-item a{display:table-cell;width:38px;height:38px;vertical-align:middle}.mycarousel img{max-width:38px;max-height:38px;border:0;vertical-align:middle}.jcarousel-skin-tango .jcarousel-clip-vertical,.jcarousel-skin-tango .jcarousel-container-vertical{height:175px}.jcarousel-skin-tango .jcarousel-container-vertical{padding:0}.jcarousel-skin-tango .jcarousel-prev-vertical{top:-13px}.jcarousel-skin-tango .jcarousel-next-vertical{bottom:-13px}.jcarousel-skin-tango .jcarousel-prev-vertical,.jcarousel-skin-tango .jcarousel-next-vertical{left:0;width:42px;background-position:14px 0}.jcarousel-skin-tango .jcarousel-prev-vertical:hover,.jcarousel-skin-tango .jcarousel-next-vertical:hover{background-position:14px 0;left:0}ul.product-special{position:absolute;top:0;left:16px}ul.product-special li{width:100%;float:left}ul.product-special li div{color:#333;font-size:10px;text-transform:uppercase;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;float:left}ul.product-special li:first-child{margin-top:0}ul.product-special li.top div{background:#fbc665}ul.product-special li.top div:after{content:'';position:absolute;right:-19px;top:3px;border:11px solid transparent;border-top:5px solid #fbc665;transform:rotate(-90deg)}ul.product-special li.new div{background:#42b9f6}ul.product-special li.new div:after{content:'';position:absolute;right:-18px;top:2px;border:11px solid transparent;border-top:5px solid #42b9f6;transform:rotate(-90deg)}ul.product-special li.promo div{background:#f75d50}ul.product-special li.promo div:after{content:'';position:absolute;right:-18px;top:2px;border:11px solid transparent;border-top:5px solid #f75d50;transform:rotate(-90deg)}.cost-block{margin-top:1px}.products.pn a.link_buy{margin-bottom:0}.products.pn{padding-bottom:0}.products.pn>ul{width:100%;float:left;margin-bottom:-3px}._form_checkbox_reset,.sort_block ul li a,.sort_block{font-size:12px}.filter_accept_bloc{margin-top:13px;margin-bottom:0}._form_checkbox_reset{color:#6a6a6a;display:block;width:128px;height:28px;border:1px solid #d2d2d2;line-height:28px;text-align:center;border-radius:4px;text-decoration:none;margin:0 auto}._form_checkbox_reset:hover{border:1px solid #95ba2f;color:#6a6a6a}._form_checkbox_reset:active{border:1px solid #95ba2f;background:#95ba2f;color:#fff}.sort_block ul li a{color:#8fa951;position:relative}.sort_block ul li a:hover{color:#333}#HOME_SLIDER .jssora03l,#HOME_SLIDER .jssora03r{width:36px;height:340px;background:url(../img/new_arrows_.png) no-repeat}#HOME_SLIDER .jssora03l,#HOME_SLIDER .jssora03l:hover{background-position:0 50%;left:0;top:0}#HOME_SLIDER .jssora03r,#HOME_SLIDER .jssora03r:hover{background-position:-36px 50%;right:0;top:0}.loyout ._prd_spec-wr{margin-top:10px}.loyout .special-products:first-child{border-top:0;padding-top:0}.irs-slider{width:13px;height:13px;top:25px;border-radius:100%;box-shadow:none;border:1px solid #d2d2d2;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)}.irs-slider.state_hover,.irs-slider:hover{background:#fff}.irs-slider:after{display:none}.irs-slider:before{content:"";position:absolute;width:5px;height:5px;z-index:2;border:1px solid #d2d2d2;border-radius:100%;background:#799920;top:3px;left:3px}.irs-bar{height:3px;top:30px}.irs-line{height:9px;background:#ebebeb;border:1px solid #d2d2d2;top:27px}.irs-line:before{width:166px;height:5px;position:absolute;content:'';top:2px;left:2px;background:#d2d2d2;border-radius:5px}.irs-min,.irs-max{display:none}.irs{height:49px}.price_filter.first_price_li{margin-top:8px}.product_read_ .w{width:110px;overflow:hidden;margin:0;padding-top:0;display:table-cell;vertical-align:middle;height:32px;float:none}.product_read_ .w strike,.product_read_ .w .cost{width:100%;float:left}.product_read_price .link_buy{width:118px;position:absolute;top:50%;right:0;margin:-16px 0 0}.product_read_price{position:relative;min-height:32px;margin-top:10px}.special-products.products h3{margin-bottom:10px}.special-products.products li.item{margin-top:30px}.productLeftBar .cost_box{border-top:0;padding:10px 0 15px}.productLeftBar .product_mod{width:100%;float:left;border-bottom:1px solid #d2d2d2;padding-bottom:15px}.field-orders-delivery .control-label,.field-orders-payment .control-label,.field-orders-body .control-label,.textareagroup .control-label{width:100%;float:left}.basket_title_{text-align:center}.cont_shopping-wr{width:100%;float:left;margin-top:10px}.cont_shopping-wr .cont_shopping{float:right}.cont_shopping{display:block!important;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;border-radius:0!important}.info.product-thumb-video{width:100%;height:100%}.info.product-thumb-video iframe,.info.product-thumb-video embed{width:100%!important;height:auto!important}.input-blocks-wrapper,.input-blocks{width:100%;float:left}.form-order .input-blocks-wrapper{margin-top:6px}.input-blocks label{font-size:13px;color:#333}.basket_input_2 label{height:30px;line-height:30px;float:left;width:70px!important;padding-top:0!important}.custom-input-2{width:100%;height:30px;box-sizing:border-box;outline:none;line-height:30px;padding-left:8px;margin-top:5px;background:#fff;border-radius:4px}.custom-input-2,.custom-area-2,.textareagroup textarea{border:1px solid #d2d2d2;box-sizing:border-box;font-size:13px;color:#636363}.custom-area-2,.textareagroup textarea{min-height:128px;max-height:128px;resize:none;width:100%;max-width:100%;outline:none;padding-left:8px;padding-top:8px;margin-top:8px}.basket_input_2 .custom-input-2{width:270px;float:right;margin-top:0}.custom-input-2:focus,.custom-area-3:focus,.textareagroup textarea:focus{box-shadow:1px 2px 2px 0 rgba(215,215,215,0.75) inset;transition:.1s}.textareagroup textarea:focus{border:1px solid #d2d2d2}.title_groups,.radio_grp label.control-label,.textareagroup .control-label{font-size:12px;font-weight:700;text-transform:uppercase;margin-bottom:12px}.input-blocks-group{width:100%;float:left;border-bottom:1px solid #d2d2d2;padding-bottom:20px;margin-top:18px}.custom-form-buttons{width:100%;float:left}input.custom-radio + label,input.custom-check + label{font-size:13px;cursor:pointer;margin-left:6px}input.custom-radio,input.custom-check{display:none}input.custom-radio + label span{width:16px;height:16px;background:url(../img/radio_new.png) no-repeat;float:left;transition:.2s;margin-top:1px}input.custom-radio:checked + label span,input.custom-radio:checked + label:hover span{background:url(../img/radio_new-active.png) no-repeat}input.custom-radio + label:hover{text-decoration:underline}.custom-form-buttons{margin-top:7px}.custom-form-buttons:first-child{margin-top:0}.delivery-data .field-order-delivery-childs .control-label{display:none}.checkout_basket{width:100%;float:left}.checkout_basket button{margin:0 auto}.input-blocks-wrapper .help-block{padding-left:71px;padding-top:4px;width:100%;float:left;box-sizing:border-box;margin-bottom:0}.cont_shop_but-wr{height:33px;margin-top:35px;padding-bottom:29px}.cont_shop_but-wr .cont_shop{margin-top:8px;float:left}.cont_shop_but-wr .submit4.bottom3{float:right}._qqq_ .params{font-size:12px}.activeShow{border-bottom:0!important}.delivery-data:after{width:100%;border-bottom:1px solid #d2d2d2;position:absolute;content:'';bottom:-27px;left:0}.img_ajax_basket img{margin-right:0!important;max-width:90px;max-height:90px;vertical-align:middle}.jcarousel-skin-tango>li{display:none}#login-form{margin:50px auto 0}#bg{top:0!important;z-index:1!important}.top,.wrap,.bottom,.fotter{position:relative;z-index:2}.owl-pagination{display:none}.owl-controls .owl-buttons div{width:34px!important;height:50px!important;background:#596065!important;top:50%!important;margin:-25px 0 0!important;opacity:1!important;border-radius:0!important;padding:0!important;position:absolute}.owl-controls .owl-buttons div:hover{background:#acafb2!important;transition:.2s!important}.owl-controls .owl-buttons .owl-prev{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important;left:-20px}.owl-controls .owl-buttons .owl-next{border-top-left-radius:4px!important;border-bottom-left-radius:4px!important;right:-20px}.owl-controls .owl-buttons div:before{position:absolute;content:'';width:8px;height:22px;background:url(../img/arrows_blocks.png) no-repeat;top:50%;margin-top:-11px;left:50%;margin-left:-4px}.owl-controls .owl-buttons .owl-prev:before{background-position:0 0}.owl-controls .owl-buttons .owl-next:before{background-position:-8px 0}.basket_input_2.required .control-label{position:relative}.basket_input_2.required .control-label:before{position:absolute;top:0;content:'*';color:#D60000;left:-11px;padding-top:2px}
1571 2 \ No newline at end of file
... ...
frontend/web/css/style.dev.css 0 → 100755
  1 +html,form,
  2 +body { padding:0;margin:0;
  3 + font-family: 'Roboto';font-size:14px;color:#333;height:100%;
  4 +}
  5 +h1,h2,h3{margin:0px;padding:0px 0px 10px 0px;}
  6 +.fl{float:left;}
  7 +.fotter .wrap .fr{float:right; width: 180px; height: 50px; position: relative;font-size: 12px;}
  8 +.fotter .wrap .fr img{position: absolute; top: 50%; margin-top: -10px; right: 0;}
  9 +.fotter .wrap .fl {line-height: 50px;font-size: 12px;}
  10 +.both{clear:both;}
  11 +h1{margin:10px 0;font-size:24px;}
  12 +h3{margin-bottom:30px;}
  13 +p{margin:3px 0px;padding:0px;}
  14 +
  15 +a{color:#6a6a6a;font-size:14px;text-decoration:underline;}
  16 +a:hover{color:#799920;}
  17 +
  18 +.wrap {
  19 + width:960px;margin:0px auto;
  20 +}
  21 +.f{background: #ffffff;}
  22 +
  23 +.br{-webkit-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
  24 + -moz-box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
  25 + box-shadow: -1px 5px 14px 0px rgba(50, 46, 50, 0.46);
  26 + padding:20px;}
  27 +
  28 +nav.top{background:#f5f5f5;padding:10px 0px;border-bottom:1px solid #d2d2d2;font-size:12px;}
  29 +nav.top ul{list-style:none;margin:0px;padding:0px;}
  30 +nav.top ul li{float:left;padding-right:20px;}
  31 +nav.top ul li a{font-size: 12px;}
  32 +nav.top a{color:#6a6a6a;text-decoration:none;}
  33 +
  34 +#help{background:url('../img/help.png') right no-repeat;padding-right:20px;}
  35 +#help span{border-bottom:1px dotted #6a6a6a;}
  36 +
  37 +#login{background:url('../img/login.png') right no-repeat;padding-right:20px; font-size: 12px;}
  38 +#login span{border-bottom:1px dotted #6a6a6a;}
  39 +
  40 +.search{margin:-5px 0px -5px 100px;float:left;}
  41 +nav input[type="text"]{width:325px;outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;}
  42 +nav input[type="submit"]{width:35px;height:29px;border:none;background:url('../img/lupa_sub.png') center no-repeat;margin-left:-35px;cursor:pointer;}
  43 +
  44 +
  45 +
  46 +.header{margin:0px 0px 20px;}
  47 +
  48 +.phone{float:left;position:relative;text-align:center;margin-top:20px;}
  49 +.phone .tel{font-size:23px;}
  50 +.phone .tel span.more{margin-bottom: 3px}
  51 +.more_block{background:#ffffff;border:1px solid #d2d2d2;padding:10px;position:absolute;font-size:20px;display:none;z-index:99;}
  52 +
  53 +.more{background:url('../img/more.png') no-repeat;width:12px;height:7px;display:inline-block;cursor:pointer;margin-bottom:5px;}
  54 +
  55 +
  56 +.logo{margin:0px auto 0px;width:193px;}
  57 +.logo a{display:block;width:193px;height:84px;background:url('../img/logo.png') no-repeat;}
  58 +.logo a span{display:none;}
  59 +
  60 +#call{color:#6a6a6a;text-decoration:none;border-bottom:1px dotted #6a6a6a;}
  61 +
  62 +.basket{float:right;position:relative;border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;font-size:18px;text-transform: uppercase;margin-top:13px;}
  63 +.basket .info{float:left;border-right:1px solid #d2d2d2;padding-right:10px;margin-right:17px;}
  64 +.basket .info span{color:#f75d50;font-size:22px;}
  65 +.basket a:link,.basket a:visited{text-decoration:none;color:#000000;font-size:18px;}
  66 +
  67 +.basket span.more {margin-bottom: -1px}
  68 +.menu{
  69 + background:#596065;
  70 + border:1px solid #e8e8e8;
  71 +}
  72 +.menu ul{margin:0px;padding:0px;list-style:none;}
  73 +.menu ul li{float:left;border-left:1px solid #8b9094; height: 43px;}
  74 +.menu ul li:first-child{border-left:none;}
  75 +.menu ul li a{width: 100%; height:100%;line-height:43px;float:left;box-sizing:border-box; padding:0 21px;text-transform: uppercase;color:#ffffff;font-size:15px;text-decoration: none;font-weight: 600;}
  76 +.menu ul li:hover{background: #3e454b;}
  77 +.menu ul li.active a{background:#f5f5f5;color:#596065;}
  78 +.menu ul li.active a:hover{cursor: default;}
  79 +
  80 +.menu_childs{background:#f5f5f5;border:1px solid #e8e8e8;border-bottom:2px solid #596065;}
  81 +.menu_childs ul{margin:0px;padding:0px;list-style:none;}
  82 +.menu_childs ul li{float:left;}
  83 +.menu_childs ul li a{float:left;padding:15px 23px 15px 23px;text-transform: uppercase;color:#596065;font-size:14px;font-weight:bold;text-decoration: none;}
  84 +.menu_childs ul li a:hover{color:#878b8e;}
  85 +
  86 +.fr ul li{border:none;}
  87 +.akciya a{background:#f75d50;color:#ffffff;}
  88 +.brands a{background:#95ba2f;color:#ffffff;}
  89 +
  90 +a.myorders{color:#f75d50}
  91 +
  92 +.sub{margin:2px 0px 0px 0px;}
  93 +.sub img{float:left;margin-right:2px;}
  94 +
  95 +.rubrics{margin:60px 0 0 0;padding-bottom:27px;}
  96 +.rubrics ul{list-style:none;margin:0px;padding:0px;}
  97 +.rubrics ul li{float:left;margin:0px 35px;}
  98 +.rubrics ul li a{float:left;width:120px;padding-top:130px;text-align:center;text-transform: uppercase;color:#494949;text-decoration:none;font-weight:bold;}
  99 +.rubrics ul li.item_ryukzaki a{background:url('../img/ico1.png') no-repeat;}
  100 +.rubrics ul li.item_sumki a{background:url('../img/ico2.png') no-repeat;}
  101 +.rubrics ul li.item_chehly a{background:url('../img/ico3.png') no-repeat;}
  102 +.rubrics ul li.item_nesessery a{background:url('../img/ico4.png') no-repeat;}
  103 +.rubrics ul li.item_koshelki a{background:url('../img/ico5.png') no-repeat;}
  104 +
  105 +
  106 +.products{padding-bottom:30px;padding-top:20px;}
  107 +.why_me_, .products {
  108 + border-top: 1px solid #d2d2d2;
  109 +}
  110 +.products ul{list-style:none;margin:0;padding:0;}
  111 +.products ul li.item{float:left;width:192px;margin:0 0 50px 0;text-align:center;position:relative;}
  112 +.products ul li a.name, .special-products a.name {display:block;color:#799920;font-size: 15px;text-decoration:none;margin:15px 0 0 0;height:35px;overflow: hidden; box-sizing: border-box;padding: 0 10px;}
  113 +.products ul li a.name:hover, .special-products a.name:hover {text-decoration: underline}
  114 +.products ul li .info{text-align: left;}
  115 +.pn{border:none;}
  116 +
  117 +.cost, .product_read_price #cost {color:#f75d50;font-size:18px;margin:0;padding:0;}
  118 +.cost span, .cost span.valute, .product_read_price .valute {font-size: 14px;}
  119 +strike, strike span#old_cost{font-size:14px; color: #333}
  120 +
  121 +
  122 +.submit4m, a.link_buy, .checkout_basket button, .submit4 {
  123 + background: #95ba2f;
  124 + border-radius:4px;
  125 + height: 29px;
  126 + text-transform: uppercase;
  127 + color:#ffffff;
  128 + text-decoration:none;
  129 + font-weight:600;
  130 + text-align:center;
  131 + border-bottom: 3px solid #799920;
  132 + font-size: 12px;
  133 +}
  134 +.submit4.bottom3 {font-size: 12px !important;display: block;}
  135 +.basket .submit4.bottom3 {font-size: 12px !important;display: block; margin-top: 10px;}
  136 +a.link_buy, .checkout_basket button {
  137 +
  138 + display:block;
  139 + margin:0 auto 10px auto;
  140 + width:122px;
  141 + line-height:32px;
  142 +}
  143 +.checkout_basket button, .submit4{
  144 + margin: 0;
  145 + padding: 0 20px;
  146 + line-height: 31px;
  147 + width: auto;
  148 + border-top: 0;
  149 + border-left: 0;
  150 + border-right: 0;
  151 + cursor: pointer;
  152 +}
  153 +a.link_buy:hover, .submit4m:hover, .checkout_basket button:hover, .submit4:hover, .btn-primary:hover {
  154 + border-bottom: 3px solid #95ba2f;;
  155 +}
  156 +a.link_buy:active, .submit4m:active,.checkout_basket button:active, .submit4:active, .btn-primary:active {
  157 + background: #799920;
  158 + border-bottom: 3px solid #799920;
  159 +
  160 +}
  161 +.checkout_basket button:focus, .submit4:focus { outline: none;}
  162 +.mycarousel{position:absolute;right:22px;top:13px;}
  163 +ul.mycarousel{list-style:none;margin:0px;padding:0px;}
  164 +ul.mycarousel li{margin:0px;padding:0px;}
  165 +.mycarousel img{border:1px solid #d2d2d2;}
  166 +
  167 +h3{text-align:center;text-transform: uppercase;font-size:20px;}
  168 +h2.why{width:213px;height:49px;background:url('../img/logo-why.png') no-repeat;margin:0px auto; padding: 0 0 20px 0;}
  169 +h2.why span{display:none;}
  170 +
  171 +ul.why_list{list-style:none;margin:0px;padding:0px;}
  172 +ul.why_list li{float:left;margin-left:58px; width: 288px; height:96px;box-sizing: border-box;padding-left: 110px; margin-top: 20px;}
  173 +ul.why_list li div {
  174 + display: table-cell;
  175 + height: 96px;
  176 + vertical-align: middle;
  177 +}
  178 +ul.why_list li span{font-weight:bold;color:#799920;}
  179 +ul.why_list li.item1{background:url('../img/why_item1.png') left no-repeat;}
  180 +ul.why_list li.item2{background:url('../img/why_item2.png') left no-repeat;}
  181 +ul.why_list li.item3{background:url('../img/why_item3.png') left no-repeat;}
  182 +ul.why_list li.item4{background:url('../img/why_item4.png') left no-repeat;}
  183 +ul.why_list li.item5{background:url('../img/why_item5.png') left no-repeat;}
  184 +ul.why_list li.item6{background:url('../img/why_item6.png') left no-repeat;}
  185 +
  186 +.banner_akciya{margin:50px 0px;}
  187 +
  188 +.bottom{background:#4d5458;padding:40px 0px;color:#ffffff;}
  189 +.bottom .leftbar{float:left;width:210px; }
  190 +.bottom ul{list-style:none;margin:0px;padding:0px;line-height: 23px;}
  191 +.bottom ul a{color:#ffffff;font-size:15px;text-decoration:none;}
  192 +.bottom ul a:hover{color:#799920;}
  193 +
  194 +.phones{padding-left:25px;background:url('../img/phone.png') left top no-repeat;margin-top:50px;line-height: 23px;font-size: 18px;}
  195 +.map{padding:5px 0px 5px 25px;background:url('../img/map.png') left no-repeat; margin-bottom: 7px;}
  196 +a.more_map{color:#99a5ad;border-bottom:1px dotted #99a5ad;text-decoration:none;font-size:11px;text-align:center;}
  197 +
  198 +.bread-crumbs{padding:0 0 0 20px;border-bottom:1px solid #d2d2d2; height: 29px;}
  199 +.bread-crumbs ul{list-style:none;margin:0 0 0 0;padding:0; height: 29px;}
  200 +.bread-crumbs ul li{float:left;padding-left:20px;height: 100%; line-height: 29px; color: #7d7d7d; position: relative; font-size: 12px;}
  201 +.bread-crumbs ul li:first-child {padding-left: 0}
  202 +.bread-crumbs ul li a {font-size: 12px; display: block; color: #7d7d7d}
  203 +.bread-crumbs ul li a:visited,.bread-crumbs ul li a:link{color:#7d7d7d;text-decoration:underline;}
  204 +.bread-crumbs ul li a:hover{color:#464646;text-decoration: none;}
  205 +.breadcrumb > li + li:before {
  206 + color: #ccc;
  207 + content: "/";
  208 + position: absolute;
  209 + top: 0;
  210 + left: 8px;
  211 +}
  212 +
  213 +
  214 +.loyout{padding:20px 0px;}
  215 +.leftbar{float:left;width:172px;margin-right: 20px; }
  216 +.rightbar{float:right;width:380px;margin-left:40px;}
  217 +.rightbar.basket_rightbar{margin-right: 20px;}
  218 +.rightbar2{float:right;width:320px;}
  219 +.content {overflow:hidden;}
  220 +* html .content{height:1%;}
  221 +.content2 {overflow:hidden;}
  222 +* html .content2{height:1%;}
  223 +
  224 +.filters{border-top:1px solid #d2d2d2;padding:20px 0px 0px;margin-top:20px;}
  225 +.filters .begin{text-transform: uppercase;font-weight:bold; font-size: 12px;}
  226 +.filters ul{list-style:none;margin:0px;padding:0px;line-height:22px; margin-top: 6px;}
  227 +.filters ul li {
  228 + position: relative;
  229 + box-sizing: border-box;
  230 + padding-left: 24px;
  231 + line-height: 16px;
  232 + margin-top: 7px;
  233 +}
  234 +.filters ul li:first-child {margin-top: 0}
  235 +.filters ul li>input {
  236 + position: absolute;
  237 + left: 4px;
  238 + margin: -6px 0 0 ;
  239 + top: 50%;
  240 +}
  241 +.filters ul li a{color:#464646;text-decoration:none; font-size: 13px; line-height: 16px;}
  242 +.filters ul li a:hover{text-decoration:underline;}
  243 +
  244 +.productLeftBar{float:left;width:228px;margin-left:20px;margin-right:20px;}
  245 +.productRightBar{float:right;width:260px;margin:0 20px;}
  246 +.productLeftBar h1{font-size:24px;border-bottom:1px solid #d2d2d2;margin-bottom:10px;}
  247 +
  248 +ul.product_mod{list-style:none;margin:10px 0 0 0;padding:0; float: left;}
  249 +ul.product_mod li{
  250 + float:left;
  251 + width: 46px;
  252 + height: 46px;
  253 + background: #fff;
  254 + border: 1px solid #d2d2d2;
  255 + margin: 5px 5px 0 0;
  256 + text-align: center;
  257 + position: relative;
  258 +}
  259 +ul.product_mod li.active:before {
  260 + width: 48px;
  261 + height: 48px;
  262 + position: absolute;
  263 + content: '';
  264 + background: none;
  265 + border: 2px solid #95ba2f;
  266 + top: -1px;
  267 + left: -1px;
  268 + box-sizing: border-box;
  269 +}
  270 +ul.product_mod li a{
  271 + width: 46px;
  272 + height: 46px;
  273 + display: table-cell;
  274 + vertical-align: middle;
  275 +}
  276 +ul.product_mod li a:focus {
  277 + outline: none;
  278 +}
  279 +ul.product_mod li img{
  280 + vertical-align: middle;
  281 + max-width: 46px;
  282 + max-height: 46px;
  283 +}
  284 +
  285 +ul.product_colors{list-style:none;margin:30px 0 0 0 ;padding:0; float: left;}
  286 +ul.product_colors li{
  287 + float:left;
  288 + margin:10px 10px 0 0;
  289 + width: 98px;
  290 + height: 98px;
  291 + text-align: center;
  292 + border: 1px solid #d2d2d2;
  293 +}
  294 +ul.product_colors li a {
  295 + width: 98px;
  296 + height: 98px;
  297 + vertical-align: middle;
  298 + display: table-cell;
  299 +}
  300 +ul.product_colors li img{
  301 + max-width: 98px;
  302 + max-height: 98px;
  303 + vertical-align: middle;
  304 +}
  305 +.productLeftBar .begin{text-transform: uppercase;font-weight:bold; font-size: 12px;}
  306 +
  307 +.cost_box{border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;margin:10px 0px;padding:10px 0px;}
  308 +.cost_box .w{float:left;margin-right:20px;padding-top:5px;}
  309 +
  310 +.product_service ul{list-style:none;margin:0px;padding:0px;}
  311 +.product_service ul li a{color:#799920;text-decoration:none;border-bottom:1px dotted #799920;font-size:12px;}
  312 +.product_service ul li.item1{background:url('../img/li1.png') left no-repeat;padding:3px 23px;}
  313 +.product_service ul li.item2{background:url('../img/li2.png') left no-repeat;padding:3px 23px;}
  314 +.product_service ul li.item3{background:url('../img/li3.png') left no-repeat;padding:3px 23px;}
  315 +
  316 +#nav_product{list-style:none;margin:0px;padding:0px;line-height:23px;}
  317 +#nav_product li a{background:url('../img/li_plus.png') left no-repeat;padding:3px 15px;color:#000000;text-transform: uppercase;text-decoration:none;font-weight:bold; font-size: 12px;}
  318 +#nav_product li a.active{background:url('../img/li_minus.png') left no-repeat;}
  319 +#nav_product li .info{display:none;border-bottom:1px solid #d2d2d2;padding:10px 0px;margin-bottom:10px;}
  320 +
  321 +#nav_product li .info, #nav_product li .info p {font-size: 12px; line-height: 16px;}
  322 +.modal_box{
  323 + position: fixed;
  324 + left: 0;
  325 + top: 0;
  326 + width: 100%;
  327 + height: 100%;
  328 + z-index: 999;
  329 +
  330 + background: #000;
  331 + filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); /* IE 5.5+*/
  332 + -moz-opacity: 0.5; /* Mozilla 1.6 Р С‘ РЅРёР¶Рµ */
  333 + -khtml-opacity: 0.5; /* Konqueror 3.1, Safari 1.1 */
  334 + opacity: 0.5;
  335 +
  336 +}
  337 +#data_box{position:absolute;top:100px;z-index:1000;width:400px;background:#ffffff;
  338 + -webkit-box-shadow: 0 0 15px #000;
  339 + -moz-box-shadow: 0 0 15px #000;
  340 + box-shadow: 0 0 15px #000;
  341 + border:7px solid #1b9bb6;
  342 + border-radius:5px;
  343 +}
  344 +#data_box .data_wrp{padding:25px 15px 15px 15px;}
  345 +#data_box .data_wrp h1{text-transform: uppercase;}
  346 +#data_box .data_wrp hr{height: 1px;border: none;color: #000000;background: #000000;margin: 45px 0px 20px 0px;}
  347 +#data_box .data_wrp hr.hr{height: 1px;border: none;color: #000000;background: #000000;margin: 20px 0px 20px 0px;}
  348 +#data_box .pic-tango{margin-right:7px;margin-bottom:7px;}
  349 +#modal_close{cursor:pointer;margin-top:-80px;margin-right:-50px;}
  350 +
  351 +
  352 +.rightbar .control-label, .textareagroup .control-label {float:left;width:80px;padding-top:5px;}
  353 +.form-control{outline:0;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:3px;width:250px;}
  354 +.form-control:focus {
  355 + border:#1b9bb6 1px solid;
  356 + box-shadow: 0 0 10px #1b9bb6;
  357 + -webkit-box-shadow: 0 0 10px #1b9bb6;
  358 + -moz-box-shadow: 0 0 10px #1b9bb6;
  359 +}
  360 +.help-block{color:red;font-size:12px;margin-bottom:5px;}
  361 +
  362 +.basket_item{padding:10px 0px;border-bottom:1px solid #b7b7b7;clear: both}
  363 +.basket_item img{margin-right:20px;}
  364 +.basket_item .count{margin:20px 0px;}
  365 +.basket_item .fr{margin-top:13px;}
  366 +.basket_item .info{overflow:hidden;}
  367 +.basket_item > a{display: block;
  368 + float: left;}
  369 +a.del:visited,a.del:link{background:url('../img/del.png') left center no-repeat;padding:2px 25px;font-size:12px;font-weight:normal;color:#787878;text-decoration: underline;}
  370 +a.del:hover{color:#a52828;text-decoration: underline;}
  371 +
  372 +.total{text-align:right;color:#87476a;font-size:20px;margin:10px 0px;}
  373 +
  374 +/*.submit4{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;cursor:pointer;}*/
  375 +/*.submit4:hover{background:#f75d50;}*/
  376 +
  377 +.submit4m {font-family: Roboto;border:none;background:#95ba2f;border-radius:4px;color:#ffffff;text-transform: uppercase;font-size:10px;cursor:pointer; width:102px; height: 29px; border-bottom: 3px solid #799920; line-height: 29px;}
  378 +.submit4m:active,.submit4m:focus {outline: none}
  379 +
  380 +.btn-primary{
  381 + border-bottom: 3px solid #799920;
  382 + border-top:0;border-right: 0;border-left: 0;
  383 + margin-top:5px;
  384 + padding:0 15px;
  385 + background:#95ba2f;
  386 + border-radius:4px;
  387 + color:#ffffff;
  388 + text-transform: uppercase;
  389 + text-decoration:none;
  390 + font-size:12px;
  391 + font-weight:bold;
  392 + cursor:pointer;
  393 + height: 29px;
  394 + line-height: 29px;
  395 +}
  396 +.btn-primary:active, .btn-primary:focus {outline: none;}
  397 +
  398 +a.logout:visited,a.logout:link{border:none;padding:3px 5px;background:#f75d50;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:11px;font-weight:normal;cursor:pointer;}
  399 +a.logout:hover{background:#95ba2f;}
  400 +
  401 +.boy_box{border-bottom:1px solid #b7b7b7;padding:0px 0px 15px 0px;}
  402 +.boy_box div{padding-top:10px;}
  403 +
  404 +.content_product .info{padding:0px 0px 20px 0px;}
  405 +
  406 +a.btn-success{display:inline-block;border:2px solid #d8d6d6;color:#95ba2f;border-radius:5px;padding:5px;margin-bottom:10px;text-decoration:none;font-size:14px;}
  407 +a.btn-success:hover{border:#95ba2f 2px solid;color:#f75d50;}
  408 +
  409 +
  410 +.txtb1{font-size:14px;font-weight:bold;}
  411 +.txtf{font-size:14px;font-weight:bold;color:#87476a;}
  412 +.txtfb{font-size:20px;font-weight:bold;color:#87476a;}
  413 +
  414 +.count{margin:20px 0px;}
  415 +.count input[type="number"]{outline:0;width:50px;border:1px solid #d8d6d6;border-radius:5px;padding:5px 0px 5px 0px;font-size:14px;text-indent:10px;margin-bottom:7px;}
  416 +
  417 +a.link2:visited,a.link2:link{font-size:14px;font-weight:bold;color:#95ba2f;text-decoration: none;}
  418 +a.link2:hover{color:#f75d50;text-decoration: underline;}
  419 +
  420 +
  421 +
  422 +.well{margin:50px auto;width:400px;background:#f5f5f5;border:1px solid #e8e8e8;padding:20px;border-radius:5px;}
  423 +.control-label{float:left;width:100px;padding-top:5px;}
  424 +#user-verifycode-image{display:block;}
  425 +.form-inline{display:inline;}
  426 +.form-inline .form-group{float:left;margin-right:10px;}
  427 +.form-inline .form-group select{width:100px;}
  428 +.form-group{margin-bottom: 10px;}
  429 +.table-bordered{width:100%;border:1px solid silver;}
  430 +.table-bordered th{background: #B3D1FD;padding:5px;}
  431 +.table-bordered tr td{border:1px solid silver;padding:5px;}
  432 +.table-bordered .filters{display: none;}
  433 +
  434 +.formCost label{float:left;width:30px;}
  435 +
  436 +ul.brends_list{list-style: none;margin:0px;padding:0px;}
  437 +ul.brends_list li{float:left;text-align:center;margin:0px 15px 20px 15px;}
  438 +
  439 +.compare{text-align: center;}
  440 +.compare a:visited,.compare a:link{font-size:12px;text-decoration: underline;}
  441 +
  442 +.alert-success{margin:10px 0px;padding:10px;border:1px solid #3ed824;border-radius: 5px;background: #c0feb5;}
  443 +
  444 +.news_item{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid silver;}
  445 +.news_item img{margin-right:20px;}
  446 +.news_item a{font-size:16px;}
  447 +
  448 +.pic{
  449 + width: 392px;
  450 + height: 365px;
  451 +}
  452 +.pic a {
  453 + width: 392px;
  454 + height: 365px;
  455 + display: table-cell;
  456 + vertical-align: middle;
  457 +}
  458 +.pic a img {
  459 + max-width: 392px;
  460 + max-height: 365px;
  461 + vertical-align: middle;
  462 +}
  463 +input#subscribe-email::-webkit-input-placeholder {
  464 + color: #596065
  465 +}
  466 +
  467 +input#subscribe-email::-moz-placeholder {
  468 + color: #596065
  469 +}
  470 +
  471 +
  472 +input#subscribe-email:-ms-input-placeholder {
  473 + color: #596065
  474 +}
  475 +input#subscribe-sale::-webkit-input-placeholder {
  476 + color: #596065
  477 +}
  478 +
  479 +input#subscribe-sale::-moz-placeholder {
  480 + color: #596065
  481 +}
  482 +
  483 +
  484 +input#subscribe-sale:-ms-input-placeholder {
  485 + color: #596065
  486 +}
  487 +#subscribe-email, #subscribe-sale {color: #596065}
  488 +#subscribe-sale{width:100px;float:left;margin-right:20px;height: 28px;}
  489 +.saletxt{width:150px;float:left;color:#ffffff; font-size: 12px;}
  490 +#subscribe-email{width:370px;}
  491 +
  492 +.txts{color:#9da9b1;font-size:18px;margin-bottom:20px;}
  493 +
  494 +.content ul.pagination{list-style:none;text-align:center; margin: 0 0 16px 0;padding: 0 0 20px 0; border-bottom: 1px solid #d2d2d2;}
  495 +.content ul.pagination li{display:inline;}
  496 +.content ul.pagination li a{padding:3px;color:#82a02f;font-size: 15px;margin:0; text-decoration: none; }
  497 +.content ul.pagination li a:hover {text-decoration: underline}
  498 +.content ul.pagination li.active a{color: #333333;}
  499 +.boxitem{
  500 + height:283px;
  501 +}
  502 +ul.social {margin-top: 20px;}
  503 +.social{list-style: none;margin: 10px;padding: 0px;height:48px;}
  504 +.social li{display:inline-block;margin-right:7px;padding-bottom: 10px;}
  505 +.social li a{
  506 + width:36px;
  507 + height:36px;
  508 + display:block;
  509 + margin:0;padding:0;
  510 + text-indent:-9999px;
  511 + background:#bcbcbc url(../img/social-ico-two.png) no-repeat 0 0;
  512 + border-radius:48px;
  513 + -moz-border-radius:48px;
  514 + -webkit-border-radius:48px;
  515 + -webkit-transition: all 0.5s ease-out;
  516 + -moz-transition: all 0.5s ease-out;
  517 + transition: all 0.5s ease-out;
  518 +}
  519 +.social .fb{background-position:-44px 0;
  520 + cursor: pointer;
  521 +}
  522 +.social .vk{
  523 + cursor: pointer;
  524 +}
  525 +.social .vk:hover{background-color:#5B7FA6;}
  526 +.social .fb:hover{background-color:#354f89;
  527 +}
  528 +.social .gp{background-position:-132px 0;
  529 + cursor: pointer;}
  530 +.social .gp:hover{background-color:#c72f21;}
  531 +.social .tw{background-position:-144px 0;
  532 + cursor: pointer;}
  533 +.social .tw:hover{background-color:#6398c9;}
  534 +.social .ok{background-position:-89px 0;
  535 + cursor: pointer;}
  536 +.social .ok:hover{background-color:#f88f15;}
  537 +.social ul li a:hover{
  538 + background-color:#065baa;
  539 +}
  540 +
  541 +.socialbox{margin:10px 0px;}
  542 +.hide{display:none;}
  543 +
  544 +
  545 +.footer .fl{font-size: 12px;}
  546 +.fotter{background: #484f55;height: 50px;color:#98a3ab;}
  547 +.fotter a{color:#98a3ab; line-height: 50px; float: left; font-size: 12px;}
  548 +
  549 +
  550 +.view_products2{list-style: none;overflow:auto;height:400px;}
  551 +.view_products2 img{float:left;margin-right:20px;}
  552 +.view_products2 li{margin:10px 0px;}
  553 +
  554 +
  555 +.pixbox{width:160px;margin:0 auto;height:200px;overflow: hidden;text-align: center;}
  556 +
  557 +
  558 +.form-order{background:#f5f5f5;padding:0 20px 20px 20px;}
  559 +#order-payment{float:right;width:280px;}
  560 +#order-delivery{float:right;width:280px;}
  561 +
  562 +.delivery-data{margin-bottom:27px;position:relative;background: #95ba2f;display:none;border-radius: 5px;float: left;box-sizing: border-box; padding: 14px 20px; color: #fff; font-size: 13px;}
  563 +
  564 +.jcarousel-next-disabled, .jcarousel-prev-disabled {opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";}
  565 +.content2 br {display: none;}
  566 +.pixbox a {
  567 + width: 160px;
  568 + height: 200px;
  569 + display: table-cell;
  570 + vertical-align: middle;
  571 +}
  572 +.pixbox img {
  573 + max-width: 160px;
  574 + max-height: 200px;
  575 + vertical-align: middle;
  576 +}
  577 +.pagination li.prev.disabled span {
  578 + /*padding: 9px;*/
  579 + /*border-radius: 10%;*/
  580 + /*color: #4D5458;*/
  581 + /*font-size: 14px;*/
  582 + /*margin: 0px;*/
  583 + /*border: 1px solid #4d5458;*/
  584 + display: none;
  585 +}
  586 +.pagination li.next.disabled span {
  587 + display: none;
  588 +}
  589 +.fr {float: right;}
  590 +
  591 +.nobottom{border-bottom:none !important;}
  592 +
  593 +.dotted a{border-bottom: 1px dotted #808080;}
  594 +
  595 +.mycabinet{padding-left:20px;margin-top:20px;}
  596 +.mycabinet .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
  597 +.mycabinet ul{margin:0px;padding:0px;list-style:none;}
  598 +.mycabinet ul li{padding-top:10px;padding-bottom:10px;}
  599 +.mycabinet a{color:#799920;text-decoration:none;}
  600 +
  601 +.lay_title .uppercase{text-transform:uppercase;}
  602 +.lay_title .center{text-align:center;}
  603 +.lay_title{padding-top:15px;font-size:24px;}
  604 +
  605 +.user_data{width:390px;border-right:1px solid #d2d2d2;float:left;}
  606 +.user_data .col{padding-bottom:35px;}
  607 +.user_data .col.last{padding-bottom:0px;}
  608 +.user_data .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
  609 +.user_data .data{float:left;font-size:13px;}
  610 +
  611 +.edit_menu{float:left;padding-left:60px;font-size:13px;}
  612 +.edit_menu div{padding-bottom:20px;}
  613 +.edit_menu a{color:#799920;text-decoration:none;}
  614 +.edit_menu .dotted{border-bottom:1px dotted #799920;}
  615 +
  616 +.user_edit_area{padding-top:30px;}
  617 +
  618 +/* part two */
  619 +
  620 +.user_data_editing{float:left;}
  621 +.inputs .col{padding-bottom:12px !important;}
  622 +.user_data_editing .col{padding-bottom:35px; width:432px;}
  623 +.user_data_editing .title{text-transform:uppercase;font-weight:bold;width:170px;float:left;font-size:13px;}
  624 +.user_data_editing .data{float:left;font-size:13px; width:262px;}
  625 +
  626 +.user_data_editing input[type="text"] {
  627 + padding:0;
  628 + margin:0;
  629 + border:1px solid #d2d2d2;
  630 + padding-top:7px;
  631 + padding-bottom:7px;
  632 + padding-left:10px;
  633 + padding-right:10px;
  634 + border-radius:4px;
  635 + font-size:12px;
  636 + margin-top:-10px;
  637 + width: 240px;
  638 +}
  639 +
  640 +.user_data_editing .add {color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
  641 +.add_more{padding-bottom:24px; padding-left:170px;}
  642 +
  643 +.delete{float:right;}
  644 +.delete_button{background: url('../img/ico_close.png') right no-repeat; width:16px;height:16px;float:right;}
  645 +
  646 +.content_area{width:450px;}
  647 +
  648 +/*.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;}*/
  649 +/*.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;}*/
  650 +#cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px;}
  651 +
  652 +.buttons{
  653 + display: inline-flex;
  654 + align-items: center;}
  655 +
  656 +/* part three */
  657 +
  658 +.favorites{background-color:#f5f5f5; padding:5px;font-size:14px;}
  659 +.favorites .fav_point{background-color:#ffffff;border:1px solid #d2d2d2;border-radius:3px;padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px; margin-top:5px;}
  660 +.favorites .fav_point .left{float:left; padding-right:0; width:178px;}
  661 +.favorites .fav_point .right{float:right; padding-right:0; padding-left:0;}
  662 +
  663 +.favorites .link{color:#799920; text-decoration:none;border-bottom:1px dotted #799920;}
  664 +
  665 +.redtext{color:#f75d50;}
  666 +.greentext{color:#95ba2f;}
  667 +
  668 +/* part three one */
  669 +.hold .orders_view{display:none !important;}
  670 +.orders_view{width:680px;margin-top:13px;padding-top:13px;padding-bottom:5px;border-top:1px solid #d2d2d2;display:block;}
  671 +.orders_view .order{float:left;width:225px;text-align:center;}
  672 +.orders_view .order .order_price{color:#f75d50;font-weight:bold;font-size:15px;}
  673 +.orders_view .order .order_price span{font-size:24px;}
  674 +.orders_view .order img{padding-bottom:22px;}
  675 +.orders_view .order .note{font-size:13px;}
  676 +.orders_view .order .note span{color:#f75d50;}
  677 +
  678 +.basket_hovered{
  679 + position:absolute;
  680 + border:1px solid #d2d2d2;border-radius:5px;padding:15px 20px;
  681 + background-color:white;
  682 + right:-1px;
  683 + margin-top:10px;
  684 + width:640px;
  685 + display:none;
  686 + z-index:1111;
  687 +}
  688 +
  689 +
  690 +.open .basket_hovered{
  691 + display:block;
  692 +}
  693 +
  694 +.open, .open .basket_hovered {
  695 + -moz-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
  696 + -webkit-box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
  697 + box-shadow: 0px 0px 5px rgba(149,149,149,0.75);
  698 +}
  699 +.basket_hovered1:before{
  700 + position:absolute;
  701 + left:0;
  702 + content:' ';
  703 + width:100%;
  704 + background-color:white;
  705 + height:10px;
  706 + top:45px;
  707 + z-index:1112;
  708 +}
  709 +
  710 +.basket_item input{
  711 + border: 1px solid #d2d2d2;
  712 + border-radius: 4px;
  713 + padding:9px;
  714 + width:26px;
  715 + font-size:18px;
  716 + font-weight:bold;
  717 + text-align:center;
  718 + background-color:white;
  719 + color: black;
  720 + margin:7px;
  721 +}
  722 +input[type=number]::-webkit-inner-spin-button,
  723 +input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;
  724 + margin:0;}
  725 +
  726 +
  727 +.minus{background:url('../img/minus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
  728 +.plus{background:url('../img/plus.png') no-repeat;width:15px;height:15px;display:inline-block;cursor:pointer;}
  729 +
  730 +.basket_sum{padding-top:15px;}
  731 +
  732 +.basket_sum .sum_text{font-size:15px; text-transform:none;padding-top:12px;float: right !important;padding-top: 1px;margin-bottom: 11px;}
  733 +.basket_sum .sum_text span{font-size:18px; color:#f75d50; font-weight:bold;}
  734 +.basket_sum a{color:white !important; font-size:15px !important; float:right;}
  735 +
  736 +
  737 +.black{z-index:9999; width:100%;height:100%;position:absolute;display:block;padding-top:6%;}
  738 +.black:before {
  739 + content: '';
  740 + background-color: rgba(0,0,0,0.5);
  741 + width: 100%;
  742 + height: 100%;
  743 + position: fixed;
  744 + top: 0;
  745 +}
  746 +.black.hidden{display:none;}
  747 +.black .item_added_win{background-color:#ffffff;width:640px; margin:auto;position:relative;}
  748 +
  749 +.black_close{position:absolute; top:30px;right:30px;background:url('../img/ico_close2.png') no-repeat;width:22px;height:22px;display:inline-block;cursor:pointer;}
  750 +
  751 +.block_content{padding-left:20px;padding-right:20px;}
  752 +.item_added_win h2{text-transform:uppercase;text-align:center;padding:30px;}
  753 +
  754 +.block_content .item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #d2d2d2;}
  755 +
  756 +.uppercase{text-transform:uppercase;}
  757 +
  758 +.w230{width:230px;}
  759 +.w260{width:260px;}
  760 +.w430{width:430px;}
  761 +.borderbottom{border-bottom:1px solid #d2d2d2;}
  762 +.left_block .begin{text-transform:uppercase;font-size: 13px;font-weight:bold; padding-bottom:15px;}
  763 +
  764 +.color_variants .variant{
  765 + text-align:center;
  766 + border:1px solid #d2d2d2;
  767 + float:left;
  768 + margin-right:5px;
  769 + margin-bottom:5px;
  770 +}
  771 +.variant:hover{cursor:pointer;}
  772 +.color_variants{margin-top:14px;margin-bottom:-5px;}
  773 +.color_variants .variant.active{width:44px;height:44px;border:2px solid #95ba2f;}
  774 +.color_variants .variant.active a{width:44px;height:44px;}
  775 +
  776 +.tobasket{margin-top:20px;margin-bottom:20px;}
  777 +.tobasket:hover{color:white;}
  778 +
  779 +.variant{width:46px;height:46px;}
  780 +.variant.active{width:44px;height:44px;}
  781 +
  782 +.layout{margin-top:15px;}
  783 +.left_block{float:left;}
  784 +.right_block{float:right;}
  785 +.center_block{float:left;margin-left:23px;}
  786 +
  787 +.left_block .links{margin-top:25px;}
  788 +
  789 +.left_block .links li{list-style: none; padding-left:25px;display:inline-block;cursor:pointer;height:20px;}
  790 +.left_block .links ul{margin:0;padding:0;}
  791 +.left_block .links a{font-size:13.5px;text-decoration:none; color:#8ba73e;}
  792 +
  793 +
  794 +.links .add_bookmarks{background:url('../img/ico_add_bookmark.png') no-repeat center left; }
  795 +.links .what_price{background:url('../img/ico_price.png') no-repeat center left; }
  796 +.links .add_compare{background:url('../img/ico_scales.png') no-repeat center left; }
  797 +
  798 +.spoiler_one{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #d2d2d2;}
  799 +.spoiler_one .spoiler_content{margin-top:15px;font-size:13px;}
  800 +.spoiler_one .spoiler_content.hidden{display:none;}
  801 +
  802 +.title_spoiler:hover {cursor: pointer}
  803 +
  804 +.title_spoiler{
  805 + background:url('../img/ico_open.png') no-repeat center left;
  806 + padding-left: 17px;
  807 + font-size:13px;
  808 + text-transform:uppercase;
  809 + color:#333333;
  810 + font-weight:bold;
  811 + text-decoration:none;
  812 +}
  813 +.title_spoiler.closed{
  814 + background:url('../img/ico_close3.png') no-repeat center left;
  815 +}
  816 +
  817 +.features{
  818 + list-style:none;
  819 + padding:0;
  820 + margin:0;
  821 + font-size:13px;
  822 +}
  823 +.features a{
  824 + font-size:13px;
  825 + text-decoration:none;
  826 + border-bottom:1px dotted #8ba73e;
  827 + color:#8ba73e;
  828 +}
  829 +.features li{
  830 + padding-top:5px;
  831 + padding-bottom:4px;
  832 +}
  833 +
  834 +.note_prod{
  835 + width:225px;
  836 + height:23px;
  837 + overflow:hidden;
  838 + border-radius:5px;
  839 + display:table;
  840 + text-transform:uppercase;
  841 + font-size:11px;
  842 + font-weight:bold;
  843 +}
  844 +
  845 +.note_prod .one{
  846 + z-index:999;
  847 +}
  848 +.note_prod .two{
  849 + z-index:998;
  850 +}
  851 +
  852 +.note_prod .blue{
  853 + float:left;
  854 + padding-top:5px;
  855 + padding-bottom:5px;
  856 + background-color:#42b9f6;
  857 + padding-left:10px;
  858 + padding-right:5px;
  859 + position:relative;
  860 +}
  861 +
  862 +.note_prod .blue:after{
  863 + content:'';
  864 + width: 0;
  865 + height: 0;
  866 + border-top: 13px solid transparent;
  867 + border-left: 5px solid #42b9f6;
  868 + border-bottom: 13px solid transparent;
  869 + position:absolute;
  870 + top:-1px;
  871 + margin-left:5px;
  872 +}
  873 +.note_prod .red{
  874 + float:left;
  875 + padding-top:5px;
  876 + padding-bottom:5px;
  877 + background-color:#f75d50;
  878 + padding-left:10px;
  879 + padding-right:5px;
  880 + position:relative;
  881 + color:#ffffff;
  882 +}
  883 +.note_prod .red:after{
  884 + content:'';
  885 + width: 0;
  886 + height: 0;
  887 + border-top: 13px solid transparent;
  888 + border-left: 5px solid #f75d50;
  889 + border-bottom: 13px solid transparent;
  890 + position:absolute;
  891 + top:-1px;
  892 + margin-left:5px;
  893 +}
  894 +.note_prod .yellow{
  895 + float:left;
  896 + padding-top:5px;
  897 + padding-bottom:5px;
  898 + background-color:#fbc665;
  899 + padding-left:10px;
  900 + padding-right:5px;
  901 + position:relative;
  902 +}
  903 +.note_prod .yellow:after{
  904 + content:'';
  905 + width: 0;
  906 + height: 0;
  907 + border-top: 13px solid transparent;
  908 + border-left: 5px solid #fbc665;
  909 + border-bottom: 13px solid transparent;
  910 + position:absolute;
  911 + top:-1px;
  912 + margin-left:5px;
  913 +}
  914 +
  915 +
  916 +.products_block .product{float:left; width:190px; vertical-align:bottom;}
  917 +.product .image{height:225px;position:relative;}
  918 +.product .image img{position:absolute;bottom:0;left:15px;}
  919 +
  920 +.price{
  921 + font-size: 18px;
  922 + color: #f75d50;
  923 + font-weight: bold;
  924 + text-align:center;}
  925 +
  926 +.product{padding-bottom:30px;position:relative;}
  927 +.product p{font-size:15px; text-align:center; margin-top:15px;}
  928 +.left52{margin-left:52px;}
  929 +.product a{color:#ffffff;}
  930 +.mrg1{margin-top: 25px; margin-bottom: 15px;}
  931 +
  932 +.products_martopbot{margin-top:60px;margin-bottom:100px;}
  933 +
  934 +.cont_shop_but{display:table-cell;vertical-align:middle;padding:35px;}
  935 +.cont_shop{text-decoration:none;font-size:12px;border-bottom:1px dotted #799920;color:#799920;}
  936 +
  937 +.icons{
  938 + width:45px;
  939 + height:50%;
  940 + position:absolute;
  941 + z-index:9;
  942 + right:0;
  943 + padding-top:25px;
  944 + padding-right:15px;
  945 +}
  946 +.icons a{
  947 + width:44px;
  948 + height:44px;
  949 + float: left;
  950 + border: 1px solid #d2d2d2;
  951 + margin-bottom: 5px;
  952 + background-color: white;
  953 +}
  954 +a:hover{cursor:pointer;}
  955 +
  956 +
  957 +.basket_item .form-group{display:inline;}
  958 +
  959 +.basket.open:after{
  960 + content: '';
  961 + position: absolute;
  962 + top: 43px;
  963 + width: 100%;
  964 + height: 10px;
  965 + background-color: white;
  966 + left: 0;
  967 + z-index: 9990;
  968 +}
  969 +
  970 +.basket_hovered .basket_sum{float:left;}
  971 +
  972 +a.active{font-weight:bold;text-decoration: underline;}
  973 +
  974 +/*
  975 + ==== BANNER ====
  976 +*/
  977 +
  978 +.HOME_RIGHT {
  979 + display: inline-block;
  980 + vertical-align: top;
  981 + margin-left: 10px;
  982 + position: absolute;
  983 +}
  984 +
  985 +#HOME_UNDER_SLIDER > div {
  986 + display: inline-block;
  987 + margin-right: 3px;
  988 + margin-top: 3px;
  989 +}
  990 +
  991 +.sort_block {
  992 + display: inline-block;
  993 +}
  994 +.sort_block ul {
  995 + display: inline-block;
  996 + margin: 0;
  997 + padding: 0;
  998 +}
  999 +.sort_block ul li {
  1000 + display: inline-block;
  1001 + margin: 0 0.5em;
  1002 + list-style: none;
  1003 +}
  1004 +.sort_block ul li a.asc:after, .sort_block ul li a.desc:after {
  1005 + display: block;
  1006 + width: 5px;
  1007 + height: 3px;
  1008 + position: absolute;
  1009 + top: 50%;
  1010 + margin-top: -1px;
  1011 + right: -10px;
  1012 + content: '';
  1013 + background: url("../img/arrow_sort_asc_desc.png") no-repeat;
  1014 +}
  1015 +.sort_block ul li a.asc:after {
  1016 + background-position: 0 0;
  1017 +}
  1018 +.sort_block ul li a.desc:after {
  1019 + background-position: 0 -3px;
  1020 +}
  1021 +/*************/
  1022 +.home_banner_up {margin-top: 20px;}
  1023 +.home_banner_up .HOME_RIGHT {
  1024 + display: block;
  1025 + float: right;
  1026 + position: static;
  1027 + margin-left: 0;
  1028 +}
  1029 +#HOME_SLIDER .jssorb03 div, #HOME_SLIDER .jssorb03 div:hover, #HOME_SLIDER .jssorb03 .av {
  1030 + width: 6px;
  1031 + height: 6px;
  1032 + border-radius: 50%;
  1033 + line-height: 6px;
  1034 + background: #fff;
  1035 + border: 2px solid #fff;
  1036 + box-shadow: 0px 0px 5px 0px rgba(54, 54, 54, 0.75);
  1037 +}
  1038 +
  1039 +#HOME_SLIDER .jssorb03 div.av:hover, #HOME_SLIDER .jssorb03 div.av:active, #HOME_SLIDER .jssorb03 .av {
  1040 + cursor: default;
  1041 + background: #95BA2F;
  1042 +}
  1043 +.special-products {
  1044 + padding-top: 30px;
  1045 +}
  1046 +.special-products .link_buy {
  1047 + margin-bottom: 0;
  1048 +}
  1049 +.special-products .item {
  1050 + margin-bottom: 0 !important;
  1051 + text-align: center;
  1052 +}
  1053 +.why_me_ {padding-top: 30px; overflow: hidden; margin-bottom: 60px;}
  1054 +.why_me_ .why_list {width: 1038px; margin-left: -58px}
  1055 +.seo_text {
  1056 +
  1057 +}
  1058 +.seo_text p {
  1059 + margin: 12px 0 0 0;
  1060 + font-size: 13px !important;
  1061 + color: #333 !important;
  1062 + font-family: Roboto !important;
  1063 +}
  1064 +.seo_text p:first-child {margin-top: 0}
  1065 +.product-special {position: absolute}
  1066 +.jcarousel-skin-tango .jcarousel-item {
  1067 + width: 38px;
  1068 + height: 38px;
  1069 + border: 1px solid #d2d2d2;
  1070 + text-align: center;
  1071 + background: #fff;
  1072 +}
  1073 +.jcarousel-skin-tango .jcarousel-item a {
  1074 + display: table-cell;
  1075 + width: 38px;
  1076 + height: 38px;
  1077 + vertical-align: middle;
  1078 +}
  1079 +.mycarousel img {
  1080 + max-width: 38px;
  1081 + max-height: 38px;
  1082 + border: 0;
  1083 + vertical-align: middle;
  1084 +}
  1085 +.jcarousel-skin-tango .jcarousel-clip-vertical, .jcarousel-skin-tango .jcarousel-container-vertical {
  1086 + height: 175px;
  1087 +}
  1088 +.jcarousel-skin-tango .jcarousel-container-vertical {
  1089 + padding: 0;
  1090 +}
  1091 +.jcarousel-skin-tango .jcarousel-prev-vertical {
  1092 + top:-13px;
  1093 +}
  1094 +.jcarousel-skin-tango .jcarousel-next-vertical {
  1095 + bottom: -13px;
  1096 +}
  1097 +.jcarousel-skin-tango .jcarousel-prev-vertical, .jcarousel-skin-tango .jcarousel-next-vertical {
  1098 + left: 0;
  1099 + width: 42px;
  1100 + background-position: 14px 0;
  1101 +}
  1102 +.jcarousel-skin-tango .jcarousel-prev-vertical:hover, .jcarousel-skin-tango .jcarousel-next-vertical:hover {
  1103 + background-position: 14px 0;
  1104 + left: 0;
  1105 +}
  1106 +ul.product-special {
  1107 + position: absolute;
  1108 + top: 0;
  1109 + left: 16px;
  1110 +}
  1111 +ul.product-special li {
  1112 + width: 100%;
  1113 + float: left;
  1114 +}
  1115 +ul.product-special li div {
  1116 + color: #333;
  1117 + font-size: 10px;
  1118 + text-transform: uppercase;
  1119 + font-weight: 700;
  1120 + height: 22px;
  1121 + line-height: 24px;
  1122 + padding: 0 9px;
  1123 + position: relative;
  1124 + border-top-left-radius: 4px;
  1125 + border-bottom-left-radius: 4px;
  1126 + margin-top: 8px;
  1127 + float: left;
  1128 +}
  1129 +ul.product-special li:first-child {margin-top: 0}
  1130 +ul.product-special li.top div {
  1131 + background: #fbc665;
  1132 +}
  1133 +ul.product-special li.top div:after {
  1134 + content: '';
  1135 + position: absolute;
  1136 + right: -19px;
  1137 + top: 3px;
  1138 + border: 11px solid transparent;
  1139 + border-top: 5px solid #fbc665;
  1140 + transform: rotate(-90deg);
  1141 +}
  1142 +ul.product-special li.new div{
  1143 + background: #42b9f6;
  1144 +}
  1145 +
  1146 +ul.product-special li.new div:after {
  1147 + content: '';
  1148 + position: absolute;
  1149 + right: -18px;
  1150 + top: 2px;
  1151 + border: 11px solid transparent;
  1152 + border-top: 5px solid #42b9f6;
  1153 + transform: rotate(-90deg);
  1154 +}
  1155 +ul.product-special li.promo div {
  1156 + background: #f75d50;
  1157 +}
  1158 +ul.product-special li.promo div:after {
  1159 + content: '';
  1160 + position: absolute;
  1161 + right: -18px;
  1162 + top: 2px;
  1163 + border: 11px solid transparent;
  1164 + border-top: 5px solid #f75d50;
  1165 + transform: rotate(-90deg);
  1166 +}
  1167 +.cost-block {
  1168 + margin-top: 1px;
  1169 +}
  1170 +.products.pn a.link_buy {
  1171 + margin-bottom: 0;
  1172 +}
  1173 +.products.pn {
  1174 + padding-bottom: 0;
  1175 +}
  1176 +.products.pn>ul {
  1177 + width: 100%;
  1178 + float: left;
  1179 + margin-bottom: -3px;
  1180 +}
  1181 +
  1182 +._form_checkbox_reset, .sort_block ul li a, .sort_block {
  1183 + font-size: 12px;
  1184 +}
  1185 +.filter_accept_bloc {margin-top: 13px; margin-bottom: 0;}
  1186 +._form_checkbox_reset {
  1187 + color: #6a6a6a;
  1188 + display: block;
  1189 + width: 128px;
  1190 + height: 28px;
  1191 + border: 1px solid #d2d2d2;
  1192 + line-height: 28px;
  1193 + text-align: center;
  1194 + border-radius: 4px;
  1195 + text-decoration: none;
  1196 + margin: 0 auto;
  1197 +}
  1198 +._form_checkbox_reset:hover {
  1199 + border: 1px solid #95ba2f;
  1200 + color: #6a6a6a;
  1201 +}
  1202 +._form_checkbox_reset:active {
  1203 + border: 1px solid #95ba2f;
  1204 + background: #95ba2f;
  1205 + color: #fff;
  1206 +}
  1207 +.sort_block ul li a {
  1208 + color: #8fa951;
  1209 + position: relative;
  1210 +}
  1211 +.sort_block ul li a:hover {
  1212 + color: #333;
  1213 +}
  1214 +#HOME_SLIDER .jssora03l, #HOME_SLIDER .jssora03r {
  1215 + width: 36px;
  1216 + height: 340px;
  1217 + background: url('../img/new_arrows_.png') no-repeat;
  1218 +}
  1219 +#HOME_SLIDER .jssora03l, #HOME_SLIDER .jssora03l:hover {
  1220 + background-position: 0 50%;
  1221 + left: 0;
  1222 + top: 0;
  1223 +}
  1224 +#HOME_SLIDER .jssora03r, #HOME_SLIDER .jssora03r:hover {
  1225 + background-position: -36px 50%;
  1226 + right: 0;
  1227 + top: 0;
  1228 +}
  1229 +.loyout ._prd_spec-wr {margin-top: 10px;}
  1230 +.loyout .special-products:first-child {
  1231 + border-top: 0;
  1232 + padding-top: 0;
  1233 +
  1234 +}
  1235 +.irs-slider {
  1236 + width: 13px;
  1237 + height: 13px;
  1238 + top: 25px;
  1239 + border-radius: 100%;
  1240 + box-shadow: none;
  1241 + border: 1px solid #d2d2d2;
  1242 + background: #ffffff;
  1243 + background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  1244 + background: -webkit-linear-gradient(top, #ffffff 0%,#ebebeb 100%);
  1245 + background: linear-gradient(to bottom, #ffffff 0%,#ebebeb 100%);
  1246 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 );
  1247 +}
  1248 +.irs-slider.state_hover, .irs-slider:hover {
  1249 + background: #ffffff;
  1250 +}
  1251 +.irs-slider:after {
  1252 + display: none;
  1253 +}
  1254 +.irs-slider:before {
  1255 + content: "";
  1256 + position: absolute;
  1257 + width: 5px;
  1258 + height: 5px;
  1259 + z-index: 2;
  1260 + border: 1px solid #d2d2d2;
  1261 + border-radius: 100%;
  1262 + background: #799920;
  1263 + top: 3px;
  1264 + left: 3px;
  1265 +}
  1266 +.irs-bar {
  1267 + height: 3px;
  1268 + top: 30px;
  1269 +}
  1270 +.irs-line {
  1271 + height: 9px;
  1272 + background: #ebebeb;
  1273 + border: 1px solid #d2d2d2;
  1274 + top: 27px;
  1275 +}
  1276 +.irs-line:before {
  1277 + width: 166px;
  1278 + height: 5px;
  1279 + position: absolute;
  1280 + content: '';
  1281 + top: 2px;
  1282 + left: 2px;
  1283 + background: #d2d2d2;
  1284 + border-radius: 5px;
  1285 +}
  1286 +.irs-min, .irs-max {display: none;}
  1287 +.irs {height: 49px;}
  1288 +.price_filter.first_price_li {margin-top: 8px;}
  1289 +.product_read_ .w{
  1290 + width: 110px;
  1291 + overflow: hidden;
  1292 + margin: 0;
  1293 + padding-top: 0;
  1294 + display: table-cell;
  1295 + vertical-align: middle;
  1296 + height: 32px;
  1297 + float: none;
  1298 +}
  1299 +.product_read_ .w strike, .product_read_ .w .cost {
  1300 + width: 100%;
  1301 + float: left;
  1302 + /*line-height: 15px;*/
  1303 +}
  1304 +
  1305 +.product_read_price .link_buy {
  1306 + width: 118px;
  1307 + position: absolute;
  1308 + top: 50%;
  1309 + right: 0;
  1310 + margin: -16px 0 0 0;
  1311 +}
  1312 +.product_read_price { position: relative; min-height: 32px;margin-top: 10px;}
  1313 +.special-products.products h3 {margin-bottom: 10px;}
  1314 +.special-products.products li.item {
  1315 + margin-top: 30px;
  1316 +}
  1317 +.productLeftBar .cost_box {
  1318 + border-top: 0;
  1319 + padding: 10px 0 15px 0;
  1320 +}
  1321 +.productLeftBar .product_mod {
  1322 + width: 100%;
  1323 + float: left;
  1324 + border-bottom: 1px solid #d2d2d2;
  1325 + padding-bottom: 15px;
  1326 +}
  1327 +#login-form .btn-primary {
  1328 +}
  1329 +.field-orders-delivery .control-label, .field-orders-payment .control-label, .field-orders-body .control-label, .textareagroup .control-label {
  1330 + width: 100%;
  1331 + float: left;
  1332 +}
  1333 +.basket_title_ {
  1334 + text-align: center;
  1335 +}
  1336 +.cont_shopping-wr {
  1337 + width: 100%;
  1338 + float: left;
  1339 + margin-top: 10px;
  1340 +}
  1341 +.cont_shopping-wr .cont_shopping {
  1342 + float: right;
  1343 +}
  1344 +.cont_shopping {
  1345 + display: block !important;
  1346 + border-top: 0!important;
  1347 + border-left: 0!important;
  1348 + border-right: 0!important;
  1349 + border-bottom: 1px dashed #799920!important;
  1350 + color: #799920!important;
  1351 + margin: 0!important;
  1352 + padding: 0!important;
  1353 + font-size: 12px!important;
  1354 + float: left;
  1355 + border-radius: 0 !important;
  1356 +}
  1357 +.info.product-thumb-video {
  1358 + width: 100%;
  1359 + height: 100%;
  1360 +}
  1361 +.info.product-thumb-video iframe, .info.product-thumb-video embed {
  1362 + width: 100% !important;
  1363 + height: auto !important;
  1364 +}
  1365 +.input-blocks-wrapper, .input-blocks {
  1366 + width: 100%;
  1367 + float: left;
  1368 +}
  1369 +.form-order .input-blocks-wrapper {
  1370 + margin-top: 6px;
  1371 +}
  1372 +.input-blocks label {
  1373 + font-size: 13px;
  1374 + color: #333;
  1375 +}
  1376 +.basket_input_2 label {
  1377 + height: 30px;
  1378 + line-height: 30px;
  1379 + float: left;
  1380 + width: 70px !important;
  1381 + padding-top: 0 !important;
  1382 +}
  1383 +
  1384 +.custom-input-2 {
  1385 + width: 100%;
  1386 + height: 30px;
  1387 + box-sizing: border-box;
  1388 + outline: none;
  1389 + line-height: 30px;
  1390 + padding-left: 8px;
  1391 + margin-top: 5px;
  1392 + background: #fff;
  1393 + border-radius: 4px;
  1394 +}
  1395 +.custom-input-2, .custom-area-2, .textareagroup textarea {
  1396 + border: 1px solid #d2d2d2;
  1397 + box-sizing: border-box;
  1398 + font-size: 13px;
  1399 + color: #636363;
  1400 +}
  1401 +.custom-area-2, .textareagroup textarea {
  1402 + min-height: 128px;
  1403 + max-height: 128px;
  1404 + resize: none;
  1405 + width: 100%;
  1406 + max-width: 100%;
  1407 + outline: none;
  1408 + padding-left: 8px;
  1409 + padding-top: 8px;
  1410 + margin-top: 8px;
  1411 +}
  1412 +.basket_input_2 .custom-input-2 {
  1413 + width: 270px;
  1414 + float: right;
  1415 + margin-top: 0;
  1416 +}
  1417 +.custom-input-2:focus, .custom-area-3:focus, .textareagroup textarea:focus {box-shadow: 1px 2px 2px 0px rgba(215, 215, 215, 0.75) inset; transition: 0.1s}
  1418 +.textareagroup textarea:focus{border: 1px solid #d2d2d2;}
  1419 +.title_groups, .radio_grp label.control-label, .textareagroup .control-label {
  1420 + font-size: 12px;
  1421 + font-weight: bold;
  1422 + text-transform: uppercase;
  1423 + margin-bottom: 12px;
  1424 +}
  1425 +.input-blocks-group {
  1426 + width: 100%;
  1427 + float: left;
  1428 + border-bottom: 1px solid #d2d2d2;
  1429 + padding-bottom: 20px;
  1430 + margin-top: 18px;
  1431 +}
  1432 +.custom-form-buttons {
  1433 + width: 100%;
  1434 + float: left;
  1435 +}
  1436 +input.custom-radio + label, input.custom-check + label {
  1437 + font-size: 13px;
  1438 + cursor: pointer;
  1439 + margin-left: 6px;
  1440 +}
  1441 +/***radio***/
  1442 +input.custom-radio, input.custom-check {display: none}
  1443 +input.custom-radio + label span{
  1444 + width: 16px;
  1445 + height: 16px;
  1446 + background: url('../img/radio_new.png') no-repeat;
  1447 + float: left;
  1448 + transition: .2s;
  1449 + margin-top: 1px;
  1450 +}
  1451 +input.custom-radio:checked + label span, input.custom-radio:checked + label:hover span {
  1452 + background: url('../img/radio_new-active.png') no-repeat;
  1453 +}
  1454 +
  1455 +input.custom-radio + label:hover {
  1456 + text-decoration: underline;
  1457 +}
  1458 +.custom-form-buttons {
  1459 + margin-top: 7px;
  1460 +}
  1461 +.custom-form-buttons:first-child {margin-top: 0}
  1462 +.delivery-data .field-order-delivery-childs .control-label {display: none;}
  1463 +.checkout_basket {
  1464 + width: 100%;
  1465 + float: left;
  1466 +}
  1467 +.checkout_basket button {
  1468 + margin: 0 auto;
  1469 +}
  1470 +.input-blocks-wrapper .help-block {
  1471 + padding-left: 71px;
  1472 + padding-top: 4px;
  1473 + width: 100%;
  1474 + float: left;
  1475 + box-sizing: border-box;
  1476 + margin-bottom: 0;
  1477 +}
  1478 +.cont_shop_but-wr {
  1479 + height: 33px;
  1480 + margin-top: 35px;
  1481 + padding-bottom: 29px;
  1482 +}
  1483 +.cont_shop_but-wr .cont_shop {
  1484 + margin-top: 8px;
  1485 + float: left;
  1486 +}
  1487 +.cont_shop_but-wr .submit4.bottom3 {float: right;}
  1488 +._qqq_ .params {font-size: 12px;}
  1489 +.activeShow {border-bottom: 0 !important;}
  1490 +.delivery-data:after {
  1491 + width: 100%;
  1492 + border-bottom: 1px solid #d2d2d2;
  1493 + position: absolute;
  1494 + content: '';
  1495 + bottom: -27px;
  1496 + left: 0;
  1497 +}
  1498 +.img_ajax_basket img {
  1499 + margin-right: 0!important;
  1500 + max-width: 90px;
  1501 + max-height: 90px;
  1502 + vertical-align: middle;
  1503 +}
  1504 +.jcarousel-skin-tango>li{display: none;}
  1505 +#login-form {
  1506 + margin: 50px auto 0 auto;
  1507 +}
  1508 +.wrapper_all {}
  1509 +#bg {
  1510 + top: 0 !important;
  1511 + z-index: 1 !important;
  1512 +}
  1513 +.top, .wrap, .bottom, .fotter {
  1514 + position: relative;
  1515 + z-index: 2;
  1516 +}
  1517 +.owl-pagination {display: none;}
  1518 +.owl-controls .owl-buttons div {
  1519 + width: 34px !important;
  1520 + height: 50px !important;
  1521 + background: #596065 !important;
  1522 + top:50% !important;
  1523 + margin: -25px 0 0 0 !important;
  1524 + opacity: 1 !important;
  1525 + border-radius: 0 !important;
  1526 + padding: 0!important;
  1527 + position: absolute;
  1528 +}
  1529 +.owl-controls .owl-buttons div:hover {
  1530 + background: #acafb2 !important;
  1531 + transition: 0.2s!important;
  1532 +}
  1533 +.owl-controls .owl-buttons .owl-prev {
  1534 + border-top-right-radius: 4px !important;
  1535 + border-bottom-right-radius: 4px !important;
  1536 + left: -20px;
  1537 +
  1538 +}
  1539 +.owl-controls .owl-buttons .owl-next {
  1540 + border-top-left-radius: 4px !important;
  1541 + border-bottom-left-radius: 4px !important;
  1542 + right: -20px;
  1543 +
  1544 +}
  1545 +.owl-controls .owl-buttons div:before {
  1546 + position: absolute;
  1547 + content: '';
  1548 + width: 8px;
  1549 + height: 22px;
  1550 + background: url("../img/arrows_blocks.png") no-repeat;
  1551 + top:50%;
  1552 + margin-top: -11px;
  1553 + left: 50%;
  1554 + margin-left: -4px;
  1555 +}
  1556 +.owl-controls .owl-buttons .owl-prev:before {
  1557 + background-position: 0 0;
  1558 +}
  1559 +.owl-controls .owl-buttons .owl-next:before {
  1560 + background-position: -8px 0;
  1561 +}
  1562 +.basket_input_2.required .control-label {position: relative}
  1563 +.basket_input_2.required .control-label:before {
  1564 + position: absolute;
  1565 + top: 0;
  1566 + content: '*';
  1567 + color: #D60000;
  1568 + left: -11px;
  1569 + padding-top: 2px;
  1570 +}
... ...