Commit 690dda97eb053ce8bda054bb02f055dcb8e426b1

Authored by Eugeny Galkovskiy
2 parents 747728c6 17725be7

Merge branch 'popup' of gitlab.artweb.com.ua:Alex/semena

# Conflicts:
#	www/css/main.min.css
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['name'] ) && !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("Заполните все поля");
  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/views/index.php
... ... @@ -219,12 +219,11 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
219 219 <?php endforeach ?>
220 220 </ul>
221 221 </div>
  222 + <div id="flash_output"><?= $this->flash->output(); ?></div>
222 223 </div>
223 224 </div>
224 225  
225   - <?php
226   - echo $this->getContent();
227   - ?>
  226 + <?= $this->getContent(); ?>
228 227  
229 228 </div>
230 229 <div id="footer">
... ... @@ -255,7 +254,7 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
255 254 </div>
256 255 <div class="text-down">
257 256 <p class="up-text"><?= $t->_("popup-main2")?></p>
258   - <form method="post" class="deliver-form">
  257 + <form method="post" class="deliver-form" action="./popup/">
259 258 <input type="text" name="username" placeholder="<?= $t->_("popup-main3")?>">
260 259 <input type="email" name="email" placeholder="Email">
261 260 <button type="submit" class="submit-delivery-but"><?= $t->_("popup-main4")?></button>
... ... @@ -266,6 +265,37 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
266 265 </div>
267 266 </div>
268 267  
  268 +<script>
  269 + $(document).ready(function(){
  270 + function getCookie(a) {
  271 + var b = new RegExp(a+'=([^;]){1,}');
  272 + var c = b.exec(document.cookie);
  273 + if(c) c = c[0].split('=');
  274 + else return false;
  275 + return c[1] ? c[1] : false;
  276 + }
  277 + var cookie = getCookie('popup');
  278 + if (cookie !== '1') {
  279 + setTimeout(function(){$(".open-delivery-modal").show();},1000);
  280 + }
  281 + else {
  282 + $(".open-delivery-modal").hide();
  283 + }
  284 + });
  285 + $(".open-delivery-modal div img").click(function(){
  286 + $(".delivery-form-par").show();
  287 + $(".delivery-form-par").animate({opacity: "1"}, 500, function() {});
  288 + $(".delivery-form-par .popup-main-delivery").animate({opacity: "1",top: "15%"}, 300, function() {});
  289 + });
  290 + $(".delivery-form-par .close-white").click(function(){
  291 + $(".delivery-form-par .popup-main-delivery").animate({opacity: "0",top: "-50%"}, 300, function() {});
  292 + $(".delivery-form-par").animate({opacity: "0"}, 500, function() {});
  293 + setTimeout(function(){$(".delivery-form-par").hide();}, 600);
  294 + });
  295 + $(".modal_close").click(function(){
  296 + $(".open-delivery-modal").hide();
  297 + });
  298 +</script>
269 299 <?php
270 300 if( !IS_PRODUCTION )
271 301 {
... ... @@ -379,4 +409,4 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
379 409 <?php endif; ?>
380 410 <!--end float block-->
381 411 </body>
382   -</html>
383 412 \ No newline at end of file
  413 +</html>
... ...
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
... ... @@ -2617,6 +2617,9 @@ label.error {
2617 2617 font-size: 14px;
2618 2618 display: block
2619 2619 }
  2620 +#flash_output div {
  2621 + margin: 30px 0 20px 0;
  2622 +}
2620 2623  
2621 2624 .successMessage a,.errorMessage a,.noticeMessage a {
2622 2625 color: #fff;
... ...
www/css/main.min.css
1   -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}.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)}.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}.hidden_modal{display:none;}
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)}.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/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 [
... ...