@charset 'UTF-8';/* СOLORS
------------------------*//* EFFECTS
------------------------*//*FONTS
-------------------------*//*GRID
-------------------------*//*BREAKPOINTS
-------------------------*//*BORDER
-------------------------*//*NORMALIZE
------------------------*/article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary
{
    display: block;
}

html
{
    font-family: sans-serif;

        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

a:focus,
input:focus,
button:focus
{
    outline: 0;
}

svg:not(:root)
{
    overflow: hidden;
}

button,
input,
select,
textarea
{
    font: 100% inherit;

    margin: 0;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit']
{
    cursor: pointer;

    -webkit-appearance: button;
}

input[type='checkbox'],
input[type='radio']
{
    box-sizing: border-box;
    padding: 0;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration
{
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner
{
    padding: 0;

    border: 0;
}

textarea
{
    overflow: auto;

    resize: none;
    vertical-align: top;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}

button
{
    border: 0;
    background: none;
}/*
Flex Grid Framework
Platform: Sass (.scss)

Original repository:
https://github.com/afonsopacifer/flex-grid-framework
Website:
http://flexgridframework.com/
Author:
Afonso Pacifer (afonsopacifer.com)
Version: 1.2.0
Licence:
MIT - https://github.com/afonsopacifer/flex-grid-framework/blob/master/licence.md
* /

/* Configs
------------------------------------------------*//* Row
------------------------------------------------*//* Columns
------------------------------------------------*//* Offset
------------------------------------------------*//* Flex Container
------------------------------------------------*//* Flex Itens
------------------------------------------------*//* FLUID GRID
------------------------*/div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td
{
    margin: 0;
    padding: 0;

    border: 0;
}

article,
aside,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object
{
    display: block;
}

a img
{
    border: 0;
}

figure
{
    position: relative;
}

figure img
{
    width: 100%;
}

.container
{
    box-sizing: border-box;
    width: 400px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 10px;
}

.container.container--full
{
    width: 100%;
    padding: 0;
}/*FONTS
--------------------------*/.btn
{
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    box-sizing: border-box;

    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;

    color: #fff;
    border-radius: 5px;
    background: #f04441;
}

.btn--alt
{
    margin: 0;

    text-transform: uppercase;

    color: #000;
    background: #dcdcdc;
}

.btn--dark
{
    margin: 0;

    text-transform: uppercase;

    color: #fff;
    background: #111;
}

.btn--transp
{
    font-size: 14px;
    line-height: 1.2;

    margin: 0;

    text-transform: uppercase;

    color: #000;
    background: transparent;
}

.btn--disabled
{
    pointer-events: none;

    opacity: .4;
}

.btn:disabled
{
    pointer-events: none;
}

.btn-wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin: 0 auto;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.step-back
{
    position: relative;

    display: block;

    width: 20px;
    height: 20px;
}

.step-back:before
{
    position: absolute;
    top: 9px;
    left: 2px;

    box-sizing: border-box;
    width: 10px;
    height: 10px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border-bottom: 2px solid #b1b1b1;
    border-left: 2px solid #b1b1b1;
}

.print-btn
{
    font-size: 16px;

    width: 100%;
    padding: 10px 0;

    text-transform: none;

    border-radius: 0;
}

.close
{
    position: absolute;
    z-index: 9;
    top: 19px;
    right: 23px;

    display: block;

    width: 21px;
    height: 21px;
}

.close:before,
.close:after
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 26px;
    height: 3px;

    content: '';
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;

    background: #bebebe;
}

.close:before
{
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.close:after
{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.minus
{
    position: relative;
}

.minus:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 7px;
    height: 1px;

    content: '';
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    background: #000;
}

.plus
{
    position: relative;
}

.plus:before,
.plus:after
{
    position: absolute;

    width: 7px;
    height: 1px;

    content: '';

    background: #000;
}

.plus:before
{
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.plus:after
{
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
}/* CUSTOM STYLES
----------------------------*/html,
body
{
    height: 100%;
}

body
{
    font: 400 16px/1.4 'Arimo', Arial, sans-serif;
    box-sizing: border-box;
    min-width: 420px;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #111;
    background: #f1f1f1;
}

main
{
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}

img,
object,
embed
{
    max-width: 100%;
}

img
{
    display: block;

    height: auto;
    margin: 0;
    padding: 0;

    border: 0;
}

figure
{
    position: relative;

    margin: 0;
}

figure img
{
    width: 100%;
}

ul,
ol
{
    padding: 0;

    list-style: none;
}

a
{
    -webkit-transition: all .2s linear;
            transition: all .2s linear;
    text-decoration: none;

    color: #000;
}

a:active
{
    opacity: .5;
}

.read-more
{
    font-size: 14px;
    font-weight: 400;
    line-height: 35px;

    display: none;

    color: #a2a2a2;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.read-more--up .icon
{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.read-more__line
{
    height: 1px;
    margin-right: 9px;
    margin-left: 7px;

    background: #a2a2a2;

    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.main-title
{
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin: 0;
    padding: 0;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    word-break: break-word;

    color: #fff;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.hide
{
    display: none;
}

.tab-content
{
    display: none;
}

.tab-content.active
{
    display: block;
}

.overflow-hidden
{
    overflow: hidden;
}/* HEADER
----------------------*/.logo
{
    width: 121px;
}

.logo img
{
    display: block;

    width: 108px;
    height: auto;
}

.page-header
{
    -webkit-transition: padding .3s ease-out;
            transition: padding .3s ease-out;

    background: #111;
}

.page-header--search
{
    position: relative;

    padding-top: 66px;
}

.page-header__row
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.page-header__search-trigger
{
    padding: 19px 20px 18px;
}

.page-header__search-trigger.active
{
    background: #202020;
}

.page-header__search-trigger .icon
{
    width: 20px;
    height: 20px;

    fill: #fff;
}

.page-header__search
{
    position: absolute;
    z-index: -1;

    visibility: hidden;

    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;

    opacity: 0;
}

.page-header__search.active
{
    z-index: 1;
    top: 0;
    left: 0;

    visibility: visible;

    box-sizing: border-box;
    width: 100%;
    height: 66px;
    padding: 11px 23px;

    opacity: 1;
    background: #202020;
}

.page-header__search-btn
{
    position: absolute;
    top: 25px;
    right: 28px;
}

.page-header__search-btn .icon
{
    width: 15px;
    height: 15px;

    fill: #797979;
}

.page-header__search-field
{
    font-size: 15px;

    box-sizing: border-box;
    width: 380px;
    height: 43px;
    padding: 12px 16px;

    color: #fff;
    border: 1px solid #292929;
    border-radius: 5px;
    background: #111;
}

.page-header__phone
{
    font-size: 0;

    display: block;

    padding: 19px 20px 18px;
}

.page-header__phone .icon--phone
{
    width: 20px;
    height: 20px;

    fill: #fff;
}

.page-header__basket
{
    position: relative;

    display: block;

    margin-right: 12px;
    padding: 19px 20px 16px 6px;
}

.page-header__basket .icon
{
    width: 24px;
    height: 24px;

    fill: #fff;
}

.page-header__basket span
{
    font-size: 14px;
    font-weight: 700;
    line-height: 23px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 23px;
    height: 23px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #f04441;
    border: 2px solid #fff;
}

.page-header__toggle
{
    position: relative;

    box-sizing: border-box;
    width: 59px;
    height: 59px;
    padding: 0 13px;

    background: #f04441;
}

.page-header__toggle:before,
.page-header__toggle:after
{
    position: absolute;
    left: 50%;

    width: 32px;
    height: 3px;

    content: '';
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);

    background: #fff;
}

.page-header__toggle:before
{
    top: 33%;

    box-shadow: 0 8px #fff;
}

.page-header__toggle:after
{
    bottom: 35%;
}

.page-header__toggle--close
{
    z-index: 9999;
}

.page-header__toggle--close:before
{
    top: 47%;
    left: 25%;

    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    box-shadow: none;
}

.page-header__toggle--close:after
{
    bottom: 50%;
    left: 25%;

    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.page-header__ctas
{
    display: none;
}

.page-header__btn
{
    font-size: 16px;
    font-weight: 400;

    margin-left: 20px;
    padding: 11px 16px;

    text-transform: none;

    border-radius: 5px;
}/* FOOTER
-----------------------------------*/.page-footer
{
    box-sizing: border-box;
    padding: 28px 0 45px;

    text-align: center;

    color: #cecece;
    background: #222;

    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
            flex-shrink: 0;
}

.page-footer .wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
            flex-direction: row;

    padding: 0 30px;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.page-footer__subscribe
{
    font-size: 15px;
    line-height: 21px;

    text-align: center;

    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
            order: 1;
}

.page-footer__subscribe br
{
    display: none;
}

.page-footer .subscribe-form
{
    position: relative;

    margin: 14px 0 0;
    padding-bottom: 24px;
}

.page-footer .subscribe-form__title
{
    margin-bottom: 14px;

    text-transform: uppercase;
}

.page-footer .subscribe-form__field
{
    box-sizing: border-box;
    width: 320px;
    margin: 0 auto;
    padding: 8px 0;

    text-align: center;

    color: #969696;
    border: none;
    border-radius: 0;
    background: #363636;
}

.page-footer .subscribe-form__btn
{
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;

    width: 180px;
    margin: 15px auto 0;
    padding: 6px 0;

    text-transform: uppercase;

    color: #a9a9a9;
    border: 2px solid #363636;
    border-radius: 50px;
}

.page-footer .subscribe-form ::-webkit-input-placeholder
{
    color: #a9a9a9;
}

.page-footer .subscribe-form ::-moz-placeholder
{
    color: #a9a9a9;
}

.page-footer .subscribe-form :-moz-placeholder
{
    color: #a9a9a9;
}

.page-footer .subscribe-form :-ms-input-placeholder
{
    color: #a9a9a9;
}

.page-footer__link
{
    color: #cecece;
}

.page-footer__menu
{
    display: none;

    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
            order: 2;
}

.page-footer__menu-block
{
    box-sizing: border-box;
    min-width: 250px;
}

.page-footer__title
{
    line-height: 1.2;

    margin-bottom: 23px;
}

.page-footer__item
{
    margin-bottom: 7px;
}

.copyright
{
    font-size: 15px;
    line-height: 24px;

    padding: 28px 0 0;

    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
            order: 2;
}

.copyright br
{
    display: none;
}

.copyright__note
{
    margin: 11px 0;
}

.copyright__author a
{
    text-decoration: underline;

    color: #cecece;
}/* FORMS
----------------------------*/button,
input
{
    outline: none;
}

.select-hidden
{
    display: none;
    visibility: hidden;

    padding-right: 10px;
}

.field
{
    font: 15px/24px 'Arimo', Arial, sans-serif;

    display: block;

    box-sizing: border-box;
    width: 100%;
    height: 37px;
    padding: 6px 15px;

    color: #111;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}
.field:hover
{
    border-color: #bcbcbc;
}

.field:focus
{
    border-color: #afafaf;
}

.field:disabled
{
    pointer-events: none;

    border-color: transparent;
    background: #d5d5d5;
}

.field--error
{
    border-color: #f04441;
}

.field-select
{
    position: relative;

    box-sizing: border-box;
    width: 100%;
    height: 37px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.field-select--value:after
{
    position: absolute;
    top: 25%;
    right: 11px;

    width: 12px;
    height: 6px;

    content: '';
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 3px solid #111;
    border-left: 3px solid #111;
}

.field-select-wrapper
{
    position: relative;

    margin-left: 20px;
}

.field-select-wrapper .icon
{
    position: absolute;
    z-index: 999;
    top: 30%;
    left: 5%;

    width: 10px;
    height: 15px;

    content: '';

    fill: #f04441;
}

.field-select-wrapper .select-styled
{
    padding-left: 15px;
}

.textarea
{
    font: 15px/24px 'Arimo', Arial, sans-serif;

    display: block;

    box-sizing: border-box;
    width: 100%;
    min-height: 167px;
    padding: 5px 15px;

    border: 1px solid #d5d5d5;
    border-radius: 5px;
}

.textarea:not(:last-of-type)
{
    margin-bottom: 13px;
}

.textarea:hover
{
    border-color: #bcbcbc;
}

.textarea:focus
{
    border-color: #afafaf;
}

.select-styled
{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    box-sizing: border-box;
    padding: 6px 15px;

    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;

    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background: #fff;
}

.select-styled:after
{
    position: absolute;
    top: 14px;
    right: 14px;

    content: '';

    border: 4px solid transparent;
    border-top: 8px solid #b1b1b1;
}

.select-styled:hover
{
    background: #fafafa;
}

.select-styled:active,
.select-styled.active
{
    border: 2px solid rgba(232, 232, 232, .2);
}

.select-styled:active:after,
.select-styled.active:after
{
    top: 10px;

    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.select-options
{
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;

    position: absolute;
    z-index: 999;
    top: 91%;
    right: 0;
    left: 0;

    display: none;

    border: 1px solid #d5d5d5;
    border-top-color: transparent;
    background: #fff;
}

.select-options li
{
    margin: 0;
    padding: 12px 0;
    padding-left: 15px;

    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;
}

.select-options li:first-of-type
{
    border-top: 1px solid #d5d5d5;
}

.select-options li:hover
{
    color: #d5d5d5;
}

.select-options li[rel='hide']
{
    display: none;
}

.select-options li[rel='']
{
    color: #b1b1b1;
}

.disabled
{
    color: #b1b1b1;
}

.label
{
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;

    display: block;

    margin-top: 6px;
}

.label:first-child
{
    margin-top: 0;
}

.label-check
{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;

    position: relative;

    display: block;

    margin-top: 17px;
    padding-left: 30px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.label-check--pers
{
    font-size: 14px;
    line-height: 1.2;

    margin-top: 20px;
    padding-top: 2px;
}

.label-check--pers a
{
    text-decoration: underline;
}

.label-check:before
{
    position: absolute;
    top: 2px;
    left: 0;

    width: 18px;
    height: 18px;

    content: '';
    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;

    border-radius: 2px;
    background: #dfdfdf;
}

.label-check:after
{
    position: absolute;
    top: 6px;
    left: 4px;

    display: none;

    width: 10px;
    height: 5px;

    content: '';
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

.label-radio
{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;

    position: relative;

    display: block;

    margin-top: 12px;
    padding-left: 30px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.label-radio:before
{
    position: absolute;
    top: 0;
    left: 0;

    box-sizing: border-box;
    width: 15px;
    height: 15px;

    content: '';
    -webkit-transition: box-shadow .3s ease-out;
            transition: box-shadow .3s ease-out;

    border: 1px solid #d5d5d5;
    border-radius: 50%;
}

.label-file
{
    font: 15px/24px 'Arimo', Arial, sans-serif;

    position: relative;

    display: block;

    box-sizing: border-box;
    width: 100%;
    padding: 6px 15px;

    color: #b1b1b1;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}

.label-file .icon
{
    position: absolute;
    top: 20%;
    right: 8px;

    content: '';
}

.label-drop
{
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;

    display: block;

    text-align: center;

    color: #969696;
}

.label sup
{
    color: #f04441;
}

.label span
{
    color: #969696;
}

.has-value:after
{
    position: absolute;
    top: 10px;
    right: 11px;

    width: 12px;
    height: 6px;

    content: '';
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 3px solid #111;
    border-left: 3px solid #111;
}

.has-value .icon
{
    display: none;
}

.file-name
{
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 8px;
    margin-left: 15px;
    padding-left: 26px;

    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);

    color: #000;
}

.file-name--img
{
    background: url('../img/icons/image.svg') no-repeat 0 2px/19px 19px;
}

input[type=checkbox]:checked + .label-check:before
{
    background: #f04441;
}

input[type=checkbox]:checked + .label-check:after
{
    display: block;
}

input[type=radio]:checked + .label-radio:before
{
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px #f04441;
}

input[type=radio]:checked + .catalog-filter__label-radio
{
    color: #fff;
    background: #f04441;
}

::-webkit-input-placeholder
{
    color: #b1b1b1;
}

::-moz-placeholder
{
    color: #b1b1b1;
}

:-moz-placeholder
{
    color: #b1b1b1;
}

:-ms-input-placeholder
{
    color: #b1b1b1;
}

.top-bar
{
    box-sizing: border-box;
    padding: 14px 4.77% 17px;

    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #111;
}

.breadcrumbs
{
    font-size: 15px;
    line-height: 24px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-bottom: 12px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.breadcrumbs__link
{
    display: block;

    box-sizing: border-box;
    margin-right: 13px;
    padding: 3px 16px;

    color: #fff;
    border: 1px solid rgba(232, 232, 232, .2);
    border-radius: 5px;
}

.pagination
{
    display: none;
}

.pagination.pagination--cards
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 100%;
    margin-bottom: 33px;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.pagination__item
{
    margin: 0 10px;
}

.pagination__link
{
    font-size: 14px;
    line-height: 32px;

    display: block;

    width: 31px;
    height: 32px;

    text-align: center;

    color: #fff;
    background: #f1ca6b;
}

.pagination__link:hover,
.pagination__link.active
{
    background: #f04441;
}

.main-nav
{
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #222222;
    visibility: hidden;
    overflow-y: auto;

    width: 265px;

    -webkit-transition: -webkit-transform .2s ease-out;
            transition: -webkit-transform .2s ease-out;
            transition:         transform .2s ease-out;
            transition:         transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);

    background: #111;
}

.main-nav.active
{
    visibility: visible;

    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.main-nav__item
{
    position: relative;

    border-bottom: 1px solid #222;
}

.main-nav__item--contacts .icon
{
    display: none;
    margin-right: 10px;
}

.main-nav__item.active
{
    border-color: transparent;
}

.main-nav__item.active .main-nav__submenu
{
    visibility: visible;

    height: auto;
    padding-bottom: 16px;

    opacity: 1;
}

.main-nav__item--child:after
{
    position: absolute;
    top: 30px;
    right: 23px;

    content: '';

    border: 4px solid transparent;
    border-top: 8px solid #3b3b3b;
}

.main-nav__item--child.active:after
{
    top: 22px;

    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);

    border-top: 8px solid #fff;
}

.main-nav__link
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    padding: 19px 23px;

    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;
    text-transform: uppercase;

    color: #fff;
}

.main-nav__link--color
{
    color: #f04441;
}

.main-nav__link--order
{
    text-transform: none;

    color: #f04441;
}

.main-nav__submenu
{
    visibility: hidden;

    height: 0;
    padding-bottom: 0;

    opacity: 0;
    border-bottom: 1px solid #222;
}

.main-nav__submenu-item
{
    position: relative;
}

.main-nav__submenu-item:before
{
    position: absolute;
    top: 13px;
    left: 0;

    width: 9px;
    height: 5px;

    content: '';

    background: #222;
}

.main-nav__submenu-item.active:before
{
    background: #f04441;
}

.main-nav__submenu-item.active .main-nav__add-menu
{
    visibility: visible;

    height: auto;

    opacity: 1;
}

.main-nav__submenu-link
{
    font-size: 16px;
    line-height: 35px;

    padding: 19px 23px;

    text-transform: uppercase;

    color: #fff;
}

.main-nav__add-menu
{
    visibility: hidden;

    height: 0;

    opacity: 0;
}

.main-nav__add-menu-item.active .main-nav__extra-menu
{
    visibility: visible;

    height: auto;
    padding: 3px 0;

    opacity: 1;
}

.main-nav__add-menu-link
{
    font-size: 16px;
    line-height: 35px;

    padding: 19px 23px;
    padding-left: 36px;

    color: #fff;
}

.main-nav__extra-menu
{
    visibility: hidden;

    height: 0;
    padding-bottom: 0;

    opacity: 0;
}

.main-nav__extra-menu-item.active a
{
    color: #f04441;
}

.main-nav__extra-menu a
{
    font-size: 15px;
    line-height: 30px;

    padding: 19px 23px;
    padding-left: 49px;

    color: #fff;
}

.main-nav__footer
{
    padding: 15px 23px;
}

.main-nav__footer-link
{
    font-size: 16px;
    line-height: 35px;

    display: block;

    padding-bottom: 2px;

    text-transform: none;

    color: #fff;
}

.icon
{
    display: inline-block;

    -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;
    vertical-align: middle;

    fill: currentColor;
}

.icon-expand
{
    display: none;

    margin-top: 6px;

    border: 4px solid transparent;
    border-top: 8px solid #b1b1b1;
}

.icon-expand.active
{
    margin-top: 0;

    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.icon--rub
{
    width: 22px;
    height: 20px;

    fill: #111;
}

.icon--calendar
{
    width: 18px;
    height: 18px;

    fill: #c8c8c8;
}

.icon--clock
{
    width: 19px;
    height: 19px;

    fill: #c8c8c8;
}

.icon--file
{
    width: 18px;
    height: 17px;

    fill: #c8c8c8;
}

.icon--pdf
{
    width: 21px;
    height: 24px;

    fill: #111;
}

.icon--vk
{
    width: 24px;
    height: 24px;

    fill: #4b75a2;
}

.icon--fb
{
    width: 24px;
    height: 24px;

    fill: #425e9c;
}

.icon--ggl
{
    width: 24px;
    height: 24px;

    fill: #dd4b39;
}

.icon--tw
{
    width: 24px;
    height: 24px;

    fill: #1da1f2;
}

.icon--ok
{
    width: 24px;
    height: 24px;

    fill: #f96200;
}

.icon--mw
{
    width: 24px;
    height: 24px;

    fill: #3d6cb0;
}

.icon--cart
{
    width: 13px;
    height: 13px;

    fill: #fff;
}

.icon--question
{
    width: 21px;
    height: 21px;

    fill: #b7b7b7;
}

.icon--arrow
{
    width: 15px;
    height: 11px;

    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);

    fill: #a2a2a2;
}

.icon--running
{
    width: 30px;
    height: 30px;

    fill: #b8b8b8;
}

.icon--delivery
{
    width: 33px;
    height: 31px;

    fill: #b8b8b8;
}

.icon--worker
{
    width: 36px;
    height: 34px;

    fill: #b8b8b8;
}

.icon--cash
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--visa
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--mastercard
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--paypal
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--webmoney
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--wallet
{
    width: 29px;
    height: 27px;

    fill: #b8b8b8;
}

.icon--thumb
{
    width: 17px;
    height: 17px;
    margin-right: 8px;

    fill: #fff;
}

.thumbs
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.thumbs--comment
{
    margin-top: 7px;
    margin-left: auto;

    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
}

.thumbs--blog-item
{
    margin-bottom: 40px;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.thumbs--blog-item .thumbs__item
{
    color: #fff;
}

.thumbs--blog-item .thumbs__item .icon
{
    fill: #fff;
}

.thumbs--footer
{
    margin-bottom: 29px;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.thumbs__item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    color: #f04441;

    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
}

.thumbs__item .icon
{
    fill: #f04441;
}

.thumbs__item--down
{
    margin-left: 22px;

    color: #111;

    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
            align-items: flex-end;
}

.thumbs__item--down .icon
{
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);

    fill: #111;
}

.thumbs__item--light
{
    color: #fff;
}

.thumbs__item--light .icon
{
    fill: #fff;
}

.social
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.social__link
{
    margin-left: 15px;
}

.social-likes
{
    font-size: 16px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    box-sizing: border-box;
    margin: 0 auto;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
}

.social-likes--blog-item
{
    padding: 0 25px;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.social-likes__btn
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 75px;
    height: 38px;
    margin-bottom: 10px;
    padding: 0 10px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    text-rendering: optimizeLegibility;
}

.social-likes__btn:not(:nth-of-type(4n))
{
    margin-right: 10px;
}

.social-likes__btn--fb
{
    background: #3b5998;
}

.social-likes__btn--fb:hover
{
    background: #344e86;
}

.social-likes__btn--fb svg
{
    width: 21px;
    height: 21px;
}

.social-likes__btn--tw
{
    background: #1da1f2;
}

.social-likes__btn--tw:hover
{
    background: #0d95e8;
}

.social-likes__btn--tw svg
{
    width: 26px;
    height: 21px;
}

.social-likes__btn--vk
{
    background: #507299;
}

.social-likes__btn--vk:hover
{
    background: #476688;
}

.social-likes__btn--vk svg
{
    width: 24px;
    height: 24px;
}

.social-likes__btn--ok
{
    background: #ee8208;
}

.social-likes__btn--ok:hover
{
    background: #d57507;
}

.social-likes__btn--ok svg
{
    width: 20px;
    height: 20px;
}

.social-likes__btn .icon
{
    fill: #fff;
}

.social-likes__counter
{
    font-size: 15px;
    line-height: 24px;

    color: #fff;
}/*
 * 	Default theme - Owl Carousel CSS File
 *//*
 *  Owl Carousel - Animate Plugin
 */.owl-carousel .animated
{
    -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;

    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

.owl-carousel .owl-animated-in
{
    z-index: 0;
}

.owl-carousel .owl-animated-out
{
    z-index: 1;
}

.owl-carousel .fadeOut
{
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
}/*
 * 	Owl Carousel - Auto Height Plugin
 */.owl-height
{
    -webkit-transition: height 500ms ease-in-out;
            transition: height 500ms ease-in-out;
}/*
 *  Owl Carousel - Core
 */.owl-carousel
{
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;

    display: none;

    width: 100%;

    -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-stage
{
    position: relative;

    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */;
}

.owl-carousel .owl-stage:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

.owl-carousel .owl-stage-outer
{
    position: relative;

    overflow: hidden;
    /* fix for flashing background */

    -webkit-transform: translate3d(0px, 0px, 0px);
    max-height: 500px;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);

    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
}

.owl-carousel .owl-item
{
    position: relative;

    float: left;

    min-height: 1px;

    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img
{
    display: block;
    margin: auto;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled
{
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot
{
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

     -khtml-user-select: none;
}

.owl-carousel.owl-loaded
{
    display: block;
}

.owl-carousel.owl-loading
{
    display: block;

    opacity: 0;
}

.owl-carousel.owl-hidden
{
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item
{
    visibility: hidden;
}

.owl-carousel.owl-drag:not(.main-slider) .owl-item
{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

}
.brands-slider.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
.brands-slider.owl-carousel.owl-drag .owl-item
{
    height: auto;
}
.brands-slider.owl-carousel .owl-item img{
    height: auto;
    width: auto;
    max-width: inherit;
}
.owl-carousel.owl-grab
{
    cursor: move;
    cursor: -webkit-grab;
    cursor:         grab;
}

.owl-carousel.owl-rtl
{
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item
{
    float: right;
}

.owl-carousel .owl-dots
{
    margin-top: 24px;

    text-align: center;

    -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-dot
{
    display: inline-block;

    cursor: pointer;
}

.owl-carousel .owl-dot span
{
    display: block;

    width: 11px;
    height: 11px;
    margin: 0 6px;

    -webkit-transition: opacity 200ms ease;
            transition: opacity 200ms ease;

    border-radius: 0;
    background: #111;

    -webkit-backface-visibility: visible;
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span
{
    background: #f04441;
}/* No Js */.no-js .owl-carousel
{
    display: block;
}/*
 * 	Owl Carousel - Lazy Load Plugin
 */.owl-carousel .owl-item .owl-lazy
{
    -webkit-transition: opacity 400ms ease;
            transition: opacity 400ms ease;

    opacity: 0;
}

.owl-carousel .owl-item img.owl-lazy
{
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.owl-carousel .owl-nav
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    content: '';
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);

    -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav [class*='owl-']
{
    font-size: 0;

    display: inline-block;

    width: 9px;
    height: 14px;
    margin: 0;

    cursor: pointer;

    color: #fff;
    background: transparent;
}

.owl-carousel .owl-nav .disabled
{
    cursor: default;

    opacity: .5;
}

.owl-carousel .owl-nav .owl-prev
{
    position: absolute;
    left: 14px;

    width: 8px;
    height: 8px;

    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-top: 2px solid #c8c8c8;
    border-left: 2px solid #c8c8c8;
}

.owl-carousel .owl-nav .owl-next
{
    position: absolute;
    right: 14px;

    width: 8px;
    height: 8px;

    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border-top: 2px solid #c8c8c8;
    border-right: 2px solid #c8c8c8;
}

.owl-thumbs
{
    font-size: 0;

    display: none;
    overflow: hidden;
    overflow-x: auto;

    text-align: center;
    white-space: nowrap;

    border-top: 1px solid #d5d5d5;
    background: #fff;
}

.owl-thumb-item
{
    display: inline-block;

    padding: 0;

    vertical-align: top;
}

.owl-thumb-item img
{
    display: block;

    width: 59px;
    height: 52px;
    margin: 17px 8px;

    border: 1px solid #d5d5d5;
}

.slider-counter
{
    font-size: 15px;

    position: absolute;
    z-index: 4;
    top: 25%;
    right: 45px;

    color: #b3b3b3;
}

.current-slide
{
    color: #fff;
}

.profile-menu
{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    overflow: hidden;

    box-sizing: border-box;
    width: 100%;
    margin: 27px 0 31px;
    padding-left: 4.77%;
}

.profile-menu__list
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    overflow-x: auto;

    width: auto;

    white-space: nowrap;

    border: 1px solid #d5d5d5;
    border-right: none;

    -webkit-overflow-scrolling: touch;
}

.profile-menu__item
{
    background: #fff;
}

.profile-menu__item .profile-menu__link
{
    color: #b1b1b1;
}

.profile-menu__link
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    box-sizing: border-box;
    padding: 15px 42px;

    border-right: 1px solid #d5d5d5;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.notificate
{
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;

    width: 23px;
    height: 23px;
    margin-left: 10px;

    text-align: center;

    color: #fff;
    border-radius: 50%;
    background: #f04441;
}

.profile-tab
{
    display: none;

    box-sizing: border-box;
    width: 100%;
}

.profile-tab__top
{
    padding: 0 4.77%;
}

.profile-tab__top-wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.profile-tab__btns
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-bottom: 22px;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.profile-tab__btn
{
    width: 180px;
    padding: 3px;
}

.profile-tab__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 19px;
}

.profile-tab__body
{
    position: relative;

    box-sizing: border-box;
    margin: 0 0 39px;
    padding: 42px 0 0;

    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.profile-tab__body--bonus
{
    padding: 0;
}

.profile-tab__body--docs
{
    padding: 0;
}

.profile-tab__body--order
{
    padding: 0;

    border: none;
    background: transparent;
}

.profile-tab__body--order-search
{
    margin-bottom: 49px;
    padding: 31px 0 33px;
}

.profile-tab__body--order-more
{
    margin-bottom: 100px;
    padding: 0;

    border: none;
    background: transparent;
}

.profile-tab__body--offers
{
    padding: 30px 0 0;
}

.profile-tab__body--subscribed
{
    margin-bottom: 48px;
    padding: 37px 0 42px;
}

.profile-tab__body--user
{
    margin-bottom: 50px;
    padding: 31px 0 40px;
}

.profile-tab__body--review
{
    margin-bottom: 56px;
    padding: 46px 0 0;
}

.profile-tab__body--review-form
{
    margin-bottom: 49px;
    padding: 33px 0 15px;
}

.profile-tab__body:before,
.profile-tab__body:after
{
    position: absolute;
    top: -1px;

    width: 5.263%;
    height: 100%;

    background: inherit;
}

.profile-tab__body:before
{
    left: -5.263%;

    border-top: inherit;
}

.profile-tab__body:after
{
    right: -5.263%;

    border-top: inherit;
}

.profile-bonus
{
    margin: 0 4.77%;

    border-bottom: 1px solid #d5d5d5;
}

.profile-bonus__card
{
    display: block;

    margin: 0 0 31px;
    padding-top: 42px;
}

.profile-bonus__card img
{
    width: 100%;
}

.profile-bonus__label
{
    font-size: 15px;
    line-height: 24px;
}

.profile-bonus__text
{
    font-size: 14px;
    line-height: 20px;

    padding-bottom: 36px;
}

.profile-bonus__text p
{
    max-width: 330px;
}

.profile-bonus__text .note
{
    margin: 12px 0 15px;

    color: #969696;
}

.profile-bonus__list
{
    margin-top: 6px;
}

.profile-bonus__image
{
    display: block;
    overflow: hidden;

    width: 100%;
    height: auto;
    margin-bottom: 19px;

    border-radius: 10px;
}

.profile-bonus__image img
{
    width: 100%;
    height: 100%;
}

.profile-bonus__image-wrapper
{
    padding: 32px 4.77% 20px;
}

.profile-order
{
    font-size: 15px;
    line-height: 24px;

    box-sizing: border-box;
    height: 69px;
    margin: 0 4.77% 12px;
    padding-right: 20px;
    padding-left: 30px;

    border: 1px solid #d5d5d5;
    background: #fff;
}

.profile-order.active
{
    height: auto;
}

.profile-order--more
{
    margin: 0;
    padding: 0 4.77%;

    border-bottom: none;
}

.profile-order--more .profile-order__wrapper
{
    padding: 0;
}

.profile-order--more .profile-order__group
{
    margin: 14px 0 19px;
}

.profile-order--more .profile-order__item
{
    font-size: 14px;

            flex-direction: row;

    margin-bottom: 7px;
    padding: 0;

    text-align: left;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.profile-order--more .profile-order__item--image
{
    margin-bottom: 12px;

    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
}

.profile-order__header
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    height: 69px;

    cursor: pointer;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.profile-order__preview
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    overflow: hidden;
}

.profile-order__subtitle
{
    font-size: 15px;
    line-height: 24px;

    margin-bottom: 13px;

    color: #b7b7b7;
}

.profile-order__status
{
    overflow: hidden;

    padding-right: 25px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-order__status--success
{
    position: relative;

    color: #319d26;
}

.profile-order__status--success:after
{
    position: absolute;
    top: 25%;
    right: 2px;

    width: 10px;
    height: 5px;

    content: '';
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 2px solid #319d26;
    border-left: 2px solid #319d26;
}

.profile-order__status--fail
{
    color: #f04441;
}

.profile-order__status--process
{
    color: #a4a3a3;
}

.profile-order__wrapper
{
    visibility: hidden;

    padding-top: 15px;

    opacity: 0;
    border-top: 1px solid #d5d5d5;
}

.profile-order__wrapper.active
{
    visibility: visible;

    opacity: 1;
}

.profile-order__item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
            flex-direction: column;

    margin-bottom: 16px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
}

.profile-order__item--image
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    box-sizing: border-box;

    border: 1px solid #d5d5d5;
}

.profile-order__item--image .profile-order__item-wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
            flex-direction: column;

    padding-top: 15px;
    padding-right: 16px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}

.profile-order__item--image .profile-order__item-title
{
    font-size: 15px;
    line-height: 21px;

    display: block;

    max-width: 190px;
    margin-bottom: 15px;

    color: #111;
}

.profile-order__item--image .profile-order__item-info
{
            flex-direction: row-reverse;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
}

.profile-order__item-title
{
    font-size: 14px;
    line-height: 24px;
}

.profile-order__item-info
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.profile-order__image
{
    display: block;

    box-sizing: border-box;
    width: 130px;
    height: 112px;
    margin-right: 20px;

    border-right: 1px solid #d5d5d5;
}

.profile-order__image img
{
    width: 100%;
}

.profile-order__price
{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    display: inline-block;

    box-sizing: border-box;
    margin-left: 5px;
    padding-right: 14px;

    vertical-align: top;
}

.profile-order__price:after
{
    position: absolute;
    top: .3125em;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.profile-order__footer
{
    padding: 21px 0 30px;

    border-top: 1px solid #d5d5d5;
}

.profile-order__footer--more
{
    padding: 4px 0 20px;

    border: none;
}

.profile-order__footer--more .profile-order__sum
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
}

.profile-order__delivery
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.profile-order__delivery-price
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    display: inline-block;

    margin-bottom: 16px;
    margin-left: 5px;
    padding-right: 16px;

    vertical-align: top;
}

.profile-order__delivery-price:after
{
    position: absolute;
    top: .25em;
    right: 0;

    width: .65em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.profile-order__sum-price
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    display: inline-block;

    margin-bottom: 23px;
    margin-left: 5px;
    padding-right: 16px;

    vertical-align: top;
}

.profile-order__sum-price:after
{
    position: absolute;
    top: .25em;
    right: 0;

    width: .65em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.profile-order__btn
{
    width: 180px;
    padding: 3px 0;
}

.order-tracking
{
    padding: 0 4.77%;
}

.order-tracking__field
{
    margin-bottom: 19px;
}

.order-tracking__btn
{
    width: 100%;
    padding: 6px 30px;

    background: #111;
}

.order-path
{
    display: none;

    height: 0;
    margin-top: 35px;
    padding: 0 4.77%;
}

.order-path.active
{
    display: block;

    height: auto;
}

.order-path__list
{
    margin-top: 15px;
}

.order-path__item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    box-sizing: border-box;
    padding: 20px 0;

    text-align: left;

    border-top: 1px solid #d5d5d5;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.order-path__item-name
{
    position: relative;
}

.order-path__item-name--success
{
    position: relative;

    padding-right: 30px;

    color: #319d26;
}

.order-path__item-name--success:after
{
    position: absolute;
    top: 25%;
    right: 2px;

    width: 10px;
    height: 5px;

    content: '';
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 2px solid #319d26;
    border-left: 2px solid #319d26;
}

.topic-articles
{
    padding-bottom: 19px;

    background: #fff;
}

.topic-articles--card
{
    border-bottom: 1px solid #d5d5d5;
}

.topic-articles--card .topic-articles__slider:after
{
    background: none;
}

.topic-articles--card .topic-articles__text
{
    padding: 18px 4.77% 25px;
}

.topic-articles__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    margin: 0 4.77%;
    padding: 30px 0 26px;

    text-align: center;

    color: #111;
    border-bottom: 1px solid #d5d5d5;
}

.topic-articles__text
{
    font-size: 18px;
    line-height: 24px;

    padding: 24px 4.77% 28px;
}

.topic-articles__slider
{
    position: relative;

    padding-bottom: 10px;
}

.topic-articles__slider .owl-dots
{
    display: none;
}

.topic-articles__item
{
    display: block;

    box-sizing: border-box;
    width: 180px;
    padding: 8px 11px 24px;

    border: 1px solid #d5d5d5;
    background: -webkit-linear-gradient(top, #f1f1f1 60%, #fff 70%);
    background:         linear-gradient(to bottom, #f1f1f1 60%, #fff 70%);
}

.topic-articles__item-title
{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    margin-bottom: 18px;

    text-align: left;
    height: 45px;
    color: #111;
}

.topic-articles__image
{
    overflow: hidden;

    width: 143px;
    height: 143px;
    margin: 0 auto;

    border-radius: 50%;
}

.topic-articles__image img
{
    width: 100%;
}

.profile-offer
{
    margin: 0 4.77%;
}

.profile-offer__image
{
    display: block;
    overflow: hidden;

    width: 100%;
    height: auto;
    margin-bottom: 19px;

    border-radius: 10px;
}

.profile-offer__image img
{
    width: 100%;
    height: 100%;
}

.profile-offer__image-wrapper
{
    padding: 25px 0 15px;
}

.profile-offer__catalog
{
    padding-top: 28px;
}

.profile-review
{
    padding: 0 4.77% 48px;

    text-align: center;
}

.profile-review__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    display: block;

    margin-bottom: 17px;
}

.profile-review p
{
    font-size: 15px;
    line-height: 24px;
}

.profile-review__btn
{
    font-size: 16px;
    line-height: 24px;

    box-sizing: border-box;
    width: 230px;
    margin: 31px auto 0;
    padding: 12px 10px;

    text-transform: none;
}

.profile-review__catalog
{
    padding-top: 31px;
}

.profile-review__catalog p
{
    font-size: 18px;
    line-height: 24px;
}

.profile-gift
{
    padding: 0 4.77%;
    padding-bottom: 28px;

    text-align: center;
}

.profile-gift__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    display: block;

    margin-bottom: 12px;
}

.profile-gift p
{
    font-size: 15px;
    line-height: 24px;
}

.profile-callback
{
    padding: 35px 4.77% 53px;

    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.profile-callback__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    display: block;

    margin-bottom: 16px;

    text-align: center;
}

.profile-callback p
{
    font-size: 15px;
    line-height: 24px;

    text-align: center;
}

.profile-callback__btn
{
    font-size: 16px;
    line-height: 24px;

    box-sizing: border-box;
    width: 272px;
    margin: 22px auto 0;
    padding: 12px 10px;

    text-transform: none;
}

.profile-callback__catalog
{
    padding-top: 31px;
}

.profile-callback__catalog p
{
    font-size: 18px;
    line-height: 24px;
}

.profile-user
{
    padding: 0 4.77%;
}

.profile-user--cart
{
    box-sizing: border-box;
    padding: 0;
}

.profile-user__field-wrapper
{
    position: relative;
}

.profile-user__field-wrapper:not(:last-of-type)
{
    margin-bottom: 12px;
}

.profile-user__field-wrapper--icon .icon
{
    position: absolute;
    top: 20%;
    right: 13px;

    content: '';
}

.profile-user__field
{
    padding: 6px 15px 5px;
}

.profile-user__group
{
    position: relative;

    margin-bottom: 7px;
    padding: 67px 30px 30px;

    border: 1px solid #d5d5d5;
    background: #fff;
}

.profile-user__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    top: 22px;

    margin-bottom: 11px;
}

.profile-user .label-file
{
    margin-bottom: 12px;
    padding: 6px 15px 5px;
}

.profile-user .field-select
{
    margin-bottom: 12px;
}

.profile-user__btn
{
    font-size: 16px;
    line-height: 24px;

    box-sizing: border-box;
    width: 163px;
    margin-top: 28px;
    padding: 12px 10px;

    text-transform: none;
}

.profile-user__textarea
{
    position: relative;
}

.profile-user__footer .profile-user__btn
{
    margin-top: 21px;
}

.profile-user__text
{
    font-size: 14px;
    line-height: 20px;

    margin-top: 22px;

    color: #969696;
}

.profile-user__text a
{
    color: #000;
}

.profile-subscribed
{
    padding: 0 4.77%;
}

.profile-subscribed__text
{
    font-size: 15px;
    line-height: 24px;

    margin-bottom: 20px;
}

.profile-subscribed__btn
{
    font-size: 16px;
    line-height: 24px;

    box-sizing: border-box;
    width: 163px;
    margin-top: 38px;
    padding: 12px 10px;

    text-transform: none;
}

.profile-docs
{
    margin: 0 20px;
    padding: 30px 4.77% 0;

    border-top: 1px solid #d5d5d5;
}

.profile-docs:first-child
{
    border: none;
}

.profile-docs__title
{
    font-size: 18px;
    line-height: 24px;
}

.profile-docs__wrapper
{
    overflow: hidden;

    margin-top: 36px;
    padding-bottom: 33px;
}

.profile-docs__wrapper .owl-stage
{
    padding-left: 20px;
}

.profile-docs__link
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 131px;
    padding-top: 147px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-docs__link:before
{
    font-size: 29px;
    font-weight: 700;
    line-height: 1px;

    position: absolute;
    top: 0;
    left: 0;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 131px;
    height: 131px;

    content: '';
    text-transform: uppercase;

    color: #fff;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.profile-docs__link--pdf:before
{
    content: 'pdf';

    background: #f04441;
}

.profile-docs__link--pdf:after
{
    position: absolute;
    top: 0;
    right: 0;

    width: 22px;
    height: 22px;

    content: '';

    background: -webkit-linear-gradient(45deg, #c11916 52%, #fff 52%);
    background:         linear-gradient(45deg, #c11916 52%, #fff 52%);
}

.profile-docs__link--doc:before
{
    content: 'doc';

    background: #209fd4;
}

.profile-docs__link--doc:after
{
    position: absolute;
    top: 0;
    right: 0;

    width: 22px;
    height: 22px;

    content: '';

    background: -webkit-linear-gradient(45deg, #0b74a0 52%, #fff 52%);
    background:         linear-gradient(45deg, #0b74a0 52%, #fff 52%);
}

.profile-docs__link--folder:before
{
    box-sizing: border-box;

    background: -webkit-linear-gradient(top, #cea200 51px, #fac917 51px);
    background:         linear-gradient(180deg, #cea200 51px, #fac917 51px);
}

.profile-docs__link--folder:after
{
    position: absolute;
    top: 0;
    left: 0;

    width: 131px;
    height: 22px;

    content: '';

    background: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
    background:         linear-gradient(90deg, transparent 50%, #fff 50%);
}

.products
{
    padding: 24px 0 13px;
}

.products:first-of-type
{
    padding: 19px  0 17px;
}

.products:not(:last-of-type)
{
    border-bottom: 1px solid #d5d5d5;
}

.products-bg
{
    background: #fff;
}

.products__title
{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    display: inline-block;

    margin-bottom: 23px;

    vertical-align: top;

    border-bottom: 1px solid #f04441;
}

.products .wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin: 0 -10px;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.products__item
{
    position: relative;

    box-sizing: border-box;
    width: 180px;
    height: 198px;
    margin: 0 10px 18px;

    border: 1px solid #d5d5d5;
}

.products__item:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    height: 100%;

    content: '';

    background: -webkit-linear-gradient(bottom, #fff 5%, transparent 50%);
    background:         linear-gradient(to top, #fff 5%, transparent 50%);
}

.products__item img
{
    width: 100%;
    height: 100%;
}

.products__item-footer
{
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 17px;
    left: 18px;

    padding-bottom: 6px;

    border-bottom: 1px solid #f04441;
}

.products__item-title
{
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;

    max-width: 132px;
}

.catalog
{
    padding: 27px 0 21px;
}

.catalog-bg
{
    background: #fff;
}

.catalog-sort
{
    margin-bottom: 30px;
}

.catalog-sort__btn
{
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    margin-bottom: 11px;
    padding: 10px 20px;

    text-transform: none;
}

.catalog-sort__item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.catalog-sort__item--show
{
    display: none;
}

.catalog-sort__text
{
    display: none;
}

.catalog-filter
{
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;

    overflow-y: auto;

    width: 264px;
    height: 100vh;

    -webkit-transition: -webkit-transform .2s ease-out;
            transition: -webkit-transform .2s ease-out;
            transition:         transform .2s ease-out;
            transition:         transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);

    background: #fff;
}

.catalog-filter.active
{
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.catalog-filter__group
{
    font-size: 0;

    position: relative;

    padding: 35px 20px 19px;
    padding-right: 0;

    border-top: 1px solid #d5d5d5;
}

.catalog-filter__group:last-of-type
{
    border-bottom: 1px solid #d5d5d5;
}

.catalog-filter__group--menu
{
    display: none;
}

.catalog-filter__menu
{
    width: 100%;
}

.catalog-filter__submenu
{
    visibility: hidden;

    height: 0;
    padding-bottom: 0;

    opacity: 0;
    background: #f1f1f1;
}

.catalog-filter__submenu-link
{
    font-size: 15px;
    line-height: 24px;

    position: relative;

    display: block;

    margin-bottom: 6px;
    padding-left: 29px;

    color: #919090;
}

.catalog-filter__submenu-link:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 23px;
    height: 1px;

    content: '';
    -webkit-transition: all .2s linear;
            transition: all .2s linear;

    background: #d5d5d5;
}

.catalog-filter__submenu-item.active .catalog-filter__submenu-link
{
    color: #111;
}

.catalog-filter__submenu-item.active .catalog-filter__submenu-link:before
{
    background: #111;
}

.catalog-filter__submenu-item:last-child .catalog-filter__submenu-link
{
    margin-bottom: 0;
}

.catalog-filter__item
{
    border-bottom: 1px solid #d5d5d5;
}

.catalog-filter__item.active
{
    border-bottom: none;
    background: #f1f1f1;
}

.catalog-filter__item.active + .catalog-filter__item
{
    border-top: 1px solid #d5d5d5;
}

.catalog-filter__item.active .catalog-filter__submenu
{
    position: relative;
    z-index: 9;

    visibility: visible;

    height: auto;
    padding-bottom: 16px;

    opacity: 1;
}

.catalog-filter__item:last-of-type
{
    border-bottom: none;
}

.catalog-filter__link
{
    font-size: 16px;
    line-height: 24px;

    display: block;

    padding: 10px 20px;
}

.catalog-filter__title
{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    top: 11px;
    left: 0;

    display: block;

    box-sizing: border-box;
    width: 100%;
    padding-left: 20px;
}

.catalog-filter__wrapper
{
    margin-top: 17px;
}

.catalog-filter__label
{
    font-size: 16px;
    line-height: 24px;

    margin-top: 6px;
}

.catalog-filter__label-star
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-top: 11px;
    padding-top: 2px;

    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.catalog-filter__label-star .jq-star
{
    margin-right: 3px;
}

.catalog-filter__label-radio
{
    font-size: 12px;
    font-weight: 700;
    line-height: 31px;

    display: inline-block;

    width: 94px;
    height: 31px;

    cursor: pointer;
    text-align: center;
    vertical-align: top;
    text-transform: uppercase;

    color: #111;
    border-radius: 5px;
    background: #dfdfdf;
}

.catalog-filter__label-radio:nth-of-type(even)
{
    margin-left: 25px;
}

.catalog-filter__label span
{
    color: #c4c4c4;
}

.catalog-filter__more
{
    font-size: 15px;
    line-height: 24px;

    display: block;

    margin-top: 14px;

    text-decoration: underline;

    color: #a2a2a2;
}

.catalog-filter__footer
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 23px 20px 31px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.catalog-filter__btn
{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    width: 214px;
    min-height: 43px;

    text-transform: none;
}

.catalog-filter .btn--transp
{
    margin-top: 10px;

    border: 1px solid #d5d5d5;
}

.catalog .wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin: 0 -10px;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.catalog-item
{
    position: relative;

    box-sizing: border-box;
    width: 178px;
    margin: 0 10px 16px;

    -webkit-transition: box-shadow .2s ease-out;
            transition: box-shadow .2s ease-out;

    border: 1px solid #d5d5d5;
    background: #fff;
}

.catalog-item--new:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Новинка';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #111;
}

.catalog-item--new:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #111;
}

.catalog-item--discount:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Скидка';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #f04441;
}

.catalog-item--discount:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #f04441;
}

.catalog-item--gift:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Подарок';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #f04441;
}

.catalog-item--gift:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #f04441;
}

.catalog-item__rating
{
    position: absolute;
    top: 13px;
    left: 13px;
}

.catalog-item__image
{
    display: block;

    width: 100%;
    height: 136px;
    margin: 0 auto;
}

.catalog-item__image img
{
    width: 100%;
    height: 100%;
}

.catalog-item__title
{
    font-size: 14px;
    line-height: 20px;

    display: block;

    box-sizing: border-box;
    width: 100%;
    padding: 0 16px 8px;
    height: 65px;
    overflow: hidden;
}

.catalog-item__footer
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 7px 8px 10px 16px;

    border-top: 1px solid #d5d5d5;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.catalog-item__price
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    padding-right: 20px;
}

.catalog-item__price:after
{
    position: absolute;
    top: .3125em;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.catalog-item__price-old
{
    font-size: 13px;
    font-weight: 400;
    line-height: .6;

    position: relative;

    text-decoration: line-through;

    opacity: .4;
}

.catalog-item__price-old:after
{
    position: absolute;
    top: 0;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.catalog-item__cart
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 38px;
    height: 31px;

    color: transparent;
    border-radius: 5px;
    background: #f04441;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.catalog-item__cart span
{
    display: none;
}

.catalog__btn
{
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    margin: 3px 10px 11px;
    padding: 10px 20px;

    text-transform: none;

    background: #111;
}

.similar-products
{
    padding: 18px 0 27px;

    background: #f1f1f1;
}

.similar-products__top
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-bottom: 17px;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.similar-products__title
{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.similar-products__btn
{
    font-size: 11px;
    line-height: 24px;

    position: relative;

    padding: 3px 10px;
    padding-right: 27px;

    text-transform: uppercase;

    color: #c8c8c8;
    background: #fff;
}

.similar-products__btn:before,
.similar-products__btn:after
{
    position: absolute;
    top: 50%;
    right: 8px;

    width: 15px;
    height: 1px;

    content: '';
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;

    background: #c8c8c8;
}

.similar-products__btn:before
{
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.similar-products__btn:after
{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.similar-products--order
{
    position: relative;

    padding: 0 0 39px;

    background: #fff;
}

.similar-products--order:after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    width: -webkit-calc(100% - 9.54%);
    width:         calc(100% - 9.54%);
    height: 1px;

    content: '';
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);

    background: #d5d5d5;
}

.similar-products--order p
{
    font-size: 18px;
    line-height: 24px;

    margin: 0 4.77%;
    padding: 21px 0 24px;

    border-top: 1px solid #d5d5d5;
}

.similar-products--order .similar-products__slider
{
    position: relative;
}

.similar-products--order + .similar-products--profile p
{
    border-top: none;
}

.similar-products--order + .similar-products--profile:after
{
    display: none;
}

.similar-products--profile
{
    position: relative;

    padding: 0 0 39px;

    background: #fff;
}

.similar-products--profile:after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    width: -webkit-calc(100% - 9.54%);
    width:         calc(100% - 9.54%);
    height: 1px;

    content: '';
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);

    background: #d5d5d5;
}

.similar-products--profile p
{
    font-size: 18px;
    line-height: 24px;

    margin: 0 4.77%;
    padding: 21px 0 24px;

    border-top: 1px solid #d5d5d5;
}

.similar-products--profile .similar-products__slider
{
    position: relative;
}

.similar-products--profile + .similar-products--profile p
{
    border-top: none;
}

.similar-products--profile + .similar-products--profile:after
{
    display: none;
}

.similar-products--gift
{
    padding: 46px 0 40px;
}

.similar-products--gift:after
{
    display: none;
}

.similar-products--gift p
{
    padding: 30px 0 29px;
}

.similar-item
{
    position: relative;

    box-sizing: border-box;
    width: 178px;
    margin: 0;

    -webkit-transition: box-shadow .2s ease-out;
            transition: box-shadow .2s ease-out;

    border: 1px solid #d5d5d5;
    background: #fff;
}

.similar-item--new:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Новинка';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #111;
}

.similar-item--new:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #111;
}

.similar-item--discount:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Скидка';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #f04441;
}

.similar-item--discount:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #f04441;
}

.similar-item--gift:before
{
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 13px;
    right: -1px;

    width: 67px;
    height: 24px;

    content: 'Подарок';
    text-align: center;
    text-transform: uppercase;

    color: #111;
    background: #fac917;
}

.similar-item--gift:after
{
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 58px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #fac917;
}

.similar-item--single
{
    width: 280px;
    margin: 0 auto 64px;
}

.similar-item--single:before
{
    font-size: 12px;
    font-weight: 700;

    top: 19px;

    width: 80px;
}

.similar-item--single:after
{
    top: 21px;
    right: 70px;

    width: 17px;
    height: 17px;
}

.similar-item--single .similar-item__image
{
    width: 278px;
    height: 215px;
}


.similar-item--single .similar-item__title
{
    font-size: 16px;
    line-height: 24px;

    padding-top: 4px;
}

.similar-item__rating
{
    position: absolute;
    top: 13px;
    left: 13px;
}

.similar-item__image
{
    display: block;

    width: 100%;
    height: 136px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.similar-item__image picture{
    flex-grow: 1;
}
.similar-item__image img
{
    width: 100%;
}

.similar-item__title
{
    font-size: 14px;
    line-height: 20px;

    display: block;
    height: 90px;
    box-sizing: border-box;
    width: 100%;
    padding: 0 16px 8px;
}

.similar-item__footer
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 7px 8px 10px 16px;

    border-top: 1px solid #d5d5d5;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.similar-item__price
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    padding-right: 20px;
}

.similar-item__price:after
{
    position: absolute;
    top: .3125em;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.similar-item__cart
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 38px;
    height: 31px;

    color: transparent;
    border-radius: 5px;
    background: #f04441;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.similar-item__cart span
{
    display: none;
}

.similar-item__btn
{
    font-size: 12px;
    font-weight: 700;
    line-height: 31px;

    box-sizing: border-box;
    width: 154px;
    height: 31px;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    border-radius: 5px;
    background: #f04441;
}

.item-card__gallery
{
    position: relative;

    margin-top: 27px;
    margin-bottom: 12px;

    background: #fff;
}

.item-card__gallery--new:before
{
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;

    position: absolute;
    z-index: 2;
    top: 16px;
    right: 0;

    width: 79px;
    height: 24px;

    content: 'Новинка';
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: #111;
}

.item-card__gallery--new:after
{
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 71px;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #111;
}

.item-card__rating
{
    position: absolute;
    top: 16px;
    left: 14px;
}

.item-card__slider
{
    border: 1px solid #d5d5d5;
}

.item-card__image
{
    position: relative;

    box-sizing: border-box;
    width: 100%;
}

.item-card__image--light
{
    background: #fff;
}

.item-card__image--dark
{
    background: #111;
}

.item-card__bg
{
    position: absolute;
    z-index: 2;
    bottom: 14px;
    left: 0;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 100%;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.item-card__color
{
    width: 21px;
    height: 21px;
    margin: 0 6px;

    cursor: pointer;

    border: 1px solid #d5d5d5;
    border-radius: 50%;
}

.item-card__color--light
{
    background: #fff;
}

.item-card__color--dark
{
    background: #111;
}

.item-card__thumb
{
    display: none;
}

.item-card__info
{
    margin-bottom: 17px;

    border: 1px solid #d5d5d5;
    background: #fff;
}

.item-card__header
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 14px 30px;

    color: #b7b7b7;
    border-bottom: 1px solid #d5d5d5;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
}

.item-card__code
{
    font-size: 14px;
    line-height: 24px;

    text-transform: uppercase;
}

.item-card__price
{
    font-size: 25px;
    font-weight: 700;
    line-height: 1;

    position: relative;

    margin-top: 4px;
    padding-right: 19px;

    color: #111;
}

.item-card__price:after
{
    position: absolute;
    top: .15em;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.item-card__btns
{
    padding: 16px 30px 17px;

    border-bottom: 1px solid #d5d5d5;
}

.item-card__btn
{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    padding: 12px;

    text-transform: none;
}

.item-card__btn .icon
{
    width: 17px;
    height: 17px;
    margin-left: 12px;
}

.item-card__btn--spec
{
    width: 84.25%;
    margin: 27px auto;
}

.item-card .btn--transp
{
    margin-top: 12px;

    border: 1px solid #d5d5d5;
}

.item-card__title
{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 8px;
}

.item-card__get
{
    padding: 21px 30px 0;
}

.item-card__get-item
{
    font-size: 15px;
    line-height: 24px;

    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 10px 0;

    text-align: left;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.item-card__get-item:not(:last-of-type)
{
    border-bottom: 1px solid #d5d5d5;
}

.item-card__get-name .icon
{
    display: none;
}

.item-card__get-price
{
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    position: relative;

    padding-right: 12px;
}

.item-card__get-price:after
{
    position: absolute;
    top: .15em;
    right: 0;

    width: .625em;
    height: .75em;

    content: '';

    background: url(../img/icons/rub.svg) no-repeat;
}

.item-card__get-value
{
    position: relative;
}

.item-card__get-value--success
{
    color: #319d26;
}

.item-card__pay
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 12px 30px;

    border-top: 1px solid #d5d5d5;
    background: #ededed;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.item-card__pay .icon--cash
{
    display: none;
}

.item-card__tabs
{
    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.item-card__tabs .container
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.item-card__tabs-btn
{
    font-size: 16px;
    line-height: 24px;

    padding: 13px 20px;

    color: #fff;
    background: #f04441;
}

.item-card__tabs-btn:not(:last-of-type)
{
    margin-right: 2px;
}

.item-card__tabs-btn.active
{
    color: #111;
    background: #fff;
}

.item-card__overview
{
    padding-bottom: 19px;

    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.item-card__text
{
    font-size: 15px;
    line-height: 24px;

    padding: 16px 0;
}

.item-card__text.hidden
{
    overflow: hidden;

    max-height: 61px;
}

.item-card__text.expand
{
    overflow: visible;

    max-height: 100%;
}

.item-card__spec--mini .item-card__spec-title
{
    padding: 16px 0 12px;
}

.item-card__spec--mini .item-card__spec-list
{
    padding: 10px 0 13px;

    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}

.item-card__spec-title
{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    padding: 13px 0 4px;

    color: #b7b7b7;
}

.item-card__spec-list
{
    padding: 0;
}

.item-card__spec-item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 3px 0;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
            align-items: baseline;
}

.item-card__spec-item .icon
{
    margin-left: 5px;
}

.item-card__spec-name
{
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.item-card__spec-name:after
{
    height: 1px;
    margin: 0 6px;

    content: '';

    border-bottom: 1px dotted #d0cfcf;

    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.item-card__spec-name .icon
{
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.item-card__caption
{
    font-size: 18px;
    line-height: 26px;

    max-width: 280px;
}

.item-card__data
{
    padding-top: 17px;
    padding-bottom: 19px;

    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.item-card__schemes
{
    position: relative;

    padding-top: 17px;
}

.item-card__schemes-slider
{
    margin-top: 10px;
}

.item-card__schemes img
{
    display: block;

    width: 380px;
    height: 280px;
}

.item-card__accs
{
    padding: 34px 0 39px;

    border-bottom: 1px solid #d5d5d5;
    background: #fff;
}

.rating
{
    z-index: 99;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.rating .jq-star
{
    margin-right: 2px;

    cursor: default;
}

.rating span
{
    line-height: 100%;

    margin-left: 4px;

    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
            order: 2;
}

.jq-stars
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.jq-star
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    cursor: pointer;
}

.jq-star-svg
{
    width: 100%;
    height: 100%;
}

.jq-star-svg path
{
    /* stroke: #000; */
    stroke-linejoin: round;
}

.modal
{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    display: none;
    overflow-y: auto;

    box-sizing: border-box;
    width: 100%;
    height: 100vh;

    background: #fff;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.modal--auth .modal__title
{
    margin-bottom: 10px;
}

.modal__body
{
    padding: 22px 20px 11px;
}

.modal__title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    margin-bottom: 21px;
}

.modal__form-wrapper
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.modal__hidden
{
    display: none;

    margin-bottom: 18px;
}

.modal__field
{
    margin-bottom: 12px;
}

.modal__field--id-doc
{
    margin-bottom: 8px;
}

.modal__label-check--contract
{
    margin: 0 0 14px;
}

.modal__label-check--remember
{
    margin-top: 15px;
}

.modal__btn
{
    font-size: 16px;
    line-height: 24px;

    width: 200px;
    margin-top: 9px;
    padding: 12px 10px;

    text-align: center;
    text-transform: none;
}

.modal__btn:disabled
{
    background: rgba(240, 68, 65, .4);
}

.modal__link
{
    font-size: 14px;
    line-height: 20px;

    display: block;

    margin-top: 7px;

    text-decoration: underline;

    color: #0486cf;
}

.modal__link + .modal__link
{
    margin-top: 10px;
}

.modal__footer
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    box-sizing: border-box;
    width: 100%;
    padding: 16px 20px 23px;

    border-top: 1px solid #d5d5d5;
    background: #fafafa;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.modal p
{
    font-size: 14px;
    line-height: 20px;
}

.modal .icon
{
    width: 24px;
    height: 24px;
}

.modal--show
{
    display: block;
}

#contract:checked ~ .modal__hidden
{
    display: block;
}

.overlay
{
    position: fixed;
    z-index: 9998;
    top: 0;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;

    background: rgba(0, 0, 0, .5);
}

.overlay--show
{
    display: block;
}/* GENERAL STRUCTURE RULES (do not edit this section) */.tooltip
{
    cursor: pointer;
}

.tooltip-container
{
    display: none;
}

.tooltip-close
{
    position: absolute;
    top: 8px;
    right: 11px;

    display: block;

    width: 20px;
    height: 20px;

    cursor: pointer;
}

.tooltip-close:before,
.tooltip-close:after
{
    position: absolute;
    top: 18px;
    left: 11px;

    width: 11px;
    height: 1px;

    content: '';

    background: #4c4c4c;
}

.tooltip-close:before
{
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.tooltip-close:after
{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.tooltip__list
{
    padding-right: 23px;
}

.tooltip__item
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
            align-items: baseline;
}

.tooltip__item p
{
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.tooltip__item p:after
{
    height: 1px;
    margin: 0 6px;

    content: '';

    border-bottom: 1px dotted #575656;

    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.tooltip__item .icon
{
    width: 18px;
    height: 18px;
    margin-left: 2px;

    fill: #888;
}

.tooltipster-base
{
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
    /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    pointer-events: none;
}

.tooltipster-box
{
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}

.tooltipster-content
{overflow: auto;
    /* prevents an overflow if the user adds padding to the div */

    box-sizing: border-box;max-width: 100%;
    /* these make sure we'll be able to detect any overflow */max-height: 100%;
}.tooltipster-ruler
{position: fixed;top: 0;right: 0;
    /* these let us test the size of the tooltip without overflowing the window */bottom: 0;left: 0;visibility: hidden;overflow: hidden;
}/* ANIMATIONS *//* Open/close animations *//* fade */.tooltipster-fade
{-webkit-transition-property: opacity                                                ;transition-property: opacity;

    opacity: 0;
}.tooltipster-fade.tooltipster-show
{
    opacity: 1;
}/* grow */.tooltipster-grow
{-webkit-transition-property: -webkit-transform                                                                                                                ;transition-property: -webkit-transform;transition-property:         transform;transition-property:         transform, -webkit-transform;
    -webkit-transform: scale(0, 0);transform: scale(0, 0);-webkit-backface-visibility: hidden;
}.tooltipster-grow.tooltipster-show
{-webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)                                                                ;transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -webkit-transform: scale(1, 1);transform: scale(1, 1);
}/* swing */.tooltipster-swing
{-webkit-transition-property: -webkit-transform                                                                                                                ;transition-property: -webkit-transform;transition-property:         transform;transition-property:         transform, -webkit-transform;-webkit-transform: rotateZ(4deg);transform: rotateZ(4deg);

    opacity: 0;
}.tooltipster-swing.tooltipster-show
{-webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4)                                                                                ;transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);-webkit-transform: rotateZ(0deg);transform: rotateZ(0deg);

    opacity: 1;
}/* fall */.tooltipster-fall
{-webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)                                                                ;transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -webkit-transition-property: top;transition-property: top;
}.tooltipster-fall.tooltipster-initial
{
    top: 0 !important;
}.tooltipster-fall.tooltipster-dying
{top: 0 !important;

    -webkit-transition-property: all                                                            ;transition-property: all;opacity: 0;
}/* slide */.tooltipster-slide
{-webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)                                                                ;transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -webkit-transition-property: left;transition-property: left;
}.tooltipster-slide.tooltipster-initial
{
    left: -40px !important;
}.tooltipster-slide.tooltipster-dying
{left: 0 !important;

    -webkit-transition-property: all                                                            ;transition-property: all;opacity: 0;
}/* Update animations *//* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important *//* fade */.tooltipster-update-fade
{
    -webkit-animation: tooltipster-fading 400ms                                    ;animation: tooltipster-fading 400ms;
}/* rotate */.tooltipster-update-rotate
{
    -webkit-animation: tooltipster-rotating 600ms                                    ;animation: tooltipster-rotating 600ms;
}/* scale */.tooltipster-update-scale
{
    -webkit-animation: tooltipster-scaling 600ms                                    ;animation: tooltipster-scaling 600ms;
}/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 *//* .tooltipster-box */.tooltipster-sidetip .tooltipster-box
{font-size: 14px;line-height: 20px;z-index: 9999;box-sizing: border-box;width: 380px;
    padding: 22px;color: #fff;background: #565656;background: #222;
}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box
{
    margin-top: 8px;
}.tooltipster-sidetip.tooltipster-left .tooltipster-box
{
    margin-right: 8px;
}.tooltipster-sidetip.tooltipster-right .tooltipster-box
{
    margin-left: 8px;
}.tooltipster-sidetip.tooltipster-top .tooltipster-box
{
    margin-bottom: 8px;
}/* .tooltipster-content *//* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */.tooltipster-sidetip .tooltipster-arrow
{position: absolute;

    overflow: hidden;
}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow
{top: 0;width: 20px;
    height: 10px; /* half the width, for centering */margin-left: -10px;
}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow
{top: 0;right: 0; /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */width: 10px;
    height: 20px;margin-top: -10px;
}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow
{top: 0;left: 0; /* same as .tooltipster-left .tooltipster-arrow */width: 10px;
    height: 20px;margin-top: -10px;
}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow
{
    bottom: 0;width: 20px;height: 10px;margin-left: -10px;
}/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border
{position: absolute;width: 0;
    height: 0;
}/* .tooltipster-arrow-background */.tooltipster-sidetip .tooltipster-arrow-background
{
    border: 10px solid transparent;
}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background
{top: 3px;left: 0;

    border-bottom-color: #222;
}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background
{top: 0;left: -3px;

    border-left-color: #222;
}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background
{top: 0;left: 3px;

    border-right-color: #222;
}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background
{top: -3px;left: 0;

    border-top-color: #222;
}/* .tooltipster-arrow-border */.tooltipster-sidetip .tooltipster-arrow-border
{top: 0;left: 0;

    border: 10px solid transparent;
}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border
{
    border-bottom-color: #222;
}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border
{
    border-left-color: #222;
}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border
{
    border-right-color: #222;
}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border
{
    border-top-color: #222;
}/* tooltipster-arrow-uncropped */.tooltipster-sidetip .tooltipster-arrow-uncropped
{
    position: relative;
}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped
{
    top: -10px;
}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped
{
    left: -10px;
}.cart
{
    display: none;
}.cart.active
{
    display: block;
}.cart-bg
{
    background: #c7c7c7;
}.cart__row--equal
{
    -webkit-box-align: stretch;-webkit-align-items: stretch;-ms-flex-align: stretch;align-items: stretch;
}.cart-steps
{
    display: -webkit-box                                            ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin: 26px 0 20px;border-left: 1px solid #d5d5d5;
}.cart-steps__item
{font-size: 0;

    position: relative;box-sizing: border-box;width: 15.5%;padding: 13px 0 11px;text-align: center;pointer-events: none;border-top: 1px solid #d5d5d5;border-bottom: 1px solid #d5d5d5;background: #f1f1f1;
}.cart-steps__item:before
{
    position: absolute;z-index: 1;top: 9px;right: -17px;width: 30px;height: 30px;content: '';-webkit-transform: rotate(45deg) skew(6deg, 6deg);transform: rotate(45deg) skew(6deg, 6deg);border-top: 1px solid #d5d5d5;border-right: 1px solid #d5d5d5;background: inherit;
}.cart-steps__item:last-of-type:not(.active)
{padding-right: 26px;
    padding-left: 23px;
}.cart-steps__item.active
{font-size: 16px;line-height: 24px;width: 48%;

    background: #fff;
}.cart-steps__item--success
{
    pointer-events: auto;
}.cart-steps__item--success:after
{
    position: absolute;z-index: 2;top: 50%;left: 53%;width: 11px;height: 6px;margin-top: -6px;content: '';-webkit-transform: rotate(-45deg);transform: rotate(-45deg);border-bottom: 2px solid #000;border-left: 2px solid #000;
}.cart-steps__item span
{margin-left: 5px;

    color: #f04441;
}.cart-wrapper
{
    margin-bottom: 14px;
}.cart-item
{font-size: 14px;

    position: relative;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 14px;text-align: left;background: #fff;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;
}.cart-item__wrapper
{
    display: -webkit-box                                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;flex-direction: column;padding-top: 15px;padding-right: 13px;-webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;
}.cart-item__image
{
    display: block;box-sizing: border-box;width: 130px;height: 112px;margin-right: 20px;border-right: 1px solid #d5d5d5;
}.cart-item__image img
{
    height: 100%;
}.cart-item__close
{font-size: 0;

    position: absolute;top: 12px;right: 8px;display: block;width: 11px;height: 11px;cursor: pointer;
}.cart-item__close:before,
.cart-item__close:after
{
    position: absolute;top: 5px;left: 0;width: 13px;height: 1px;content: '';background: #bdbdbd;
}.cart-item__close:before
{
    -webkit-transform: rotate(45deg)                                    ;transform: rotate(45deg);
}.cart-item__close:after
{
    -webkit-transform: rotate(-45deg)                                    ;transform: rotate(-45deg);
}.cart-item__title
{font-size: 15px;line-height: 21px;

    display: block;width: 88%;margin-bottom: 15px;color: #111;
}.cart-item__info
{
    display: -webkit-box                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;flex-direction: row-reverse;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-orient: horizontal;-webkit-box-direction: reverse;-webkit-flex-direction: row-reverse;-ms-flex-direction: row-reverse;
}.cart-item__count
{
    display: -webkit-box                                                                            ;display: -webkit-flex;display: -ms-flexbox;display:         flex;border: 1px solid #d5d5d5;border-radius: 5px;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
}.cart-item__count-btn
{
    display: block;box-sizing: border-box;width: 20px;height: 20px;padding: 0;text-align: center;
}.cart-item__count-field
{
    font: 14px 'Arimo', Arial, sans-serif;display: block;box-sizing: border-box;width: 44px;height: 20px;text-align: center;border: none;border-right: 1px solid #d5d5d5;border-left: 1px solid #d5d5d5;
}.cart-item__price
{font-size: 16px;font-weight: 700;line-height: 24px;

    position: relative;display: inline-block;box-sizing: border-box;margin-left: 5px;padding-right: 14px;text-align: right;vertical-align: top;
}.cart-item__price:after
{
    position: absolute;top: .3125em;right: 0;width: .625em;height: .75em;content: '';background: url(../img/icons/rub.svg) no-repeat;
}.cart-item__price-old
{
    display: none;
}.cart-discount
{box-sizing: border-box;margin-bottom: 7px;
    padding: 22px 30px 23px;border: 1px solid #d5d5d5;background: #fff;
}.cart-discount__title
{font-size: 20px;font-weight: 700;line-height: 24px;

    margin-bottom: 23px;
}.cart-discount__wrapper
{
    display: -webkit-box                                                                                                                            ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 18px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
}.cart-discount__field
{
    width: 182px;height: auto;padding: 3px 15px;
}.cart-discount__btn
{
    width: 120px;padding: 3px 10px;
}.cart-discount__btn:disabled
{
    background: #d5d5d5;
}.cart-discount__text
{
    font-size: 14px;line-height: 20px;color: #b1b1b1;
}.cart-delivery
{box-sizing: border-box;margin-bottom: 8px;
    padding: 22px 30px 10px;border: 1px solid #d5d5d5;background: #fff;
}.cart-delivery__title
{font-size: 20px;font-weight: 700;line-height: 24px;

    margin-bottom: 7px;
}.cart-delivery__item
{font-size: 15px;line-height: 24px;

    position: relative;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 17px 0 12px;text-align: left;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
}.cart-delivery__item:not(:last-of-type)
{
    border-bottom: 1px solid #d5d5d5;
}.cart-delivery__name
{font-size: 15px;line-height: 20px;max-width: 59%;
    margin-top: 0;padding-left: 25px;
}.cart-delivery__name:before
{
    top: 2px;
}.cart-delivery__price
{font-size: 16px;font-weight: 700;line-height: 1;

    position: relative;padding-right: 12px;
}.cart-delivery__price:after
{
    position: absolute;top: .15em;right: 0;width: .625em;height: .75em;content: '';background: url(../img/icons/rub.svg) no-repeat;
}.cart-delivery__price--km
{
    padding-right: 36px;
}.cart-delivery__price--km:after
{width: 1.45em;padding-left: .7em;

    content: '/км';
}.cart-delivery__value
{
    position: relative;
}.cart-delivery__value--success
{
    color: #319d26;
}.cart-summary
{box-sizing: border-box;margin-bottom: 37px;
    padding: 22px 30px 29px;border: 1px solid #d5d5d5;background: #fff;
}.cart-summary__title
{font-size: 20px;font-weight: 700;line-height: 24px;

    margin-bottom: 11px;
}.cart-summary__count
{
    margin-top: 11px;padding: 10px 0 11px;border-top: 1px solid #d5d5d5;
}.cart-summary__list
{
    padding: 24px 0 20px;border-top: 1px solid #d5d5d5;border-bottom: 1px solid #d5d5d5;
}.cart-summary__item
{
    display: -webkit-box                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 6px 0;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
}.cart-summary__total
{
    display: -webkit-box                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 22px 0 14px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
}.cart-summary__total-title
{
    font-weight: 700;
}.cart-summary__total-price
{font-size: 30px;font-weight: 700;

    position: relative;padding-right: 26px;
}.cart-summary__total-price:after
{
    position: absolute;top: .3em;right: 0;width: .625em;height: .75em;content: '';background: url(../img/icons/rub.svg) no-repeat;
}.cart-summary__price
{font-size: 16px;font-weight: 700;line-height: 1;

    position: relative;padding-right: 12px;
}.cart-summary__price:after
{
    position: absolute;top: .15em;right: 0;width: .625em;height: .75em;content: '';background: url(../img/icons/rub.svg) no-repeat;
}.cart-summary__btn
{font-size: 16px;width: 100%;
    padding: 12px;text-transform: none;
}.cart-summary__note
{font-size: 14px;line-height: 20px;

    margin-top: 14px;color: #b1b1b1;
}.cart-summary__note a
{text-decoration: underline;

    color: #111;
}.cart-payment
{box-sizing: border-box;margin-bottom: 8px;
    padding: 22px 0 0;border: 1px solid #d5d5d5;background: #fff;
}.cart-payment__title
{font-size: 20px;font-weight: 700;line-height: 24px;

    margin-bottom: 10px;padding: 0 30px;
}.cart-payment__item
{
    padding: 19px 22px 14px 30px;
}.cart-payment__item:last-of-type
{
    padding-bottom: 24px;
}.cart-payment__item.active
{
    background: #f7f7f7;
}.cart-payment__label-radio
{font-size: 15px;line-height: 24px;

    margin-top: 0;padding-left: 21px;
}.cart-payment__label-radio:before
{
    top: 4px;
}.cart-payment__note
{font-size: 14px;line-height: 20px;

    margin-top: 2px;padding-left: 21px;color: #b1b1b1;
}.cart-confirm
{box-sizing: border-box;margin-bottom: 10px;
    padding: 22px 0 0;border: 1px solid #d5d5d5;background: #fff;
}.cart-confirm__title
{font-size: 20px;font-weight: 700;line-height: 24px;margin-bottom: 18px;
    padding: 0 30px;
}.cart-confirm__subtitle
{font-size: 16px;font-weight: 700;line-height: 24px;

    margin: 13px 30px 10px;
}.cart-confirm__item
{font-size: 14px;line-height: 20px;

    display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 6px 30px 7px;text-align: left;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
}.cart-confirm__value
{width: 50%;

    text-align: right;
}.cart-confirm__map
{width: 100%;height: 190px;
    margin-top: 14px;background: #eaeaea;
}.blog-preview
{
    position: relative;margin-bottom: 51px;background: -webkit-linear-gradient(left, #f04441, #f08741);background:         linear-gradient(to right, #f04441, #f08741);
}.blog-preview--dark
{
    background: #222;
}.blog-preview--dark .blog-preview__link
{
    color: #f04441;
}.blog-preview--dark .thumbs__item
{
    color: #f04441;
}.blog-preview--dark .thumbs__item .icon
{
    fill: #f04441;
}.blog-preview--dark .thumbs__item--down
{
    color: #fff;
}.blog-preview--dark .thumbs__item--down .icon
{
    fill: #fff;
}.blog-preview:after
{
    position: absolute;right: 20px;bottom: -26px;left: 20px;width: auto;height: 1px;content: '';background: #d5d5d5;
}.blog-preview:last-of-type
{
    margin-bottom: 34px;
}.blog-preview:last-of-type:after
{
    display: none;
}.blog-preview__image
{
    width: 420px;height: 222px;
}.blog-preview__image img
{
    display: block;width: 100%;height: 100%;
}.blog-preview__descr
{font-size: 15px;line-height: 24px;box-sizing: border-box;padding: 21px 20px 23px;

    color: #fff;
}.blog-preview__top
{
    display: -webkit-box                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 21px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
}.blog-preview__title
{
    font-size: 25px;line-height: 35px;margin-bottom: 18px;
}.blog-preview__text
{
    margin-bottom: 24px;
}.blog-preview__link
{
    font-size: 16px;font-weight: 700;color: #222;
}.blog-item__intro
{box-sizing: border-box;width: 100%;min-height: 345px;padding: 33px 0 0;text-align: center;color: #fff;
    background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-xs@1x.jpg) no-repeat center/cover;background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-xs@1x.jpg) no-repeat center/cover;
}.blog-item__title
{
    font-size: 25px;line-height: 35px;max-width: 80%;margin: 0 auto 26px;
}.blog-item__pubdate
{font-size: 15px;line-height: 24px;

    display: block;margin-bottom: 35px;
}.blog-item__content
{font-size: 15px;line-height: 24px;

    padding: 22px 30px 2px;background: #fff;
}.blog-item__text
{
    margin-bottom: 23px;
}.blog-item__image
{
    width: 380px;height: 214px;margin: 5px -30px 19px;-webkit-box-flex: 1;-webkit-flex: 1 0 auto;-ms-flex: 1 0 auto;flex: 1 0 auto;
}.blog-item__term
{cursor: pointer;

    border-bottom: 1px dotted #f04441;
}.blog-item__cite
{font-size: 20px;line-height: 25px;

    position: relative;overflow: hidden;padding: 36px 30px 30px;text-align: center;color: #fff;background: #f04441;
}.blog-item__cite--light
{font-weight: 700;padding: 0 30px;color: #111;
    background: #fff;
}.blog-item__cite--light:before,
.blog-item__cite--light:after
{
    display: none;
}.blog-item__cite--light .blog-item__cite-text
{
    margin-bottom: 0;padding: 28px 0 8px;
}.blog-item__cite--light .blog-item__cite-text:before,
.blog-item__cite--light .blog-item__cite-text:after
{
    display: none;
}.blog-item__cite + .blog-item__content
{
    padding: 13px 30px 5px;
}.blog-item__cite-text
{
    position: relative;z-index: 2;padding: 33px 0;
}.blog-item__cite-text:before,
.blog-item__cite-text:after
{font-size: 56px;font-weight: 700;line-height: 0;

    position: absolute;z-index: 1;left: 50%;-webkit-transform: translate(-50%);transform: translate(-50%);color: #111;
}.blog-item__cite-text:before
{top: 14px;

    content: '\201c';
}.blog-item__cite-text:after
{bottom: -12px;

    content: '\201d';
}.blog-item__cite:before,
.blog-item__cite:after
{font-size: 325px;font-weight: 700;line-height: 1.25;

    position: absolute;z-index: 1;top: 50%;height: 100%;-webkit-transform: translateY(-50%);transform: translateY(-50%);color: #d03a37;
}.blog-item__cite:before
{left: -42px;

    content: '\201c';
}.blog-item__cite:after
{right: -42px;

    content: '\201d';
}.blog-item__slider
{
    position: relative;padding-bottom: 20px;background: #fff;
}.blog-item__slider .owl-nav
{
    top: 39%;
}.blog-item__slider .owl-nav .owl-prev
{
    left: 13px;
}.blog-item__slider .owl-nav .owl-next
{
    right: 13px;
}.blog-item__slider__image
{
    width: 280px;height: 214px;
}.blog-item__footer
{
    display: -webkit-box                                                                                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;flex-direction: column;padding: 22px 25px 14px;background: #fff;-webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;
}.reviews-cta
{
    margin: 27px 0 26px;padding: 23px 29px 27px;background: #111;
}.reviews-cta__title
{
    font-size: 30px;font-weight: 400;line-height: 1.2;margin-bottom: 6px;color: #fff;
}.reviews-cta__text
{
    font-size: 15px;line-height: 24px;margin-bottom: 18px;color: #b3b3b3;
}.reviews-cta__btn
{font-size: 16px;font-weight: 400;

    width: 230px;padding: 12px;text-transform: none;
}.reviews-item
{position: relative;margin-bottom: 43px;background: #fff;
    box-shadow: inset 0 0 32px 0 rgba(242, 135, 65, .7);
}.reviews-item:after
{
    position: absolute;right: 0;bottom: -23px;left: 0;width: auto;height: 1px;content: '';background: #d5d5d5;
}.reviews-item:last-of-type
{
    margin-bottom: 34px;padding-bottom: 0;
}.reviews-item:last-of-type:after
{
    display: none;
}.reviews-item__header
{box-sizing: border-box;
    padding: 36px 30px 11px;border-bottom: 1px solid #d5d5d5;
}.reviews-item__info
{
    margin-bottom: 24px;
}.reviews-item__label
{
    font-size: 15px;margin-bottom: 12px;color: #f04441;
}.reviews-item__title
{
    font-size: 30px;font-weight: 700;line-height: 1.2;margin-bottom: 9px;
}.reviews-item__caption
{
    font-size: 15px;line-height: 24px;
}.reviews-item__comment
{box-sizing: border-box;
    padding: 16px 30px 14px;border-bottom: 1px solid #d5d5d5;
}.reviews-item__comment--answer
{
    border-bottom: none;
}.reviews-item__comment--answer .reviews-item__author-name
{
    font-size: 20px;
}.reviews-item__comment--answer .reviews-item__text p
{
    margin-right: 0;padding-right: 20px;
}.reviews-item__comment-header
{
    display: -webkit-box                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 19px;
}.reviews-item__author
{
    display: -webkit-box                                            ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-transform: translateX(-8px);transform: translateX(-8px);
}.reviews-item__author-avatar
{overflow: hidden;width: 55px;height: 55px;
    margin-right: 23px;border-radius: 50%;
}.reviews-item__author-avatar img
{
    width: 100%;height: 100%;object-fit: cover;
}.reviews-item__author-info
{
    max-width: 75%;margin-top: 2px;
}.reviews-item__author-name
{
    font-size: 25px;font-weight: 400;line-height: 1.2;margin-bottom: 8px;
}.reviews-item__author-type
{
    font-size: 15px;color: #f04441;
}.reviews-item__author-text
{
    font-size: 15px;color: #b3b3b3;
}.reviews-item__text
{
    position: relative;
}.reviews-item__text p
{font-size: 15px;line-height: 24px;overflow-y: scroll;

    height: 200px;
}.reviews-item__text:after
{
    position: absolute;z-index: 2;bottom: 0;left: 0;width: 100%;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, .8) 5%, transparent 70%);background:         linear-gradient(to top, rgba(255, 255, 255, .8) 5%, transparent 70%);
}.reviews-item__btn
{font-size: 15px;font-weight: 400;

    position: relative;z-index: 3;width: auto;padding: 5px 10px;text-transform: none;color: #111;background: #e8e7e7;
}.reviews-item__gallery
{
    position: relative;box-sizing: border-box;padding: 13px 30px 20px;border-bottom: 1px solid #d5d5d5;
}.reviews-item__gallery-header
{
    display: -webkit-box                                                                                                                            ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 28px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
}.reviews-item__gallery-btn
{font-size: 15px;font-weight: 400;box-sizing: border-box;
    padding: 10px;padding: 5px 12px;text-transform: none;
}.reviews-item__slider
{
    position: relative;
}.reviews-item__slider .owl-nav
{
    top: 39%;
}.reviews-item__slider .owl-nav .owl-prev
{
    left: 23px;
}.reviews-item__slider .owl-nav .owl-next
{
    right: 23px;
}.comments
{
    padding-top: 10px;background: #fff;
}.comments__title
{font-size: 18px;font-weight: 400;line-height: 24px;

    display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 7px;text-align: center;color: #cecdcd;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
}.comments__title:before,
.comments__title:after
{width: 50px;height: 1px;

    content: '';background: #cecdcd;-webkit-box-flex: 1;-webkit-flex-grow: 1;-ms-flex-positive: 1;flex-grow: 1;
}.comments__title:before
{
    margin-right: 34px;
}.comments__title:after
{
    margin-left: 34px;
}.comments-item
{box-sizing: border-box;
    padding: 16px 30px 24px;
}.comments-item--answer
{
    padding-top: 21px;padding-bottom: 35px;background: #e1e1e1;
}.comments-item--answer .comments-item__author
{
    -webkit-transform: translateX(-13px)                                    ;transform: translateX(-13px);
}.comments-item--supplier
{
    padding: 39px 30px 35px;background: #f04441;
}.comments-item--supplier .comments-item__author
{margin-bottom: 23px;

    -webkit-transform: translateX(0)                                    ;transform: translateX(0);
}.comments-item--supplier .comments-item__author-name
{
    color: #fff;
}.comments-item--supplier .comments-item__author-type
{
    color: #111;
}.comments-item--supplier .comments-item__text p
{
    color: #fff;
}.comments-item__author
{
    display: -webkit-box                                                    ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 15px;-webkit-transform: translateX(-8px);transform: translateX(-8px);
}.comments-item__author-avatar
{overflow: hidden;width: 55px;height: 55px;
    margin-right: 23px;border-radius: 50%;
}.comments-item__author-avatar img
{
    width: 100%;height: 100%;object-fit: cover;
}.comments-item__author-info
{
    max-width: 75%;margin-top: 2px;
}.comments-item__author-name
{
    font-size: 25px;font-weight: 400;line-height: 1.2;margin-bottom: 8px;
}.comments-item__author-type
{
    font-size: 15px;color: #f04441;
}.comments-item__author-text
{
    font-size: 15px;color: #b3b3b3;
}.comments-item__pubdate
{
    font-size: 15px;line-height: 24px;color: #b3b3b3;
}.comments-item__text p
{
    font-size: 15px;line-height: 24px;
}@font-face
{
    font-family: 'Arimo';font-weight: 400;font-style: normal;src: url('../fonts/arimo-regular.woff2') format('woff2'), url('../fonts/arimo-regular.woff') format('woff');
}@font-face
{
    font-family: 'Arimo';font-weight: 700;font-style: italic;src: url('../fonts/arimo-bold-italic.woff2') format('woff2'), url('../fonts/arimo-bold-italic.woff') format('woff');
}@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi)
{
    .blog-item__intro
    {
        background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-xs@2x.jpg) no-repeat center/cover                        ;background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-xs@2x.jpg) no-repeat center/cover;
    }
}@media only screen and (min-width: 420px) and (max-width: 959px)
{
    .container.container--mobile
    {
        width: 100%;padding: 0;
    }.container.container--swipe-items
    {
        width: 100%;padding: 0;
    }.page-footer .subscribe-form:after
    {
        position: absolute;bottom: 0;left: 50%;width: 100vw;height: 1px;content: '';-webkit-transform: translateX(-50vw);transform: translateX(-50vw);background: #363636;
    }.thumbs--comment
    {
        display: none;
    }.social-likes--reviews .social-likes__btn:not(:nth-of-type(4n))
    {
        margin-right: 6px;
    }.item-card__schemes:before
    {
        position: absolute;top: 0;left: 50%;width: 100vw;height: 1px;content: '';-webkit-transform: translateX(-50vw);transform: translateX(-50vw);background: #d5d5d5;
    }
}@media only screen and (min-width: 960px)
{
    .container.container--full
    {
        width: 100%;padding: 0;
    }.container
    {
        width: 900px;
    }.container.container--swipe-items
    {
        width: 100%;padding: 0;
    }.print-btn
    {
        margin-top: -12px;
    }.close
    {top: 8px;right: 4px;

        width: 22px;height: 22px;
    }.close:before,
    .close:after
    {
        width: 18px;height: 2px;
    }.minus:before
    {
        width: 10px;height: 2px;
    }.plus:before,
    .plus:after
    {
        width: 10px;height: 2px;
    }.main-title
    {
        font-size: 36px;line-height: 1.2;
    }.logo
    {
        width: 250px;
    }.logo img
    {
        width: 204px;
    }.page-header__row
    {
        -webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;
    }.page-header__search-trigger
    {
        display: none;
    }.page-header__search
    {position: relative;z-index: 1;

        visibility: visible;margin-right: 16px;opacity: 1;
    }.page-header__search.active
    {width: auto;height: auto;

        background: transparent;
    }.page-header__search-btn .icon
    {
        width: 20px;height: 20px;fill: #a9a9a9;
    }.page-header__search-btn
    {
        top: 12px;right: 12px;
    }.page-header__search-field
    {font-size: 16px;

        width: 240px;height: 45px;color: #000;background: #fff;
    }.page-header__phone
    {font-size: 18px;font-weight: 700;

        margin-right: 16px;color: #fff;
    }.page-header__phone .icon--phone
    {
        margin-right: 7px;
    }.page-header__basket
    {
        margin-right: 30px;
        margin-left: 15px;
    }.page-header__toggle
    {
        width: 50px;height: 50px;padding: 0 10px;
    }.page-header__toggle:before
    {
        top: 30%;
    }.page-header__toggle:after
    {
        bottom: 31%;
    }.page-header__toggle--close:before
    {
        top: 48%;left: 20%;
    }.page-header__toggle--close:after
    {
        top: 46%;left: 20%;
    }.page-footer
    {
        padding: 37px 0 5px;text-align: left;
    }.page-footer .wrapper
    {margin: 0 -10px;
        padding: 0;
    }.page-footer__subscribe
    {box-sizing: border-box;width: 380px;margin-right: 10px;margin-left: 10px;

        -webkit-box-ordinal-group: 4;-webkit-order: 3;-ms-flex-order: 3;order: 3;
    }.page-footer__subscribe p
    {
        max-width: 320px;margin: 0 auto;
    }.copyright
    {box-sizing: border-box;width: 380px;margin-right: 10px;margin-left: 10px;
        padding: 0;padding-right: 50px;-webkit-box-ordinal-group: 2;-webkit-order: 1;-ms-flex-order: 1;order: 1;
    }.copyright__note
    {
        margin: 16px 0;
    }.field-select--value:after
    {
        top: 28%;right: -30px;width: 14px;height: 6px;
    }.label-check
    {
        margin-top: 10px;
    }.label-check--pers
    {
        margin-top: 30px;
    }.has-value:after
    {
        right: -30px;width: 14px;height: 6px;
    }.has-value .icon
    {
        display: inline-block;
    }.top-bar
    {
        padding: 17px 0 15px;
    }.breadcrumbs
    {font-size: 16px;

        margin-bottom: 13px;
    }.breadcrumbs__link
    {
        padding: 4px 20px;
    }.pagination.pagination--cards
    {
        margin-bottom: 47px;
    }.pagination
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;width: 100%;margin: 23px auto 22px;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.icon-expand
    {
        display: block;
    }.thumbs--blog-item
    {
        margin-bottom: 21px;
    }.thumbs__item--down
    {
        margin-left: 30px;
    }.social-likes--reviews
    {width: 180px;
        margin: 11px 0 0;padding-left: 20px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.social-likes--reviews .social-likes__btn
    {
        margin-right: 0;
    }.social-likes__btn
    {
        margin-bottom: 9px;
    }.owl-thumbs
    {
        display: block;
    }.slider-counter
    {
        top: 7%;right: 50px;
    }.current-slide
    {
        color: #111;
    }.profile-menu
    {
        margin: 34px 0 42px;padding-left: 0;
    }.profile-menu__item.active .profile-menu__link
    {
        color: #111;
    }.profile-menu__link
    {
        padding: 21px 42px;
    }.profile-tab__top
    {
        display: -webkit-box                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 0;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.profile-tab__btns
    {width: 380px;margin-bottom: 13px;

        -webkit-box-pack: end;-webkit-justify-content: flex-end;-ms-flex-pack: end;justify-content: flex-end;
    }.profile-tab__btn:last-child
    {
        margin-left: 20px;
    }.profile-tab__body
    {
        padding: 42px 30px 0;border: 1px solid #d5d5d5;
    }.profile-tab__body--bonus
    {
        margin-bottom: 48px;
    }.profile-tab__body--docs
    {margin-bottom: 52px;
        padding: 18px 0 0;
    }.profile-tab__body--order
    {margin-bottom: 71px;padding: 0;

        border: none;
    }.profile-tab__body--order-search
    {
        padding: 31px 30px 35px;
    }.profile-tab__body--order-more
    {
        margin-bottom: 50px;padding: 0;border: none;
    }.profile-tab__body--offers
    {
        padding: 36px 30px 0;
    }.profile-tab__body--subscribed
    {margin-bottom: 58px;
        padding: 36px 30px 34px;
    }.profile-tab__body--user
    {margin-bottom: 58px;
        padding: 31px 30px 27px;
    }.profile-tab__body--review
    {margin-bottom: 56px;
        padding: 77px 30px 0;
    }.profile-tab__body--review-form
    {margin-bottom: 63px;
        padding: 33px 40px 40px;
    }.profile-bonus
    {
        display: -webkit-box                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin: 0;padding: 0 0 40px;
    }.profile-bonus__card
    {width: 600px;
        margin: 0;padding-top: 5px;
    }.profile-bonus__text p
    {
        max-width: 200px;
    }.profile-bonus__text .note
    {
        margin: 12px 0 35px;
    }.profile-bonus__text .note
    {
        margin: 12px 0 38px;
    }.profile-bonus__image
    {
        width: 280px;
    }.profile-bonus__image--big
    {
        width: 430px;margin-right: 20px;
    }.profile-bonus__image-wrapper
    {
        display: -webkit-box                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 39px 45px 29px;
    }.profile-order
    {
        margin: 0 0 12px;padding: 0 30px;
    }.profile-order__status--success:after
    {
        top: 25%;right: 5px;width: 11px;height: 4px;
    }.profile-order__item--image .profile-order__item-wrapper
    {flex-direction: row;padding-top: 30px;

        -webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;
    }.profile-order__item--image .profile-order__item-title
    {
        font-size: 16px;line-height: 23px;
    }.profile-order__item--image .profile-order__item-info
    {flex-direction: row;margin-left: auto;

        -webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;
    }.profile-order__item--image .profile-order__price
    {
        -webkit-transform: translateX(-25%)                                                ;transform: translateX(-25%);
    }.profile-order__item
    {flex-direction: row;margin-bottom: 9px;

        -webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.profile-order__image
    {
        width: 185px;height: 120px;margin-right: 38px;
    }.profile-order__ammount
    {
        width: 80px;text-align: center;
    }.profile-order__price
    {width: 155px;margin-left: 0;margin-left: 20px;

        text-align: right;
    }.profile-order__footer
    {
        display: -webkit-box                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-top: 21px;padding-bottom: 17px;
    }.profile-order__footer--more
    {
        display: -webkit-box                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;flex-direction: column;margin-top: 0;padding: 0 0 4px;-webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;
    }.profile-order__footer--more .profile-order__sum
    {
        width: 350px;margin-left: auto;
    }.profile-order__footer--more .profile-order__sum-label
    {
        text-align: left;
    }.profile-order__delivery
    {
        width: 350px;margin-left: auto;
    }.profile-order__delivery-price
    {
        width: 150px;margin-left: 20px;text-align: right;
    }.profile-order__sum
    {
        margin-left: auto;text-align: right;
    }.profile-order__sum-price
    {
        width: 150px;margin-left: 20px;
    }.profile-order__btn
    {
        margin-left: auto;
    }.order-tracking
    {
        display: -webkit-box                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 0;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.order-tracking__field
    {
        width: 600px;margin-bottom: 0;
    }.order-tracking__btn
    {
        width: 200px;
    }.order-path
    {
        padding: 0;
    }.order-path__item-name--success:after
    {
        top: 25%;right: 5px;width: 11px;height: 4px;
    }.topic-articles
    {
        padding: 0 30px 0;border-right: 1px solid #d5d5d5;border-left: 1px solid #d5d5d5;
    }.topic-articles--card
    {border-right: none;
        border-left: none;
    }.topic-articles--card .topic-articles__text
    {font-size: 30px;

        padding: 32px 15px 33px;
    }.topic-articles__title
    {
        margin: 0;
    }.topic-articles__text
    {
        padding: 24px 43px 40px;
    }.topic-articles__slider
    {
        padding-bottom: 27px;
    }.topic-articles__slider:after
    {
        position: absolute;z-index: 2;top: 0;right: -1px;left: 0;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(right, #fff 0, transparent 15%, transparent 85%, #fff 100%);background:         linear-gradient(to left, #fff 0, transparent 15%, transparent 85%, #fff 100%);
    }.topic-articles__slider .owl-dots
    {
        display: block;
    }.topic-articles__item
    {
        width: 280px;padding: 21px 19px 47px;
    }.topic-articles__item-title
    {
        font-size: 16px;line-height: 24px;margin-bottom: 35px;
    }.topic-articles__image
    {
        width: 188px;height: 188px;
    }.profile-offer
    {
        margin: 0;
    }.profile-offer__title
    {
        padding-left: 50px;
    }.profile-offer__image
    {
        width: 280px;
    }.profile-offer__image--big
    {
        width: 430px;margin-right: 20px;
    }.profile-offer__image-wrapper
    {
        display: -webkit-box                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 22px 45px 25px;
    }.profile-review
    {
        padding: 0 0 48px;
    }.profile-review__title
    {
        max-width: 580px;margin: 0 auto 17px;
    }.profile-review p
    {
        max-width: 580px;margin: 0 auto;
    }.profile-review__btn
    {
        margin: 28px auto 0;
    }.profile-review__catalog
    {
        padding-top: 27px;text-align: center;
    }.profile-gift
    {
        padding: 0 0 29px;
    }.profile-gift__title
    {
        max-width: 580px;margin: 0 auto 12px;
    }.profile-gift p
    {
        max-width: 580px;margin: 0 auto;
    }.profile-callback
    {margin: 0 auto;
        padding: 35px 0;border-right: 1px solid #d5d5d5;border-left: 1px solid #d5d5d5;
    }.profile-callback__title
    {
        max-width: 430px;margin: 0 auto 16px;
    }.profile-callback__title br
    {
        display: none;
    }.profile-callback p
    {
        max-width: 430px;margin: 0 auto;
    }.profile-callback__catalog
    {
        padding-top: 27px;text-align: center;
    }.profile-user
    {width: 500px;
        padding: 0;
    }.profile-user--cart
    {
        width: 480px;
    }.profile-user--cart .has-value:after
    {
        right: 11px;
    }.profile-user--cart .has-value .icon
    {
        display: none;
    }.profile-user--cart .profile-user__group:last-of-type
    {
        margin-bottom: 41px;
    }.profile-user__group
    {
        margin-bottom: 14px;
    }.profile-user .label-file
    {
        width: 500px;
    }.profile-user .field-select
    {
        width: 500px;
    }.profile-user__textarea
    {
        width: 500px;
    }.profile-user__footer
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;max-width: 500px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.profile-user__text
    {
        max-width: 310px;margin-top: 18px;
    }.profile-subscribed
    {
        padding: 0;
    }.profile-subscribed__text
    {
        margin-bottom: 27px;
    }.profile-docs
    {margin: 0 30px;
        padding: 22px 20px 10px;
    }.profile-docs__wrapper .owl-stage
    {
        padding-left: 50px;
    }.profile-docs__link
    {
        width: 181px;padding-top: 197px;
    }.profile-docs__link:before
    {font-size: 40px;

        width: 180px;height: 180px;
    }.profile-docs__link--pdf:after
    {
        width: 30px;height: 30px;
    }.profile-docs__link--doc:after
    {
        width: 30px;height: 30px;
    }.profile-docs__link--folder:after
    {
        width: 180px;height: 30px;
    }.products
    {
        padding: 32px 0 31px;
    }.products:first-of-type
    {
        padding: 22px  0 17px;
    }.products__title
    {
        font-size: 30px;line-height: 1.2;margin-bottom: 27px;
    }.products__item
    {box-sizing: border-box;
        width: 280px;height: 309px;margin-right: 10px;margin-bottom: 20px;margin-left: 10px;
    }.products__item-footer
    {
        bottom: 20px;left: 25px;padding-bottom: 5px;
    }.products__item-title
    {
        max-width: 100%;
    }.catalog-sort
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 22px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
    }.catalog-sort__btn
    {
        display: none;
    }.catalog-sort__item .field-select
    {
        width: 200px;margin-left: 16px;
    }.catalog-sort__item--show
    {
        display: -webkit-box                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
    }.catalog-sort__item--show .field-select
    {
        width: 68px;margin-left: 13px;
    }.catalog-sort__text
    {font-size: 15px;

        display: block;
    }.catalog-item
    {box-sizing: border-box;
        width: 280px;margin-right: 10px;margin-bottom: 20px;margin-left: 10px;
    }.catalog-item--new:before
    {
        top: 18px;width: 79px;height: 26px;
    }.catalog-item--new:after
    {
        top: 22px;right: 69px;width: 18px;height: 18px;
    }.catalog-item--discount:before
    {font-size: 12px;

        top: 18px;width: 79px;height: 26px;
    }.catalog-item--discount:after
    {font-size: 12px;

        top: 22px;right: 69px;width: 18px;height: 18px;
    }.catalog-item--gift:before
    {font-size: 12px;

        top: 18px;width: 79px;height: 26px;
    }.catalog-item--gift:after
    {font-size: 12px;

        top: 22px;right: 69px;width: 18px;height: 18px;
    }.catalog-item__rating
    {
        top: 16px;
    }.catalog-item__image
    {
        height: 210px;
    }.catalog-item__title
    {
        font-size: 16px;line-height: 24px;max-width: 250px;padding: 9px 20px 8px;
    }.catalog-item__footer
    {
        padding: 17px 18px 14px 20px;
    }.catalog-item__price-old
    {
        font-size: 14px;font-weight: 700;line-height: .6;
    }.catalog-item__cart
    {font-size: 12px;line-height: 24px;box-sizing: border-box;width: 125px;padding-right: 13px;padding-left: 17px;text-transform: uppercase;color: #fff;

        -webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.catalog-item__cart span
    {
        display: block;
    }.catalog__btn
    {
        display: none;
    }.similar-products
    {
        padding: 39px 0 41px;
    }.similar-products__top
    {
        margin-bottom: 27px;
    }.similar-products__title
    {
        font-size: 30px;line-height: 1.2;
    }.similar-products__btn:before,
    .similar-products__btn:after
    {
        top: 43%;right: 10px;width: 14px;height: 2px;
    }.similar-products__btn
    {font-size: 12px;line-height: 24px;

        padding: 3px 17px;padding-right: 34px;
    }.similar-products--order:after
    {
        width: -webkit-calc(100% - 60px)                        ;width:         calc(100% - 60px);
    }.similar-products--order
    {
        padding: 0 30px 39px;border-right: 1px solid #d5d5d5;border-left: 1px solid #d5d5d5;
    }.similar-products--order p
    {
        margin: 0;padding: 24px 4.77% 43px;
    }.similar-products--order .similar-products__slider:after
    {
        position: absolute;z-index: 2;top: 0;right: -1px;left: 0;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(right, #fff 0, transparent 15%, transparent 85%, #fff 100%);background:         linear-gradient(to left, #fff 0, transparent 15%, transparent 85%, #fff 100%);
    }.similar-products--profile:after
    {
        width: -webkit-calc(100% - 60px)                        ;width:         calc(100% - 60px);
    }.similar-products--profile
    {
        padding: 9px 0 32px;border: none;
    }.similar-products--profile p
    {
        margin: 0;padding: 24px 50px 43px;
    }.similar-products--profile .similar-products__slider:after
    {
        position: absolute;z-index: 2;top: 0;right: -1px;left: 0;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(right, #fff 0, transparent 15%, transparent 85%, #fff 100%);background:         linear-gradient(to left, #fff 0, transparent 15%, transparent 85%, #fff 100%);
    }.similar-products--gift
    {
        padding: 8px 30px 18px;
    }.similar-products--gift p
    {padding: 27px 0 36px;

        text-align: center;
    }.similar-item
    {
        width: 280px;
    }.similar-item--new:before
    {
        top: 18px;width: 79px;height: 26px;
    }.similar-item--new:after
    {
        top: 22px;right: 69px;width: 18px;height: 18px;
    }.similar-item--discount:before
    {font-size: 12px;

        top: 18px;width: 79px;height: 26px;
    }.similar-item--discount:after
    {font-size: 12px;

        top: 22px;right: 69px;width: 18px;height: 18px;
    }.similar-item--gift:before
    {font-size: 12px;

        top: 18px;width: 79px;height: 26px;
    }.similar-item--gift:after
    {font-size: 12px;

        top: 22px;right: 69px;width: 18px;height: 18px;
    }.similar-item--single
    {
        margin-bottom: 78px;
    }.similar-item__rating
    {
        top: 16px;
    }.similar-item__image
    {
        height: 210px;
    }.similar-item__title
    {
        font-size: 16px;line-height: 24px;max-width: 250px;padding: 9px 20px 8px;
    }.similar-item__footer
    {
        padding: 17px 18px 14px 20px;
    }.similar-item__cart
    {font-size: 12px;line-height: 24px;box-sizing: border-box;width: 125px;padding-right: 13px;padding-left: 17px;text-transform: uppercase;color: #fff;

        -webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.similar-item__cart span
    {
        display: block;
    }.similar-item__btn
    {
        width: 160px;margin-left: auto;
    }.item-card
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin: 25px -10px 27px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.item-card__gallery
    {box-sizing: border-box;
        width: 530px;margin-top: 0;margin-right: 10px;margin-left: 10px;
    }.item-card__gallery--new:before
    {font-size: 16px;line-height: 33px;

        top: 18px;width: 110px;height: 36px;
    }.item-card__gallery--new:after
    {
        top: 24px;right: 98px;width: 25px;height: 25px;
    }.item-card__rating
    {
        top: 21px;left: 21px;
    }.item-card__bg
    {
        top: 0;right: 34px;bottom: 0;left: auto;flex-direction: column-reverse;width: 26px;-webkit-box-orient: vertical;-webkit-box-direction: reverse;-webkit-flex-direction: column-reverse;-ms-flex-direction: column-reverse;
    }.item-card__bg
    {
        right: 40px;
    }.item-card__color
    {width: 24px;height: 24px;
        margin-bottom: 8px;
    }.item-card__thumb
    {
        display: block;
    }.item-card__info
    {box-sizing: border-box;
        width: 330px;margin-right: 10px;margin-left: 10px;
    }.item-card__header
    {flex-direction: column;padding-bottom: 9px;

        -webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;
    }.item-card__code
    {
        margin-bottom: 8px;
    }.item-card__price
    {
        font-size: 30px;padding-right: 25px;
    }.item-card__btns
    {
        padding: 22px 30px 24px;
    }.item-card__btn--spec
    {width: 280px;
        margin: 20px 0 30px;
    }.item-card__get
    {
        padding-bottom: 16px;
    }.item-card__pay
    {
        padding: 15px 30px;
    }.item-card__tabs-btn
    {font-size: 18px;line-height: 24px;box-sizing: border-box;min-width: 175px;
        padding: 17px 20px;text-align: center;
    }.item-card__tabs-btn.active
    {
        position: relative;
    }.item-card__tabs-btn.active:before
    {
        position: absolute;bottom: 0;left: 50%;width: 50%;height: 4px;content: '';-webkit-transform: translateX(-50%);transform: translateX(-50%);background: #f04441;
    }.item-card__overview
    {
        padding-bottom: 0;
    }.item-card__wrapper
    {
        display: -webkit-box                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin: 0 -10px;
    }.item-card__descr
    {box-sizing: border-box;
        width: 530px;margin-right: 10px;margin-left: 10px;-webkit-box-ordinal-group: 0;-webkit-order: -1;-ms-flex-order: -1;order: -1;
    }.item-card__text
    {
        padding: 28px 0 51px;
    }.item-card__text.hidden
    {
        max-height: 319px;
    }.item-card__spec
    {box-sizing: border-box;box-sizing: border-box;
        width: 530px;margin-right: 10px;margin-left: 10px;padding-top: 26px;padding-right: 50px;border-right: 1px solid #d5d5d5;
    }.item-card__spec--mini
    {box-sizing: border-box;
        width: 330px;margin-right: 10px;margin-left: 10px;padding-top: 0;padding-right: 0;padding-left: 30px;border-right: none;border-left: 1px solid #d5d5d5;
    }.item-card__spec--mini .item-card__spec-title
    {
        padding-top: 28px;
    }.item-card__spec--mini .item-card__spec-list
    {
        border-bottom: none;
    }.item-card__spec-title
    {
        padding: 19px 0 11px;
    }.item-card__caption
    {max-width: 100%;
        padding: 0;
    }.item-card__caption--move
    {
        padding-left: 32px;
    }.item-card__data
    {
        padding: 0;
    }.item-card__schemes
    {box-sizing: border-box;
        width: 330px;margin-right: 10px;margin-left: 10px;padding-top: 25px;
    }.item-card__schemes-slider
    {
        margin-top: 38px;
    }.item-card__schemes img
    {
        width: 330px;height: 350px;
    }.rating .jq-star
    {
        margin-right: 3px;
    }.modal
    {
        top: 50%;left: 50%;width: 470px;height: auto;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);border: 1px solid #d5d5d5;
    }.modal--auth .modal__body
    {
        padding: 15px 20px 30px;
    }.modal__label-check--remember
    {
        margin-top: 16px;
    }.modal__btn
    {
        margin-top: 10px;
    }.modal__footer
    {
        position: static;padding: 16px 20px 17px;
    }.cart__row
    {
        display: -webkit-box                                                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.cart__row--equal
    {
        -webkit-box-align: stretch;-webkit-align-items: stretch;-ms-flex-align: stretch;align-items: stretch;
    }.cart-steps
    {
        margin: 34px 0 26px;
    }.cart-steps__item
    {font-size: 18px;

        width: 24.25%;
    }.cart-steps__item--success
    {
        background: #fff;
    }.cart-steps__item--success:after
    {
        display: none;
    }.cart-steps__item.active
    {
        font-size: 18px;width: 24.25%;
    }.cart-item__wrapper
    {flex-direction: row;padding-top: 14px;padding-right: 55px;

        -webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
    }.cart-item__image
    {
        width: 199px;height: 139px;margin-right: 28px;
    }.cart-item__close
    {
        top: 13px;right: 15px;width: 13px;height: 13px;
    }.cart-item__close:before,
    .cart-item__close:after
    {
        width: 16px;height: 2px;
    }.cart-item__title
    {font-size: 18px;line-height: 26px;

        width: 43%;margin-right: 7%;
    }.cart-item__info
    {flex-direction: row;

        -webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.cart-item__count
    {
        -webkit-transform: translateY(-6px)                                                ;transform: translateY(-6px);
    }.cart-item__count-btn
    {font-size: 25px;

        width: 38px;height: 37px;
    }.cart-item__count-field
    {
        width: 73px;height: 37px;
    }.cart-item__price
    {
        font-size: 24px;padding-right: 25px;
    }.cart-item__price:after
    {
        top: .17em;
    }.cart-item__price-old
    {font-size: 14px;

        position: absolute;top: 100%;left: 3%;display: block;padding-right: 36px;color: #bdbdbd;
    }.cart-item__price-old:after
    {
        position: absolute;top: .1em;right: 0;width: 1.6em;height: 1.5em;padding-right: 0;padding-left: .8em;content: '/шт';opacity: .3;color: #000;background: url(../img/icons/rub.svg) no-repeat;background-position: 0 6px;background-size: 12px 12px;
    }.cart-discount
    {
        width: 100%;margin-bottom: 12px;padding-bottom: 29px;
    }.cart-discount__title
    {
        margin-bottom: 0;
    }.cart-discount__row
    {
        display: -webkit-box                                                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: end;-webkit-align-items: flex-end;-ms-flex-align: end;align-items: flex-end;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.cart-discount__wrapper
    {width: 450px;margin-bottom: 0;

        -webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;
    }.cart-discount__wrapper
    {
        width: auto;
    }.cart-discount__field
    {
        width: 271px;margin-right: 30px;
    }.cart-discount__btn
    {
        width: 148px;
    }.cart-discount__text
    {
        width: 330px;margin-right: 20px;
    }.cart-delivery
    {
        width: 430px;
    }.cart-summary
    {
        width: 430px;margin-bottom: 27px;
    }.cart-summary--side
    {
        width: 380px;padding-bottom: 27px;
    }.cart-payment
    {
        width: 480px;margin-bottom: 27px;
    }.cart-payment__title
    {
        margin-bottom: 4px;
    }.cart-payment__item
    {
        padding-top: 16px;
    }.cart-confirm
    {
        width: 480px;margin-bottom: 40px;
    }.cart-confirm__map
    {
        height: 205px;
    }.blog-preview
    {
        margin-bottom: 61px;
    }.blog-preview:after
    {right: 40px;
        bottom: -30px;left: 40px;
    }.blog-preview:last-of-type
    {
        margin-bottom: 44px;
    }.blog-preview:last-of-type
    {
        margin-bottom: 37px;
    }.blog-preview__image
    {
        width: 960px;height: 342px;
    }.blog-preview__descr
    {
        padding: 36px 40px 37px;
    }.blog-preview__top
    {
        margin-bottom: 36px;
    }.blog-preview__title
    {
        font-size: 30px;max-width: 85%;margin-bottom: 23px;
    }.blog-preview__text
    {
        margin-bottom: 35px;
    }.blog-item__intro
    {
        padding-top: 54px;background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-m@1x.jpg) no-repeat center/cover;background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-m@1x.jpg) no-repeat center/cover;
    }.blog-item__title
    {
        font-size: 30px;max-width: 66%;margin-bottom: 29px;
    }.blog-item__pubdate
    {
        margin-bottom: 28px;
    }.blog-item__content
    {
        padding: 28px 50px;
    }.blog-item__image
    {
        width: 400px;height: 275px;margin: 5px 0 10px;margin-right: 30px;
    }.blog-item__image--wide
    {
        width: 500px;margin-right: 0;margin-left: 30px;
    }.blog-item__image-wrapper
    {
        display: -webkit-box                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;
    }.blog-item__image-wrapper--reverse
    {flex-direction: row-reverse;

        -webkit-box-orient: horizontal;-webkit-box-direction: reverse;-webkit-flex-direction: row-reverse;-ms-flex-direction: row-reverse;
    }.blog-item__cite
    {
        font-size: 30px;line-height: 40px;padding: 51px 100px 45px;
    }.blog-item__cite br
    {
        display: none;
    }.blog-item__cite--light
    {
        padding-top: 18px;padding-bottom: 20px;
    }.blog-item__cite--light .blog-item__cite-text
    {
        line-height: 35px;
    }.blog-item__cite + .blog-item__content
    {padding-right: 50px;
        padding-left: 50px;
    }.blog-item__cite-text
    {
        padding: 15px 0 27px;
    }.blog-item__cite:before
    {
        left: -10px;
    }.blog-item__cite:after
    {
        right: -10px;
    }.blog-item__slider
    {
        padding-top: 25px;
    }.blog-item__slider:after
    {
        position: absolute;z-index: 2;top: 0;right: 0;left: 0;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(right, #fff 5%, transparent 15%, transparent 85%, #fff 95%);background:         linear-gradient(to left, #fff 5%, transparent 15%, transparent 85%, #fff 95%);
    }.blog-item__slider__image
    {
        width: 680px;height: 364px;
    }.blog-item__footer
    {
        padding-top: 29px;padding-bottom: 21px;
    }.reviews-cta
    {
        display: -webkit-box                                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin: 33px 0 35px;padding-bottom: 4px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.reviews-cta__title
    {
        width: 250px;
    }.reviews-cta__text
    {
        width: 300px;margin-right: 40px;margin-left: 10px;
    }.reviews-item
    {
        margin-bottom: 63px;padding-bottom: 30px;
    }.reviews-item:after
    {right: 0;
        bottom: -33px;left: 0;
    }.reviews-item:last-of-type
    {
        margin-bottom: 30px;padding-bottom: 0;
    }.reviews-item__header
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 36px 50px 1px;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.reviews-item__comment
    {
        padding: 27px 50px 29px;
    }.reviews-item__comment--answer .reviews-item__comment-header
    {
        margin-bottom: 16px;
    }.reviews-item__comment--answer .reviews-item__author-info
    {
        margin-top: 2px;
    }.reviews-item__comment--answer .reviews-item__author
    {
        -webkit-transform: translateX(-8px)                                                ;transform: translateX(-8px);
    }.reviews-item__comment--answer .reviews-item__author-name
    {
        margin: 7px 0 10px;
    }.reviews-item__comment-header
    {
        margin-bottom: 18px;
    }.reviews-item__author
    {
        -webkit-transform: translateX(-12px)                                                ;transform: translateX(-12px);
    }.reviews-item__author-info
    {
        max-width: 100%;margin-top: -2px;
    }.reviews-item__author-name
    {
        font-size: 30px;margin-bottom: 5px;
    }.reviews-item__text p
    {
        font-size: 17px;line-height: 26px;padding-right: 28px;
    }.reviews-item__btn
    {
        margin-right: 33px;
    }.reviews-item__gallery
    {
        padding: 20px 50px;
    }.reviews-item__gallery-header
    {margin-bottom: 14px;

        -webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;
    }.reviews-item__gallery-btn
    {
        width: 180px;margin-right: 20px;
    }.reviews-item__slider:after
    {
        position: absolute;z-index: 2;top: 0;right: 0;left: 0;height: 100%;content: '';pointer-events: none;background: -webkit-linear-gradient(right, #fff 0, transparent 5%, transparent 95%, #fff 100%);background:         linear-gradient(to left, #fff 0, transparent 5%, transparent 95%, #fff 100%);
    }.comments__title
    {
        margin-bottom: 12px;
    }.comments-item
    {
        padding: 27px 50px 29px;
    }.comments-item--answer
    {
        position: relative;padding-top: 46px;padding-bottom: 58px;padding-left: 150px;background: #fff;
    }.comments-item--answer:before
    {
        position: absolute;top: 0;left: 50%;width: -webkit-calc(100% - 100px);width:         calc(100% - 100px);height: 1px;content: '';-webkit-transform: translateX(-50%);transform: translateX(-50%);background: #d5d5d5;
    }.comments-item--supplier
    {
        display: -webkit-box                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 41px 30px 43px;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.comments-item--supplier .comments-item__author
    {
        margin-bottom: 18px;
    }.comments-item--supplier .comments-item__author-info
    {
        margin-top: 0;
    }.comments-item--supplier .comments-item__text p
    {width: 420px;
        padding-top: 5px;
    }.comments-item__author
    {
        -webkit-transform: translateX(-12px)                                                ;transform: translateX(-12px);
    }.comments-item__author-info
    {
        max-width: 100%;margin-top: -2px;
    }.comments-item__author-name
    {
        font-size: 30px;margin-bottom: 5px;
    }
}@media only screen and (min-width: 960px) and (min-width: 960px)
{
    .profile-order__sum-label
    {
        width: 80px;text-align: center;
    }
}@media only screen and (min-width: 960px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 960px) and (min-resolution: 1.5dppx), only screen and (min-width: 960px) and (min-resolution: 144dpi)
{
    .blog-item__intro
    {
        background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-m@2x.jpg) no-repeat center/cover;
        background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-m@2x.jpg) no-repeat center/cover;
    }
}
@media only screen and (max-width: 1199px){
    .kuznets-logo{
        display: none;
    }
}
@media only screen and (max-width: 959px){
    .w-main-slider{
        display: none;
    }
    .header-bg:after{
        width: 60%;
    }
    .page-header__panel{
        width: 65%;
    }
    .page-header__logo{
        width: 35%;
    }
    .logo img{
        width: 100%;
    }
}
@media only screen and (min-width: 1200px)
{
    .container.container--full
    {width: 100%;
        max-width: 100%;padding: 0;
    }.container
    {
        width: 100%;max-width: 1200px;
    }.wrapper
    {
        display: -webkit-box                                                                                                                                                                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;flex-direction: row;margin: 0 -10px;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-direction: row;-ms-flex-direction: row;-webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-align: start;-webkit-align-items: flex-start;-ms-flex-align: start;align-items: flex-start;
    }.btn
    {
        cursor: pointer;
    }.btn:hover
    {color: #fff;border-color: transparent;border-color: transparent;
        background: -webkit-linear-gradient(left, #f04441, #f08741);background:         linear-gradient(to right, #f04441, #f08741);
    }.btn:active
    {
        opacity: .5;
    }.btn--alt:hover
    {
        background: #f7f7f7;
    }.btn--dark:hover
    {
        background: #191919;
    }.logo
    {
        width: 354px;
    }.logo img
    {
        width: 334px;
    }.page-header
    {
        padding-top: 0;
    }.page-header__search-btn .icon
    {
        width: 22px;height: 22px;fill: #a9a9a9;
    }.page-header__search-btn
    {
        top: 12px;right: 5px;
    }.page-header__search-field
    {
        width: 255px;height: 46px;
    }.page-header__phone
    {       padding: 18px 24px 16px 24px;
                                                                                   border-left: 1px solid #222;
                                                                                   border-right: 1px solid #222;
    }.page-header__toggle
    {
        display: none;
    }.page-header__ctas
    {
        display: -webkit-box                                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
    }.page-footer
    {
        padding: 41px 0 73px;
    }.page-footer__subscribe
    {font-size: 14px;box-sizing: border-box;
        width: 330px;margin-right: 10px;margin-left: 10px;padding-left: 79px;
    }.page-footer__subscribe p
    {line-height: 16px;

        max-width: 250px;
    }.page-footer__subscribe br
    {
        display: block;
    }.page-footer .subscribe-form__title
    {
        margin-bottom: 10px;
    }.page-footer .subscribe-form__field
    {
        width: 250px;padding: 4px 0;
    }.page-footer .subscribe-form__btn
    {font-size: 14px;width: 150px;
        margin: 24px auto 0;padding: 4px 0;
    }.page-footer .subscribe-form__btn:hover
    {
        border-color: #222;
    }.page-footer__link:hover
    {
        color: #f04441;
    }.page-footer__menu
    {font-size: 14px;

        display: -webkit-box                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;box-sizing: border-box;width: 480px;margin-right: 10px;margin-left: 10px;
    }.copyright
    {line-height: 26px;box-sizing: border-box;box-sizing: border-box;width: 330px;margin-right: 10px;margin-left: 10px;
        padding: 0;padding-right: 50px;
    }.copyright br
    {
        display: block;
    }.copyright__note
    {
        margin: 20px 0 15px;
    }.copyright__author a:hover
    {
        color: #f04441;
    }.label-file
    {
        cursor: pointer;
    }.label-file:hover .icon
    {
        fill: #000;
    }.top-bar
    {
        padding: 18px 0 15px;
    }.breadcrumbs__link
    {
        padding: 4px 22px;
    }.breadcrumbs__link:hover
    {border-color: transparent;
        background: -webkit-linear-gradient(left, #f04441, #f08741)                        ;background:         linear-gradient(to right, #f04441, #f08741);
    }.main-nav
    {
        position: static;visibility: visible;overflow-y: inherit;width: 100%;-webkit-transform: none;transform: none;opacity: 1;
    }.main-nav__list
    {
        display: -webkit-box                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.main-nav__item
    {
        border-bottom: none;
    }.main-nav__item--contacts a
    {
        font-size: 18px;padding-top: 18px;text-transform: none;
    }.main-nav__item--contacts .icon
    {
        display: inline-block;
    }.main-nav__item--child .main-nav__link
    {
        padding-right: 20px;
    }.main-nav__item--child:after
    {
        top: 25px;right: 16px;border: 4px solid transparent;border-top: 4px solid #fff;
    }.main-nav__item--child.active:after
    {
        top: 16px;-webkit-transform: none;transform: none;border-top: 5px solid #fff;
    }.main-nav__link
    {
        font-size: 14px;font-weight: 400;line-height: 1;margin-right: 10px;padding: 20px 10px;
    }.main-nav__link:hover
    {border-radius: 0 0 5px 5px;
        background: #f04441;
    }.main-nav__link--color
    {
        color: #fff;
    }.main-nav__link--order
    {
        display: none;
    }.main-nav__submenu
    {
        width: 0;
    }.main-nav__footer
    {
        display: none;
    }.thumbs--footer
    {
        margin-bottom: 23px;
    }.thumbs__item--down
    {
        margin-left: 15px;
    }.thumbs__item:hover
    {
        opacity: .7;
    }.social__link--fb:hover .icon
    {
        fill: #344e86;
    }.social__link--tw:hover .icon
    {
        fill: #0d95e8;
    }.social__link--vk:hover .icon
    {
        fill: #476688;
    }.social__link--ok:hover .icon
    {
        fill: #d57507;
    }.social__link--ggl:hover .icon
    {
        fill: #db3c2b;
    }.social-likes--reviews
    {
        position: absolute;right: 10px;bottom: 0;left: 10px;width: auto;padding-left: 0;-webkit-box-pack: start;-webkit-justify-content: flex-start;-ms-flex-pack: start;justify-content: flex-start;
    }.social-likes--reviews .social-likes__btn:not(:nth-of-type(4n))
    {
        margin-right: 10px;
    }.owl-thumb-item img
    {
        width: 79px;height: 70px;margin: 20px 10px;
    }.slider-counter
    {
        right: 70px;
    }.profile-menu
    {box-sizing: border-box;
        width: 330px;margin-top: 31px;margin-right: 10px;margin-left: 10px;padding: 0;
    }.profile-menu__list
    {flex-direction: column;border: 1px solid #d5d5d5;border-bottom: none;

        -webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;
    }.profile-menu__link
    {padding: 20px 28px;padding-right: 15px;

        border-right: none;border-bottom: 1px solid #d5d5d5;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.profile-menu__link:hover
    {
        color: #111;
    }.profile-tab
    {box-sizing: border-box;
        width: 830px;margin-top: 42px;margin-right: 10px;margin-left: 10px;
    }.profile-tab__top
    {
        padding: 0;
    }.profile-tab__body--bonus
    {
        margin-bottom: 41px;
    }.profile-tab__body--order
    {
        margin-bottom: 45px;
    }.profile-tab__body--user
    {
        margin-bottom: 41px;
    }.profile-tab__body--review
    {
        margin-bottom: 51px;
    }.profile-tab__body--review-form
    {margin-bottom: 49px;
        padding: 33px 40px 29px;
    }.profile-tab__body--review
    {
        padding: 50px 30px 0;
    }.profile-bonus
    {
        display: -webkit-box                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 0 0 43px;
    }.profile-bonus__text
    {
        padding-bottom: 33px;
    }.profile-bonus__image-wrapper
    {
        padding: 39px 20px 29px;
    }.profile-order__item--image .profile-order__item-title:hover
    {
        color: #f04441;
    }.order-tracking__field
    {
        width: 550px;
    }.order-tracking__btn:hover
    {
        background: #373737;
    }.topic-articles--card .topic-articles__text
    {
        padding-top: 39px;
    }.topic-articles__text
    {
        padding: 24px 15px 40px;
    }.profile-offer__title
    {
        padding-left: 20px;
    }.profile-offer__image-wrapper
    {
        padding: 26px 20px 25px;
    }.profile-callback
    {
        margin: 0 auto 49px;
    }.profile-user--cart
    {
        width: 780px;
    }.profile-user--cart .profile-user__group
    {
        padding-right: 250px;
    }.profile-user--cart .profile-user__group:last-of-type
    {
        margin-bottom: 65px;
    }.profile-user--cart .profile-user__group--wide
    {
        padding-right: 80px;
    }.profile-user__row
    {
        display: -webkit-box                                                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.profile-user__row .profile-user__field-wrapper
    {
        width: 300px;
    }.profile-user__row--three .profile-user__field-wrapper
    {
        width: 150px;
    }.profile-user__group
    {
        margin-bottom: 21px;
    }.profile-docs__wrapper
    {
        display: -webkit-box                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;padding: 0 50px;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.profile-docs__link
    {
        margin-right: 20px;margin-bottom: 40px;
    }.profile-docs__link:hover
    {
        color: #f04441;
    }.products
    {
        padding: 32px 0 29px;
    }.products:first-of-type
    {
        padding: 45px 0 27px;
    }.products__item
    {
        margin-bottom: 24px;
    }.products__item:after
    {
        position: absolute;z-index: 3;top: 0;right: 0;bottom: 0;left: 0;height: 100%;content: '';-webkit-transition: opacity .2s ease-out;transition: opacity .2s ease-out;opacity: 0;background: rgba(240, 68, 65, .8);
    }.products__item:hover:after
    {
        opacity: 1;
    }.products__item:hover .products__item-footer
    {color: #fff;
        border-color: #111;
    }.catalog
    {box-sizing: border-box;
        width: 880px;margin-right: 10px;margin-left: 10px;padding-top: 43px;
    }.catalog-filter
    {
        position: static;z-index: 1;overflow: hidden;box-sizing: border-box;width: 280px;height: auto;margin-right: 10px;margin-left: 10px;padding-top: 44px;-webkit-transform: translateX(0);transform: translateX(0);
    }.catalog-filter__group
    {
        margin-bottom: 20px;padding: 46px 18px 23px;border: 1px solid #d5d5d5;
    }.catalog-filter__group--menu
    {
        display: block;padding: 46px 0 0;
    }.catalog-filter__title
    {
        padding-bottom: 10px;border-bottom: 1px solid #d5d5d5;
    }.catalog-filter__wrapper
    {
        margin-top: 21px;
    }.catalog-filter__wrapper--check
    {
        margin-top: 14px;
    }.catalog-filter__label
    {
        margin-top: 7px;
    }.catalog-filter__label-radio
    {
        width: 111px;
    }.catalog-filter__label-radio:nth-of-type(even)
    {
        margin-left: 20px;
    }.catalog-filter__more
    {
        margin-top: 10px;
    }.catalog-filter__footer
    {
        padding: 0 0 31px;
    }.catalog-filter__btn
    {
        width: 100%;
    }.catalog-filter .btn--transp:hover
    {
        color: #fff;background: #111;
    }.catalog-item:hover
    {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .17);
    }.catalog-item__cart:hover
    {
        background: #111;
    }.catalog-item__cart:hover .icon
    {
        fill: #fff;
    }.similar-products
    {
        padding-bottom: 25px;
    }.similar-products__btn:hover
    {color: #111;
        background: #fff;
    }.similar-products__btn:hover:before,
    .similar-products__btn:hover:after
    {
        background: #111;
    }.similar-products--order
    {
        padding: 0 30px 39px;
    }.similar-products--order p
    {
        margin: 0;padding-right: 20px;padding-left: 20px;
    }.similar-products--profile
    {
        padding: 9px 30px 39px;
    }.similar-products--profile p
    {
        margin: 0;padding-right: 20px;padding-left: 20px;
    }.similar-products--gift
    {
        padding-bottom: 20px;
    }.similar-products--gift p
    {
        padding: 26px 0 37px;
    }.similar-item:hover
    {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .17);
    }.similar-item__cart:hover
    {
        background: #111;
    }.similar-item__cart:hover .icon
    {
        fill: #fff;
    }.similar-item__btn:hover
    {
        background: #111;
    }.item-card
    {
        margin: 44px -10px;
    }.item-card__gallery
    {
        width: 780px;margin-top: 0;
    }.item-card__gallery--new:before
    {
        top: 21px;
    }.item-card__gallery--new:after
    {
        top: 26px;
    }.item-card__rating
    {
        top: 23px;left: 20px;
    }.item-card__color
    {width: 30px;height: 30px;
        margin-bottom: 8px;
    }.item-card__info
    {
        width: 380px;
    }.item-card__header
    {
        padding: 14px 50px 10px;
    }.item-card__btns
    {
        padding: 22px 50px 24px;
    }.item-card__btn--spec
    {width: 280px;
        margin: 40px 0 53px;
    }.item-card__get
    {
        padding: 25px 50px 6px;
    }.item-card__get-item
    {
        padding: 18px 0 13px;
    }.item-card__get-name
    {
        display: -webkit-box                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;
    }.item-card__get-name .icon
    {
        display: inline-block;margin-right: 17px;
    }.item-card__pay
    {
        padding: 13px 50px;
    }.item-card__pay .icon--cash
    {display: inline-block;

        margin-right: 15px;
    }.item-card__descr
    {
        width: 765px;margin-right: 0;padding-right: 40px;
    }.item-card__text
    {
        padding: 37px 0 58px;
    }.item-card__spec
    {
        width: 630px;padding-top: 36px;
    }.item-card__spec--mini
    {
        width: 415px;margin-left: 0;padding-top: 0;padding-right: 0;padding-left: 35px;
    }.item-card__spec-title
    {
        padding: 30px 0 14px;
    }.item-card__caption--move
    {
        padding-left: 48px;
    }.item-card__schemes
    {
        width: 530px;padding-top: 34px;
    }.item-card__schemes-slider
    {
        margin-top: 34px;
    }.item-card__schemes img
    {
        width: 536px;height: 480px;
    }.item-card__accs
    {
        padding: 66px 0 46px;
    }.cart__row--equal
    {
        -webkit-box-align: stretch;-webkit-align-items: stretch;-ms-flex-align: stretch;align-items: stretch;
    }.cart-steps
    {
        margin: 31px 0 25px;
    }.cart-steps__item:before
    {
        top: 6px;right: -21px;width: 37px;height: 37px;-webkit-transform: rotate(45deg) skew(-6deg, -6deg);transform: rotate(45deg) skew(-6deg, -6deg);
    }.cart-item
    {
        margin-bottom: 19px;
    }.cart-item__wrapper
    {
        padding-right: 10%;
    }.cart-item__image
    {
        width: 240px;height: 139px;margin-right: 40px;padding: 0 20px;
    }.cart-item__close
    {
        font-size: 16px;line-height: 24px;top: 50%;right: 2.7%;width: auto;height: auto;padding-right: 25px;-webkit-transform: translateY(-50%);transform: translateY(-50%);
    }.cart-item__close:hover
    {
        color: #f04441;
    }.cart-item__close:hover:before,
    .cart-item__close:hover:after
    {
        background: #f04441;
    }.cart-item__close:before,
    .cart-item__close:after
    {top: 50%;
        right: 0;left: auto;margin-top: -1px;-webkit-transition: all .2s linear;transition: all .2s linear;
    }.cart-item__title
    {
        font-size: 20px;line-height: 28px;width: 37%;margin-right: 8%;
    }.cart-item__title:hover
    {
        color: #f04441;
    }.cart-item__price
    {
        font-size: 23px;margin-right: auto;margin-left: 16%;
    }.cart-discount
    {
        width: 380px;padding-bottom: 22px;
    }.cart-discount__title
    {
        margin-bottom: 22px;
    }.cart-discount__field
    {
        width: 180px;margin-right: 18px;
    }.cart-discount__btn
    {
        width: 120px;
    }.cart-discount__text
    {
        width: 300px;margin-top: 20px;margin-right: 0;
    }.cart-delivery
    {
        width: 380px;padding-bottom: 13px;
    }.cart-delivery__title
    {
        margin-bottom: 12px;
    }.cart-delivery__item
    {
        padding: 13px 0 14px;
    }.cart-summary
    {
        width: 380px;margin-bottom: 52px;
    }.cart-payment
    {
        width: 780px;margin-bottom: 52px;padding-bottom: 31px;
    }.cart-payment__title
    {
        margin-bottom: 12px;
    }.cart-payment__item
    {
        padding-bottom: 21px;
    }.cart-payment__label-radio
    {
        display: -webkit-box                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;
    }.cart-confirm
    {
        width: 780px;padding: 22px 30px 21px;
    }.cart-confirm__title
    {
        padding: 0;
    }.cart-confirm__row
    {
        display: -webkit-box                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;-webkit-box-pack: justify;-webkit-justify-content: space-between;-ms-flex-pack: justify;justify-content: space-between;
    }.cart-confirm__subtitle
    {
        padding: 0;
    }.cart-confirm__list
    {
        width: 300px;
    }.cart-confirm__item
    {
        padding: 6px 0 7px;
    }.cart-confirm__map
    {width: 370px;height: 393px;
        margin-top: 9px;-webkit-box-ordinal-group: 0;-webkit-order: -1;-ms-flex-order: -1;order: -1;
    }.blog-preview--dark .blog-preview__image
    {
        margin-right: auto;margin-left: 0;
    }.blog-preview--dark .blog-preview__descr
    {margin-right: 0;margin-left: auto;
        padding: 36px 50px 30px 10px;
    }.blog-preview--dark
    {flex-direction: row-reverse;

        -webkit-box-orient: horizontal;-webkit-box-direction: reverse;-webkit-flex-direction: row-reverse;-ms-flex-direction: row-reverse;
    }.blog-preview
    {
        display: -webkit-box                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 52px;
    }.blog-preview:after
    {right: auto;bottom: -26px;left: 50%;

        width: 1180px;-webkit-transform: translateX(-50%);transform: translateX(-50%);
    }.blog-preview__image
    {
        width: 510px;height: 369px;margin-right: 0;margin-left: auto;
    }.blog-preview__descr
    {
        width: 740px;margin-right: auto;margin-left: 0;padding: 36px 10px 30px 50px;
    }.blog-preview__text
    {
        margin-bottom: 30px;padding-right: 25px;
    }.blog-preview__link:hover
    {
        color: #fff;
    }.blog-item__intro
    {
        min-height: 390px;margin-bottom: 14px;padding-top: 80px;background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-l@1x.jpg) no-repeat center/cover;background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-l@1x.jpg) no-repeat center/cover;
    }.blog-item__content
    {
        padding: 25px 100px;
    }.blog-item__image
    {
        width: 490px;height: 318px;margin-right: 40px;margin-bottom: 25px;
    }.blog-item__image--wide
    {
        width: 680px;height: 385px;margin-right: 0;margin-left: 40px;
    }.blog-item__image-wrapper
    {
        margin-top: 34px;
    }.blog-item__image-wrapper--reverse
    {
        margin-top: 24px;
    }.blog-item__cite
    {padding-right: 230px;
        padding-left: 230px;
    }.blog-item__cite--light
    {
        padding-top: 20px;padding-bottom: 28px;
    }.blog-item__cite + .blog-item__content
    {padding-right: 100px;
        padding-left: 100px;
    }.blog-item__cite:before,
    .blog-item__cite:after
    {
        font-size: 350px;line-height: 1.2;
    }.blog-item__slider:after
    {
        background: -webkit-linear-gradient(right, #fff 5%, transparent 20%, transparent 80%, #fff 95%)                        ;background:         linear-gradient(to left, #fff 5%, transparent 20%, transparent 80%, #fff 95%);
    }.blog-item__footer
    {
        padding-top: 24px;padding-bottom: 8px;
    }.reviews-cta
    {
        margin: 53px 0 33px;padding-right: 30px;padding-bottom: 18px;padding-left: 50px;
    }.reviews-cta__title
    {
        width: 230px;
    }.reviews-cta__text
    {
        width: 580px;margin-right: 20px;margin-bottom: 0;margin-left: 0;
    }.reviews-cta__btn
    {
        width: 230px;
    }.reviews-item
    {
        display: -webkit-box                                                                                                                                        ;display: -webkit-flex;display: -ms-flexbox;display:         flex;margin-bottom: 83px;padding-bottom: 0;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
    }.reviews-item:after
    {
        bottom: -43px;
    }.reviews-item:last-of-type
    {
        margin-bottom: 39px;
    }.reviews-item__header
    {
        position: relative;width: 350px;padding: 38px 30px 1px;-webkit-box-ordinal-group: 3;-webkit-order: 2;-ms-flex-order: 2;order: 2;
    }.reviews-item__title
    {
        margin-bottom: 21px;
    }.reviews-item__caption
    {
        max-width: 50%;
    }.reviews-item__comment
    {
        width: 830px;padding: 27px 0 29px 50px;border-right: 1px solid #d5d5d5;-webkit-box-ordinal-group: 2;-webkit-order: 1;-ms-flex-order: 1;order: 1;
    }.reviews-item__comment--answer
    {
        width: 580px;-webkit-box-ordinal-group: 5;-webkit-order: 4;-ms-flex-order: 4;order: 4;
    }.reviews-item__comment--answer .reviews-item__text
    {
        margin-right: 23px;
    }.reviews-item__comment-header
    {margin-bottom: 20px;
        padding-right: 30px;
    }.reviews-item__text p
    {
        margin-right: 22px;padding-right: 6px;
    }.reviews-item__btn
    {
        margin-right: 56px;
    }.reviews-item__gallery
    {
        width: 600px;padding: 20px;border-right: 1px solid #d5d5d5;border-bottom: none;-webkit-box-ordinal-group: 4;-webkit-order: 3;-ms-flex-order: 3;order: 3;
    }.reviews-item__gallery-header
    {
        padding: 0 29px;
    }.reviews-item__slider:after
    {
        background: -webkit-linear-gradient(right, #fff 0, transparent 1%, transparent 99%, #fff 100%)                        ;background:         linear-gradient(to left, #fff 0, transparent 1%, transparent 99%, #fff 100%);
    }.comments__title
    {
        margin-bottom: 8px;
    }.comments-item
    {padding-right: 222px;
        padding-left: 114px;
    }.comments-item--answer
    {
        padding-top: 40px;padding-right: 95px;padding-bottom: 61px;padding-left: 241px;
    }.comments-item--answer:before
    {
        width: -webkit-calc(100% - 160px)                        ;width:         calc(100% - 160px);
    }.comments-item--supplier
    {padding-right: 89px;
        padding-left: 160px;
    }.comments-item--supplier .comments-item__author
    {margin-bottom: 20px;
        padding-right: 30px;
    }.comments-item--supplier .comments-item__text p
    {
        width: 520px;
    }
}@media only screen and (min-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1200px) and (min-resolution: 1.5dppx), only screen and (min-width: 1200px) and (min-resolution: 144dpi)
{
    .blog-item__intro
    {
        background: -webkit-linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-l@2x.jpg) no-repeat center/cover                        ;background:         linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../photo/blog-bg-l@2x.jpg) no-repeat center/cover;
    }
}@media print
{
    html,
    body
    {
        width: 210mm;height: 297mm;color: black;background: white;
    }.page-header,
    .top-bar,
    .profile-menu,
    .profile-tab__top,
    .print-btn,
    .topic-articles,
    .catalog,
    .profile-callback,
    .page-footer
    {
        display: none;
    }.container,
    .profile-tab,
    .profile-order
    {
        width: 100%;
    }.profile-order__price:after,
    .profile-order__sum-price:after,
    .profile-order__delivery-price:after
    {
        content: url(../img/icons/rub.svg);
    }
}@-webkit-keyframes fadeOut
{
    0%
    {
        opacity: 1;
    }100%
    {
        opacity: 0;
    }
}@keyframes fadeOut
{
    0%
    {
        opacity: 1;
    }100%
    {
        opacity: 0;
    }
}@-webkit-keyframes tooltipster-fading
{
    0%
    {
        opacity: 0;
    }100%
    {
        opacity: 1;
    }
}@keyframes tooltipster-fading
{
    0%
    {
        opacity: 0;
    }100%
    {
        opacity: 1;
    }
}@-webkit-keyframes tooltipster-rotating
{
    25%
    {
        -webkit-transform: rotate(-2deg)                                                ;transform: rotate(-2deg);
    }75%
    {
        -webkit-transform: rotate(2deg)                                                ;transform: rotate(2deg);
    }100%
    {
        -webkit-transform: rotate(0)                                                ;transform: rotate(0);
    }
}@keyframes tooltipster-rotating
{
    25%
    {
        -webkit-transform: rotate(-2deg)                                                ;transform: rotate(-2deg);
    }75%
    {
        -webkit-transform: rotate(2deg)                                                ;transform: rotate(2deg);
    }100%
    {
        -webkit-transform: rotate(0)                                                ;transform: rotate(0);
    }
}@-webkit-keyframes tooltipster-scaling
{
    50%
    {
        -webkit-transform: scale(1.1)                                                ;transform: scale(1.1);
    }100%
    {
        -webkit-transform: scale(1)                                                ;transform: scale(1);
    }
}@keyframes tooltipster-scaling
{
    50%
    {
        -webkit-transform: scale(1.1)                                                ;transform: scale(1.1);
    }100%
    {
        -webkit-transform: scale(1)                                                ;transform: scale(1);
    }
}
@media only screen and (max-width: 960px)
{
    .owl-carousel .owl-item img{
        height: auto;
    }
}