Categories

Новые шаблоны

Magento. Как отключить Корзину на мобильных устройствах

Andre Flores Март 30, 2016
Rating: 5.0/5. From 2 votes.
Please wait...

Добрый день! Из этого туториала Вы узнаете, как отключить Корзину на мобильных устройствах в шаблонах Magento.

Magento. Как отключить Корзину на мобильных устройствах

Возможно, Вы хотите удалить Корзину с мобильной версии вашего интернет-магазина Magento, потому что она занимает много места или просто Вам не нравится:

magento_disable_mobile_cart_1

Давайте узнаем, как от неё избавиться.

  1. Используя Total Commander или любой другой файловый менеджер, воспользуйтесь командой Поиск, для того чтобы найти файл, который содержит класс «header-minicart» — в нашем случае, это файл header.phtml в папке /app/design/frontend/tm_themes/themeXXX/template/page/html/ (где XXX — это номер вашего шаблона).

  2. Откройте файл для редактирования и найдите следующий фрагмент кода:

1
2
3
4
5
<div class="header-minicart">
<!--?php
echo $this--->getChildHtml('minicart_head');
?>
</div>

Отключите комментированием этот фрагмент кода. Вы получите следующий результат:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
    <!--<div class="header-minicart">
    <?php
    echo $this->getChildHtml('minicart_head');
    ?>
    </div>->
</pre>
<p>Сохраните файл и обновите страницу для просмотра изменений.</p>
<p>Вы можете убедиться, что <strong>Корзина</strong> была успешно удалена с мобильной версии вашего магазина:</p>
 
<a href="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_2.png"><img alt="magento_disable_mobile_cart_2" class="aligncenter size-medium wp-image-67595" height="235" loading="lazy" sizes="(max-width: 300px) 100vw, 300px" src="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_2-300x235.png" srcset="http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_2-300x235.png 300w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_2-150x117.png 150w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_2.png 768w" width="300"/></a>
<p>Давайте теперь «растянем» три кнопки на всё ширину мобильного меню, чтобы оно выглядело привлекательно.</p>
<p>Используйте расширение <strong>Firebug</strong> для Firefox или <strong>Инструмент разработчика</strong> вашего любимого браузера, для того чтобы найти правило CSS, в которое нужно внести изменения.</p>
<p>Вы можете найти нужный код в файле <strong>styles.css</strong> на строке <strong>15107</strong>:</p>
 
<a href="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_3.png"><img alt="magento_disable_mobile_cart_3" class="aligncenter size-medium wp-image-67597" height="182" loading="lazy" sizes="(max-width: 300px) 100vw, 300px" src="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_3-300x182.png" srcset="http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_3-300x182.png 300w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_3-150x91.png 150w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_3.png 988w" width="300"/></a>
<p>Откройте файл для редактирования и измените значение <strong>ширины</strong> на <strong>33.335%</strong>.</p>
<p>Сохраните файл для того чтобы сохранить изменения. Вернитесь на ваш сайт и обновите страницу для просмотра изменений.</p>
<p>Вы можете убедиться, что теперь мобильное меню выглядит привлекательно:</p>
 
<a href="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_4.png"><img alt="magento_disable_mobile_cart_4" class="aligncenter size-medium wp-image-67599" height="182" loading="lazy" sizes="(max-width: 300px) 100vw, 300px" src="/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_4-300x182.png" srcset="http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_4-300x182.png 300w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_4-150x91.png 150w, http://91zv.5dexam.com/help/wp-content/uploads/2016/03/magento_disable_mobile_cart_4.png 990w" width="300"/></a>
<p>Это конец данного туториала. Теперь Вы знаете, как <strong>отключить Корзину</strong> на <strong>мобильных устройствах</strong> в вашем шаблоне Magento.</p>
 
<p>Вы можете также ознакомиться с детальным видео-туториалом ниже:</p>
 
<a href="http://www.youtube.com/watch?v=YX_lE2FY4Es?width=1280&height=720" rel="prettyPhoto">Magento. Как отключить Корзину на мобильных устройствах</a>                        </div>
 
                        <div class="bottom_banner">
                             
 
 
<a href="http://91zv.5dexam.com/ru/magento-themes-type/" title="Шаблоны Magento"><img alt="Темы для Magento" class="attachment-full wp-post-image" height="100" id="tmhelpbanner-magento-ru" src="http://91zv.5dexam.com/help/wp-content/uploads/2016/02/magento-themes-ru.jpg" title="Темы Magento" width="835"/></a>
 
 
 
 
                        </div>
 
                        <div class="tags_info">
                            Эта запись была размещена в <a href="http://91zv.5dexam.com/help/ru/ecommerce/magento/magento-tutorials/" rel="category tag">Magento туториалы</a> и помечена как <a href="http://91zv.5dexam.com/help/ru/tag/cart/" rel="tag nofollow">cart</a>, <a href="http://91zv.5dexam.com/help/ru/tag/device/" rel="tag nofollow">device</a>, <a href="http://7v5l.5dexam.com/" rel="tag nofollow">disable</a>, <a href="http://91zv.5dexam.com/help/ru/tag/magento/" rel="tag nofollow">Magento</a>, <a href="http://91zv.5dexam.com/help/ru/tag/mobile/" rel="tag nofollow">mobile</a>. Добавьте в закладки <a href="http://xiom.5dexam.com/" rel="bookmark" title="Ссылка на Magento. Как отключить Корзину на мобильных устройствах">постоянную ссылку</a>.                     </div>
 
                         
                                        <div class="related_posts clearfix">
                                            <h3>Похожие записи</h3>
                         
                                <div class="item">
                                    <a href="http://91zv.5dexam.com/help/ru/how-install-magento-theme.html" title="Magento. Как установить шаблон">
                                        Magento. Как установить шаблон                                  </a>
                                    <div class="date">
                                        <svg fill="none" height="25" viewBox="0 0 25 25" width="25" xmlns="http://www.w3.org/2000/svg">
                                        <path d="M21.0005 10.5004V3.00037H17.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M5.00049 3.00037H1.00049V19.0004H10.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M5.00049 5.00037H8.00049V1.00037H5.00049V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M14.0005 5.00037H17.0005V1.00037H14.0005V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M8.00049 3.00037H14.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M1.00049 8.00037H21.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M24.0005 18.0004C24.0005 21.3134 21.3145 24.0004 18.0005 24.0004C14.6865 24.0004 12.0005 21.3134 12.0005 18.0004C12.0005 14.6874 14.6865 12.0004 18.0005 12.0004C21.3145 12.0004 24.0005 14.6874 24.0005 18.0004V18.0004Z" fill-rule="evenodd" stroke="black" stroke-linejoin="round"></path>
                                        <path d="M20.5005 19.0004H18.0005V15.5004" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        </svg>
                                        Январь 27, 2020                                 </div>
                                    <div class="excerpt">
                                        <p>Из этого туториала Вы узнаете, как установить шаблон для интернет-магазина Magento.</p>
                                    </div>
                                </div>
                         
                                <div class="item">
                                    <a href="http://91zv.5dexam.com/help/ru/how-to-deactivate-all-plugins-when-not-able-to-access-wordpress-dashboard.html" title="How to deactivate all plugins when not able to access WordPress dashboard">
                                        How to deactivate all plugins when not able to access WordPress dashboard                                   </a>
                                    <div class="date">
                                        <svg fill="none" height="25" viewBox="0 0 25 25" width="25" xmlns="http://www.w3.org/2000/svg">
                                        <path d="M21.0005 10.5004V3.00037H17.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M5.00049 3.00037H1.00049V19.0004H10.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M5.00049 5.00037H8.00049V1.00037H5.00049V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M14.0005 5.00037H17.0005V1.00037H14.0005V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M8.00049 3.00037H14.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M1.00049 8.00037H21.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M24.0005 18.0004C24.0005 21.3134 21.3145 24.0004 18.0005 24.0004C14.6865 24.0004 12.0005 21.3134 12.0005 18.0004C12.0005 14.6874 14.6865 12.0004 18.0005 12.0004C21.3145 12.0004 24.0005 14.6874 24.0005 18.0004V18.0004Z" fill-rule="evenodd" stroke="black" stroke-linejoin="round"></path>
                                        <path d="M20.5005 19.0004H18.0005V15.5004" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        </svg>
                                        Февраль 1, 2018                                 </div>
                                    <div class="excerpt">
                                        <p>Hello, our team is ready to present you a new tutorial that shows how to deactivate all plugins when not able to access WordPress dashboard</p>
                                    </div>
                                </div>
                         
                                <div class="item">
                                    <a href="http://91zv.5dexam.com/help/ru/magento-change-products-search-results-page-layout-gridlist.html" title="Magento. Как изменить макет страницы результатов поиска (сетка/список)">
                                        Magento. Как изменить макет страницы результатов поиска (сетка/список)                                  </a>
                                    <div class="date">
                                        <svg fill="none" height="25" viewBox="0 0 25 25" width="25" xmlns="http://www.w3.org/2000/svg">
                                        <path d="M21.0005 10.5004V3.00037H17.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M5.00049 3.00037H1.00049V19.0004H10.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M5.00049 5.00037H8.00049V1.00037H5.00049V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M14.0005 5.00037H17.0005V1.00037H14.0005V5.00037Z" fill-rule="evenodd" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M8.00049 3.00037H14.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path d="M1.00049 8.00037H21.0005" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        <path clip-rule="evenodd" d="M24.0005 18.0004C24.0005 21.3134 21.3145 24.0004 18.0005 24.0004C14.6865 24.0004 12.0005 21.3134 12.0005 18.0004C12.0005 14.6874 14.6865 12.0004 18.0005 12.0004C21.3145 12.0004 24.0005 14.6874 24.0005 18.0004V18.0004Z" fill-rule="evenodd" stroke="black" stroke-linejoin="round"></path>
                                        <path d="M20.5005 19.0004H18.0005V15.5004" stroke="black" stroke-linecap="round" stroke-linejoin="round"></path>
                                        </svg>
                                        Май 24, 2017                                    </div>
                                    <div class="excerpt">
                                        <p>Из этого туториала Вы узнаете, как изменить макет (с сетки на список) на Страницах результатов поиска в вашем магазине Magento.</p>
                                    </div>
                                </div>
                        </div>
                        <div class="tickets">
                            <div class="widget-container widget_text" id="text-3"><h3 style="display:none">Submit a ticket</h3>         <div class="textwidget"><p class="tickets"> Если вы не смогли найти подходящее решение проблемы, пожалуйста воспользуйтесь следующей ссылкой, чтобы отправить запрос команде технической поддержки.<br/>
