Commit 26e8dd32af0c7afba887caef7fa08b3b563a898d

Authored by Alex Savenko
2 parents 17bf3fa2 b4b0a694

Merge branch 'popup' into 'master'

Popup

See merge request !17
src/app/backend/views/index.php
... ... @@ -79,7 +79,6 @@
79 79 </div>
80 80 </div>
81 81  
82   -
83 82 <div id="content" class="clearfix">
84 83  
85 84 <?php
... ...
src/app/frontend/controllers/MenuController.php
... ... @@ -1249,4 +1249,45 @@ class MenuController extends \controllers\ControllerBase
1249 1249 }
1250 1250  
1251 1251 ///////////////////////////////////////////////////////////////////////////
  1252 +
  1253 + public function popupAction() {
  1254 +
  1255 + if( $this->request->isPost() )
  1256 + {
  1257 + $data['name'] = $this->request->getPost('username', 'string', NULL );
  1258 + $email = $this->request->getPost('email', 'string', NULL );
  1259 + $data['email'] = filter_var( $email, FILTER_VALIDATE_EMAIL );
  1260 +
  1261 + if( !empty( $data['email'] ) )
  1262 + {
  1263 + $check = $this->models->getSubscribe()->getOneDataByEmail($data['email']);
  1264 + if (!empty($check)) {
  1265 +
  1266 + $this->flash->error("Пользователь с таким адресом уже существует");
  1267 +
  1268 + }
  1269 + elseif( empty($check) && $this->models->getSubscribe()->addData($data) ) {
  1270 +
  1271 + $this->sendmail->sendSubscribe( $data );
  1272 +
  1273 + setcookie("popup", '1', 0, '/');
  1274 +
  1275 + $this->flash->success("Вы успешно подписались!");
  1276 +
  1277 + //return $this->response->redirect([ 'for' => 'homepage', 'language' => $this->lang_name ]);
  1278 + }
  1279 + }
  1280 + else {
  1281 +
  1282 + $this->flash->error("Заполните поле Email");
  1283 +
  1284 + }
  1285 + }
  1286 +
  1287 + $this->view->setVars([
  1288 + 'no_robots' => 1
  1289 + ]);
  1290 +
  1291 + return $this->response->redirect([ 'for' => 'homepage', 'language' => $this->lang_name ]);
  1292 + }
1252 1293 }
1253 1294 \ No newline at end of file
... ...
src/app/frontend/messages/ua.php
... ... @@ -427,7 +427,7 @@ return array(
427 427 "error_promo_code_is_ended" => "Дія промокоду закінчилося",
428 428 "error_promo_code_not_start" => "Промокод ще не активний",
429 429  
430   - 'popup-main1' => 'Прямо зараз отримайте знижку <span>-7%</span> на покупку товарів в міні-упаковці і </p><p style="padding-bottom: 7px;">и <span>-3%</span> на весь асортимент<br>в професійній упаковці!',
  430 + 'popup-main1' => 'Прямо зараз отримайте знижку <span>-7%</span> на покупку товарів в міні-упаковці </p><p style="padding-bottom: 7px;">і <span>-3%</span> на весь асортимент<br>в професійній упаковці!',
431 431 'popup-main2' => 'Впишіть свою електронну пошту.',
432 432 'popup-main3' => 'Ім\'я',
433 433 'popup-main4' => 'Отримати',
... ...
src/app/frontend/views/index.php
... ... @@ -227,12 +227,11 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
227 227 <?php endforeach ?>
228 228 </ul>
229 229 </div>
  230 + <div id="flash_output"><?= $this->flash->output(); ?></div>
230 231 </div>
231 232 </div>
232 233  
233   - <?php
234   - echo $this->getContent();
235   - ?>
  234 + <?= $this->getContent(); ?>
236 235  
237 236 </div>
238 237 <div id="footer">
... ... @@ -253,20 +252,19 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
253 252 </div>
254 253 </div>
255 254  
256   -<!--<div class="open-delivery-modal hidden_modal">-->
257   -<!-- <div><img src="/images/popup_full.png" class="popup_full"><img src="/images/popup_open.png" class="popup_mobile"><span class="modal_close"></span></div>-->
258   -<!--</div>-->
259   -<link rel="stylesheet" type="text/css" href="css/fontlato.css">
260 255 <div class="delivery-form-par">
261 256 <div class="close-white"></div>
262 257 <div class="popup-main-delivery">
263 258 <div class="content-popup">
264   - <div class="text-up"><p style="padding-bottom: 9px;"><?= $t->_("popup-main1")?></p></div>
  259 + <div class="close-popup"></div>
  260 + <div class="text-up">
  261 + <p style="padding-bottom: 9px;font-size: 18px;"><?= $t->_("popup-main1")?></p>
  262 + </div>
265 263 <div class="text-down">
266 264 <p class="up-text"><?= $t->_("popup-main2")?></p>
267   - <form method="post" class="deliver-form">
  265 + <form method="post" class="deliver-form" action="./popup/">
268 266 <input type="text" name="username" placeholder="<?= $t->_("popup-main3")?>">
269   - <input type="email" name="email" placeholder="Email">
  267 + <input type="email" name="email" required placeholder="Email">
270 268 <button type="submit" class="submit-delivery-but"><?= $t->_("popup-main4")?></button>
271 269 </form>
272 270 <p class="footer-text"><?= $t->_("popup-main5")?></p>
... ... @@ -277,7 +275,20 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
277 275  
278 276 <script>
279 277 $(document).ready(function(){
280   - setTimeout(function(){$(".open-delivery-modal").show();},1000);
  278 + function getCookie(a) {
  279 + var b = new RegExp(a+'=([^;]){1,}');
  280 + var c = b.exec(document.cookie);
  281 + if(c) c = c[0].split('=');
  282 + else return false;
  283 + return c[1] ? c[1] : false;
  284 + }
  285 + var cookie = getCookie('popup');
  286 + if (cookie !== '1') {
  287 + setTimeout(function(){$(".open-delivery-modal").show();},1000);
  288 + }
  289 + else {
  290 + $(".open-delivery-modal").hide();
  291 + }
281 292 });
282 293 $(".open-delivery-modal div img").click(function(){
283 294 $(".delivery-form-par").show();
... ... @@ -406,4 +417,4 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
406 417 <?php endif; ?>
407 418 <!--end float block-->
408 419 </body>
409   -</html>
410 420 \ No newline at end of file
  421 +</html>
... ...
src/app/frontend/views/page/index.php
... ... @@ -321,6 +321,59 @@ js, fjs);
321 321  
322 322 </div>
323 323  
  324 +<!-- popup button -->
  325 +<div class="open-delivery-modal hidden_modal">
  326 + <div><img src="/images/popup_full.png" class="popup_full"><img src="/images/popup_open.png" class="popup_mobile"><span class="modal_close"></span></div>
  327 +</div>
  328 +<!-- popup button -->
  329 +
  330 +<!-- popup js -->
  331 +<script>
  332 + $(document).ready(function(){
  333 + function getCookie(a) {
  334 + var b = new RegExp(a+'=([^;]){1,}');
  335 + var c = b.exec(document.cookie);
  336 + if(c) c = c[0].split('=');
  337 + else return false;
  338 + return c[1] ? c[1] : false;
  339 + }
  340 +
  341 + var cookie = getCookie('popup');
  342 + var $button = $(".open-delivery-modal");
  343 + var $popup = $(".delivery-form-par");
  344 + var $popup_inner = $popup.find(".popup-main-delivery");
  345 +
  346 + if (cookie !== '1') {
  347 + setTimeout(function(){$button.show();},1000);
  348 + }
  349 + else {
  350 + $button.hide();
  351 + }
  352 +
  353 + $button.find("div img").click(function(){
  354 + $(this).parent().parent().hide();
  355 + $popup.show();
  356 + $popup.animate({opacity: "1"}, 500, function() {});
  357 + $popup_inner.animate({opacity: "1",top: "15%"}, 300, function() {});
  358 + });
  359 + $popup.find(".close-white").click(function(){
  360 + $popup_inner.animate({opacity: "0",top: "-50%"}, 300, function() {});
  361 + $popup.animate({opacity: "0"}, 500, function() {});
  362 + setTimeout(function(){$popup.hide();}, 600);
  363 + });
  364 + $popup.find(".close-popup").click(function(){
  365 + $popup_inner.animate({opacity: "0",top: "-50%"}, 300, function() {});
  366 + $popup.animate({opacity: "0"}, 500, function() {});
  367 + setTimeout(function(){$popup.hide();}, 600);
  368 + });
  369 + $(".modal_close").click(function(){
  370 + $button.hide();
  371 + });
  372 + });
  373 +
  374 +</script>
  375 +<!-- popup button -->
  376 +
324 377 <script>
325 378 $(document).ready(function() {
326 379 <?php foreach($active_sales as $k => $sale): ?>
... ...
src/app/frontend/views/partial/header.php
... ... @@ -2,6 +2,9 @@
2 2  
3 3 <link rel="stylesheet" href="/css/main.min.css" type="text/css" media="all" />
4 4  
  5 +<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&amp;subset=cyrillic-ext" rel="stylesheet" />
  6 +
  7 +
5 8 <!-- layerslider -->
6 9 <link rel="stylesheet" href="/css/layerslider.css" type="text/css">
7 10  
... ...
src/app/frontend/views/sendmail/message_10.phtml 0 → 100644
  1 +<!DOCTYPE HTML>
  2 +<html><head>
  3 + <meta charset="utf-8">
  4 + <style>
  5 + a, a.img{
  6 + border:none;
  7 + }
  8 + </style>
  9 +</head>
  10 +<body>
  11 +<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#f0f0f0"><tr><td align="center">
  12 + <table border="0" cellpadding="0" cellspacing="0" width="100%">
  13 + <tr>
  14 + <td bgcolor="#67b73e" width="100%" height="30" align="center" valign="top">
  15 + <table border="0" cellpadding="0" cellspacing="0" width="660">
  16 + <tr>
  17 + <td align="left" valign="middle" height="30"><a href="http://semena.in.ua/news-actions?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="color:white;font-family:Calibri;font-size:13px;font-style:Italic;">Заманчивые предложения</a></td>
  18 + <td align="right" valign="middle" height="30"><a href="#" style="color:white;font-family:Calibri;font-size:13px;font-style:Italic;">Загрузить картинки</a></td>
  19 + </tr>
  20 + </table>
  21 + </td>
  22 + </tr>
  23 + <tr>
  24 + <td align="center" valign="top" style="background: url('http://semena.in.ua/images/fon_header.png');background-repeat-y: no-repeat;">
  25 + <table border="0" cellpadding="0" cellspacing="0" width="660" height="157">
  26 + <tr>
  27 + <td align="center" valign="top">
  28 + <table border="0" cellpadding="0" cellspacing="0" width="660">
  29 + <tr><td height="23" valign="top"></td></tr>
  30 + <tr>
  31 + <td width="203px" height="70" align="left" background="http://semena.in.ua/images/logo2.png" style="background-position:left 10px;background-repeat:no-repeat;" valign="top"><a href="http://semena.in.ua?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="border:none;"><img src="http://semena.in.ua/images/link.png" border="none" height="50" width="174"></a></td>
  32 + <td width="308" align="center" height="70" background="http://semena.in.ua/images/tel_all.png" style="background-position-y: 7px;background-repeat:no-repeat;"></td>
  33 + <td align="right" valign="top">
  34 + <table border="0" cellpadding="0" cellspacing="0">
  35 + <tr>
  36 + <td background="http://semena.in.ua/images/ico-6.png" height="26" style="background-repeat:no-repeat;background-position: left 7px;padding-left: 20px;"><a href="http://semena.in.ua/callback/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="color:#4a4a4a;font-size:13px;font-family:Calibri;font-style:italic;">Обратная связь</a></td>
  37 + </tr>
  38 + <tr>
  39 + <td background="http://semena.in.ua/images/ico-7.png" height="26" style="background-repeat:no-repeat;background-position: left 8px;padding-left: 20px;"><a href="http://semena.in.ua/video/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="color:#4a4a4a;font-size:13px;font-family:Calibri;font-style:italic;">Видеообзоры</a></td>
  40 + </tr>
  41 + </table>
  42 + </td>
  43 + </tr>
  44 + </table>
  45 + </td>
  46 + </tr>
  47 + <tr><td height="2"></td></tr>
  48 + <tr>
  49 + <td align="center">
  50 + <table border="0" cellpadding="0" cellspacing="0">
  51 + <tr>
  52 + <td background="http://semena.in.ua/images/menu01.png" width="142" height="36" style="background-position:top center; background-repeat:no-repeat;text-align:center;" align="center"><a target="_blank" href="http://semena.in.ua/o-kompanii-1/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="font-family: Calibri;text-decoration: none;text-align: center;color: white;font-size: 14px;font-weight: bold;">О КОМПАНИИ</a>
  53 + </td>
  54 + <td background="http://semena.in.ua/images/menu02.png" width="183" height="36" style="background-position:top center; background-repeat:no-repeat;text-align:center;" align="center"><a target="_blank" href="http://semena.in.ua/dostavka-i-oplata-2/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="font-family: Calibri;text-decoration: none;text-align: center;color: white;font-size: 14px;font-weight: bold;">ДОСТАВКА И ОПЛАТА</a></td>
  55 + <td background="http://semena.in.ua/images/menu03.png" width="96" height="36" style="background-position:top center; background-repeat:no-repeat;text-align:center;" align="center"><a target="_blank" href="http://semena.in.ua/news-actions/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="font-family: Calibri;text-decoration: none;text-align: center;color: white;font-size: 14px;font-weight: bold;">АКЦИИ</a></td>
  56 + <td background="http://semena.in.ua/images/menu04.png" width="233" height="36" style="background-position:top center; background-repeat:no-repeat;text-align:center;" align="center"><a target="_blank" href="http://semena.in.ua/prof_tips/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" style="font-family: Calibri;text-decoration: none;text-align: center;color: white;font-size: 14px;font-weight: bold;">СОВЕТЫ ПРОФЕССИОНАЛОВ</a></td>
  57 + </tr>
  58 + </table>
  59 + </td>
  60 + </tr>
  61 + </table>
  62 + </td>
  63 + </tr>
  64 + <tr><td height="18"></td></tr>
  65 + <tr>
  66 + <td align="center">
  67 + <table cellspacing="0" cellpadding="0" border="0" width="660">
  68 + <tr>
  69 + <td width="65" height="65" background="http://semena.in.ua/images/f-1.jpg" style="background-position:center center;background-repeat:no-repeat;">
  70 + <a href="http://semena.in.ua/semena_ovoshchey_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a>
  71 + </td>
  72 + <td width="20" valign="top"></td>
  73 + <td width="65" height="65" background="http://semena.in.ua/images/f-2.jpg" style="background-position:center center;background-repeat:no-repeat;">
  74 + <a href="http://semena.in.ua/semena_tsvetov_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  75 + <td width="20" valign="top"></td>
  76 + <td width="65" height="65" background="http://semena.in.ua/images/f-3.jpg" style="background-position:center center;background-repeat:no-repeat;">
  77 + <a href="http://semena.in.ua/udobrenija_i_sredstva_zashchity_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  78 + <td width="20" valign="top"></td>
  79 + <td width="65" height="65" background="http://semena.in.ua/images/f-4.jpg" style="background-position:center center;background-repeat:no-repeat;">
  80 + <a href="http://semena.in.ua/gazonnye_travy_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  81 + <td width="20" valign="top"></td>
  82 + <td width="65" height="65" background="http://semena.in.ua/images/f-5.jpg" style="background-position:center center;background-repeat:no-repeat;">
  83 + <a href="http://semena.in.ua/sadjenci_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  84 + <td width="20" valign="top"></td>
  85 + <td width="65" height="65" background="http://semena.in.ua/images/f-6.jpg" style="background-position:center center;background-repeat:no-repeat;">
  86 + <a href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  87 + <td width="20" valign="top"></td>
  88 + <td width="65" height="65" background="http://semena.in.ua/images/f-7.jpg" style="background-position:center center;background-repeat:no-repeat;">
  89 + <a href="http://semena.in.ua/zootovari_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  90 + <td width="20" valign="top"></td>
  91 + <td width="65" height="65" background="http://semena.in.ua/images/f-8.jpg" style="background-position:center center;background-repeat:no-repeat;">
  92 + <a href="http://semena.in.ua/biopreparati_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank"><img width="65" height="65" valign="top" align="left" src="http://semena.in.ua/images/link.png" border="none"></a></td>
  93 + </tr>
  94 + <tr><td height="10px"></td></tr>
  95 + <tr>
  96 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#53a726;text-transform:uppercase;">
  97 + <a href="http://semena.in.ua/semena_ovoshchey_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#53a726;">Семена<br>овощей</a>
  98 + </td>
  99 + <td width="20" valign="top"></td>
  100 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#b22b2c;text-transform:uppercase;">
  101 + <a href="http://semena.in.ua/semena_tsvetov_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#b22b2c;">Семена<br>цветов</a>
  102 + </td>
  103 + <td width="20" valign="top"></td>
  104 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#f36c00;text-transform:uppercase;">
  105 + <a href="http://semena.in.ua/udobrenija_i_sredstva_zashchity_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#f36c00;">Удобрения<br>и средства<br>защиты</a>
  106 + </td>
  107 + <td width="20" valign="top"></td>
  108 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#1b7981;text-transform:uppercase;">
  109 + <a href="http://semena.in.ua/gazonnye_travy_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#1b7981;">Газонные<br>травы</a>
  110 + </td>
  111 + <td width="20" valign="top"></td>
  112 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#935927;text-transform:uppercase;">
  113 + <a href="http://semena.in.ua/sadjenci_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#935927;">Саженцы</a>
  114 + </td>
  115 + <td width="20" valign="top"></td>
  116 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#b1873f;text-transform:uppercase;">
  117 + <a href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#b1873f;">Товары<br>для сада<br>и огорода</a>
  118 + </td>
  119 + <td width="20" valign="top"></td>
  120 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#5b4a42;text-transform:uppercase;">
  121 + <a href="http://semena.in.ua/zootovari_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#5b4a42;">Зоотовары</a>
  122 + </td>
  123 + <td width="20" valign="top"></td>
  124 + <td height="50" width="65" valign="top" align="center" style="line-height: 1.3;font-family:Calibri;font-weight:bold;font-size:13px;color:#00a3de;text-transform:uppercase;">
  125 + <a href="http://semena.in.ua/biopreparati_1c_20/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color:#00a3de;">Био-препараты</a>
  126 + </td>
  127 + </tr>
  128 + </table>
  129 + </td>
  130 + </tr>
  131 + <tr><td height="10"></td></tr>
  132 + <tr>
  133 + <td align="center" valign="top" width="100%">
  134 + <table border="0" cellpadding="0" cellspacing="0" width="682">
  135 + <tr><td background="http://semena.in.ua/images/top_white.png" width="100%" height="30" align="center" valign="top">
  136 +
  137 + </td></tr>
  138 + <tr>
  139 + <td align="center" background="http://semena.in.ua/images/center_white.png">
  140 +
  141 + <table border="0" cellpadding="0" cellspacing="0" width="620px">
  142 + <tr><td align="center">
  143 + <table border="0" cellpadding="0" cellspacing="0" width="620px">
  144 + <tr><td height="10px"></td></tr>
  145 + <tr>
  146 + <td align="center" style="font-family:Calibri;font-size:25px;line-height: 26px;font-weight:bold;color:#333333;">Благодарим за подписку!</td>
  147 + </tr>
  148 + <tr>
  149 + <td style="color: #333333;font-family: Calibri;font-size: 16px;line-height: 18px;letter-spacing: -0.2px;"><br />
  150 + Спасибо, что Вы выбираете ТМ «Професійне насіння». Как и обещали, мы дарим Вам промокод на единоразовое использование скидки при покупке товаров на нашем <a href="http://semena.in.ua/ru?utm_source=newsletter&utm_campaign=welcome&utm_medium=email​​" target="_blank" style="text-decoration:none;color: #00aeef;">сайте</a>. А также Вы получите бонус из 14 статей с практическими советами о выращивании овощей и цветов.<br /><br />
  151 + </td>
  152 + </tr>
  153 + <tr>
  154 + <td style="text-align:center;color: #333333;font-family: Calibri;font-size: 16px;line-height: 18px;letter-spacing: -0.2px;">
  155 + Ваш персональный промокод со скидкой <b>-7%</b> на покупку товаров в мини-упаковке:<br />
  156 + </td></tr>
  157 + <tr><td height="10px"></td></tr>
  158 + <tr>
  159 + <td align="center">
  160 + <table border="0" cellpadding="0" cellspacing="0" background="http://semena.in.ua/images/buy_but.png" width="127px" height="39px" style="background-position:center center;background-repeat:no-repeat;">
  161 + <tr><td align="center" style="font-weight:bold;text-align:center;color: #fff;font-family: Calibri;font-size: 20px;line-height: 18px;letter-spacing: -0.2px;">9672076</td></tr>
  162 + </table>
  163 + </td>
  164 + </tr>
  165 +
  166 + <tr>
  167 + <td style="text-align:center;color: #333333;font-family: Calibri;font-size: 16px;line-height: 18px;letter-spacing: -0.2px;"><br /><br />
  168 + Ваш персональный промокод со скидкой <b>-3%</b> на покупку товаров в профессиональной упаковке:<br />
  169 + </td></tr>
  170 + <tr><td height="10px"></td></tr>
  171 + <tr>
  172 + <td align="center">
  173 + <table border="0" cellpadding="0" cellspacing="0" background="http://semena.in.ua/images/buy_but.png" width="127px" height="39px" style="background-position:center center;background-repeat:no-repeat;">
  174 + <tr><td align="center" style="font-weight:bold;text-align:center;color: #fff;font-family: Calibri;font-size: 20px;line-height: 18px;letter-spacing: -0.2px;">1045969</td></tr>
  175 + </table>
  176 + </td>
  177 + </tr>
  178 + <tr><td height="10px"></td></tr>
  179 + <tr>
  180 + <td style="color: #333333;font-family: Calibri;font-size: 11px;line-height: 13px;letter-spacing: -0.2px;"><br />Обратите внимание! Для того чтобы воспользоваться промокодом, необходимо зарегистрироваться на нашем сайте. После этого выберите товары, которые желаете приобрести и, при оформлении заказа, введите промокод в соответствующее поле «Промокод», нажмите кнопку «Применить». Скидка на Ваш заказ применится автоматически.<br /><br />
  181 + </td>
  182 + </tr>
  183 + <tr>
  184 + <td style="color: #333333;font-family: Calibri;font-size: 16px;line-height: 18px;letter-spacing: -0.2px;">
  185 + Удачных покупок и хорошего урожая!<br /><br /></td>
  186 + </tr>
  187 + </table>
  188 + </tr></tr></table>
  189 + </td>
  190 + </tr>
  191 + <tr>
  192 + <td background="http://semena.in.ua/images/bottom_white.png" width="100%" style="background-position: bottom center;" align="center" valign="top">
  193 + <table border="0" cellpadding="0" cellspacing="0" width="620px">
  194 +
  195 + <tr><td height="30px"></td>
  196 + </tr>
  197 + </table>
  198 + </td>
  199 + </tr>
  200 + <tr><td height="7px"></td></tr>
  201 + </table>
  202 + </td>
  203 + </tr>
  204 + </table>
  205 +
  206 +
  207 +
  208 + <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr>
  209 + <td>
  210 + <table cellpadding="0" cellspacing="0" border="0" width="100%" height="236" background="http://semena.in.ua/images/bg-2.jpg">
  211 + <tr>
  212 + <td align="center">
  213 + <table cellspacing="0" border="0" cellpadding="0" width="660">
  214 + <tr>
  215 + <td>
  216 + <table cellpadding="0" cellspacing="0" border="0" height="236">
  217 + <tr>
  218 + <td height="90"><a target="_blank" href="http://semena.in.ua/ru"><img src="http://semena.in.ua/images/logo.png" border="0" alt="semena.in.ua"></a></td>
  219 + </tr>
  220 + <tr>
  221 + <td valign="top" height="60" style="color: #4a4a4a; font-size: 15px; font-family: calibri; font-weight: normal;">Адрес центрального офиса:<br>
  222 + <span style="font-weight: bold;">Киев, ул. Садовая, 95</span></td>
  223 + </tr>
  224 + </table>
  225 + </td>
  226 + <td align="center">
  227 + <table cellspacing="0" cellpadding="0" border="0">
  228 + <tr><td background="http://semena.in.ua/images/tel01.png" width="150" height="29" title="(044) 581-67-15" style="background-position: top left; background-repeat:no-repeat;"></td></tr>
  229 + <tr><td background="http://semena.in.ua/images/tel02.png" width="150" height="29" title="(044) 451-48-59" style="background-position: top left; background-repeat:no-repeat;"></td></tr>
  230 + <tr><td background="http://semena.in.ua/images/tel03.png" width="150" height="29" title="(050) 464-48-49" style="background-position: top left; background-repeat:no-repeat;"></td></tr>
  231 + <tr><td background="http://semena.in.ua/images/tel04.png" width="150" height="29" title="(067) 464-48-59" style="background-position: top left; background-repeat:no-repeat;"></td></tr>
  232 + <tr><td background="http://semena.in.ua/images/tel05.png" width="150" height="29" title="(093) 026-86-64" style="background-position: top left; background-repeat:no-repeat;"></td></tr>
  233 + </table>
  234 + </td>
  235 + <td align="right">
  236 + <table cellpadding="0" cellspacing="0" border="0">
  237 + <tr>
  238 + <td>
  239 + <table cellspacing="0" cellpadding="0" border="0" width="168" style="text-align: right">
  240 + <tr>
  241 + <td><a target="_blank" href="https://www.facebook.com/Professionalseeds"><img src="http://semena.in.ua/images/fb.png" width="48" height="48" border="0" alt=""></a></td>
  242 + <td><a target="_blank" href="https://www.youtube.com/channel/UCMnG-NxtoprcTxKcPouwWdQ"><img src="http://semena.in.ua/images/youtube.png" width="48" height="48" border="0" alt=""></a></td>
  243 + <td><a target="_blank" href="https://vk.com/public116774284"><img src="http://semena.in.ua/images/vk.png" width="48" height="48" border="0" alt=""></a></td>
  244 + </tr>
  245 + </table>
  246 + </td>
  247 + </tr>
  248 + </table>
  249 + </td>
  250 + </tr>
  251 + </table>
  252 + </td>
  253 + </tr>
  254 + </table>
  255 + </td>
  256 + </tr>
  257 + </table>
  258 +
  259 + </td></tr></table>
  260 +</body></html>
0 261 \ No newline at end of file
... ...
src/lib/models.php
... ... @@ -586,6 +586,25 @@ namespace
586 586 return $this->_discount;
587 587 }
588 588  
  589 + /**
  590 + * models::getSubscribe
  591 + *
  592 + * @author Alex Savenko
  593 + * @version 0.1.20140507
  594 + *
  595 + * @return \models\subscribe
  596 + */
  597 + public function getSubscribe()
  598 + {
  599 + if( empty($this->_subscribe) )
  600 + {
  601 + $this->_subscribe = new \models\subscribe();
  602 + $this->_subscribe->setDi( $this->getDi() );
  603 + }
  604 +
  605 + return $this->_subscribe;
  606 + }
  607 +
589 608 public function getPayment()
590 609 {
591 610 if( empty($this->_payment) )
... ...
src/lib/models/subscribe.php 0 → 100644
  1 +<?php
  2 +/**
  3 + * Created by PhpStorm.
  4 + * User: Alex Savenko
  5 + * Date: 01.12.2016
  6 + * Time: 18:35
  7 + */
  8 +
  9 +namespace models;
  10 +
  11 +
  12 +class subscribe extends \db
  13 +{
  14 + public function getAllData()
  15 + {
  16 +
  17 + return $this->get(
  18 + '
  19 + SELECT subscribe.* FROM
  20 + public.subscribe
  21 + ORDER BY
  22 + date ASC
  23 + '
  24 + ,
  25 + [
  26 + ],
  27 + -1
  28 + );
  29 + }
  30 +
  31 + public function getOneData($id)
  32 + {
  33 + return $this->get(
  34 + '
  35 + SELECT *
  36 + FROM public.subscribe
  37 + WHERE
  38 + id = :id
  39 + ',
  40 + [
  41 + 'id' => $id
  42 + ],
  43 + -1
  44 + );
  45 + }
  46 +
  47 + public function getOneDataByEmail($email)
  48 + {
  49 +
  50 + return $this->get(
  51 + '
  52 + SELECT * FROM
  53 + public.subscribe
  54 + WHERE
  55 + email = :email
  56 + ',
  57 + [
  58 + 'email' => $email
  59 + ],
  60 + -1
  61 + );
  62 + }
  63 +
  64 + public function deleteData($id){
  65 + return $this->exec(
  66 + ' DELETE
  67 + FROM
  68 + public.subscribe
  69 + WHERE
  70 + id = :id
  71 + ',
  72 + [
  73 + 'id' => $id
  74 + ]
  75 + );
  76 + }
  77 +
  78 + public function addData($data)
  79 + {
  80 +
  81 + return $this->get(
  82 + '
  83 + INSERT INTO
  84 + public.subscribe
  85 + (
  86 + name,
  87 + email,
  88 + date
  89 +
  90 + )
  91 + VALUES
  92 + (
  93 + :name,
  94 + :email,
  95 + CURRENT_TIMESTAMP
  96 + )
  97 + RETURNING id
  98 + ',
  99 + [
  100 + 'name' => $data['name'],
  101 + 'email' => $data['email']
  102 + ],
  103 + -1
  104 + );
  105 + }
  106 +
  107 + public function updateData($data,$id)
  108 + {
  109 +
  110 + return $this->exec(
  111 + '
  112 + UPDATE
  113 + public.subscribe
  114 + SET
  115 + name = :name,
  116 + email = :email
  117 + greeting = :greeting
  118 + WHERE
  119 + id = :id
  120 + ',
  121 + [
  122 + 'name' => $data['name'],
  123 + 'email' => $data['email'],
  124 + 'greeting' => $data['greeting'],
  125 + 'id' => $id
  126 + ]
  127 + );
  128 + }
  129 +
  130 + public function updateGreetingStatus($id)
  131 + {
  132 +
  133 + return $this->exec(
  134 + '
  135 + UPDATE
  136 + public.subscribe
  137 + SET
  138 + greeting = 1
  139 + WHERE
  140 + id = :id
  141 + ',
  142 + [
  143 + 'id' => $id
  144 + ]
  145 + );
  146 + }
  147 +
  148 + public function countData( )
  149 + {
  150 + return $this->get(
  151 + '
  152 + SELECT
  153 + COUNT(id) AS total
  154 + FROM
  155 + public.subscribe
  156 + ',
  157 + [
  158 +
  159 + ],
  160 + -1
  161 + );
  162 + }
  163 +}
0 164 \ No newline at end of file
... ...
src/lib/sendmail.php
... ... @@ -135,6 +135,17 @@ namespace
135 135 ];
136 136  
137 137 break;
  138 + case 10: //popup
  139 +
  140 + $data_base =
  141 + [
  142 + 'email_to' => $data['email'],
  143 + 'email_reply' => $data['name'].' <'.$data['email'].'>',
  144 + 'subject' => 'Благодарим за подписку на сайте: '.\config::get( 'global#title' ),
  145 + 'message_body' => $view->getContent()
  146 + ];
  147 +
  148 + break;
138 149  
139 150 default:
140 151 return false;
... ... @@ -213,6 +224,61 @@ namespace
213 224 }
214 225  
215 226 /////////////////////////////////////////////////////////////////////////////
  227 +
  228 + public function sendSubscribe($data) {
  229 +
  230 + $view = new \Phalcon\Mvc\View();
  231 + $view->setViewsDir( ROOT_PATH.config::get( 'dirs/viewsDir' ) );
  232 +
  233 + $view->start();
  234 +
  235 + $view->setVar( 'data', $data );
  236 + $view->render( 'sendmail', 'message_10' );
  237 +
  238 + $view->finish();
  239 + $message_body = $view->getContent();
  240 +
  241 + $mail = new PHPMailer;
  242 + //Tell PHPMailer to use SMTP
  243 + $mail->isSMTP();
  244 + //Enable SMTP debugging
  245 + // 0 = off (for production use)
  246 + // 1 = client messages
  247 + // 2 = client and server messages
  248 + $mail->SMTPDebug = 0;
  249 + //Ask for HTML-friendly debug output
  250 + $mail->Debugoutput = 'html';
  251 + //Set the hostname of the mail server
  252 + $mail->Host = 'smtp.gmail.com';
  253 + $mail->CharSet = 'UTF-8';
  254 + // use
  255 + // $mail->Host = gethostbyname('smtp.gmail.com');
  256 + // if your network does not support SMTP over IPv6
  257 + //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
  258 + $mail->Port = 587;
  259 + //Set the encryption system to use - ssl (deprecated) or tls
  260 + $mail->SMTPSecure = 'tls';
  261 + //Whether to use SMTP authentication
  262 + $mail->SMTPAuth = true;
  263 + //Username to use for SMTP authentication - use full email address for gmail
  264 + $mail->Username = "arctic.semenainua@gmail.com";
  265 + //Password to use for SMTP authentication
  266 + $mail->Password = "arctic0411";
  267 +
  268 + //Set who the message is to be sent from
  269 + $mail->setFrom('semena@hs.kiev.ua', 'semena.in.ua');
  270 + //Set who the message is to be sent to
  271 + $mail->addAddress($data['email'], $data['name']);
  272 + //Set the subject line
  273 + $mail->Subject = 'Благодарим за подписку!';
  274 + //Read an HTML message body from an external file, convert referenced images to embedded,
  275 + //convert HTML into a basic plain-text alternative body
  276 +
  277 + $mail->msgHTML($message_body);
  278 + $mail->send();
  279 + }
  280 +
  281 + /////////////////////////////////////////////////////////////////////////////
216 282 }
217 283 }
218 284  
... ...
www/css/main.css
Changes suppressed. Click to show
1   -*{margin:0;padding:0}
2   -body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,tr{margin:0;padding:0;letter-spacing:normal;}
3   -table{border-collapse:collapse;border-spacing:0;}
4   -fieldset,img{border:0;}
5   -address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
6   -caption,th{text-align:left;}
7   -q:before,q:after{content:'';}
8   -:focus{outline:none;}
9   -abbr,acronym{border:0;}
10   -html,body{height:100%;}
11   -header,nav,section,article,aside,footer{display:block;margin:0;padding:0;}
12   -img{border:0;width:auto;}
13   -input{vertical-align:middle;}
14   -ol,ul{margin:0;padding:0;list-style:none;}
15   -ul li{margin:0;padding:0;}
16   -a{color:#4a4a4a;text-decoration:underline;display:block;}
17   -a:hover{color:#4a4a4a;text-decoration:underline;}
18   -.clearfix:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
19   -.clearfix{display:inline-block;}
20   -html[xmlns] .clearfix{display:block;}
21   -* html .clearfix{}
22   -body{font:normal 12px/14px Arial, Tahoma, sans-serif;color:#4a4a4a;}
23   -.float{display:inline;float:left;}
24   -.last{margin-right:0 !important;padding-right:0 !important;}
25   -.display_none{display:none!important;}
26   -.display_block{display:block!important;}
27   -.inner{width:960px;margin:0 auto;}
28   -.not_exist{cursor:default;opacity:0.3;-moz-opacity:0.3;-khtml-opacity:0.3;}
29   -#wrapper{min-height:100%;height:auto !important;height:100%;margin:0 auto -5em;}
30   -.beta{width:960px;overflow:hidden;margin:0 auto;padding:10px 0 0;font-size:20px;line-height:20px;text-align:center;}
31   -.beta a{display:inline;color:#009aff;}
32   -#header{background:#ffffff;background:-moz-linear-gradient(top, #ffffff 0%, #ececec 100%, #ececec 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ececec), color-stop(100%,#ececec));background:-webkit-linear-gradient(top, #ffffff 0%,#ececec 100%,#ececec 100%);background:-o-linear-gradient(top, #ffffff 0%,#ececec 100%,#ececec 100%);background:-ms-linear-gradient(top, #ffffff 0%,#ececec 100%,#ececec 100%);background:linear-gradient(to bottom, #ffffff 0%,#ececec 100%,#ececec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ececec',GradientType=0);position:relative;}
33   -.columns3{margin:10px 0;}
34   -.columns3.first_column{width:320px;}
35   -.columns3.second_column{width:375px;}
36   -.columns3.third_column{width:265px;position:relative;}
37   -.switch_lang{margin:5px 0 10px 0;}
38   -.switch_lang div{padding:0 10px 0 20px;}
39   -.switch_lang div.ru{background:url(../images/ru_flag.gif) no-repeat 0 50%;color:#55a727;}
40   -.switch_lang div{color:#55a727;}
41   -.switch_lang div a.active,
42   -.switch_lang div a:hover{color:#55a727;}
43   -.contact_phones,
44   -.contact_mob_phones{font:normal 17px/20px Arial, Tahoma, sans-serif !important;padding:2px 0 2px 20px !important;}
45   -.contact_phones a,
46   -.contact_mob_phones a{display:inline;}
47   -.contact_phones{background:url(../images/tel.png) no-repeat 0 50%;}
48   -.contact_mob_phones{background:url(../images/mob.png) no-repeat 1% 50%;}
49   -span.small_digits{font-size:15px !important;}
50   -.callback{font-style:italic;margin:5px 0 0 0;}
51   -.logo{margin:10px 0 10px 0;}
52   -.menu_cabinet{padding:10px 10px 10px 20px;}
53   -.basket{padding:10px 10px 10px 23px;}
54   -.compare_wrapper{min-height:35px;position:relative;}
55   -header .navbar .compare_wrapper{display:inline-block;}
56   -.compare{padding:5px 0 15px 20px;margin:0 0 0 120px;}
57   -header .compare{margin:10px 0 0 20px;}
58   -.compare_wrapper .compare_list{position:absolute;top:0;right:0;padding:0 10px 10px 10px;background:#F5F5F5;border:2px solid #267f00;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;z-index:9991;font:normal 12px/20px Arial, Tahoma, sans-serif;display:none;}
59   -header .compare_wrapper .compare_list a, header .compare_wrapper .compare_list a:hover{color:#4a4a4a;text-decoration:underline;}
60   -header .compare_wrapper .compare_list .compare a, header .compare_wrapper .compare_list .compare a:hover{text-decoration:none;}
61   -.compare_wrapper .compare_list .compare{margin:0;padding:1px 0 5px 20px;}
62   -.compare_wrapper .compare_list .compare a{text-decoration:none;}
63   -.compare_wrapper .compare_list ul li{font:normal 12px/20px Arial, Tahoma, sans-serif;padding:2px 0;}
64   -.compare_wrapper .compare_list ul li a{margin:0 5px 0 0;}
65   -.basket .active{color:#f58025;}
66   -.basket_number{padding:7px 0 10px 0;}
67   -.basket_number a,
68   -.basket_number a:hover{text-decoration:none;color:#ffffff;background:#67b73e;padding:2px 5px;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;webkit-box-shadow:inset 2px 1px 10px 0 #417e24;-moz-box-shadow:inset 2px 1px 10px 0 #417e24;box-shadow:inset 2px 1px 10px 0 #417e24;}
69   -.menu_cabinet a,
70   -.basket a,
71   -.compare a{font-style:italic;}
72   -#header .columns3 .menu_cabinet{background:url(../images/cabinet.png) no-repeat 0 50%;}
73   -#header .columns3 .basket{background:url(../images/basket.png) no-repeat 0 50%;}
74   -#header .columns3 .compare, header .compare_wrapper .compare{background:url(../images/ico_comparison.png) no-repeat 0 25%;}
75   -#header .columns3 .site_search, header .site_search input{position:relative;}
76   -#header .columns3 input,
77   -.cat_center .site_search input,
78   -header .site_search input{width:250px;margin:0;padding:7px 5px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:0;-moz-box-shadow:inset 1px 1px 1px 0 #d0d0d0;-webkit-box-shadow:inset 1px 1px 1px 0 #d0d0d0;box-shadow:inset 1px 1px 1px 0 #d0d0d0;}
79   -#header .columns3 label,
80   -.cat_center .site_search label,
81   -header .site_search label{position:absolute;top:7px;right:7px;}
82   -header .site_search label{top:12px;right:12px;}
83   -#header .columns3 .site_search.active .search_result_wrapper,
84   -#header .columns3 .site_search:active .search_result_wrapper,
85   -.cat_center .site_search.active .search_result_wrapper,
86   -header .site_search.nav-search .search_result_wrapper{position:absolute;z-index:9999;background:#ececec;width:260px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:2px solid #4fa32c;-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);}
87   -header .site_search.nav-search .search_result_wrapper{position:static;}
88   -#header .columns3 .site_search.active .search_result_wrapper .search_result_display,
89   -header .site_search.nav-search.active .search_result_wrapper .search_result_display{display:block;}
90   -#header .columns3 .site_search .search_result_wrapper .search_result_display,
91   -header .site_search.nav-search .search_result_wrapper .search_result_display{display:none;}
92   -#header .columns3 .site_search .search_result_wrapper li,
93   -header .site_search.nav-search .search_result_wrapper li{border-bottom:1px solid #c4c4c4;margin:15px;padding:0 0 10px 0;}
94   -#header .columns3 .site_search .search_result_wrapper li img,
95   -header .site_search.nav-search .search_result_wrapper li img{width:100px;margin:5px;-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);float:left;}
96   -#header .columns3 .site_search .search_result_wrapper li p,
97   -header .site_search.nav-search .search_result_wrapper li p{margin:0 0 0 80px;font:normal 13px/15px Arial, Tahoma, sans-serif;color:#f58025;}
98   -#header .columns3 .site_search .search_result_wrapper li p span,
99   -header .site_search.nav-search .search_result_wrapper li p span{font:bold 20px/22px Arial, Tahoma, sans-serif;color:#f58025;}
100   -#header .columns3 .site_search .search_result_wrapper li a.search_result_title,
101   -header .site_search.nav-search .search_result_wrapper li a.search_result_title{font:bold 14px/20px Arial, Tahoma, sans-serif;margin:0 0 0 80px;text-decoration:none;}
102   -#header .columns3 .site_search .search_result_wrapper .all_search_result,
103   -header .site_search.nav-search .search_result_wrapper .all_search_result{font:italic 12px/15px Arial, Tahoma, sans-serif;text-decoration:underline;margin:0 15px 5px 15px;}
104   -#header .columns3 .site_search .search_result_wrapper .no_search_result,
105   -header .site_search.nav-search .search_result_wrapper .no_search_result{font:italic 12px/15px Arial, Tahoma, sans-serif;margin:5px;}
106   -#header_nav{position:relative;height:20px;}
107   -#header_nav ul{border:3px solid #ececec;height:35px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;background:#67b73e;position:absolute;z-index:999;}
108   -#header_nav ul li{display:inline;float:left;background:#67b73e;border-left:1px solid #55a727!important;}
109   -.header_nav_1_{width:50px!important;}
110   -.header_nav_2_{width:100px!important;}
111   -.header_nav_3_{width:145px!important;}
112   -.header_nav_4_{width:175px!important;}
113   -.header_nav_5_{width:135px!important;}
114   -.header_nav_6_{width:167px!important;}
115   -.header_nav_7_{width:103px!important;}
116   -.header_nav_8_{width:60px!important;}
117   -#header_nav ul li:hover,
118   -#header_nav ul li.active{background:#55a727;}
119   -#header_nav ul li.left_radius{border-radius:5px 0px 0px 5px;-moz-border-radius:5px 0px 0px 5px;-webkit-border-radius:5px 0px 0px 5px;}
120   -#header_nav ul li.right_radius{border-radius:0px 5px 5px 0px;-moz-border-radius:0px 5px 5px 0px;-webkit-border-radius:0px 5px 5px 0px;}
121   -#header_nav ul li a{text-transform:uppercase;text-decoration:none;color:#ffffff;font:bold 12px/15px Arial, Tahoma, sans-serif;text-align:center;padding:10px 1.3pc;float:left;white-space:nowrap;}
122   -#content{display:block;}
123   -#content_nav{background:url(../images/pattern.png);}
124   -#content_nav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0 0;}
125   -h2.types_logo_1{color:#4fa32c;}
126   -h2.types_logo_2{color:#bb4648;}
127   -h2.types_logo_3{color:#f58025;}
128   -h2.types_logo_4{color:#378a92;}
129   -h2.types_logo_5{color:#db0565;}
130   -h2.types_logo_6{color:#935927;}
131   -h2.types_logo_479{color:#b1873f;}
132   -#content_nav .content_nav_first_floor{padding:40px 0 15px 0;margin:0 0 20px 0;border-bottom:1px solid #cdcdcd;}
133   -#content_nav .content_nav_first_floor .content_nav_logo{padding:0 40px 0 0;width:150px;}
134   -#content_nav .content_nav_logo a{text-decoration:none;}
135   -#content_nav .content_nav_first_floor .content_nav_items{column-count:4;-moz-column-count:4;-webkit-column-count:4;column-width:180px;-moz-column-width:180px;-webkit-column-width:180px;}
136   -#content_nav .content_nav_first_floor .content_nav_items a,
137   -.content_nav_items a{font-size:13px;line-height:21px;font-style:italic;width:160px;}
138   -.content_nav_items a:hover{color:#f36d00;}
139   -.content_nav_second_floor .float{padding:0 40px 20px 0;width:150px;}
140   -.shadow_to_top{background:url(../images/shadow.png) no-repeat center center;height:22px;text-align:center;overflow:hidden;}
141   -.content_items .title{background:url(../images/line.gif) 100% 85% repeat-x;}
142   -.content_items .title .items_title{font:bold 20px/24px Arial, Tahoma, sans-serif;color:#f36d00;}
143   -.content_items .title .float{background:#ffffff;}
144   -.content_items .title .content_arrow_left,
145   -.content_items .title .content_arrow_right{margin:4px 6px;}
146   -.content_items .title .content_items_page{margin:4px 0;}
147   -.content_items .title .content_arrow_left{width:10px;height:18px;background:url(../images/content_arrow_left.png) no-repeat}
148   -.content_items .title .content_arrow_left:hover{width:10px;height:18px;background:url(../images/content_arrow_left_hover.png) no-repeat}
149   -.content_items .title .content_arrow_right{width:10px;height:18px;background:url(../images/content_arrow_right.png) no-repeat}
150   -.content_items .title .content_arrow_right:hover{width:10px;height:18px;background:url(../images/content_arrow_right_hover.png) no-repeat}
151   -.content_items .title .content_items_page{font:normal 13px/16px Arial, Tahoma, sans-serif;color:#4a4a4a;}
152   -.align_bottom{position:absolute;bottom:0;width:90%;}
153   -.items .one_item{width:165px;min-height:331px;height:331px;margin:20px 33px 45px 0;text-align:center;position:relative;}
154   -.subcategory .items .one_item,
155   -.search .items .one_item{min-height:410px;width:175px;margin:20px 95px 45px 0;}
156   -.subcategory_list .items .one_item{min-height:230px;width:100%;margin:20px 0 20px 0;}
157   -.subcategory_list .items .one_item .one_item_image{margin:0 0 10px 18px;float:left;}
158   -.subcategory_list .items .one_item .align_bottom{position:absolute;text-align:left;bottom:0;left:200px;}
159   -.subcategory_list .items .one_item .align_bottom .one_item_buttons{text-align:center;margin:0;float:left;display:inline;}
160   -.subcategory_list .items .one_item .align_bottom .one_item_compare{float:left;display:inline;margin:15px 0 0 10px;}
161   -.subcategory_list .items .one_item .one_item_title,
162   -.subcategory_list .items .one_item .one_item_description{text-align:left;}
163   -.subcategory_list .items .one_item .one_item_title{margin:0 0 15px 200px;}
164   -.subcategory_list .items .one_item .one_item_description{display:none;}
165   -.subcategory_list .items .one_item .one_item_content_description{display:block;text-align:left;font:normal 13px/16px Arial, Tahoma, sans-serif;margin:0 0 0 200px;}
166   -.one_item_description{overflow:hidden;height:30px;}
167   -.items .one_item .new_top{margin:0 0 0 23px;min-height:18px;}
168   -.items .one_item .new_top div{margin:0 3px 0 0;}
169   -.items .one_item .one_item_image{margin:0 auto 10px auto;display:inline-block;position1:relative;overflow:hidden;min-width:128px;max-width:175px;height:200px;-webkit-box-shadow:0px 0px 15px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 15px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 15px 0px rgba(50, 50, 50, 0.75);}
170   -.items .one_item .one_item_image img{}
171   -.one_item_description{font:normal 12px/14px Arial, Tahoma, sans-serif;margin:5px 0 0 0;}
172   -.one_item_content_description{display:none;}
173   -.items .one_item .one_item_title a{text-decoration:none;}
174   -.items .one_item .one_item_title a h3{font:bold 16px/20px Arial, Tahoma, sans-serif;color:#464646;}
175   -.items .one_item .one_item_price{font:normal 13px/15px Arial, Tahoma, sans-serif;color:#f58025;}
176   -.items .one_item .one_item_price span{font:bold 20px/22px Arial, Tahoma, sans-serif;color:#f58025;}
177   -.items .one_item .one_item_buttons{width:80px;margin:10px;}
178   -.btn{text-decoration:none;font-size:12px;padding:5px 4px;margin:10px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px;}
179   -.green:hover,
180   -.btv:hover{text-decoration:none !important;}
181   -.grey{color:rgb(70, 70, 70);background:rgb(255, 255, 255);background:-moz-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);background:-webkit-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);background:-o-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);background:-ms-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);background:linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);border:1px solid #e1e1e1;}
182   -.green{color:#ffffff;background:#4fa32c;border:1px solid #4fa32c;margin:10px 4px 10px 0;}
183   -.green:hover{color:#ffffff;background:#f36d00;border:1px solid #f36d00;}
184   -.green:focus{color:#ffffff !important;}
185   -.not_available{cursor:default;text-decoration:none;display:inline-block;}
186   -.not_available:hover{text-decoration:none;}
187   -.one_item_compare label{text-decoration:underline;cursor:pointer;}
188   -.one_item_compare label:hover{text-decoration:underline;cursor:pointer;color:#f36d00;}
189   -.content_accost{background:#f5f5f5;padding:0 0 40px 0;position:relative;border-bottom:2px solid #55a727;}
190   -.content_accost .shadow_to_down{background:url(../images/shadow_to_down.png) no-repeat center center;height:22px;text-align:center;overflow:hidden;}
191   -.content_accost .content_accost_title,
192   -.content_accost .content_accost_title h1{padding:18px 0 0 0;text-transform:uppercase;font:bold 16px/18px Arial, Tahoma, sans-serif;}
193   -.content_accost .content_accost_content h2{font:normal 14px/16px Arial, Tahoma, sans-serif;padding:10px 0 0 0;}
194   -.content_accost .content_accost_content h2 strong{font-weight:bold;}
195   -.content_accost .content_accost_content p{font:normal 13px/14px Arial, Tahoma, sans-serif;padding:10px 0 0 0;}
196   -.content_accost .content_accost_content p strong{font-weight:bold;}
197   -.content_accost .content_accost_content ul{font:normal 13px/14px Arial, Tahoma, sans-serif;list-style:disc inside;}
198   -.content_accost .content_accost_content ul li{margin:2px 0 0 0;}
199   -.content_blog{margin:40px 0 30px 0;min-height:30px;}
200   -.content_blog .posts{border-bottom1:2px solid #d3d3d3;padding:0 0 20px 0;margin:0 0 60px 0;}
201   -.content_blog .text_posts,
202   -.content_blog .video_posts{width:460px;margin:0 40px 0 0;}
203   -.content_blog .text_posts .text_posts_title a{padding:18px 0 0 0;text-transform:uppercase;font:bold 16px/18px Arial, Tahoma, sans-serif;text-decoration:none;}
204   -.content_blog .text_posts .one_post.first{width:460px;min-height:130px;margin:10px 0 20px 0;}
205   -.content_blog .text_posts .one_post.first .one_post_content{width:260px;margin:0 0 0 20px;}
206   -.content_blog .text_posts .one_post.first .one_post_content .one_post_title a{text-decoration:none;font:bold 15px/18px Arial, Tahoma, sans-serif;color:#464646;}
207   -.content_blog .text_posts .one_post.first .one_post_content .one_post_title a:hover{text-decoration:none;color:#464646;}
208   -.content_blog .text_posts .one_post.first p{font:normal 13px/16px Arial, Tahoma, sans-serif;color:#4a4a4a;padding:0 0 5px 0;}
209   -.content_blog .text_posts .one_post.first a.more{display:inline;text-decoration:none;}
210   -.content_blog .text_posts .one_post{width:140px;margin:0 20px 0 0;}
211   -.content_blog .text_posts .one_post .one_post_image{width:180px;}
212   -.content_blog .text_posts .one_post .one_post_content .one_post_title a{text-decoration:none;font:normal 13px/16px Arial, Tahoma, sans-serif;color:#4a4a4a;}
213   -.content_blog .text_posts .one_post .one_post_content .one_post_title a:hover{text-decoration:none;}
214   -.video_posts .one_video_title{width:150px;margin:10px 0 0 0;}
215   -.video_posts .one_video_title a,
216   -.video_posts .one_video_title a:hover{text-decoration:none;font:normal 13px/18px Arial, Tahoma, sans-serif;color:#4a4a4a;position:relative;}
217   -.video_posts .one_video_title a img{float:left;margin:0px 7px 1px 0;}
218   -.content_blog .links{height:70px;}
219   -.float.share{float:right;}
220   -.float.share .share_title{padding:6px 0 0 0;margin:0 5px 0 0;}
221   -.pluso-wrap{background:#ffffff !important;border:1px solid #e9e9e9;opacity:0.45;-moz-opacity:0.45;-khtml-opacity:0.45;}
222   -.pluso-wrap a{margin:3px 0 0 5px !important;}
223   -.float.share .pluso .pluso-more{display:none;}
224   -#footer{margin:0;padding:0;position:relative;height:5em;}
225   -#footer .up{position:relative;}
226   -#footer .up a{position:absolute;top:-18px;right:0px;z-index:9;}
227   -.map{height:380px;margin:0 0 60px 0;}
228   -#content_map,
229   -#content_map2{padding:10px 20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:250px;}
230   -.content_map_1{position:absolute !important;bottom:0!important;}
231   -.map_shadow{height:5px;webkit-box-shadow:inset 0px 3px 10px 0px rgba(0,0,0,0.75);-moz-box-shadow:inset 0px 3px 10px 0px rgba(0,0,0,0.75);box-shadow:inset 0px 3px 10px 0px rgba(0,0,0,0.75);}
232   -#content_map .content_map_title,
233   -#content_map2 .content_map_title{font:bold 16px/18px Arial, Tahoma, sans-serif;color:#4fa32c;}
234   -#content_map p,
235   -#content_map2 p{font:normal 14px/16px Arial, Tahoma, sans-serif;margin:3px 0 0 0;}
236   -#content_map .email{background:url(../images/mail.png) no-repeat 0 30%;padding:0 0 10px 20px;}
237   -.copyright{background:#4fa32c;height:5em;color:#ffffff;}
238   -.copyright .float{margin:25px 0 0 0;}
239   -.copyright .float.copyright_logo_margin{margin:20px 50px 0 0px;}
240   -.copyright a,
241   -.copyright a:hover{color:#ffffff;}
242   -.copyright .float_right,
243   -.float_right{float:right;}
244   -.catalog_slider{background:url(../images/catalog_slider.jpg) no-repeat center center;height:190px;text-align:center;overflow:hidden;}
245   -.catalog_slider .catalog_description{margin:50px 0 0 0;width:365px;height:100px;-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);}
246   -.catalog_slider .catalog_description.logo1{background:#53a726;}
247   -.catalog_slider .catalog_description.logo2{background:#b12b2c;}
248   -.catalog_slider .catalog_description.logo3{background:#f36d01;}
249   -.catalog_slider .catalog_description.logo4{background:#1b7781;}
250   -.catalog_slider .catalog_description.logo5{background:#db0565;}
251   -.catalog_slider .catalog_description.logo6{background:#935927;}
252   -.catalog_slider .catalog_description.logo479{background:#b1873f;}
253   -.catalog_slider .catalog_description .catalog_description_content{width:225px;margin:20px 0 0 0;text-align:left;}
254   -.catalog_slider .catalog_description .catalog_description_content .catalog_description_title{margin:0 0 5px 0;}
255   -.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a,
256   -.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a:hover{font-size:15px;text-transform:uppercase;color:#ffffff;text-decoration:none;}
257   -.catalog_slider .catalog_description .catalog_description_content p{color:#ffffff;}
258   -.breadcrumbs{background:#ebebeb;}
259   -.breadcrumbs ul{padding:15px 0;}
260   -.breadcrumbs ul li{padding:0 4px 0 0;}
261   -.breadcrumbs ul li a.breadcrumbs_last,
262   -.breadcrumbs ul li a.breadcrumbs_last:hover{text-decoration:none;}
263   -.search .sidebar_content_wrapper,
264   -.catalog .sidebar_content_wrapper,
265   -.subcategory .sidebar_content_wrapper,
266   -.subcategory_list .sidebar_content_wrapper,
267   -.cabinet .sidebar_content_wrapper{margin:20px 0 0 0;min-height:300px;}
268   -.catalog #sidebar,
269   -.search #sidebar,
270   -.subcategory #sidebar,
271   -.subcategory_list #sidebar{width:185px;margin:0 55px 20px 0;}
272   -.search #sidebar ul li a,
273   -.catalog #sidebar ul li a{font:italic 13px/20px Arial, Tahoma, sans-serif;}
274   -.search #sidebar ul li ul{font:italic 12px/20px Arial, Tahoma, sans-serif;margin:0 0 0 10px;}
275   -.search #content_wrapper,
276   -.catalog #content_wrapper,
277   -.subcategory #content_wrapper,
278   -.subcategory_list #content_wrapper,
279   -.cabinet #content_wrapper{width:720px;}
280   -.catalog #content_wrapper ul li{margin:0 20px 0 0;text-align:center;min-height:185px;}
281   -.catalog #content_wrapper ul li a,
282   -.catalog #content_wrapper ul li a:hover{font:bold 14px/20px Arial, Tahoma, sans-serif;text-decoration:none;width:165px;}
283   -.catalog .content_accost,
284   -.subcategory .content_accost,
285   -.subcategory_list .content_accost,
286   -.item .content_accost{background:#f5f5f5;padding:0 0 40px 0;position:relative;border-bottom:0;}
287   -.subcategory_sidebar_title h3{font:bold 16px/18px Arial, Tahoma, sans-serif;color:#4fa32c;}
288   -.subcategory_sidebar_title p{font:bold 13px/15px Arial, Tahoma, sans-serif;margin:15px 0 10px 0;}
289   -.subcategory_sidebar_title .vip_icon{margin-left:20px; float:right;}
290   -ul#subcategory_menu{width:220px;list-style:none;}
291   -ul.last{border-bottom:1px solid #e3e3e3;}
292   -ul#subcategory_menu li .main{text-shadow:0 1px 0 rgba(255, 255, 255, 0.8);cursor:pointer;margin:0;padding:6px 0 6px 10px;background:#fefefe;background:-moz-linear-gradient(top, #fefefe 0%, #1e5799 0%, #fefefe 0%, #ededed 100%, #ededed 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(0%,#1e5799), color-stop(0%,#fefefe), color-stop(100%,#ededed), color-stop(100%,#ededed));background:-webkit-linear-gradient(top, #fefefe 0%,#1e5799 0%,#fefefe 0%,#ededed 100%,#ededed 100%);background:-o-linear-gradient(top, #fefefe 0%,#1e5799 0%,#fefefe 0%,#ededed 100%,#ededed 100%);background:-ms-linear-gradient(top, #fefefe 0%,#1e5799 0%,#fefefe 0%,#ededed 100%,#ededed 100%);background:linear-gradient(to bottom, #fefefe 0%,#1e5799 0%,#fefefe 0%,#ededed 100%,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#ededed',GradientType=0);border:1px solid #e0e0e0;text-decoration:none;font:bold 13px/16px Arial, Tahoma, sans-serif;display:block;}
293   -.subcategory_menu_closed.main{border-bottom:0 !important;}
294   -ul#subcategory_menu .main .float.dropdown{width:25px;height:12px;float:right;background:url(../images/dropdown.png) 0% 100% no-repeat;cursor:pointer;}
295   -ul#subcategory_menu .subcategory_menu_closed.main .float.dropdown{width:20px;height:12px;float:right;background:url(../images/dropdown_closed.png) 0% 100% no-repeat;cursor:pointer;}
296   -ul#subcategory_menu li ul{border-left:1px solid #e0e0e0;border-right:1px solid #e0e0e0;border-top:0;padding:5px 0 15px 15px;}
297   -ul#subcategory_menu li ul li{padding:10px 0 0 0;}
298   -ul#subcategory_menu li ul li a{font:normal 13px/16px Arial, Tahoma, sans-serif;text-decoration:none;}
299   -ul#subcategory_menu li.subcategory_menu_last_child{padding:0 0 27px 0;background:url(../images/sidebar_shadow.png) 0 100% no-repeat;}
300   -input[type="checkbox"]{display:none;}
301   -input[type="checkbox"] + label span{display:inline-block;vertical-align:middle;width:13px;height:13px;margin:-1px 4px 0 0;background:url(../images/check.png) no-repeat 0 0;cursor:pointer;}
302   -input[type="checkbox"]:checked + label span{background:url(../images/check.png) no-repeat 0 -26px;}
303   -#slider{margin:5px 5px 5px 10px;}
304   -.border_for_slider{border:1px solid #e0e0e0;margin:0 20px 20px 10px;border-radius:11px;-moz-border-radius:11px;-webkit-border-radius:11px;webkit-box-shadow:inset 0 2px 6px 0 #e0e0e0;-moz-box-shadow:inset 0 2px 6px 0 #e0e0e0;box-shadow:inset 0 2px 6px 0 #e0e0e0;}
305   -.ui-widget-header{background:#57af3e !important;}
306   -#slider.ui-widget-content{background:#acacac !important;border:0 !important;}
307   -.ui-slider-horizontal{height:8px !important;}
308   -.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{background:url(../images/state.png) 50% 50% no-repeat !important;border:0 !important;}
309   -.ui-state-focus{border:0 !important;}
310   -.price_slider_container{padding:40px 0 40px 0;border:1px solid #e0e0e0;border-top:0;}
311   -.price_ok,
312   -.alert_button{margin:0 0 0 10px;-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;box-shadow:inset 0px 1px 0px 0px #ffffff;background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));background:-moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);background:-webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);background:-o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);background:-ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);background-color:#f9f9f9;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #dcdcdc;display:inline-block;cursor:pointer;color:#666666;font-weight:bold;padding:6px 8px;text-decoration:none;text-shadow:0px 1px 0px #ffffff;}
313   -.price_ok:hover{background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));background:-moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);background:-webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);background:-o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);background:-ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);background-color:#e9e9e9;}
314   -.price_slider_container label{font:normal 13px/14px Arial, Tahoma, sans-serif;margin:5px 5px 0 7px;}
315   -.price_slider_container input{width:38px;margin:0;padding:5px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;}
316   -.value{position:absolute;top:-30px;left:-70%;padding:3px;text-align:center;display:block;border:1px solid #b7b7b7;font:normal 12px/12px Arial, Tahoma, sans-serif;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;-webkit-box-shadow:0px 0px 5px 0px #b7b7b7;-moz-box-shadow:0px 0px 5px 0px #b7b7b7;box-shadow:0px 0px 5px 0px #b7b7b7;background:#ffffff;background:#ffffff;background:-moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%, #eeeeee 100%, #eeeeee 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee), color-stop(100%,#eeeeee), color-stop(100%,#eeeeee));background:-webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%,#eeeeee 100%,#eeeeee 100%);background:-o-linear-gradient(top, #ffffff 0%,#eeeeee 100%,#eeeeee 100%,#eeeeee 100%);background:-ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%,#eeeeee 100%,#eeeeee 100%);background:linear-gradient(to bottom, #ffffff 0%,#eeeeee 100%,#eeeeee 100%,#eeeeee 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0);}
317   -.range{position:absolute;top:-12px;left:15%;margin:0;width:12px;height:9px;text-align:center;display:block;background:url(../images/price_box.png) 100% 100% no-repeat;}
318   -.price-range-both.value{width:100px;margin:0 0 0 -50px;top:26px;}
319   -.price-range-both{display:none;}
320   -.value i{font-style:normal;}
321   -#content_wrapper .content_wrapper_header{margin:0 0 20px 0;}
322   -#content_wrapper .content_wrapper_header .content_wrapper_header_filters div{font:normal 12px/14px Arial, Tahoma, sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;}
323   -#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a,
324   -#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a:hover{text-decoration:none;padding:0 15px 0 0;background:url(../images/close_filter.png) 100% 50% no-repeat;}
325   -.empty_filters{background:#ffffff !important;}
326   -.empty_filters a{text-decoration:underline!important;color:#417e24!important;padding:0!important;background:#ffffff!important;}
327   -.content_wrapper_header_menu,
328   -.item_menu_header_menu{margin:20px 0 0 0;background:url(../images/line_menu.png) 100% 100% repeat-x;}
329   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .padding_60{padding-left:57px;}
330   -.tabs{margin:0 15px 0 0;padding:0 0 0 20px;}
331   -.tabs ul{}
332   -.tabs ul li{padding:8px 20px 8px 20px;height:14px;border:2px solid transparent;border-bottom:2px solid #c4c4c4;}
333   -.tabs ul li.not_active{height:14px;}
334   -.tabs ul li.last_tab.not_active,
335   -.tabs ul li.previous{}
336   -.tabs ul li a{font:bold 13px/14px Arial, Tahoma, sans-serif;padding:0;text-decoration:none;}
337   -.tabs ul li.active_tab{border:2px solid #c4c4c4;border-bottom:2px solid #ffffff;border-radius:5px 5px 0px 0px;-moz-border-radius:5px 5px 0px 0px;-webkit-border-radius:5px 5px 0px 0px;background:#ffffff!important;color:#464646 !important;}
338   -.tabs ul li.active_tab a{color:#464646 !important;}
339   -.tabs ul li.tabs_new_items{background:#b12b2c;border-radius:5px 5px 0px 0px;-moz-border-radius:5px 5px 0px 0px;-webkit-border-radius:5px 5px 0px 0px;margin:0 1px;}
340   -.tabs ul li.tabs_top_items{background:#f36c00;border-radius:5px 5px 0px 0px;-moz-border-radius:5px 5px 0px 0px;-webkit-border-radius:5px 5px 0px 0px;}
341   -.tabs ul li.tabs_all_items{background:#4fa32c;border-radius:5px 5px 0px 0px;-moz-border-radius:5px 5px 0px 0px;-webkit-border-radius:5px 5px 0px 0px;}
342   -.tabs ul li.tabs_all_items a,
343   -.tabs ul li.tabs_new_items a,
344   -.tabs ul li.tabs_top_items a{color:#ffffff;}
345   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs,
346   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists{margin:10px 20px 0 0;cursor:pointer;}
347   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs{background:url(../images/thumbs.png) 100% 50% no-repeat;width:11px;height:11px;}
348   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs.active,
349   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs:hover{background:url(../images/thumbs_active.png) 100% 50% no-repeat;width:11px;height:11px;}
350   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists{background:url(../images/lists.png) 100% 50% no-repeat;width:11px;height:11px;}
351   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists.active,
352   -#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists:hover{background:url(../images/lists_active.png) 100% 50% no-repeat;width:11px;height:11px;}
353   -.sort_price{margin:10px 10px 0 0;}
354   -.sort_price a{color:#417e24;}
355   -.sort_price.last{padding:0 15px 0 0;background:url(../images/sort_arrow.png) 100% 50% no-repeat;position:relative;}
356   -.sort_price.last .sort_price_dropdown{position:absolute;border:1px solid #e0e0e0;z-index:45;background:#fff;font-size:12px;margin:3px 0 0 0;padding:2px;top:13px;left:3px;width:140px;}
357   -.sort_price.last .sort_price_dropdown a{text-decoration:none;padding:0 0 2px 0;}
358   -.sort_price.last .sort_price_dropdown a:hover{color:#f58025;}
359   -.paginate{margin:0px auto 0px auto;display:table;list-style:none;}
360   -.paginate ul{margin:20px 0 20px 0px;}
361   -.paginate li{float:left;}
362   -.paginate ul li a{text-decoration:none;font:bold 20px/24px Arial, Tahoma, sans-serif;color:#4fa32c;padding:0 10px 0 10px;}
363   -.paginate ul li a.current{text-decoration:none;font:bold 16px/24px Arial, Tahoma, sans-serif;color:#707070;}
364   -.item_menu_shadow{background:#ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;padding:20px 0 0 0;width:946px;height:27px;}
365   -.item .breadcrumbs ul{padding:5px 0 20px 0;}
366   -.item .item_wrapper .item_images{width:400px;margin:20px 20px 20px 0;}
367   -.item .item_wrapper .item_images .width_400{margin:0 0 10px 0;position:relative;}
368   -.item .item_wrapper .item_images .width_400 .previous_image{position:absolute;background:url(../images/main_photo_arrow_left.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;left:5px;}
369   -.item .item_wrapper .item_images .width_400 .next_image{position:absolute;background:url(../images/main_photo_arrow_right.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;left:34px;}
370   -.item .item_wrapper .item_images .width_400 .zoom_image{position:absolute;background:url(../images/zoom.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;right:5px;}
371   -.item .item_wrapper .item_images .width_128{margin:0 5px 0 0;border:1px solid #e0e0e0;height:130px;}
372   -.item .item_wrapper .item_content{width:520px;margin:20px 0 20px 0;}
373   -.item .item_wrapper .item_content .item_title{margin:5px 0 5px 0;}
374   -.item .item_wrapper .item_content .item_decription{font:normal 13px/16px Arial, Tahoma, sans-serif;margin:0 0 20px 0;}
375   -.item .item_wrapper .item_content .properties{font:normal 14px/16px Arial, Tahoma, sans-serif;margin:5px 0 10px 0;min-width:100px;}
376   -.item .item_wrapper .item_content .properties_article{font:bold 14px/16px Arial, Tahoma, sans-serif;}
377   -.item .item_wrapper .item_content .properties_producer a{color:#f36d00;}
378   -.item .item_wrapper .item_content .properties_presence{color:#417e24;}
379   -.item .item_wrapper .item_content .properties_absent{font-weight:bold;color:#ae2328;}
380   -.item .item_wrapper .item_content .minus{background:url(../images/minus.png) 0 100% no-repeat;width:12px;height:15px;padding:0 5px 0 0;cursor:pointer;}
381   -.item .item_wrapper .item_content .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px;cursor:pointer;}
382   -.item .item_wrapper .item_content .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:normal 15px/16px Arial, Tahoma, sans-serif;color:#464646;}
383   -.item .item_wrapper .item_content .colors{margin:10px 0 0 0;}
384   -.item .item_wrapper .item_content .packing{min-height:60px;position:relative;}
385   -.item .item_wrapper .item_content .packing .properties{position:absolute;bottom:0;margin-bottom:0;}
386   -.item .item_wrapper .item_content .packing_images{position:absolute;bottom:0;left:100px;}
387   -.item .item_wrapper .item_content .packing_images .group_sizes,
388   -.group_sizes, .table_cell4 .group_sizes, .basket_element_prepack .group_sizes{min-height:35px;min-width:31px;border:1px solid #e0e0e0;margin:0 10px 0 0;position:relative;display:inline-block;}
389   -.item .item_wrapper .item_content .packing_images .group_sizes:hover,
390   -.item .item_wrapper .item_content .packing_images .group_sizes.active,
391   -.group_sizes:hover,
392   -.group_sizes.active, .table_cell4 .group_sizes.active{border:1px solid #4fa32c;}
393   -.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover{border:1px solid #e0e0e0;}
394   -.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_header,
395   -.group_sizes .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack.png) 50% 0 no-repeat;}
396   -.item .item_wrapper .item_content .packing_images .group_sizes:hover .group_sizes_header,
397   -.item .item_wrapper .item_content .packing_images .group_sizes.active .group_sizes_header,
398   -.group_sizes:hover .group_sizes_header,
399   -.group_sizes.active .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack_hover.png) 50% 0 no-repeat;}
400   -.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover .group_sizes_header{background:url(../images/pack.png) 50% 0 no-repeat;}
401   -.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_content,
402   -.group_sizes .group_sizes_content{position:absolute;bottom:0;width:100%;text-align:center;font-size:11px;white-space:pre-line;line-height:11px;overflow:hidden;}
403   -.item .item_wrapper .item_content .buy_compare{min-height:60px;width:100%;background:#f5f5f5;margin:15px 0;}
404   -.item .item_wrapper .item_content .buy_compare .one_item_price{font:normal 13px/15px Arial, Tahoma, sans-serif;color:#f58025;margin:18px 0 0 20px;}
405   -.item .item_wrapper .item_content .buy_compare .one_item_price span{font:bold 20px/22px Arial, Tahoma, sans-serif;}
406   -.item .item_wrapper .item_content .buy_compare .one_item_buttons{width:80px;margin:18px 0 0 20px;}
407   -.item .item_wrapper .item_content .buy_compare .btn{text-decoration:none;font-size:12px;padding:5px 4px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px;}
408   -.green:hover,
409   -.btv:hover{text-decoration:none !important;}
410   -.item .item_wrapper .item_content .buy_compare .green{color:#ffffff;background:#4fa32c;border:1px solid #4fa32c;margin:0;text-align:center;}
411   -.grey{text-decoration:none;font-family:calibri;font-size:14px;color:#474747;padding:5px 8px 6px 7px;border-top:1px solid #eaeaea;border-bottom:1px solid #a3a3a3;border-left:1px solid #d7d7d7;border-right:1px solid #c3c3c3;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec')";background-image:-moz-linear-gradient(top, #ffffff, #ececec);background-image:-ms-linear-gradient(top, #ffffff, #ececec);background-image:-o-linear-gradient(top, #ffffff, #ececec);background-image:-webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ececec));background-image:-webkit-linear-gradient(top, #ffffff, #ececec);background-image:linear-gradient(top, #ffffff, #ececec);-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}
412   -.items .one_item .one_item_buttons .btn, .compare_items .compare_items_table table th .btn{display:inline;margin:3px;}
413   -.green:hover{color:#ffffff;}
414   -.item .item_wrapper .item_content .buy_compare .one_item_compare{margin:24px 0 0 20px;}
415   -.item .item_wrapper .item_content .buy_compare .one_item_compare label{text-decoration:underline;cursor:pointer;}
416   -.item .item_wrapper .item_content .features{margin:0 0 20px 0;min-height:30px;}
417   -.item .item_wrapper .item_content .features a{margin:0 5px 0 0;color:#417e24;}
418   -.item .item_wrapper .item_content .item_menu_content{margin:20px 0;font:normal 13px/16px Arial, Tahoma, sans-serif;}
419   -.item .item_wrapper .item_content .item_menu_content .tabs_properties p.key_value{min-width:150px;}
420   -.item .item_wrapper .item_content .item_menu_content .item_menu_content_wrapper div{margin:0 0 10px 0;}
421   -.item .one_item{min-height:410px;}
422   -.item .other_items{min-height:510px;}
423   -#content_subnav{position:absolute;top:165px;border:2px solid #67b73e;padding:0 20px;background:#f5f5f5;z-index:999;width:915px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0px 1px 10px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 1px 10px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 1px 10px 0px rgba(50, 50, 50, 0.75);}
424   -#content_subnav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0 0;}
425   -#content_subnav .content_nav_first_floor{padding:20px 0 15px 0;margin:0 0 20px 0;border-bottom:1px solid #cdcdcd;}
426   -#content_subnav .content_nav_first_floor .content_nav_logo{padding:0 40px 0 0;width:150px;}
427   -#content_subnav .content_nav_logo a{text-decoration:none;}
428   -#content_subnav .content_nav_first_floor .content_nav_items{text-align:justify;column-count:4;-moz-column-count:4;-webkit-column-count:4;column-gap:40px;-moz-column-gap:40px;-webkit-column-gap:40px;column-width:150px;-moz-column-width:150px;-webkit-column-width:150px;min-height:150px;}
429   -#content_subnav .content_nav_first_floor .content_nav_items a,
430   -.content_nav_items a{font-size:13px;line-height:21px;font-style:italic;}
431   -.content_nav_second_floor .float{padding:0 40px 20px 0;width:150px;}
432   -.shadow_to_top{background:url(../images/shadow.png) no-repeat center center;height:22px;text-align:center;overflow:hidden;}
433   -.order_wrapper{margin:0 0 65px 0;}
434   -.order_menu_shadow{background:#ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;padding:20px 0 0 0;width:946px;height:27px;}
435   -.order .breadcrumbs ul{padding:5px 0 20px 0;}
436   -.order .order_form .order_title{margin:20px 0 0 0;}
437   -.order .order_form h1,
438   -.order .contacts_form h1{font:bold 20px/24px Arial, Tahoma, sans-serif;}
439   -.order .order_form ul li.main_li{border-top:1px solid #cdcdcd;padding:15px 0 10px 0;margin:10px 0 0 0;}
440   -.order .order_form ul li.main_li:first-child{border-top:0;padding:0;margin:10px 0 0 0;}
441   -.order .order_form ul li.order_form_header li,
442   -.order .order_form ul li.order_last{font:bold 14px/18px Arial, Tahoma, sans-serif;color:#676767;}
443   -.order .order_form ul li.order_form_header ul li.order_first_column,
444   -.order .order_form ul li.order_form_content ul li.order_first_column{width:380px;padding:0 0 0 20px;}
445   -.order .order_form ul li.order_form_header ul li.order_second_column,
446   -.order .order_form ul li.order_form_content ul li.order_second_column{width:220px;text-align:center;}
447   -.order .order_form ul li.order_form_header ul li.order_third_column,
448   -.order .order_form ul li.order_form_content ul li.order_third_column{width:100px;margin:0 0 0 65px;}
449   -.order .order_form ul li.order_form_header ul li.order_fourth_column,
450   -.order .order_form ul li.order_form_content ul li.order_fourth_column{width:100px;margin:0 0 0 45px;}
451   -.order .order_form ul li.order_form_header ul li.order_fifth_column,
452   -.order .order_form ul li.order_form_content ul li.order_fifth_column{margin:0;}
453   -.order .order_form ul li.order_form_content ul li.order_second_column,
454   -.order .order_form ul li.order_form_content ul li.order_fourth_column,
455   -.order .order_form ul li.order_form_content ul li.order_fifth_column{margin-top:35px;}
456   -.order .order_form ul li.order_form_content ul li.order_third_column{margin-top:33px;}
457   -.order .order_form ul li.order_last{background:#f5f5f5;text-align:right;padding:15px 75px 15px 0;margin:5px 0 40px 0;}
458   -.order .order_form ul li ul li img.order_img{-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);margin:0 20px 0 0;}
459   -.order .order_form ul li ul li h2{font:bold 14px/18px Arial, Tahoma, sans-serif;margin:20px 0 4px 100px;width:70%;}
460   -.order .order_form ul li ul li p{margin:0 0 0 100px;}
461   -.order .order_form ul li span{color:#f58025;}
462   -.order .order_form ul li span.price{font:bold 18px/18px Arial, Tahoma, sans-serif;}
463   -.order .order_form ul li ul li .minus{background:url(../images/minus.png) 50% 48% no-repeat;width:12px;height:15px;padding:7px;}
464   -.order .order_form ul li ul li .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px;}
465   -.order .order_form ul li ul li .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:normal 15px/16px Arial, Tahoma, sans-serif;color:#464646;}
466   -#order_add_ua .contacts_form ul.form,
467   -#order_add_ru .contacts_form ul.form,
468   -ul.form{margin:30px 0 0 0;font:bold 13px/18px Arial, Tahoma, sans-serif;}
469   -#order_add_ua .contacts_form ul.form li,
470   -#order_add_ru .contacts_form ul.form li,
471   -ul.form li{margin:0 0 10px 0;}
472   -.order .contacts_form .label,
473   -ul.form li .label{width:210px;text-align:right;margin:7px 10px 0 0;}
474   -.order .contacts_form .input,
475   -ul.form li .input{width:720px;font-weight:normal;}
476   -.order .contacts_form .label span.required,
477   -ul.form li .label span.required{font:normal 10px/14px Arial, Tahoma, sans-serif;color:#f58025;vertical-align:text-top;}
478   -.order .contacts_form .input input[type='text'],
479   -ul.form li .input input[type='text'],
480   -ul.form li .input input[type='password'],
481   -.order .contacts_form .input textarea,
482   -ul.form li .input textarea{width:280px;margin:0;padding:6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:normal 15px/16px Arial, Tahoma, sans-serif;color:#464646;}
483   -ul.form li .input select{margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:normal 15px/16px Arial, Tahoma, sans-serif;color:#464646;background:#ffffff;}
484   -.order ul.form li .input select{width:295px;}
485   -.order .contacts_form .input textarea,
486   -section #content .contacts_form .input textarea{max-width:720px;width:720px;min-height:120px;}
487   -.order .contacts_form li.with_radio_buttons .input{font:normal 13px/14px Arial, Tahoma, sans-serif;}
488   -.order .contacts_form li.with_radio_buttons label{margin:0 10px 0 0;}
489   -.order .contacts_form .input .input_radio{margin:0 0 10px 0;}
490   -.order .contacts_form .input input[type='radio']{margin:0 5px 0 0;}
491   -.order .contacts_form .input .description{margin:5px 0 15px 0;}
492   -.order .contacts_form .input .description label{font-weight:normal;font:italic 12px/14px Arial, Tahoma, sans-serif;text-decoration:underline;}
493   -.order .contacts_form .with_radio_buttons .input{margin:10px 0 0 0;}
494   -.order .contacts_form .with_radio_buttons .input .description,
495   -.order .contacts_form .owner_city .input .description{background:#f5f5f5;padding:15px 0 20px 15px;margin:0 0 15px 0;line-height:16px;}
496   -.order .contacts_form .with_textarea .input .description{font:italic 12px/14px Arial, Tahoma, sans-serif;}
497   -.ui-widget-content{position:absolute;background:#f5f5f5 !important;}
498   -.ui-widget-content li{margin:0!important;padding:5px!important;width:95%;cursor:pointer;}
499   -.ui-widget-content li:hover{background:#acacac!important;margin:0!important;width:97%;padding:5px!important;}
500   -.owner_city,
501   -.store_address{position:relative;}
502   -#loading_city,
503   -#loading_office{background:url(../images/loadinfo.gif) no-repeat 0 0;height:24px;width:24px;margin:4px 0 0 485px;position:absolute;}
504   -.ui-menu .ui-menu-item a,
505   -.ui-menu .ui-menu-item a:hover{text-decoration:none;display:block;padding:2px!important;font:normal 14px/16px Arial, Tahoma, sans-serif!important;}
506   -.order div.registrated_customer{min-height:200px;}
507   -.order div.registrated_customer .btn{margin:20px 50px 0 0;padding:5px 20px;}
508   -.order div.registrated_customer a{margin:25px 50px 0 0;}
509   -.order div.registrated_customer .do_registration,
510   -.do_registration{margin:20px 50px 0 0;color:#4fa32c;}
511   -.order div.registrated_customer .do_registration:hover,
512   -.do_registration:hover{color:#f58025;}
513   -.order div.registrated_customer .label{width:250px;}
514   -.order div.registrated_customer .input{width:200px;}
515   -.order div.registrated_customer .input input{width:190px;}
516   -.order .login_with_email{width:63%;margin:20px 40px 20px 0;border-right:1px solid #e2e2e2;padding:20px 0;}
517   -.order .login_with_email .form{margin:0;}
518   -.order .login_with_social{width:25%;margin:20px 0 20px 0;padding:20px 0;}
519   -.order .login_with_social .login_with_social_wrapper{margin:0 auto;width:116px;}
520   -.order .login_with_social .login_with_social_wrapper a{margin:0 10px 0 0;}
521   -.order .login_with_social_title{font:bold 13px/18px Arial, Tahoma, sans-serif;margin:0 0 20px 0;}
522   -input[type="radio"]{display:none;}
523   -input[type="radio"] + label span{display:inline-block;margin:-1px 4px 0 0;cursor:pointer;background:url(../images/radio.png) no-repeat 0 -24px;width:12px;height:12px;}
524   -input[type="radio"]:checked + label span{background:url(../images/radio.png) no-repeat 0 0;}
525   -.order .btn, .contacts_form .btn{width:auto;float:right;font-weight:bold;cursor:pointer;}
526   -.image_400{max-height:400px;max-width:400px;}
527   -.image_128{max-height:128px;max-width:128px;}
528   -.width_128{width:128px;text-align:center;}
529   -.width_400{width:400px;text-align:center;}
530   -.static_page{margin-bottom:60px;}
531   -.static_page_wrapper{min-height:200px;margin:30px 0 0 0;font:normal 14px/20px Arial, Tahoma, sans-serif;}
532   -.static_page h2{text-align:center;margin:0 0 20px 0;}
533   -.static_page a{display:inline;}
534   -.alert_button{width:auto;margin:10px 10px 10px 0;padding:7px 20px;}
535   -.dialogue{font:normal 14px/16px Arial, Tahoma, sans-serif;padding:20px 0 10px 10px;min-width:350px;}
536   -.dialogue_message{font:normal 14px/16px Arial, Tahoma, sans-serif;}
537   -input.error, textarea.error{border:1px solid #aaa !important;background-color:#ffffe0 !important;}
538   -label.error{color:#c00;font-weight:normal !important;display:block;}
539   -#execute{margin:30px 0 0 0;}
540   -.static_page .breadcrumbs ul,
541   -.cabinet .breadcrumbs ul,
542   -.news .breadcrumbs ul,
543   -.search .breadcrumbs ul{padding:5px 0 20px 0;}
544   -.news_wrapper{margin:20px 0 65px 0;min-height:100px;}
545   -.item .news_wrapper{min-height:100px;padding:20px 0 20px 0;border-top:2px solid #55a727;}
546   -.news_wrapper .one_news{width:470px;margin:10px 20px 10px 0;}
547   -.news_wrapper .one_news .one_news_img{width:180px;margin:0 10px 0 0;}
548   -.news_wrapper .one_news .one_news_content{width:260px;margin:0 10px 0 0;position:relative;height:120px;}
549   -.news_wrapper .one_news .one_news_content.full_width{width:95%;margin:0 10px 0 0;position:relative;height:120px;}
550   -.news_wrapper .one_news .one_news_content a{text-decoration:none;}
551   -.news_wrapper .one_news .one_news_content h2{font:bold 15px/18px Arial, Tahoma, sans-serif;}
552   -.news_wrapper .one_news .one_news_content p{font:normal 13px/18px Arial, Tahoma, sans-serif;margin:10px 0 0 0;}
553   -.news_wrapper .one_news .one_news_content a.news_more{position:absolute;right:0;bottom:0;text-decoration:underline;color:#4fa32c;}
554   -.news_wrapper .one_news .one_news_content a.news_more:hover{color:#f58025;}
555   -.news_img_holder{width:400px;margin:0 40px 30px 0;float:left;}
556   -.news_img_holder a.news_cover{margin:0 0 40px 0;}
557   -.news_img_holder a.news_photogallery{margin:0 40px 40px 0;}
558   -.news_content{}
559   -.news_content a{display:inline;}
560   -.news_content strong{font-weight:bold;}
561   -.news_content h2{font:bold 20px/24px Arial, Tahoma, sans-serif;}
562   -.news_content p{font:normal 13px/18px Arial, Tahoma, sans-serif;margin:10px 0 0 0;}
563   -.news_content .news2groups{margin:20px 0 0 0;}
564   -.news_content .news2groups div{font:normal 12px/14px Arial, Tahoma, sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;}
565   -.news_content .news2groups div a{text-decoration:none;}
566   -.successMessage,
567   -.errorMessage,
568   -.noticeMessage{padding:15px 20px;margin:10px 0 20px 0;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;color:#ffffff;font-size:14px;display:block;}
569   -.successMessage a,
570   -.errorMessage a,
571   -.noticeMessage a{color:#ffffff;display:inline;}
572   -.successMessage{background:url('../images/flash_success.png') repeat scroll 50% 50% #2c85ad;}
573   -.noticeMessage,
574   -.admin_review{background:url('../images/flash_notice.png') repeat scroll 50% 50% #f6b03d;}
575   -.errorMessage{background:url('../images/flash_error.png') repeat scroll 50% 50% #be2e17;}
576   -.message_holder{width:960px;height:190px;display:block;position:relative;margin:0 auto;padding:0;}
577   -.message_holder_empty{width:960px;height:140px;display:block;position:relative;margin:0 auto;padding:0;}
578   -.cabinet,
579   -.cabinet_login{margin-bottom:65px;}
580   -.cabinet .sidebar_content_wrapper,
581   -.cabinet_login .sidebar_content_wrapper{margin:20px 0 20px 0;}
582   -.cabinet #sidebar .subcategory_sidebar_title h3,
583   -.cabinet_login #sidebar .subcategory_sidebar_title h3{margin:0 0 15px 0;}
584   -.cabinet #sidebar .subcategory_sidebar_title p,
585   -.cabinet_login #sidebar .subcategory_sidebar_title p{font:italic 13px/15px Arial, Tahoma, sans-serif;text-decoration:underline;color:#f36d00;}
586   -.cabinet #sidebar .subcategory_sidebar_title a,
587   -.cabinet_login #sidebar .subcategory_sidebar_title a{font:italic 13px/15px Arial, Tahoma, sans-serif;text-decoration:underline;color:#4a4a4a;margin:0 0 5px 0;}
588   -.cabinet #sidebar .subcategory_sidebar_title a:hover,
589   -.cabinet_login #sidebar .subcategory_sidebar_title a:hover,
590   -.cabinet #sidebar .subcategory_sidebar_title a.active,
591   -.cabinet_login #sidebar .subcategory_sidebar_title a.active{color:#f36d00;}
592   -.cabinet #sidebar ul,
593   -.cabinet_login #sidebar ul{margin:10px 0 10px 15px;display:none;}
594   -.cabinet #content_wrapper .form,
595   -.cabinet_login #content_wrapper .form{margin:0;}
596   -.cabinet #content_wrapper,
597   -.cabinet_login #content_wrapper{margin:0 0 0 100px;width:700px;}
598   -.cabinet_login #content_wrapper .login_with_social,
599   -.cabinet_login #content_wrapper .login_with_email{padding:40px 40px 0 0;}
600   -.cabinet_login #content_wrapper .login_with_email{margin:0 40px 0 0;border-right:1px solid #e2e2e2;width:57%;}
601   -.cabinet_login #content_wrapper .login_with_social{width:30%;margin:0 40px 0 0;}
602   -.cabinet_login #content_wrapper .login_with_social_title{font:bold 13px/18px Arial, Tahoma, sans-serif;margin:0 0 20px 0;}
603   -.cabinet #content_wrapper .subcategory_content_wrapper_title h3,
604   -.cabinet_login #content_wrapper .subcategory_content_wrapper_title h3{font:bold 16px/18px Arial, Tahoma, sans-serif;color:#4a4a4a;}
605   -.cabinet_login #content_wrapper .login_with_social_wrapper{margin:0 auto;width:116px;}
606   -.cabinet_login #content_wrapper .login_with_social_wrapper a{margin:0 10px 0 0;}
607   -.cabinet #content_wrapper .form{margin:30px 0 0 30px;}
608   -.cabinet_login #content_wrapper .form .input{width:250px;}
609   -.cabinet #content_wrapper .form .input{width:250px;}
610   -.cabinet_login #content_wrapper .form .input input{width:240px;}
611   -.cabinet #content_wrapper .form .input input{width:240px;}
612   -.cabinet_login #content_wrapper .form li .label{width:135px;text-align:right;margin:7px 10px 0 0;}
613   -.cabinet #content_wrapper .form li .label{width:135px;text-align:right;margin:7px 10px 0 0;}
614   -.cabinet #content_wrapper .btn,
615   -.cabinet_login #content_wrapper .btn{width:auto;float:right;font-weight:bold;cursor:pointer;margin:20px 0 0 0;padding:5px 20px;}
616   -.cabinet .submit{margin:0 270px 0 0;}
617   -.cabinet .submit a.change_passwd{margin:20px 0 40px 0;}
618   -.submit a{margin:25px 30px 0 0;}
619   -.submit a.change_passwd{margin:40px 0 40px 0;color:#4fa32c;}
620   -.submit a.change_passwd:hover{color:#f58025;}
621   -.submit a.do_registration{margin:25px 0 0 0;}
622   -.my_order_items{margin:40px 0 0 0;padding:0 0 20px 0;border-bottom:1px solid #e2e2e2;}
623   -#content_wrapper .order_number{font:normal 14px/18px Arial, Tahoma, sans-serif;margin:10px 0;}
624   -.my_order_item{margin:0 30px 0 0;min-height:200px;}
625   -.my_order_item .my_order_item_image{float:left;}
626   -.my_order_item .my_order_item_image img{-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);}
627   -.my_order_item .my_order_item_content{margin:0 0 0 90px;width:200px;}
628   -.my_order_item .my_order_item_content h2{font:bold 15px/18px Arial, Tahoma, sans-serif;margin:0 0 5px 0;}
629   -.my_order_item .my_order_item_content h2 a{text-decoration:none;}
630   -.my_order_item .my_order_item_content .my_order_item_price{margin:10px 0 10px 0;}
631   -.my_order_item .my_order_item_content .my_order_item_count,
632   -.my_order_item .my_order_item_content .my_order_item_count_total{font:bold 13px/15px Arial, Tahoma, sans-serif;color:#7d7d7d;}
633   -.my_order_item .my_order_item_content .price{font:normal 20px/22px Arial, Tahoma, sans-serif;}
634   -.my_order_item .my_order_item_content span{color:#f58025;}
635   -.my_order_items_description .my_order_total{font:bold 14px/16px Arial, Tahoma, sans-serif;margin:20px 0 10px 0;}
636   -.my_order_items_description .my_order_total span{color:#f58025;}
637   -.my_order_items_description .my_order_total .price{color:#f58025;font:normal 20px/22px Arial, Tahoma, sans-serif;}
638   -.my_order_items_description .my_order_delivery,
639   -.my_order_items_description .my_order_status{font:normal 14px/16px Arial, Tahoma, sans-serif;margin:0 0 5px 0;}
640   -.my_order_items_description .my_order_delivery span,
641   -.my_order_items_description .my_order_status span{font:bold 14px/16px Arial, Tahoma, sans-serif;color:#4fa32c;}
642   -.callback_form{margin:20px 0 0 20px;}
643   -.callback_form form{margin:20px 0 0 100px;}
644   -.callback_form ul.form li .input{width:60%;font-weight:normal;}
645   -.callback_form ul.form li .input input{width:100%;}
646   -.callback_form ul.form li .input textarea{width:100%;height:120px;}
647   -.callback_form ul.form li .label{width:30%;font-weight:bold;margin:0 10px 0 0;}
648   -.callback_form ul.form li.with_textarea{margin:15px 0 0 0;}
649   -.callback_form .submit{margin:0 50px 0 0;}
650   -.callback_form .submit input{width:auto;}
651   -.contacts_wrapper{min-height:300px;font:normal 13px/16px Arial, Tahoma, sans-serif;color:#616161;}
652   -.contacts_wrapper h2{margin:20px 0;font:bold 20px/24px Arial, Tahoma, sans-serif;}
653   -.contacts_wrapper_map{min-height:300px;width:465px;margin:0 30px 0 0;}
654   -.contacts_wrapper_map .map_description{min-height:165px;}
655   -.contacts_wrapper_map .map_description .map_description_name{font-weight:bold;}
656   -.contacts_wrapper_map .map{height:300px;margin:20px 0;}
657   -.contacts_wrapper .contacts_email_address{margin:40px 0 0 0;}
658   -.contacts_wrapper .contacts_email_address_name{margin:10px 0;font:bold 14px/24px Arial, Tahoma, sans-serif;}
659   -.contacts_wrapper .contacts_list{width:100%;margin:0 0 100px 0;}
660   -.contacts_wrapper .contacts_list tr{border-bottom:1px solid #cdcdcd;}
661   -.contacts_wrapper .contacts_list tr th{color:#7d7d7d;font:bold 13px/16px Arial, Tahoma, sans-serif;padding:15px;background:#F5F5F5;}
662   -.contacts_wrapper .contacts_list tr td{color:#616161;padding:15px;}
663   -.contacts_wrapper .contacts_list tr td.contacts_list_phone{width:90px;}
664   -tr.even{background-color:#f1f1f1;}
665   -tr.odd{background-color:#f9f9f9;}
666   -.compare_items{margin:0 0 65px 0;}
667   -.compare_items h2{font:bold 20px/24px Arial, Tahoma, sans-serif;margin:30px 0;}
668   -.compare_items .compare_items_table{overflow-x:auto;}
669   -.compare_items .compare_items_table table th{text-align:center;}
670   -.compare_items .compare_items_table table th .compare_one_item{position:relative;min-height:265px;min-width:155px;max-width:160px;margin:0 0 20px 0;}
671   -.compare_items .compare_items_table table td{text-align:center;width:160px;margin:0 20px 0 0;padding:15px 10px;font:normal 13px/16px Arial, Tahoma, sans-serif;}
672   -.compare_items .compare_items_table table td.compare_item_property_name{font:bold 13px/16px Arial, Tahoma, sans-serif;}
673   -.compare_items .compare_items_table table th .compare_item_image img{-webkit-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);-moz-box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);box-shadow:0px 0px 5px 0px rgba(50, 50, 50, 0.75);margin:10px 0 20px 0;}
674   -.compare_items .compare_items_table table th .compare_item_delete a{background:url(../images/compare_item_del.jpg) no-repeat 0 0;width:17px;height:17px;margin:0 auto;}
675   -.compare_items .compare_items_table table th .compare_item_delete a:hover{background:url(../images/compare_item_del_hover.jpg) no-repeat 0 0;width:17px;height:17px;margin:0 auto;}
676   -.compare_items .compare_items_table table th .compare_item_title a{font:bold 16px/18px Arial, Tahoma, sans-serif;color:#464646;text-decoration:none;}
677   -.compare_items .compare_items_table table th .compare_item_price{font:normal 13px/15px Arial, Tahoma, sans-serif;color:#f58025;margin:0 0 10px 0;}
678   -.compare_items .compare_items_table table th .compare_item_price span{font:bold 20px/22px Arial, Tahoma, sans-serif;color:#f58025;}
679   -.partners{margin-bottom:60px;}
680   -.partners h2{font:bold 20px/24px Arial, Tahoma, sans-serif;margin:30px 0;}
681   -.partners p.partners_name_title_internet_shops,
682   -.partners p.partners_name_title_dillers{font:bold 16px/24px Arial, Tahoma, sans-serif;}
683   -.partners p.partners_name_title_dillers{margin:30px 0 0 0;}
684   -.partners ul.internet_shops_list{margin:0 0 0 20px;font:normal 13px/20px Arial, Tahoma, sans-serif;}
685   -.partners table tr{border-bottom:1px solid #cdcdcd;}
686   -.partners table tr.dillers_district{border-bottom:0;}
687   -.partners table tr th{color:#7d7d7d;font:bold 13px/16px Arial, Tahoma, sans-serif;padding:15px;}
688   -.partners table tr.dillers_district td{background:#F5F5F5;text-transform:uppercase;font:bold 13px/16px Arial, Tahoma, sans-serif;}
689   -.partners table tr td{color:#616161;padding:15px;}
690   -.error_404 .error_404_wrapper{width:540px;margin:100px auto;}
691   -.error_404 .error_404_wrapper .error_404_wrapper_text{width:230px;margin:40px auto;text-align:center;}
692   -.error_404 .error_404_wrapper .error_404_wrapper_text a{font-style:italic;}
693   -#profiler{opacity:0.90;filter:alpha(opacity=90);background-color:#DEDEDE;background:-moz-linear-gradient(-90deg, #E8E8E8, #CBCBCB) repeat scroll 0 0 #DEDEDE;color:#333333;font:normal 12px/12px Georgia,Verdana,Arial,sans-serif;letter-spacing:normal;text-shadow:0 1px 0 rgba(255, 255, 255, 0.8);margin:0;padding:5px 15px;width:auto;position:fixed;bottom:0;right:0;text-align:right;z-index:99999;}
694   -#profiler .warning{color:#cc0000;}
695   -#profiler .profiler-sql-show{text-decoration:underline;cursor:pointer;}
696   -#profiler-sql{display:none;text-align:left;margin:20px 0 0 0;padding:0;overflow-x:hidden;overflow-y:auto;max-height:500px;}
697   -#profiler-sql .profiler-sql-item{margin:0 0 15px 0;padding:0;}
698   -#profiler-sql .profiler-sql-item .num{float:left;width:20px;margin:0;padding:0;font-weight:bold;}
699   -#profiler-sql .profiler-sql-item .query{float:left;width:750px;margin:0;padding:0 10px 0 0;font:normal 10px/14px Monospace,'Courier New',sans-serif;}
700   -#profiler-sql .profiler-sql-item .time{float:right;text-align:right;width:90px;margin:0;padding:0 10px 0 0;font-weight:bold;}
701   -.seo-h1{display:inline-block;width:240px;margin-bottom:10px;line-height:30px;font:bold 16px/18px Arial, Tahoma, sans-serif;color:#4fa32c;}
702   -#hypercomments_widget .hc .hc_menu{font-size:14px !important;}
703   -.item_name_h1{line-height:25px;}
704   -.nav_menu_main li:first-child{border-radius:5px 0px 0px 5px;-moz-border-radius:5px 0px 0px 5px;-webkit-border-radius:5px 0px 0px 5px;}
705   -.nav_menu_main li:last-child{border-radius:0px 5px 5px 0px;-moz-border-radius:0px 5px 5px 0px;-webkit-border-radius:0px 5px 5px 0px;}
706   -.static_page_wrapper strong{font-weight:bold;}
707   -.video_play{position:absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);}
708   -.one_news_img{position:relative;}
709   -.one_post{position:relative;}
710   -.partners_dealers{margin-top:25px;}
711   -.question_mark{background:url(../images/question.png) no-repeat;background-size:cover;width:18px;height:18px;position:absolute;top:-3px;right:-25px;}
712   -.new_customer .input_radio{position:relative;display:inline-block;}
713   -.new_customer .input_radio .additional_info{background-color:#ffffff;border:1px solid #c6c6c6;border-radius:5px;right:-240px;position:absolute;top:-180px;width:400px;padding:10px;z-index:2;display:none;box-shadow:1px 1px 3px;}
714   -.new_customer .input_radio .additional_info:hover{display:block;}
715   -#delivery_in_ukraine{color:#a8a8a8;}
716   -.no_marge{margin-top:0px !important;}
717   -.string_data{font-style:italic;font-weight:normal;}
718   -ul.prof_rubrics{list-style:none;margin-bottom:20px;padding:0px;}
719   -ul.prof_rubrics li{float:left;}
720   -ul.prof_rubrics li a{float:left;color:#63ad3e;padding:10px;}
721   -ul.prof_rubrics li a.active{color:#ffffff;background:#4fa22c;border-radius:5px;text-decoration:none;}
722   -.min_price_message{font-size:16px;color:red !important;float:left;margin-left:20px;}
723   -.popup_window_content .min_price_message{font-size:14px;color:red !important;float:left;}
724   -.email-settings_title{width:100%;float:left;margin-top:15px;margin-bottom:40px;}
725   -.email-settings_title:first-child{margin-top:0;}
726   -.email-settings_title h3{font:bold 16px/18px Arial, Tahoma, sans-serif;color:#4a4a4a;}
727   -.blocks-otstup{height:40px;}
728   -.ios{float:left;}
729   -.blocks-p a{float:left;height:26px;line-height:26px;text-decoration:none;margin-left:10px;color:#464646;font-family:Tahoma;font-size:14px;}
730   -.blocks-p{width:320px;float:left;margin-top:15px;height:26px;}
731   -.group-email[type="radio"]{display:none;}
732   -.group-email[type="radio"] + label{margin-left:5px;cursor:pointer;font-family:Tahoma;font-size:14px;color:#464646;}
733   -.group-email[type="radio"] + label span{width:12px;height:12px;background:url('../images/radio-settings-off.png') no-repeat;float:left;margin-top:3px;transition:0.3s;}
734   -.group-email[type="radio"]:checked + label span{background:url('../images/radio-settings-on.png') no-repeat;transition:0.3s;}
735   -.settings-circle-wrap{float:left;height:179px;border-bottom:1px solid #cdcdcd;margin-top:20px;}
736   -.settings-circle{width:230px;float:left;text-align:center;}
737   -.settings-circle.circle-two{width:240px;}
738   -.settings-circle-img{width:100%;height:80px;float:left;margin-bottom:20px;}
739   -.settings-circle-img img{width:80px;height:80px;}
740   -.settings-circle-text{width:100%;float:left;text-align:center;}
741   -.settings-circle-text p{color:#464646;font-size:14px;font-family:calibri;font-style:italic;font-weight:normal;}
742   -.settings-circle-text span{font-weight:bold;font-style:normal;font-size:16px;}
743   -.settings-soc-wrap{width:100%;float:left;margin-top:60px;}
744   -.settings-soc{width:50%;float:left;text-align:center;}
745   -.settings-soc p{width:100%;float:left;color:#464646;font-size:16px;font-weight:bold;font-family:calibri;margin-bottom:20px;}
746   -.ios-ui-select{height:24px;-webkit-border-radius:18px;border-radius:18px;width:49px;-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;-webkit-box-shadow:none;cursor:pointer;position:relative;display:inline-block;border:1px solid #cdcdcd;box-shadow:1px 2px 5px 0px rgba(204, 204, 204, 0.75) inset;float:left;}
747   -.ios-ui-select.checked{border:1px solid #67b73e;}
748   -.ios-ui-select.checked .inner{left:27px;background:url("../images/circle-settings.png") no-repeat;transition:0.2s;}
749   -.ios-ui-select .inner{width:18px;height:18px;position:absolute;top:3px;left:3px;background:url("../images/circle-settings-off.png") no-repeat;transition:0.2s;}
750   -.email-settings_02_1-title2{ont-family:Tahoma;font-size:16px;color:#464646;font-weight:bold;margin-top:15px;margin-bottom:10px;}
751   -.blocks-p-email-02-1{box-sizing:border-box;padding-left:20px;}
752   -.email-settings_02_1-number-wr{box-sizing:border-box;padding-left:35px;font-family:Tahoma;font-size:14px;color:#464646;}
753   -.email-settings_02_1-input{height:20px;width:40px;border:1px solid #69b840;outline:none;transition:0.3s;background:#d9edcf;}
754   -.email-settings_02_1-input:focus{border:1px solid #589b35;background:#F1F1F1;transition:0.3s;}
755   -.email-settings_02_1-buttons-wr{margin-top:20px;}
756   -.email-buttons-1{float:left;padding:0 19px;height:26px;color:#fff;font-family:Tahoma;font-size:12px;font-weight:bold;text-align:center;display:block;line-height:26px;text-decoration:none;border-radius:5px;border-top:2px solid #74ce45;background:#6ba94c;background:-moz-linear-gradient(top, #6ba94c 0%, #6ba94c 50%, #559336 50%, #559336 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#6ba94c), color-stop(50%,#6ba94c), color-stop(50%,#559336), color-stop(100%,#559336));background:-webkit-linear-gradient(top, #6ba94c 0%,#6ba94c 50%,#559336 50%,#559336 100%);background:-o-linear-gradient(top, #6ba94c 0%,#6ba94c 50%,#559336 50%,#559336 100%);background:-ms-linear-gradient(top, #6ba94c 0%,#6ba94c 50%,#559336 50%,#559336 100%);background:linear-gradient(to bottom, #6ba94c 0%,#6ba94c 50%,#559336 50%,#559336 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6ba94c', endColorstr='#559336',GradientType=0);margin-top:1px;text-transform:uppercase;box-shadow:0px 2px 2px 0px rgba(0, 0, 0, 0.4);}
757   -.email-buttons-2-wr{width:166px;height:28px;float:left;transition:0.4s;border-top:1px solid #eeeeee;border-left:1px solid #eeeeee;border-right:1px solid #eeeeee;border-bottom:1px solid #c2c2c2;border-radius:5px;box-shadow:0px 2px 2px 0px rgba(0, 0, 0, 0.12);margin-left:20px;}
758   -.email-buttons-2{width:166px;height:26px;color:#9b9b9b;font-family:Tahoma;font-size:12px;font-weight:bold;text-align:center;display:block;line-height:26px;text-decoration:none;border-radius:5px;background:#f1f1f1;background:-moz-linear-gradient(top, #f1f1f1 0%, #f1f1f1 50%, #e6e6e6 50%, #e6e6e6 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#f1f1f1), color-stop(50%,#f1f1f1), color-stop(50%,#e6e6e6), color-stop(100%,#e6e6e6));background:-webkit-linear-gradient(top, #f1f1f1 0%,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-o-linear-gradient(top, #f1f1f1 0%,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-ms-linear-gradient(top, #f1f1f1 0%,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:linear-gradient(to bottom, #f1f1f1 0%,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#e6e6e6',GradientType=0);transition:0.6s;border-top:2px solid #fff;text-transform:uppercase;text-shadow:1px 1px 2px rgba(255, 255, 255, 1);}
759   -.email-buttons-1:hover{background:#518e31;}
760   -.email-buttons-2:hover{transition:0.6s;background:#e8e8e8;}
761   -.email-set-text{margin-top:20px;}
762   -.email-set-text p{font-family:Tahoma;font-size:14px;color:#464646;}
763   -.email-set-soc{width:94px;height:36px;margin:0 auto;padding-top:20px;}
764   -.email-set-wont-wr{width:700px;height:80px;margin-top:20px;}
765   -.email-set-wont{width:213px;margin:0 auto;}
766   -.email-set-wont p{float:left;line-height:34px;font-family:Tahoma;font-size:14px;color:#464646;margin-right:20px;}
767   -#email-buttons-1_1{float:right;}
768   -.email-set-area{width:700px;float:left;display:none;margin-top:20px;transition:0.4s;}
769   -#email-set-area{width:564px;max-width:564px;height:80px;margin-left:50px;background:#d9edcf;border:1px solid #d9edcf;outline:none;box-sizing:border-box;padding:10px;transition:0.3s;}
770   -#email-set-area:focus{transition:0.3s;background:#dadada;border:1px solid #dadada;}
771   -#email-buttons-sub{border-bottom:none;border-left:none;border-right:none;height:28px;outline:none;margin:0 auto;float:none;}
772   -#email-buttons-sub2{border-bottom:none;border-left:none;border-right:none;height:28px;outline:none;}
773   -.em-sub{width:700px;height:28px;float:left;margin-top:20px;}
774   -#form-checked-email-02-2{display:none;}
775   -.subscription-wr-all{z-index:999;width:461px;min-height:287px;background:#FFFFFF;position:fixed;bottom:10px;right:20px;box-sizing:border-box;display:none;box-shadow:0px 0px 15px 0px rgba(0, 0, 0, 0.4);padding:15px 0;}
776   -.subscription-wr{width:100%;height:100%;position:relative;float:left;}
777   -.subscription-text{width:100%;float:left;text-align:center;}
778   -.subscription-text p{line-height:15px;font-family:calibri;font-size:18px;font-weight:bold;color:#333333;padding:0 22px;margin-bottom:15px;}
779   -.subscription-sale-wr{width:100%;float:left;border-bottom:1px dotted #363636;}
780   -.subscription-sale-blocks{width:151px;float:left;}
781   -.sub-sale-blocks-img{width:151px;height:49px;float:left;text-align:center;}
782   -.sub-sale-blocks-img img{width:50px;height:49px;}
783   -.sub-sale-blocks-img img:hover{opacity:70;}
784   -.sub-sale-blocks-text{width:151px;float:left;height:49px;text-align:center;}
785   -.sub-sale-blocks-text a{display:block;line-height:49px;text-decoration:none;color:#363636}
786   -.sub-sale-blocks-text p{height:49px;line-height:49px;text-decoration:none;font-family:calibri;color:#363636;font-size:13px;}
787   -.sub-sale-forma-wr{width:453px;float:left;}
788   -.sub-sale-forma-blocks-l{width:220px;float:left;}
789   -.sub-sale-forma-blocks-r{width:220px;float:left;}
790   -[class*="sub-sale-forma-blocks"] input{width:199px;height:30px;background:#d9edcf;outline:none;border:none;padding-left:10px;box-sizing:border-box;color:#363636;}
791   -.sub-sale-forma-blocks-l input{float:right;}
792   -.sub-sale-forma-blocks-r input{float:left;}
793   -.sub-sale-forma-blocks-c{width:12px;float:left;height:30px;}
794   -[class*="sub-sale-forma-blocks-name"]{height:30px;float:left;width:100%;line-height:30px;box-sizing:border-box;color:#363636;font-family:calibri;font-size:13px;}
795   -.sub-sale-forma-blocks-name-first{padding-left:20px;}
796   -.sub-submit{margin-top:16px;width:453px;height:28px;float:left;text-align:center;}
797   -.sub-submit input{width:106px;height:26px;border-top:2px solid #74ce45;border-bottom:none;border-right:none;border-left:none;background:#70ae51;background:-moz-linear-gradient(top, #70ae51 0%, #65a346 49%, #5b983b 50%, #4f8d30 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#70ae51), color-stop(49%,#65a346), color-stop(50%,#5b983b), color-stop(100%,#4f8d30));background:-webkit-linear-gradient(top, #70ae51 0%,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-o-linear-gradient(top, #70ae51 0%,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-ms-linear-gradient(top, #70ae51 0%,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:linear-gradient(to bottom, #70ae51 0%,#65a346 49%,#5b983b 50%,#4f8d30 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ae51', endColorstr='#4f8d30',GradientType=0);line-height:24px;color:#fff;text-transform:uppercase;font-size:12px;font-family:calibri;font-weight:bold;cursor:pointer;border-radius:5px;}
798   -.sub-submit input:focus{outline:none;border-top:2px solid #74ce45;border-bottom:none;border-right:none;border-left:none;}
799   -.sub-text-footer{width:453px;float:left;height:30px;text-align:center;}
800   -.sub-text-footer{height:30px;line-height:30px;color:#363636;font-size:13px;font-family:calibri;}
801   -.sub-closed{width:8px;height:8px;position:absolute;cursor:pointer;top:10px;right:10px;}
802   -.sub-closed img{width:8px;height:8px;float:left;}
803   -.wrong{color:#b1292b;}
804   -.normal{color:#68a548;}
805   -.w25{width:25px;}
806   -.w30{width:30px;}
807   -.w35{width:35px;}
808   -.w66{width:66px;}
809   -.w75{width:75px;}
810   -.w82{width:82px;}
811   -.w85{width:85px;}
812   -.w90{width:90px;}
813   -.w100{width:100px;}
814   -.w120{width:120px;}
815   -.w147{width:147px;}
816   -.w170{width:170px;}
817   -.w184{width:184px;}
818   -.w199{width:199px;}
819   -.w200{width:200px;}
820   -.w205{width:205px;}
821   -.w210{width:210px;}
822   -.w232{width:232.5px;}
823   -.bold18{font-size:18px;font-weight:bold;}
824   -input[type="number"]{background-color:#f5f5f5;border:0;width:29px;height:18px;padding:4px 6px;border:1px solid #e0e0e0;border-radius:4px;text-align:center;-moz-box-shadow:inset 2px 2px 8px #dfdfdf;-webkit-box-shadow:inset 2px 2px 8px #dfdfdf;box-shadow:inset 2px 2px 8px #dfdfdf;}
825   -.clear{clear:both;}
826   -.popup{font-family:Calibri, Tahoma, Arial, sans-serif;background-color:#d9dade;color:#333333;position:fixed;z-index:99999;width:100%;height:100%;background-color:rgba(0,0,0,0.7);}
827   -.popup_window{background-color:white;z-index:9999;margin-left:auto;margin-right:auto;min-width:300px;text-align:center;margin-top:7%;max-height:530px;position:relative;-moz-box-shadow:0px 0px 16px rgba(0,0,0,0.7);-webkit-box-shadow:0px 0px 16px rgba(0,0,0,0.7);box-shadow:0px 0px 16px rgba(0,0,0,0.7);}
828   -.popup_close_button{width:40px;height:40px;position:absolute;top:0;right:0;background:#f5f5f5 url("../images/close.png") center center no-repeat;cursor:pointer;}
829   -.popup_window_content{padding:40px;}
830   -.summary_price{background-color:#f5f5f5;width:100%;text-align:right;color:#5c5c5c;font-weight:bold;font-family:Calibri;padding-top:9px;padding-bottom:12px;}
831   -.summary_price .price{font-weight:normal;font-size:16px;}
832   -.summary_price span{font-weight:bold;font-size:22px;}
833   -.summary_price .text{font-size:16px;padding-right:75px;}
834   -.popup_footer{text-align:right;margin-top:42px;margin-bottom:-7px;}
835   -.green_but2{background-color:#4fa32c;color:#ffffff;border-radius:3px;font-weight:bold;text-decoration:none;font-size:13px;font-family:Calibri;padding:5px 13px 8px 13px;}
836   -.popup_window a{display:inline;}
837   -.cont_shop_but, #help{font-size:13px;color:#555555;padding-right:25px;padding-left:25px;}
838   -h4{font-size:24px;color:#464646;text-align:left;margin:0;padding:0;}
839   -.basket_block_header{display:table;border-bottom:1px solid #cdcdcd;line-height:1;}
840   -.basket_block_header div{display:table-cell;vertical-align:bottom;font-size:16px;font-weight:bold;font-family:Calibri;color:#7d7d7d;padding:15px 20px 12px;}
841   -.basket_block_content{max-height:270px;width:940px}
842   -.basket_block_content.overflow{overflow-y:auto;}
843   -.basket_element_name{display:table-cell;vertical-align:middle;width:300px;text-align:left;padding:15px 10px 15px 15px;}
844   -.basket_element{border-bottom:1px solid #cdcdcd;padding-left:5px;}
845   -.basket_element:last-child{border:none;}
846   -.picture_element{float:left;-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.7);-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.7);box-shadow:0px 0px 5px rgba(0,0,0,0.7);margin-right:15px;}
847   -.title_element{font-weight:bold;font-size:18px;padding:15px;line-height:1;}
848   -.title_element .subtitle_element{font-size:13px;font-weight:normal;margin-top:8px;opacity:0;}
849   -.basket_element_prepack{display:table-cell;vertical-align:middle;width:195px;padding-right:18px;position:relative;}
850   -.basket_element_priceone{display:table-cell;vertical-align:middle;padding-right:25px;}
851   -.basket_element_pricenum{display:table-cell;vertical-align:middle;padding-right:20px;padding-left:10px;}
852   -.basket_element_priceall{display:table-cell;vertical-align:middle;padding-left:30px;}
853   -.basket_element_delete{display:table-cell;vertical-align:middle;padding-left:12px;}
854   -.basket_element_delete a{background:url("../images/delete_grey.png");display:table-cell;vertical-align:middle;width:16px;height:16px;cursor:pointer;}
855   -.basket_element_delete a:hover{background:url("../images/delete.png");}
856   -.basket_element_priceone .price span{font-size:22px;}
857   -.basket_element_priceall .price span{font-size:22px;}
858   -.del_but_right{margin-right:-33px;float:right;}
859   -.prepacks_table{display:table;vertical-align:bottom;}
860   -.prepacks_table_cell{display:table-cell;line-height:0.9;font-size:11px;width:20px;vertical-align:bottom;padding:3px;}
861   -.prepacks_table_cell_elem{border:1px solid #e0e0e0;padding-left:5px;padding-right:5px;padding-bottom:3px;cursor:pointer;color:#5c5c5c;}
862   -.prepacks_table_cell_elem:before{content:'';border:1px solid #e0e0e0;width:15px;height:1px;display:-webkit-inline-box;border-radius:1px;}
863   -.prepacks_table_cell_elem.min{width:17px;padding-top:2px;}
864   -.prepacks_table_cell_elem.two{width:22px;padding-top:4px;}
865   -.prepacks_table_cell_elem.premax{width:23px;padding-top:4px;}
866   -.prepacks_table_cell_elem.max{width:27px;padding-top:4px;}
867   -.prepacks_table_cell_elem.min:before{margin-bottom:3px;}
868   -.prepacks_table_cell_elem.two:before{margin-bottom:6px;}
869   -.prepacks_table_cell_elem.premax:before{margin-bottom:10px;}
870   -.prepacks_table_cell_elem.max:before{margin-bottom:5px;}
871   -.prepacks_table_cell_elem.actived{border:1px solid #4fa32c;}
872   -.prepacks_table_cell_elem.actived:before{border:1px solid #4fa32c;}
873   -.align_bottom{position:relative;}
874   -.items .one_item .one_item_buttons a{display:inline;margin:3px;}
875   -.items .one_item .one_item_buttons, .compare_items_table .compare_one_item .one_item_buttons{width:120%;margin-top:15px;margin-bottom:15px;margin-left:-10px;}
876   -input[type=number]::-webkit-inner-spin-button,
877   -input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;}
878   -input[type=number]{-moz-appearance:textfield;}
879   -.file_download_link_{position:relative}
880   -.file_download_link_ a{position:absolute;top:32px;right:16px;padding:10px 10px 10px 22px;background:url(../images/icon_catalog_18x18_01.png) no-repeat 0 50%;margin-left:23px;z-index:3;font-style:italic;}
881   -.faq a{position:absolute;top:32px;left:0;padding:10px 10px 10px 22px;background:url(../images/icon_faq_18x18_01.png) no-repeat 0 50%;margin-left:23px;z-index:3;font-style:italic;}
882   -/**/.style{width:100%;float:left;}
883   -.questions_ li{width:100%;float:left;border-bottom:1px solid #c4c4c4;min-height:58px;height:58px;position:relative;}
884   -.questions_ li.active{height:auto;}
885   -.questions_ li span.nav{width:18px;height:18px;border-radius:100%;text-align:center;line-height:18px;color:#fff;font-style:italic;font-weight:700;background:#f58025;display:block;float:left;font-size:12px;position:absolute;top:20px;left:0;}
886   -.questions_a{float:left;margin-left:25px;position:relative;margin-top:22px;height:15px;width:935px;white-space:nowrap;overflow:hidden;}
887   -.questions_a.long_:before{width:50px;height:58px;top:-22px;right:0;position:absolute;content:'';background:#fff;z-index:2;background:-moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);background:-webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);background:linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);}
888   -.questions_ li a{float:left;font-size:15px;color:#464646;font-weight:700;text-decoration:none;border-bottom:1px dashed #464646;position:relative;}
889   -.questions_ li a:hover{color:#55a727;border-bottom:1px dashed #55a727;}
890   -.questions_ li.active a{cursor:default;color:#55a727;border-bottom:1px dashed #55a727;}
891   -.questions_answer{background:#f5f5f5;padding:15px 17px;box-sizing:border-box;position:relative;border-radius:4px;margin-top:16px;font-size:13px;color:#464646;line-height:18px;}
892   -.questions_answer:before{position:absolute;top:-10px;left:40px;content:'';background:url("../images/question_arrow.png") no-repeat;width:12px;height:10px;}
893   -.questions_answer span{font-weight:700;}
894   -.questions_img img{margin-left:17px;}
895   -.questions_hide{display:none}
896   -.questions_ li.active .questions_hide{display:block}
897   -.questions_answer a{color:inherit !important;font-size:inherit !important;border-bottom:0 !important;cursor:pointer !important;text-decoration:underline !important;margin-left:0 !important;margin-top:0 !important;float:none !important;display:inline-block;}
898   -.questions_answer p{width:100%;float:left;margin-top:6px;}
899   -.questions_answer p:first-child{margin-top:0}
900   -.questions_answer a:hover{color:#f58025 !important;}
901   -.title_new{width:935px;position:absolute;top:50px;right:0;background:#fff;white-space:normal;z-index:3;font-size:15px;padding:10px;box-shadow:0px 0px 5px 0px rgba(149, 149, 149, 0.75);box-sizing:border-box;line-height:18px;}
902   -.pic_wr_{margin-top:35px}
903   -.pic_wr_:last-child{margin-bottom:35px}
904   -.pic_txt{width:99px;float:left;font-size:13px;font-weight:bold;font-style:italic;padding-top:15px;}
905   -.pic_img{width:861px;float:left;}
906   -.pic_img img{max-width:100%;height:auto;}
907   -.questions_img{padding-bottom:20px}
908   -.title_questions_{font-weight:bold;color:#464646;font-size:22px;text-align:center;height:54px;line-height:79px;}
909   -.not_availiable{position:absolute;width:100%;height:100%;background-color:rgba(0,0,0,0.15);background-position:-1px 0px;}
910   -.not_availiable.rus{background-image:url('/images/asd_ru_01.png');}
911   -.not_availiable.ukr{background-image:url('/images/asd_ua_01.png');}
912   -.video_posts.float.last{position:relative;transition:0.5s;margin-bottom:30px;}
913   -.video_posts.float.last.small{height:400px;overflow:hidden;margin-bottom:0px!important;}
914   -.video_posts.float.last .white_list{z-index:1;content:'';position:absolute;width:100%;left:0;bottom:50px;height:50px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent', endColorstr = '#ffffff');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent', endColorstr = '#ffffff')";background-image:-moz-linear-gradient(top, transparent, #ffffff);background-image:-ms-linear-gradient(top, transparent, #ffffff);background-image:-o-linear-gradient(top, transparent, #ffffff);background-image:-webkit-gradient(linear, center top, center bottom, from(transparent), to(#ffffff));background-image:-webkit-linear-gradient(top, transparent, #ffffff);background-image:linear-gradient(top, transparent, #ffffff);transition:0.3s;}
915   -.video_posts.float.last.small .open_list_btn{bottom:0!important;}
916   -.video_posts .open_list_btn{position:absolute;bottom:-50px;width:100%;text-align:center;z-index:2;font-weight:bold;padding:11px 0px 20px 0px;font-size:16px;color:gray;background-color:rgb(255, 255, 255);cursor:pointer;}
917   -.video_posts .close_list_btn{position:absolute;bottom:-50px;width:100%;text-align:center;z-index:2;font-weight:bold;padding:11px 0px 20px 0px;font-size:16px;color:gray;background-color:rgb(255, 255, 255);cursor:pointer;}
918   -#content_nav .inner{box-sizing:border-box;}
919   -#content_nav .content_nav_first_floor{padding:0 !important;margin:0 !important;}
920   -#content_nav .content_nav_first_floor.clearfix{padding:0;width:25%;box-sizing:border-box;text-align:center;margin:15px 0;}
921   -#content_nav .content_nav_items{display:none;}
922   -#content_nav .content_nav_first_floor .content_nav_logo{width:100% !important;margin:25px 0 !important;padding:0 !important;height:140px !important;}
923   -#content_nav .content_nav_second_floor .float{padding:0 !important;width:25%;box-sizing:border-box;text-align:center;margin:25px 0;height:140px;}
924   -#content_nav .content_nav_first_floor.clearfix{float:left;border:none;}
925   -.stock_items{padding-top:25px;}
926   -.catalog_slider .catalog_description.logo543{background:#5b4a42;}
927   -.catalog_description.logo320{background-color:#00a3de;}
928   -h2.types_logo_320{color:#00a3de;}
929   -h2.types_logo_543{color:#5b4a42;}
930   -.delivery-form-par{position:fixed;z-index:99991;top:0;background-color:rgba(255, 255, 255, 0.75);width:100%;height:100%;display:none;transition:0.3s;}
931   -.delivery-form-par .close-white{content:'';position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;}
932   -.delivery-form-par .popup-main-delivery{width:843px;height:400px;background-image:url("../images/right_deliver.png");background-size: contain;background-position:right center;background-repeat:no-repeat;background-color:#fdfaf1;position:absolute;font-family:'Lato-Medium';left:calc(50% - 421.5px);top:15%;}
933   -.delivery-form-par .content-popup .text-up{width:100%;max-width:332px;border-bottom:1px solid #6cb33f;color:#42210b;text-align:center;font-size:18px;padding-top:19px;line-height:22px;padding-bottom:4px;}
934   -.delivery-form-par .content-popup .text-down{width:100%;max-width:332px;}
935   -.delivery-form-par .text-down .up-text{color:#42210b;font-size:13.5px;text-align:center;width:100%;padding-top:23px;padding-bottom:8px;}
936   -.delivery-form-par .text-down .footer-text{color:#333333;font-style:italic;text-align:center;font-family:'Lato-Italic';padding-top:8px;padding-top:24px;width:100%;font-size:10.8px;}
937   -.delivery-form-par .submit-delivery-but{font-size:15px;color:#fff;border:none;background-color:#6cb33f;text-transform:lowercase;width:80px;height:25px;outline:none;cursor:pointer;}
938   -.delivery-form-par .text-up p span{color:#f15a24;font-size:28.58px;}
939   -.delivery-form-par .content-popup{transition:0.3s;padding:38px;width:100%;height:100%;min-height: 400px;max-width:480px;box-sizing:border-box;background-image:url('../images/grad_popup.png');background-position: left center;background-repeat-x: no-repeat;}
940   -.delivery-form-par .text-down input{height:23px;width:104px;border:1px solid #6cb33f;font-size:9px;padding-left:12px;outline:none;}
941   -.delivery-form-par .deliver-form{display:flex;justify-content:space-between;width:100%px;}
942   -body{font-family:Calibri, Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;}
943   -.open-delivery-modal{opacity: 1;cursor: pointer;position: fixed;top: calc(50% - 80px);left: 0%;font-size: 24px;z-index: 10000;}
944   -.open-delivery-modal div{width: 100%;max-width: 360px;text-align: center;margin: 0 auto;position:relative;}
945   -.open-delivery-modal div img{width:100%;max-width:360px;}
946   -.modal_close{position: absolute;top: 23px;right: 10px;width: 15px;height: 15px;background-image:url('../images/close_popup.png');background-position:center center; background-repeat:no-repeat;border-radius: 50%;box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.40);cursor: default;}
947   -.popup_full{display:block;}
948   -.popup_mobile{display:none;}
949   -@media( max-width: 880px ){
950   - .delivery-form-par .popup-main-delivery{width:96%;left:2%;}
951   - .open-delivery-modal{top: initial;bottom:0;width:100%;box-shadow: inset 0px -250px 125px -250px black;}
952   - .popup_full{display:none;}
953   - .popup_mobile{display:block;}
954   -}
955   -@media ( max-width: 480px ){
956   - .delivery-form-par .content-popup{padding:25px;}
957   - .delivery-form-par .popup-main-delivery{background-image:none;height:initial;top:10%;}
958   - .delivery-form-par .deliver-form{justify-content: center;align-items: center;flex-direction: column;}
959   - .delivery-form-par .text-down input {margin-bottom:5px;}
960   - .delivery-form-par .submit-delivery-but{margin-top:5px;}
961   - .delivery-form-par .content-popup .text-up, .delivery-form-par .content-popup .text-down{max-width:100%;}
  1 +* {
  2 + margin: 0;
  3 + padding: 0
962 4 }
  5 +
  6 +body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,tr {
  7 + margin: 0;
  8 + padding: 0;
  9 + letter-spacing: normal
  10 +}
  11 +
  12 +table {
  13 + border-collapse: collapse;
  14 + border-spacing: 0
  15 +}
  16 +
  17 +fieldset,img {
  18 + border: 0
  19 +}
  20 +
  21 +address,caption,cite,code,dfn,em,strong,th,var {
  22 + font-style: normal;
  23 + font-weight: normal
  24 +}
  25 +
  26 +caption,th {
  27 + text-align: left
  28 +}
  29 +
  30 +q:before,q:after {
  31 + content: ''
  32 +}
  33 +
  34 +:focus {
  35 + outline: 0
  36 +}
  37 +
  38 +abbr,acronym {
  39 + border: 0
  40 +}
  41 +
  42 +html,body {
  43 + height: 100%
  44 +}
  45 +
  46 +header,nav,section,article,aside,footer {
  47 + display: block;
  48 + margin: 0;
  49 + padding: 0
  50 +}
  51 +
  52 +img {
  53 + border: 0;
  54 + width: auto
  55 +}
  56 +
  57 +input {
  58 + vertical-align: middle
  59 +}
  60 +
  61 +ol,ul {
  62 + margin: 0;
  63 + padding: 0;
  64 + list-style: none
  65 +}
  66 +
  67 +ul li {
  68 + margin: 0;
  69 + padding: 0
  70 +}
  71 +
  72 +a {
  73 + color: #4a4a4a;
  74 + text-decoration: underline;
  75 + display: block
  76 +}
  77 +
  78 +a:hover {
  79 + color: #4a4a4a;
  80 + text-decoration: underline
  81 +}
  82 +
  83 +.clearfix:after {
  84 + content: "";
  85 + display: block;
  86 + clear: both;
  87 + visibility: hidden;
  88 + line-height: 0;
  89 + height: 0
  90 +}
  91 +
  92 +.clearfix {
  93 + display: inline-block
  94 +}
  95 +
  96 +html[xmlns] .clearfix {
  97 + display: block
  98 +}
  99 +
  100 +body {
  101 + font: normal 12px/14px Arial,Tahoma,sans-serif;
  102 + color: #4a4a4a
  103 +}
  104 +
  105 +.float {
  106 + display: inline;
  107 + float: left
  108 +}
  109 +
  110 +.last {
  111 + margin-right: 0 !important;
  112 + padding-right: 0 !important
  113 +}
  114 +
  115 +.display_none {
  116 + display: none !important
  117 +}
  118 +
  119 +.display_block {
  120 + display: block !important
  121 +}
  122 +
  123 +.inner {
  124 + width: 960px;
  125 + margin: 0 auto
  126 +}
  127 +
  128 +.not_exist {
  129 + cursor: default;
  130 + opacity: .3;
  131 + -moz-opacity: .3;
  132 + -khtml-opacity: .3
  133 +}
  134 +
  135 +#wrapper {
  136 + min-height: 100%;
  137 + height: auto !important;
  138 + height: 100%;
  139 + margin: 0 auto -5em
  140 +}
  141 +
  142 +.beta {
  143 + width: 960px;
  144 + overflow: hidden;
  145 + margin: 0 auto;
  146 + padding: 10px 0 0;
  147 + font-size: 20px;
  148 + line-height: 20px;
  149 + text-align: center
  150 +}
  151 +
  152 +.beta a {
  153 + display: inline;
  154 + color: #009aff
  155 +}
  156 +
  157 +#header {
  158 + background: #fff;
  159 + background: -moz-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);
  160 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ececec),color-stop(100%,#ececec));
  161 + background: -webkit-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);
  162 + background: -o-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);
  163 + background: -ms-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);
  164 + background: linear-gradient(to bottom,#fff 0,#ececec 100%,#ececec 100%);
  165 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ececec',GradientType=0);
  166 + position: relative
  167 +}
  168 +
  169 +.columns3 {
  170 + margin: 10px 0
  171 +}
  172 +
  173 +.columns3.first_column {
  174 + width: 320px
  175 +}
  176 +
  177 +.columns3.second_column {
  178 + width: 375px
  179 +}
  180 +
  181 +.columns3.third_column {
  182 + width: 265px;
  183 + position: relative
  184 +}
  185 +
  186 +.switch_lang {
  187 + margin: 5px 0 10px 0
  188 +}
  189 +
  190 +.switch_lang div {
  191 + padding: 0 10px 0 20px
  192 +}
  193 +
  194 +.switch_lang div.ru {
  195 + background: url(../images/ru_flag.gif) no-repeat 0 50%;
  196 + color: #55a727
  197 +}
  198 +
  199 +.switch_lang div {
  200 + color: #55a727
  201 +}
  202 +
  203 +.switch_lang div a.active,.switch_lang div a:hover {
  204 + color: #55a727
  205 +}
  206 +
  207 +.contact_phones,.contact_mob_phones {
  208 + font: normal 17px/20px Arial,Tahoma,sans-serif !important;
  209 + padding: 2px 0 2px 20px !important
  210 +}
  211 +
  212 +.contact_phones a,.contact_mob_phones a {
  213 + display: inline
  214 +}
  215 +
  216 +.contact_phones {
  217 + background: url(../images/tel.png) no-repeat 0 50%
  218 +}
  219 +
  220 +.contact_mob_phones {
  221 + background: url(../images/mob.png) no-repeat 1% 50%
  222 +}
  223 +
  224 +span.small_digits {
  225 + font-size: 15px !important
  226 +}
  227 +
  228 +.callback {
  229 + font-style: italic;
  230 + margin: 5px 0 0 0
  231 +}
  232 +
  233 +.logo {
  234 + margin: 10px 0 10px 0
  235 +}
  236 +
  237 +.menu_cabinet {
  238 + padding: 10px 10px 10px 20px
  239 +}
  240 +
  241 +.basket {
  242 + padding: 10px 10px 10px 23px
  243 +}
  244 +
  245 +.compare_wrapper {
  246 + min-height: 35px;
  247 + position: relative
  248 +}
  249 +
  250 +header .navbar .compare_wrapper {
  251 + display: inline-block
  252 +}
  253 +
  254 +.compare {
  255 + padding: 5px 0 15px 20px;
  256 + margin: 0 0 0 120px
  257 +}
  258 +
  259 +header .compare {
  260 + margin: 10px 0 0 20px
  261 +}
  262 +
  263 +.compare_wrapper .compare_list {
  264 + position: absolute;
  265 + top: 0;
  266 + right: 0;
  267 + padding: 0 10px 10px 10px;
  268 + background: #f5f5f5;
  269 + border: 2px solid #267f00;
  270 + border-radius: 5px;
  271 + -moz-border-radius: 5px;
  272 + -webkit-border-radius: 5px;
  273 + z-index: 9991;
  274 + font: normal 12px/20px Arial,Tahoma,sans-serif;
  275 + display: none
  276 +}
  277 +
  278 +header .compare_wrapper .compare_list a,header .compare_wrapper .compare_list a:hover {
  279 + color: #4a4a4a;
  280 + text-decoration: underline
  281 +}
  282 +
  283 +header .compare_wrapper .compare_list .compare a,header .compare_wrapper .compare_list .compare a:hover {
  284 + text-decoration: none
  285 +}
  286 +
  287 +.compare_wrapper .compare_list .compare {
  288 + margin: 0;
  289 + padding: 1px 0 5px 20px
  290 +}
  291 +
  292 +.compare_wrapper .compare_list .compare a {
  293 + text-decoration: none
  294 +}
  295 +
  296 +.compare_wrapper .compare_list ul li {
  297 + font: normal 12px/20px Arial,Tahoma,sans-serif;
  298 + padding: 2px 0
  299 +}
  300 +
  301 +.compare_wrapper .compare_list ul li a {
  302 + margin: 0 5px 0 0
  303 +}
  304 +
  305 +.basket .active {
  306 + color: #f58025
  307 +}
  308 +
  309 +.basket_number {
  310 + padding: 7px 0 10px 0
  311 +}
  312 +
  313 +.basket_number a,.basket_number a:hover {
  314 + text-decoration: none;
  315 + color: #fff;
  316 + background: #67b73e;
  317 + padding: 2px 5px;
  318 + border-radius: 100%;
  319 + -moz-border-radius: 100%;
  320 + -webkit-border-radius: 100%;
  321 + webkit-box-shadow: inset 2px 1px 10px 0 #417e24;
  322 + -moz-box-shadow: inset 2px 1px 10px 0 #417e24;
  323 + box-shadow: inset 2px 1px 10px 0 #417e24
  324 +}
  325 +
  326 +.menu_cabinet a,.basket a,.compare a {
  327 + font-style: italic
  328 +}
  329 +
  330 +#header .columns3 .menu_cabinet {
  331 + background: url(../images/cabinet.png) no-repeat 0 50%
  332 +}
  333 +
  334 +#header .columns3 .basket {
  335 + background: url(../images/basket.png) no-repeat 0 50%
  336 +}
  337 +
  338 +#header .columns3 .compare,header .compare_wrapper .compare {
  339 + background: url(../images/ico_comparison.png) no-repeat 0 25%
  340 +}
  341 +
  342 +#header .columns3 .site_search,header .site_search input {
  343 + position: relative
  344 +}
  345 +
  346 +#header .columns3 input,.cat_center .site_search input,header .site_search input {
  347 + width: 250px;
  348 + margin: 0;
  349 + padding: 7px 5px;
  350 + border-radius: 5px;
  351 + -moz-border-radius: 5px;
  352 + -webkit-border-radius: 5px;
  353 + border: 0;
  354 + -moz-box-shadow: inset 1px 1px 1px 0 #d0d0d0;
  355 + -webkit-box-shadow: inset 1px 1px 1px 0 #d0d0d0;
  356 + box-shadow: inset 1px 1px 1px 0 #d0d0d0
  357 +}
  358 +
  359 +#header .columns3 label,.cat_center .site_search label,header .site_search label {
  360 + position: absolute;
  361 + top: 7px;
  362 + right: 7px
  363 +}
  364 +
  365 +header .site_search label {
  366 + top: 12px;
  367 + right: 12px
  368 +}
  369 +
  370 +#header .columns3 .site_search.active .search_result_wrapper,#header .columns3 .site_search:active .search_result_wrapper,.cat_center .site_search.active .search_result_wrapper,header .site_search.nav-search .search_result_wrapper {
  371 + position: absolute;
  372 + z-index: 9999;
  373 + background: #ececec;
  374 + width: 260px;
  375 + border-radius: 5px;
  376 + -moz-border-radius: 5px;
  377 + -webkit-border-radius: 5px;
  378 + border: 2px solid #4fa32c;
  379 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  380 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  381 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75)
  382 +}
  383 +
  384 +header .site_search.nav-search .search_result_wrapper {
  385 + position: static
  386 +}
  387 +
  388 +#header .columns3 .site_search.active .search_result_wrapper .search_result_display,header .site_search.nav-search.active .search_result_wrapper .search_result_display {
  389 + display: block
  390 +}
  391 +
  392 +#header .columns3 .site_search .search_result_wrapper .search_result_display,header .site_search.nav-search .search_result_wrapper .search_result_display {
  393 + display: none
  394 +}
  395 +
  396 +#header .columns3 .site_search .search_result_wrapper li,header .site_search.nav-search .search_result_wrapper li {
  397 + border-bottom: 1px solid #c4c4c4;
  398 + margin: 15px;
  399 + padding: 0 0 10px 0
  400 +}
  401 +
  402 +#header .columns3 .site_search .search_result_wrapper li img,header .site_search.nav-search .search_result_wrapper li img {
  403 + width: 100px;
  404 + margin: 5px;
  405 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  406 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  407 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  408 + float: left
  409 +}
  410 +
  411 +#header .columns3 .site_search .search_result_wrapper li p,header .site_search.nav-search .search_result_wrapper li p {
  412 + margin: 0 0 0 80px;
  413 + font: normal 13px/15px Arial,Tahoma,sans-serif;
  414 + color: #f58025
  415 +}
  416 +
  417 +#header .columns3 .site_search .search_result_wrapper li p span,header .site_search.nav-search .search_result_wrapper li p span {
  418 + font: bold 20px/22px Arial,Tahoma,sans-serif;
  419 + color: #f58025
  420 +}
  421 +
  422 +#header .columns3 .site_search .search_result_wrapper li a.search_result_title,header .site_search.nav-search .search_result_wrapper li a.search_result_title {
  423 + font: bold 14px/20px Arial,Tahoma,sans-serif;
  424 + margin: 0 0 0 80px;
  425 + text-decoration: none
  426 +}
  427 +
  428 +#header .columns3 .site_search .search_result_wrapper .all_search_result,header .site_search.nav-search .search_result_wrapper .all_search_result {
  429 + font: italic 12px/15px Arial,Tahoma,sans-serif;
  430 + text-decoration: underline;
  431 + margin: 0 15px 5px 15px
  432 +}
  433 +
  434 +#header .columns3 .site_search .search_result_wrapper .no_search_result,header .site_search.nav-search .search_result_wrapper .no_search_result {
  435 + font: italic 12px/15px Arial,Tahoma,sans-serif;
  436 + margin: 5px
  437 +}
  438 +
  439 +#header_nav {
  440 + position: relative;
  441 + height: 20px
  442 +}
  443 +
  444 +#header_nav ul {
  445 + border: 3px solid #ececec;
  446 + height: 35px;
  447 + border-radius: 5px;
  448 + -moz-border-radius: 5px;
  449 + -webkit-border-radius: 5px;
  450 + background: #67b73e;
  451 + position: absolute;
  452 + z-index: 999
  453 +}
  454 +
  455 +#header_nav ul li {
  456 + display: inline;
  457 + float: left;
  458 + background: #67b73e;
  459 + border-left: 1px solid #55a727 !important
  460 +}
  461 +
  462 +.header_nav_1_ {
  463 + width: 50px !important
  464 +}
  465 +
  466 +.header_nav_2_ {
  467 + width: 100px !important
  468 +}
  469 +
  470 +.header_nav_3_ {
  471 + width: 145px !important
  472 +}
  473 +
  474 +.header_nav_4_ {
  475 + width: 175px !important
  476 +}
  477 +
  478 +.header_nav_5_ {
  479 + width: 135px !important
  480 +}
  481 +
  482 +.header_nav_6_ {
  483 + width: 167px !important
  484 +}
  485 +
  486 +.header_nav_7_ {
  487 + width: 103px !important
  488 +}
  489 +
  490 +.header_nav_8_ {
  491 + width: 60px !important
  492 +}
  493 +
  494 +#header_nav ul li:hover,#header_nav ul li.active {
  495 + background: #55a727
  496 +}
  497 +
  498 +#header_nav ul li.left_radius {
  499 + border-radius: 5px 0 0 5px;
  500 + -moz-border-radius: 5px 0 0 5px;
  501 + -webkit-border-radius: 5px 0 0 5px
  502 +}
  503 +
  504 +#header_nav ul li.right_radius {
  505 + border-radius: 0 5px 5px 0;
  506 + -moz-border-radius: 0 5px 5px 0;
  507 + -webkit-border-radius: 0 5px 5px 0
  508 +}
  509 +
  510 +#header_nav ul li a {
  511 + text-transform: uppercase;
  512 + text-decoration: none;
  513 + color: #fff;
  514 + font: bold 12px/15px Arial,Tahoma,sans-serif;
  515 + text-align: center;
  516 + padding: 10px 1.3pc;
  517 + float: left;
  518 + white-space: nowrap
  519 +}
  520 +
  521 +#content {
  522 + display: block
  523 +}
  524 +
  525 +#content_nav {
  526 + background: url(../images/pattern.png)
  527 +}
  528 +
  529 +#content_nav h2 {
  530 + font-size: 15px;
  531 + text-transform: uppercase;
  532 + margin: 20px 0 0 0
  533 +}
  534 +
  535 +h2.types_logo_1 {
  536 + color: #4fa32c
  537 +}
  538 +
  539 +h2.types_logo_2 {
  540 + color: #bb4648
  541 +}
  542 +
  543 +h2.types_logo_3 {
  544 + color: #f58025
  545 +}
  546 +
  547 +h2.types_logo_4 {
  548 + color: #378a92
  549 +}
  550 +
  551 +h2.types_logo_5 {
  552 + color: #db0565
  553 +}
  554 +
  555 +h2.types_logo_6 {
  556 + color: #935927
  557 +}
  558 +
  559 +h2.types_logo_479 {
  560 + color: #b1873f
  561 +}
  562 +
  563 +#content_nav .content_nav_first_floor {
  564 + padding: 40px 0 15px 0;
  565 + margin: 0 0 20px 0;
  566 + border-bottom: 1px solid #cdcdcd
  567 +}
  568 +
  569 +#content_nav .content_nav_first_floor .content_nav_logo {
  570 + padding: 0 40px 0 0;
  571 + width: 150px
  572 +}
  573 +
  574 +#content_nav .content_nav_logo a {
  575 + text-decoration: none
  576 +}
  577 +
  578 +#content_nav .content_nav_first_floor .content_nav_items {
  579 + column-count: 4;
  580 + -moz-column-count: 4;
  581 + -webkit-column-count: 4;
  582 + column-width: 180px;
  583 + -moz-column-width: 180px;
  584 + -webkit-column-width: 180px
  585 +}
  586 +
  587 +#content_nav .content_nav_first_floor .content_nav_items a,.content_nav_items a {
  588 + font-size: 13px;
  589 + line-height: 21px;
  590 + font-style: italic;
  591 + width: 160px
  592 +}
  593 +
  594 +.content_nav_items a:hover {
  595 + color: #f36d00
  596 +}
  597 +
  598 +.content_nav_second_floor .float {
  599 + padding: 0 40px 20px 0;
  600 + width: 150px
  601 +}
  602 +
  603 +.shadow_to_top {
  604 + background: url(../images/shadow.png) no-repeat center center;
  605 + height: 22px;
  606 + text-align: center;
  607 + overflow: hidden
  608 +}
  609 +
  610 +.content_items .title {
  611 + background: url(../images/line.gif) 100% 85% repeat-x
  612 +}
  613 +
  614 +.content_items .title .items_title {
  615 + font: bold 20px/24px Arial,Tahoma,sans-serif;
  616 + color: #f36d00
  617 +}
  618 +
  619 +.content_items .title .float {
  620 + background: #fff
  621 +}
  622 +
  623 +.content_items .title .content_arrow_left,.content_items .title .content_arrow_right {
  624 + margin: 4px 6px
  625 +}
  626 +
  627 +.content_items .title .content_items_page {
  628 + margin: 4px 0
  629 +}
  630 +
  631 +.content_items .title .content_arrow_left {
  632 + width: 10px;
  633 + height: 18px;
  634 + background: url(../images/content_arrow_left.png) no-repeat
  635 +}
  636 +
  637 +.content_items .title .content_arrow_left:hover {
  638 + width: 10px;
  639 + height: 18px;
  640 + background: url(../images/content_arrow_left_hover.png) no-repeat
  641 +}
  642 +
  643 +.content_items .title .content_arrow_right {
  644 + width: 10px;
  645 + height: 18px;
  646 + background: url(../images/content_arrow_right.png) no-repeat
  647 +}
  648 +
  649 +.content_items .title .content_arrow_right:hover {
  650 + width: 10px;
  651 + height: 18px;
  652 + background: url(../images/content_arrow_right_hover.png) no-repeat
  653 +}
  654 +
  655 +.content_items .title .content_items_page {
  656 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  657 + color: #4a4a4a
  658 +}
  659 +
  660 +.align_bottom {
  661 + position: absolute;
  662 + bottom: 0;
  663 + width: 90%
  664 +}
  665 +
  666 +.items .one_item {
  667 + width: 165px;
  668 + min-height: 331px;
  669 + height: 331px;
  670 + margin: 20px 33px 45px 0;
  671 + text-align: center;
  672 + position: relative
  673 +}
  674 +
  675 +.subcategory .items .one_item,.search .items .one_item {
  676 + min-height: 410px;
  677 + width: 175px;
  678 + margin: 20px 95px 45px 0
  679 +}
  680 +
  681 +.subcategory_list .items .one_item {
  682 + min-height: 230px;
  683 + width: 100%;
  684 + margin: 20px 0 20px 0
  685 +}
  686 +
  687 +.subcategory_list .items .one_item .one_item_image {
  688 + margin: 0 0 10px 18px;
  689 + float: left
  690 +}
  691 +
  692 +.subcategory_list .items .one_item .align_bottom {
  693 + position: absolute;
  694 + text-align: left;
  695 + bottom: 0;
  696 + left: 200px
  697 +}
  698 +
  699 +.subcategory_list .items .one_item .align_bottom .one_item_buttons {
  700 + text-align: center;
  701 + margin: 0;
  702 + float: left;
  703 + display: inline
  704 +}
  705 +
  706 +.subcategory_list .items .one_item .align_bottom .one_item_compare {
  707 + float: left;
  708 + display: inline;
  709 + margin: 15px 0 0 10px
  710 +}
  711 +
  712 +.subcategory_list .items .one_item .one_item_title,.subcategory_list .items .one_item .one_item_description {
  713 + text-align: left
  714 +}
  715 +
  716 +.subcategory_list .items .one_item .one_item_title {
  717 + margin: 0 0 15px 200px
  718 +}
  719 +
  720 +.subcategory_list .items .one_item .one_item_description {
  721 + display: none
  722 +}
  723 +
  724 +.subcategory_list .items .one_item .one_item_content_description {
  725 + display: block;
  726 + text-align: left;
  727 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  728 + margin: 0 0 0 200px
  729 +}
  730 +
  731 +.one_item_description {
  732 + overflow: hidden;
  733 + height: 30px
  734 +}
  735 +
  736 +.items .one_item .new_top {
  737 + margin: 0 0 0 23px;
  738 + min-height: 18px
  739 +}
  740 +
  741 +.items .one_item .new_top div {
  742 + margin: 0 3px 0 0
  743 +}
  744 +
  745 +.items .one_item .one_item_image {
  746 + margin: 0 auto 10px auto;
  747 + display: inline-block;
  748 + position1: relative;
  749 + overflow: hidden;
  750 + min-width: 128px;
  751 + max-width: 175px;
  752 + height: 200px;
  753 + -webkit-box-shadow: 0 0 15px 0 rgba(50,50,50,0.75);
  754 + -moz-box-shadow: 0 0 15px 0 rgba(50,50,50,0.75);
  755 + box-shadow: 0 0 15px 0 rgba(50,50,50,0.75)
  756 +}
  757 +
  758 +.one_item_description {
  759 + font: normal 12px/14px Arial,Tahoma,sans-serif;
  760 + margin: 5px 0 0 0
  761 +}
  762 +
  763 +.one_item_content_description {
  764 + display: none
  765 +}
  766 +
  767 +.items .one_item .one_item_title a {
  768 + text-decoration: none
  769 +}
  770 +
  771 +.items .one_item .one_item_title a h3 {
  772 + font: bold 16px/20px Arial,Tahoma,sans-serif;
  773 + color: #464646
  774 +}
  775 +
  776 +.items .one_item .one_item_price {
  777 + font: normal 13px/15px Arial,Tahoma,sans-serif;
  778 + color: #f58025
  779 +}
  780 +
  781 +.items .one_item .one_item_price span {
  782 + font: bold 20px/22px Arial,Tahoma,sans-serif;
  783 + color: #f58025
  784 +}
  785 +
  786 +.items .one_item .one_item_buttons {
  787 + width: 80px;
  788 + margin: 10px
  789 +}
  790 +
  791 +.btn {
  792 + text-decoration: none;
  793 + font-size: 12px;
  794 + padding: 5px 4px;
  795 + margin: 10px 0;
  796 + -webkit-border-radius: 5px;
  797 + -moz-border-radius: 5px;
  798 + border-radius: 5px;
  799 + width: 70px
  800 +}
  801 +
  802 +.green:hover,.btv:hover {
  803 + text-decoration: none !important
  804 +}
  805 +
  806 +.grey {
  807 + color: #464646;
  808 + background: #fff;
  809 + background: -moz-linear-gradient(270deg,#fff 0,#ececec 100%);
  810 + background: -webkit-linear-gradient(270deg,#fff 0,#ececec 100%);
  811 + background: -o-linear-gradient(270deg,#fff 0,#ececec 100%);
  812 + background: -ms-linear-gradient(270deg,#fff 0,#ececec 100%);
  813 + background: linear-gradient(180deg,#fff 0,#ececec 100%);
  814 + border: 1px solid #e1e1e1
  815 +}
  816 +
  817 +.green {
  818 + color: #fff;
  819 + background: #4fa32c;
  820 + border: 1px solid #4fa32c;
  821 + margin: 10px 4px 10px 0
  822 +}
  823 +
  824 +.green:hover {
  825 + color: #fff;
  826 + background: #f36d00;
  827 + border: 1px solid #f36d00
  828 +}
  829 +
  830 +.green:focus {
  831 + color: #fff !important
  832 +}
  833 +
  834 +.not_available {
  835 + cursor: default;
  836 + text-decoration: none;
  837 + display: inline-block
  838 +}
  839 +
  840 +.not_available:hover {
  841 + text-decoration: none
  842 +}
  843 +
  844 +.one_item_compare label {
  845 + text-decoration: underline;
  846 + cursor: pointer
  847 +}
  848 +
  849 +.one_item_compare label:hover {
  850 + text-decoration: underline;
  851 + cursor: pointer;
  852 + color: #f36d00
  853 +}
  854 +
  855 +.content_accost {
  856 + background: #f5f5f5;
  857 + padding: 0 0 40px 0;
  858 + position: relative;
  859 + border-bottom: 2px solid #55a727
  860 +}
  861 +
  862 +.content_accost .shadow_to_down {
  863 + background: url(../images/shadow_to_down.png) no-repeat center center;
  864 + height: 22px;
  865 + text-align: center;
  866 + overflow: hidden
  867 +}
  868 +
  869 +.content_accost .content_accost_title,.content_accost .content_accost_title h1 {
  870 + padding: 18px 0 0 0;
  871 + text-transform: uppercase;
  872 + font: bold 16px/18px Arial,Tahoma,sans-serif
  873 +}
  874 +
  875 +.content_accost .content_accost_content h2 {
  876 + font: normal 14px/16px Arial,Tahoma,sans-serif;
  877 + padding: 10px 0 0 0
  878 +}
  879 +
  880 +.content_accost .content_accost_content h2 strong {
  881 + font-weight: bold
  882 +}
  883 +
  884 +.content_accost .content_accost_content p {
  885 + font: normal 13px/14px Arial,Tahoma,sans-serif;
  886 + padding: 10px 0 0 0
  887 +}
  888 +
  889 +.content_accost .content_accost_content p strong {
  890 + font-weight: bold
  891 +}
  892 +
  893 +.content_accost .content_accost_content ul {
  894 + font: normal 13px/14px Arial,Tahoma,sans-serif;
  895 + list-style: disc inside
  896 +}
  897 +
  898 +.content_accost .content_accost_content ul li {
  899 + margin: 2px 0 0 0
  900 +}
  901 +
  902 +.content_blog {
  903 + margin: 40px 0 30px 0;
  904 + min-height: 30px
  905 +}
  906 +
  907 +.content_blog .posts {
  908 + border-bottom1: 2px solid #d3d3d3;
  909 + padding: 0 0 20px 0;
  910 + margin: 0 0 60px 0
  911 +}
  912 +
  913 +.content_blog .text_posts,.content_blog .video_posts {
  914 + width: 460px;
  915 + margin: 0 40px 0 0
  916 +}
  917 +
  918 +.content_blog .text_posts .text_posts_title a {
  919 + padding: 18px 0 0 0;
  920 + text-transform: uppercase;
  921 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  922 + text-decoration: none
  923 +}
  924 +
  925 +.content_blog .text_posts .one_post.first {
  926 + width: 460px;
  927 + min-height: 130px;
  928 + margin: 10px 0 20px 0
  929 +}
  930 +
  931 +.content_blog .text_posts .one_post.first .one_post_content {
  932 + width: 260px;
  933 + margin: 0 0 0 20px
  934 +}
  935 +
  936 +.content_blog .text_posts .one_post.first .one_post_content .one_post_title a {
  937 + text-decoration: none;
  938 + font: bold 15px/18px Arial,Tahoma,sans-serif;
  939 + color: #464646
  940 +}
  941 +
  942 +.content_blog .text_posts .one_post.first .one_post_content .one_post_title a:hover {
  943 + text-decoration: none;
  944 + color: #464646
  945 +}
  946 +
  947 +.content_blog .text_posts .one_post.first p {
  948 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  949 + color: #4a4a4a;
  950 + padding: 0 0 5px 0
  951 +}
  952 +
  953 +.content_blog .text_posts .one_post.first a.more {
  954 + display: inline;
  955 + text-decoration: none
  956 +}
  957 +
  958 +.content_blog .text_posts .one_post {
  959 + width: 140px;
  960 + margin: 0 20px 0 0
  961 +}
  962 +
  963 +.content_blog .text_posts .one_post .one_post_image {
  964 + width: 180px
  965 +}
  966 +
  967 +.content_blog .text_posts .one_post .one_post_content .one_post_title a {
  968 + text-decoration: none;
  969 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  970 + color: #4a4a4a
  971 +}
  972 +
  973 +.content_blog .text_posts .one_post .one_post_content .one_post_title a:hover {
  974 + text-decoration: none
  975 +}
  976 +
  977 +.video_posts .one_video_title {
  978 + width: 150px;
  979 + margin: 10px 0 0 0
  980 +}
  981 +
  982 +.video_posts .one_video_title a,.video_posts .one_video_title a:hover {
  983 + text-decoration: none;
  984 + font: normal 13px/18px Arial,Tahoma,sans-serif;
  985 + color: #4a4a4a;
  986 + position: relative
  987 +}
  988 +
  989 +.video_posts .one_video_title a img {
  990 + float: left;
  991 + margin: 0 7px 1px 0
  992 +}
  993 +
  994 +.content_blog .links {
  995 + height: 70px
  996 +}
  997 +
  998 +.float.share {
  999 + float: right
  1000 +}
  1001 +
  1002 +.float.share .share_title {
  1003 + padding: 6px 0 0 0;
  1004 + margin: 0 5px 0 0
  1005 +}
  1006 +
  1007 +.pluso-wrap {
  1008 + background: #fff !important;
  1009 + border: 1px solid #e9e9e9;
  1010 + opacity: .45;
  1011 + -moz-opacity: .45;
  1012 + -khtml-opacity: .45
  1013 +}
  1014 +
  1015 +.pluso-wrap a {
  1016 + margin: 3px 0 0 5px !important
  1017 +}
  1018 +
  1019 +.float.share .pluso .pluso-more {
  1020 + display: none
  1021 +}
  1022 +
  1023 +#footer {
  1024 + margin: 0;
  1025 + padding: 0;
  1026 + position: relative;
  1027 + height: 5em
  1028 +}
  1029 +
  1030 +#footer .up {
  1031 + position: relative
  1032 +}
  1033 +
  1034 +#footer .up a {
  1035 + position: absolute;
  1036 + top: -18px;
  1037 + right: 0;
  1038 + z-index: 9
  1039 +}
  1040 +
  1041 +.map {
  1042 + height: 380px;
  1043 + margin: 0 0 60px 0
  1044 +}
  1045 +
  1046 +#content_map,#content_map2 {
  1047 + padding: 10px 20px;
  1048 + -webkit-border-radius: 5px;
  1049 + -moz-border-radius: 5px;
  1050 + border-radius: 5px;
  1051 + width: 250px
  1052 +}
  1053 +
  1054 +.content_map_1 {
  1055 + position: absolute !important;
  1056 + bottom: 0 !important
  1057 +}
  1058 +
  1059 +.map_shadow {
  1060 + height: 5px;
  1061 + webkit-box-shadow: inset 0 3px 10px 0 rgba(0,0,0,0.75);
  1062 + -moz-box-shadow: inset 0 3px 10px 0 rgba(0,0,0,0.75);
  1063 + box-shadow: inset 0 3px 10px 0 rgba(0,0,0,0.75)
  1064 +}
  1065 +
  1066 +#content_map .content_map_title,#content_map2 .content_map_title {
  1067 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  1068 + color: #4fa32c
  1069 +}
  1070 +
  1071 +#content_map p,#content_map2 p {
  1072 + font: normal 14px/16px Arial,Tahoma,sans-serif;
  1073 + margin: 3px 0 0 0
  1074 +}
  1075 +
  1076 +#content_map .email {
  1077 + background: url(../images/mail.png) no-repeat 0 30%;
  1078 + padding: 0 0 10px 20px
  1079 +}
  1080 +
  1081 +.copyright {
  1082 + background: #4fa32c;
  1083 + height: 5em;
  1084 + color: #fff
  1085 +}
  1086 +
  1087 +.copyright .float {
  1088 + margin: 25px 0 0 0
  1089 +}
  1090 +
  1091 +.copyright .float.copyright_logo_margin {
  1092 + margin: 20px 50px 0 0
  1093 +}
  1094 +
  1095 +.copyright a,.copyright a:hover {
  1096 + color: #fff
  1097 +}
  1098 +
  1099 +.copyright .float_right,.float_right {
  1100 + float: right
  1101 +}
  1102 +
  1103 +.catalog_slider {
  1104 + background: url(../images/catalog_slider.jpg) no-repeat center center;
  1105 + height: 190px;
  1106 + text-align: center;
  1107 + overflow: hidden
  1108 +}
  1109 +
  1110 +.catalog_slider .catalog_description {
  1111 + margin: 50px 0 0 0;
  1112 + width: 365px;
  1113 + height: 100px;
  1114 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  1115 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  1116 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75)
  1117 +}
  1118 +
  1119 +.catalog_slider .catalog_description.logo1 {
  1120 + background: #53a726
  1121 +}
  1122 +
  1123 +.catalog_slider .catalog_description.logo2 {
  1124 + background: #b12b2c
  1125 +}
  1126 +
  1127 +.catalog_slider .catalog_description.logo3 {
  1128 + background: #f36d01
  1129 +}
  1130 +
  1131 +.catalog_slider .catalog_description.logo4 {
  1132 + background: #1b7781
  1133 +}
  1134 +
  1135 +.catalog_slider .catalog_description.logo5 {
  1136 + background: #db0565
  1137 +}
  1138 +
  1139 +.catalog_slider .catalog_description.logo6 {
  1140 + background: #935927
  1141 +}
  1142 +
  1143 +.catalog_slider .catalog_description.logo479 {
  1144 + background: #b1873f
  1145 +}
  1146 +
  1147 +.catalog_slider .catalog_description .catalog_description_content {
  1148 + width: 225px;
  1149 + margin: 20px 0 0 0;
  1150 + text-align: left
  1151 +}
  1152 +
  1153 +.catalog_slider .catalog_description .catalog_description_content .catalog_description_title {
  1154 + margin: 0 0 5px 0
  1155 +}
  1156 +
  1157 +.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a,.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a:hover {
  1158 + font-size: 15px;
  1159 + text-transform: uppercase;
  1160 + color: #fff;
  1161 + text-decoration: none
  1162 +}
  1163 +
  1164 +.catalog_slider .catalog_description .catalog_description_content p {
  1165 + color: #fff
  1166 +}
  1167 +
  1168 +.breadcrumbs {
  1169 + background: #ebebeb
  1170 +}
  1171 +
  1172 +.breadcrumbs ul {
  1173 + padding: 15px 0
  1174 +}
  1175 +
  1176 +.breadcrumbs ul li {
  1177 + padding: 0 4px 0 0
  1178 +}
  1179 +
  1180 +.breadcrumbs ul li a.breadcrumbs_last,.breadcrumbs ul li a.breadcrumbs_last:hover {
  1181 + text-decoration: none
  1182 +}
  1183 +
  1184 +.search .sidebar_content_wrapper,.catalog .sidebar_content_wrapper,.subcategory .sidebar_content_wrapper,.subcategory_list .sidebar_content_wrapper,.cabinet .sidebar_content_wrapper {
  1185 + margin: 20px 0 0 0;
  1186 + min-height: 300px
  1187 +}
  1188 +
  1189 +.catalog #sidebar,.search #sidebar,.subcategory #sidebar,.subcategory_list #sidebar {
  1190 + width: 185px;
  1191 + margin: 0 55px 20px 0
  1192 +}
  1193 +
  1194 +.search #sidebar ul li a,.catalog #sidebar ul li a {
  1195 + font: italic 13px/20px Arial,Tahoma,sans-serif
  1196 +}
  1197 +
  1198 +.search #sidebar ul li ul {
  1199 + font: italic 12px/20px Arial,Tahoma,sans-serif;
  1200 + margin: 0 0 0 10px
  1201 +}
  1202 +
  1203 +.search #content_wrapper,.catalog #content_wrapper,.subcategory #content_wrapper,.subcategory_list #content_wrapper,.cabinet #content_wrapper {
  1204 + width: 720px
  1205 +}
  1206 +
  1207 +.catalog #content_wrapper ul li {
  1208 + margin: 0 20px 0 0;
  1209 + text-align: center;
  1210 + min-height: 185px
  1211 +}
  1212 +
  1213 +.catalog #content_wrapper ul li a,.catalog #content_wrapper ul li a:hover {
  1214 + font: bold 14px/20px Arial,Tahoma,sans-serif;
  1215 + text-decoration: none;
  1216 + width: 165px
  1217 +}
  1218 +
  1219 +.catalog .content_accost,.subcategory .content_accost,.subcategory_list .content_accost,.item .content_accost {
  1220 + background: #f5f5f5;
  1221 + padding: 0 0 40px 0;
  1222 + position: relative;
  1223 + border-bottom: 0
  1224 +}
  1225 +
  1226 +.subcategory_sidebar_title h3 {
  1227 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  1228 + color: #4fa32c
  1229 +}
  1230 +
  1231 +.subcategory_sidebar_title p {
  1232 + font: bold 13px/15px Arial,Tahoma,sans-serif;
  1233 + margin: 15px 0 10px 0
  1234 +}
  1235 +
  1236 +.subcategory_sidebar_title .vip_icon {
  1237 + margin-left: 20px;
  1238 + float: right
  1239 +}
  1240 +
  1241 +ul#subcategory_menu {
  1242 + width: 220px;
  1243 + list-style: none
  1244 +}
  1245 +
  1246 +ul.last {
  1247 + border-bottom: 1px solid #e3e3e3
  1248 +}
  1249 +
  1250 +ul#subcategory_menu li .main {
  1251 + text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  1252 + cursor: pointer;
  1253 + margin: 0;
  1254 + padding: 6px 0 6px 10px;
  1255 + background: #fefefe;
  1256 + background: -moz-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);
  1257 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fefefe),color-stop(0,#1e5799),color-stop(0,#fefefe),color-stop(100%,#ededed),color-stop(100%,#ededed));
  1258 + background: -webkit-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);
  1259 + background: -o-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);
  1260 + background: -ms-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);
  1261 + background: linear-gradient(to bottom,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);
  1262 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe',endColorstr='#ededed',GradientType=0);
  1263 + border: 1px solid #e0e0e0;
  1264 + text-decoration: none;
  1265 + font: bold 13px/16px Arial,Tahoma,sans-serif;
  1266 + display: block
  1267 +}
  1268 +
  1269 +.subcategory_menu_closed.main {
  1270 + border-bottom: 0 !important
  1271 +}
  1272 +
  1273 +ul#subcategory_menu .main .float.dropdown {
  1274 + width: 25px;
  1275 + height: 12px;
  1276 + float: right;
  1277 + background: url(../images/dropdown.png) 0 100% no-repeat;
  1278 + cursor: pointer
  1279 +}
  1280 +
  1281 +ul#subcategory_menu .subcategory_menu_closed.main .float.dropdown {
  1282 + width: 20px;
  1283 + height: 12px;
  1284 + float: right;
  1285 + background: url(../images/dropdown_closed.png) 0 100% no-repeat;
  1286 + cursor: pointer
  1287 +}
  1288 +
  1289 +ul#subcategory_menu li ul {
  1290 + border-left: 1px solid #e0e0e0;
  1291 + border-right: 1px solid #e0e0e0;
  1292 + border-top: 0;
  1293 + padding: 5px 0 15px 15px
  1294 +}
  1295 +
  1296 +ul#subcategory_menu li ul li {
  1297 + padding: 10px 0 0 0
  1298 +}
  1299 +
  1300 +ul#subcategory_menu li ul li a {
  1301 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  1302 + text-decoration: none
  1303 +}
  1304 +
  1305 +ul#subcategory_menu li.subcategory_menu_last_child {
  1306 + padding: 0 0 27px 0;
  1307 + background: url(../images/sidebar_shadow.png) 0 100% no-repeat
  1308 +}
  1309 +
  1310 +input[type="checkbox"] {
  1311 + display: none
  1312 +}
  1313 +
  1314 +input[type="checkbox"]+label span {
  1315 + display: inline-block;
  1316 + vertical-align: middle;
  1317 + width: 13px;
  1318 + height: 13px;
  1319 + margin: -1px 4px 0 0;
  1320 + background: url(../images/check.png) no-repeat 0 0;
  1321 + cursor: pointer
  1322 +}
  1323 +
  1324 +input[type="checkbox"]:checked+label span {
  1325 + background: url(../images/check.png) no-repeat 0 -26px
  1326 +}
  1327 +
  1328 +#slider {
  1329 + margin: 5px 5px 5px 10px
  1330 +}
  1331 +
  1332 +.border_for_slider {
  1333 + border: 1px solid #e0e0e0;
  1334 + margin: 0 20px 20px 10px;
  1335 + border-radius: 11px;
  1336 + -moz-border-radius: 11px;
  1337 + -webkit-border-radius: 11px;
  1338 + webkit-box-shadow: inset 0 2px 6px 0 #e0e0e0;
  1339 + -moz-box-shadow: inset 0 2px 6px 0 #e0e0e0;
  1340 + box-shadow: inset 0 2px 6px 0 #e0e0e0
  1341 +}
  1342 +
  1343 +.ui-widget-header {
  1344 + background: #57af3e !important
  1345 +}
  1346 +
  1347 +#slider.ui-widget-content {
  1348 + background: #acacac !important;
  1349 + border: 0 !important
  1350 +}
  1351 +
  1352 +.ui-slider-horizontal {
  1353 + height: 8px !important
  1354 +}
  1355 +
  1356 +.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default {
  1357 + background: url(../images/state.png) 50% 50% no-repeat !important;
  1358 + border: 0 !important
  1359 +}
  1360 +
  1361 +.ui-state-focus {
  1362 + border: 0 !important
  1363 +}
  1364 +
  1365 +.price_slider_container {
  1366 + padding: 40px 0 40px 0;
  1367 + border: 1px solid #e0e0e0;
  1368 + border-top: 0
  1369 +}
  1370 +
  1371 +.price_ok,.alert_button {
  1372 + margin: 0 0 0 10px;
  1373 + -moz-box-shadow: inset 0 1px 0 0 #fff;
  1374 + -webkit-box-shadow: inset 0 1px 0 0 #fff;
  1375 + box-shadow: inset 0 1px 0 0 #fff;
  1376 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f9f9f9),color-stop(1,#e9e9e9));
  1377 + background: -moz-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);
  1378 + background: -webkit-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);
  1379 + background: -o-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);
  1380 + background: -ms-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);
  1381 + background: linear-gradient(to bottom,#f9f9f9 5%,#e9e9e9 100%);
  1382 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9',endColorstr='#e9e9e9',GradientType=0);
  1383 + background-color: #f9f9f9;
  1384 + -moz-border-radius: 6px;
  1385 + -webkit-border-radius: 6px;
  1386 + border-radius: 6px;
  1387 + border: 1px solid #dcdcdc;
  1388 + display: inline-block;
  1389 + cursor: pointer;
  1390 + color: #666;
  1391 + font-weight: bold;
  1392 + padding: 6px 8px;
  1393 + text-decoration: none;
  1394 + text-shadow: 0 1px 0 #fff
  1395 +}
  1396 +
  1397 +.price_ok:hover {
  1398 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#e9e9e9),color-stop(1,#f9f9f9));
  1399 + background: -moz-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);
  1400 + background: -webkit-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);
  1401 + background: -o-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);
  1402 + background: -ms-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);
  1403 + background: linear-gradient(to bottom,#e9e9e9 5%,#f9f9f9 100%);
  1404 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9',endColorstr='#f9f9f9',GradientType=0);
  1405 + background-color: #e9e9e9
  1406 +}
  1407 +
  1408 +.price_slider_container label {
  1409 + font: normal 13px/14px Arial,Tahoma,sans-serif;
  1410 + margin: 5px 5px 0 7px
  1411 +}
  1412 +
  1413 +.price_slider_container input {
  1414 + width: 38px;
  1415 + margin: 0;
  1416 + padding: 5px 6px;
  1417 + border: 1px solid #c2c2c2;
  1418 + border-radius: 5px;
  1419 + -moz-border-radius: 5px;
  1420 + -webkit-border-radius: 5px;
  1421 + box-shadow: inset 1px 1px 3px #bbb;
  1422 + -moz-box-shadow: inset 1px 1px 3px #bbb;
  1423 + -webkit-box-shadow: inset 1px 1px 3px #bbb;
  1424 + background: #f5f5f5
  1425 +}
  1426 +
  1427 +.value {
  1428 + position: absolute;
  1429 + top: -30px;
  1430 + left: -70%;
  1431 + padding: 3px;
  1432 + text-align: center;
  1433 + display: block;
  1434 + border: 1px solid #b7b7b7;
  1435 + font: normal 12px/12px Arial,Tahoma,sans-serif;
  1436 + border-radius: 5px;
  1437 + -moz-border-radius: 5px;
  1438 + -webkit-border-radius: 5px;
  1439 + -webkit-box-shadow: 0 0 5px 0 #b7b7b7;
  1440 + -moz-box-shadow: 0 0 5px 0 #b7b7b7;
  1441 + box-shadow: 0 0 5px 0 #b7b7b7;
  1442 + background: #fff;
  1443 + background: #fff;
  1444 + background: -moz-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);
  1445 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#eee),color-stop(100%,#eee),color-stop(100%,#eee));
  1446 + background: -webkit-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);
  1447 + background: -o-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);
  1448 + background: -ms-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);
  1449 + background: linear-gradient(to bottom,#fff 0,#eee 100%,#eee 100%,#eee 100%);
  1450 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0)
  1451 +}
  1452 +
  1453 +.range {
  1454 + position: absolute;
  1455 + top: -12px;
  1456 + left: 15%;
  1457 + margin: 0;
  1458 + width: 12px;
  1459 + height: 9px;
  1460 + text-align: center;
  1461 + display: block;
  1462 + background: url(../images/price_box.png) 100% 100% no-repeat
  1463 +}
  1464 +
  1465 +.price-range-both.value {
  1466 + width: 100px;
  1467 + margin: 0 0 0 -50px;
  1468 + top: 26px
  1469 +}
  1470 +
  1471 +.price-range-both {
  1472 + display: none
  1473 +}
  1474 +
  1475 +.value i {
  1476 + font-style: normal
  1477 +}
  1478 +
  1479 +#content_wrapper .content_wrapper_header {
  1480 + margin: 0 0 20px 0
  1481 +}
  1482 +
  1483 +#content_wrapper .content_wrapper_header .content_wrapper_header_filters div {
  1484 + font: normal 12px/14px Arial,Tahoma,sans-serif;
  1485 + margin: 0 3px;
  1486 + padding: 2px 2px 2px 5px;
  1487 + background: #efefef;
  1488 + border-radius: 3px;
  1489 + -moz-border-radius: 3px;
  1490 + -webkit-border-radius: 3px
  1491 +}
  1492 +
  1493 +#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a,#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a:hover {
  1494 + text-decoration: none;
  1495 + padding: 0 15px 0 0;
  1496 + background: url(../images/close_filter.png) 100% 50% no-repeat
  1497 +}
  1498 +
  1499 +.empty_filters {
  1500 + background: #fff !important
  1501 +}
  1502 +
  1503 +.empty_filters a {
  1504 + text-decoration: underline !important;
  1505 + color: #417e24 !important;
  1506 + padding: 0 !important;
  1507 + background: #fff !important
  1508 +}
  1509 +
  1510 +.content_wrapper_header_menu,.item_menu_header_menu {
  1511 + margin: 20px 0 0 0;
  1512 + background: url(../images/line_menu.png) 100% 100% repeat-x
  1513 +}
  1514 +
  1515 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .padding_60 {
  1516 + padding-left: 57px
  1517 +}
  1518 +
  1519 +.tabs {
  1520 + margin: 0 15px 0 0;
  1521 + padding: 0 0 0 20px
  1522 +}
  1523 +
  1524 +.tabs ul li {
  1525 + padding: 8px 20px 8px 20px;
  1526 + height: 14px;
  1527 + border: 2px solid transparent;
  1528 + border-bottom: 2px solid #c4c4c4
  1529 +}
  1530 +
  1531 +.tabs ul li.not_active {
  1532 + height: 14px
  1533 +}
  1534 +
  1535 +.tabs ul li a {
  1536 + font: bold 13px/14px Arial,Tahoma,sans-serif;
  1537 + padding: 0;
  1538 + text-decoration: none
  1539 +}
  1540 +
  1541 +.tabs ul li.active_tab {
  1542 + border: 2px solid #c4c4c4;
  1543 + border-bottom: 2px solid #fff;
  1544 + border-radius: 5px 5px 0 0;
  1545 + -moz-border-radius: 5px 5px 0 0;
  1546 + -webkit-border-radius: 5px 5px 0 0;
  1547 + background: #fff !important;
  1548 + color: #464646 !important
  1549 +}
  1550 +
  1551 +.tabs ul li.active_tab a {
  1552 + color: #464646 !important
  1553 +}
  1554 +
  1555 +.tabs ul li.tabs_new_items {
  1556 + background: #b12b2c;
  1557 + border-radius: 5px 5px 0 0;
  1558 + -moz-border-radius: 5px 5px 0 0;
  1559 + -webkit-border-radius: 5px 5px 0 0;
  1560 + margin: 0 1px
  1561 +}
  1562 +
  1563 +.tabs ul li.tabs_top_items {
  1564 + background: #f36c00;
  1565 + border-radius: 5px 5px 0 0;
  1566 + -moz-border-radius: 5px 5px 0 0;
  1567 + -webkit-border-radius: 5px 5px 0 0
  1568 +}
  1569 +
  1570 +.tabs ul li.tabs_all_items {
  1571 + background: #4fa32c;
  1572 + border-radius: 5px 5px 0 0;
  1573 + -moz-border-radius: 5px 5px 0 0;
  1574 + -webkit-border-radius: 5px 5px 0 0
  1575 +}
  1576 +
  1577 +.tabs ul li.tabs_all_items a,.tabs ul li.tabs_new_items a,.tabs ul li.tabs_top_items a {
  1578 + color: #fff
  1579 +}
  1580 +
  1581 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists {
  1582 + margin: 10px 20px 0 0;
  1583 + cursor: pointer
  1584 +}
  1585 +
  1586 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs {
  1587 + background: url(../images/thumbs.png) 100% 50% no-repeat;
  1588 + width: 11px;
  1589 + height: 11px
  1590 +}
  1591 +
  1592 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs:hover {
  1593 + background: url(../images/thumbs_active.png) 100% 50% no-repeat;
  1594 + width: 11px;
  1595 + height: 11px
  1596 +}
  1597 +
  1598 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists {
  1599 + background: url(../images/lists.png) 100% 50% no-repeat;
  1600 + width: 11px;
  1601 + height: 11px
  1602 +}
  1603 +
  1604 +#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists:hover {
  1605 + background: url(../images/lists_active.png) 100% 50% no-repeat;
  1606 + width: 11px;
  1607 + height: 11px
  1608 +}
  1609 +
  1610 +.sort_price {
  1611 + margin: 10px 10px 0 0
  1612 +}
  1613 +
  1614 +.sort_price a {
  1615 + color: #417e24
  1616 +}
  1617 +
  1618 +.sort_price.last {
  1619 + padding: 0 15px 0 0;
  1620 + background: url(../images/sort_arrow.png) 100% 50% no-repeat;
  1621 + position: relative
  1622 +}
  1623 +
  1624 +.sort_price.last .sort_price_dropdown {
  1625 + position: absolute;
  1626 + border: 1px solid #e0e0e0;
  1627 + z-index: 45;
  1628 + background: #fff;
  1629 + font-size: 12px;
  1630 + margin: 3px 0 0 0;
  1631 + padding: 2px;
  1632 + top: 13px;
  1633 + left: 3px;
  1634 + width: 140px
  1635 +}
  1636 +
  1637 +.sort_price.last .sort_price_dropdown a {
  1638 + text-decoration: none;
  1639 + padding: 0 0 2px 0
  1640 +}
  1641 +
  1642 +.sort_price.last .sort_price_dropdown a:hover {
  1643 + color: #f58025
  1644 +}
  1645 +
  1646 +.paginate {
  1647 + margin: 0 auto 0 auto;
  1648 + display: table;
  1649 + list-style: none
  1650 +}
  1651 +
  1652 +.paginate ul {
  1653 + margin: 20px 0 20px 0
  1654 +}
  1655 +
  1656 +.paginate li {
  1657 + float: left
  1658 +}
  1659 +
  1660 +.paginate ul li a {
  1661 + text-decoration: none;
  1662 + font: bold 20px/24px Arial,Tahoma,sans-serif;
  1663 + color: #4fa32c;
  1664 + padding: 0 10px 0 10px
  1665 +}
  1666 +
  1667 +.paginate ul li a.current {
  1668 + text-decoration: none;
  1669 + font: bold 16px/24px Arial,Tahoma,sans-serif;
  1670 + color: #707070
  1671 +}
  1672 +
  1673 +.item_menu_shadow {
  1674 + background: #ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;
  1675 + padding: 20px 0 0 0;
  1676 + width: 946px;
  1677 + height: 27px
  1678 +}
  1679 +
  1680 +.item .breadcrumbs ul {
  1681 + padding: 5px 0 20px 0
  1682 +}
  1683 +
  1684 +.item .item_wrapper .item_images {
  1685 + width: 400px;
  1686 + margin: 20px 20px 20px 0
  1687 +}
  1688 +
  1689 +.item .item_wrapper .item_images .width_400 {
  1690 + margin: 0 0 10px 0;
  1691 + position: relative
  1692 +}
  1693 +
  1694 +.item .item_wrapper .item_images .width_400 .previous_image {
  1695 + position: absolute;
  1696 + background: url(../images/main_photo_arrow_left.png) 0 0 no-repeat;
  1697 + width: 28px;
  1698 + height: 28px;
  1699 + bottom: 8px;
  1700 + left: 5px
  1701 +}
  1702 +
  1703 +.item .item_wrapper .item_images .width_400 .next_image {
  1704 + position: absolute;
  1705 + background: url(../images/main_photo_arrow_right.png) 0 0 no-repeat;
  1706 + width: 28px;
  1707 + height: 28px;
  1708 + bottom: 8px;
  1709 + left: 34px
  1710 +}
  1711 +
  1712 +.item .item_wrapper .item_images .width_400 .zoom_image {
  1713 + position: absolute;
  1714 + background: url(../images/zoom.png) 0 0 no-repeat;
  1715 + width: 28px;
  1716 + height: 28px;
  1717 + bottom: 8px;
  1718 + right: 5px
  1719 +}
  1720 +
  1721 +.item .item_wrapper .item_images .width_128 {
  1722 + margin: 0 5px 0 0;
  1723 + border: 1px solid #e0e0e0;
  1724 + height: 130px
  1725 +}
  1726 +
  1727 +.item .item_wrapper .item_content {
  1728 + width: 520px;
  1729 + margin: 20px 0 20px 0
  1730 +}
  1731 +
  1732 +.item .item_wrapper .item_content .item_title {
  1733 + margin: 5px 0 5px 0
  1734 +}
  1735 +
  1736 +.item .item_wrapper .item_content .item_decription {
  1737 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  1738 + margin: 0 0 20px 0
  1739 +}
  1740 +
  1741 +.item .item_wrapper .item_content .properties {
  1742 + font: normal 14px/16px Arial,Tahoma,sans-serif;
  1743 + margin: 5px 0 10px 0;
  1744 + min-width: 100px
  1745 +}
  1746 +
  1747 +.item .item_wrapper .item_content .properties_article {
  1748 + font: bold 14px/16px Arial,Tahoma,sans-serif
  1749 +}
  1750 +
  1751 +.item .item_wrapper .item_content .properties_producer a {
  1752 + color: #f36d00
  1753 +}
  1754 +
  1755 +.item .item_wrapper .item_content .properties_presence {
  1756 + color: #417e24
  1757 +}
  1758 +
  1759 +.item .item_wrapper .item_content .properties_absent {
  1760 + font-weight: bold;
  1761 + color: #ae2328
  1762 +}
  1763 +
  1764 +.item .item_wrapper .item_content .minus {
  1765 + background: url(../images/minus.png) 0 100% no-repeat;
  1766 + width: 12px;
  1767 + height: 15px;
  1768 + padding: 0 5px 0 0;
  1769 + cursor: pointer
  1770 +}
  1771 +
  1772 +.item .item_wrapper .item_content .plus {
  1773 + background: url(../images/plus.png) 50% 55% no-repeat;
  1774 + width: 12px;
  1775 + height: 24px;
  1776 + padding: 0 0 0 10px;
  1777 + cursor: pointer
  1778 +}
  1779 +
  1780 +.item .item_wrapper .item_content .count_items {
  1781 + width: 30px;
  1782 + margin: 0;
  1783 + padding: 4px 6px;
  1784 + border: 1px solid #c2c2c2;
  1785 + border-radius: 5px;
  1786 + -moz-border-radius: 5px;
  1787 + -webkit-border-radius: 5px;
  1788 + box-shadow: inset 1px 1px 3px #bbb;
  1789 + -moz-box-shadow: inset 1px 1px 3px #bbb;
  1790 + -webkit-box-shadow: inset 1px 1px 3px #bbb;
  1791 + background: #f5f5f5;
  1792 + text-align: center;
  1793 + font: normal 15px/16px Arial,Tahoma,sans-serif;
  1794 + color: #464646
  1795 +}
  1796 +
  1797 +.item .item_wrapper .item_content .colors {
  1798 + margin: 10px 0 0 0
  1799 +}
  1800 +
  1801 +.item .item_wrapper .item_content .packing {
  1802 + min-height: 60px;
  1803 + position: relative
  1804 +}
  1805 +
  1806 +.item .item_wrapper .item_content .packing .properties {
  1807 + position: absolute;
  1808 + bottom: 0;
  1809 + margin-bottom: 0
  1810 +}
  1811 +
  1812 +.item .item_wrapper .item_content .packing_images {
  1813 + position: absolute;
  1814 + bottom: 0;
  1815 + left: 100px
  1816 +}
  1817 +
  1818 +.item .item_wrapper .item_content .packing_images .group_sizes,.group_sizes,.table_cell4 .group_sizes,.basket_element_prepack .group_sizes {
  1819 + min-height: 35px;
  1820 + min-width: 31px;
  1821 + border: 1px solid #e0e0e0;
  1822 + margin: 0 10px 0 0;
  1823 + position: relative;
  1824 + display: inline-block
  1825 +}
  1826 +
  1827 +.item .item_wrapper .item_content .packing_images .group_sizes:hover,.item .item_wrapper .item_content .packing_images .group_sizes.active,.group_sizes:hover,.group_sizes.active,.table_cell4 .group_sizes.active {
  1828 + border: 1px solid #4fa32c
  1829 +}
  1830 +
  1831 +.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover {
  1832 + border: 1px solid #e0e0e0
  1833 +}
  1834 +
  1835 +.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_header,.group_sizes .group_sizes_header {
  1836 + position: absolute;
  1837 + top: 5px;
  1838 + width: 100%;
  1839 + height: 3px;
  1840 + text-align: center;
  1841 + background: url(../images/pack.png) 50% 0 no-repeat
  1842 +}
  1843 +
  1844 +.item .item_wrapper .item_content .packing_images .group_sizes:hover .group_sizes_header,.item .item_wrapper .item_content .packing_images .group_sizes.active .group_sizes_header,.group_sizes:hover .group_sizes_header,.group_sizes.active .group_sizes_header {
  1845 + position: absolute;
  1846 + top: 5px;
  1847 + width: 100%;
  1848 + height: 3px;
  1849 + text-align: center;
  1850 + background: url(../images/pack_hover.png) 50% 0 no-repeat
  1851 +}
  1852 +
  1853 +.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover .group_sizes_header {
  1854 + background: url(../images/pack.png) 50% 0 no-repeat
  1855 +}
  1856 +
  1857 +.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_content,.group_sizes .group_sizes_content {
  1858 + position: absolute;
  1859 + bottom: 0;
  1860 + width: 100%;
  1861 + text-align: center;
  1862 + font-size: 11px;
  1863 + white-space: pre-line;
  1864 + line-height: 11px;
  1865 + overflow: hidden
  1866 +}
  1867 +
  1868 +.item .item_wrapper .item_content .buy_compare {
  1869 + min-height: 60px;
  1870 + width: 100%;
  1871 + background: #f5f5f5;
  1872 + margin: 15px 0
  1873 +}
  1874 +
  1875 +.item .item_wrapper .item_content .buy_compare .one_item_price {
  1876 + font: normal 13px/15px Arial,Tahoma,sans-serif;
  1877 + color: #f58025;
  1878 + margin: 18px 0 0 20px
  1879 +}
  1880 +
  1881 +.item .item_wrapper .item_content .buy_compare .one_item_price span {
  1882 + font: bold 20px/22px Arial,Tahoma,sans-serif
  1883 +}
  1884 +
  1885 +.item .item_wrapper .item_content .buy_compare .one_item_buttons {
  1886 + width: 80px;
  1887 + margin: 18px 0 0 20px
  1888 +}
  1889 +
  1890 +.item .item_wrapper .item_content .buy_compare .btn {
  1891 + text-decoration: none;
  1892 + font-size: 12px;
  1893 + padding: 5px 4px;
  1894 + -webkit-border-radius: 5px;
  1895 + -moz-border-radius: 5px;
  1896 + border-radius: 5px;
  1897 + width: 70px
  1898 +}
  1899 +
  1900 +.green:hover,.btv:hover {
  1901 + text-decoration: none !important
  1902 +}
  1903 +
  1904 +.item .item_wrapper .item_content .buy_compare .green {
  1905 + color: #fff;
  1906 + background: #4fa32c;
  1907 + border: 1px solid #4fa32c;
  1908 + margin: 0;
  1909 + text-align: center
  1910 +}
  1911 +
  1912 +.grey {
  1913 + text-decoration: none;
  1914 + font-family: calibri;
  1915 + font-size: 14px;
  1916 + color: #474747;
  1917 + padding: 5px 8px 6px 7px;
  1918 + border-top: 1px solid #eaeaea;
  1919 + border-bottom: 1px solid #a3a3a3;
  1920 + border-left: 1px solid #d7d7d7;
  1921 + border-right: 1px solid #c3c3c3;
  1922 + -moz-border-radius: 5px;
  1923 + -webkit-border-radius: 5px;
  1924 + border-radius: 5px;
  1925 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff',endColorstr = '#ececec');
  1926 + -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec')";
  1927 + background-image: -moz-linear-gradient(top,#fff,#ececec);
  1928 + background-image: -ms-linear-gradient(top,#fff,#ececec);
  1929 + background-image: -o-linear-gradient(top,#fff,#ececec);
  1930 + background-image: -webkit-gradient(linear,center top,center bottom,from(#fff),to(#ececec));
  1931 + background-image: -webkit-linear-gradient(top,#fff,#ececec);
  1932 + background-image: linear-gradient(top,#fff,#ececec);
  1933 + -moz-background-clip: padding;
  1934 + -webkit-background-clip: padding-box;
  1935 + background-clip: padding-box
  1936 +}
  1937 +
  1938 +.items .one_item .one_item_buttons .btn,.compare_items .compare_items_table table th .btn {
  1939 + display: inline;
  1940 + margin: 3px
  1941 +}
  1942 +
  1943 +.green:hover {
  1944 + color: #fff
  1945 +}
  1946 +
  1947 +.item .item_wrapper .item_content .buy_compare .one_item_compare {
  1948 + margin: 24px 0 0 20px
  1949 +}
  1950 +
  1951 +.item .item_wrapper .item_content .buy_compare .one_item_compare label {
  1952 + text-decoration: underline;
  1953 + cursor: pointer
  1954 +}
  1955 +
  1956 +.item .item_wrapper .item_content .features {
  1957 + margin: 0 0 20px 0;
  1958 + min-height: 30px
  1959 +}
  1960 +
  1961 +.item .item_wrapper .item_content .features a {
  1962 + margin: 0 5px 0 0;
  1963 + color: #417e24
  1964 +}
  1965 +
  1966 +.item .item_wrapper .item_content .item_menu_content {
  1967 + margin: 20px 0;
  1968 + font: normal 13px/16px Arial,Tahoma,sans-serif
  1969 +}
  1970 +
  1971 +.item .item_wrapper .item_content .item_menu_content .tabs_properties p.key_value {
  1972 + min-width: 150px
  1973 +}
  1974 +
  1975 +.item .item_wrapper .item_content .item_menu_content .item_menu_content_wrapper div {
  1976 + margin: 0 0 10px 0
  1977 +}
  1978 +
  1979 +.item .one_item {
  1980 + min-height: 410px
  1981 +}
  1982 +
  1983 +.item .other_items {
  1984 + min-height: 510px
  1985 +}
  1986 +
  1987 +#content_subnav {
  1988 + position: absolute;
  1989 + top: 165px;
  1990 + border: 2px solid #67b73e;
  1991 + padding: 0 20px;
  1992 + background: #f5f5f5;
  1993 + z-index: 999;
  1994 + width: 915px;
  1995 + -webkit-border-radius: 5px;
  1996 + -moz-border-radius: 5px;
  1997 + border-radius: 5px;
  1998 + -webkit-box-shadow: 0 1px 10px 0 rgba(50,50,50,0.75);
  1999 + -moz-box-shadow: 0 1px 10px 0 rgba(50,50,50,0.75);
  2000 + box-shadow: 0 1px 10px 0 rgba(50,50,50,0.75)
  2001 +}
  2002 +
  2003 +#content_subnav h2 {
  2004 + font-size: 15px;
  2005 + text-transform: uppercase;
  2006 + margin: 20px 0 0 0
  2007 +}
  2008 +
  2009 +#content_subnav .content_nav_first_floor {
  2010 + padding: 20px 0 15px 0;
  2011 + margin: 0 0 20px 0;
  2012 + border-bottom: 1px solid #cdcdcd
  2013 +}
  2014 +
  2015 +#content_subnav .content_nav_first_floor .content_nav_logo {
  2016 + padding: 0 40px 0 0;
  2017 + width: 150px
  2018 +}
  2019 +
  2020 +#content_subnav .content_nav_logo a {
  2021 + text-decoration: none
  2022 +}
  2023 +
  2024 +#content_subnav .content_nav_first_floor .content_nav_items {
  2025 + text-align: justify;
  2026 + column-count: 4;
  2027 + -moz-column-count: 4;
  2028 + -webkit-column-count: 4;
  2029 + column-gap: 40px;
  2030 + -moz-column-gap: 40px;
  2031 + -webkit-column-gap: 40px;
  2032 + column-width: 150px;
  2033 + -moz-column-width: 150px;
  2034 + -webkit-column-width: 150px;
  2035 + min-height: 150px
  2036 +}
  2037 +
  2038 +#content_subnav .content_nav_first_floor .content_nav_items a,.content_nav_items a {
  2039 + font-size: 13px;
  2040 + line-height: 21px;
  2041 + font-style: italic
  2042 +}
  2043 +
  2044 +.content_nav_second_floor .float {
  2045 + padding: 0 40px 20px 0;
  2046 + width: 150px
  2047 +}
  2048 +
  2049 +.shadow_to_top {
  2050 + background: url(../images/shadow.png) no-repeat center center;
  2051 + height: 22px;
  2052 + text-align: center;
  2053 + overflow: hidden
  2054 +}
  2055 +
  2056 +.order_wrapper {
  2057 + margin: 0 0 65px 0
  2058 +}
  2059 +
  2060 +.order_menu_shadow {
  2061 + background: #ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;
  2062 + padding: 20px 0 0 0;
  2063 + width: 946px;
  2064 + height: 27px
  2065 +}
  2066 +
  2067 +.order .breadcrumbs ul {
  2068 + padding: 5px 0 20px 0
  2069 +}
  2070 +
  2071 +.order .order_form .order_title {
  2072 + margin: 20px 0 0 0
  2073 +}
  2074 +
  2075 +.order .order_form h1,.order .contacts_form h1 {
  2076 + font: bold 20px/24px Arial,Tahoma,sans-serif
  2077 +}
  2078 +
  2079 +.order .order_form ul li.main_li {
  2080 + border-top: 1px solid #cdcdcd;
  2081 + padding: 15px 0 10px 0;
  2082 + margin: 10px 0 0 0
  2083 +}
  2084 +
  2085 +.order .order_form ul li.main_li:first-child {
  2086 + border-top: 0;
  2087 + padding: 0;
  2088 + margin: 10px 0 0 0
  2089 +}
  2090 +
  2091 +.order .order_form ul li.order_form_header li,.order .order_form ul li.order_last {
  2092 + font: bold 14px/18px Arial,Tahoma,sans-serif;
  2093 + color: #676767
  2094 +}
  2095 +
  2096 +.order .order_form ul li.order_form_header ul li.order_first_column,.order .order_form ul li.order_form_content ul li.order_first_column {
  2097 + width: 380px;
  2098 + padding: 0 0 0 20px
  2099 +}
  2100 +
  2101 +.order .order_form ul li.order_form_header ul li.order_second_column,.order .order_form ul li.order_form_content ul li.order_second_column {
  2102 + width: 220px;
  2103 + text-align: center
  2104 +}
  2105 +
  2106 +.order .order_form ul li.order_form_header ul li.order_third_column,.order .order_form ul li.order_form_content ul li.order_third_column {
  2107 + width: 100px;
  2108 + margin: 0 0 0 65px
  2109 +}
  2110 +
  2111 +.order .order_form ul li.order_form_header ul li.order_fourth_column,.order .order_form ul li.order_form_content ul li.order_fourth_column {
  2112 + width: 100px;
  2113 + margin: 0 0 0 45px
  2114 +}
  2115 +
  2116 +.order .order_form ul li.order_form_header ul li.order_fifth_column,.order .order_form ul li.order_form_content ul li.order_fifth_column {
  2117 + margin: 0
  2118 +}
  2119 +
  2120 +.order .order_form ul li.order_form_content ul li.order_second_column,.order .order_form ul li.order_form_content ul li.order_fourth_column,.order .order_form ul li.order_form_content ul li.order_fifth_column {
  2121 + margin-top: 35px
  2122 +}
  2123 +
  2124 +.order .order_form ul li.order_form_content ul li.order_third_column {
  2125 + margin-top: 33px
  2126 +}
  2127 +
  2128 +.order .order_form ul li.order_last {
  2129 + background: #f5f5f5;
  2130 + text-align: right;
  2131 + padding: 15px 75px 15px 0;
  2132 + margin: 5px 0 40px 0
  2133 +}
  2134 +
  2135 +.order .order_form ul li ul li img.order_img {
  2136 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  2137 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  2138 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  2139 + margin: 0 20px 0 0
  2140 +}
  2141 +
  2142 +.order .order_form ul li ul li h2 {
  2143 + font: bold 14px/18px Arial,Tahoma,sans-serif;
  2144 + margin: 20px 0 4px 100px;
  2145 + width: 70%
  2146 +}
  2147 +
  2148 +.order .order_form ul li ul li p {
  2149 + margin: 0 0 0 100px
  2150 +}
  2151 +
  2152 +.order .order_form ul li span {
  2153 + color: #f58025
  2154 +}
  2155 +
  2156 +.order .order_form ul li span.price {
  2157 + font: bold 18px/18px Arial,Tahoma,sans-serif
  2158 +}
  2159 +
  2160 +.order .order_form ul li ul li .minus {
  2161 + background: url(../images/minus.png) 50% 48% no-repeat;
  2162 + width: 12px;
  2163 + height: 15px;
  2164 + padding: 7px
  2165 +}
  2166 +
  2167 +.order .order_form ul li ul li .plus {
  2168 + background: url(../images/plus.png) 50% 55% no-repeat;
  2169 + width: 12px;
  2170 + height: 24px;
  2171 + padding: 0 0 0 10px
  2172 +}
  2173 +
  2174 +.order .order_form ul li ul li .count_items {
  2175 + width: 30px;
  2176 + margin: 0;
  2177 + padding: 4px 6px;
  2178 + border: 1px solid #c2c2c2;
  2179 + border-radius: 5px;
  2180 + -moz-border-radius: 5px;
  2181 + -webkit-border-radius: 5px;
  2182 + box-shadow: inset 1px 1px 3px #bbb;
  2183 + -moz-box-shadow: inset 1px 1px 3px #bbb;
  2184 + -webkit-box-shadow: inset 1px 1px 3px #bbb;
  2185 + background: #f5f5f5;
  2186 + text-align: center;
  2187 + font: normal 15px/16px Arial,Tahoma,sans-serif;
  2188 + color: #464646
  2189 +}
  2190 +
  2191 +#order_add_ua .contacts_form ul.form,#order_add_ru .contacts_form ul.form,ul.form {
  2192 + margin: 30px 0 0 0;
  2193 + font: bold 13px/18px Arial,Tahoma,sans-serif
  2194 +}
  2195 +
  2196 +#order_add_ua .contacts_form ul.form li,#order_add_ru .contacts_form ul.form li,ul.form li {
  2197 + margin: 0 0 10px 0
  2198 +}
  2199 +
  2200 +.order .contacts_form .label,ul.form li .label {
  2201 + width: 210px;
  2202 + text-align: right;
  2203 + margin: 7px 10px 0 0
  2204 +}
  2205 +
  2206 +.order .contacts_form .input,ul.form li .input {
  2207 + width: 720px;
  2208 + font-weight: normal
  2209 +}
  2210 +
  2211 +.order .contacts_form .label span.required,ul.form li .label span.required {
  2212 + font: normal 10px/14px Arial,Tahoma,sans-serif;
  2213 + color: #f58025;
  2214 + vertical-align: text-top
  2215 +}
  2216 +
  2217 +.order .contacts_form .input input[type='text'],ul.form li .input input[type='text'],ul.form li .input input[type='password'],.order .contacts_form .input textarea,ul.form li .input textarea {
  2218 + width: 280px;
  2219 + margin: 0;
  2220 + padding: 6px;
  2221 + border: 1px solid #c2c2c2;
  2222 + border-radius: 5px;
  2223 + -moz-border-radius: 5px;
  2224 + -webkit-border-radius: 5px;
  2225 + box-shadow: inset 1px 1px 3px #bbb;
  2226 + -moz-box-shadow: inset 1px 1px 3px #bbb;
  2227 + -webkit-box-shadow: inset 1px 1px 3px #bbb;
  2228 + text-align: left;
  2229 + font: normal 15px/16px Arial,Tahoma,sans-serif;
  2230 + color: #464646
  2231 +}
  2232 +
  2233 +ul.form li .input select {
  2234 + margin: 0;
  2235 + padding: 4px 6px;
  2236 + border: 1px solid #c2c2c2;
  2237 + border-radius: 5px;
  2238 + -moz-border-radius: 5px;
  2239 + -webkit-border-radius: 5px;
  2240 + box-shadow: inset 1px 1px 3px #bbb;
  2241 + -moz-box-shadow: inset 1px 1px 3px #bbb;
  2242 + -webkit-box-shadow: inset 1px 1px 3px #bbb;
  2243 + text-align: left;
  2244 + font: normal 15px/16px Arial,Tahoma,sans-serif;
  2245 + color: #464646;
  2246 + background: #fff
  2247 +}
  2248 +
  2249 +.order ul.form li .input select {
  2250 + width: 295px
  2251 +}
  2252 +
  2253 +.order .contacts_form .input textarea,section #content .contacts_form .input textarea {
  2254 + max-width: 720px;
  2255 + width: 720px;
  2256 + min-height: 120px
  2257 +}
  2258 +
  2259 +.order .contacts_form li.with_radio_buttons .input {
  2260 + font: normal 13px/14px Arial,Tahoma,sans-serif
  2261 +}
  2262 +
  2263 +.order .contacts_form li.with_radio_buttons label {
  2264 + margin: 0 10px 0 0
  2265 +}
  2266 +
  2267 +.order .contacts_form .input .input_radio {
  2268 + margin: 0 0 10px 0
  2269 +}
  2270 +
  2271 +.order .contacts_form .input input[type='radio'] {
  2272 + margin: 0 5px 0 0
  2273 +}
  2274 +
  2275 +.order .contacts_form .input .description {
  2276 + margin: 5px 0 15px 0
  2277 +}
  2278 +
  2279 +.order .contacts_form .input .description label {
  2280 + font-weight: normal;
  2281 + font: italic 12px/14px Arial,Tahoma,sans-serif;
  2282 + text-decoration: underline
  2283 +}
  2284 +
  2285 +.order .contacts_form .with_radio_buttons .input {
  2286 + margin: 10px 0 0 0
  2287 +}
  2288 +
  2289 +.order .contacts_form .with_radio_buttons .input .description,.order .contacts_form .owner_city .input .description {
  2290 + background: #f5f5f5;
  2291 + padding: 15px 0 20px 15px;
  2292 + margin: 0 0 15px 0;
  2293 + line-height: 16px
  2294 +}
  2295 +
  2296 +.order .contacts_form .with_textarea .input .description {
  2297 + font: italic 12px/14px Arial,Tahoma,sans-serif
  2298 +}
  2299 +
  2300 +.ui-widget-content {
  2301 + position: absolute;
  2302 + background: #f5f5f5 !important
  2303 +}
  2304 +
  2305 +.ui-widget-content li {
  2306 + margin: 0 !important;
  2307 + padding: 5px !important;
  2308 + width: 95%;
  2309 + cursor: pointer
  2310 +}
  2311 +
  2312 +.ui-widget-content li:hover {
  2313 + background: #acacac !important;
  2314 + margin: 0 !important;
  2315 + width: 97%;
  2316 + padding: 5px !important
  2317 +}
  2318 +
  2319 +.owner_city,.store_address {
  2320 + position: relative
  2321 +}
  2322 +
  2323 +#loading_city,#loading_office {
  2324 + background: url(../images/loadinfo.gif) no-repeat 0 0;
  2325 + height: 24px;
  2326 + width: 24px;
  2327 + margin: 4px 0 0 485px;
  2328 + position: absolute
  2329 +}
  2330 +
  2331 +.ui-menu .ui-menu-item a,.ui-menu .ui-menu-item a:hover {
  2332 + text-decoration: none;
  2333 + display: block;
  2334 + padding: 2px !important;
  2335 + font: normal 14px/16px Arial,Tahoma,sans-serif !important
  2336 +}
  2337 +
  2338 +.order div.registrated_customer {
  2339 + min-height: 200px
  2340 +}
  2341 +
  2342 +.order div.registrated_customer .btn {
  2343 + margin: 20px 50px 0 0;
  2344 + padding: 5px 20px
  2345 +}
  2346 +
  2347 +.order div.registrated_customer a {
  2348 + margin: 25px 50px 0 0
  2349 +}
  2350 +
  2351 +.order div.registrated_customer .do_registration,.do_registration {
  2352 + margin: 20px 50px 0 0;
  2353 + color: #4fa32c
  2354 +}
  2355 +
  2356 +.order div.registrated_customer .do_registration:hover,.do_registration:hover {
  2357 + color: #f58025
  2358 +}
  2359 +
  2360 +.order div.registrated_customer .label {
  2361 + width: 250px
  2362 +}
  2363 +
  2364 +.order div.registrated_customer .input {
  2365 + width: 200px
  2366 +}
  2367 +
  2368 +.order div.registrated_customer .input input {
  2369 + width: 190px
  2370 +}
  2371 +
  2372 +.order .login_with_email {
  2373 + width: 63%;
  2374 + margin: 20px 40px 20px 0;
  2375 + border-right: 1px solid #e2e2e2;
  2376 + padding: 20px 0
  2377 +}
  2378 +
  2379 +.order .login_with_email .form {
  2380 + margin: 0
  2381 +}
  2382 +
  2383 +.order .login_with_social {
  2384 + width: 25%;
  2385 + margin: 20px 0 20px 0;
  2386 + padding: 20px 0
  2387 +}
  2388 +
  2389 +.order .login_with_social .login_with_social_wrapper {
  2390 + margin: 0 auto;
  2391 + width: 116px
  2392 +}
  2393 +
  2394 +.order .login_with_social .login_with_social_wrapper a {
  2395 + margin: 0 10px 0 0
  2396 +}
  2397 +
  2398 +.order .login_with_social_title {
  2399 + font: bold 13px/18px Arial,Tahoma,sans-serif;
  2400 + margin: 0 0 20px 0
  2401 +}
  2402 +
  2403 +input[type="radio"] {
  2404 + display: none
  2405 +}
  2406 +
  2407 +input[type="radio"]+label span {
  2408 + display: inline-block;
  2409 + margin: -1px 4px 0 0;
  2410 + cursor: pointer;
  2411 + background: url(../images/radio.png) no-repeat 0 -24px;
  2412 + width: 12px;
  2413 + height: 12px
  2414 +}
  2415 +
  2416 +input[type="radio"]:checked+label span {
  2417 + background: url(../images/radio.png) no-repeat 0 0
  2418 +}
  2419 +
  2420 +.order .btn,.contacts_form .btn {
  2421 + width: auto;
  2422 + float: right;
  2423 + font-weight: bold;
  2424 + cursor: pointer
  2425 +}
  2426 +
  2427 +.image_400 {
  2428 + max-height: 400px;
  2429 + max-width: 400px
  2430 +}
  2431 +
  2432 +.image_128 {
  2433 + max-height: 128px;
  2434 + max-width: 128px
  2435 +}
  2436 +
  2437 +.width_128 {
  2438 + width: 128px;
  2439 + text-align: center
  2440 +}
  2441 +
  2442 +.width_400 {
  2443 + width: 400px;
  2444 + text-align: center
  2445 +}
  2446 +
  2447 +.static_page {
  2448 + margin-bottom: 60px
  2449 +}
  2450 +
  2451 +.static_page_wrapper {
  2452 + min-height: 200px;
  2453 + margin: 30px 0 0 0;
  2454 + font: normal 14px/20px Arial,Tahoma,sans-serif
  2455 +}
  2456 +
  2457 +.static_page h2 {
  2458 + text-align: center;
  2459 + margin: 0 0 20px 0
  2460 +}
  2461 +
  2462 +.static_page a {
  2463 + display: inline
  2464 +}
  2465 +
  2466 +.alert_button {
  2467 + width: auto;
  2468 + margin: 10px 10px 10px 0;
  2469 + padding: 7px 20px
  2470 +}
  2471 +
  2472 +.dialogue {
  2473 + font: normal 14px/16px Arial,Tahoma,sans-serif;
  2474 + padding: 20px 0 10px 10px;
  2475 + min-width: 350px
  2476 +}
  2477 +
  2478 +.dialogue_message {
  2479 + font: normal 14px/16px Arial,Tahoma,sans-serif
  2480 +}
  2481 +
  2482 +input.error,textarea.error {
  2483 + border: 1px solid #aaa !important;
  2484 + background-color: #ffffe0 !important
  2485 +}
  2486 +
  2487 +label.error {
  2488 + color: #c00;
  2489 + font-weight: normal !important;
  2490 + display: block
  2491 +}
  2492 +
  2493 +#execute {
  2494 + margin: 30px 0 0 0
  2495 +}
  2496 +
  2497 +.static_page .breadcrumbs ul,.cabinet .breadcrumbs ul,.news .breadcrumbs ul,.search .breadcrumbs ul {
  2498 + padding: 5px 0 20px 0
  2499 +}
  2500 +
  2501 +.news_wrapper {
  2502 + margin: 20px 0 65px 0;
  2503 + min-height: 100px
  2504 +}
  2505 +
  2506 +.item .news_wrapper {
  2507 + min-height: 100px;
  2508 + padding: 20px 0 20px 0;
  2509 + border-top: 2px solid #55a727
  2510 +}
  2511 +
  2512 +.news_wrapper .one_news {
  2513 + width: 470px;
  2514 + margin: 10px 20px 10px 0
  2515 +}
  2516 +
  2517 +.news_wrapper .one_news .one_news_img {
  2518 + width: 180px;
  2519 + margin: 0 10px 0 0
  2520 +}
  2521 +
  2522 +.news_wrapper .one_news .one_news_content {
  2523 + width: 260px;
  2524 + margin: 0 10px 0 0;
  2525 + position: relative;
  2526 + height: 120px
  2527 +}
  2528 +
  2529 +.news_wrapper .one_news .one_news_content.full_width {
  2530 + width: 95%;
  2531 + margin: 0 10px 0 0;
  2532 + position: relative;
  2533 + height: 120px
  2534 +}
  2535 +
  2536 +.news_wrapper .one_news .one_news_content a {
  2537 + text-decoration: none
  2538 +}
  2539 +
  2540 +.news_wrapper .one_news .one_news_content h2 {
  2541 + font: bold 15px/18px Arial,Tahoma,sans-serif
  2542 +}
  2543 +
  2544 +.news_wrapper .one_news .one_news_content p {
  2545 + font: normal 13px/18px Arial,Tahoma,sans-serif;
  2546 + margin: 10px 0 0 0
  2547 +}
  2548 +
  2549 +.news_wrapper .one_news .one_news_content a.news_more {
  2550 + position: absolute;
  2551 + right: 0;
  2552 + bottom: 0;
  2553 + text-decoration: underline;
  2554 + color: #4fa32c
  2555 +}
  2556 +
  2557 +.news_wrapper .one_news .one_news_content a.news_more:hover {
  2558 + color: #f58025
  2559 +}
  2560 +
  2561 +.news_img_holder {
  2562 + width: 400px;
  2563 + margin: 0 40px 30px 0;
  2564 + float: left
  2565 +}
  2566 +
  2567 +.news_img_holder a.news_cover {
  2568 + margin: 0 0 40px 0
  2569 +}
  2570 +
  2571 +.news_img_holder a.news_photogallery {
  2572 + margin: 0 40px 40px 0
  2573 +}
  2574 +
  2575 +.news_content a {
  2576 + display: inline
  2577 +}
  2578 +
  2579 +.news_content strong {
  2580 + font-weight: bold
  2581 +}
  2582 +
  2583 +.news_content h2 {
  2584 + font: bold 20px/24px Arial,Tahoma,sans-serif
  2585 +}
  2586 +
  2587 +.news_content p {
  2588 + font: normal 13px/18px Arial,Tahoma,sans-serif;
  2589 + margin: 10px 0 0 0
  2590 +}
  2591 +
  2592 +.news_content .news2groups {
  2593 + margin: 20px 0 0 0
  2594 +}
  2595 +
  2596 +.news_content .news2groups div {
  2597 + font: normal 12px/14px Arial,Tahoma,sans-serif;
  2598 + margin: 0 3px;
  2599 + padding: 2px 2px 2px 5px;
  2600 + background: #efefef;
  2601 + border-radius: 3px;
  2602 + -moz-border-radius: 3px;
  2603 + -webkit-border-radius: 3px
  2604 +}
  2605 +
  2606 +.news_content .news2groups div a {
  2607 + text-decoration: none
  2608 +}
  2609 +
  2610 +.successMessage,.errorMessage,.noticeMessage {
  2611 + padding: 15px 20px;
  2612 + margin: 10px 0 20px 0;
  2613 + border-radius: 5px;
  2614 + -moz-border-radius: 5px;
  2615 + -webkit-border-radius: 5px;
  2616 + color: #fff;
  2617 + font-size: 14px;
  2618 + display: block
  2619 +}
  2620 +#flash_output div {
  2621 + margin: 30px 0 20px 0;
  2622 +}
  2623 +
  2624 +.successMessage a,.errorMessage a,.noticeMessage a {
  2625 + color: #fff;
  2626 + display: inline
  2627 +}
  2628 +
  2629 +.successMessage {
  2630 + background: url('../images/flash_success.png') repeat scroll 50% 50% #2c85ad
  2631 +}
  2632 +
  2633 +.noticeMessage,.admin_review {
  2634 + background: url('../images/flash_notice.png') repeat scroll 50% 50% #f6b03d
  2635 +}
  2636 +
  2637 +.errorMessage {
  2638 + background: url('../images/flash_error.png') repeat scroll 50% 50% #be2e17
  2639 +}
  2640 +
  2641 +.message_holder {
  2642 + width: 960px;
  2643 + height: 190px;
  2644 + display: block;
  2645 + position: relative;
  2646 + margin: 0 auto;
  2647 + padding: 0
  2648 +}
  2649 +
  2650 +.message_holder_empty {
  2651 + width: 960px;
  2652 + height: 140px;
  2653 + display: block;
  2654 + position: relative;
  2655 + margin: 0 auto;
  2656 + padding: 0
  2657 +}
  2658 +
  2659 +.cabinet,.cabinet_login {
  2660 + margin-bottom: 65px
  2661 +}
  2662 +
  2663 +.cabinet .sidebar_content_wrapper,.cabinet_login .sidebar_content_wrapper {
  2664 + margin: 20px 0 20px 0
  2665 +}
  2666 +
  2667 +.cabinet #sidebar .subcategory_sidebar_title h3,.cabinet_login #sidebar .subcategory_sidebar_title h3 {
  2668 + margin: 0 0 15px 0
  2669 +}
  2670 +
  2671 +.cabinet #sidebar .subcategory_sidebar_title p,.cabinet_login #sidebar .subcategory_sidebar_title p {
  2672 + font: italic 13px/15px Arial,Tahoma,sans-serif;
  2673 + text-decoration: underline;
  2674 + color: #f36d00
  2675 +}
  2676 +
  2677 +.cabinet #sidebar .subcategory_sidebar_title a,.cabinet_login #sidebar .subcategory_sidebar_title a {
  2678 + font: italic 13px/15px Arial,Tahoma,sans-serif;
  2679 + text-decoration: underline;
  2680 + color: #4a4a4a;
  2681 + margin: 0 0 5px 0
  2682 +}
  2683 +
  2684 +.cabinet #sidebar .subcategory_sidebar_title a:hover,.cabinet_login #sidebar .subcategory_sidebar_title a:hover,.cabinet #sidebar .subcategory_sidebar_title a.active,.cabinet_login #sidebar .subcategory_sidebar_title a.active {
  2685 + color: #f36d00
  2686 +}
  2687 +
  2688 +.cabinet #sidebar ul,.cabinet_login #sidebar ul {
  2689 + margin: 10px 0 10px 15px;
  2690 + display: none
  2691 +}
  2692 +
  2693 +.cabinet #content_wrapper .form,.cabinet_login #content_wrapper .form {
  2694 + margin: 0
  2695 +}
  2696 +
  2697 +.cabinet #content_wrapper,.cabinet_login #content_wrapper {
  2698 + margin: 0 0 0 100px;
  2699 + width: 700px
  2700 +}
  2701 +
  2702 +.cabinet_login #content_wrapper .login_with_social,.cabinet_login #content_wrapper .login_with_email {
  2703 + padding: 40px 40px 0 0
  2704 +}
  2705 +
  2706 +.cabinet_login #content_wrapper .login_with_email {
  2707 + margin: 0 40px 0 0;
  2708 + border-right: 1px solid #e2e2e2;
  2709 + width: 57%
  2710 +}
  2711 +
  2712 +.cabinet_login #content_wrapper .login_with_social {
  2713 + width: 30%;
  2714 + margin: 0 40px 0 0
  2715 +}
  2716 +
  2717 +.cabinet_login #content_wrapper .login_with_social_title {
  2718 + font: bold 13px/18px Arial,Tahoma,sans-serif;
  2719 + margin: 0 0 20px 0
  2720 +}
  2721 +
  2722 +.cabinet #content_wrapper .subcategory_content_wrapper_title h3,.cabinet_login #content_wrapper .subcategory_content_wrapper_title h3 {
  2723 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  2724 + color: #4a4a4a
  2725 +}
  2726 +
  2727 +.cabinet_login #content_wrapper .login_with_social_wrapper {
  2728 + margin: 0 auto;
  2729 + width: 116px
  2730 +}
  2731 +
  2732 +.cabinet_login #content_wrapper .login_with_social_wrapper a {
  2733 + margin: 0 10px 0 0
  2734 +}
  2735 +
  2736 +.cabinet #content_wrapper .form {
  2737 + margin: 30px 0 0 30px
  2738 +}
  2739 +
  2740 +.cabinet_login #content_wrapper .form .input {
  2741 + width: 250px
  2742 +}
  2743 +
  2744 +.cabinet #content_wrapper .form .input {
  2745 + width: 250px
  2746 +}
  2747 +
  2748 +.cabinet_login #content_wrapper .form .input input {
  2749 + width: 240px
  2750 +}
  2751 +
  2752 +.cabinet #content_wrapper .form .input input {
  2753 + width: 240px
  2754 +}
  2755 +
  2756 +.cabinet_login #content_wrapper .form li .label {
  2757 + width: 135px;
  2758 + text-align: right;
  2759 + margin: 7px 10px 0 0
  2760 +}
  2761 +
  2762 +.cabinet #content_wrapper .form li .label {
  2763 + width: 135px;
  2764 + text-align: right;
  2765 + margin: 7px 10px 0 0
  2766 +}
  2767 +
  2768 +.cabinet #content_wrapper .btn,.cabinet_login #content_wrapper .btn {
  2769 + width: auto;
  2770 + float: right;
  2771 + font-weight: bold;
  2772 + cursor: pointer;
  2773 + margin: 20px 0 0 0;
  2774 + padding: 5px 20px
  2775 +}
  2776 +
  2777 +.cabinet .submit {
  2778 + margin: 0 270px 0 0
  2779 +}
  2780 +
  2781 +.cabinet .submit a.change_passwd {
  2782 + margin: 20px 0 40px 0
  2783 +}
  2784 +
  2785 +.submit a {
  2786 + margin: 25px 30px 0 0
  2787 +}
  2788 +
  2789 +.submit a.change_passwd {
  2790 + margin: 40px 0 40px 0;
  2791 + color: #4fa32c
  2792 +}
  2793 +
  2794 +.submit a.change_passwd:hover {
  2795 + color: #f58025
  2796 +}
  2797 +
  2798 +.submit a.do_registration {
  2799 + margin: 25px 0 0 0
  2800 +}
  2801 +
  2802 +.my_order_items {
  2803 + margin: 40px 0 0 0;
  2804 + padding: 0 0 20px 0;
  2805 + border-bottom: 1px solid #e2e2e2
  2806 +}
  2807 +
  2808 +#content_wrapper .order_number {
  2809 + font: normal 14px/18px Arial,Tahoma,sans-serif;
  2810 + margin: 10px 0
  2811 +}
  2812 +
  2813 +.my_order_item {
  2814 + margin: 0 30px 0 0;
  2815 + min-height: 200px
  2816 +}
  2817 +
  2818 +.my_order_item .my_order_item_image {
  2819 + float: left
  2820 +}
  2821 +
  2822 +.my_order_item .my_order_item_image img {
  2823 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  2824 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  2825 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75)
  2826 +}
  2827 +
  2828 +.my_order_item .my_order_item_content {
  2829 + margin: 0 0 0 90px;
  2830 + width: 200px
  2831 +}
  2832 +
  2833 +.my_order_item .my_order_item_content h2 {
  2834 + font: bold 15px/18px Arial,Tahoma,sans-serif;
  2835 + margin: 0 0 5px 0
  2836 +}
  2837 +
  2838 +.my_order_item .my_order_item_content h2 a {
  2839 + text-decoration: none
  2840 +}
  2841 +
  2842 +.my_order_item .my_order_item_content .my_order_item_price {
  2843 + margin: 10px 0 10px 0
  2844 +}
  2845 +
  2846 +.my_order_item .my_order_item_content .my_order_item_count,.my_order_item .my_order_item_content .my_order_item_count_total {
  2847 + font: bold 13px/15px Arial,Tahoma,sans-serif;
  2848 + color: #7d7d7d
  2849 +}
  2850 +
  2851 +.my_order_item .my_order_item_content .price {
  2852 + font: normal 20px/22px Arial,Tahoma,sans-serif
  2853 +}
  2854 +
  2855 +.my_order_item .my_order_item_content span {
  2856 + color: #f58025
  2857 +}
  2858 +
  2859 +.my_order_items_description .my_order_total {
  2860 + font: bold 14px/16px Arial,Tahoma,sans-serif;
  2861 + margin: 20px 0 10px 0
  2862 +}
  2863 +
  2864 +.my_order_items_description .my_order_total span {
  2865 + color: #f58025
  2866 +}
  2867 +
  2868 +.my_order_items_description .my_order_total .price {
  2869 + color: #f58025;
  2870 + font: normal 20px/22px Arial,Tahoma,sans-serif
  2871 +}
  2872 +
  2873 +.my_order_items_description .my_order_delivery,.my_order_items_description .my_order_status {
  2874 + font: normal 14px/16px Arial,Tahoma,sans-serif;
  2875 + margin: 0 0 5px 0
  2876 +}
  2877 +
  2878 +.my_order_items_description .my_order_delivery span,.my_order_items_description .my_order_status span {
  2879 + font: bold 14px/16px Arial,Tahoma,sans-serif;
  2880 + color: #4fa32c
  2881 +}
  2882 +
  2883 +.callback_form {
  2884 + margin: 20px 0 0 20px
  2885 +}
  2886 +
  2887 +.callback_form form {
  2888 + margin: 20px 0 0 100px
  2889 +}
  2890 +
  2891 +.callback_form ul.form li .input {
  2892 + width: 60%;
  2893 + font-weight: normal
  2894 +}
  2895 +
  2896 +.callback_form ul.form li .input input {
  2897 + width: 100%
  2898 +}
  2899 +
  2900 +.callback_form ul.form li .input textarea {
  2901 + width: 100%;
  2902 + height: 120px
  2903 +}
  2904 +
  2905 +.callback_form ul.form li .label {
  2906 + width: 30%;
  2907 + font-weight: bold;
  2908 + margin: 0 10px 0 0
  2909 +}
  2910 +
  2911 +.callback_form ul.form li.with_textarea {
  2912 + margin: 15px 0 0 0
  2913 +}
  2914 +
  2915 +.callback_form .submit {
  2916 + margin: 0 50px 0 0
  2917 +}
  2918 +
  2919 +.callback_form .submit input {
  2920 + width: auto
  2921 +}
  2922 +
  2923 +.contacts_wrapper {
  2924 + min-height: 300px;
  2925 + font: normal 13px/16px Arial,Tahoma,sans-serif;
  2926 + color: #616161
  2927 +}
  2928 +
  2929 +.contacts_wrapper h2 {
  2930 + margin: 20px 0;
  2931 + font: bold 20px/24px Arial,Tahoma,sans-serif
  2932 +}
  2933 +
  2934 +.contacts_wrapper_map {
  2935 + min-height: 300px;
  2936 + width: 465px;
  2937 + margin: 0 30px 0 0
  2938 +}
  2939 +
  2940 +.contacts_wrapper_map .map_description {
  2941 + min-height: 165px
  2942 +}
  2943 +
  2944 +.contacts_wrapper_map .map_description .map_description_name {
  2945 + font-weight: bold
  2946 +}
  2947 +
  2948 +.contacts_wrapper_map .map {
  2949 + height: 300px;
  2950 + margin: 20px 0
  2951 +}
  2952 +
  2953 +.contacts_wrapper .contacts_email_address {
  2954 + margin: 40px 0 0 0
  2955 +}
  2956 +
  2957 +.contacts_wrapper .contacts_email_address_name {
  2958 + margin: 10px 0;
  2959 + font: bold 14px/24px Arial,Tahoma,sans-serif
  2960 +}
  2961 +
  2962 +.contacts_wrapper .contacts_list {
  2963 + width: 100%;
  2964 + margin: 0 0 100px 0
  2965 +}
  2966 +
  2967 +.contacts_wrapper .contacts_list tr {
  2968 + border-bottom: 1px solid #cdcdcd
  2969 +}
  2970 +
  2971 +.contacts_wrapper .contacts_list tr th {
  2972 + color: #7d7d7d;
  2973 + font: bold 13px/16px Arial,Tahoma,sans-serif;
  2974 + padding: 15px;
  2975 + background: #f5f5f5
  2976 +}
  2977 +
  2978 +.contacts_wrapper .contacts_list tr td {
  2979 + color: #616161;
  2980 + padding: 15px
  2981 +}
  2982 +
  2983 +.contacts_wrapper .contacts_list tr td.contacts_list_phone {
  2984 + width: 90px
  2985 +}
  2986 +
  2987 +tr.even {
  2988 + background-color: #f1f1f1
  2989 +}
  2990 +
  2991 +tr.odd {
  2992 + background-color: #f9f9f9
  2993 +}
  2994 +
  2995 +.compare_items {
  2996 + margin: 0 0 65px 0
  2997 +}
  2998 +
  2999 +.compare_items h2 {
  3000 + font: bold 20px/24px Arial,Tahoma,sans-serif;
  3001 + margin: 30px 0
  3002 +}
  3003 +
  3004 +.compare_items .compare_items_table {
  3005 + overflow-x: auto
  3006 +}
  3007 +
  3008 +.compare_items .compare_items_table table th {
  3009 + text-align: center
  3010 +}
  3011 +
  3012 +.compare_items .compare_items_table table th .compare_one_item {
  3013 + position: relative;
  3014 + min-height: 265px;
  3015 + min-width: 155px;
  3016 + max-width: 160px;
  3017 + margin: 0 0 20px 0
  3018 +}
  3019 +
  3020 +.compare_items .compare_items_table table td {
  3021 + text-align: center;
  3022 + width: 160px;
  3023 + margin: 0 20px 0 0;
  3024 + padding: 15px 10px;
  3025 + font: normal 13px/16px Arial,Tahoma,sans-serif
  3026 +}
  3027 +
  3028 +.compare_items .compare_items_table table td.compare_item_property_name {
  3029 + font: bold 13px/16px Arial,Tahoma,sans-serif
  3030 +}
  3031 +
  3032 +.compare_items .compare_items_table table th .compare_item_image img {
  3033 + -webkit-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  3034 + -moz-box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  3035 + box-shadow: 0 0 5px 0 rgba(50,50,50,0.75);
  3036 + margin: 10px 0 20px 0
  3037 +}
  3038 +
  3039 +.compare_items .compare_items_table table th .compare_item_delete a {
  3040 + background: url(../images/compare_item_del.jpg) no-repeat 0 0;
  3041 + width: 17px;
  3042 + height: 17px;
  3043 + margin: 0 auto
  3044 +}
  3045 +
  3046 +.compare_items .compare_items_table table th .compare_item_delete a:hover {
  3047 + background: url(../images/compare_item_del_hover.jpg) no-repeat 0 0;
  3048 + width: 17px;
  3049 + height: 17px;
  3050 + margin: 0 auto
  3051 +}
  3052 +
  3053 +.compare_items .compare_items_table table th .compare_item_title a {
  3054 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  3055 + color: #464646;
  3056 + text-decoration: none
  3057 +}
  3058 +
  3059 +.compare_items .compare_items_table table th .compare_item_price {
  3060 + font: normal 13px/15px Arial,Tahoma,sans-serif;
  3061 + color: #f58025;
  3062 + margin: 0 0 10px 0
  3063 +}
  3064 +
  3065 +.compare_items .compare_items_table table th .compare_item_price span {
  3066 + font: bold 20px/22px Arial,Tahoma,sans-serif;
  3067 + color: #f58025
  3068 +}
  3069 +
  3070 +.partners {
  3071 + margin-bottom: 60px
  3072 +}
  3073 +
  3074 +.partners h2 {
  3075 + font: bold 20px/24px Arial,Tahoma,sans-serif;
  3076 + margin: 30px 0
  3077 +}
  3078 +
  3079 +.partners p.partners_name_title_internet_shops,.partners p.partners_name_title_dillers {
  3080 + font: bold 16px/24px Arial,Tahoma,sans-serif
  3081 +}
  3082 +
  3083 +.partners p.partners_name_title_dillers {
  3084 + margin: 30px 0 0 0
  3085 +}
  3086 +
  3087 +.partners ul.internet_shops_list {
  3088 + margin: 0 0 0 20px;
  3089 + font: normal 13px/20px Arial,Tahoma,sans-serif
  3090 +}
  3091 +
  3092 +.partners table tr {
  3093 + border-bottom: 1px solid #cdcdcd
  3094 +}
  3095 +
  3096 +.partners table tr.dillers_district {
  3097 + border-bottom: 0
  3098 +}
  3099 +
  3100 +.partners table tr th {
  3101 + color: #7d7d7d;
  3102 + font: bold 13px/16px Arial,Tahoma,sans-serif;
  3103 + padding: 15px
  3104 +}
  3105 +
  3106 +.partners table tr.dillers_district td {
  3107 + background: #f5f5f5;
  3108 + text-transform: uppercase;
  3109 + font: bold 13px/16px Arial,Tahoma,sans-serif
  3110 +}
  3111 +
  3112 +.partners table tr td {
  3113 + color: #616161;
  3114 + padding: 15px
  3115 +}
  3116 +
  3117 +.error_404 .error_404_wrapper {
  3118 + width: 540px;
  3119 + margin: 100px auto
  3120 +}
  3121 +
  3122 +.error_404 .error_404_wrapper .error_404_wrapper_text {
  3123 + width: 230px;
  3124 + margin: 40px auto;
  3125 + text-align: center
  3126 +}
  3127 +
  3128 +.error_404 .error_404_wrapper .error_404_wrapper_text a {
  3129 + font-style: italic
  3130 +}
  3131 +
  3132 +#profiler {
  3133 + opacity: .90;
  3134 + filter: alpha(opacity=90);
  3135 + background-color: #dedede;
  3136 + background: -moz-linear-gradient(-90deg,#e8e8e8,#cbcbcb) repeat scroll 0 0 #dedede;
  3137 + color: #333;
  3138 + font: normal 12px/12px Georgia,Verdana,Arial,sans-serif;
  3139 + letter-spacing: normal;
  3140 + text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  3141 + margin: 0;
  3142 + padding: 5px 15px;
  3143 + width: auto;
  3144 + position: fixed;
  3145 + bottom: 0;
  3146 + right: 0;
  3147 + text-align: right;
  3148 + z-index: 99999
  3149 +}
  3150 +
  3151 +#profiler .warning {
  3152 + color: #c00
  3153 +}
  3154 +
  3155 +#profiler .profiler-sql-show {
  3156 + text-decoration: underline;
  3157 + cursor: pointer
  3158 +}
  3159 +
  3160 +#profiler-sql {
  3161 + display: none;
  3162 + text-align: left;
  3163 + margin: 20px 0 0 0;
  3164 + padding: 0;
  3165 + overflow-x: hidden;
  3166 + overflow-y: auto;
  3167 + max-height: 500px
  3168 +}
  3169 +
  3170 +#profiler-sql .profiler-sql-item {
  3171 + margin: 0 0 15px 0;
  3172 + padding: 0
  3173 +}
  3174 +
  3175 +#profiler-sql .profiler-sql-item .num {
  3176 + float: left;
  3177 + width: 20px;
  3178 + margin: 0;
  3179 + padding: 0;
  3180 + font-weight: bold
  3181 +}
  3182 +
  3183 +#profiler-sql .profiler-sql-item .query {
  3184 + float: left;
  3185 + width: 750px;
  3186 + margin: 0;
  3187 + padding: 0 10px 0 0;
  3188 + font: normal 10px/14px Monospace,'Courier New',sans-serif
  3189 +}
  3190 +
  3191 +#profiler-sql .profiler-sql-item .time {
  3192 + float: right;
  3193 + text-align: right;
  3194 + width: 90px;
  3195 + margin: 0;
  3196 + padding: 0 10px 0 0;
  3197 + font-weight: bold
  3198 +}
  3199 +
  3200 +.seo-h1 {
  3201 + display: inline-block;
  3202 + width: 240px;
  3203 + margin-bottom: 10px;
  3204 + line-height: 30px;
  3205 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  3206 + color: #4fa32c
  3207 +}
  3208 +
  3209 +#hypercomments_widget .hc .hc_menu {
  3210 + font-size: 14px !important
  3211 +}
  3212 +
  3213 +.item_name_h1 {
  3214 + line-height: 25px
  3215 +}
  3216 +
  3217 +.nav_menu_main li:first-child {
  3218 + border-radius: 5px 0 0 5px;
  3219 + -moz-border-radius: 5px 0 0 5px;
  3220 + -webkit-border-radius: 5px 0 0 5px
  3221 +}
  3222 +
  3223 +.nav_menu_main li:last-child {
  3224 + border-radius: 0 5px 5px 0;
  3225 + -moz-border-radius: 0 5px 5px 0;
  3226 + -webkit-border-radius: 0 5px 5px 0
  3227 +}
  3228 +
  3229 +.static_page_wrapper strong {
  3230 + font-weight: bold
  3231 +}
  3232 +
  3233 +.video_play {
  3234 + position: absolute;
  3235 + left: 50%;
  3236 + top: 50%;
  3237 + transform: translate(-50%,-50%)
  3238 +}
  3239 +
  3240 +.one_news_img {
  3241 + position: relative
  3242 +}
  3243 +
  3244 +.one_post {
  3245 + position: relative
  3246 +}
  3247 +
  3248 +.partners_dealers {
  3249 + margin-top: 25px
  3250 +}
  3251 +
  3252 +.question_mark {
  3253 + background: url(../images/question.png) no-repeat;
  3254 + background-size: cover;
  3255 + width: 18px;
  3256 + height: 18px;
  3257 + position: absolute;
  3258 + top: -3px;
  3259 + right: -25px
  3260 +}
  3261 +
  3262 +.new_customer .input_radio {
  3263 + position: relative;
  3264 + display: inline-block
  3265 +}
  3266 +
  3267 +.new_customer .input_radio .additional_info {
  3268 + background-color: #fff;
  3269 + border: 1px solid #c6c6c6;
  3270 + border-radius: 5px;
  3271 + right: -240px;
  3272 + position: absolute;
  3273 + top: -180px;
  3274 + width: 400px;
  3275 + padding: 10px;
  3276 + z-index: 2;
  3277 + display: none;
  3278 + box-shadow: 1px 1px 3px
  3279 +}
  3280 +
  3281 +.new_customer .input_radio .additional_info:hover {
  3282 + display: block
  3283 +}
  3284 +
  3285 +#delivery_in_ukraine {
  3286 + color: #a8a8a8
  3287 +}
  3288 +
  3289 +.no_marge {
  3290 + margin-top: 0 !important
  3291 +}
  3292 +
  3293 +.string_data {
  3294 + font-style: italic;
  3295 + font-weight: normal
  3296 +}
  3297 +
  3298 +ul.prof_rubrics {
  3299 + list-style: none;
  3300 + margin-bottom: 20px;
  3301 + padding: 0
  3302 +}
  3303 +
  3304 +ul.prof_rubrics li {
  3305 + float: left
  3306 +}
  3307 +
  3308 +ul.prof_rubrics li a {
  3309 + float: left;
  3310 + color: #63ad3e;
  3311 + padding: 10px
  3312 +}
  3313 +
  3314 +ul.prof_rubrics li a.active {
  3315 + color: #fff;
  3316 + background: #4fa22c;
  3317 + border-radius: 5px;
  3318 + text-decoration: none
  3319 +}
  3320 +
  3321 +.min_price_message {
  3322 + font-size: 16px;
  3323 + color: red !important;
  3324 + float: left;
  3325 + margin-left: 20px
  3326 +}
  3327 +
  3328 +.popup_window_content .min_price_message {
  3329 + font-size: 14px;
  3330 + color: red !important;
  3331 + float: left
  3332 +}
  3333 +
  3334 +.email-settings_title {
  3335 + width: 100%;
  3336 + float: left;
  3337 + margin-top: 15px;
  3338 + margin-bottom: 40px
  3339 +}
  3340 +
  3341 +.email-settings_title:first-child {
  3342 + margin-top: 0
  3343 +}
  3344 +
  3345 +.email-settings_title h3 {
  3346 + font: bold 16px/18px Arial,Tahoma,sans-serif;
  3347 + color: #4a4a4a
  3348 +}
  3349 +
  3350 +.blocks-otstup {
  3351 + height: 40px
  3352 +}
  3353 +
  3354 +.ios {
  3355 + float: left
  3356 +}
  3357 +
  3358 +.blocks-p a {
  3359 + float: left;
  3360 + height: 26px;
  3361 + line-height: 26px;
  3362 + text-decoration: none;
  3363 + margin-left: 10px;
  3364 + color: #464646;
  3365 + font-family: Tahoma;
  3366 + font-size: 14px
  3367 +}
  3368 +
  3369 +.blocks-p {
  3370 + width: 320px;
  3371 + float: left;
  3372 + margin-top: 15px;
  3373 + height: 26px
  3374 +}
  3375 +
  3376 +.group-email[type="radio"] {
  3377 + display: none
  3378 +}
  3379 +
  3380 +.group-email[type="radio"]+label {
  3381 + margin-left: 5px;
  3382 + cursor: pointer;
  3383 + font-family: Tahoma;
  3384 + font-size: 14px;
  3385 + color: #464646
  3386 +}
  3387 +
  3388 +.group-email[type="radio"]+label span {
  3389 + width: 12px;
  3390 + height: 12px;
  3391 + background: url('../images/radio-settings-off.png') no-repeat;
  3392 + float: left;
  3393 + margin-top: 3px;
  3394 + transition: .3s
  3395 +}
  3396 +
  3397 +.group-email[type="radio"]:checked+label span {
  3398 + background: url('../images/radio-settings-on.png') no-repeat;
  3399 + transition: .3s
  3400 +}
  3401 +
  3402 +.settings-circle-wrap {
  3403 + float: left;
  3404 + height: 179px;
  3405 + border-bottom: 1px solid #cdcdcd;
  3406 + margin-top: 20px
  3407 +}
  3408 +
  3409 +.settings-circle {
  3410 + width: 230px;
  3411 + float: left;
  3412 + text-align: center
  3413 +}
  3414 +
  3415 +.settings-circle.circle-two {
  3416 + width: 240px
  3417 +}
  3418 +
  3419 +.settings-circle-img {
  3420 + width: 100%;
  3421 + height: 80px;
  3422 + float: left;
  3423 + margin-bottom: 20px
  3424 +}
  3425 +
  3426 +.settings-circle-img img {
  3427 + width: 80px;
  3428 + height: 80px
  3429 +}
  3430 +
  3431 +.settings-circle-text {
  3432 + width: 100%;
  3433 + float: left;
  3434 + text-align: center
  3435 +}
  3436 +
  3437 +.settings-circle-text p {
  3438 + color: #464646;
  3439 + font-size: 14px;
  3440 + font-family: calibri;
  3441 + font-style: italic;
  3442 + font-weight: normal
  3443 +}
  3444 +
  3445 +.settings-circle-text span {
  3446 + font-weight: bold;
  3447 + font-style: normal;
  3448 + font-size: 16px
  3449 +}
  3450 +
  3451 +.settings-soc-wrap {
  3452 + width: 100%;
  3453 + float: left;
  3454 + margin-top: 60px
  3455 +}
  3456 +
  3457 +.settings-soc {
  3458 + width: 50%;
  3459 + float: left;
  3460 + text-align: center
  3461 +}
  3462 +
  3463 +.settings-soc p {
  3464 + width: 100%;
  3465 + float: left;
  3466 + color: #464646;
  3467 + font-size: 16px;
  3468 + font-weight: bold;
  3469 + font-family: calibri;
  3470 + margin-bottom: 20px
  3471 +}
  3472 +
  3473 +.ios-ui-select {
  3474 + height: 24px;
  3475 + -webkit-border-radius: 18px;
  3476 + border-radius: 18px;
  3477 + width: 49px;
  3478 + -webkit-transition: all .3s ease-in-out;
  3479 + -moz-transition: all .3s ease-in-out;
  3480 + -ms-transition: all .3s ease-in-out;
  3481 + -o-transition: all .3s ease-in-out;
  3482 + transition: all .3s ease-in-out;
  3483 + -webkit-box-shadow: none;
  3484 + cursor: pointer;
  3485 + position: relative;
  3486 + display: inline-block;
  3487 + border: 1px solid #cdcdcd;
  3488 + box-shadow: 1px 2px 5px 0 rgba(204,204,204,0.75) inset;
  3489 + float: left
  3490 +}
  3491 +
  3492 +.ios-ui-select.checked {
  3493 + border: 1px solid #67b73e
  3494 +}
  3495 +
  3496 +.ios-ui-select.checked .inner {
  3497 + left: 27px;
  3498 + background: url("../images/circle-settings.png") no-repeat;
  3499 + transition: .2s
  3500 +}
  3501 +
  3502 +.ios-ui-select .inner {
  3503 + width: 18px;
  3504 + height: 18px;
  3505 + position: absolute;
  3506 + top: 3px;
  3507 + left: 3px;
  3508 + background: url("../images/circle-settings-off.png") no-repeat;
  3509 + transition: .2s
  3510 +}
  3511 +
  3512 +.email-settings_02_1-title2 {
  3513 + ont-family: Tahoma;
  3514 + font-size: 16px;
  3515 + color: #464646;
  3516 + font-weight: bold;
  3517 + margin-top: 15px;
  3518 + margin-bottom: 10px
  3519 +}
  3520 +
  3521 +.blocks-p-email-02-1 {
  3522 + box-sizing: border-box;
  3523 + padding-left: 20px
  3524 +}
  3525 +
  3526 +.email-settings_02_1-number-wr {
  3527 + box-sizing: border-box;
  3528 + padding-left: 35px;
  3529 + font-family: Tahoma;
  3530 + font-size: 14px;
  3531 + color: #464646
  3532 +}
  3533 +
  3534 +.email-settings_02_1-input {
  3535 + height: 20px;
  3536 + width: 40px;
  3537 + border: 1px solid #69b840;
  3538 + outline: 0;
  3539 + transition: .3s;
  3540 + background: #d9edcf
  3541 +}
  3542 +
  3543 +.email-settings_02_1-input:focus {
  3544 + border: 1px solid #589b35;
  3545 + background: #f1f1f1;
  3546 + transition: .3s
  3547 +}
  3548 +
  3549 +.email-settings_02_1-buttons-wr {
  3550 + margin-top: 20px
  3551 +}
  3552 +
  3553 +.email-buttons-1 {
  3554 + float: left;
  3555 + padding: 0 19px;
  3556 + height: 26px;
  3557 + color: #fff;
  3558 + font-family: Tahoma;
  3559 + font-size: 12px;
  3560 + font-weight: bold;
  3561 + text-align: center;
  3562 + display: block;
  3563 + line-height: 26px;
  3564 + text-decoration: none;
  3565 + border-radius: 5px;
  3566 + border-top: 2px solid #74ce45;
  3567 + background: #6ba94c;
  3568 + background: -moz-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);
  3569 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#6ba94c),color-stop(50%,#6ba94c),color-stop(50%,#559336),color-stop(100%,#559336));
  3570 + background: -webkit-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);
  3571 + background: -o-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);
  3572 + background: -ms-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);
  3573 + background: linear-gradient(to bottom,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);
  3574 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6ba94c',endColorstr='#559336',GradientType=0);
  3575 + margin-top: 1px;
  3576 + text-transform: uppercase;
  3577 + box-shadow: 0 2px 2px 0 rgba(0,0,0,0.4)
  3578 +}
  3579 +
  3580 +.email-buttons-2-wr {
  3581 + width: 166px;
  3582 + height: 28px;
  3583 + float: left;
  3584 + transition: .4s;
  3585 + border-top: 1px solid #eee;
  3586 + border-left: 1px solid #eee;
  3587 + border-right: 1px solid #eee;
  3588 + border-bottom: 1px solid #c2c2c2;
  3589 + border-radius: 5px;
  3590 + box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12);
  3591 + margin-left: 20px
  3592 +}
  3593 +
  3594 +.email-buttons-2 {
  3595 + width: 166px;
  3596 + height: 26px;
  3597 + color: #9b9b9b;
  3598 + font-family: Tahoma;
  3599 + font-size: 12px;
  3600 + font-weight: bold;
  3601 + text-align: center;
  3602 + display: block;
  3603 + line-height: 26px;
  3604 + text-decoration: none;
  3605 + border-radius: 5px;
  3606 + background: #f1f1f1;
  3607 + background: -moz-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);
  3608 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f1f1f1),color-stop(50%,#f1f1f1),color-stop(50%,#e6e6e6),color-stop(100%,#e6e6e6));
  3609 + background: -webkit-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);
  3610 + background: -o-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);
  3611 + background: -ms-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);
  3612 + background: linear-gradient(to bottom,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);
  3613 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1',endColorstr='#e6e6e6',GradientType=0);
  3614 + transition: .6s;
  3615 + border-top: 2px solid #fff;
  3616 + text-transform: uppercase;
  3617 + text-shadow: 1px 1px 2px rgba(255,255,255,1)
  3618 +}
  3619 +
  3620 +.email-buttons-1:hover {
  3621 + background: #518e31
  3622 +}
  3623 +
  3624 +.email-buttons-2:hover {
  3625 + transition: .6s;
  3626 + background: #e8e8e8
  3627 +}
  3628 +
  3629 +.email-set-text {
  3630 + margin-top: 20px
  3631 +}
  3632 +
  3633 +.email-set-text p {
  3634 + font-family: Tahoma;
  3635 + font-size: 14px;
  3636 + color: #464646
  3637 +}
  3638 +
  3639 +.email-set-soc {
  3640 + width: 94px;
  3641 + height: 36px;
  3642 + margin: 0 auto;
  3643 + padding-top: 20px
  3644 +}
  3645 +
  3646 +.email-set-wont-wr {
  3647 + width: 700px;
  3648 + height: 80px;
  3649 + margin-top: 20px
  3650 +}
  3651 +
  3652 +.email-set-wont {
  3653 + width: 213px;
  3654 + margin: 0 auto
  3655 +}
  3656 +
  3657 +.email-set-wont p {
  3658 + float: left;
  3659 + line-height: 34px;
  3660 + font-family: Tahoma;
  3661 + font-size: 14px;
  3662 + color: #464646;
  3663 + margin-right: 20px
  3664 +}
  3665 +
  3666 +#email-buttons-1_1 {
  3667 + float: right
  3668 +}
  3669 +
  3670 +.email-set-area {
  3671 + width: 700px;
  3672 + float: left;
  3673 + display: none;
  3674 + margin-top: 20px;
  3675 + transition: .4s
  3676 +}
  3677 +
  3678 +#email-set-area {
  3679 + width: 564px;
  3680 + max-width: 564px;
  3681 + height: 80px;
  3682 + margin-left: 50px;
  3683 + background: #d9edcf;
  3684 + border: 1px solid #d9edcf;
  3685 + outline: 0;
  3686 + box-sizing: border-box;
  3687 + padding: 10px;
  3688 + transition: .3s
  3689 +}
  3690 +
  3691 +#email-set-area:focus {
  3692 + transition: .3s;
  3693 + background: #dadada;
  3694 + border: 1px solid #dadada
  3695 +}
  3696 +
  3697 +#email-buttons-sub {
  3698 + border-bottom: 0;
  3699 + border-left: 0;
  3700 + border-right: 0;
  3701 + height: 28px;
  3702 + outline: 0;
  3703 + margin: 0 auto;
  3704 + float: none
  3705 +}
  3706 +
  3707 +#email-buttons-sub2 {
  3708 + border-bottom: 0;
  3709 + border-left: 0;
  3710 + border-right: 0;
  3711 + height: 28px;
  3712 + outline: 0
  3713 +}
  3714 +
  3715 +.em-sub {
  3716 + width: 700px;
  3717 + height: 28px;
  3718 + float: left;
  3719 + margin-top: 20px
  3720 +}
  3721 +
  3722 +#form-checked-email-02-2 {
  3723 + display: none
  3724 +}
  3725 +
  3726 +.subscription-wr-all {
  3727 + z-index: 999;
  3728 + width: 461px;
  3729 + min-height: 287px;
  3730 + background: #fff;
  3731 + position: fixed;
  3732 + bottom: 10px;
  3733 + right: 20px;
  3734 + box-sizing: border-box;
  3735 + display: none;
  3736 + box-shadow: 0 0 15px 0 rgba(0,0,0,0.4);
  3737 + padding: 15px 0
  3738 +}
  3739 +
  3740 +.subscription-wr {
  3741 + width: 100%;
  3742 + height: 100%;
  3743 + position: relative;
  3744 + float: left
  3745 +}
  3746 +
  3747 +.subscription-text {
  3748 + width: 100%;
  3749 + float: left;
  3750 + text-align: center
  3751 +}
  3752 +
  3753 +.subscription-text p {
  3754 + line-height: 15px;
  3755 + font-family: calibri;
  3756 + font-size: 18px;
  3757 + font-weight: bold;
  3758 + color: #333;
  3759 + padding: 0 22px;
  3760 + margin-bottom: 15px
  3761 +}
  3762 +
  3763 +.subscription-sale-wr {
  3764 + width: 100%;
  3765 + float: left;
  3766 + border-bottom: 1px dotted #363636
  3767 +}
  3768 +
  3769 +.subscription-sale-blocks {
  3770 + width: 151px;
  3771 + float: left
  3772 +}
  3773 +
  3774 +.sub-sale-blocks-img {
  3775 + width: 151px;
  3776 + height: 49px;
  3777 + float: left;
  3778 + text-align: center
  3779 +}
  3780 +
  3781 +.sub-sale-blocks-img img {
  3782 + width: 50px;
  3783 + height: 49px
  3784 +}
  3785 +
  3786 +.sub-sale-blocks-img img:hover {
  3787 + opacity: 70
  3788 +}
  3789 +
  3790 +.sub-sale-blocks-text {
  3791 + width: 151px;
  3792 + float: left;
  3793 + height: 49px;
  3794 + text-align: center
  3795 +}
  3796 +
  3797 +.sub-sale-blocks-text a {
  3798 + display: block;
  3799 + line-height: 49px;
  3800 + text-decoration: none;
  3801 + color: #363636
  3802 +}
  3803 +
  3804 +.sub-sale-blocks-text p {
  3805 + height: 49px;
  3806 + line-height: 49px;
  3807 + text-decoration: none;
  3808 + font-family: calibri;
  3809 + color: #363636;
  3810 + font-size: 13px
  3811 +}
  3812 +
  3813 +.sub-sale-forma-wr {
  3814 + width: 453px;
  3815 + float: left
  3816 +}
  3817 +
  3818 +.sub-sale-forma-blocks-l {
  3819 + width: 220px;
  3820 + float: left
  3821 +}
  3822 +
  3823 +.sub-sale-forma-blocks-r {
  3824 + width: 220px;
  3825 + float: left
  3826 +}
  3827 +
  3828 +[class*="sub-sale-forma-blocks"] input {
  3829 + width: 199px;
  3830 + height: 30px;
  3831 + background: #d9edcf;
  3832 + outline: 0;
  3833 + border: 0;
  3834 + padding-left: 10px;
  3835 + box-sizing: border-box;
  3836 + color: #363636
  3837 +}
  3838 +
  3839 +.sub-sale-forma-blocks-l input {
  3840 + float: right
  3841 +}
  3842 +
  3843 +.sub-sale-forma-blocks-r input {
  3844 + float: left
  3845 +}
  3846 +
  3847 +.sub-sale-forma-blocks-c {
  3848 + width: 12px;
  3849 + float: left;
  3850 + height: 30px
  3851 +}
  3852 +
  3853 +[class*="sub-sale-forma-blocks-name"] {
  3854 + height: 30px;
  3855 + float: left;
  3856 + width: 100%;
  3857 + line-height: 30px;
  3858 + box-sizing: border-box;
  3859 + color: #363636;
  3860 + font-family: calibri;
  3861 + font-size: 13px
  3862 +}
  3863 +
  3864 +.sub-sale-forma-blocks-name-first {
  3865 + padding-left: 20px
  3866 +}
  3867 +
  3868 +.sub-submit {
  3869 + margin-top: 16px;
  3870 + width: 453px;
  3871 + height: 28px;
  3872 + float: left;
  3873 + text-align: center
  3874 +}
  3875 +
  3876 +.sub-submit input {
  3877 + width: 106px;
  3878 + height: 26px;
  3879 + border-top: 2px solid #74ce45;
  3880 + border-bottom: 0;
  3881 + border-right: 0;
  3882 + border-left: 0;
  3883 + background: #70ae51;
  3884 + background: -moz-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);
  3885 + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#70ae51),color-stop(49%,#65a346),color-stop(50%,#5b983b),color-stop(100%,#4f8d30));
  3886 + background: -webkit-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);
  3887 + background: -o-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);
  3888 + background: -ms-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);
  3889 + background: linear-gradient(to bottom,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);
  3890 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ae51',endColorstr='#4f8d30',GradientType=0);
  3891 + line-height: 24px;
  3892 + color: #fff;
  3893 + text-transform: uppercase;
  3894 + font-size: 12px;
  3895 + font-family: calibri;
  3896 + font-weight: bold;
  3897 + cursor: pointer;
  3898 + border-radius: 5px
  3899 +}
  3900 +
  3901 +.sub-submit input:focus {
  3902 + outline: 0;
  3903 + border-top: 2px solid #74ce45;
  3904 + border-bottom: 0;
  3905 + border-right: 0;
  3906 + border-left: 0
  3907 +}
  3908 +
  3909 +.sub-text-footer {
  3910 + width: 453px;
  3911 + float: left;
  3912 + height: 30px;
  3913 + text-align: center
  3914 +}
  3915 +
  3916 +.sub-text-footer {
  3917 + height: 30px;
  3918 + line-height: 30px;
  3919 + color: #363636;
  3920 + font-size: 13px;
  3921 + font-family: calibri
  3922 +}
  3923 +
  3924 +.sub-closed {
  3925 + width: 8px;
  3926 + height: 8px;
  3927 + position: absolute;
  3928 + cursor: pointer;
  3929 + top: 10px;
  3930 + right: 10px
  3931 +}
  3932 +
  3933 +.sub-closed img {
  3934 + width: 8px;
  3935 + height: 8px;
  3936 + float: left
  3937 +}
  3938 +
  3939 +.wrong {
  3940 + color: #b1292b
  3941 +}
  3942 +
  3943 +.normal {
  3944 + color: #68a548
  3945 +}
  3946 +
  3947 +.w25 {
  3948 + width: 25px
  3949 +}
  3950 +
  3951 +.w30 {
  3952 + width: 30px
  3953 +}
  3954 +
  3955 +.w35 {
  3956 + width: 35px
  3957 +}
  3958 +
  3959 +.w66 {
  3960 + width: 66px
  3961 +}
  3962 +
  3963 +.w75 {
  3964 + width: 75px
  3965 +}
  3966 +
  3967 +.w82 {
  3968 + width: 82px
  3969 +}
  3970 +
  3971 +.w85 {
  3972 + width: 85px
  3973 +}
  3974 +
  3975 +.w90 {
  3976 + width: 90px
  3977 +}
  3978 +
  3979 +.w100 {
  3980 + width: 100px
  3981 +}
  3982 +
  3983 +.w120 {
  3984 + width: 120px
  3985 +}
  3986 +
  3987 +.w147 {
  3988 + width: 147px
  3989 +}
  3990 +
  3991 +.w170 {
  3992 + width: 170px
  3993 +}
  3994 +
  3995 +.w184 {
  3996 + width: 184px
  3997 +}
  3998 +
  3999 +.w199 {
  4000 + width: 199px
  4001 +}
  4002 +
  4003 +.w200 {
  4004 + width: 200px
  4005 +}
  4006 +
  4007 +.w205 {
  4008 + width: 205px
  4009 +}
  4010 +
  4011 +.w210 {
  4012 + width: 210px
  4013 +}
  4014 +
  4015 +.w232 {
  4016 + width: 232.5px
  4017 +}
  4018 +
  4019 +.bold18 {
  4020 + font-size: 18px;
  4021 + font-weight: bold
  4022 +}
  4023 +
  4024 +input[type="number"] {
  4025 + background-color: #f5f5f5;
  4026 + border: 0;
  4027 + width: 29px;
  4028 + height: 18px;
  4029 + padding: 4px 6px;
  4030 + border: 1px solid #e0e0e0;
  4031 + border-radius: 4px;
  4032 + text-align: center;
  4033 + -moz-box-shadow: inset 2px 2px 8px #dfdfdf;
  4034 + -webkit-box-shadow: inset 2px 2px 8px #dfdfdf;
  4035 + box-shadow: inset 2px 2px 8px #dfdfdf
  4036 +}
  4037 +
  4038 +.clear {
  4039 + clear: both
  4040 +}
  4041 +
  4042 +.popup {
  4043 + font-family: Calibri,Tahoma,Arial,sans-serif;
  4044 + background-color: #d9dade;
  4045 + color: #333;
  4046 + position: fixed;
  4047 + z-index: 99999;
  4048 + width: 100%;
  4049 + height: 100%;
  4050 + background-color: rgba(0,0,0,0.7)
  4051 +}
  4052 +
  4053 +.popup_window {
  4054 + background-color: white;
  4055 + z-index: 9999;
  4056 + margin-left: auto;
  4057 + margin-right: auto;
  4058 + min-width: 300px;
  4059 + text-align: center;
  4060 + margin-top: 7%;
  4061 + max-height: 530px;
  4062 + position: relative;
  4063 + -moz-box-shadow: 0 0 16px rgba(0,0,0,0.7);
  4064 + -webkit-box-shadow: 0 0 16px rgba(0,0,0,0.7);
  4065 + box-shadow: 0 0 16px rgba(0,0,0,0.7)
  4066 +}
  4067 +
  4068 +.popup_close_button {
  4069 + width: 40px;
  4070 + height: 40px;
  4071 + position: absolute;
  4072 + top: 0;
  4073 + right: 0;
  4074 + background: #f5f5f5 url("../images/close.png") center center no-repeat;
  4075 + cursor: pointer
  4076 +}
  4077 +
  4078 +.popup_window_content {
  4079 + padding: 40px
  4080 +}
  4081 +
  4082 +.summary_price {
  4083 + background-color: #f5f5f5;
  4084 + width: 100%;
  4085 + text-align: right;
  4086 + color: #5c5c5c;
  4087 + font-weight: bold;
  4088 + font-family: Calibri;
  4089 + padding-top: 9px;
  4090 + padding-bottom: 12px
  4091 +}
  4092 +
  4093 +.summary_price .price {
  4094 + font-weight: normal;
  4095 + font-size: 16px
  4096 +}
  4097 +
  4098 +.summary_price span {
  4099 + font-weight: bold;
  4100 + font-size: 22px
  4101 +}
  4102 +
  4103 +.summary_price .text {
  4104 + font-size: 16px;
  4105 + padding-right: 75px
  4106 +}
  4107 +
  4108 +.popup_footer {
  4109 + text-align: right;
  4110 + margin-top: 42px;
  4111 + margin-bottom: -7px
  4112 +}
  4113 +
  4114 +.green_but2 {
  4115 + background-color: #4fa32c;
  4116 + color: #fff;
  4117 + border-radius: 3px;
  4118 + font-weight: bold;
  4119 + text-decoration: none;
  4120 + font-size: 13px;
  4121 + font-family: Calibri;
  4122 + padding: 5px 13px 8px 13px
  4123 +}
  4124 +
  4125 +.popup_window a {
  4126 + display: inline
  4127 +}
  4128 +
  4129 +.cont_shop_but,#help {
  4130 + font-size: 13px;
  4131 + color: #555;
  4132 + padding-right: 25px;
  4133 + padding-left: 25px
  4134 +}
  4135 +
  4136 +h4 {
  4137 + font-size: 24px;
  4138 + color: #464646;
  4139 + text-align: left;
  4140 + margin: 0;
  4141 + padding: 0
  4142 +}
  4143 +
  4144 +.basket_block_header {
  4145 + display: table;
  4146 + border-bottom: 1px solid #cdcdcd;
  4147 + line-height: 1
  4148 +}
  4149 +
  4150 +.basket_block_header div {
  4151 + display: table-cell;
  4152 + vertical-align: bottom;
  4153 + font-size: 16px;
  4154 + font-weight: bold;
  4155 + font-family: Calibri;
  4156 + color: #7d7d7d;
  4157 + padding: 15px 20px 12px
  4158 +}
  4159 +
  4160 +.basket_block_content {
  4161 + max-height: 270px;
  4162 + width: 940px
  4163 +}
  4164 +
  4165 +.basket_block_content.overflow {
  4166 + overflow-y: auto
  4167 +}
  4168 +
  4169 +.basket_element_name {
  4170 + display: table-cell;
  4171 + vertical-align: middle;
  4172 + width: 300px;
  4173 + text-align: left;
  4174 + padding: 15px 10px 15px 15px
  4175 +}
  4176 +
  4177 +.basket_element {
  4178 + border-bottom: 1px solid #cdcdcd;
  4179 + padding-left: 5px
  4180 +}
  4181 +
  4182 +.basket_element:last-child {
  4183 + border: 0
  4184 +}
  4185 +
  4186 +.picture_element {
  4187 + float: left;
  4188 + -moz-box-shadow: 0 0 5px rgba(0,0,0,0.7);
  4189 + -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.7);
  4190 + box-shadow: 0 0 5px rgba(0,0,0,0.7);
  4191 + margin-right: 15px
  4192 +}
  4193 +
  4194 +.title_element {
  4195 + font-weight: bold;
  4196 + font-size: 18px;
  4197 + padding: 15px;
  4198 + line-height: 1
  4199 +}
  4200 +
  4201 +.title_element .subtitle_element {
  4202 + font-size: 13px;
  4203 + font-weight: normal;
  4204 + margin-top: 8px;
  4205 + opacity: 0
  4206 +}
  4207 +
  4208 +.basket_element_prepack {
  4209 + display: table-cell;
  4210 + vertical-align: middle;
  4211 + width: 195px;
  4212 + padding-right: 18px;
  4213 + position: relative
  4214 +}
  4215 +
  4216 +.basket_element_priceone {
  4217 + display: table-cell;
  4218 + vertical-align: middle;
  4219 + padding-right: 25px
  4220 +}
  4221 +
  4222 +.basket_element_pricenum {
  4223 + display: table-cell;
  4224 + vertical-align: middle;
  4225 + padding-right: 20px;
  4226 + padding-left: 10px
  4227 +}
  4228 +
  4229 +.basket_element_priceall {
  4230 + display: table-cell;
  4231 + vertical-align: middle;
  4232 + padding-left: 30px
  4233 +}
  4234 +
  4235 +.basket_element_delete {
  4236 + display: table-cell;
  4237 + vertical-align: middle;
  4238 + padding-left: 12px
  4239 +}
  4240 +
  4241 +.basket_element_delete a {
  4242 + background: url("../images/delete_grey.png");
  4243 + display: table-cell;
  4244 + vertical-align: middle;
  4245 + width: 16px;
  4246 + height: 16px;
  4247 + cursor: pointer
  4248 +}
  4249 +
  4250 +.basket_element_delete a:hover {
  4251 + background: url("../images/delete.png")
  4252 +}
  4253 +
  4254 +.basket_element_priceone .price span {
  4255 + font-size: 22px
  4256 +}
  4257 +
  4258 +.basket_element_priceall .price span {
  4259 + font-size: 22px
  4260 +}
  4261 +
  4262 +.del_but_right {
  4263 + margin-right: -33px;
  4264 + float: right
  4265 +}
  4266 +
  4267 +.prepacks_table {
  4268 + display: table;
  4269 + vertical-align: bottom
  4270 +}
  4271 +
  4272 +.prepacks_table_cell {
  4273 + display: table-cell;
  4274 + line-height: .9;
  4275 + font-size: 11px;
  4276 + width: 20px;
  4277 + vertical-align: bottom;
  4278 + padding: 3px
  4279 +}
  4280 +
  4281 +.prepacks_table_cell_elem {
  4282 + border: 1px solid #e0e0e0;
  4283 + padding-left: 5px;
  4284 + padding-right: 5px;
  4285 + padding-bottom: 3px;
  4286 + cursor: pointer;
  4287 + color: #5c5c5c
  4288 +}
  4289 +
  4290 +.prepacks_table_cell_elem:before {
  4291 + content: '';
  4292 + border: 1px solid #e0e0e0;
  4293 + width: 15px;
  4294 + height: 1px;
  4295 + display: -webkit-inline-box;
  4296 + border-radius: 1px
  4297 +}
  4298 +
  4299 +.prepacks_table_cell_elem.min {
  4300 + width: 17px;
  4301 + padding-top: 2px
  4302 +}
  4303 +
  4304 +.prepacks_table_cell_elem.two {
  4305 + width: 22px;
  4306 + padding-top: 4px
  4307 +}
  4308 +
  4309 +.prepacks_table_cell_elem.premax {
  4310 + width: 23px;
  4311 + padding-top: 4px
  4312 +}
  4313 +
  4314 +.prepacks_table_cell_elem.max {
  4315 + width: 27px;
  4316 + padding-top: 4px
  4317 +}
  4318 +
  4319 +.prepacks_table_cell_elem.min:before {
  4320 + margin-bottom: 3px
  4321 +}
  4322 +
  4323 +.prepacks_table_cell_elem.two:before {
  4324 + margin-bottom: 6px
  4325 +}
  4326 +
  4327 +.prepacks_table_cell_elem.premax:before {
  4328 + margin-bottom: 10px
  4329 +}
  4330 +
  4331 +.prepacks_table_cell_elem.max:before {
  4332 + margin-bottom: 5px
  4333 +}
  4334 +
  4335 +.prepacks_table_cell_elem.actived {
  4336 + border: 1px solid #4fa32c
  4337 +}
  4338 +
  4339 +.prepacks_table_cell_elem.actived:before {
  4340 + border: 1px solid #4fa32c
  4341 +}
  4342 +
  4343 +.align_bottom {
  4344 + position: relative
  4345 +}
  4346 +
  4347 +.items .one_item .one_item_buttons a {
  4348 + display: inline;
  4349 + margin: 3px
  4350 +}
  4351 +
  4352 +.items .one_item .one_item_buttons,.compare_items_table .compare_one_item .one_item_buttons {
  4353 + width: 120%;
  4354 + margin-top: 15px;
  4355 + margin-bottom: 15px;
  4356 + margin-left: -10px
  4357 +}
  4358 +
  4359 +input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
  4360 + -webkit-appearance: none;
  4361 + -moz-appearance: none;
  4362 + appearance: none;
  4363 + margin: 0
  4364 +}
  4365 +
  4366 +input[type=number] {
  4367 + -moz-appearance: textfield
  4368 +}
  4369 +
  4370 +.file_download_link_ {
  4371 + position: relative
  4372 +}
  4373 +
  4374 +.file_download_link_ a {
  4375 + position: absolute;
  4376 + top: 32px;
  4377 + right: 16px;
  4378 + padding: 10px 10px 10px 22px;
  4379 + background: url(../images/icon_catalog_18x18_01.png) no-repeat 0 50%;
  4380 + margin-left: 23px;
  4381 + z-index: 3;
  4382 + font-style: italic
  4383 +}
  4384 +
  4385 +.faq a {
  4386 + position: absolute;
  4387 + top: 32px;
  4388 + left: 0;
  4389 + padding: 10px 10px 10px 22px;
  4390 + background: url(../images/icon_faq_18x18_01.png) no-repeat 0 50%;
  4391 + margin-left: 23px;
  4392 + z-index: 3;
  4393 + font-style: italic
  4394 +}
  4395 +
  4396 +.style {
  4397 + width: 100%;
  4398 + float: left
  4399 +}
  4400 +
  4401 +.questions_ li {
  4402 + width: 100%;
  4403 + float: left;
  4404 + border-bottom: 1px solid #c4c4c4;
  4405 + min-height: 58px;
  4406 + height: 58px;
  4407 + position: relative
  4408 +}
  4409 +
  4410 +.questions_ li.active {
  4411 + height: auto
  4412 +}
  4413 +
  4414 +.questions_ li span.nav {
  4415 + width: 18px;
  4416 + height: 18px;
  4417 + border-radius: 100%;
  4418 + text-align: center;
  4419 + line-height: 18px;
  4420 + color: #fff;
  4421 + font-style: italic;
  4422 + font-weight: 700;
  4423 + background: #f58025;
  4424 + display: block;
  4425 + float: left;
  4426 + font-size: 12px;
  4427 + position: absolute;
  4428 + top: 20px;
  4429 + left: 0
  4430 +}
  4431 +
  4432 +.questions_a {
  4433 + float: left;
  4434 + margin-left: 25px;
  4435 + position: relative;
  4436 + margin-top: 22px;
  4437 + height: 15px;
  4438 + width: 935px;
  4439 + white-space: nowrap;
  4440 + overflow: hidden
  4441 +}
  4442 +
  4443 +.questions_a.long_:before {
  4444 + width: 50px;
  4445 + height: 58px;
  4446 + top: -22px;
  4447 + right: 0;
  4448 + position: absolute;
  4449 + content: '';
  4450 + background: #fff;
  4451 + z-index: 2;
  4452 + background: -moz-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);
  4453 + background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);
  4454 + background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);
  4455 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#ffffff',GradientType=1)
  4456 +}
  4457 +
  4458 +.questions_ li a {
  4459 + float: left;
  4460 + font-size: 15px;
  4461 + color: #464646;
  4462 + font-weight: 700;
  4463 + text-decoration: none;
  4464 + border-bottom: 1px dashed #464646;
  4465 + position: relative
  4466 +}
  4467 +
  4468 +.questions_ li a:hover {
  4469 + color: #55a727;
  4470 + border-bottom: 1px dashed #55a727
  4471 +}
  4472 +
  4473 +.questions_ li.active a {
  4474 + cursor: default;
  4475 + color: #55a727;
  4476 + border-bottom: 1px dashed #55a727
  4477 +}
  4478 +
  4479 +.questions_answer {
  4480 + background: #f5f5f5;
  4481 + padding: 15px 17px;
  4482 + box-sizing: border-box;
  4483 + position: relative;
  4484 + border-radius: 4px;
  4485 + margin-top: 16px;
  4486 + font-size: 13px;
  4487 + color: #464646;
  4488 + line-height: 18px
  4489 +}
  4490 +
  4491 +.questions_answer:before {
  4492 + position: absolute;
  4493 + top: -10px;
  4494 + left: 40px;
  4495 + content: '';
  4496 + background: url("../images/question_arrow.png") no-repeat;
  4497 + width: 12px;
  4498 + height: 10px
  4499 +}
  4500 +
  4501 +.questions_answer span {
  4502 + font-weight: 700
  4503 +}
  4504 +
  4505 +.questions_img img {
  4506 + margin-left: 17px
  4507 +}
  4508 +
  4509 +.questions_hide {
  4510 + display: none
  4511 +}
  4512 +
  4513 +.questions_ li.active .questions_hide {
  4514 + display: block
  4515 +}
  4516 +
  4517 +.questions_answer a {
  4518 + color: inherit !important;
  4519 + font-size: inherit !important;
  4520 + border-bottom: 0 !important;
  4521 + cursor: pointer !important;
  4522 + text-decoration: underline !important;
  4523 + margin-left: 0 !important;
  4524 + margin-top: 0 !important;
  4525 + float: none !important;
  4526 + display: inline-block
  4527 +}
  4528 +
  4529 +.questions_answer p {
  4530 + width: 100%;
  4531 + float: left;
  4532 + margin-top: 6px
  4533 +}
  4534 +
  4535 +.questions_answer p:first-child {
  4536 + margin-top: 0
  4537 +}
  4538 +
  4539 +.questions_answer a:hover {
  4540 + color: #f58025 !important
  4541 +}
  4542 +
  4543 +.title_new {
  4544 + width: 935px;
  4545 + position: absolute;
  4546 + top: 50px;
  4547 + right: 0;
  4548 + background: #fff;
  4549 + white-space: normal;
  4550 + z-index: 3;
  4551 + font-size: 15px;
  4552 + padding: 10px;
  4553 + box-shadow: 0 0 5px 0 rgba(149,149,149,0.75);
  4554 + box-sizing: border-box;
  4555 + line-height: 18px
  4556 +}
  4557 +
  4558 +.pic_wr_ {
  4559 + margin-top: 35px
  4560 +}
  4561 +
  4562 +.pic_wr_:last-child {
  4563 + margin-bottom: 35px
  4564 +}
  4565 +
  4566 +.pic_txt {
  4567 + width: 99px;
  4568 + float: left;
  4569 + font-size: 13px;
  4570 + font-weight: bold;
  4571 + font-style: italic;
  4572 + padding-top: 15px
  4573 +}
  4574 +
  4575 +.pic_img {
  4576 + width: 861px;
  4577 + float: left
  4578 +}
  4579 +
  4580 +.pic_img img {
  4581 + max-width: 100%;
  4582 + height: auto
  4583 +}
  4584 +
  4585 +.questions_img {
  4586 + padding-bottom: 20px
  4587 +}
  4588 +
  4589 +.title_questions_ {
  4590 + font-weight: bold;
  4591 + color: #464646;
  4592 + font-size: 22px;
  4593 + text-align: center;
  4594 + height: 54px;
  4595 + line-height: 79px
  4596 +}
  4597 +
  4598 +.not_availiable {
  4599 + position: absolute;
  4600 + width: 100%;
  4601 + height: 100%;
  4602 + background-color: rgba(0,0,0,0.15);
  4603 + background-position: -1px 0
  4604 +}
  4605 +
  4606 +.not_availiable.rus {
  4607 + background-image: url('/images/asd_ru_01.png')
  4608 +}
  4609 +
  4610 +.not_availiable.ukr {
  4611 + background-image: url('/images/asd_ua_01.png')
  4612 +}
  4613 +
  4614 +.video_posts.float.last {
  4615 + position: relative;
  4616 + transition: .5s;
  4617 + margin-bottom: 30px
  4618 +}
  4619 +
  4620 +.video_posts.float.last.small {
  4621 + height: 400px;
  4622 + overflow: hidden;
  4623 + margin-bottom: 0 !important
  4624 +}
  4625 +
  4626 +.video_posts.float.last .white_list {
  4627 + z-index: 1;
  4628 + content: '';
  4629 + position: absolute;
  4630 + width: 100%;
  4631 + left: 0;
  4632 + bottom: 50px;
  4633 + height: 50px;
  4634 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent',endColorstr = '#ffffff');
  4635 + -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent', endColorstr = '#ffffff')";
  4636 + background-image: -moz-linear-gradient(top,transparent,#fff);
  4637 + background-image: -ms-linear-gradient(top,transparent,#fff);
  4638 + background-image: -o-linear-gradient(top,transparent,#fff);
  4639 + background-image: -webkit-gradient(linear,center top,center bottom,from(transparent),to(#fff));
  4640 + background-image: -webkit-linear-gradient(top,transparent,#fff);
  4641 + background-image: linear-gradient(top,transparent,#fff);
  4642 + transition: .3s
  4643 +}
  4644 +
  4645 +.video_posts.float.last.small .open_list_btn {
  4646 + bottom: 0 !important
  4647 +}
  4648 +
  4649 +.video_posts .open_list_btn {
  4650 + position: absolute;
  4651 + bottom: -50px;
  4652 + width: 100%;
  4653 + text-align: center;
  4654 + z-index: 2;
  4655 + font-weight: bold;
  4656 + padding: 11px 0 20px 0;
  4657 + font-size: 16px;
  4658 + color: gray;
  4659 + background-color: #fff;
  4660 + cursor: pointer
  4661 +}
  4662 +
  4663 +.video_posts .close_list_btn {
  4664 + position: absolute;
  4665 + bottom: -50px;
  4666 + width: 100%;
  4667 + text-align: center;
  4668 + z-index: 2;
  4669 + font-weight: bold;
  4670 + padding: 11px 0 20px 0;
  4671 + font-size: 16px;
  4672 + color: gray;
  4673 + background-color: #fff;
  4674 + cursor: pointer
  4675 +}
  4676 +
  4677 +#content_nav .inner {
  4678 + box-sizing: border-box
  4679 +}
  4680 +
  4681 +#content_nav .content_nav_first_floor {
  4682 + padding: 0 !important;
  4683 + margin: 0 !important
  4684 +}
  4685 +
  4686 +#content_nav .content_nav_first_floor.clearfix {
  4687 + padding: 0;
  4688 + width: 25%;
  4689 + box-sizing: border-box;
  4690 + text-align: center;
  4691 + margin: 15px 0
  4692 +}
  4693 +
  4694 +#content_nav .content_nav_items {
  4695 + display: none
  4696 +}
  4697 +
  4698 +#content_nav .content_nav_first_floor .content_nav_logo {
  4699 + width: 100% !important;
  4700 + margin: 25px 0 !important;
  4701 + padding: 0 !important;
  4702 + height: 140px !important
  4703 +}
  4704 +
  4705 +#content_nav .content_nav_second_floor .float {
  4706 + padding: 0 !important;
  4707 + width: 25%;
  4708 + box-sizing: border-box;
  4709 + text-align: center;
  4710 + margin: 25px 0;
  4711 + height: 140px
  4712 +}
  4713 +
  4714 +#content_nav .content_nav_first_floor.clearfix {
  4715 + float: left;
  4716 + border: 0
  4717 +}
  4718 +
  4719 +.stock_items {
  4720 + padding-top: 25px
  4721 +}
  4722 +
  4723 +.catalog_slider .catalog_description.logo543 {
  4724 + background: #5b4a42
  4725 +}
  4726 +
  4727 +.catalog_description.logo320 {
  4728 + background-color: #00a3de
  4729 +}
  4730 +
  4731 +h2.types_logo_320 {
  4732 + color: #00a3de
  4733 +}
  4734 +
  4735 +h2.types_logo_543 {
  4736 + color: #5b4a42
  4737 +}
  4738 +
  4739 +.delivery-form-par {
  4740 + position: fixed;
  4741 + z-index: 99991;
  4742 + top: 0;
  4743 + background-color: rgba(255,255,255,0.75);
  4744 + width: 100%;
  4745 + height: 100%;
  4746 + display: none;
  4747 + transition: .3s
  4748 +}
  4749 +
  4750 +.delivery-form-par .close-white {
  4751 + content: '';
  4752 + position: absolute;
  4753 + top: 0;
  4754 + left: 0;
  4755 + width: 100%;
  4756 + height: 100%;
  4757 + cursor: pointer
  4758 +}
  4759 +
  4760 +.delivery-form-par .popup-main-delivery {
  4761 + width: 843px;
  4762 + height: 400px;
  4763 + box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.4);
  4764 + background-image: url("../images/right_deliver.png");
  4765 + background-size: contain;
  4766 + background-position: right center;
  4767 + background-repeat: no-repeat;
  4768 + background-color: #fdfaf1;
  4769 + position: absolute;
  4770 + font-family: Ubuntu;
  4771 + font-weight: normal;
  4772 + left: calc(50% - 421.5px);
  4773 + top: 15%
  4774 +}
  4775 +
  4776 +.delivery-form-par .content-popup .text-up {
  4777 + width: 100%;
  4778 + max-width: 332px;
  4779 + border-bottom: 1px solid #6cb33f;
  4780 + color: #42210b;
  4781 + text-align: center;
  4782 + font-size: 18px;
  4783 + padding-top: 19px;
  4784 + line-height: 22px;
  4785 + padding-bottom: 4px
  4786 +}
  4787 +
  4788 +.delivery-form-par .content-popup .text-down {
  4789 + width: 100%;
  4790 + max-width: 332px
  4791 +}
  4792 +
  4793 +.delivery-form-par .text-down .up-text {
  4794 + color: #42210b;
  4795 + font-size: 13.5px;
  4796 + text-align: center;
  4797 + width: 100%;
  4798 + padding-top: 23px;
  4799 + padding-bottom: 8px
  4800 +}
  4801 +
  4802 +.delivery-form-par .text-down .footer-text {
  4803 + color: #333;
  4804 + font-style: italic;
  4805 + text-align: center;
  4806 + font-family: Ubuntu;
  4807 + padding-top: 8px;
  4808 + padding-top: 24px;
  4809 + width: 100%;
  4810 + font-size: 11px
  4811 +}
  4812 +
  4813 +.delivery-form-par .submit-delivery-but {
  4814 + font-size: 15px;
  4815 + color: #fff;
  4816 + border: 0;
  4817 + background-color: #6cb33f;
  4818 + text-transform: lowercase;
  4819 + width: 80px;
  4820 + height: 25px;
  4821 + outline: 0;
  4822 + cursor: pointer
  4823 +}
  4824 +
  4825 +.delivery-form-par .text-up p span {
  4826 + color: #f15a24;
  4827 + font-size: 28.58px
  4828 +}
  4829 +
  4830 +.delivery-form-par .content-popup {
  4831 + transition: .3s;
  4832 + padding: 38px;
  4833 + width: 100%;
  4834 + height: 100%;
  4835 + min-height: 400px;
  4836 + max-width: 480px;
  4837 + box-sizing: border-box;
  4838 + background-image: url('../images/grad_popup.png');
  4839 + background-position: left center;
  4840 + background-repeat: no-repeat;
  4841 +}
  4842 +
  4843 +.delivery-form-par .text-down input {
  4844 + height: 23px;
  4845 + width: 104px;
  4846 + border: 1px solid #6cb33f;
  4847 + font-size: 13px;
  4848 + padding-left: 12px;
  4849 + outline: 0
  4850 +}
  4851 +
  4852 +.delivery-form-par .deliver-form {
  4853 + display: flex;
  4854 + justify-content: space-between;
  4855 + width: 100%px
  4856 +}
  4857 +
  4858 +body {
  4859 + font-family: Calibri,Candara,Segoe,'Segoe UI',Optima,Arial,sans-serif
  4860 +}
  4861 +
  4862 +.open-delivery-modal {
  4863 + opacity: 1;
  4864 + cursor: pointer;
  4865 + position: fixed;
  4866 + top: calc(50% - 80px);
  4867 + left: 0;
  4868 + font-size: 24px;
  4869 + z-index: 10000
  4870 +}
  4871 +
  4872 +.open-delivery-modal div {
  4873 + width: 100%;
  4874 + max-width: 360px;
  4875 + text-align: center;
  4876 + margin: 0 auto;
  4877 + position: relative
  4878 +}
  4879 +
  4880 +.open-delivery-modal div img {
  4881 + width: 100%;
  4882 + max-width: 360px
  4883 +}
  4884 +
  4885 +.modal_close {
  4886 + position: absolute;
  4887 + top: 23px;
  4888 + right: 10px;
  4889 + width: 15px;
  4890 + height: 15px;
  4891 + background-image: url('../images/close_popup.png');
  4892 + background-position: center center;
  4893 + background-repeat: no-repeat;
  4894 + border-radius: 50%;
  4895 + box-shadow: 0 1px 3px -1px rgba(0,0,0,0.40);
  4896 + cursor: default
  4897 +}
  4898 +.hidden_modal{display:none;}
  4899 +.close-popup {
  4900 + position: absolute;
  4901 + width: 19px;
  4902 + height: 19px;
  4903 + background-image: url(/images/icon_close2.png);
  4904 + background-position: center center;
  4905 + background-repeat: no-repeat;
  4906 + border-radius: 50%;
  4907 + top: 12px;
  4908 + right: 12px;
  4909 + cursor: pointer;
  4910 +}
  4911 +
  4912 +.popup_full {
  4913 + display: block
  4914 +}
  4915 +
  4916 +.popup_mobile {
  4917 + display: none
  4918 +}
  4919 +
  4920 +@media(max-width: 880px) {
  4921 + .delivery-form-par .popup-main-delivery {
  4922 + width:96%;
  4923 + left: 2%
  4924 + }
  4925 +
  4926 + .open-delivery-modal {
  4927 + top: initial;
  4928 + bottom: 0;
  4929 + width: 100%;
  4930 + box-shadow: inset 0 -250px 125px -250px black
  4931 + }
  4932 +
  4933 + .popup_full {
  4934 + display: none
  4935 + }
  4936 +
  4937 + .popup_mobile {
  4938 + display: block
  4939 + }
  4940 +}
  4941 +
  4942 +@media(max-width: 480px) {
  4943 + .delivery-form-par .content-popup {
  4944 + padding:25px
  4945 + }
  4946 +
  4947 + .delivery-form-par .popup-main-delivery {
  4948 + background-image: none;
  4949 + height: initial;
  4950 + top: 10%
  4951 + }
  4952 +
  4953 + .delivery-form-par .deliver-form {
  4954 + justify-content: center;
  4955 + align-items: center;
  4956 + flex-direction: column
  4957 + }
  4958 +
  4959 + .delivery-form-par .text-down input {
  4960 + margin-bottom: 5px
  4961 + }
  4962 +
  4963 + .delivery-form-par .submit-delivery-but {
  4964 + margin-top: 5px
  4965 + }
  4966 +
  4967 + .delivery-form-par .content-popup .text-up,.delivery-form-par .content-popup .text-down {
  4968 + max-width: 100%
  4969 + }
  4970 +}
  4971 +
963 4972 .content_blog .text_posts .one_post .one_post_image {
964 4973 position: relative;
965   - width: auto;
966   -}
967 4974 \ No newline at end of file
  4975 + width: auto
  4976 +}
... ...
www/css/main.min.css
1   -*{margin:0;padding:0}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,tr{margin:0;padding:0;letter-spacing:normal}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}caption,th{text-align:left}q:before,q:after{content:''}:focus{outline:0}abbr,acronym{border:0}html,body{height:100%}header,nav,section,article,aside,footer{display:block;margin:0;padding:0}img{border:0;width:auto}input{vertical-align:middle}ol,ul{margin:0;padding:0;list-style:none}ul li{margin:0;padding:0}a{color:#4a4a4a;text-decoration:underline;display:block}a:hover{color:#4a4a4a;text-decoration:underline}.clearfix:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0}.clearfix{display:inline-block}html[xmlns] .clearfix{display:block}body{font:normal 12px/14px Arial,Tahoma,sans-serif;color:#4a4a4a}.float{display:inline;float:left}.last{margin-right:0 !important;padding-right:0 !important}.display_none{display:none !important}.display_block{display:block !important}.inner{width:960px;margin:0 auto}.not_exist{cursor:default;opacity:.3;-moz-opacity:.3;-khtml-opacity:.3}#wrapper{min-height:100%;height:auto !important;height:100%;margin:0 auto -5em}.beta{width:960px;overflow:hidden;margin:0 auto;padding:10px 0 0;font-size:20px;line-height:20px;text-align:center}.beta a{display:inline;color:#009aff}#header{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ececec),color-stop(100%,#ececec));background:-webkit-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-o-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-ms-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:linear-gradient(to bottom,#fff 0,#ececec 100%,#ececec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ececec',GradientType=0);position:relative}.columns3{margin:10px 0}.columns3.first_column{width:320px}.columns3.second_column{width:375px}.columns3.third_column{width:265px;position:relative}.switch_lang{margin:5px 0 10px 0}.switch_lang div{padding:0 10px 0 20px}.switch_lang div.ru{background:url(../images/ru_flag.gif) no-repeat 0 50%;color:#55a727}.switch_lang div{color:#55a727}.switch_lang div a.active,.switch_lang div a:hover{color:#55a727}.contact_phones,.contact_mob_phones{font:normal 17px/20px Arial,Tahoma,sans-serif !important;padding:2px 0 2px 20px !important}.contact_phones a,.contact_mob_phones a{display:inline}.contact_phones{background:url(../images/tel.png) no-repeat 0 50%}.contact_mob_phones{background:url(../images/mob.png) no-repeat 1% 50%}span.small_digits{font-size:15px !important}.callback{font-style:italic;margin:5px 0 0 0}.logo{margin:10px 0 10px 0}.menu_cabinet{padding:10px 10px 10px 20px}.basket{padding:10px 10px 10px 23px}.compare_wrapper{min-height:35px;position:relative}header .navbar .compare_wrapper{display:inline-block}.compare{padding:5px 0 15px 20px;margin:0 0 0 120px}header .compare{margin:10px 0 0 20px}.compare_wrapper .compare_list{position:absolute;top:0;right:0;padding:0 10px 10px 10px;background:#f5f5f5;border:2px solid #267f00;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;z-index:9991;font:normal 12px/20px Arial,Tahoma,sans-serif;display:none}header .compare_wrapper .compare_list a,header .compare_wrapper .compare_list a:hover{color:#4a4a4a;text-decoration:underline}header .compare_wrapper .compare_list .compare a,header .compare_wrapper .compare_list .compare a:hover{text-decoration:none}.compare_wrapper .compare_list .compare{margin:0;padding:1px 0 5px 20px}.compare_wrapper .compare_list .compare a{text-decoration:none}.compare_wrapper .compare_list ul li{font:normal 12px/20px Arial,Tahoma,sans-serif;padding:2px 0}.compare_wrapper .compare_list ul li a{margin:0 5px 0 0}.basket .active{color:#f58025}.basket_number{padding:7px 0 10px 0}.basket_number a,.basket_number a:hover{text-decoration:none;color:#fff;background:#67b73e;padding:2px 5px;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;webkit-box-shadow:inset 2px 1px 10px 0 #417e24;-moz-box-shadow:inset 2px 1px 10px 0 #417e24;box-shadow:inset 2px 1px 10px 0 #417e24}.menu_cabinet a,.basket a,.compare a{font-style:italic}#header .columns3 .menu_cabinet{background:url(../images/cabinet.png) no-repeat 0 50%}#header .columns3 .basket{background:url(../images/basket.png) no-repeat 0 50%}#header .columns3 .compare,header .compare_wrapper .compare{background:url(../images/ico_comparison.png) no-repeat 0 25%}#header .columns3 .site_search,header .site_search input{position:relative}#header .columns3 input,.cat_center .site_search input,header .site_search input{width:250px;margin:0;padding:7px 5px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:0;-moz-box-shadow:inset 1px 1px 1px 0 #d0d0d0;-webkit-box-shadow:inset 1px 1px 1px 0 #d0d0d0;box-shadow:inset 1px 1px 1px 0 #d0d0d0}#header .columns3 label,.cat_center .site_search label,header .site_search label{position:absolute;top:7px;right:7px}header .site_search label{top:12px;right:12px}#header .columns3 .site_search.active .search_result_wrapper,#header .columns3 .site_search:active .search_result_wrapper,.cat_center .site_search.active .search_result_wrapper,header .site_search.nav-search .search_result_wrapper{position:absolute;z-index:9999;background:#ececec;width:260px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:2px solid #4fa32c;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75)}header .site_search.nav-search .search_result_wrapper{position:static}#header .columns3 .site_search.active .search_result_wrapper .search_result_display,header .site_search.nav-search.active .search_result_wrapper .search_result_display{display:block}#header .columns3 .site_search .search_result_wrapper .search_result_display,header .site_search.nav-search .search_result_wrapper .search_result_display{display:none}#header .columns3 .site_search .search_result_wrapper li,header .site_search.nav-search .search_result_wrapper li{border-bottom:1px solid #c4c4c4;margin:15px;padding:0 0 10px 0}#header .columns3 .site_search .search_result_wrapper li img,header .site_search.nav-search .search_result_wrapper li img{width:100px;margin:5px;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75);float:left}#header .columns3 .site_search .search_result_wrapper li p,header .site_search.nav-search .search_result_wrapper li p{margin:0 0 0 80px;font:normal 13px/15px Arial,Tahoma,sans-serif;color:#f58025}#header .columns3 .site_search .search_result_wrapper li p span,header .site_search.nav-search .search_result_wrapper li p span{font:bold 20px/22px Arial,Tahoma,sans-serif;color:#f58025}#header .columns3 .site_search .search_result_wrapper li a.search_result_title,header .site_search.nav-search .search_result_wrapper li a.search_result_title{font:bold 14px/20px Arial,Tahoma,sans-serif;margin:0 0 0 80px;text-decoration:none}#header .columns3 .site_search .search_result_wrapper .all_search_result,header .site_search.nav-search .search_result_wrapper .all_search_result{font:italic 12px/15px Arial,Tahoma,sans-serif;text-decoration:underline;margin:0 15px 5px 15px}#header .columns3 .site_search .search_result_wrapper .no_search_result,header .site_search.nav-search .search_result_wrapper .no_search_result{font:italic 12px/15px Arial,Tahoma,sans-serif;margin:5px}#header_nav{position:relative;height:20px}#header_nav ul{border:3px solid #ececec;height:35px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;background:#67b73e;position:absolute;z-index:999}#header_nav ul li{display:inline;float:left;background:#67b73e;border-left:1px solid #55a727 !important}.header_nav_1_{width:50px !important}.header_nav_2_{width:100px !important}.header_nav_3_{width:145px !important}.header_nav_4_{width:175px !important}.header_nav_5_{width:135px !important}.header_nav_6_{width:167px !important}.header_nav_7_{width:103px !important}.header_nav_8_{width:60px !important}#header_nav ul li:hover,#header_nav ul li.active{background:#55a727}#header_nav ul li.left_radius{border-radius:5px 0 0 5px;-moz-border-radius:5px 0 0 5px;-webkit-border-radius:5px 0 0 5px}#header_nav ul li.right_radius{border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;-webkit-border-radius:0 5px 5px 0}#header_nav ul li a{text-transform:uppercase;text-decoration:none;color:#fff;font:bold 12px/15px Arial,Tahoma,sans-serif;text-align:center;padding:10px 1.3pc;float:left;white-space:nowrap}#content{display:block}#content_nav{background:url(../images/pattern.png)}#content_nav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0 0}h2.types_logo_1{color:#4fa32c}h2.types_logo_2{color:#bb4648}h2.types_logo_3{color:#f58025}h2.types_logo_4{color:#378a92}h2.types_logo_5{color:#db0565}h2.types_logo_6{color:#935927}h2.types_logo_479{color:#b1873f}#content_nav .content_nav_first_floor{padding:40px 0 15px 0;margin:0 0 20px 0;border-bottom:1px solid #cdcdcd}#content_nav .content_nav_first_floor .content_nav_logo{padding:0 40px 0 0;width:150px}#content_nav .content_nav_logo a{text-decoration:none}#content_nav .content_nav_first_floor .content_nav_items{column-count:4;-moz-column-count:4;-webkit-column-count:4;column-width:180px;-moz-column-width:180px;-webkit-column-width:180px}#content_nav .content_nav_first_floor .content_nav_items a,.content_nav_items a{font-size:13px;line-height:21px;font-style:italic;width:160px}.content_nav_items a:hover{color:#f36d00}.content_nav_second_floor .float{padding:0 40px 20px 0;width:150px}.shadow_to_top{background:url(../images/shadow.png) no-repeat center center;height:22px;text-align:center;overflow:hidden}.content_items .title{background:url(../images/line.gif) 100% 85% repeat-x}.content_items .title .items_title{font:bold 20px/24px Arial,Tahoma,sans-serif;color:#f36d00}.content_items .title .float{background:#fff}.content_items .title .content_arrow_left,.content_items .title .content_arrow_right{margin:4px 6px}.content_items .title .content_items_page{margin:4px 0}.content_items .title .content_arrow_left{width:10px;height:18px;background:url(../images/content_arrow_left.png) no-repeat}.content_items .title .content_arrow_left:hover{width:10px;height:18px;background:url(../images/content_arrow_left_hover.png) no-repeat}.content_items .title .content_arrow_right{width:10px;height:18px;background:url(../images/content_arrow_right.png) no-repeat}.content_items .title .content_arrow_right:hover{width:10px;height:18px;background:url(../images/content_arrow_right_hover.png) no-repeat}.content_items .title .content_items_page{font:normal 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a}.align_bottom{position:absolute;bottom:0;width:90%}.items .one_item{width:165px;min-height:331px;height:331px;margin:20px 33px 45px 0;text-align:center;position:relative}.subcategory .items .one_item,.search .items .one_item{min-height:410px;width:175px;margin:20px 95px 45px 0}.subcategory_list .items .one_item{min-height:230px;width:100%;margin:20px 0 20px 0}.subcategory_list .items .one_item .one_item_image{margin:0 0 10px 18px;float:left}.subcategory_list .items .one_item .align_bottom{position:absolute;text-align:left;bottom:0;left:200px}.subcategory_list .items .one_item .align_bottom .one_item_buttons{text-align:center;margin:0;float:left;display:inline}.subcategory_list .items .one_item .align_bottom .one_item_compare{float:left;display:inline;margin:15px 0 0 10px}.subcategory_list .items .one_item .one_item_title,.subcategory_list .items .one_item .one_item_description{text-align:left}.subcategory_list .items .one_item .one_item_title{margin:0 0 15px 200px}.subcategory_list .items .one_item .one_item_description{display:none}.subcategory_list .items .one_item .one_item_content_description{display:block;text-align:left;font:normal 13px/16px Arial,Tahoma,sans-serif;margin:0 0 0 200px}.one_item_description{overflow:hidden;height:30px}.items .one_item .new_top{margin:0 0 0 23px;min-height:18px}.items .one_item .new_top div{margin:0 3px 0 0}.items .one_item .one_item_image{margin:0 auto 10px auto;display:inline-block;position1:relative;overflow:hidden;min-width:128px;max-width:175px;height:200px;-webkit-box-shadow:0 0 15px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 15px 0 rgba(50,50,50,0.75);box-shadow:0 0 15px 0 rgba(50,50,50,0.75)}.one_item_description{font:normal 12px/14px Arial,Tahoma,sans-serif;margin:5px 0 0 0}.one_item_content_description{display:none}.items .one_item .one_item_title a{text-decoration:none}.items .one_item .one_item_title a h3{font:bold 16px/20px Arial,Tahoma,sans-serif;color:#464646}.items .one_item .one_item_price{font:normal 13px/15px Arial,Tahoma,sans-serif;color:#f58025}.items .one_item .one_item_price span{font:bold 20px/22px Arial,Tahoma,sans-serif;color:#f58025}.items .one_item .one_item_buttons{width:80px;margin:10px}.btn{text-decoration:none;font-size:12px;padding:5px 4px;margin:10px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px}.green:hover,.btv:hover{text-decoration:none !important}.grey{color:#464646;background:#fff;background:-moz-linear-gradient(270deg,#fff 0,#ececec 100%);background:-webkit-linear-gradient(270deg,#fff 0,#ececec 100%);background:-o-linear-gradient(270deg,#fff 0,#ececec 100%);background:-ms-linear-gradient(270deg,#fff 0,#ececec 100%);background:linear-gradient(180deg,#fff 0,#ececec 100%);border:1px solid #e1e1e1}.green{color:#fff;background:#4fa32c;border:1px solid #4fa32c;margin:10px 4px 10px 0}.green:hover{color:#fff;background:#f36d00;border:1px solid #f36d00}.green:focus{color:#fff !important}.not_available{cursor:default;text-decoration:none;display:inline-block}.not_available:hover{text-decoration:none}.one_item_compare label{text-decoration:underline;cursor:pointer}.one_item_compare label:hover{text-decoration:underline;cursor:pointer;color:#f36d00}.content_accost{background:#f5f5f5;padding:0 0 40px 0;position:relative;border-bottom:2px solid #55a727}.content_accost .shadow_to_down{background:url(../images/shadow_to_down.png) no-repeat center center;height:22px;text-align:center;overflow:hidden}.content_accost .content_accost_title,.content_accost .content_accost_title h1{padding:18px 0 0 0;text-transform:uppercase;font:bold 16px/18px Arial,Tahoma,sans-serif}.content_accost .content_accost_content h2{font:normal 14px/16px Arial,Tahoma,sans-serif;padding:10px 0 0 0}.content_accost .content_accost_content h2 strong{font-weight:bold}.content_accost .content_accost_content p{font:normal 13px/14px Arial,Tahoma,sans-serif;padding:10px 0 0 0}.content_accost .content_accost_content p strong{font-weight:bold}.content_accost .content_accost_content ul{font:normal 13px/14px Arial,Tahoma,sans-serif;list-style:disc inside}.content_accost .content_accost_content ul li{margin:2px 0 0 0}.content_blog{margin:40px 0 30px 0;min-height:30px}.content_blog .posts{border-bottom1:2px solid #d3d3d3;padding:0 0 20px 0;margin:0 0 60px 0}.content_blog .text_posts,.content_blog .video_posts{width:460px;margin:0 40px 0 0}.content_blog .text_posts .text_posts_title a{padding:18px 0 0 0;text-transform:uppercase;font:bold 16px/18px Arial,Tahoma,sans-serif;text-decoration:none}.content_blog .text_posts .one_post.first{width:460px;min-height:130px;margin:10px 0 20px 0}.content_blog .text_posts .one_post.first .one_post_content{width:260px;margin:0 0 0 20px}.content_blog .text_posts .one_post.first .one_post_content .one_post_title a{text-decoration:none;font:bold 15px/18px Arial,Tahoma,sans-serif;color:#464646}.content_blog .text_posts .one_post.first .one_post_content .one_post_title a:hover{text-decoration:none;color:#464646}.content_blog .text_posts .one_post.first p{font:normal 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a;padding:0 0 5px 0}.content_blog .text_posts .one_post.first a.more{display:inline;text-decoration:none}.content_blog .text_posts .one_post{width:140px;margin:0 20px 0 0}.content_blog .text_posts .one_post .one_post_image{width:180px}.content_blog .text_posts .one_post .one_post_content .one_post_title a{text-decoration:none;font:normal 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a}.content_blog .text_posts .one_post .one_post_content .one_post_title a:hover{text-decoration:none}.video_posts .one_video_title{width:150px;margin:10px 0 0 0}.video_posts .one_video_title a,.video_posts .one_video_title a:hover{text-decoration:none;font:normal 13px/18px Arial,Tahoma,sans-serif;color:#4a4a4a;position:relative}.video_posts .one_video_title a img{float:left;margin:0 7px 1px 0}.content_blog .links{height:70px}.float.share{float:right}.float.share .share_title{padding:6px 0 0 0;margin:0 5px 0 0}.pluso-wrap{background:#fff !important;border:1px solid #e9e9e9;opacity:.45;-moz-opacity:.45;-khtml-opacity:.45}.pluso-wrap a{margin:3px 0 0 5px !important}.float.share .pluso .pluso-more{display:none}#footer{margin:0;padding:0;position:relative;height:5em}#footer .up{position:relative}#footer .up a{position:absolute;top:-18px;right:0;z-index:9}.map{height:380px;margin:0 0 60px 0}#content_map,#content_map2{padding:10px 20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:250px}.content_map_1{position:absolute !important;bottom:0 !important}.map_shadow{height:5px;webkit-box-shadow:inset 0 3px 10px 0 rgba(0,0,0,0.75);-moz-box-shadow:inset 0 3px 10px 0 rgba(0,0,0,0.75);box-shadow:inset 0 3px 10px 0 rgba(0,0,0,0.75)}#content_map .content_map_title,#content_map2 .content_map_title{font:bold 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}#content_map p,#content_map2 p{font:normal 14px/16px Arial,Tahoma,sans-serif;margin:3px 0 0 0}#content_map .email{background:url(../images/mail.png) no-repeat 0 30%;padding:0 0 10px 20px}.copyright{background:#4fa32c;height:5em;color:#fff}.copyright .float{margin:25px 0 0 0}.copyright .float.copyright_logo_margin{margin:20px 50px 0 0}.copyright a,.copyright a:hover{color:#fff}.copyright .float_right,.float_right{float:right}.catalog_slider{background:url(../images/catalog_slider.jpg) no-repeat center center;height:190px;text-align:center;overflow:hidden}.catalog_slider .catalog_description{margin:50px 0 0 0;width:365px;height:100px;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75)}.catalog_slider .catalog_description.logo1{background:#53a726}.catalog_slider .catalog_description.logo2{background:#b12b2c}.catalog_slider .catalog_description.logo3{background:#f36d01}.catalog_slider .catalog_description.logo4{background:#1b7781}.catalog_slider .catalog_description.logo5{background:#db0565}.catalog_slider .catalog_description.logo6{background:#935927}.catalog_slider .catalog_description.logo479{background:#b1873f}.catalog_slider .catalog_description .catalog_description_content{width:225px;margin:20px 0 0 0;text-align:left}.catalog_slider .catalog_description .catalog_description_content .catalog_description_title{margin:0 0 5px 0}.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a,.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a:hover{font-size:15px;text-transform:uppercase;color:#fff;text-decoration:none}.catalog_slider .catalog_description .catalog_description_content p{color:#fff}.breadcrumbs{background:#ebebeb}.breadcrumbs ul{padding:15px 0}.breadcrumbs ul li{padding:0 4px 0 0}.breadcrumbs ul li a.breadcrumbs_last,.breadcrumbs ul li a.breadcrumbs_last:hover{text-decoration:none}.search .sidebar_content_wrapper,.catalog .sidebar_content_wrapper,.subcategory .sidebar_content_wrapper,.subcategory_list .sidebar_content_wrapper,.cabinet .sidebar_content_wrapper{margin:20px 0 0 0;min-height:300px}.catalog #sidebar,.search #sidebar,.subcategory #sidebar,.subcategory_list #sidebar{width:185px;margin:0 55px 20px 0}.search #sidebar ul li a,.catalog #sidebar ul li a{font:italic 13px/20px Arial,Tahoma,sans-serif}.search #sidebar ul li ul{font:italic 12px/20px Arial,Tahoma,sans-serif;margin:0 0 0 10px}.search #content_wrapper,.catalog #content_wrapper,.subcategory #content_wrapper,.subcategory_list #content_wrapper,.cabinet #content_wrapper{width:720px}.catalog #content_wrapper ul li{margin:0 20px 0 0;text-align:center;min-height:185px}.catalog #content_wrapper ul li a,.catalog #content_wrapper ul li a:hover{font:bold 14px/20px Arial,Tahoma,sans-serif;text-decoration:none;width:165px}.catalog .content_accost,.subcategory .content_accost,.subcategory_list .content_accost,.item .content_accost{background:#f5f5f5;padding:0 0 40px 0;position:relative;border-bottom:0}.subcategory_sidebar_title h3{font:bold 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}.subcategory_sidebar_title p{font:bold 13px/15px Arial,Tahoma,sans-serif;margin:15px 0 10px 0}.subcategory_sidebar_title .vip_icon{margin-left:20px;float:right}ul#subcategory_menu{width:220px;list-style:none}ul.last{border-bottom:1px solid #e3e3e3}ul#subcategory_menu li .main{text-shadow:0 1px 0 rgba(255,255,255,0.8);cursor:pointer;margin:0;padding:6px 0 6px 10px;background:#fefefe;background:-moz-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fefefe),color-stop(0,#1e5799),color-stop(0,#fefefe),color-stop(100%,#ededed),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-o-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-ms-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:linear-gradient(to bottom,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe',endColorstr='#ededed',GradientType=0);border:1px solid #e0e0e0;text-decoration:none;font:bold 13px/16px Arial,Tahoma,sans-serif;display:block}.subcategory_menu_closed.main{border-bottom:0 !important}ul#subcategory_menu .main .float.dropdown{width:25px;height:12px;float:right;background:url(../images/dropdown.png) 0 100% no-repeat;cursor:pointer}ul#subcategory_menu .subcategory_menu_closed.main .float.dropdown{width:20px;height:12px;float:right;background:url(../images/dropdown_closed.png) 0 100% no-repeat;cursor:pointer}ul#subcategory_menu li ul{border-left:1px solid #e0e0e0;border-right:1px solid #e0e0e0;border-top:0;padding:5px 0 15px 15px}ul#subcategory_menu li ul li{padding:10px 0 0 0}ul#subcategory_menu li ul li a{font:normal 13px/16px Arial,Tahoma,sans-serif;text-decoration:none}ul#subcategory_menu li.subcategory_menu_last_child{padding:0 0 27px 0;background:url(../images/sidebar_shadow.png) 0 100% no-repeat}input[type="checkbox"]{display:none}input[type="checkbox"]+label span{display:inline-block;vertical-align:middle;width:13px;height:13px;margin:-1px 4px 0 0;background:url(../images/check.png) no-repeat 0 0;cursor:pointer}input[type="checkbox"]:checked+label span{background:url(../images/check.png) no-repeat 0 -26px}#slider{margin:5px 5px 5px 10px}.border_for_slider{border:1px solid #e0e0e0;margin:0 20px 20px 10px;border-radius:11px;-moz-border-radius:11px;-webkit-border-radius:11px;webkit-box-shadow:inset 0 2px 6px 0 #e0e0e0;-moz-box-shadow:inset 0 2px 6px 0 #e0e0e0;box-shadow:inset 0 2px 6px 0 #e0e0e0}.ui-widget-header{background:#57af3e !important}#slider.ui-widget-content{background:#acacac !important;border:0 !important}.ui-slider-horizontal{height:8px !important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{background:url(../images/state.png) 50% 50% no-repeat !important;border:0 !important}.ui-state-focus{border:0 !important}.price_slider_container{padding:40px 0 40px 0;border:1px solid #e0e0e0;border-top:0}.price_ok,.alert_button{margin:0 0 0 10px;-moz-box-shadow:inset 0 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 0 #fff;box-shadow:inset 0 1px 0 0 #fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f9f9f9),color-stop(1,#e9e9e9));background:-moz-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-webkit-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-o-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-ms-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:linear-gradient(to bottom,#f9f9f9 5%,#e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9',endColorstr='#e9e9e9',GradientType=0);background-color:#f9f9f9;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #dcdcdc;display:inline-block;cursor:pointer;color:#666;font-weight:bold;padding:6px 8px;text-decoration:none;text-shadow:0 1px 0 #fff}.price_ok:hover{background:-webkit-gradient(linear,left top,left bottom,color-stop(0.05,#e9e9e9),color-stop(1,#f9f9f9));background:-moz-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-webkit-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-o-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-ms-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:linear-gradient(to bottom,#e9e9e9 5%,#f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9',endColorstr='#f9f9f9',GradientType=0);background-color:#e9e9e9}.price_slider_container label{font:normal 13px/14px Arial,Tahoma,sans-serif;margin:5px 5px 0 7px}.price_slider_container input{width:38px;margin:0;padding:5px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5}.value{position:absolute;top:-30px;left:-70%;padding:3px;text-align:center;display:block;border:1px solid #b7b7b7;font:normal 12px/12px Arial,Tahoma,sans-serif;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;-webkit-box-shadow:0 0 5px 0 #b7b7b7;-moz-box-shadow:0 0 5px 0 #b7b7b7;box-shadow:0 0 5px 0 #b7b7b7;background:#fff;background:#fff;background:-moz-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#eee),color-stop(100%,#eee),color-stop(100%,#eee));background:-webkit-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-o-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-ms-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:linear-gradient(to bottom,#fff 0,#eee 100%,#eee 100%,#eee 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0)}.range{position:absolute;top:-12px;left:15%;margin:0;width:12px;height:9px;text-align:center;display:block;background:url(../images/price_box.png) 100% 100% no-repeat}.price-range-both.value{width:100px;margin:0 0 0 -50px;top:26px}.price-range-both{display:none}.value i{font-style:normal}#content_wrapper .content_wrapper_header{margin:0 0 20px 0}#content_wrapper .content_wrapper_header .content_wrapper_header_filters div{font:normal 12px/14px Arial,Tahoma,sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a,#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a:hover{text-decoration:none;padding:0 15px 0 0;background:url(../images/close_filter.png) 100% 50% no-repeat}.empty_filters{background:#fff !important}.empty_filters a{text-decoration:underline !important;color:#417e24 !important;padding:0 !important;background:#fff !important}.content_wrapper_header_menu,.item_menu_header_menu{margin:20px 0 0 0;background:url(../images/line_menu.png) 100% 100% repeat-x}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .padding_60{padding-left:57px}.tabs{margin:0 15px 0 0;padding:0 0 0 20px}.tabs ul li{padding:8px 20px 8px 20px;height:14px;border:2px solid transparent;border-bottom:2px solid #c4c4c4}.tabs ul li.not_active{height:14px}.tabs ul li a{font:bold 13px/14px Arial,Tahoma,sans-serif;padding:0;text-decoration:none}.tabs ul li.active_tab{border:2px solid #c4c4c4;border-bottom:2px solid #fff;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;background:#fff !important;color:#464646 !important}.tabs ul li.active_tab a{color:#464646 !important}.tabs ul li.tabs_new_items{background:#b12b2c;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;margin:0 1px}.tabs ul li.tabs_top_items{background:#f36c00;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0}.tabs ul li.tabs_all_items{background:#4fa32c;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0}.tabs ul li.tabs_all_items a,.tabs ul li.tabs_new_items a,.tabs ul li.tabs_top_items a{color:#fff}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists{margin:10px 20px 0 0;cursor:pointer}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs{background:url(../images/thumbs.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs:hover{background:url(../images/thumbs_active.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists{background:url(../images/lists.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists:hover{background:url(../images/lists_active.png) 100% 50% no-repeat;width:11px;height:11px}.sort_price{margin:10px 10px 0 0}.sort_price a{color:#417e24}.sort_price.last{padding:0 15px 0 0;background:url(../images/sort_arrow.png) 100% 50% no-repeat;position:relative}.sort_price.last .sort_price_dropdown{position:absolute;border:1px solid #e0e0e0;z-index:45;background:#fff;font-size:12px;margin:3px 0 0 0;padding:2px;top:13px;left:3px;width:140px}.sort_price.last .sort_price_dropdown a{text-decoration:none;padding:0 0 2px 0}.sort_price.last .sort_price_dropdown a:hover{color:#f58025}.paginate{margin:0 auto 0 auto;display:table;list-style:none}.paginate ul{margin:20px 0 20px 0}.paginate li{float:left}.paginate ul li a{text-decoration:none;font:bold 20px/24px Arial,Tahoma,sans-serif;color:#4fa32c;padding:0 10px 0 10px}.paginate ul li a.current{text-decoration:none;font:bold 16px/24px Arial,Tahoma,sans-serif;color:#707070}.item_menu_shadow{background:#ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;padding:20px 0 0 0;width:946px;height:27px}.item .breadcrumbs ul{padding:5px 0 20px 0}.item .item_wrapper .item_images{width:400px;margin:20px 20px 20px 0}.item .item_wrapper .item_images .width_400{margin:0 0 10px 0;position:relative}.item .item_wrapper .item_images .width_400 .previous_image{position:absolute;background:url(../images/main_photo_arrow_left.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;left:5px}.item .item_wrapper .item_images .width_400 .next_image{position:absolute;background:url(../images/main_photo_arrow_right.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;left:34px}.item .item_wrapper .item_images .width_400 .zoom_image{position:absolute;background:url(../images/zoom.png) 0 0 no-repeat;width:28px;height:28px;bottom:8px;right:5px}.item .item_wrapper .item_images .width_128{margin:0 5px 0 0;border:1px solid #e0e0e0;height:130px}.item .item_wrapper .item_content{width:520px;margin:20px 0 20px 0}.item .item_wrapper .item_content .item_title{margin:5px 0 5px 0}.item .item_wrapper .item_content .item_decription{font:normal 13px/16px Arial,Tahoma,sans-serif;margin:0 0 20px 0}.item .item_wrapper .item_content .properties{font:normal 14px/16px Arial,Tahoma,sans-serif;margin:5px 0 10px 0;min-width:100px}.item .item_wrapper .item_content .properties_article{font:bold 14px/16px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .properties_producer a{color:#f36d00}.item .item_wrapper .item_content .properties_presence{color:#417e24}.item .item_wrapper .item_content .properties_absent{font-weight:bold;color:#ae2328}.item .item_wrapper .item_content .minus{background:url(../images/minus.png) 0 100% no-repeat;width:12px;height:15px;padding:0 5px 0 0;cursor:pointer}.item .item_wrapper .item_content .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px;cursor:pointer}.item .item_wrapper .item_content .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:normal 15px/16px Arial,Tahoma,sans-serif;color:#464646}.item .item_wrapper .item_content .colors{margin:10px 0 0 0}.item .item_wrapper .item_content .packing{min-height:60px;position:relative}.item .item_wrapper .item_content .packing .properties{position:absolute;bottom:0;margin-bottom:0}.item .item_wrapper .item_content .packing_images{position:absolute;bottom:0;left:100px}.item .item_wrapper .item_content .packing_images .group_sizes,.group_sizes,.table_cell4 .group_sizes,.basket_element_prepack .group_sizes{min-height:35px;min-width:31px;border:1px solid #e0e0e0;margin:0 10px 0 0;position:relative;display:inline-block}.item .item_wrapper .item_content .packing_images .group_sizes:hover,.item .item_wrapper .item_content .packing_images .group_sizes.active,.group_sizes:hover,.group_sizes.active,.table_cell4 .group_sizes.active{border:1px solid #4fa32c}.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover{border:1px solid #e0e0e0}.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_header,.group_sizes .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack.png) 50% 0 no-repeat}.item .item_wrapper .item_content .packing_images .group_sizes:hover .group_sizes_header,.item .item_wrapper .item_content .packing_images .group_sizes.active .group_sizes_header,.group_sizes:hover .group_sizes_header,.group_sizes.active .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack_hover.png) 50% 0 no-repeat}.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover .group_sizes_header{background:url(../images/pack.png) 50% 0 no-repeat}.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_content,.group_sizes .group_sizes_content{position:absolute;bottom:0;width:100%;text-align:center;font-size:11px;white-space:pre-line;line-height:11px;overflow:hidden}.item .item_wrapper .item_content .buy_compare{min-height:60px;width:100%;background:#f5f5f5;margin:15px 0}.item .item_wrapper .item_content .buy_compare .one_item_price{font:normal 13px/15px Arial,Tahoma,sans-serif;color:#f58025;margin:18px 0 0 20px}.item .item_wrapper .item_content .buy_compare .one_item_price span{font:bold 20px/22px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .buy_compare .one_item_buttons{width:80px;margin:18px 0 0 20px}.item .item_wrapper .item_content .buy_compare .btn{text-decoration:none;font-size:12px;padding:5px 4px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px}.green:hover,.btv:hover{text-decoration:none !important}.item .item_wrapper .item_content .buy_compare .green{color:#fff;background:#4fa32c;border:1px solid #4fa32c;margin:0;text-align:center}.grey{text-decoration:none;font-family:calibri;font-size:14px;color:#474747;padding:5px 8px 6px 7px;border-top:1px solid #eaeaea;border-bottom:1px solid #a3a3a3;border-left:1px solid #d7d7d7;border-right:1px solid #c3c3c3;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff',endColorstr = '#ececec');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec')";background-image:-moz-linear-gradient(top,#fff,#ececec);background-image:-ms-linear-gradient(top,#fff,#ececec);background-image:-o-linear-gradient(top,#fff,#ececec);background-image:-webkit-gradient(linear,center top,center bottom,from(#fff),to(#ececec));background-image:-webkit-linear-gradient(top,#fff,#ececec);background-image:linear-gradient(top,#fff,#ececec);-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.items .one_item .one_item_buttons .btn,.compare_items .compare_items_table table th .btn{display:inline;margin:3px}.green:hover{color:#fff}.item .item_wrapper .item_content .buy_compare .one_item_compare{margin:24px 0 0 20px}.item .item_wrapper .item_content .buy_compare .one_item_compare label{text-decoration:underline;cursor:pointer}.item .item_wrapper .item_content .features{margin:0 0 20px 0;min-height:30px}.item .item_wrapper .item_content .features a{margin:0 5px 0 0;color:#417e24}.item .item_wrapper .item_content .item_menu_content{margin:20px 0;font:normal 13px/16px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .item_menu_content .tabs_properties p.key_value{min-width:150px}.item .item_wrapper .item_content .item_menu_content .item_menu_content_wrapper div{margin:0 0 10px 0}.item .one_item{min-height:410px}.item .other_items{min-height:510px}#content_subnav{position:absolute;top:165px;border:2px solid #67b73e;padding:0 20px;background:#f5f5f5;z-index:999;width:915px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 1px 10px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 1px 10px 0 rgba(50,50,50,0.75);box-shadow:0 1px 10px 0 rgba(50,50,50,0.75)}#content_subnav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0 0}#content_subnav .content_nav_first_floor{padding:20px 0 15px 0;margin:0 0 20px 0;border-bottom:1px solid #cdcdcd}#content_subnav .content_nav_first_floor .content_nav_logo{padding:0 40px 0 0;width:150px}#content_subnav .content_nav_logo a{text-decoration:none}#content_subnav .content_nav_first_floor .content_nav_items{text-align:justify;column-count:4;-moz-column-count:4;-webkit-column-count:4;column-gap:40px;-moz-column-gap:40px;-webkit-column-gap:40px;column-width:150px;-moz-column-width:150px;-webkit-column-width:150px;min-height:150px}#content_subnav .content_nav_first_floor .content_nav_items a,.content_nav_items a{font-size:13px;line-height:21px;font-style:italic}.content_nav_second_floor .float{padding:0 40px 20px 0;width:150px}.shadow_to_top{background:url(../images/shadow.png) no-repeat center center;height:22px;text-align:center;overflow:hidden}.order_wrapper{margin:0 0 65px 0}.order_menu_shadow{background:#ebebeb url(../images/item_menu_shadow.png) 50% 100% no-repeat;padding:20px 0 0 0;width:946px;height:27px}.order .breadcrumbs ul{padding:5px 0 20px 0}.order .order_form .order_title{margin:20px 0 0 0}.order .order_form h1,.order .contacts_form h1{font:bold 20px/24px Arial,Tahoma,sans-serif}.order .order_form ul li.main_li{border-top:1px solid #cdcdcd;padding:15px 0 10px 0;margin:10px 0 0 0}.order .order_form ul li.main_li:first-child{border-top:0;padding:0;margin:10px 0 0 0}.order .order_form ul li.order_form_header li,.order .order_form ul li.order_last{font:bold 14px/18px Arial,Tahoma,sans-serif;color:#676767}.order .order_form ul li.order_form_header ul li.order_first_column,.order .order_form ul li.order_form_content ul li.order_first_column{width:380px;padding:0 0 0 20px}.order .order_form ul li.order_form_header ul li.order_second_column,.order .order_form ul li.order_form_content ul li.order_second_column{width:220px;text-align:center}.order .order_form ul li.order_form_header ul li.order_third_column,.order .order_form ul li.order_form_content ul li.order_third_column{width:100px;margin:0 0 0 65px}.order .order_form ul li.order_form_header ul li.order_fourth_column,.order .order_form ul li.order_form_content ul li.order_fourth_column{width:100px;margin:0 0 0 45px}.order .order_form ul li.order_form_header ul li.order_fifth_column,.order .order_form ul li.order_form_content ul li.order_fifth_column{margin:0}.order .order_form ul li.order_form_content ul li.order_second_column,.order .order_form ul li.order_form_content ul li.order_fourth_column,.order .order_form ul li.order_form_content ul li.order_fifth_column{margin-top:35px}.order .order_form ul li.order_form_content ul li.order_third_column{margin-top:33px}.order .order_form ul li.order_last{background:#f5f5f5;text-align:right;padding:15px 75px 15px 0;margin:5px 0 40px 0}.order .order_form ul li ul li img.order_img{-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75);margin:0 20px 0 0}.order .order_form ul li ul li h2{font:bold 14px/18px Arial,Tahoma,sans-serif;margin:20px 0 4px 100px;width:70%}.order .order_form ul li ul li p{margin:0 0 0 100px}.order .order_form ul li span{color:#f58025}.order .order_form ul li span.price{font:bold 18px/18px Arial,Tahoma,sans-serif}.order .order_form ul li ul li .minus{background:url(../images/minus.png) 50% 48% no-repeat;width:12px;height:15px;padding:7px}.order .order_form ul li ul li .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px}.order .order_form ul li ul li .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:normal 15px/16px Arial,Tahoma,sans-serif;color:#464646}#order_add_ua .contacts_form ul.form,#order_add_ru .contacts_form ul.form,ul.form{margin:30px 0 0 0;font:bold 13px/18px Arial,Tahoma,sans-serif}#order_add_ua .contacts_form ul.form li,#order_add_ru .contacts_form ul.form li,ul.form li{margin:0 0 10px 0}.order .contacts_form .label,ul.form li .label{width:210px;text-align:right;margin:7px 10px 0 0}.order .contacts_form .input,ul.form li .input{width:720px;font-weight:normal}.order .contacts_form .label span.required,ul.form li .label span.required{font:normal 10px/14px Arial,Tahoma,sans-serif;color:#f58025;vertical-align:text-top}.order .contacts_form .input input[type='text'],ul.form li .input input[type='text'],ul.form li .input input[type='password'],.order .contacts_form .input textarea,ul.form li .input textarea{width:280px;margin:0;padding:6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:normal 15px/16px Arial,Tahoma,sans-serif;color:#464646}ul.form li .input select{margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:normal 15px/16px Arial,Tahoma,sans-serif;color:#464646;background:#fff}.order ul.form li .input select{width:295px}.order .contacts_form .input textarea,section #content .contacts_form .input textarea{max-width:720px;width:720px;min-height:120px}.order .contacts_form li.with_radio_buttons .input{font:normal 13px/14px Arial,Tahoma,sans-serif}.order .contacts_form li.with_radio_buttons label{margin:0 10px 0 0}.order .contacts_form .input .input_radio{margin:0 0 10px 0}.order .contacts_form .input input[type='radio']{margin:0 5px 0 0}.order .contacts_form .input .description{margin:5px 0 15px 0}.order .contacts_form .input .description label{font-weight:normal;font:italic 12px/14px Arial,Tahoma,sans-serif;text-decoration:underline}.order .contacts_form .with_radio_buttons .input{margin:10px 0 0 0}.order .contacts_form .with_radio_buttons .input .description,.order .contacts_form .owner_city .input .description{background:#f5f5f5;padding:15px 0 20px 15px;margin:0 0 15px 0;line-height:16px}.order .contacts_form .with_textarea .input .description{font:italic 12px/14px Arial,Tahoma,sans-serif}.ui-widget-content{position:absolute;background:#f5f5f5 !important}.ui-widget-content li{margin:0 !important;padding:5px !important;width:95%;cursor:pointer}.ui-widget-content li:hover{background:#acacac !important;margin:0 !important;width:97%;padding:5px !important}.owner_city,.store_address{position:relative}#loading_city,#loading_office{background:url(../images/loadinfo.gif) no-repeat 0 0;height:24px;width:24px;margin:4px 0 0 485px;position:absolute}.ui-menu .ui-menu-item a,.ui-menu .ui-menu-item a:hover{text-decoration:none;display:block;padding:2px !important;font:normal 14px/16px Arial,Tahoma,sans-serif !important}.order div.registrated_customer{min-height:200px}.order div.registrated_customer .btn{margin:20px 50px 0 0;padding:5px 20px}.order div.registrated_customer a{margin:25px 50px 0 0}.order div.registrated_customer .do_registration,.do_registration{margin:20px 50px 0 0;color:#4fa32c}.order div.registrated_customer .do_registration:hover,.do_registration:hover{color:#f58025}.order div.registrated_customer .label{width:250px}.order div.registrated_customer .input{width:200px}.order div.registrated_customer .input input{width:190px}.order .login_with_email{width:63%;margin:20px 40px 20px 0;border-right:1px solid #e2e2e2;padding:20px 0}.order .login_with_email .form{margin:0}.order .login_with_social{width:25%;margin:20px 0 20px 0;padding:20px 0}.order .login_with_social .login_with_social_wrapper{margin:0 auto;width:116px}.order .login_with_social .login_with_social_wrapper a{margin:0 10px 0 0}.order .login_with_social_title{font:bold 13px/18px Arial,Tahoma,sans-serif;margin:0 0 20px 0}input[type="radio"]{display:none}input[type="radio"]+label span{display:inline-block;margin:-1px 4px 0 0;cursor:pointer;background:url(../images/radio.png) no-repeat 0 -24px;width:12px;height:12px}input[type="radio"]:checked+label span{background:url(../images/radio.png) no-repeat 0 0}.order .btn,.contacts_form .btn{width:auto;float:right;font-weight:bold;cursor:pointer}.image_400{max-height:400px;max-width:400px}.image_128{max-height:128px;max-width:128px}.width_128{width:128px;text-align:center}.width_400{width:400px;text-align:center}.static_page{margin-bottom:60px}.static_page_wrapper{min-height:200px;margin:30px 0 0 0;font:normal 14px/20px Arial,Tahoma,sans-serif}.static_page h2{text-align:center;margin:0 0 20px 0}.static_page a{display:inline}.alert_button{width:auto;margin:10px 10px 10px 0;padding:7px 20px}.dialogue{font:normal 14px/16px Arial,Tahoma,sans-serif;padding:20px 0 10px 10px;min-width:350px}.dialogue_message{font:normal 14px/16px Arial,Tahoma,sans-serif}input.error,textarea.error{border:1px solid #aaa !important;background-color:#ffffe0 !important}label.error{color:#c00;font-weight:normal !important;display:block}#execute{margin:30px 0 0 0}.static_page .breadcrumbs ul,.cabinet .breadcrumbs ul,.news .breadcrumbs ul,.search .breadcrumbs ul{padding:5px 0 20px 0}.news_wrapper{margin:20px 0 65px 0;min-height:100px}.item .news_wrapper{min-height:100px;padding:20px 0 20px 0;border-top:2px solid #55a727}.news_wrapper .one_news{width:470px;margin:10px 20px 10px 0}.news_wrapper .one_news .one_news_img{width:180px;margin:0 10px 0 0}.news_wrapper .one_news .one_news_content{width:260px;margin:0 10px 0 0;position:relative;height:120px}.news_wrapper .one_news .one_news_content.full_width{width:95%;margin:0 10px 0 0;position:relative;height:120px}.news_wrapper .one_news .one_news_content a{text-decoration:none}.news_wrapper .one_news .one_news_content h2{font:bold 15px/18px Arial,Tahoma,sans-serif}.news_wrapper .one_news .one_news_content p{font:normal 13px/18px Arial,Tahoma,sans-serif;margin:10px 0 0 0}.news_wrapper .one_news .one_news_content a.news_more{position:absolute;right:0;bottom:0;text-decoration:underline;color:#4fa32c}.news_wrapper .one_news .one_news_content a.news_more:hover{color:#f58025}.news_img_holder{width:400px;margin:0 40px 30px 0;float:left}.news_img_holder a.news_cover{margin:0 0 40px 0}.news_img_holder a.news_photogallery{margin:0 40px 40px 0}.news_content a{display:inline}.news_content strong{font-weight:bold}.news_content h2{font:bold 20px/24px Arial,Tahoma,sans-serif}.news_content p{font:normal 13px/18px Arial,Tahoma,sans-serif;margin:10px 0 0 0}.news_content .news2groups{margin:20px 0 0 0}.news_content .news2groups div{font:normal 12px/14px Arial,Tahoma,sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.news_content .news2groups div a{text-decoration:none}.successMessage,.errorMessage,.noticeMessage{padding:15px 20px;margin:10px 0 20px 0;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;color:#fff;font-size:14px;display:block}.successMessage a,.errorMessage a,.noticeMessage a{color:#fff;display:inline}.successMessage{background:url('../images/flash_success.png') repeat scroll 50% 50% #2c85ad}.noticeMessage,.admin_review{background:url('../images/flash_notice.png') repeat scroll 50% 50% #f6b03d}.errorMessage{background:url('../images/flash_error.png') repeat scroll 50% 50% #be2e17}.message_holder{width:960px;height:190px;display:block;position:relative;margin:0 auto;padding:0}.message_holder_empty{width:960px;height:140px;display:block;position:relative;margin:0 auto;padding:0}.cabinet,.cabinet_login{margin-bottom:65px}.cabinet .sidebar_content_wrapper,.cabinet_login .sidebar_content_wrapper{margin:20px 0 20px 0}.cabinet #sidebar .subcategory_sidebar_title h3,.cabinet_login #sidebar .subcategory_sidebar_title h3{margin:0 0 15px 0}.cabinet #sidebar .subcategory_sidebar_title p,.cabinet_login #sidebar .subcategory_sidebar_title p{font:italic 13px/15px Arial,Tahoma,sans-serif;text-decoration:underline;color:#f36d00}.cabinet #sidebar .subcategory_sidebar_title a,.cabinet_login #sidebar .subcategory_sidebar_title a{font:italic 13px/15px Arial,Tahoma,sans-serif;text-decoration:underline;color:#4a4a4a;margin:0 0 5px 0}.cabinet #sidebar .subcategory_sidebar_title a:hover,.cabinet_login #sidebar .subcategory_sidebar_title a:hover,.cabinet #sidebar .subcategory_sidebar_title a.active,.cabinet_login #sidebar .subcategory_sidebar_title a.active{color:#f36d00}.cabinet #sidebar ul,.cabinet_login #sidebar ul{margin:10px 0 10px 15px;display:none}.cabinet #content_wrapper .form,.cabinet_login #content_wrapper .form{margin:0}.cabinet #content_wrapper,.cabinet_login #content_wrapper{margin:0 0 0 100px;width:700px}.cabinet_login #content_wrapper .login_with_social,.cabinet_login #content_wrapper .login_with_email{padding:40px 40px 0 0}.cabinet_login #content_wrapper .login_with_email{margin:0 40px 0 0;border-right:1px solid #e2e2e2;width:57%}.cabinet_login #content_wrapper .login_with_social{width:30%;margin:0 40px 0 0}.cabinet_login #content_wrapper .login_with_social_title{font:bold 13px/18px Arial,Tahoma,sans-serif;margin:0 0 20px 0}.cabinet #content_wrapper .subcategory_content_wrapper_title h3,.cabinet_login #content_wrapper .subcategory_content_wrapper_title h3{font:bold 16px/18px Arial,Tahoma,sans-serif;color:#4a4a4a}.cabinet_login #content_wrapper .login_with_social_wrapper{margin:0 auto;width:116px}.cabinet_login #content_wrapper .login_with_social_wrapper a{margin:0 10px 0 0}.cabinet #content_wrapper .form{margin:30px 0 0 30px}.cabinet_login #content_wrapper .form .input{width:250px}.cabinet #content_wrapper .form .input{width:250px}.cabinet_login #content_wrapper .form .input input{width:240px}.cabinet #content_wrapper .form .input input{width:240px}.cabinet_login #content_wrapper .form li .label{width:135px;text-align:right;margin:7px 10px 0 0}.cabinet #content_wrapper .form li .label{width:135px;text-align:right;margin:7px 10px 0 0}.cabinet #content_wrapper .btn,.cabinet_login #content_wrapper .btn{width:auto;float:right;font-weight:bold;cursor:pointer;margin:20px 0 0 0;padding:5px 20px}.cabinet .submit{margin:0 270px 0 0}.cabinet .submit a.change_passwd{margin:20px 0 40px 0}.submit a{margin:25px 30px 0 0}.submit a.change_passwd{margin:40px 0 40px 0;color:#4fa32c}.submit a.change_passwd:hover{color:#f58025}.submit a.do_registration{margin:25px 0 0 0}.my_order_items{margin:40px 0 0 0;padding:0 0 20px 0;border-bottom:1px solid #e2e2e2}#content_wrapper .order_number{font:normal 14px/18px Arial,Tahoma,sans-serif;margin:10px 0}.my_order_item{margin:0 30px 0 0;min-height:200px}.my_order_item .my_order_item_image{float:left}.my_order_item .my_order_item_image img{-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75)}.my_order_item .my_order_item_content{margin:0 0 0 90px;width:200px}.my_order_item .my_order_item_content h2{font:bold 15px/18px Arial,Tahoma,sans-serif;margin:0 0 5px 0}.my_order_item .my_order_item_content h2 a{text-decoration:none}.my_order_item .my_order_item_content .my_order_item_price{margin:10px 0 10px 0}.my_order_item .my_order_item_content .my_order_item_count,.my_order_item .my_order_item_content .my_order_item_count_total{font:bold 13px/15px Arial,Tahoma,sans-serif;color:#7d7d7d}.my_order_item .my_order_item_content .price{font:normal 20px/22px Arial,Tahoma,sans-serif}.my_order_item .my_order_item_content span{color:#f58025}.my_order_items_description .my_order_total{font:bold 14px/16px Arial,Tahoma,sans-serif;margin:20px 0 10px 0}.my_order_items_description .my_order_total span{color:#f58025}.my_order_items_description .my_order_total .price{color:#f58025;font:normal 20px/22px Arial,Tahoma,sans-serif}.my_order_items_description .my_order_delivery,.my_order_items_description .my_order_status{font:normal 14px/16px Arial,Tahoma,sans-serif;margin:0 0 5px 0}.my_order_items_description .my_order_delivery span,.my_order_items_description .my_order_status span{font:bold 14px/16px Arial,Tahoma,sans-serif;color:#4fa32c}.callback_form{margin:20px 0 0 20px}.callback_form form{margin:20px 0 0 100px}.callback_form ul.form li .input{width:60%;font-weight:normal}.callback_form ul.form li .input input{width:100%}.callback_form ul.form li .input textarea{width:100%;height:120px}.callback_form ul.form li .label{width:30%;font-weight:bold;margin:0 10px 0 0}.callback_form ul.form li.with_textarea{margin:15px 0 0 0}.callback_form .submit{margin:0 50px 0 0}.callback_form .submit input{width:auto}.contacts_wrapper{min-height:300px;font:normal 13px/16px Arial,Tahoma,sans-serif;color:#616161}.contacts_wrapper h2{margin:20px 0;font:bold 20px/24px Arial,Tahoma,sans-serif}.contacts_wrapper_map{min-height:300px;width:465px;margin:0 30px 0 0}.contacts_wrapper_map .map_description{min-height:165px}.contacts_wrapper_map .map_description .map_description_name{font-weight:bold}.contacts_wrapper_map .map{height:300px;margin:20px 0}.contacts_wrapper .contacts_email_address{margin:40px 0 0 0}.contacts_wrapper .contacts_email_address_name{margin:10px 0;font:bold 14px/24px Arial,Tahoma,sans-serif}.contacts_wrapper .contacts_list{width:100%;margin:0 0 100px 0}.contacts_wrapper .contacts_list tr{border-bottom:1px solid #cdcdcd}.contacts_wrapper .contacts_list tr th{color:#7d7d7d;font:bold 13px/16px Arial,Tahoma,sans-serif;padding:15px;background:#f5f5f5}.contacts_wrapper .contacts_list tr td{color:#616161;padding:15px}.contacts_wrapper .contacts_list tr td.contacts_list_phone{width:90px}tr.even{background-color:#f1f1f1}tr.odd{background-color:#f9f9f9}.compare_items{margin:0 0 65px 0}.compare_items h2{font:bold 20px/24px Arial,Tahoma,sans-serif;margin:30px 0}.compare_items .compare_items_table{overflow-x:auto}.compare_items .compare_items_table table th{text-align:center}.compare_items .compare_items_table table th .compare_one_item{position:relative;min-height:265px;min-width:155px;max-width:160px;margin:0 0 20px 0}.compare_items .compare_items_table table td{text-align:center;width:160px;margin:0 20px 0 0;padding:15px 10px;font:normal 13px/16px Arial,Tahoma,sans-serif}.compare_items .compare_items_table table td.compare_item_property_name{font:bold 13px/16px Arial,Tahoma,sans-serif}.compare_items .compare_items_table table th .compare_item_image img{-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,0.75);box-shadow:0 0 5px 0 rgba(50,50,50,0.75);margin:10px 0 20px 0}.compare_items .compare_items_table table th .compare_item_delete a{background:url(../images/compare_item_del.jpg) no-repeat 0 0;width:17px;height:17px;margin:0 auto}.compare_items .compare_items_table table th .compare_item_delete a:hover{background:url(../images/compare_item_del_hover.jpg) no-repeat 0 0;width:17px;height:17px;margin:0 auto}.compare_items .compare_items_table table th .compare_item_title a{font:bold 16px/18px Arial,Tahoma,sans-serif;color:#464646;text-decoration:none}.compare_items .compare_items_table table th .compare_item_price{font:normal 13px/15px Arial,Tahoma,sans-serif;color:#f58025;margin:0 0 10px 0}.compare_items .compare_items_table table th .compare_item_price span{font:bold 20px/22px Arial,Tahoma,sans-serif;color:#f58025}.partners{margin-bottom:60px}.partners h2{font:bold 20px/24px Arial,Tahoma,sans-serif;margin:30px 0}.partners p.partners_name_title_internet_shops,.partners p.partners_name_title_dillers{font:bold 16px/24px Arial,Tahoma,sans-serif}.partners p.partners_name_title_dillers{margin:30px 0 0 0}.partners ul.internet_shops_list{margin:0 0 0 20px;font:normal 13px/20px Arial,Tahoma,sans-serif}.partners table tr{border-bottom:1px solid #cdcdcd}.partners table tr.dillers_district{border-bottom:0}.partners table tr th{color:#7d7d7d;font:bold 13px/16px Arial,Tahoma,sans-serif;padding:15px}.partners table tr.dillers_district td{background:#f5f5f5;text-transform:uppercase;font:bold 13px/16px Arial,Tahoma,sans-serif}.partners table tr td{color:#616161;padding:15px}.error_404 .error_404_wrapper{width:540px;margin:100px auto}.error_404 .error_404_wrapper .error_404_wrapper_text{width:230px;margin:40px auto;text-align:center}.error_404 .error_404_wrapper .error_404_wrapper_text a{font-style:italic}#profiler{opacity:.90;filter:alpha(opacity=90);background-color:#dedede;background:-moz-linear-gradient(-90deg,#e8e8e8,#cbcbcb) repeat scroll 0 0 #dedede;color:#333;font:normal 12px/12px Georgia,Verdana,Arial,sans-serif;letter-spacing:normal;text-shadow:0 1px 0 rgba(255,255,255,0.8);margin:0;padding:5px 15px;width:auto;position:fixed;bottom:0;right:0;text-align:right;z-index:99999}#profiler .warning{color:#c00}#profiler .profiler-sql-show{text-decoration:underline;cursor:pointer}#profiler-sql{display:none;text-align:left;margin:20px 0 0 0;padding:0;overflow-x:hidden;overflow-y:auto;max-height:500px}#profiler-sql .profiler-sql-item{margin:0 0 15px 0;padding:0}#profiler-sql .profiler-sql-item .num{float:left;width:20px;margin:0;padding:0;font-weight:bold}#profiler-sql .profiler-sql-item .query{float:left;width:750px;margin:0;padding:0 10px 0 0;font:normal 10px/14px Monospace,'Courier New',sans-serif}#profiler-sql .profiler-sql-item .time{float:right;text-align:right;width:90px;margin:0;padding:0 10px 0 0;font-weight:bold}.seo-h1{display:inline-block;width:240px;margin-bottom:10px;line-height:30px;font:bold 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}#hypercomments_widget .hc .hc_menu{font-size:14px !important}.item_name_h1{line-height:25px}.nav_menu_main li:first-child{border-radius:5px 0 0 5px;-moz-border-radius:5px 0 0 5px;-webkit-border-radius:5px 0 0 5px}.nav_menu_main li:last-child{border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;-webkit-border-radius:0 5px 5px 0}.static_page_wrapper strong{font-weight:bold}.video_play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.one_news_img{position:relative}.one_post{position:relative}.partners_dealers{margin-top:25px}.question_mark{background:url(../images/question.png) no-repeat;background-size:cover;width:18px;height:18px;position:absolute;top:-3px;right:-25px}.new_customer .input_radio{position:relative;display:inline-block}.new_customer .input_radio .additional_info{background-color:#fff;border:1px solid #c6c6c6;border-radius:5px;right:-240px;position:absolute;top:-180px;width:400px;padding:10px;z-index:2;display:none;box-shadow:1px 1px 3px}.new_customer .input_radio .additional_info:hover{display:block}#delivery_in_ukraine{color:#a8a8a8}.no_marge{margin-top:0 !important}.string_data{font-style:italic;font-weight:normal}ul.prof_rubrics{list-style:none;margin-bottom:20px;padding:0}ul.prof_rubrics li{float:left}ul.prof_rubrics li a{float:left;color:#63ad3e;padding:10px}ul.prof_rubrics li a.active{color:#fff;background:#4fa22c;border-radius:5px;text-decoration:none}.min_price_message{font-size:16px;color:red !important;float:left;margin-left:20px}.popup_window_content .min_price_message{font-size:14px;color:red !important;float:left}.email-settings_title{width:100%;float:left;margin-top:15px;margin-bottom:40px}.email-settings_title:first-child{margin-top:0}.email-settings_title h3{font:bold 16px/18px Arial,Tahoma,sans-serif;color:#4a4a4a}.blocks-otstup{height:40px}.ios{float:left}.blocks-p a{float:left;height:26px;line-height:26px;text-decoration:none;margin-left:10px;color:#464646;font-family:Tahoma;font-size:14px}.blocks-p{width:320px;float:left;margin-top:15px;height:26px}.group-email[type="radio"]{display:none}.group-email[type="radio"]+label{margin-left:5px;cursor:pointer;font-family:Tahoma;font-size:14px;color:#464646}.group-email[type="radio"]+label span{width:12px;height:12px;background:url('../images/radio-settings-off.png') no-repeat;float:left;margin-top:3px;transition:.3s}.group-email[type="radio"]:checked+label span{background:url('../images/radio-settings-on.png') no-repeat;transition:.3s}.settings-circle-wrap{float:left;height:179px;border-bottom:1px solid #cdcdcd;margin-top:20px}.settings-circle{width:230px;float:left;text-align:center}.settings-circle.circle-two{width:240px}.settings-circle-img{width:100%;height:80px;float:left;margin-bottom:20px}.settings-circle-img img{width:80px;height:80px}.settings-circle-text{width:100%;float:left;text-align:center}.settings-circle-text p{color:#464646;font-size:14px;font-family:calibri;font-style:italic;font-weight:normal}.settings-circle-text span{font-weight:bold;font-style:normal;font-size:16px}.settings-soc-wrap{width:100%;float:left;margin-top:60px}.settings-soc{width:50%;float:left;text-align:center}.settings-soc p{width:100%;float:left;color:#464646;font-size:16px;font-weight:bold;font-family:calibri;margin-bottom:20px}.ios-ui-select{height:24px;-webkit-border-radius:18px;border-radius:18px;width:49px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;cursor:pointer;position:relative;display:inline-block;border:1px solid #cdcdcd;box-shadow:1px 2px 5px 0 rgba(204,204,204,0.75) inset;float:left}.ios-ui-select.checked{border:1px solid #67b73e}.ios-ui-select.checked .inner{left:27px;background:url("../images/circle-settings.png") no-repeat;transition:.2s}.ios-ui-select .inner{width:18px;height:18px;position:absolute;top:3px;left:3px;background:url("../images/circle-settings-off.png") no-repeat;transition:.2s}.email-settings_02_1-title2{ont-family:Tahoma;font-size:16px;color:#464646;font-weight:bold;margin-top:15px;margin-bottom:10px}.blocks-p-email-02-1{box-sizing:border-box;padding-left:20px}.email-settings_02_1-number-wr{box-sizing:border-box;padding-left:35px;font-family:Tahoma;font-size:14px;color:#464646}.email-settings_02_1-input{height:20px;width:40px;border:1px solid #69b840;outline:0;transition:.3s;background:#d9edcf}.email-settings_02_1-input:focus{border:1px solid #589b35;background:#f1f1f1;transition:.3s}.email-settings_02_1-buttons-wr{margin-top:20px}.email-buttons-1{float:left;padding:0 19px;height:26px;color:#fff;font-family:Tahoma;font-size:12px;font-weight:bold;text-align:center;display:block;line-height:26px;text-decoration:none;border-radius:5px;border-top:2px solid #74ce45;background:#6ba94c;background:-moz-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#6ba94c),color-stop(50%,#6ba94c),color-stop(50%,#559336),color-stop(100%,#559336));background:-webkit-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-o-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-ms-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:linear-gradient(to bottom,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6ba94c',endColorstr='#559336',GradientType=0);margin-top:1px;text-transform:uppercase;box-shadow:0 2px 2px 0 rgba(0,0,0,0.4)}.email-buttons-2-wr{width:166px;height:28px;float:left;transition:.4s;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee;border-bottom:1px solid #c2c2c2;border-radius:5px;box-shadow:0 2px 2px 0 rgba(0,0,0,0.12);margin-left:20px}.email-buttons-2{width:166px;height:26px;color:#9b9b9b;font-family:Tahoma;font-size:12px;font-weight:bold;text-align:center;display:block;line-height:26px;text-decoration:none;border-radius:5px;background:#f1f1f1;background:-moz-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f1f1f1),color-stop(50%,#f1f1f1),color-stop(50%,#e6e6e6),color-stop(100%,#e6e6e6));background:-webkit-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-o-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-ms-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:linear-gradient(to bottom,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1',endColorstr='#e6e6e6',GradientType=0);transition:.6s;border-top:2px solid #fff;text-transform:uppercase;text-shadow:1px 1px 2px rgba(255,255,255,1)}.email-buttons-1:hover{background:#518e31}.email-buttons-2:hover{transition:.6s;background:#e8e8e8}.email-set-text{margin-top:20px}.email-set-text p{font-family:Tahoma;font-size:14px;color:#464646}.email-set-soc{width:94px;height:36px;margin:0 auto;padding-top:20px}.email-set-wont-wr{width:700px;height:80px;margin-top:20px}.email-set-wont{width:213px;margin:0 auto}.email-set-wont p{float:left;line-height:34px;font-family:Tahoma;font-size:14px;color:#464646;margin-right:20px}#email-buttons-1_1{float:right}.email-set-area{width:700px;float:left;display:none;margin-top:20px;transition:.4s}#email-set-area{width:564px;max-width:564px;height:80px;margin-left:50px;background:#d9edcf;border:1px solid #d9edcf;outline:0;box-sizing:border-box;padding:10px;transition:.3s}#email-set-area:focus{transition:.3s;background:#dadada;border:1px solid #dadada}#email-buttons-sub{border-bottom:0;border-left:0;border-right:0;height:28px;outline:0;margin:0 auto;float:none}#email-buttons-sub2{border-bottom:0;border-left:0;border-right:0;height:28px;outline:0}.em-sub{width:700px;height:28px;float:left;margin-top:20px}#form-checked-email-02-2{display:none}.subscription-wr-all{z-index:999;width:461px;min-height:287px;background:#fff;position:fixed;bottom:10px;right:20px;box-sizing:border-box;display:none;box-shadow:0 0 15px 0 rgba(0,0,0,0.4);padding:15px 0}.subscription-wr{width:100%;height:100%;position:relative;float:left}.subscription-text{width:100%;float:left;text-align:center}.subscription-text p{line-height:15px;font-family:calibri;font-size:18px;font-weight:bold;color:#333;padding:0 22px;margin-bottom:15px}.subscription-sale-wr{width:100%;float:left;border-bottom:1px dotted #363636}.subscription-sale-blocks{width:151px;float:left}.sub-sale-blocks-img{width:151px;height:49px;float:left;text-align:center}.sub-sale-blocks-img img{width:50px;height:49px}.sub-sale-blocks-img img:hover{opacity:70}.sub-sale-blocks-text{width:151px;float:left;height:49px;text-align:center}.sub-sale-blocks-text a{display:block;line-height:49px;text-decoration:none;color:#363636}.sub-sale-blocks-text p{height:49px;line-height:49px;text-decoration:none;font-family:calibri;color:#363636;font-size:13px}.sub-sale-forma-wr{width:453px;float:left}.sub-sale-forma-blocks-l{width:220px;float:left}.sub-sale-forma-blocks-r{width:220px;float:left}[class*="sub-sale-forma-blocks"] input{width:199px;height:30px;background:#d9edcf;outline:0;border:0;padding-left:10px;box-sizing:border-box;color:#363636}.sub-sale-forma-blocks-l input{float:right}.sub-sale-forma-blocks-r input{float:left}.sub-sale-forma-blocks-c{width:12px;float:left;height:30px}[class*="sub-sale-forma-blocks-name"]{height:30px;float:left;width:100%;line-height:30px;box-sizing:border-box;color:#363636;font-family:calibri;font-size:13px}.sub-sale-forma-blocks-name-first{padding-left:20px}.sub-submit{margin-top:16px;width:453px;height:28px;float:left;text-align:center}.sub-submit input{width:106px;height:26px;border-top:2px solid #74ce45;border-bottom:0;border-right:0;border-left:0;background:#70ae51;background:-moz-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#70ae51),color-stop(49%,#65a346),color-stop(50%,#5b983b),color-stop(100%,#4f8d30));background:-webkit-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-o-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-ms-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:linear-gradient(to bottom,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ae51',endColorstr='#4f8d30',GradientType=0);line-height:24px;color:#fff;text-transform:uppercase;font-size:12px;font-family:calibri;font-weight:bold;cursor:pointer;border-radius:5px}.sub-submit input:focus{outline:0;border-top:2px solid #74ce45;border-bottom:0;border-right:0;border-left:0}.sub-text-footer{width:453px;float:left;height:30px;text-align:center}.sub-text-footer{height:30px;line-height:30px;color:#363636;font-size:13px;font-family:calibri}.sub-closed{width:8px;height:8px;position:absolute;cursor:pointer;top:10px;right:10px}.sub-closed img{width:8px;height:8px;float:left}.wrong{color:#b1292b}.normal{color:#68a548}.w25{width:25px}.w30{width:30px}.w35{width:35px}.w66{width:66px}.w75{width:75px}.w82{width:82px}.w85{width:85px}.w90{width:90px}.w100{width:100px}.w120{width:120px}.w147{width:147px}.w170{width:170px}.w184{width:184px}.w199{width:199px}.w200{width:200px}.w205{width:205px}.w210{width:210px}.w232{width:232.5px}.bold18{font-size:18px;font-weight:bold}input[type="number"]{background-color:#f5f5f5;border:0;width:29px;height:18px;padding:4px 6px;border:1px solid #e0e0e0;border-radius:4px;text-align:center;-moz-box-shadow:inset 2px 2px 8px #dfdfdf;-webkit-box-shadow:inset 2px 2px 8px #dfdfdf;box-shadow:inset 2px 2px 8px #dfdfdf}.clear{clear:both}.popup{font-family:Calibri,Tahoma,Arial,sans-serif;background-color:#d9dade;color:#333;position:fixed;z-index:99999;width:100%;height:100%;background-color:rgba(0,0,0,0.7)}.popup_window{background-color:white;z-index:9999;margin-left:auto;margin-right:auto;min-width:300px;text-align:center;margin-top:7%;max-height:530px;position:relative;-moz-box-shadow:0 0 16px rgba(0,0,0,0.7);-webkit-box-shadow:0 0 16px rgba(0,0,0,0.7);box-shadow:0 0 16px rgba(0,0,0,0.7)}.popup_close_button{width:40px;height:40px;position:absolute;top:0;right:0;background:#f5f5f5 url("../images/close.png") center center no-repeat;cursor:pointer}.popup_window_content{padding:40px}.summary_price{background-color:#f5f5f5;width:100%;text-align:right;color:#5c5c5c;font-weight:bold;font-family:Calibri;padding-top:9px;padding-bottom:12px}.summary_price .price{font-weight:normal;font-size:16px}.summary_price span{font-weight:bold;font-size:22px}.summary_price .text{font-size:16px;padding-right:75px}.popup_footer{text-align:right;margin-top:42px;margin-bottom:-7px}.green_but2{background-color:#4fa32c;color:#fff;border-radius:3px;font-weight:bold;text-decoration:none;font-size:13px;font-family:Calibri;padding:5px 13px 8px 13px}.popup_window a{display:inline}.cont_shop_but,#help{font-size:13px;color:#555;padding-right:25px;padding-left:25px}h4{font-size:24px;color:#464646;text-align:left;margin:0;padding:0}.basket_block_header{display:table;border-bottom:1px solid #cdcdcd;line-height:1}.basket_block_header div{display:table-cell;vertical-align:bottom;font-size:16px;font-weight:bold;font-family:Calibri;color:#7d7d7d;padding:15px 20px 12px}.basket_block_content{max-height:270px;width:940px}.basket_block_content.overflow{overflow-y:auto}.basket_element_name{display:table-cell;vertical-align:middle;width:300px;text-align:left;padding:15px 10px 15px 15px}.basket_element{border-bottom:1px solid #cdcdcd;padding-left:5px}.basket_element:last-child{border:0}.picture_element{float:left;-moz-box-shadow:0 0 5px rgba(0,0,0,0.7);-webkit-box-shadow:0 0 5px rgba(0,0,0,0.7);box-shadow:0 0 5px rgba(0,0,0,0.7);margin-right:15px}.title_element{font-weight:bold;font-size:18px;padding:15px;line-height:1}.title_element .subtitle_element{font-size:13px;font-weight:normal;margin-top:8px;opacity:0}.basket_element_prepack{display:table-cell;vertical-align:middle;width:195px;padding-right:18px;position:relative}.basket_element_priceone{display:table-cell;vertical-align:middle;padding-right:25px}.basket_element_pricenum{display:table-cell;vertical-align:middle;padding-right:20px;padding-left:10px}.basket_element_priceall{display:table-cell;vertical-align:middle;padding-left:30px}.basket_element_delete{display:table-cell;vertical-align:middle;padding-left:12px}.basket_element_delete a{background:url("../images/delete_grey.png");display:table-cell;vertical-align:middle;width:16px;height:16px;cursor:pointer}.basket_element_delete a:hover{background:url("../images/delete.png")}.basket_element_priceone .price span{font-size:22px}.basket_element_priceall .price span{font-size:22px}.del_but_right{margin-right:-33px;float:right}.prepacks_table{display:table;vertical-align:bottom}.prepacks_table_cell{display:table-cell;line-height:.9;font-size:11px;width:20px;vertical-align:bottom;padding:3px}.prepacks_table_cell_elem{border:1px solid #e0e0e0;padding-left:5px;padding-right:5px;padding-bottom:3px;cursor:pointer;color:#5c5c5c}.prepacks_table_cell_elem:before{content:'';border:1px solid #e0e0e0;width:15px;height:1px;display:-webkit-inline-box;border-radius:1px}.prepacks_table_cell_elem.min{width:17px;padding-top:2px}.prepacks_table_cell_elem.two{width:22px;padding-top:4px}.prepacks_table_cell_elem.premax{width:23px;padding-top:4px}.prepacks_table_cell_elem.max{width:27px;padding-top:4px}.prepacks_table_cell_elem.min:before{margin-bottom:3px}.prepacks_table_cell_elem.two:before{margin-bottom:6px}.prepacks_table_cell_elem.premax:before{margin-bottom:10px}.prepacks_table_cell_elem.max:before{margin-bottom:5px}.prepacks_table_cell_elem.actived{border:1px solid #4fa32c}.prepacks_table_cell_elem.actived:before{border:1px solid #4fa32c}.align_bottom{position:relative}.items .one_item .one_item_buttons a{display:inline;margin:3px}.items .one_item .one_item_buttons,.compare_items_table .compare_one_item .one_item_buttons{width:120%;margin-top:15px;margin-bottom:15px;margin-left:-10px}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.file_download_link_{position:relative}.file_download_link_ a{position:absolute;top:32px;right:16px;padding:10px 10px 10px 22px;background:url(../images/icon_catalog_18x18_01.png) no-repeat 0 50%;margin-left:23px;z-index:3;font-style:italic}.faq a{position:absolute;top:32px;left:0;padding:10px 10px 10px 22px;background:url(../images/icon_faq_18x18_01.png) no-repeat 0 50%;margin-left:23px;z-index:3;font-style:italic}.style{width:100%;float:left}.questions_ li{width:100%;float:left;border-bottom:1px solid #c4c4c4;min-height:58px;height:58px;position:relative}.questions_ li.active{height:auto}.questions_ li span.nav{width:18px;height:18px;border-radius:100%;text-align:center;line-height:18px;color:#fff;font-style:italic;font-weight:700;background:#f58025;display:block;float:left;font-size:12px;position:absolute;top:20px;left:0}.questions_a{float:left;margin-left:25px;position:relative;margin-top:22px;height:15px;width:935px;white-space:nowrap;overflow:hidden}.questions_a.long_:before{width:50px;height:58px;top:-22px;right:0;position:absolute;content:'';background:#fff;z-index:2;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#ffffff',GradientType=1)}.questions_ li a{float:left;font-size:15px;color:#464646;font-weight:700;text-decoration:none;border-bottom:1px dashed #464646;position:relative}.questions_ li a:hover{color:#55a727;border-bottom:1px dashed #55a727}.questions_ li.active a{cursor:default;color:#55a727;border-bottom:1px dashed #55a727}.questions_answer{background:#f5f5f5;padding:15px 17px;box-sizing:border-box;position:relative;border-radius:4px;margin-top:16px;font-size:13px;color:#464646;line-height:18px}.questions_answer:before{position:absolute;top:-10px;left:40px;content:'';background:url("../images/question_arrow.png") no-repeat;width:12px;height:10px}.questions_answer span{font-weight:700}.questions_img img{margin-left:17px}.questions_hide{display:none}.questions_ li.active .questions_hide{display:block}.questions_answer a{color:inherit !important;font-size:inherit !important;border-bottom:0 !important;cursor:pointer !important;text-decoration:underline !important;margin-left:0 !important;margin-top:0 !important;float:none !important;display:inline-block}.questions_answer p{width:100%;float:left;margin-top:6px}.questions_answer p:first-child{margin-top:0}.questions_answer a:hover{color:#f58025 !important}.title_new{width:935px;position:absolute;top:50px;right:0;background:#fff;white-space:normal;z-index:3;font-size:15px;padding:10px;box-shadow:0 0 5px 0 rgba(149,149,149,0.75);box-sizing:border-box;line-height:18px}.pic_wr_{margin-top:35px}.pic_wr_:last-child{margin-bottom:35px}.pic_txt{width:99px;float:left;font-size:13px;font-weight:bold;font-style:italic;padding-top:15px}.pic_img{width:861px;float:left}.pic_img img{max-width:100%;height:auto}.questions_img{padding-bottom:20px}.title_questions_{font-weight:bold;color:#464646;font-size:22px;text-align:center;height:54px;line-height:79px}.not_availiable{position:absolute;width:100%;height:100%;background-color:rgba(0,0,0,0.15);background-position:-1px 0}.not_availiable.rus{background-image:url('/images/asd_ru_01.png')}.not_availiable.ukr{background-image:url('/images/asd_ua_01.png')}.video_posts.float.last{position:relative;transition:.5s;margin-bottom:30px}.video_posts.float.last.small{height:400px;overflow:hidden;margin-bottom:0 !important}.video_posts.float.last .white_list{z-index:1;content:'';position:absolute;width:100%;left:0;bottom:50px;height:50px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent',endColorstr = '#ffffff');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent', endColorstr = '#ffffff')";background-image:-moz-linear-gradient(top,transparent,#fff);background-image:-ms-linear-gradient(top,transparent,#fff);background-image:-o-linear-gradient(top,transparent,#fff);background-image:-webkit-gradient(linear,center top,center bottom,from(transparent),to(#fff));background-image:-webkit-linear-gradient(top,transparent,#fff);background-image:linear-gradient(top,transparent,#fff);transition:.3s}.video_posts.float.last.small .open_list_btn{bottom:0 !important}.video_posts .open_list_btn{position:absolute;bottom:-50px;width:100%;text-align:center;z-index:2;font-weight:bold;padding:11px 0 20px 0;font-size:16px;color:gray;background-color:#fff;cursor:pointer}.video_posts .close_list_btn{position:absolute;bottom:-50px;width:100%;text-align:center;z-index:2;font-weight:bold;padding:11px 0 20px 0;font-size:16px;color:gray;background-color:#fff;cursor:pointer}#content_nav .inner{box-sizing:border-box}#content_nav .content_nav_first_floor{padding:0 !important;margin:0 !important}#content_nav .content_nav_first_floor.clearfix{padding:0;width:25%;box-sizing:border-box;text-align:center;margin:15px 0}#content_nav .content_nav_items{display:none}#content_nav .content_nav_first_floor .content_nav_logo{width:100% !important;margin:25px 0 !important;padding:0 !important;height:140px !important}#content_nav .content_nav_second_floor .float{padding:0 !important;width:25%;box-sizing:border-box;text-align:center;margin:25px 0;height:140px}#content_nav .content_nav_first_floor.clearfix{float:left;border:0}.stock_items{padding-top:25px}.catalog_slider .catalog_description.logo543{background:#5b4a42}.catalog_description.logo320{background-color:#00a3de}h2.types_logo_320{color:#00a3de}h2.types_logo_543{color:#5b4a42}.delivery-form-par{position:fixed;z-index:99991;top:0;background-color:rgba(255,255,255,0.75);width:100%;height:100%;display:none;transition:.3s}.delivery-form-par .close-white{content:'';position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.delivery-form-par .popup-main-delivery{width:843px;height:400px;background-image:url("../images/right_deliver.png");background-size:contain;background-position:right center;background-repeat:no-repeat;background-color:#fdfaf1;position:absolute;font-family:'Lato-Medium';left:calc(50% - 421.5px);top:15%}.delivery-form-par .content-popup .text-up{width:100%;max-width:332px;border-bottom:1px solid #6cb33f;color:#42210b;text-align:center;font-size:18px;padding-top:19px;line-height:22px;padding-bottom:4px}.delivery-form-par .content-popup .text-down{width:100%;max-width:332px}.delivery-form-par .text-down .up-text{color:#42210b;font-size:13.5px;text-align:center;width:100%;padding-top:23px;padding-bottom:8px}.delivery-form-par .text-down .footer-text{color:#333;font-style:italic;text-align:center;font-family:'Lato-Italic';padding-top:8px;padding-top:24px;width:100%;font-size:10.8px}.delivery-form-par .submit-delivery-but{font-size:15px;color:#fff;border:0;background-color:#6cb33f;text-transform:lowercase;width:80px;height:25px;outline:0;cursor:pointer}.delivery-form-par .text-up p span{color:#f15a24;font-size:28.58px}.delivery-form-par .content-popup{transition:.3s;padding:38px;width:100%;height:100%;min-height:400px;max-width:480px;box-sizing:border-box;background-image:url('../images/grad_popup.png');background-position:left center;background-repeat-x:no-repeat}.delivery-form-par .text-down input{height:23px;width:104px;border:1px solid #6cb33f;font-size:9px;padding-left:12px;outline:0}.delivery-form-par .deliver-form{display:flex;justify-content:space-between;width:100%px}body{font-family:Calibri,Candara,Segoe,'Segoe UI',Optima,Arial,sans-serif}.open-delivery-modal{opacity:1;cursor:pointer;position:fixed;top:calc(50% - 80px);left:0;font-size:24px;z-index:10000}.open-delivery-modal div{width:100%;max-width:360px;text-align:center;margin:0 auto;position:relative}.open-delivery-modal div img{width:100%;max-width:360px}.modal_close{position:absolute;top:23px;right:10px;width:15px;height:15px;background-image:url('../images/close_popup.png');background-position:center center;background-repeat:no-repeat;border-radius:50%;box-shadow:0 1px 3px -1px rgba(0,0,0,0.40);cursor:default}.popup_full{display:block}.popup_mobile{display:none}@media(max-width:880px){.delivery-form-par .popup-main-delivery{width:96%;left:2%}.open-delivery-modal{top:initial;bottom:0;width:100%;box-shadow:inset 0 -250px 125px -250px black}.popup_full{display:none}.popup_mobile{display:block}}@media(max-width:480px){.delivery-form-par .content-popup{padding:25px}.delivery-form-par .popup-main-delivery{background-image:none;height:initial;top:10%}.delivery-form-par .deliver-form{justify-content:center;align-items:center;flex-direction:column}.delivery-form-par .text-down input{margin-bottom:5px}.delivery-form-par .submit-delivery-but{margin-top:5px}.delivery-form-par .content-popup .text-up,.delivery-form-par .content-popup .text-down{max-width:100%}}.content_blog .text_posts .one_post .one_post_image{position:relative;width:auto}
2 1 \ No newline at end of file
  2 +abbr,acronym,fieldset,img{border:0}*,article,aside,footer,header,nav,ol,section,ul,ul li{margin:0;padding:0}a,a:hover,body{color:#4a4a4a}a,a:hover{text-decoration:underline}blockquote,body,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,tr,ul{margin:0;padding:0;letter-spacing:normal}table{border-collapse:collapse;border-spacing:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:400}caption,th{text-align:left}q:after,q:before{content:''}:focus{outline:0}body,html{height:100%}article,aside,footer,header,nav,section{display:block}img{width:auto}input{vertical-align:middle}ol,ul{list-style:none}a{display:block}.clearfix:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0}.delivery-form-par .close-white,.prepacks_table_cell_elem:before,.questions_a.long_:before,.questions_answer:before,.video_posts.float.last .white_list{content:''}.clearfix{display:inline-block}html[xmlns] .clearfix{display:block}body{font:400 12px/14px Arial,Tahoma,sans-serif}.float{display:inline;float:left}.last{margin-right:0!important;padding-right:0!important}.display_none{display:none!important}.display_block{display:block!important}.beta a,.contact_mob_phones a,.contact_phones a{display:inline}.inner{width:960px;margin:0 auto}.not_exist{cursor:default;opacity:.3;-moz-opacity:.3;-khtml-opacity:.3}#wrapper{min-height:100%;height:auto!important;height:100%;margin:0 auto -5em}.beta{width:960px;overflow:hidden;margin:0 auto;padding:10px 0 0;font-size:20px;line-height:20px;text-align:center}.beta a{color:#009aff}#header{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ececec),color-stop(100%,#ececec));background:-webkit-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-o-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:-ms-linear-gradient(top,#fff 0,#ececec 100%,#ececec 100%);background:linear-gradient(to bottom,#fff 0,#ececec 100%,#ececec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ececec', GradientType=0);position:relative}.columns3{margin:10px 0}.columns3.first_column{width:320px}.columns3.second_column{width:375px}.columns3.third_column{width:265px;position:relative}.switch_lang{margin:5px 0 10px}.switch_lang div{padding:0 10px 0 20px}.switch_lang div.ru{background:url(../images/ru_flag.gif) 0 50% no-repeat;color:#55a727}.switch_lang div,.switch_lang div a.active,.switch_lang div a:hover{color:#55a727}.contact_mob_phones,.contact_phones{font:400 17px/20px Arial,Tahoma,sans-serif!important;padding:2px 0 2px 20px!important}.contact_phones{background:url(../images/tel.png) 0 50% no-repeat}.contact_mob_phones{background:url(../images/mob.png) 1% 50% no-repeat}span.small_digits{font-size:15px!important}.callback{font-style:italic;margin:5px 0 0}.logo{margin:10px 0}.menu_cabinet{padding:10px 10px 10px 20px}.basket{padding:10px 10px 10px 23px}.compare_wrapper{min-height:35px;position:relative}header .navbar .compare_wrapper{display:inline-block}.compare{padding:5px 0 15px 20px;margin:0 0 0 120px}header .compare{margin:10px 0 0 20px}.compare_wrapper .compare_list{position:absolute;top:0;right:0;padding:0 10px 10px;background:#f5f5f5;border:2px solid #267f00;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;z-index:9991;font:400 12px/20px Arial,Tahoma,sans-serif;display:none}header .compare_wrapper .compare_list a,header .compare_wrapper .compare_list a:hover{color:#4a4a4a;text-decoration:underline}.basket_number a,.basket_number a:hover,.compare_wrapper .compare_list .compare a,header .compare_wrapper .compare_list .compare a,header .compare_wrapper .compare_list .compare a:hover{text-decoration:none}.compare_wrapper .compare_list .compare{margin:0;padding:1px 0 5px 20px}.compare_wrapper .compare_list ul li{font:400 12px/20px Arial,Tahoma,sans-serif;padding:2px 0}.compare_wrapper .compare_list ul li a{margin:0 5px 0 0}.basket .active{color:#f58025}.basket_number{padding:7px 0 10px}.basket_number a,.basket_number a:hover{color:#fff;background:#67b73e;padding:2px 5px;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;webkit-box-shadow:inset 2px 1px 10px 0 #417e24;-moz-box-shadow:inset 2px 1px 10px 0 #417e24;box-shadow:inset 2px 1px 10px 0 #417e24}.basket a,.compare a,.menu_cabinet a{font-style:italic}#header .columns3 .menu_cabinet{background:url(../images/cabinet.png) 0 50% no-repeat}#header .columns3 .basket{background:url(../images/basket.png) 0 50% no-repeat}#header .columns3 .compare,header .compare_wrapper .compare{background:url(../images/ico_comparison.png) 0 25% no-repeat}#header .columns3 .site_search,header .site_search input{position:relative}#header .columns3 input,.cat_center .site_search input,header .site_search input{width:250px;margin:0;padding:7px 5px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:0;-moz-box-shadow:inset 1px 1px 1px 0 #d0d0d0;-webkit-box-shadow:inset 1px 1px 1px 0 #d0d0d0;box-shadow:inset 1px 1px 1px 0 #d0d0d0}#header .columns3 label,.cat_center .site_search label,header .site_search label{position:absolute;top:7px;right:7px}header .site_search label{top:12px;right:12px}#header .columns3 .site_search.active .search_result_wrapper,#header .columns3 .site_search:active .search_result_wrapper,.cat_center .site_search.active .search_result_wrapper,header .site_search.nav-search .search_result_wrapper{position:absolute;z-index:9999;background:#ececec;width:260px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:2px solid #4fa32c;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,.75);box-shadow:0 0 5px 0 rgba(50,50,50,.75)}header .site_search.nav-search .search_result_wrapper{position:static}#header .columns3 .site_search.active .search_result_wrapper .search_result_display,header .site_search.nav-search.active .search_result_wrapper .search_result_display{display:block}#header .columns3 .site_search .search_result_wrapper .search_result_display,header .site_search.nav-search .search_result_wrapper .search_result_display{display:none}#header .columns3 .site_search .search_result_wrapper li,header .site_search.nav-search .search_result_wrapper li{border-bottom:1px solid #c4c4c4;margin:15px;padding:0 0 10px}#header .columns3 .site_search .search_result_wrapper li img,header .site_search.nav-search .search_result_wrapper li img{width:100px;margin:5px;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,.75);box-shadow:0 0 5px 0 rgba(50,50,50,.75);float:left}#header .columns3 .site_search .search_result_wrapper li p,header .site_search.nav-search .search_result_wrapper li p{margin:0 0 0 80px;font:400 13px/15px Arial,Tahoma,sans-serif;color:#f58025}#header .columns3 .site_search .search_result_wrapper li p span,header .site_search.nav-search .search_result_wrapper li p span{font:700 20px/22px Arial,Tahoma,sans-serif;color:#f58025}#header .columns3 .site_search .search_result_wrapper li a.search_result_title,header .site_search.nav-search .search_result_wrapper li a.search_result_title{font:700 14px/20px Arial,Tahoma,sans-serif;margin:0 0 0 80px;text-decoration:none}#header .columns3 .site_search .search_result_wrapper .all_search_result,header .site_search.nav-search .search_result_wrapper .all_search_result{font:italic 12px/15px Arial,Tahoma,sans-serif;text-decoration:underline;margin:0 15px 5px}#content_nav .content_nav_logo a,#header_nav ul li a,.btn,.items .one_item .one_item_title a,.not_available,.not_available:hover{text-decoration:none}#header .columns3 .site_search .search_result_wrapper .no_search_result,header .site_search.nav-search .search_result_wrapper .no_search_result{font:italic 12px/15px Arial,Tahoma,sans-serif;margin:5px}#header_nav{position:relative;height:20px}#header_nav ul{border:3px solid #ececec;height:35px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;background:#67b73e;position:absolute;z-index:999}#header_nav ul li{display:inline;float:left;background:#67b73e;border-left:1px solid #55a727!important}.header_nav_1_{width:50px!important}.header_nav_2_{width:100px!important}.header_nav_3_{width:145px!important}.header_nav_4_{width:175px!important}.header_nav_5_{width:135px!important}.header_nav_6_{width:167px!important}.header_nav_7_{width:103px!important}.header_nav_8_{width:60px!important}#header_nav ul li.active,#header_nav ul li:hover{background:#55a727}#header_nav ul li.left_radius{border-radius:5px 0 0 5px;-moz-border-radius:5px 0 0 5px;-webkit-border-radius:5px 0 0 5px}#header_nav ul li.right_radius{border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;-webkit-border-radius:0 5px 5px 0}#header_nav ul li a{text-transform:uppercase;color:#fff;font:700 12px/15px Arial,Tahoma,sans-serif;text-align:center;padding:10px 1.3pc;float:left;white-space:nowrap}#content{display:block}#content_nav{background:url(../images/pattern.png)}#content_nav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0}h2.types_logo_1{color:#4fa32c}h2.types_logo_2{color:#bb4648}h2.types_logo_3{color:#f58025}h2.types_logo_4{color:#378a92}h2.types_logo_5{color:#db0565}h2.types_logo_6{color:#935927}h2.types_logo_479{color:#b1873f}#content_nav .content_nav_first_floor{border-bottom:1px solid #cdcdcd}#content_nav .content_nav_first_floor .content_nav_items{column-count:4;-moz-column-count:4;-webkit-column-count:4;column-width:180px;-moz-column-width:180px;-webkit-column-width:180px}#content_nav .content_nav_first_floor .content_nav_items a,.content_nav_items a{font-size:13px;line-height:21px;font-style:italic;width:160px}.content_nav_items a:hover{color:#f36d00}.content_items .title{background:url(../images/line.gif) 100% 85% repeat-x}.content_items .title .items_title{font:700 20px/24px Arial,Tahoma,sans-serif;color:#f36d00}.content_items .title .float{background:#fff}.content_items .title .content_arrow_left,.content_items .title .content_arrow_right{margin:4px 6px}.content_items .title .content_items_page{margin:4px 0;font:400 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a}.content_items .title .content_arrow_left{width:10px;height:18px;background:url(../images/content_arrow_left.png) no-repeat}.content_items .title .content_arrow_left:hover{width:10px;height:18px;background:url(../images/content_arrow_left_hover.png) no-repeat}.content_items .title .content_arrow_right{width:10px;height:18px;background:url(../images/content_arrow_right.png) no-repeat}.content_items .title .content_arrow_right:hover{width:10px;height:18px;background:url(../images/content_arrow_right_hover.png) no-repeat}.align_bottom{bottom:0;width:90%}.items .one_item{width:165px;min-height:331px;height:331px;margin:20px 33px 45px 0;text-align:center;position:relative}.search .items .one_item,.subcategory .items .one_item{min-height:410px;width:175px;margin:20px 95px 45px 0}.subcategory_list .items .one_item{min-height:230px;width:100%;margin:20px 0}.subcategory_list .items .one_item .one_item_image{margin:0 0 10px 18px;float:left}.subcategory_list .items .one_item .align_bottom{position:absolute;text-align:left;bottom:0;left:200px}#footer,#footer .up,.content_accost{position:relative}.subcategory_list .items .one_item .align_bottom .one_item_buttons{text-align:center;margin:0;float:left;display:inline}.subcategory_list .items .one_item .align_bottom .one_item_compare{float:left;display:inline;margin:15px 0 0 10px}.subcategory_list .items .one_item .one_item_description,.subcategory_list .items .one_item .one_item_title{text-align:left}.subcategory_list .items .one_item .one_item_title{margin:0 0 15px 200px}.subcategory_list .items .one_item .one_item_description{display:none}.subcategory_list .items .one_item .one_item_content_description{display:block;text-align:left;font:400 13px/16px Arial,Tahoma,sans-serif;margin:0 0 0 200px}.one_item_description{overflow:hidden;height:30px}.items .one_item .new_top{margin:0 0 0 23px;min-height:18px}.items .one_item .new_top div{margin:0 3px 0 0}.items .one_item .one_item_image{margin:0 auto 10px;display:inline-block;position1:relative;overflow:hidden;min-width:128px;max-width:175px;height:200px;-webkit-box-shadow:0 0 15px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 15px 0 rgba(50,50,50,.75);box-shadow:0 0 15px 0 rgba(50,50,50,.75)}.one_item_description{font:400 12px/14px Arial,Tahoma,sans-serif;margin:5px 0 0}.one_item_content_description{display:none}.items .one_item .one_item_title a h3{font:700 16px/20px Arial,Tahoma,sans-serif;color:#464646}.items .one_item .one_item_price{font:400 13px/15px Arial,Tahoma,sans-serif;color:#f58025}.items .one_item .one_item_price span{font:700 20px/22px Arial,Tahoma,sans-serif;color:#f58025}.items .one_item .one_item_buttons{margin:10px}.btn{font-size:12px;padding:5px 4px;margin:10px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px}.grey{background:#fff;background:-moz-linear-gradient(270deg,#fff 0,#ececec 100%);background:-webkit-linear-gradient(270deg,#fff 0,#ececec 100%);background:-o-linear-gradient(270deg,#fff 0,#ececec 100%);background:-ms-linear-gradient(270deg,#fff 0,#ececec 100%);background:linear-gradient(180deg,#fff 0,#ececec 100%);border:1px solid #e1e1e1}.green{color:#fff;background:#4fa32c;border:1px solid #4fa32c;margin:10px 4px 10px 0}.green:hover{background:#f36d00;border:1px solid #f36d00}.green:focus{color:#fff!important}.not_available{cursor:default;display:inline-block}.one_item_compare label,.one_item_compare label:hover{text-decoration:underline;cursor:pointer}.one_item_compare label:hover{color:#f36d00}.content_accost{background:#f5f5f5;padding:0 0 40px;border-bottom:2px solid #55a727}.content_accost .shadow_to_down{background:url(../images/shadow_to_down.png) center center no-repeat;height:22px;text-align:center;overflow:hidden}.content_accost .content_accost_title,.content_accost .content_accost_title h1{padding:18px 0 0;text-transform:uppercase;font:700 16px/18px Arial,Tahoma,sans-serif}.content_accost .content_accost_content h2{font:400 14px/16px Arial,Tahoma,sans-serif;padding:10px 0 0}.content_accost .content_accost_content h2 strong{font-weight:700}.content_accost .content_accost_content p{font:400 13px/14px Arial,Tahoma,sans-serif;padding:10px 0 0}.content_accost .content_accost_content p strong{font-weight:700}.content_accost .content_accost_content ul{font:400 13px/14px Arial,Tahoma,sans-serif;list-style:disc inside}.content_accost .content_accost_content ul li{margin:2px 0 0}.content_blog{margin:40px 0 30px;min-height:30px}.content_blog .posts{border-bottom1:2px solid #d3d3d3;padding:0 0 20px;margin:0 0 60px}.content_blog .text_posts,.content_blog .video_posts{width:460px;margin:0 40px 0 0}.content_blog .text_posts .text_posts_title a{padding:18px 0 0;text-transform:uppercase;font:700 16px/18px Arial,Tahoma,sans-serif;text-decoration:none}.content_blog .text_posts .one_post.first{width:460px;min-height:130px;margin:10px 0 20px}.content_blog .text_posts .one_post.first .one_post_content{width:260px;margin:0 0 0 20px}.content_blog .text_posts .one_post.first .one_post_content .one_post_title a{text-decoration:none;font:700 15px/18px Arial,Tahoma,sans-serif;color:#464646}.content_blog .text_posts .one_post.first .one_post_content .one_post_title a:hover{text-decoration:none;color:#464646}.content_blog .text_posts .one_post.first p{font:400 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a;padding:0 0 5px}.content_blog .text_posts .one_post.first a.more{display:inline;text-decoration:none}.content_blog .text_posts .one_post{width:140px;margin:0 20px 0 0}.content_blog .text_posts .one_post .one_post_content .one_post_title a{text-decoration:none;font:400 13px/16px Arial,Tahoma,sans-serif;color:#4a4a4a}.content_blog .text_posts .one_post .one_post_content .one_post_title a:hover{text-decoration:none}.video_posts .one_video_title{width:150px;margin:10px 0 0}.video_posts .one_video_title a,.video_posts .one_video_title a:hover{text-decoration:none;font:400 13px/18px Arial,Tahoma,sans-serif;color:#4a4a4a;position:relative}.video_posts .one_video_title a img{float:left;margin:0 7px 1px 0}.content_blog .links{height:70px}.float.share{float:right}.float.share .share_title{padding:6px 0 0;margin:0 5px 0 0}.pluso-wrap{background:#fff!important;border:1px solid #e9e9e9;opacity:.45;-moz-opacity:.45;-khtml-opacity:.45}.pluso-wrap a{margin:3px 0 0 5px!important}.float.share .pluso .pluso-more{display:none}#footer{margin:0;padding:0;height:5em}#footer .up a{position:absolute;top:-18px;right:0;z-index:9}.map{height:380px;margin:0 0 60px}#content_map,#content_map2{padding:10px 20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:250px}.content_map_1{position:absolute!important;bottom:0!important}.map_shadow{height:5px;webkit-box-shadow:inset 0 3px 10px 0 rgba(0,0,0,.75);-moz-box-shadow:inset 0 3px 10px 0 rgba(0,0,0,.75);box-shadow:inset 0 3px 10px 0 rgba(0,0,0,.75)}#content_map .content_map_title,#content_map2 .content_map_title{font:700 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}.catalog_slider .catalog_description .catalog_description_content p,.copyright,.copyright a,.copyright a:hover{color:#fff}#content_map p,#content_map2 p{font:400 14px/16px Arial,Tahoma,sans-serif;margin:3px 0 0}#content_map .email{background:url(../images/mail.png) 0 30% no-repeat;padding:0 0 10px 20px}.copyright{background:#4fa32c;height:5em}.copyright .float{margin:25px 0 0}.copyright .float.copyright_logo_margin{margin:20px 50px 0 0}.copyright .float_right,.float_right{float:right}.catalog_slider{background:url(../images/catalog_slider.jpg) center center no-repeat;height:190px;text-align:center;overflow:hidden}.catalog_slider .catalog_description{margin:50px 0 0;width:365px;height:100px;-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,.75);box-shadow:0 0 5px 0 rgba(50,50,50,.75)}.catalog_slider .catalog_description.logo1{background:#53a726}.catalog_slider .catalog_description.logo2{background:#b12b2c}.catalog_slider .catalog_description.logo3{background:#f36d01}.catalog_slider .catalog_description.logo4{background:#1b7781}.catalog_slider .catalog_description.logo5{background:#db0565}.catalog_slider .catalog_description.logo6{background:#935927}.catalog_slider .catalog_description.logo479{background:#b1873f}.catalog_slider .catalog_description .catalog_description_content{width:225px;margin:20px 0 0;text-align:left}.catalog_slider .catalog_description .catalog_description_content .catalog_description_title{margin:0 0 5px}.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a,.catalog_slider .catalog_description .catalog_description_content .catalog_description_title a:hover{font-size:15px;text-transform:uppercase;color:#fff;text-decoration:none}.breadcrumbs{background:#ebebeb}.breadcrumbs ul{padding:15px 0}.breadcrumbs ul li{padding:0 4px 0 0}.breadcrumbs ul li a.breadcrumbs_last,.breadcrumbs ul li a.breadcrumbs_last:hover{text-decoration:none}.cabinet .sidebar_content_wrapper,.catalog .sidebar_content_wrapper,.search .sidebar_content_wrapper,.subcategory .sidebar_content_wrapper,.subcategory_list .sidebar_content_wrapper{margin:20px 0 0;min-height:300px}.catalog #sidebar,.search #sidebar,.subcategory #sidebar,.subcategory_list #sidebar{width:185px;margin:0 55px 20px 0}.catalog #sidebar ul li a,.search #sidebar ul li a{font:italic 13px/20px Arial,Tahoma,sans-serif}.search #sidebar ul li ul{font:italic 12px/20px Arial,Tahoma,sans-serif;margin:0 0 0 10px}.cabinet #content_wrapper,.catalog #content_wrapper,.search #content_wrapper,.subcategory #content_wrapper,.subcategory_list #content_wrapper{width:720px}.catalog #content_wrapper ul li{margin:0 20px 0 0;text-align:center;min-height:185px}.catalog #content_wrapper ul li a,.catalog #content_wrapper ul li a:hover{font:700 14px/20px Arial,Tahoma,sans-serif;text-decoration:none;width:165px}.catalog .content_accost,.item .content_accost,.subcategory .content_accost,.subcategory_list .content_accost{background:#f5f5f5;padding:0 0 40px;position:relative;border-bottom:0}.subcategory_sidebar_title h3{font:700 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}.subcategory_sidebar_title p{font:700 13px/15px Arial,Tahoma,sans-serif;margin:15px 0 10px}.subcategory_sidebar_title .vip_icon{margin-left:20px;float:right}ul#subcategory_menu{width:220px;list-style:none}ul.last{border-bottom:1px solid #e3e3e3}ul#subcategory_menu li .main{text-shadow:0 1px 0 rgba(255,255,255,.8);cursor:pointer;margin:0;padding:6px 0 6px 10px;background:#fefefe;background:-moz-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fefefe),color-stop(0,#1e5799),color-stop(0,#fefefe),color-stop(100%,#ededed),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-o-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:-ms-linear-gradient(top,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);background:linear-gradient(to bottom,#fefefe 0,#1e5799 0,#fefefe 0,#ededed 100%,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#ededed', GradientType=0);border:1px solid #e0e0e0;text-decoration:none;font:700 13px/16px Arial,Tahoma,sans-serif;display:block}.subcategory_menu_closed.main{border-bottom:0!important}ul#subcategory_menu .main .float.dropdown{width:25px;height:12px;float:right;background:url(../images/dropdown.png) 0 100% no-repeat;cursor:pointer}ul#subcategory_menu .subcategory_menu_closed.main .float.dropdown{width:20px;height:12px;float:right;background:url(../images/dropdown_closed.png) 0 100% no-repeat;cursor:pointer}ul#subcategory_menu li ul{border-left:1px solid #e0e0e0;border-right:1px solid #e0e0e0;border-top:0;padding:5px 0 15px 15px}ul#subcategory_menu li ul li{padding:10px 0 0}ul#subcategory_menu li ul li a{font:400 13px/16px Arial,Tahoma,sans-serif;text-decoration:none}ul#subcategory_menu li.subcategory_menu_last_child{padding:0 0 27px;background:url(../images/sidebar_shadow.png) 0 100% no-repeat}input[type=checkbox]{display:none}input[type=checkbox]+label span{display:inline-block;vertical-align:middle;width:13px;height:13px;margin:-1px 4px 0 0;background:url(../images/check.png) no-repeat;cursor:pointer}input[type=checkbox]:checked+label span{background:url(../images/check.png) 0 -26px no-repeat}#slider{margin:5px 5px 5px 10px}.border_for_slider{border:1px solid #e0e0e0;margin:0 20px 20px 10px;border-radius:11px;-moz-border-radius:11px;-webkit-border-radius:11px;webkit-box-shadow:inset 0 2px 6px 0 #e0e0e0;-moz-box-shadow:inset 0 2px 6px 0 #e0e0e0;box-shadow:inset 0 2px 6px 0 #e0e0e0}.ui-widget-header{background:#57af3e!important}#slider.ui-widget-content{background:#acacac!important;border:0!important}.ui-slider-horizontal{height:8px!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{background:url(../images/state.png) 50% 50% no-repeat!important;border:0!important}.ui-state-focus{border:0!important}.price_slider_container{padding:40px 0;border:1px solid #e0e0e0;border-top:0}.alert_button,.price_ok{margin:0 0 0 10px;-moz-box-shadow:inset 0 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 0 #fff;box-shadow:inset 0 1px 0 0 #fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#f9f9f9),color-stop(1,#e9e9e9));background:-moz-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-webkit-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-o-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:-ms-linear-gradient(top,#f9f9f9 5%,#e9e9e9 100%);background:linear-gradient(to bottom,#f9f9f9 5%,#e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);background-color:#f9f9f9;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #dcdcdc;display:inline-block;cursor:pointer;color:#666;font-weight:700;padding:6px 8px;text-decoration:none;text-shadow:0 1px 0 #fff}.range,.value{position:absolute;display:block;text-align:center}.price_ok:hover{background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#e9e9e9),color-stop(1,#f9f9f9));background:-moz-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-webkit-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-o-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:-ms-linear-gradient(top,#e9e9e9 5%,#f9f9f9 100%);background:linear-gradient(to bottom,#e9e9e9 5%,#f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9', GradientType=0);background-color:#e9e9e9}.price_slider_container label{font:400 13px/14px Arial,Tahoma,sans-serif;margin:5px 5px 0 7px}.price_slider_container input{width:38px;margin:0;padding:5px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5}.value{top:-30px;left:-70%;padding:3px;border:1px solid #b7b7b7;font:400 12px/12px Arial,Tahoma,sans-serif;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;-webkit-box-shadow:0 0 5px 0 #b7b7b7;-moz-box-shadow:0 0 5px 0 #b7b7b7;box-shadow:0 0 5px 0 #b7b7b7;background:#fff;background:-moz-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#eee),color-stop(100%,#eee),color-stop(100%,#eee));background:-webkit-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-o-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:-ms-linear-gradient(top,#fff 0,#eee 100%,#eee 100%,#eee 100%);background:linear-gradient(to bottom,#fff 0,#eee 100%,#eee 100%,#eee 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0)}.range{top:-12px;left:15%;margin:0;width:12px;height:9px;background:url(../images/price_box.png) 100% 100% no-repeat}.tabs ul li,.tabs ul li.not_active{height:14px}.price-range-both.value{width:100px;margin:0 0 0 -50px;top:26px}.price-range-both{display:none}.value i{font-style:normal}#content_wrapper .content_wrapper_header{margin:0 0 20px}#content_wrapper .content_wrapper_header .content_wrapper_header_filters div{font:400 12px/14px Arial,Tahoma,sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a,#content_wrapper .content_wrapper_header .content_wrapper_header_filters div a:hover{text-decoration:none;padding:0 15px 0 0;background:url(../images/close_filter.png) 100% 50% no-repeat}.empty_filters,.empty_filters a{background:#fff!important}.empty_filters a{text-decoration:underline!important;color:#417e24!important;padding:0!important}.tabs ul li.active_tab,.tabs ul li.active_tab a{color:#464646!important}.content_wrapper_header_menu,.item_menu_header_menu{margin:20px 0 0;background:url(../images/line_menu.png) 100% 100% repeat-x}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .padding_60{padding-left:57px}.tabs{margin:0 15px 0 0;padding:0 0 0 20px}.tabs ul li{padding:8px 20px;border:2px solid transparent;border-bottom:2px solid #c4c4c4}.tabs ul li a{font:700 13px/14px Arial,Tahoma,sans-serif;padding:0;text-decoration:none}.tabs ul li.active_tab{border:2px solid #c4c4c4;border-bottom:2px solid #fff;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;background:#fff!important}.tabs ul li.tabs_new_items{background:#b12b2c;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;margin:0 1px}.tabs ul li.tabs_top_items{background:#f36c00;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0}.tabs ul li.tabs_all_items{background:#4fa32c;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0}.tabs ul li.tabs_all_items a,.tabs ul li.tabs_new_items a,.tabs ul li.tabs_top_items a{color:#fff}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs{margin:10px 20px 0 0;cursor:pointer}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs{background:url(../images/thumbs.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .thumbs:hover{background:url(../images/thumbs_active.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists{background:url(../images/lists.png) 100% 50% no-repeat;width:11px;height:11px}#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists.active,#content_wrapper .content_wrapper_header .content_wrapper_header_menu .lists:hover{background:url(../images/lists_active.png) 100% 50% no-repeat;width:11px;height:11px}.sort_price{margin:10px 10px 0 0}.sort_price a{color:#417e24}.sort_price.last{padding:0 15px 0 0;background:url(../images/sort_arrow.png) 100% 50% no-repeat;position:relative}.sort_price.last .sort_price_dropdown{position:absolute;border:1px solid #e0e0e0;z-index:45;background:#fff;font-size:12px;margin:3px 0 0;padding:2px;top:13px;left:3px;width:140px}.sort_price.last .sort_price_dropdown a{text-decoration:none;padding:0 0 2px}.sort_price.last .sort_price_dropdown a:hover{color:#f58025}.paginate{margin:0 auto;display:table;list-style:none}.paginate ul{margin:20px 0}.paginate li{float:left}.paginate ul li a{text-decoration:none;font:700 20px/24px Arial,Tahoma,sans-serif;color:#4fa32c;padding:0 10px}.paginate ul li a.current{text-decoration:none;font:700 16px/24px Arial,Tahoma,sans-serif;color:#707070}.item_menu_shadow{background:url(../images/item_menu_shadow.png) 50% 100% no-repeat #ebebeb;padding:20px 0 0;width:946px;height:27px}.item .breadcrumbs ul{padding:5px 0 20px}.item .item_wrapper .item_images{width:400px;margin:20px 20px 20px 0}.item .item_wrapper .item_images .width_400{margin:0 0 10px;position:relative}.item .item_wrapper .item_images .width_400 .previous_image{position:absolute;background:url(../images/main_photo_arrow_left.png) no-repeat;width:28px;height:28px;bottom:8px;left:5px}.item .item_wrapper .item_images .width_400 .next_image{position:absolute;background:url(../images/main_photo_arrow_right.png) no-repeat;width:28px;height:28px;bottom:8px;left:34px}.item .item_wrapper .item_images .width_400 .zoom_image{position:absolute;background:url(../images/zoom.png) no-repeat;width:28px;height:28px;bottom:8px;right:5px}.item .item_wrapper .item_images .width_128{margin:0 5px 0 0;border:1px solid #e0e0e0;height:130px}.item .item_wrapper .item_content{width:520px;margin:20px 0}.item .item_wrapper .item_content .item_title{margin:5px 0}.item .item_wrapper .item_content .item_decription{font:400 13px/16px Arial,Tahoma,sans-serif;margin:0 0 20px}.item .item_wrapper .item_content .properties{font:400 14px/16px Arial,Tahoma,sans-serif;margin:5px 0 10px;min-width:100px}.item .item_wrapper .item_content .properties_article{font:700 14px/16px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .properties_producer a{color:#f36d00}.item .item_wrapper .item_content .properties_presence{color:#417e24}.item .item_wrapper .item_content .properties_absent{font-weight:700;color:#ae2328}.item .item_wrapper .item_content .minus{background:url(../images/minus.png) 0 100% no-repeat;width:12px;height:15px;padding:0 5px 0 0;cursor:pointer}.item .item_wrapper .item_content .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px;cursor:pointer}.item .item_wrapper .item_content .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:400 15px/16px Arial,Tahoma,sans-serif;color:#464646}.item .item_wrapper .item_content .colors{margin:10px 0 0}.item .item_wrapper .item_content .packing{min-height:60px;position:relative}.item .item_wrapper .item_content .packing .properties{position:absolute;bottom:0;margin-bottom:0}.item .item_wrapper .item_content .packing_images{position:absolute;bottom:0;left:100px}.basket_element_prepack .group_sizes,.group_sizes,.item .item_wrapper .item_content .packing_images .group_sizes,.table_cell4 .group_sizes{min-height:35px;min-width:31px;border:1px solid #e0e0e0;margin:0 10px 0 0;position:relative;display:inline-block}.group_sizes.active,.group_sizes:hover,.item .item_wrapper .item_content .packing_images .group_sizes.active,.item .item_wrapper .item_content .packing_images .group_sizes:hover,.table_cell4 .group_sizes.active{border:1px solid #4fa32c}.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover{border:1px solid #e0e0e0}.group_sizes .group_sizes_header,.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack.png) 50% 0 no-repeat}.group_sizes.active .group_sizes_header,.group_sizes:hover .group_sizes_header,.item .item_wrapper .item_content .packing_images .group_sizes.active .group_sizes_header,.item .item_wrapper .item_content .packing_images .group_sizes:hover .group_sizes_header{position:absolute;top:5px;width:100%;height:3px;text-align:center;background:url(../images/pack_hover.png) 50% 0 no-repeat}.item .item_wrapper .item_content .packing_images .group_sizes.not_exist:hover .group_sizes_header{background:url(../images/pack.png) 50% 0 no-repeat}.group_sizes .group_sizes_content,.item .item_wrapper .item_content .packing_images .group_sizes .group_sizes_content{position:absolute;bottom:0;width:100%;text-align:center;font-size:11px;white-space:pre-line;line-height:11px;overflow:hidden}.item .item_wrapper .item_content .buy_compare{min-height:60px;width:100%;background:#f5f5f5;margin:15px 0}.item .item_wrapper .item_content .buy_compare .one_item_price{font:400 13px/15px Arial,Tahoma,sans-serif;color:#f58025;margin:18px 0 0 20px}.item .item_wrapper .item_content .buy_compare .one_item_price span{font:700 20px/22px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .buy_compare .one_item_buttons{width:80px;margin:18px 0 0 20px}.item .item_wrapper .item_content .buy_compare .btn{text-decoration:none;font-size:12px;padding:5px 4px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:70px}.btv:hover,.green:hover{text-decoration:none!important}.item .item_wrapper .item_content .buy_compare .green{color:#fff;background:#4fa32c;border:1px solid #4fa32c;margin:0;text-align:center}.grey{text-decoration:none;font-family:calibri;font-size:14px;color:#474747;padding:5px 8px 6px 7px;border-top:1px solid #eaeaea;border-bottom:1px solid #a3a3a3;border-left:1px solid #d7d7d7;border-right:1px solid #c3c3c3;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ececec');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec')";background-image:-moz-linear-gradient(top,#fff,#ececec);background-image:-ms-linear-gradient(top,#fff,#ececec);background-image:-o-linear-gradient(top,#fff,#ececec);background-image:-webkit-gradient(linear,center top,center bottom,from(#fff),to(#ececec));background-image:-webkit-linear-gradient(top,#fff,#ececec);background-image:linear-gradient(top,#fff,#ececec);-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.compare_items .compare_items_table table th .btn,.items .one_item .one_item_buttons .btn{display:inline;margin:3px}.green:hover{color:#fff}.item .item_wrapper .item_content .buy_compare .one_item_compare{margin:24px 0 0 20px}.item .item_wrapper .item_content .buy_compare .one_item_compare label{text-decoration:underline;cursor:pointer}.item .item_wrapper .item_content .features{margin:0 0 20px;min-height:30px}.item .item_wrapper .item_content .features a{margin:0 5px 0 0;color:#417e24}.item .item_wrapper .item_content .item_menu_content{margin:20px 0;font:400 13px/16px Arial,Tahoma,sans-serif}.item .item_wrapper .item_content .item_menu_content .tabs_properties p.key_value{min-width:150px}.item .item_wrapper .item_content .item_menu_content .item_menu_content_wrapper div{margin:0 0 10px}.item .one_item{min-height:410px}.item .other_items{min-height:510px}#content_subnav{position:absolute;top:165px;border:2px solid #67b73e;padding:0 20px;background:#f5f5f5;z-index:999;width:915px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 1px 10px 0 rgba(50,50,50,.75);-moz-box-shadow:0 1px 10px 0 rgba(50,50,50,.75);box-shadow:0 1px 10px 0 rgba(50,50,50,.75)}.my_order_item .my_order_item_image img,.order .order_form ul li ul li img.order_img{-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,.75)}#content_subnav h2{font-size:15px;text-transform:uppercase;margin:20px 0 0}#content_subnav .content_nav_first_floor{padding:20px 0 15px;margin:0 0 20px;border-bottom:1px solid #cdcdcd}#content_subnav .content_nav_first_floor .content_nav_logo{padding:0 40px 0 0;width:150px}#content_subnav .content_nav_logo a{text-decoration:none}#content_subnav .content_nav_first_floor .content_nav_items{text-align:justify;column-count:4;-moz-column-count:4;-webkit-column-count:4;column-gap:40px;-moz-column-gap:40px;-webkit-column-gap:40px;column-width:150px;-moz-column-width:150px;-webkit-column-width:150px;min-height:150px}#content_subnav .content_nav_first_floor .content_nav_items a,.content_nav_items a{font-size:13px;line-height:21px;font-style:italic}.content_nav_second_floor .float{padding:0 40px 20px 0;width:150px}.shadow_to_top{background:url(../images/shadow.png) center center no-repeat;height:22px;text-align:center;overflow:hidden}#profiler-sql,.basket_block_content.overflow{overflow-y:auto}.order_wrapper{margin:0 0 65px}.order_menu_shadow{background:url(../images/item_menu_shadow.png) 50% 100% no-repeat #ebebeb;padding:20px 0 0;width:946px;height:27px}.order .breadcrumbs ul{padding:5px 0 20px}.order .order_form .order_title{margin:20px 0 0}.order .contacts_form h1,.order .order_form h1{font:700 20px/24px Arial,Tahoma,sans-serif}.order .order_form ul li.main_li{border-top:1px solid #cdcdcd;padding:15px 0 10px;margin:10px 0 0}.order .order_form ul li.main_li:first-child{border-top:0;padding:0;margin:10px 0 0}.order .order_form ul li.order_form_header li,.order .order_form ul li.order_last{font:700 14px/18px Arial,Tahoma,sans-serif;color:#676767}.order .order_form ul li.order_form_content ul li.order_first_column,.order .order_form ul li.order_form_header ul li.order_first_column{width:380px;padding:0 0 0 20px}.order .order_form ul li.order_form_content ul li.order_second_column,.order .order_form ul li.order_form_header ul li.order_second_column{width:220px;text-align:center}.order .order_form ul li.order_form_content ul li.order_third_column,.order .order_form ul li.order_form_header ul li.order_third_column{width:100px;margin:0 0 0 65px}.order .order_form ul li.order_form_content ul li.order_fourth_column,.order .order_form ul li.order_form_header ul li.order_fourth_column{width:100px;margin:0 0 0 45px}.order .order_form ul li.order_form_content ul li.order_fifth_column,.order .order_form ul li.order_form_header ul li.order_fifth_column{margin:0}.order .order_form ul li.order_form_content ul li.order_fifth_column,.order .order_form ul li.order_form_content ul li.order_fourth_column,.order .order_form ul li.order_form_content ul li.order_second_column{margin-top:35px}.order .order_form ul li.order_form_content ul li.order_third_column{margin-top:33px}.order .order_form ul li.order_last{background:#f5f5f5;text-align:right;padding:15px 75px 15px 0;margin:5px 0 40px}.order .order_form ul li ul li img.order_img{box-shadow:0 0 5px 0 rgba(50,50,50,.75);margin:0 20px 0 0}.order .order_form ul li ul li h2{font:700 14px/18px Arial,Tahoma,sans-serif;margin:20px 0 4px 100px;width:70%}.order .order_form ul li ul li p{margin:0 0 0 100px}.order .order_form ul li span{color:#f58025}.order .order_form ul li span.price{font:700 18px/18px Arial,Tahoma,sans-serif}.order .order_form ul li ul li .minus{background:url(../images/minus.png) 50% 48% no-repeat;width:12px;height:15px;padding:7px}.order .order_form ul li ul li .plus{background:url(../images/plus.png) 50% 55% no-repeat;width:12px;height:24px;padding:0 0 0 10px}.order .order_form ul li ul li .count_items{width:30px;margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;background:#f5f5f5;text-align:center;font:400 15px/16px Arial,Tahoma,sans-serif;color:#464646}#order_add_ru .contacts_form ul.form,#order_add_ua .contacts_form ul.form,ul.form{margin:30px 0 0;font:700 13px/18px Arial,Tahoma,sans-serif}#order_add_ru .contacts_form ul.form li,#order_add_ua .contacts_form ul.form li,ul.form li{margin:0 0 10px}.order .contacts_form .label,ul.form li .label{width:210px;text-align:right;margin:7px 10px 0 0}.order .contacts_form .input,ul.form li .input{width:720px;font-weight:400}.order .contacts_form .label span.required,ul.form li .label span.required{font:400 10px/14px Arial,Tahoma,sans-serif;color:#f58025;vertical-align:text-top}.order .contacts_form .input input[type=text],.order .contacts_form .input textarea,ul.form li .input input[type=text],ul.form li .input input[type=password],ul.form li .input textarea{width:280px;margin:0;padding:6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:400 15px/16px Arial,Tahoma,sans-serif;color:#464646}ul.form li .input select{margin:0;padding:4px 6px;border:1px solid #c2c2c2;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 3px #bbb;-moz-box-shadow:inset 1px 1px 3px #bbb;-webkit-box-shadow:inset 1px 1px 3px #bbb;text-align:left;font:400 15px/16px Arial,Tahoma,sans-serif;color:#464646;background:#fff}.order ul.form li .input select{width:295px}.order .contacts_form .input textarea,section #content .contacts_form .input textarea{max-width:720px;width:720px;min-height:120px}.order .contacts_form li.with_radio_buttons .input{font:400 13px/14px Arial,Tahoma,sans-serif}.order .contacts_form li.with_radio_buttons label{margin:0 10px 0 0}.order .contacts_form .input .input_radio{margin:0 0 10px}.order .contacts_form .input input[type=radio]{margin:0 5px 0 0}.order .contacts_form .input .description{margin:5px 0 15px}.order .contacts_form .input .description label{font:italic 12px/14px Arial,Tahoma,sans-serif;text-decoration:underline}.order .contacts_form .with_radio_buttons .input{margin:10px 0 0}.order .contacts_form .owner_city .input .description,.order .contacts_form .with_radio_buttons .input .description{background:#f5f5f5;padding:15px 0 20px 15px;margin:0 0 15px;line-height:16px}.order .contacts_form .with_textarea .input .description{font:italic 12px/14px Arial,Tahoma,sans-serif}.ui-widget-content{position:absolute;background:#f5f5f5!important}.ui-widget-content li{margin:0!important;padding:5px!important;width:95%;cursor:pointer}.ui-widget-content li:hover{background:#acacac!important;margin:0!important;width:97%;padding:5px!important}.owner_city,.store_address{position:relative}#loading_city,#loading_office{background:url(../images/loadinfo.gif) no-repeat;height:24px;width:24px;margin:4px 0 0 485px;position:absolute}.ui-menu .ui-menu-item a,.ui-menu .ui-menu-item a:hover{text-decoration:none;display:block;padding:2px!important;font:400 14px/16px Arial,Tahoma,sans-serif!important}.order div.registrated_customer{min-height:200px}.order div.registrated_customer .btn{margin:20px 50px 0 0;padding:5px 20px}.order div.registrated_customer a{margin:25px 50px 0 0}.do_registration,.order div.registrated_customer .do_registration{margin:20px 50px 0 0;color:#4fa32c}.do_registration:hover,.order div.registrated_customer .do_registration:hover{color:#f58025}.order div.registrated_customer .label{width:250px}.order div.registrated_customer .input{width:200px}.order div.registrated_customer .input input{width:190px}.order .login_with_email{width:63%;margin:20px 40px 20px 0;border-right:1px solid #e2e2e2;padding:20px 0}.order .login_with_email .form{margin:0}.order .login_with_social{width:25%;margin:20px 0;padding:20px 0}.order .login_with_social .login_with_social_wrapper{margin:0 auto;width:116px}.order .login_with_social .login_with_social_wrapper a{margin:0 10px 0 0}.order .login_with_social_title{font:700 13px/18px Arial,Tahoma,sans-serif;margin:0 0 20px}input[type=radio]{display:none}input[type=radio]+label span{display:inline-block;margin:-1px 4px 0 0;cursor:pointer;background:url(../images/radio.png) 0 -24px no-repeat;width:12px;height:12px}input[type=radio]:checked+label span{background:url(../images/radio.png) no-repeat}.contacts_form .btn,.order .btn{width:auto;float:right;font-weight:700;cursor:pointer}.image_400{max-height:400px;max-width:400px}.image_128{max-height:128px;max-width:128px}.width_128{width:128px;text-align:center}.width_400{width:400px;text-align:center}.static_page{margin-bottom:60px}.static_page_wrapper{min-height:200px;margin:30px 0 0;font:400 14px/20px Arial,Tahoma,sans-serif}.dialogue,.dialogue_message{font:400 14px/16px Arial,Tahoma,sans-serif}.static_page h2{text-align:center;margin:0 0 20px}.static_page a{display:inline}.alert_button{width:auto;margin:10px 10px 10px 0;padding:7px 20px}.dialogue{padding:20px 0 10px 10px;min-width:350px}input.error,textarea.error{border:1px solid #aaa!important;background-color:#ffffe0!important}label.error{color:#c00;font-weight:400!important;display:block}#execute{margin:30px 0 0}.cabinet .breadcrumbs ul,.news .breadcrumbs ul,.search .breadcrumbs ul,.static_page .breadcrumbs ul{padding:5px 0 20px}.news_wrapper{margin:20px 0 65px;min-height:100px}.item .news_wrapper{min-height:100px;padding:20px 0;border-top:2px solid #55a727}.news_wrapper .one_news{width:470px;margin:10px 20px 10px 0}.news_wrapper .one_news .one_news_img{width:180px;margin:0 10px 0 0}.news_wrapper .one_news .one_news_content{width:260px;margin:0 10px 0 0;position:relative;height:120px}.news_wrapper .one_news .one_news_content.full_width{width:95%;margin:0 10px 0 0;position:relative;height:120px}.news_wrapper .one_news .one_news_content a{text-decoration:none}.news_wrapper .one_news .one_news_content h2{font:700 15px/18px Arial,Tahoma,sans-serif}.news_wrapper .one_news .one_news_content p{font:400 13px/18px Arial,Tahoma,sans-serif;margin:10px 0 0}.news_wrapper .one_news .one_news_content a.news_more{position:absolute;right:0;bottom:0;text-decoration:underline;color:#4fa32c}.news_wrapper .one_news .one_news_content a.news_more:hover{color:#f58025}.news_img_holder{width:400px;margin:0 40px 30px 0;float:left}.news_img_holder a.news_cover{margin:0 0 40px}.news_img_holder a.news_photogallery{margin:0 40px 40px 0}.news_content a{display:inline}.news_content strong{font-weight:700}.news_content h2{font:700 20px/24px Arial,Tahoma,sans-serif}.news_content p{font:400 13px/18px Arial,Tahoma,sans-serif;margin:10px 0 0}.news_content .news2groups{margin:20px 0 0}.news_content .news2groups div{font:400 12px/14px Arial,Tahoma,sans-serif;margin:0 3px;padding:2px 2px 2px 5px;background:#efefef;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.news_content .news2groups div a{text-decoration:none}.errorMessage,.noticeMessage,.successMessage{padding:15px 20px;margin:10px 0 20px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;color:#fff;font-size:14px;display:block}#flash_output div{margin:30px 0 20px}.errorMessage a,.noticeMessage a,.successMessage a{color:#fff;display:inline}.message_holder,.message_holder_empty{width:960px;display:block;margin:0 auto;padding:0;position:relative}.successMessage{background:url(../images/flash_success.png) 50% 50% #2c85ad}.admin_review,.noticeMessage{background:url(../images/flash_notice.png) 50% 50% #f6b03d}.errorMessage{background:url(../images/flash_error.png) 50% 50% #be2e17}.message_holder{height:190px}.message_holder_empty{height:140px}.cabinet,.cabinet_login{margin-bottom:65px}.cabinet .sidebar_content_wrapper,.cabinet_login .sidebar_content_wrapper{margin:20px 0}.cabinet #sidebar .subcategory_sidebar_title h3,.cabinet_login #sidebar .subcategory_sidebar_title h3{margin:0 0 15px}.cabinet #sidebar .subcategory_sidebar_title p,.cabinet_login #sidebar .subcategory_sidebar_title p{font:italic 13px/15px Arial,Tahoma,sans-serif;text-decoration:underline;color:#f36d00}.cabinet #sidebar .subcategory_sidebar_title a,.cabinet_login #sidebar .subcategory_sidebar_title a{font:italic 13px/15px Arial,Tahoma,sans-serif;text-decoration:underline;color:#4a4a4a;margin:0 0 5px}.cabinet #sidebar .subcategory_sidebar_title a.active,.cabinet #sidebar .subcategory_sidebar_title a:hover,.cabinet_login #sidebar .subcategory_sidebar_title a.active,.cabinet_login #sidebar .subcategory_sidebar_title a:hover{color:#f36d00}.cabinet #sidebar ul,.cabinet_login #sidebar ul{margin:10px 0 10px 15px;display:none}.cabinet #content_wrapper .form,.cabinet_login #content_wrapper .form{margin:0}.cabinet #content_wrapper,.cabinet_login #content_wrapper{margin:0 0 0 100px;width:700px}.cabinet_login #content_wrapper .login_with_email,.cabinet_login #content_wrapper .login_with_social{padding:40px 40px 0 0}.cabinet_login #content_wrapper .login_with_email{margin:0 40px 0 0;border-right:1px solid #e2e2e2;width:57%}.cabinet_login #content_wrapper .login_with_social{width:30%;margin:0 40px 0 0}.cabinet_login #content_wrapper .login_with_social_title{font:700 13px/18px Arial,Tahoma,sans-serif;margin:0 0 20px}.cabinet #content_wrapper .subcategory_content_wrapper_title h3,.cabinet_login #content_wrapper .subcategory_content_wrapper_title h3{font:700 16px/18px Arial,Tahoma,sans-serif;color:#4a4a4a}.cabinet_login #content_wrapper .login_with_social_wrapper{margin:0 auto;width:116px}.cabinet_login #content_wrapper .login_with_social_wrapper a{margin:0 10px 0 0}.cabinet #content_wrapper .form{margin:30px 0 0 30px}.cabinet #content_wrapper .form .input,.cabinet_login #content_wrapper .form .input{width:250px}.cabinet #content_wrapper .form .input input,.cabinet_login #content_wrapper .form .input input{width:240px}.cabinet #content_wrapper .form li .label,.cabinet_login #content_wrapper .form li .label{width:135px;text-align:right;margin:7px 10px 0 0}.cabinet #content_wrapper .btn,.cabinet_login #content_wrapper .btn{width:auto;float:right;font-weight:700;cursor:pointer;margin:20px 0 0;padding:5px 20px}.cabinet .submit{margin:0 270px 0 0}.cabinet .submit a.change_passwd{margin:20px 0 40px}.submit a{margin:25px 30px 0 0}.submit a.change_passwd{margin:40px 0;color:#4fa32c}.submit a.change_passwd:hover{color:#f58025}.submit a.do_registration{margin:25px 0 0}.my_order_items{margin:40px 0 0;padding:0 0 20px;border-bottom:1px solid #e2e2e2}.contacts_wrapper .contacts_list tr,.partners table tr{border-bottom:1px solid #cdcdcd}#content_wrapper .order_number{font:400 14px/18px Arial,Tahoma,sans-serif;margin:10px 0}.my_order_item{margin:0 30px 0 0;min-height:200px}.my_order_item .my_order_item_image{float:left}.my_order_item .my_order_item_image img{box-shadow:0 0 5px 0 rgba(50,50,50,.75)}.my_order_item .my_order_item_content{margin:0 0 0 90px;width:200px}.my_order_item .my_order_item_content h2{font:700 15px/18px Arial,Tahoma,sans-serif;margin:0 0 5px}.my_order_item .my_order_item_content h2 a{text-decoration:none}.my_order_item .my_order_item_content .my_order_item_price{margin:10px 0}.my_order_item .my_order_item_content .my_order_item_count,.my_order_item .my_order_item_content .my_order_item_count_total{font:700 13px/15px Arial,Tahoma,sans-serif;color:#7d7d7d}.my_order_item .my_order_item_content span,.my_order_items_description .my_order_total span{color:#f58025}.my_order_item .my_order_item_content .price{font:400 20px/22px Arial,Tahoma,sans-serif}.my_order_items_description .my_order_total{font:700 14px/16px Arial,Tahoma,sans-serif;margin:20px 0 10px}.my_order_items_description .my_order_total .price{color:#f58025;font:400 20px/22px Arial,Tahoma,sans-serif}.my_order_items_description .my_order_delivery,.my_order_items_description .my_order_status{font:400 14px/16px Arial,Tahoma,sans-serif;margin:0 0 5px}.my_order_items_description .my_order_delivery span,.my_order_items_description .my_order_status span{font:700 14px/16px Arial,Tahoma,sans-serif;color:#4fa32c}.callback_form{margin:20px 0 0 20px}.callback_form form{margin:20px 0 0 100px}.callback_form ul.form li .input{width:60%;font-weight:400}.callback_form ul.form li .input input{width:100%}.callback_form ul.form li .input textarea{width:100%;height:120px}.callback_form ul.form li .label{width:30%;font-weight:700;margin:0 10px 0 0}.callback_form ul.form li.with_textarea{margin:15px 0 0}.callback_form .submit{margin:0 50px 0 0}.callback_form .submit input{width:auto}.contacts_wrapper{min-height:300px;font:400 13px/16px Arial,Tahoma,sans-serif;color:#616161}.contacts_wrapper h2{margin:20px 0;font:700 20px/24px Arial,Tahoma,sans-serif}.contacts_wrapper_map{min-height:300px;width:465px;margin:0 30px 0 0}.contacts_wrapper_map .map_description{min-height:165px}.contacts_wrapper_map .map_description .map_description_name{font-weight:700}.contacts_wrapper_map .map{height:300px;margin:20px 0}.contacts_wrapper .contacts_email_address{margin:40px 0 0}.contacts_wrapper .contacts_email_address_name{margin:10px 0;font:700 14px/24px Arial,Tahoma,sans-serif}.contacts_wrapper .contacts_list{width:100%;margin:0 0 100px}.contacts_wrapper .contacts_list tr th{color:#7d7d7d;font:700 13px/16px Arial,Tahoma,sans-serif;padding:15px;background:#f5f5f5}.contacts_wrapper .contacts_list tr td{color:#616161;padding:15px}.contacts_wrapper .contacts_list tr td.contacts_list_phone{width:90px}tr.even{background-color:#f1f1f1}tr.odd{background-color:#f9f9f9}.compare_items{margin:0 0 65px}.compare_items h2{font:700 20px/24px Arial,Tahoma,sans-serif;margin:30px 0}.compare_items .compare_items_table{overflow-x:auto}.compare_items .compare_items_table table th{text-align:center}.compare_items .compare_items_table table th .compare_one_item{position:relative;min-height:265px;min-width:155px;max-width:160px;margin:0 0 20px}.compare_items .compare_items_table table td{text-align:center;width:160px;margin:0 20px 0 0;padding:15px 10px;font:400 13px/16px Arial,Tahoma,sans-serif}.compare_items .compare_items_table table td.compare_item_property_name{font:700 13px/16px Arial,Tahoma,sans-serif}.compare_items .compare_items_table table th .compare_item_image img{-webkit-box-shadow:0 0 5px 0 rgba(50,50,50,.75);-moz-box-shadow:0 0 5px 0 rgba(50,50,50,.75);box-shadow:0 0 5px 0 rgba(50,50,50,.75);margin:10px 0 20px}.compare_items .compare_items_table table th .compare_item_delete a{background:url(../images/compare_item_del.jpg) no-repeat;width:17px;height:17px;margin:0 auto}.compare_items .compare_items_table table th .compare_item_delete a:hover{background:url(../images/compare_item_del_hover.jpg) no-repeat;width:17px;height:17px;margin:0 auto}.compare_items .compare_items_table table th .compare_item_title a{font:700 16px/18px Arial,Tahoma,sans-serif;color:#464646;text-decoration:none}.compare_items .compare_items_table table th .compare_item_price{font:400 13px/15px Arial,Tahoma,sans-serif;color:#f58025;margin:0 0 10px}.compare_items .compare_items_table table th .compare_item_price span{font:700 20px/22px Arial,Tahoma,sans-serif;color:#f58025}.partners{margin-bottom:60px}.partners h2{font:700 20px/24px Arial,Tahoma,sans-serif;margin:30px 0}.partners p.partners_name_title_dillers,.partners p.partners_name_title_internet_shops{font:700 16px/24px Arial,Tahoma,sans-serif}.partners p.partners_name_title_dillers{margin:30px 0 0}.partners ul.internet_shops_list{margin:0 0 0 20px;font:400 13px/20px Arial,Tahoma,sans-serif}.partners table tr.dillers_district{border-bottom:0}.partners table tr th{color:#7d7d7d;font:700 13px/16px Arial,Tahoma,sans-serif;padding:15px}.partners table tr.dillers_district td{background:#f5f5f5;text-transform:uppercase;font:700 13px/16px Arial,Tahoma,sans-serif}.partners table tr td{color:#616161;padding:15px}.error_404 .error_404_wrapper{width:540px;margin:100px auto}.error_404 .error_404_wrapper .error_404_wrapper_text{width:230px;margin:40px auto;text-align:center}.error_404 .error_404_wrapper .error_404_wrapper_text a{font-style:italic}#profiler{opacity:.9;filter:alpha(opacity=90);background-color:#dedede;background:-moz-linear-gradient(-90deg,#e8e8e8,#cbcbcb) #dedede;color:#333;font:400 12px/12px Georgia,Verdana,Arial,sans-serif;letter-spacing:normal;text-shadow:0 1px 0 rgba(255,255,255,.8);margin:0;padding:5px 15px;width:auto;position:fixed;bottom:0;right:0;text-align:right;z-index:99999}#profiler .warning{color:#c00}#profiler .profiler-sql-show{text-decoration:underline;cursor:pointer}#profiler-sql{display:none;text-align:left;margin:20px 0 0;padding:0;overflow-x:hidden;max-height:500px}#profiler-sql .profiler-sql-item{margin:0 0 15px;padding:0}#profiler-sql .profiler-sql-item .num{float:left;width:20px;margin:0;padding:0;font-weight:700}#profiler-sql .profiler-sql-item .query{float:left;width:750px;margin:0;padding:0 10px 0 0;font:400 10px/14px Monospace,'Courier New',sans-serif}#profiler-sql .profiler-sql-item .time{float:right;text-align:right;width:90px;margin:0;padding:0 10px 0 0;font-weight:700}.seo-h1{display:inline-block;width:240px;margin-bottom:10px;line-height:30px;font:700 16px/18px Arial,Tahoma,sans-serif;color:#4fa32c}#hypercomments_widget .hc .hc_menu{font-size:14px!important}.item_name_h1{line-height:25px}.nav_menu_main li:first-child{border-radius:5px 0 0 5px;-moz-border-radius:5px 0 0 5px;-webkit-border-radius:5px 0 0 5px}.nav_menu_main li:last-child{border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;-webkit-border-radius:0 5px 5px 0}.static_page_wrapper strong{font-weight:700}.video_play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.one_news_img,.one_post{position:relative}.partners_dealers{margin-top:25px}.question_mark{background:url(../images/question.png) no-repeat;background-size:cover;width:18px;height:18px;position:absolute;top:-3px;right:-25px}.new_customer .input_radio{position:relative;display:inline-block}.new_customer .input_radio .additional_info{background-color:#fff;border:1px solid #c6c6c6;border-radius:5px;right:-240px;position:absolute;top:-180px;width:400px;padding:10px;z-index:2;display:none;box-shadow:1px 1px 3px}.new_customer .input_radio .additional_info:hover{display:block}#delivery_in_ukraine{color:#a8a8a8}.no_marge{margin-top:0!important}.string_data{font-style:italic;font-weight:400}ul.prof_rubrics{list-style:none;margin-bottom:20px;padding:0}ul.prof_rubrics li{float:left}ul.prof_rubrics li a{float:left;color:#63ad3e;padding:10px}ul.prof_rubrics li a.active{color:#fff;background:#4fa22c;border-radius:5px;text-decoration:none}.min_price_message{font-size:16px;color:red!important;float:left;margin-left:20px}.popup_window_content .min_price_message{font-size:14px;color:red!important;float:left}.email-settings_title{width:100%;float:left;margin-top:15px;margin-bottom:40px}.email-settings_title:first-child{margin-top:0}.email-settings_title h3{font:700 16px/18px Arial,Tahoma,sans-serif;color:#4a4a4a}.blocks-otstup{height:40px}.blocks-p,.blocks-p a{height:26px;float:left}.ios{float:left}.blocks-p a{line-height:26px;text-decoration:none;margin-left:10px;color:#464646;font-family:Tahoma;font-size:14px}.blocks-p{width:320px;margin-top:15px}.group-email[type=radio]{display:none}.group-email[type=radio]+label{margin-left:5px;cursor:pointer;font-family:Tahoma;font-size:14px;color:#464646}.group-email[type=radio]+label span{width:12px;height:12px;background:url(../images/radio-settings-off.png) no-repeat;float:left;margin-top:3px;transition:.3s}.group-email[type=radio]:checked+label span{background:url(../images/radio-settings-on.png) no-repeat;transition:.3s}.settings-circle-wrap{float:left;height:179px;border-bottom:1px solid #cdcdcd;margin-top:20px}.settings-circle{width:230px;float:left;text-align:center}.settings-circle.circle-two{width:240px}.settings-circle-img{width:100%;height:80px;float:left;margin-bottom:20px}.settings-circle-img img{width:80px;height:80px}.settings-circle-text{width:100%;float:left;text-align:center}.settings-circle-text p{color:#464646;font-size:14px;font-family:calibri;font-style:italic;font-weight:400}.settings-circle-text span{font-weight:700;font-style:normal;font-size:16px}.settings-soc-wrap{width:100%;float:left;margin-top:60px}.settings-soc{width:50%;float:left;text-align:center}.settings-soc p{width:100%;float:left;color:#464646;font-size:16px;font-weight:700;font-family:calibri;margin-bottom:20px}.ios-ui-select{height:24px;-webkit-border-radius:18px;border-radius:18px;width:49px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;cursor:pointer;position:relative;display:inline-block;border:1px solid #cdcdcd;box-shadow:1px 2px 5px 0 rgba(204,204,204,.75) inset;float:left}.ios-ui-select.checked{border:1px solid #67b73e}.ios-ui-select.checked .inner{left:27px;background:url(../images/circle-settings.png) no-repeat;transition:.2s}.ios-ui-select .inner{width:18px;height:18px;position:absolute;top:3px;left:3px;background:url(../images/circle-settings-off.png) no-repeat;transition:.2s}.email-settings_02_1-title2{ont-family:Tahoma;font-size:16px;color:#464646;font-weight:700;margin-top:15px;margin-bottom:10px}.blocks-p-email-02-1{box-sizing:border-box;padding-left:20px}.email-settings_02_1-number-wr{box-sizing:border-box;padding-left:35px;font-family:Tahoma;font-size:14px;color:#464646}.email-buttons-1,.email-buttons-2{font-family:Tahoma;font-size:12px;display:block;line-height:26px;text-transform:uppercase;text-align:center;font-weight:700;text-decoration:none}.email-settings_02_1-input{height:20px;width:40px;border:1px solid #69b840;outline:0;transition:.3s;background:#d9edcf}.email-settings_02_1-input:focus{border:1px solid #589b35;background:#f1f1f1;transition:.3s}.email-settings_02_1-buttons-wr{margin-top:20px}.email-buttons-1{float:left;padding:0 19px;height:26px;color:#fff;border-radius:5px;border-top:2px solid #74ce45;background:#6ba94c;background:-moz-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#6ba94c),color-stop(50%,#6ba94c),color-stop(50%,#559336),color-stop(100%,#559336));background:-webkit-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-o-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:-ms-linear-gradient(top,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);background:linear-gradient(to bottom,#6ba94c 0,#6ba94c 50%,#559336 50%,#559336 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6ba94c', endColorstr='#559336', GradientType=0);margin-top:1px;box-shadow:0 2px 2px 0 rgba(0,0,0,.4)}.email-buttons-2-wr{width:166px;height:28px;float:left;transition:.4s;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee;border-bottom:1px solid #c2c2c2;border-radius:5px;box-shadow:0 2px 2px 0 rgba(0,0,0,.12);margin-left:20px}#email-buttons-sub,#email-buttons-sub2{border-bottom:0;border-left:0;border-right:0}.email-buttons-2{width:166px;height:26px;color:#9b9b9b;border-radius:5px;background:#f1f1f1;background:-moz-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f1f1f1),color-stop(50%,#f1f1f1),color-stop(50%,#e6e6e6),color-stop(100%,#e6e6e6));background:-webkit-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-o-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:-ms-linear-gradient(top,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);background:linear-gradient(to bottom,#f1f1f1 0,#f1f1f1 50%,#e6e6e6 50%,#e6e6e6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#e6e6e6', GradientType=0);transition:.6s;border-top:2px solid #fff;text-shadow:1px 1px 2px rgba(255,255,255,1)}.email-set-text p,.email-set-wont p{font-family:Tahoma;font-size:14px;color:#464646}.email-buttons-1:hover{background:#518e31}.email-buttons-2:hover{transition:.6s;background:#e8e8e8}.email-set-text{margin-top:20px}.email-set-soc{width:94px;height:36px;margin:0 auto;padding-top:20px}.email-set-wont-wr{width:700px;height:80px;margin-top:20px}.email-set-wont{width:213px;margin:0 auto}.email-set-wont p{float:left;line-height:34px;margin-right:20px}#email-buttons-1_1{float:right}.email-set-area{width:700px;float:left;display:none;margin-top:20px;transition:.4s}#email-set-area{width:564px;max-width:564px;height:80px;margin-left:50px;background:#d9edcf;border:1px solid #d9edcf;outline:0;box-sizing:border-box;padding:10px;transition:.3s}#email-set-area:focus{transition:.3s;background:#dadada;border:1px solid #dadada}#email-buttons-sub{height:28px;outline:0;margin:0 auto;float:none}#email-buttons-sub2{height:28px;outline:0}.em-sub{width:700px;height:28px;float:left;margin-top:20px}#form-checked-email-02-2{display:none}.subscription-wr-all{z-index:999;width:461px;min-height:287px;background:#fff;position:fixed;bottom:10px;right:20px;box-sizing:border-box;display:none;box-shadow:0 0 15px 0 rgba(0,0,0,.4);padding:15px 0}.subscription-wr{width:100%;height:100%;position:relative;float:left}.subscription-text{width:100%;float:left;text-align:center}.subscription-text p{line-height:15px;font-family:calibri;font-size:18px;font-weight:700;color:#333;padding:0 22px;margin-bottom:15px}.subscription-sale-wr{width:100%;float:left;border-bottom:1px dotted #363636}.sub-sale-blocks-img,.subscription-sale-blocks{width:151px;float:left}.sub-sale-blocks-img{height:49px;text-align:center}.sub-sale-blocks-img img{width:50px;height:49px}.sub-sale-blocks-img img:hover{opacity:70}.sub-sale-blocks-text{width:151px;float:left;height:49px;text-align:center}.sub-sale-blocks-text a{display:block;line-height:49px;text-decoration:none;color:#363636}.sub-sale-blocks-text p{height:49px;line-height:49px;text-decoration:none;font-family:calibri;color:#363636;font-size:13px}.sub-sale-forma-wr{width:453px;float:left}.sub-sale-forma-blocks-l,.sub-sale-forma-blocks-r{width:220px;float:left}[class*=sub-sale-forma-blocks] input{width:199px;height:30px;background:#d9edcf;outline:0;border:0;padding-left:10px;box-sizing:border-box;color:#363636}.sub-submit input,.sub-submit input:focus{border-top:2px solid #74ce45;border-bottom:0;border-right:0;border-left:0}.sub-sale-forma-blocks-l input{float:right}.sub-sale-forma-blocks-r input{float:left}.sub-sale-forma-blocks-c{width:12px;float:left;height:30px}[class*=sub-sale-forma-blocks-name]{height:30px;float:left;width:100%;line-height:30px;box-sizing:border-box;color:#363636;font-family:calibri;font-size:13px}.sub-sale-forma-blocks-name-first{padding-left:20px}.sub-submit{margin-top:16px;width:453px;height:28px;float:left;text-align:center}.sub-submit input{width:106px;height:26px;background:#70ae51;background:-moz-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#70ae51),color-stop(49%,#65a346),color-stop(50%,#5b983b),color-stop(100%,#4f8d30));background:-webkit-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-o-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:-ms-linear-gradient(top,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);background:linear-gradient(to bottom,#70ae51 0,#65a346 49%,#5b983b 50%,#4f8d30 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ae51', endColorstr='#4f8d30', GradientType=0);line-height:24px;color:#fff;text-transform:uppercase;font-size:12px;font-family:calibri;font-weight:700;cursor:pointer;border-radius:5px}.sub-submit input:focus{outline:0}.sub-text-footer{width:453px;float:left;text-align:center;height:30px;line-height:30px;color:#363636;font-size:13px;font-family:calibri}.sub-closed{width:8px;height:8px;position:absolute;cursor:pointer;top:10px;right:10px}.sub-closed img{width:8px;height:8px;float:left}.wrong{color:#b1292b}.normal{color:#68a548}.w25{width:25px}.w30{width:30px}.w35{width:35px}.w66{width:66px}.w75{width:75px}.w82{width:82px}.w85{width:85px}.w90{width:90px}.w100{width:100px}.w120{width:120px}.w147{width:147px}.w170{width:170px}.w184{width:184px}.w199{width:199px}.w200{width:200px}.w205{width:205px}.w210{width:210px}.w232{width:232.5px}.bold18{font-size:18px;font-weight:700}input[type=number]{background-color:#f5f5f5;width:29px;height:18px;padding:4px 6px;border:1px solid #e0e0e0;border-radius:4px;text-align:center;-moz-box-shadow:inset 2px 2px 8px #dfdfdf;-webkit-box-shadow:inset 2px 2px 8px #dfdfdf;box-shadow:inset 2px 2px 8px #dfdfdf}.clear{clear:both}.popup{font-family:Calibri,Tahoma,Arial,sans-serif;background-color:#d9dade;color:#333;position:fixed;z-index:99999;width:100%;height:100%;background-color:rgba(0,0,0,.7)}.popup_window{background-color:#fff;z-index:9999;margin-left:auto;margin-right:auto;min-width:300px;text-align:center;margin-top:7%;max-height:530px;position:relative;-moz-box-shadow:0 0 16px rgba(0,0,0,.7);-webkit-box-shadow:0 0 16px rgba(0,0,0,.7);box-shadow:0 0 16px rgba(0,0,0,.7)}.hidden_modal{display:none;}.popup_close_button{width:40px;height:40px;position:absolute;top:0;right:0;background:url(../images/close.png) center center no-repeat #f5f5f5;cursor:pointer}.align_bottom,.file_download_link_{position:relative}.popup_window_content{padding:40px}.summary_price{background-color:#f5f5f5;width:100%;text-align:right;color:#5c5c5c;font-weight:700;font-family:Calibri;padding-top:9px;padding-bottom:12px}.summary_price .price{font-weight:400;font-size:16px}.summary_price span{font-weight:700;font-size:22px}.summary_price .text{font-size:16px;padding-right:75px}.popup_footer{text-align:right;margin-top:42px;margin-bottom:-7px}.green_but2{background-color:#4fa32c;color:#fff;border-radius:3px;font-weight:700;text-decoration:none;font-size:13px;font-family:Calibri;padding:5px 13px 8px}.popup_window a{display:inline}#help,.cont_shop_but{font-size:13px;color:#555;padding-right:25px;padding-left:25px}h4{font-size:24px;color:#464646;text-align:left;margin:0;padding:0}.basket_block_header{display:table;border-bottom:1px solid #cdcdcd;line-height:1}.basket_block_header div{display:table-cell;vertical-align:bottom;font-size:16px;font-weight:700;font-family:Calibri;color:#7d7d7d;padding:15px 20px 12px}.basket_element_delete,.basket_element_delete a,.basket_element_name,.basket_element_prepack,.basket_element_priceall,.basket_element_pricenum,.basket_element_priceone{display:table-cell;vertical-align:middle}.basket_block_content{max-height:270px;width:940px}.basket_element_name{width:300px;text-align:left;padding:15px 10px 15px 15px}.basket_element{border-bottom:1px solid #cdcdcd;padding-left:5px}.basket_element:last-child{border:0}.picture_element{float:left;-moz-box-shadow:0 0 5px rgba(0,0,0,.7);-webkit-box-shadow:0 0 5px rgba(0,0,0,.7);box-shadow:0 0 5px rgba(0,0,0,.7);margin-right:15px}.title_element{font-weight:700;font-size:18px;padding:15px;line-height:1}.title_element .subtitle_element{font-size:13px;font-weight:400;margin-top:8px;opacity:0}.basket_element_prepack{width:195px;padding-right:18px;position:relative}.basket_element_priceone{padding-right:25px}.basket_element_pricenum{padding-right:20px;padding-left:10px}.basket_element_priceall{padding-left:30px}.basket_element_delete{padding-left:12px}.basket_element_delete a{background:url(../images/delete_grey.png);width:16px;height:16px;cursor:pointer}.basket_element_delete a:hover{background:url(../images/delete.png)}.basket_element_priceall .price span,.basket_element_priceone .price span{font-size:22px}.del_but_right{margin-right:-33px;float:right}.prepacks_table{display:table;vertical-align:bottom}.prepacks_table_cell{display:table-cell;line-height:.9;font-size:11px;width:20px;vertical-align:bottom;padding:3px}.prepacks_table_cell_elem{border:1px solid #e0e0e0;padding-left:5px;padding-right:5px;padding-bottom:3px;cursor:pointer;color:#5c5c5c}.prepacks_table_cell_elem:before{border:1px solid #e0e0e0;width:15px;height:1px;display:-webkit-inline-box;border-radius:1px}.prepacks_table_cell_elem.min{width:17px;padding-top:2px}.prepacks_table_cell_elem.two{width:22px;padding-top:4px}.prepacks_table_cell_elem.premax{width:23px;padding-top:4px}.prepacks_table_cell_elem.max{width:27px;padding-top:4px}.prepacks_table_cell_elem.min:before{margin-bottom:3px}.prepacks_table_cell_elem.two:before{margin-bottom:6px}.prepacks_table_cell_elem.premax:before{margin-bottom:10px}.prepacks_table_cell_elem.max:before{margin-bottom:5px}.prepacks_table_cell_elem.actived,.prepacks_table_cell_elem.actived:before{border:1px solid #4fa32c}.items .one_item .one_item_buttons a{display:inline;margin:3px}.compare_items_table .compare_one_item .one_item_buttons,.items .one_item .one_item_buttons{width:120%;margin-top:15px;margin-bottom:15px;margin-left:-10px}.questions_ li,.style{width:100%;float:left}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.faq a,.file_download_link_ a{position:absolute;top:32px;padding:10px 10px 10px 22px;margin-left:23px;z-index:3;font-style:italic}.file_download_link_ a{right:16px;background:url(../images/icon_catalog_18x18_01.png) 0 50% no-repeat}.faq a{left:0;background:url(../images/icon_faq_18x18_01.png) 0 50% no-repeat}.questions_ li{border-bottom:1px solid #c4c4c4;min-height:58px;height:58px;position:relative}.questions_ li.active{height:auto}.questions_ li span.nav{width:18px;height:18px;border-radius:100%;text-align:center;line-height:18px;color:#fff;font-style:italic;font-weight:700;background:#f58025;display:block;float:left;font-size:12px;position:absolute;top:20px;left:0}.questions_a{float:left;margin-left:25px;position:relative;margin-top:22px;height:15px;width:935px;white-space:nowrap;overflow:hidden}.questions_a.long_:before{width:50px;height:58px;top:-22px;right:0;position:absolute;z-index:2;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1)}.questions_ li a{float:left;font-size:15px;color:#464646;font-weight:700;text-decoration:none;border-bottom:1px dashed #464646;position:relative}.questions_ li a:hover,.questions_ li.active a{color:#55a727;border-bottom:1px dashed #55a727}.questions_ li.active a{cursor:default}.questions_answer{background:#f5f5f5;padding:15px 17px;box-sizing:border-box;position:relative;border-radius:4px;margin-top:16px;font-size:13px;color:#464646;line-height:18px}.questions_answer:before{position:absolute;top:-10px;left:40px;background:url(../images/question_arrow.png) no-repeat;width:12px;height:10px}.questions_answer span{font-weight:700}.questions_img img{margin-left:17px}.questions_hide{display:none}.questions_ li.active .questions_hide{display:block}.questions_answer a{color:inherit!important;font-size:inherit!important;border-bottom:0!important;cursor:pointer!important;text-decoration:underline!important;margin-left:0!important;margin-top:0!important;float:none!important;display:inline-block}.questions_answer p{width:100%;float:left;margin-top:6px}.questions_answer p:first-child{margin-top:0}.questions_answer a:hover{color:#f58025!important}.title_new{width:935px;position:absolute;top:50px;right:0;background:#fff;white-space:normal;z-index:3;font-size:15px;padding:10px;box-shadow:0 0 5px 0 rgba(149,149,149,.75);box-sizing:border-box;line-height:18px}.pic_wr_{margin-top:35px}.pic_wr_:last-child{margin-bottom:35px}.pic_txt{width:99px;float:left;font-size:13px;font-weight:700;font-style:italic;padding-top:15px}.pic_img{width:861px;float:left}.pic_img img{max-width:100%;height:auto}.questions_img{padding-bottom:20px}.title_questions_{font-weight:700;color:#464646;font-size:22px;text-align:center;height:54px;line-height:79px}.not_availiable{position:absolute;width:100%;height:100%;background-color:rgba(0,0,0,.15);background-position:-1px 0}.not_availiable.rus{background-image:url(/images/asd_ru_01.png)}.not_availiable.ukr{background-image:url(/images/asd_ua_01.png)}.video_posts.float.last{position:relative;transition:.5s;margin-bottom:30px}.video_posts.float.last.small{height:400px;overflow:hidden;margin-bottom:0!important}.video_posts.float.last .white_list{z-index:1;position:absolute;width:100%;left:0;bottom:50px;height:50px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='#ffffff');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = 'transparent', endColorstr = '#ffffff')";background-image:-moz-linear-gradient(top,transparent,#fff);background-image:-ms-linear-gradient(top,transparent,#fff);background-image:-o-linear-gradient(top,transparent,#fff);background-image:-webkit-gradient(linear,center top,center bottom,from(transparent),to(#fff));background-image:-webkit-linear-gradient(top,transparent,#fff);background-image:linear-gradient(top,transparent,#fff);transition:.3s}.video_posts.float.last.small .open_list_btn{bottom:0!important}.video_posts .close_list_btn,.video_posts .open_list_btn{position:absolute;bottom:-50px;width:100%;text-align:center;z-index:2;font-weight:700;padding:11px 0 20px;font-size:16px;color:gray;background-color:#fff;cursor:pointer}#content_nav .inner{box-sizing:border-box}#content_nav .content_nav_first_floor{padding:0!important;margin:0!important}#content_nav .content_nav_first_floor.clearfix{padding:0;width:25%;box-sizing:border-box;text-align:center;margin:15px 0;float:left;border:0}#content_nav .content_nav_items{display:none}#content_nav .content_nav_first_floor .content_nav_logo{width:100%!important;margin:25px 0!important;padding:0!important;height:140px!important}#content_nav .content_nav_second_floor .float{padding:0!important;width:25%;box-sizing:border-box;text-align:center;margin:25px 0;height:140px}.stock_items{padding-top:25px}.catalog_slider .catalog_description.logo543{background:#5b4a42}.catalog_description.logo320{background-color:#00a3de}h2.types_logo_320{color:#00a3de}h2.types_logo_543{color:#5b4a42}.delivery-form-par{position:fixed;z-index:99991;top:0;background-color:rgba(255,255,255,.75);width:100%;height:100%;display:none;transition:.3s}.delivery-form-par .close-white{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.delivery-form-par .popup-main-delivery{width:843px;height:400px;box-shadow:0 0 50px rgba(0,0,0,.4);background-image:url(../images/right_deliver.png);background-size:contain;background-position:right center;background-repeat:no-repeat;background-color:#fdfaf1;position:absolute;font-family:Ubuntu;font-weight:400;left:calc(50% - 421.5px);top:15%}.delivery-form-par .content-popup .text-up{width:100%;max-width:332px;border-bottom:1px solid #6cb33f;color:#42210b;text-align:center;font-size:18px;padding-top:19px;line-height:22px;padding-bottom:4px}.delivery-form-par .content-popup .text-down{width:100%;max-width:332px}.delivery-form-par .text-down .up-text{color:#42210b;font-size:13.5px;text-align:center;width:100%;padding-top:23px;padding-bottom:8px}.delivery-form-par .text-down .footer-text{color:#333;font-style:italic;text-align:center;font-family:Ubuntu;padding-top:24px;width:100%;font-size:11px}.delivery-form-par .submit-delivery-but{font-size:15px;color:#fff;border:0;background-color:#6cb33f;text-transform:lowercase;width:80px;height:25px;outline:0;cursor:pointer}.delivery-form-par .text-up p span{color:#f15a24;font-size:28.58px}.delivery-form-par .content-popup{transition:.3s;padding:38px;width:100%;height:100%;min-height:400px;max-width:480px;box-sizing:border-box;background-image:url(../images/grad_popup.png);background-position:left center;background-repeat:no-repeat}.delivery-form-par .text-down input{height:23px;width:104px;border:1px solid #6cb33f;font-size:13px;padding-left:12px;outline:0}.delivery-form-par .deliver-form{display:flex;justify-content:space-between;width:100%px}.open-delivery-modal div,.open-delivery-modal div img{width:100%;max-width:360px}body{font-family:Calibri,Candara,Segoe,'Segoe UI',Optima,Arial,sans-serif}.open-delivery-modal{opacity:1;cursor:pointer;position:fixed;top:calc(50% - 80px);left:0;font-size:24px;z-index:10000}.open-delivery-modal div{text-align:center;margin:0 auto;position:relative}.close-popup,.modal_close{position:absolute;background-position:center center;background-repeat:no-repeat;border-radius:50%}.modal_close{top:23px;right:10px;width:15px;height:15px;background-image:url(../images/close_popup.png);box-shadow:0 1px 3px -1px rgba(0,0,0,.4);cursor:default}.close-popup{width:19px;height:19px;background-image:url(/images/icon_close2.png);top:12px;right:12px;cursor:pointer}.popup_full{display:block}.popup_mobile{display:none}@media(max-width:880px){.delivery-form-par .popup-main-delivery{width:96%;left:2%}.open-delivery-modal{top:initial;bottom:0;width:100%;box-shadow:inset 0 -250px 125px -250px #000}.popup_full{display:none}.popup_mobile{display:block}}@media(max-width:480px){.delivery-form-par .content-popup{padding:25px}.delivery-form-par .popup-main-delivery{background-image:none;height:initial;top:10%}.delivery-form-par .deliver-form{justify-content:center;align-items:center;flex-direction:column}.delivery-form-par .text-down input{margin-bottom:5px}.delivery-form-par .submit-delivery-but{margin-top:5px}.delivery-form-par .content-popup .text-down,.delivery-form-par .content-popup .text-up{max-width:100%}}.content_blog .text_posts .one_post .one_post_image{position:relative;width:auto}
3 3 \ No newline at end of file
... ...
www/images/icon_close2.png 0 → 100644

17.9 KB

www/images/right_deliver.png

233 KB | W: | H:

277 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
www/index.php
... ... @@ -831,6 +831,16 @@ try
831 831 ->setName( 'get_offices' );
832 832  
833 833 $router->add
  834 + (
  835 + '/popup{language:([/][a-z]{2})?}',
  836 + [
  837 + 'controller' => 'menu',
  838 + 'action' => 'popup',
  839 + ]
  840 + )
  841 + ->setName( 'callback' );
  842 +
  843 + $router->add
834 844 (
835 845 '/ajax/get_items{language:([/][a-z]{2})?}',
836 846 [
... ...