<a href="http://support.template-help.com/index.php?/Tickets/Submit">Отправить запрос</a>Вы получите ответ в течение 24 часов</p>
</div>
        </div>                      </div>
 
                        <div class="disqus_block">
                             
<div id="disqus_thread">
    </div>
 
<script type="text/javascript">
var disqus_identifier = '67593 http://91zv.5dexam.com/help/?p=67593';
var disqus_container_id = 'disqus_thread';
var disqus_shortname = 'tm-help';
var disqus_title = "Magento. Как отключить Корзину на мобильных устройствах";
var disqus_config_custom = window.disqus_config;
var disqus_config = function () {
    /*
    All currently supported events:
    onReady: fires when everything is ready,
    onNewComment: fires when a new comment is posted,
    onIdentify: fires when user is authenticated
    */
     
    this.page.remote_auth_s3 = 'W10= 4f217910f9b1854e6aff3670080e901ab2a4e687 1743467955';
this.page.api_key = 'dbuX1in2VVlHDqQyWtiKlCtNyyOP5BiR5DXH8M0IHZFqLJFfeW9Omg4ZW8KQArrW';
this.sso = {
          name: "Центр Поддержки Templateog体育首页",
          button: "",
          url: "http://91zv.5dexam.com/help/wp-login.php",
          width: "800",
          height: "700"
    };
    this.language = '';
     
    if (disqus_config_custom) {
        disqus_config_custom.call(this);
    }
};
 
(function() {
    var dsq = document.createElement('script'); dsq.type = 'text/javascript';
    dsq.async = true;
    dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
 
                        </div>
 
                                    </div>
 
            </div>
        </div>
    </div>
 
<footer class="footer">
    <div class="center">
        <div class="footer__top">
            <div class="logo">
                <a href="/help/ru">
                    <svg style="fill: black;enable-background:new 0 0 322.9 67.4;" version="1.1" viewBox="0 0 322.9 67.4" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
                        <g class="logost0" id="og体育首页_1_" style="
    fill: black;
">
                            <g id="og体育首页">
                                <g>
                                    <path class="logost1" d="M122.2,29.7L121,33h-0.2l-1.3-3.2L112,16.9h-5v28.1h5.2V30.4l-0.8-5.5h0.2l1.8,4.5l6.3,10.5h1.8l6-10.5     l1.7-4.5h0.2l-0.6,5.6v14.6h5.5V16.9h-5L122.2,29.7z M154.8,27.3c-0.8-0.9-1.8-1.6-2.9-2.1c-1.2-0.5-2.6-0.8-4.2-0.8     c-3,0-5.3,0.9-7,2.8c-1.7,1.8-2.5,4.5-2.5,7.9c0,1.6,0.2,3,0.6,4.3c0.4,1.3,1,2.4,1.8,3.4c0.8,0.9,1.8,1.6,3,2.1     c1.2,0.5,2.6,0.8,4.2,0.8c3,0,5.3-0.9,7-2.8c1.6-1.8,2.5-4.5,2.5-7.9c0-1.6-0.2-3-0.6-4.3C156.2,29.4,155.6,28.2,154.8,27.3z      M150.7,39.7c-0.7,1-1.7,1.5-3.1,1.5c-0.7,0-1.3-0.2-1.9-0.5c-0.5-0.3-0.9-0.7-1.3-1.3c-0.3-0.6-0.6-1.2-0.7-2     c-0.2-0.7-0.2-1.6-0.2-2.5c0-2.2,0.4-3.8,1.1-4.7c0.7-1,1.7-1.4,3-1.4c1.5,0,2.5,0.6,3.1,1.7c0.6,1.1,0.9,2.6,0.9,4.5     C151.7,37.2,151.4,38.7,150.7,39.7z M176.8,26.1c-0.5-0.6-1.2-1.1-2-1.3c-0.8-0.3-1.7-0.4-2.7-0.4c-1.6,0-2.9,0.3-3.9,1     c-1,0.6-1.8,1.4-2.4,2.2h-0.2l-0.6-2.7h-4.1v20.1h5.2V32c0.3-0.9,0.8-1.6,1.5-2.1c0.7-0.6,1.5-0.9,2.5-0.9c1.1,0,1.9,0.4,2.4,1.1     c0.5,0.7,0.7,1.9,0.7,3.5v11.4h5.2V32.6c0-1.6-0.1-2.9-0.4-3.9C177.8,27.6,177.4,26.8,176.8,26.1z M194.2,34.4     c-0.7-0.5-1.4-0.8-2.2-1.1c-0.8-0.3-1.5-0.6-2.2-0.8c-0.7-0.3-1.2-0.5-1.7-0.8c-0.5-0.3-0.7-0.7-0.7-1.2c0-1.2,0.8-1.8,2.3-1.8     c1,0,1.9,0.1,2.9,0.4c0.9,0.3,1.7,0.5,2.3,0.8l1.2-3.8c-0.7-0.4-1.7-0.8-2.9-1.1c-1.2-0.3-2.6-0.5-4.1-0.5     c-2.2,0-3.9,0.5-5.1,1.6c-1.2,1-1.8,2.6-1.8,4.5c0,1.2,0.2,2.2,0.7,3c0.5,0.8,1,1.4,1.7,1.9c0.7,0.5,1.4,0.9,2.2,1.2     c0.8,0.3,1.5,0.6,2.2,0.8c0.7,0.3,1.2,0.6,1.7,0.9c0.5,0.3,0.7,0.8,0.7,1.3c0,0.7-0.2,1.2-0.7,1.5c-0.5,0.3-1.1,0.4-1.9,0.4     c-1.1,0-2.1-0.2-3.1-0.5c-1-0.3-1.8-0.7-2.4-1l-1.4,3.9c0.8,0.5,1.8,0.9,3,1.3c1.2,0.4,2.6,0.5,4,0.5c2.6,0,4.5-0.6,5.8-1.7     c1.3-1.2,1.9-2.8,1.9-4.8c0-1.2-0.2-2.1-0.7-2.9C195.4,35.4,194.9,34.8,194.2,34.4z M209.5,40.8c-0.4,0.1-0.9,0.2-1.4,0.2     c-0.8,0-1.3-0.3-1.6-0.9c-0.3-0.6-0.4-1.6-0.4-3v-7.7h4.9V25h-4.9v-5.3l-5.2,1.5V25h-2.8v4.4h2.8v10.1c0,2.2,0.4,3.7,1.3,4.7     c0.9,1,2.2,1.4,4.1,1.4c1,0,2-0.1,2.9-0.4c1-0.2,1.8-0.5,2.5-0.9l-0.9-4C210.3,40.6,209.9,40.7,209.5,40.8z M228.4,26.1     c-0.7-0.6-1.6-1.1-2.6-1.3c-1-0.3-2-0.4-3-0.4c-3.1,0-5.4,0.9-7.1,2.7c-1.7,1.8-2.5,4.4-2.5,8c0,3.3,0.7,5.9,2.2,7.8     c1.5,1.9,3.9,2.8,7.1,2.8c1.6,0,3-0.2,4.4-0.7c1.4-0.4,2.5-1,3.3-1.6l-1.7-3.4c-0.5,0.3-1.1,0.7-2,1c-0.9,0.3-1.9,0.5-3,0.5     c-1.8,0-3-0.4-3.8-1.3c-0.8-0.9-1.2-2.1-1.3-3.8h12c0.1-0.7,0.2-1.4,0.3-2c0.1-0.6,0.1-1.2,0.1-1.8c0-1.6-0.2-2.9-0.7-3.9     C229.8,27.6,229.2,26.8,228.4,26.1z M226,33.1h-7.5c0.1-1.4,0.5-2.5,1.2-3.3c0.7-0.8,1.7-1.2,3-1.2c1.2,0,2,0.4,2.6,1.2     C225.9,30.5,226.1,31.6,226,33.1z M244.2,24.5c-1,0-2,0.3-2.7,0.8c-0.8,0.5-1.4,1.3-1.8,2.3h-0.2l-0.6-2.7h-4.1v20.1h5.2v-13     c0.2-0.8,0.6-1.4,1.3-1.9c0.6-0.5,1.4-0.7,2.3-0.7c0.7,0,1.4,0.1,2.2,0.4l0.7-4.9C245.7,24.7,244.9,24.5,244.2,24.5z"></path>
                                </g>
                            </g>
                            <g id="Mark">
                                <path class="logost2" d="M43.8,41c-7.4,0-13.5-5.8-14-13.1c1.5,0.3,3.1,0.6,4.7,0.9c0.8,4.4,4.7,7.7,9.3,7.7    c1,0,1.9-0.1,2.8-0.4l-0.3-6.2l4.8,3.3c1-1.2,1.8-2.7,2.1-4.4c1.6-0.2,3.1-0.5,4.7-0.9C57.3,35.2,51.3,41,43.8,41L43.8,41L43.8,41    z M62.4,21.9L62.4,21.9c-0.2,0.1-0.4,0.1-0.6,0.2c-1.4,0.5-2.9,0.9-4.4,1.2c-1.5,0.3-3,0.6-4.5,0.9c-2.9,0.4-6,0.7-9,0.7    c-3.1,0-6.1-0.2-9-0.7c-1.5-0.2-3-0.5-4.5-0.9c-1.5-0.3-3-0.7-4.4-1.2c-0.2-0.1-0.4-0.1-0.6-0.2h0c0,0,0,5,0,5.1    c0,10.2,8.3,18.5,18.5,18.5c10.2,0,18.5-8.3,18.5-18.5V21.9L62.4,21.9z" id="Fill-1"></path>
                                <path class="logost2" d="M75,49.9l-9.1-6.4l0.7,13c-6.6,4-14.4,6.4-22.8,6.4c-8.3,0-16.1-2.3-22.8-6.4l0.7-13l-9.1,6.4    C9.5,46.7,6.9,43,4.8,39c0.5-2,1.2-4,2-5.9c0.7-1.8,1.6-3.4,2.6-5.1c-0.8-1.7-1.4-3.5-1.9-5.4c-0.8-3.1-1.3-6.4-1.3-9.8    c0-1.8,0.1-3.6,0.4-5.3l13.1,9.1c1.3-1,2.7-1.9,4.1-2.7c5.9-3.5,12.8-5.4,20.2-5.4c7.4,0,14.3,2,20.2,5.4c1.4,0.8,2.8,1.7,4.1,2.7    l13.1-9.1c0.2,1.7,0.4,3.5,0.4,5.3c0,3.4-0.5,6.7-1.3,9.8c-0.5,1.9-1.1,3.7-1.9,5.4c1,1.6,1.8,3.3,2.6,5.1c0.8,1.9,1.4,3.8,2,5.9    C80.8,43,78.2,46.7,75,49.9 M85.6,32.5c-0.6-1.6-1.4-3.2-2.2-4.7c1.7-4.6,2.7-9.6,2.7-14.9c0-2.8-0.3-5.5-0.8-8.1c0,0,0-0.1,0-0.1    C85,3.1,84.6,1.5,84.1,0l-16,11.2C61.1,6.6,52.8,4,43.8,4s-17.3,2.6-24.3,7.1L3.6,0C3.1,1.5,2.7,3.1,2.4,4.7c0,0,0,0.1,0,0.1    c-0.5,2.6-0.8,5.3-0.8,8.1c0,5.2,1,10.2,2.7,14.9c-0.8,1.5-1.5,3.1-2.2,4.7c-0.9,2.3-1.6,4.6-2.1,7.1c1.1,2.3,2.3,4.4,3.7,6.5    c1.5,2.3,3.3,4.4,5.2,6.4c1.1,1.1,2.2,2.2,3.4,3.2l4.5-3.1l-0.4,6.3c1.4,1,2.9,1.9,4.4,2.7c6.9,3.7,14.7,5.8,23,5.8    c8.3,0,16.2-2.1,23.1-5.8c1.5-0.8,3-1.7,4.4-2.7l-0.4-6.3l4.5,3.1c1.2-1,2.3-2.1,3.4-3.2c1.9-2,3.6-4.1,5.2-6.4    c1.4-2.1,2.6-4.2,3.7-6.5C87.2,37.1,86.5,34.8,85.6,32.5" id="Fill-3"></path>
                            </g>
                        </g>
                        <g class="logost0" id="Help_1_">
                            <g id="Help_2_">
                                <g>
                                    <path class="logost3" d="M265,28.5h-10.2V17.1h-5.5v28h5.5V33.4H265v11.7h5.5v-28H265V28.5z M288.5,26.2c-0.7-0.6-1.6-1.1-2.6-1.3     c-1-0.3-1.9-0.4-3-0.4c-3,0-5.4,0.9-7.1,2.6s-2.5,4.4-2.5,7.9c0,3.3,0.7,5.9,2.2,7.7c1.5,1.9,3.9,2.8,7.1,2.8     c1.5,0,3-0.2,4.4-0.7c1.4-0.4,2.5-1,3.3-1.6l-1.7-3.4c-0.5,0.3-1.1,0.7-2,1c-0.9,0.3-1.8,0.5-2.9,0.5c-1.8,0-3-0.4-3.8-1.3     c-0.8-0.9-1.2-2.1-1.3-3.8h12c0.1-0.7,0.2-1.4,0.3-2c0.1-0.6,0.1-1.2,0.1-1.8c0-1.5-0.2-2.8-0.7-3.9     C289.9,27.7,289.3,26.9,288.5,26.2z M286.2,33.2h-7.4c0.1-1.4,0.5-2.4,1.2-3.3c0.7-0.8,1.7-1.2,3-1.2c1.2,0,2,0.4,2.6,1.2     C286.1,30.6,286.3,31.7,286.2,33.2z M301.7,41c-0.3,0.1-0.6,0.1-0.9,0.1c-0.5,0-0.9-0.2-1.2-0.6c-0.2-0.4-0.4-1.1-0.4-2V17.1     h-5.2v24c0,1.6,0.4,2.8,1.2,3.5c0.8,0.7,2,1.1,3.5,1.1c0.9,0,1.8-0.1,2.7-0.3c0.9-0.2,1.5-0.4,2-0.6l-0.6-4.1     C302.4,40.8,302,40.9,301.7,41z M321,26.9c-1.3-1.6-3.1-2.4-5.6-2.4c-1.4,0-2.5,0.2-3.5,0.7c-0.9,0.5-1.8,1.2-2.5,2.2h-0.2     l-0.6-2.4h-3.8v28h5.2v-8.2c0.5,0.3,1.1,0.5,1.6,0.6c0.5,0.1,1.2,0.2,2,0.2c1.5,0,2.8-0.3,3.9-0.8c1.1-0.5,2.1-1.2,2.9-2.2     c0.8-1,1.4-2.1,1.8-3.5c0.4-1.4,0.6-2.9,0.6-4.6C322.9,31,322.2,28.5,321,26.9z M316.4,39.7c-0.7,1.1-1.9,1.6-3.4,1.6     c-0.7,0-1.3-0.1-1.7-0.3c-0.4-0.2-0.8-0.4-1.2-0.7V32c0.3-1,0.8-1.8,1.3-2.3c0.6-0.5,1.4-0.8,2.4-0.8c1.3,0,2.3,0.5,2.8,1.4     c0.6,1,0.9,2.3,0.9,4.1C317.5,36.9,317.1,38.6,316.4,39.7z"></path>
                                </g>
                            </g>
                        </g>
                    </svg>
                </a>
            </div>
             
                        <div class="text">
                Templateog体育首页 это маркетплейс, на котором вы можете купить всё необходимое для создания сайта. Сотни независимых разработчиков продают свои продукты через нас, чтобы вы могли создать свой уникальный проект.           </div>
            <div class="item__list">
                <div class="item">
                    <span>5,000,000</span> покупателей              </div>
                <div class="item">
                    <span>1,800,</span> поставщиков             </div>
                <div class="item">
                    <span>21,416</span> продуктов               </div>
            </div>
        </div>
        <div class="footer__mid">
            <div class="item__list clearfix">
                <div class="item">
                    <div class="item__block">
                        <div class="item__block__title">
                            <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                            <path clip-rule="evenodd" d="M9.08333 1C8.48548 1 8 1.48548 8 2.08333V3.66667C8 3.94281 7.77614 4.16667 7.5 4.16667C7.22386 4.16667 7 3.94281 7 3.66667V2.08333C7 0.933191 7.93319 0 9.08333 0H11.4583C12.6085 0 13.5417 0.933191 13.5417 2.08333V3.66667C13.5417 3.94281 13.3178 4.16667 13.0417 4.16667C12.7655 4.16667 12.5417 3.94281 12.5417 3.66667V2.08333C12.5417 1.48548 12.0562 1 11.4583 1H9.08333Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path d="M5.5 3.66618V2.08284C5.5 1.34924 6.09852 1.0476 6.5 0.999838C6.5 0.5 7 0 7 0L6.58333 -0.000488281C5.43319 -0.000488281 4.5 0.932703 4.5 2.08284V3.66618C4.5 3.94232 4.72386 4.16618 5 4.16618C5.27614 4.16618 5.5 3.94232 5.5 3.66618Z" fill="#FF8A65"></path>
                            <path clip-rule="evenodd" d="M17.884 3.30209C17.9846 3.3966 18.0417 3.52848 18.0417 3.6665V18.7082C18.0417 18.9722 17.8364 19.1907 17.5728 19.2072L4.90618 19.9989C4.63057 20.0161 4.39319 19.8066 4.37596 19.531C4.35873 19.2554 4.56819 19.018 4.8438 19.0008L17.0417 18.2384V4.19873L4.90618 4.9572C4.63057 4.97442 4.39319 4.76497 4.37596 4.48936C4.35873 4.21376 4.56819 3.97637 4.8438 3.95915L17.5105 3.16748C17.6482 3.15887 17.7834 3.20759 17.884 3.30209Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M2.20764 3.26089C2.33803 3.16691 2.50564 3.14134 2.65811 3.19217C2.65811 3.19217 4.82894 3.91578 5.03311 3.98383C5.23728 4.05189 5.375 4.24296 5.375 4.45818V19.4998C5.375 19.6606 5.29774 19.8115 5.16736 19.9055C5.03697 19.9994 4.86936 20.025 4.71689 19.9742L2.34189 19.1825C2.13772 19.1145 2 18.9234 2 18.7082V3.66651C2 3.50579 2.07726 3.35486 2.20764 3.26089ZM3 4.36022V18.3478L4.375 18.8061V4.81855L3 4.36022Z" fill="white" fill-rule="evenodd"></path>
                            </svg>
                                                        Продукты                           
                        </div>
                                                                        <ul>
                            <li><a href="http://91zv.5dexam.com/ru/wordpress-themes-type/" target="_blank">WordPress шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/website-templates-type/" target="_blank">HTML шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/opencart-templates-type/" target="_blank">OpenCart шаблоны</a></li>
                            <li><a href="http://ymf.5dexam.com/" target="_blank">Joomla шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/prestashop-themes-type/" target="_blank">PrestaShop шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/woocommerce-themes-type/" target="_blank">WooCommerce шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/moto-cms-3-templates-type/" target="_blank">Конструктор сайтов</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/magento-themes-type/" target="_blank">Magento шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/properties/features/responsive-design/" target="_blank">Адаптивные шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/shopify-themes-type/" target="_blank">Shopify шаблоны</a></li>
                            <li><a href="http://91zv.5dexam.com/ru/powerpoint-templates-type/" target="_blank">Шаблоны для презентаций</a></li>
                            <li><a href="http://91zv.5dexam.com/landings/websites/ru/" target="_blank">SaaS Website Builder</a></li>
                        </ul>
                                 
                                 
                                 
                    </div>
                </div>
                <div class="item">
                    <div class="item__block">
                        <div class="item__block__title">
                            <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                            <path clip-rule="evenodd" d="M10.4895 3.45459V15.6819H9.4895V3.45459H10.4895Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M3.30444 0.5C3.30444 0.223858 3.5283 0 3.80444 0H16.1957C16.4719 0 16.6957 0.223858 16.6957 0.5V3.95455C16.6957 4.23069 16.4719 4.45455 16.1957 4.45455H3.80444C3.5283 4.45455 3.30444 4.23069 3.30444 3.95455V0.5ZM4.30444 1V3.45455H15.6957V1H4.30444Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M2.47827 10C2.47827 9.72386 2.70213 9.5 2.97827 9.5H17.0217C17.2979 9.5 17.5217 9.72386 17.5217 10V15.6818H16.5217V10.5H3.47827V15.6818H2.47827V10Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.43481 15.1819C7.43481 14.9057 7.65867 14.6819 7.93481 14.6819H12.0652C12.3414 14.6819 12.5652 14.9057 12.5652 15.1819V19.5001C12.5652 19.7762 12.3414 20.0001 12.0652 20.0001H7.93481C7.65867 20.0001 7.43481 19.7762 7.43481 19.5001V15.1819ZM8.43481 15.6819V19.0001H11.5652V15.6819H8.43481Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M0 15.1819C0 14.9057 0.223858 14.6819 0.5 14.6819H4.63043C4.90658 14.6819 5.13043 14.9057 5.13043 15.1819V19.5001C5.13043 19.7762 4.90658 20.0001 4.63043 20.0001H0.5C0.223858 20.0001 0 19.7762 0 19.5001V15.1819ZM1 15.6819V19.0001H4.13043V15.6819H1Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M14.8696 15.1819C14.8696 14.9057 15.0935 14.6819 15.3696 14.6819H19.5001C19.7762 14.6819 20.0001 14.9057 20.0001 15.1819V19.5001C20.0001 19.7762 19.7762 20.0001 19.5001 20.0001H15.3696C15.0935 20.0001 14.8696 19.7762 14.8696 19.5001V15.1819ZM15.8696 15.6819V19.0001H19.0001V15.6819H15.8696Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            </svg>
                                                        Категории                       </div>
 
                                                                            <ul>                               
                                <li><a href="http://91zv.5dexam.com/ru/category/business/" target="_blank">Сайты-визитки</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/fashion-beauty/" target="_blank">Мода и красота</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/family/" target="_blank">Семья</a></li>
                                <li><a href="http://6evm.5dexam.com/" target="_blank">Дизайн и фото</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/real-estate/" target="_blank">Недвижимость</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/cars-motorcycles/" target="_blank">Авто и мото</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/medical/" target="_blank">Медицина</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/sports-outdoors-travel/" target="_blank">Путешествия и спорт</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/food-restaurant/" target="_blank">Еда и рестораны</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/category/electronics/" target="_blank">Электроника</a></li>
                            </ul>
                         
                         
                                            </div>
                </div>
                <div class="item">
                    <div class="item__block">
                        <div class="item__block__title">
                            <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                            <path clip-rule="evenodd" d="M3.66675 9.5C3.94289 9.5 4.16675 9.72386 4.16675 10V10.7917C4.16675 11.0678 3.94289 11.2917 3.66675 11.2917C3.39061 11.2917 3.16675 11.0678 3.16675 10.7917V10C3.16675 9.72386 3.39061 9.5 3.66675 9.5Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M15.5417 9.5C15.8179 9.5 16.0417 9.72386 16.0417 10V10.7917C16.0417 11.0678 15.8179 11.2917 15.5417 11.2917C15.2656 11.2917 15.0417 11.0678 15.0417 10.7917V10C15.0417 9.72386 15.2656 9.5 15.5417 9.5Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M10 0C10.2761 0 10.5 0.223858 10.5 0.5V2.08333C10.5 2.35948 10.2761 2.58333 10 2.58333C9.72386 2.58333 9.5 2.35948 9.5 2.08333V0.5C9.5 0.223858 9.72386 0 10 0Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.125 6.04199C7.125 5.76585 7.34886 5.54199 7.625 5.54199H11.5833C11.8595 5.54199 12.0833 5.76585 12.0833 6.04199C12.0833 6.31813 11.8595 6.54199 11.5833 6.54199H7.625C7.34886 6.54199 7.125 6.31813 7.125 6.04199Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.125 8.41699C7.125 8.14085 7.34886 7.91699 7.625 7.91699H11.5833C11.8595 7.91699 12.0833 8.14085 12.0833 8.41699C12.0833 8.69313 11.8595 8.91699 11.5833 8.91699H7.625C7.34886 8.91699 7.125 8.69313 7.125 8.41699Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.125 10.792C7.125 10.5158 7.34886 10.292 7.625 10.292H11.5833C11.8595 10.292 12.0833 10.5158 12.0833 10.792C12.0833 11.0681 11.8595 11.292 11.5833 11.292H7.625C7.34886 11.292 7.125 11.0681 7.125 10.792Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.125 13.167C7.125 12.8908 7.34886 12.667 7.625 12.667H11.5833C11.8595 12.667 12.0833 12.8908 12.0833 13.167C12.0833 13.4431 11.8595 13.667 11.5833 13.667H7.625C7.34886 13.667 7.125 13.4431 7.125 13.167Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.125 15.542C7.125 15.2658 7.34886 15.042 7.625 15.042H11.5833C11.8595 15.042 12.0833 15.2658 12.0833 15.542C12.0833 15.8181 11.8595 16.042 11.5833 16.042H7.625C7.34886 16.042 7.125 15.8181 7.125 15.542Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M0 18.7083C0 18.4321 0.223858 18.2083 0.5 18.2083H18.7083C18.9845 18.2083 19.2083 18.4321 19.2083 18.7083C19.2083 18.9844 18.9845 19.2083 18.7083 19.2083H0.5C0.223858 19.2083 0 18.9844 0 18.7083Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M5.54175 3.66675C5.54175 3.39061 5.76561 3.16675 6.04175 3.16675H13.1667C13.4429 3.16675 13.6667 3.39061 13.6667 3.66675V18.7084C13.6667 18.9846 13.4429 19.2084 13.1667 19.2084H6.04175C5.76561 19.2084 5.54175 18.9846 5.54175 18.7084V3.66675ZM6.54175 4.16675V18.2084H12.6667V4.16675H6.54175Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M14.25 10.7917C14.25 10.5156 14.4739 10.2917 14.75 10.2917H17.9167C18.1928 10.2917 18.4167 10.5156 18.4167 10.7917V18.7084C18.4167 18.9846 18.1928 19.2084 17.9167 19.2084H14.75C14.4739 19.2084 14.25 18.9846 14.25 18.7084V10.7917ZM15.25 11.2917V18.2084H17.4167V11.2917H15.25Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M0.791748 10.7917C0.791748 10.5156 1.01561 10.2917 1.29175 10.2917H4.45841C4.73456 10.2917 4.95842 10.5156 4.95842 10.7917V18.7084C4.95842 18.9846 4.73456 19.2084 4.45841 19.2084H1.29175C1.01561 19.2084 0.791748 18.9846 0.791748 18.7084V10.7917ZM1.79175 11.2917V18.2084H3.95841V11.2917H1.79175Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M7.91675 2.08325C7.91675 1.80711 8.14061 1.58325 8.41675 1.58325H10.7917C11.0679 1.58325 11.2917 1.80711 11.2917 2.08325V3.66659C11.2917 3.94273 11.0679 4.16659 10.7917 4.16659H8.41675C8.14061 4.16659 7.91675 3.94273 7.91675 3.66659V2.08325ZM8.91675 2.58325V3.16659H10.2917V2.58325H8.91675Z" fill="white" fill-rule="evenodd"></path>
                            </svg>
                                                        Компания                        </div>
                                                                            <ul>                               
                                <li><a href="http://s9z.5dexam.com/" target="_blank">О компании</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/blog/" target="_blank">Блог</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/promocode.html" target="_blank">Промокоды</a></li>
                                <li><a href="http://r.5dexam.com/" target="_blank">Партнерская программа</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/service-center/" target="_blank">Сервис Центр</a></li>
                                <li><a href="http://sertificat.templatemonster.ru/" target="_self">Центр сертификации</a></li>
                                <li><a href="http://8t2.5dexam.com/" target="_blank">Каталог веб-студий</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/faq/" target="_blank">Вопросы и ответы</a></li>
                                <li><a href="http://91zv.5dexam.com/ru/contact_us/" target="_blank">Связаться с нами</a></li>
                            </ul>
                         
                         
                                            </div>
                </div>
                <div class="item">
                    <div class="item__block">
                        <div class="item__block__title">
                            <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                            <path clip-rule="evenodd" d="M9.99989 1C7.08238 1 4.71729 3.3651 4.71729 6.28261H3.71729C3.71729 2.81281 6.5301 0 9.99989 0C13.4688 0 16.2825 2.81277 16.2825 6.28261H15.2825C15.2825 3.36515 12.9166 1 9.99989 1Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M2.15217 9.26074C1.51549 9.26074 1 9.77623 1 10.4129C1 11.0496 1.51549 11.5651 2.15217 11.5651C2.42832 11.5651 2.65217 11.7889 2.65217 12.0651C2.65217 12.3412 2.42832 12.5651 2.15217 12.5651C0.963206 12.5651 0 11.6019 0 10.4129C0 9.22395 0.963206 8.26074 2.15217 8.26074C2.42832 8.26074 2.65217 8.4846 2.65217 8.76074C2.65217 9.03688 2.42832 9.26074 2.15217 9.26074Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M17.3477 8.76074C17.3477 8.4846 17.5715 8.26074 17.8477 8.26074C19.0366 8.26074 19.9998 9.22395 19.9998 10.4129C19.9998 11.6019 19.0366 12.5651 17.8477 12.5651C17.5715 12.5651 17.3477 12.3412 17.3477 12.0651C17.3477 11.7889 17.5715 11.5651 17.8477 11.5651C18.4843 11.5651 18.9998 11.0496 18.9998 10.4129C18.9998 9.77623 18.4843 9.26074 17.8477 9.26074C17.5715 9.26074 17.3477 9.03688 17.3477 8.76074Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M3.80452 6.78247C3.16783 6.78247 2.65234 7.29796 2.65234 7.93464V12.8912C2.65234 13.5278 3.16783 14.0433 3.80452 14.0433H4.95669V6.78247H3.80452ZM1.65234 7.93464C1.65234 6.74568 2.61555 5.78247 3.80452 5.78247H5.45669C5.73283 5.78247 5.95669 6.00633 5.95669 6.28247V14.5433C5.95669 14.8195 5.73283 15.0433 5.45669 15.0433H3.80452C2.61555 15.0433 1.65234 14.0801 1.65234 12.8912V7.93464ZM17.1089 14.8408C17.8411 14.4974 18.348 13.7537 18.348 12.8912V7.93464C18.348 6.74568 17.3848 5.78247 16.1958 5.78247H14.5437C14.2675 5.78247 14.0437 6.00633 14.0437 6.28247V14.5433C14.0437 14.8195 14.2675 15.0433 14.5437 15.0433H16.1089V15.3697C16.1089 16.0191 15.8525 16.4944 15.4494 16.818C15.0342 17.1512 14.43 17.3479 13.7176 17.3479H12.0654C11.7892 17.3479 11.5654 17.5718 11.5654 17.8479C11.5654 18.1241 11.7892 18.3479 12.0654 18.3479H13.7176C14.6028 18.3479 15.4442 18.1044 16.0753 17.5979C16.7184 17.0817 17.1089 16.3179 17.1089 15.3697V14.8408ZM16.4643 14.0119C16.3782 14.0325 16.2883 14.0433 16.1958 14.0433H15.0437V6.78247H16.1958C16.8325 6.78247 17.348 7.29796 17.348 7.93464V12.8912C17.348 13.4212 16.9908 13.8672 16.5038 14.0018C16.4904 14.0046 16.4772 14.008 16.4643 14.0119Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M10.826 17.1086C10.4182 17.1086 10.0869 17.4399 10.0869 17.8478C10.0869 18.2556 10.4182 18.5869 10.826 18.5869C11.2339 18.5869 11.5652 18.2556 11.5652 17.8478C11.5652 17.4399 11.2339 17.1086 10.826 17.1086ZM9.08691 17.8478C9.08691 16.8876 9.8659 16.1086 10.826 16.1086C11.7862 16.1086 12.5652 16.8876 12.5652 17.8478C12.5652 18.8079 11.7862 19.5869 10.826 19.5869C9.8659 19.5869 9.08691 18.8079 9.08691 17.8478Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            </svg>
                                                        Поддержка                       </div>
                                                                            <ul>
                                <li><a href="http://91zv.5dexam.com/ru/report-spam.html" target="_blank">Пожаловаться на спам</a></li>
                                <li><a href="http://91zv.5dexam.com/vendors/" target="_blank">Стать поставщиком</a></li>
                            </ul>
                                                                         
 
 
                    </div>
                    <div class="item__block">
                        <div class="item__block__title">
                            <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                            <path clip-rule="evenodd" d="M9.90845 2.90967L2.56934 17.5002H17.2478L9.90845 2.90967ZM2 17.6521L1.5 17.4006L9.33521 1.82446L9.90869 2.11279L10.4819 1.82446L18.3171 17.4006L18 17.5603V18.5002H2V17.6521Z" fill="#FF8A65" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M0 18C0 16.895 0.895534 16 2 16C3.10447 16 4 16.895 4 18C4 19.105 3.10447 20 2 20C0.895534 20 0 19.105 0 18Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M8 2C8 0.895014 8.89553 0 10 0C11.1045 0 12 0.895014 12 2C12 3.10499 11.1045 4 10 4C8.89553 4 8 3.10499 8 2Z" fill="white" fill-rule="evenodd"></path>
                            <path clip-rule="evenodd" d="M16 18C16 16.895 16.8955 16 18 16C19.1045 16 20 16.895 20 18C20 19.105 19.1045 20 18 20C16.8955 20 16 19.105 16 18Z" fill="white" fill-rule="evenodd"></path>
                            </svg>
                                                        Подписаться                     </div>
                                                                        <ul>
                            <li><a href="http://twitter.com/temmonru" target="_blank">Twitter</a></li>
                            <li><a href="http://www.facebook.com/templatemonsterrussia/" target="_blank">Facebook</a></li>
                        </ul>
                                                                                                     
                    </div>
                </div>
            </div>         
        </div>
        <div class="footer__form">
            <div class="swipe">
                <svg height="466pt" viewBox="-16 0 466 466.238" width="466pt" xmlns="http://www.w3.org/2000/svg"><path d="m393.851562 161.238281h-.710937c-9.851563.035157-19.320313 3.824219-26.476563 10.589844-5.585937-16.320313-20.402343-28.011719-37.808593-28.011719-10.78125.140625-21.027344 4.714844-28.320313 12.652344-6.589844-13.90625-20.199218-23.230469-35.886718-23.230469h-.757813c-9.027344 0-17.816406 2.6875-23.816406 8.03125v-98.878906c0-23.375-18.125-42.390625-40.246094-42.390625-22.097656 0-40.152344 19-40.167969 42.359375l-.171875 195.554687-11.863281-14.421874c-9.546875-11.886719-23.605469-19.269532-38.808594-20.386719-14.898437-1.019531-29.554687 4.167969-40.496094 14.332031l-9.558593 7.929688c-2.902344 2.40625-3.730469 6.511718-1.992188 9.851562l92.957031 178.46875c16.910157 32.488281 49.078126 52.550781 83.949219 52.550781h104.261719c52.871094 0 95.929688-45.699219 95.984375-102.023437.023437-25.164063.050781-43.882813.066406-59.128906.054688-41.050782.074219-56.398438-.03125-101.585938-.054687-23.3125-18.042969-42.261719-40.105469-42.261719zm24.136719 143.886719c-.015625 15.246094-.042969 33.910156-.066406 59.074219-.046875 47.507812-35.925781 86.039062-79.984375 86.039062h-104.261719c-28.886719 0-55.617187-16.761719-69.761719-43.933593l-89.976562-172.800782 4.742188-3.898437c.101562-.085938.207031-.160157.304687-.253907 7.722656-7.265624 18.121094-10.996093 28.703125-10.289062 10.808594.828125 20.792969 6.113281 27.554688 14.589844l26.011718 31.667968c2.144532 2.609376 5.695313 3.589844 8.875 2.453126 3.179688-1.136719 5.304688-4.148438 5.308594-7.527344l.152344-217.871094c.007812-14.539062 10.957031-26.371094 24.246094-26.371094 13.285156 0 24.238281 11.835938 24.238281 26.386719v131.382813c0 .453124-.019531.90625-.019531 1.363281 0 .199219.019531.386719.019531.578125v56.183594c0 4.417968 3.582031 8 8 8s8-3.582032 8-8v-57.855469c0-14.039063 10.863281-24.804688 23.816406-24.804688h.757813c13.289062 0 24.425781 11.355469 24.425781 25.910157v51.390624c0 4.417969 3.582031 8 8 8s8-3.582031 8-8v-40.324218c0-14.550782 10.671875-26.390625 24.039062-26.390625 13.292969 0 23.960938 11.839843 23.960938 26.390625v38.042968c0 4.417969 3.582031 8 8 8s8-3.582031 8-8v-20.597656c0-14.554687 10.773437-26.421875 24.066406-26.421875h.710937c13.257813 0 24.074219 11.820313 24.105469 26.328125.105469 45.160156.085938 60.527344.03125 101.558594zm0 0"></path><path d="m268.074219 79.238281h103.683593l-18.589843 18.589844c-2.070313 2.011719-2.898438 4.980469-2.164063 7.769531.734375 2.792969 2.914063 4.972656 5.707032 5.707032 2.789062.730468 5.757812-.097657 7.769531-2.167969l32.128906-32.125c3.125-3.125 3.125-8.191407 0-11.3125l-32.128906-32.125c-3.128907-3.09375-8.167969-3.078125-11.277344.03125-3.113281 3.113281-3.128906 8.152343-.035156 11.28125l18.351562 18.351562h-103.445312c-4.417969 0-8 3.582031-8 8s3.582031 8 8 8zm0 0"></path><path d="m27.3125 79.238281h102.761719c4.417969 0 8-3.582031 8-8s-3.582031-8-8-8h-102.523438l18.351563-18.351562c3.09375-3.128907 3.078125-8.167969-.035156-11.28125-3.109376-3.109375-8.148438-3.125-11.277344-.03125l-32.128906 32.125c-3.121094 3.125-3.121094 8.191406 0 11.3125l32.128906 32.125c2.015625 2.042969 4.972656 2.847656 7.746094 2.109375 2.773437-.734375 4.9375-2.902344 5.675781-5.675782.738281-2.773437-.066407-5.726562-2.109375-7.746093zm0 0"></path></svg>
            </div>
            <form>
                                <div class="text left_side">
                    <span>
                        <svg fill="none" id="weeklydeals" viewBox="0 0 20 20"><path clip-rule="evenodd" d="M1.74 3a.74.74 0 0 0-.74.74v9.086c0 .408.331.74.74.74h6.608a.5.5 0 0 1 0 1H1.739A1.74 1.74 0 0 1 0 12.825V3.74C0 2.78.779 2 1.74 2h14.869c.96 0 1.739.779 1.739 1.74v3.717a.5.5 0 1 1-1 0V3.739a.74.74 0 0 0-.74-.739H1.74z" fill="#fff" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M.471 2.549a.5.5 0 0 1 .703-.078l8 6.41 8-6.385a.5.5 0 0 1 .624.782L9.485 9.912a.5.5 0 0 1-.624 0L.549 3.252a.5.5 0 0 1-.078-.703z" fill="#fff" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M14.957 10.82a3.039 3.039 0 0 0-.755-.858 2.514 2.514 0 0 0-1.897-.502c-1.29.184-2.392 1.334-2.392 2.984 0 .755.345 1.52.791 2.204.452.694 1.047 1.365 1.628 1.944a22.194 22.194 0 0 0 2.275 1.967l.04.03.011.008.003.002h.001l.294-.403-.294.404a.5.5 0 0 0 .589 0l-.294-.404.294.404.001-.001.003-.002.01-.008.041-.03.15-.113a22.174 22.174 0 0 0 2.125-1.854c.581-.58 1.176-1.25 1.628-1.944.446-.685.791-1.45.791-2.204 0-1.65-1.102-2.8-2.392-2.984a2.514 2.514 0 0 0-1.897.502 3.04 3.04 0 0 0-.755.859zm0 6.748a21.18 21.18 0 0 1-1.919-1.685c-.555-.553-1.097-1.168-1.496-1.78-.406-.624-.629-1.19-.629-1.66 0-1.174.757-1.883 1.532-1.993.388-.055.795.035 1.15.307.355.271.69.75.875 1.522a.5.5 0 0 0 .973 0c.185-.771.52-1.25.876-1.522.354-.272.76-.362 1.149-.307.775.11 1.532.82 1.532 1.994 0 .468-.223 1.035-.629 1.658-.4.614-.94 1.228-1.496 1.781a21.201 21.201 0 0 1-1.918 1.685z" fill="#FF8A65" fill-rule="evenodd"></path></svg>
                        Подпишись и получи -15% на следующую покупку!                   </span>
                </div>             
                <div class="form">
                    <div class="form__wrap">
                        <svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg">
                        <path clip-rule="evenodd" d="M1.81348 4.00098C1.82788 4.00024 1.84253 4 1.85718 4H18.1428C18.1575 4 18.1721 4.00024 18.1865 4.00098L10 10.5503L1.81348 4.00098ZM1.02515 4.65063C1.00879 4.7168 1 4.78589 1 4.85718V14.8096C1 15.2825 1.38403 15.6667 1.85718 15.6667H18.1428C18.616 15.6667 19 15.2825 19 14.8096V4.85718C19 4.78613 18.9915 4.71704 18.9751 4.65088L10.3123 11.5811C10.1299 11.7271 9.87036 11.7271 9.68774 11.5811L1.02515 4.65063ZM1.85718 3C0.832031 3 0 3.83081 0 4.85718V14.8096C0 15.8347 0.831787 16.6667 1.85718 16.6667H18.1428C19.1682 16.6667 20 15.8347 20 14.8096V4.85718C20 3.83081 19.168 3 18.1428 3H1.85718Z" fill="#B0BEC5" fill-rule="evenodd"></path>
                        </svg>
                        <input class="input_email" placeholder="Введите ваш email" type="text"/>
                        <button type="submit">Подписаться</button>
                    </div>
                    <div class="form__message">
                        <div class="success">Thank you!</div>
                        <div class="error">Some error. Please try again later.</div>
                        <div class="validation">Enter valid email.</div>
                    </div>
                </div>
                <div class="text right_side">
                    Скидки, статьи и уроки каждую неделю                </div>
            </form>
        </div>
        <div class="footer__bottom">
                        <div class="soc">
                <a href="http://twitter.com/temmonru" target="_blank">
                    <svg viewBox="0 0 20 20"><path d="M0 3a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3zm10.607 16.979h3.118v-7.746h2.6l.387-3.02h-2.987V7.288c0-.876.244-1.47 1.494-1.47h1.6v-2.7A21.303 21.303 0 0 0 14.49 3c-2.305 0-3.883 1.405-3.883 3.987v2.23H8v3.017h2.607v7.745z" fill-rule="nonzero" stroke-width="1"></path></svg>
                </a>
                <a href="http://www.facebook.com/templatemonsterrussia/" target="_blank">
                    <svg viewBox="0 0 20 20"><path d="M0 3a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3zm16 3.155a4.965 4.965 0 0 1-1.415.388 2.475 2.475 0 0 0 1.083-1.362 4.943 4.943 0 0 1-1.564.596 2.46 2.46 0 0 0-4.195 2.246 6.997 6.997 0 0 1-5.074-2.571 2.46 2.46 0 0 0 .762 3.286 2.459 2.459 0 0 1-1.115-.307v.03c0 1.192.847 2.188 1.974 2.415a2.502 2.502 0 0 1-1.111.042 2.466 2.466 0 0 0 2.3 1.71A4.944 4.944 0 0 1 4 13.646a6.977 6.977 0 0 0 3.774 1.105c4.529 0 7.005-3.75 7.005-7.003 0-.107-.003-.213-.008-.319.48-.347.899-.78 1.229-1.275z" fill-rule="nonzero" stroke-width="1"></path></svg>
                </a>
            </div>
            <div class="text">
                                                Templateog体育首页.com owned by Theme Technologies LLC. Operated by Jetimpex Inc. All rights reserved.
            </div>
             
        </div>
    </div>
</footer>
 
 
</div>
 
  
<script>
    window.currentLang = 'ru';
</script>
 
        <script type="text/javascript">
        // <![CDATA[
        var disqus_shortname = 'tm-help';
        (function () {
            var nodes = document.getElementsByTagName('span');
            for (var i = 0, url; i < nodes.length; i++) {
                if (nodes[i].className.indexOf('dsq-postid') != -1 && nodes[i].parentNode.tagName == 'A') {
                    nodes[i].parentNode.setAttribute('data-disqus-identifier', nodes[i].getAttribute('data-dsqidentifier'));
                    url = nodes[i].parentNode.href.split('#', 1);
                    if (url.length == 1) { url = url[0]; }
                    else { url = url[1]; }
                    nodes[i].parentNode.href = url + '#disqus_thread';
                }
            }
            var s = document.createElement('script');
            s.async = true;
            s.type = 'text/javascript';
            s.src = '//' + disqus_shortname + '.disqus.com/count.js';
            (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
        }());
        // ]]>
        </script>
        <!--email_off--><!--/email_off-->
 
 
 
 
 
 
 
 
 
 
 
 
 
<script id="contact-form-7-js-extra" type="text/javascript">
/* <![CDATA[ */
var _wpcf7 = {"loaderUrl":"http:\/\/91zv.5dexam.com\/help\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","sending":"\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430...","cached":"1"};
/* ]]> */
</script>
 
<script id="mt-brushtypes-js-extra" type="text/javascript">
/* <![CDATA[ */
var MTBrushParams = {"baseUrl":"http:\/\/91zv.5dexam.com\/help\/wp-content\/plugins\/syntax-highlighter-mt"};
/* ]]> */
</script>
 
 
 
 
 
 
<script id="aal_js-js-extra" type="text/javascript">
/* <![CDATA[ */
var ajax_script = {"ajaxurl":"http:\/\/91zv.5dexam.com\/help\/wp-admin\/admin-ajax.php","aal_plugin_url":"http:\/\/91zv.5dexam.com\/help\/wp-content\/plugins\/wp-auto-affiliate-links\/"};
/* ]]> */
</script>
 
 
 
<script id="gdrts-ratings-core-js-extra" type="text/javascript">
/* <![CDATA[ */
var gdrts_rating_data = {"url":"http:\/\/91zv.5dexam.com\/help\/wp-admin\/admin-ajax.php","nonce":"45c9fe4d54","rtl":"","user":"0","handler":"gdrts_live_handler","ajax_error":"console","wp_version":"57"};
/* ]]> */
</script>
 
 
<script>
jQuery(function($) {
jQuery('a[class^="darkbox"]').prettyPhoto();
});
</script>
<!-- START: RUN GD RATING SYSTEM PRO JAVASCRIPT -->
<script type="text/javascript">
    ;(function($, window, document, undefined) {
        $(document).ready(function() {
            if (typeof window.wp.gdrts.core !== "undefined") {
                window.wp.gdrts.core.run();
            } else {
                if (window.console) {
                    console.log("INIT ERROR: GD Rating System - JavaScript not initialized properly.");
                }
            }
        });
    })(jQuery, window, document);
</script>
<!-- START: RUN GD RATING SYSTEM PRO JAVASCRIPT -->
 
 
 
 
 
<style>
.hidden {
display: none;
}
</style>
 
<a href="http://vpqwbf.zjjqyhy.com" class="hidden">costa咖啡</a>
<a href="http://www.seezl.com" class="hidden">Crown-Sports-Betting-info@seezl.com</a>
<a href="http://www.futuretac.net" class="hidden">永利体育app</a>
<a href="http://www.getnormalevents.com" class="hidden">Wynn-Sports-hr@getnormalevents.com</a>
<a href="http://web-sitemap.zykx8.com" class="hidden">西南林业大学</a>
<a href="http://undwis.dbctl.com" class="hidden">比分199-即时比分</a>
<a href="http://mtlbft.starhao.net" class="hidden">枣庄大众网</a>
<a href="http://jojndm.mygril-yaoyao.com" class="hidden">湘潭房产网</a>
<a href="http://web-sitemap.penelopeknight.com" class="hidden">禾东撕碎机厂</a>
<a href="http://www.kongtiao11.com" class="hidden">Sports-betting-contact@kongtiao11.com</a>
<a href="http://neomdd.al10669.com" class="hidden">厦门大学新闻网</a>
<a href="http://uusfzn.17talkshopping.com" class="hidden">欣欣广西旅游网</a>
<a href="http://web-sitemap.layneoutdoor.net" class="hidden">爽网社区 </a>
<a href="http://ursyan.zdya.net" class="hidden">黑马程序员IT技术论坛</a>
<a href="http://www.najwc.com" class="hidden">博彩平台</a>
<a href="http://web-sitemap.sxtsbd.com" class="hidden">爱力领富</a>
<a href="http://zuicfa.xingangy.net" class="hidden">搞趣网秦时明月手游官网合作专区</a>
<a href="http://www.thithithainguyen.net" class="hidden">bbin</a>
<a href="http://www.ehulk.net" class="hidden">Gaming-platform-sales@ehulk.net</a>
<a href="http://web-sitemap.whgaolian.com" class="hidden">杭州湾论坛</a>
 
<a href="https://m.facebook.com/public/澳门新濠娱乐开户>>✔️最新网址:la55.net✔️手输<<澳门新濠娱乐开户>>✔️最新网址:la55.net✔️手输<<.ria" class="hidden">济宁学院</a>
<a href="https://es-la.facebook.com/public/澳门网上赌博平台>>✔️官方网址:la777.net✔️手输<<澳门网上赌博平台>>✔️官方网址:la777.net✔️手输<<" class="hidden">中国江西网江西旅游频道</a>
<a href="https://stock.adobe.com/search?k=ag百家乐网址✔️网址:la66.net✔️.abt" class="hidden">52pk天涯明月刀游戏官方合作网站</a>
<a href="https://stock.adobe.com/search/images?k=✔️最新网址:la55.net✔️cq9电子官方网站平台介绍.tib" class="hidden">信达澳银基金</a>
<a href="https://stock.adobe.com/search/images?k=✔️最新网址:ad22.net✔️(关于推荐几个最正规的简介)推荐几个最正规" class="hidden">铁友网高铁查询</a>
<a href="https://m.facebook.com/public/✔️网址:ad11.net✔️澳门银河app下载平台介绍" class="hidden">朝阳百姓网</a>
<a href="https://stock.adobe.com/search/images?k=好玩的手游推荐✔️最新网址:ad22.net✔️" class="hidden">游戏狗安卓游戏频道</a>
<a href="https://stock.adobe.com/search?k=>>✔️最新网址:la55.net✔️手输<<最新appstore.vkq" class="hidden">中金在线专题频道</a>
<a href="https://es-la.facebook.com/public/✔️网址:ad11.net✔️菠菜网正规平台✔️网址:ad11.net✔️菠菜网正规平台.tue" class="hidden">网易青岛</a>
<a href="https://acrmc.com/search/✔️网址:ad11.net✔️365be网赌网平台介绍✔️网址:ad11.net✔️365be网赌网平台介绍.yfx" class="hidden">IT博客</a>
 
<a href="/html/aniejq-939663.html" class="hidden">中国教育科学研究院</a>
<a href="/news/skrmww-139243.html" class="hidden">微博档案</a>
<a href="/html/cdzbxi-529515" class="hidden">红黑联盟读书频道</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/cn/jzkuly-690299.html" class="hidden">澳佳宝</a>