@charset "UTF-8";
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Фикс при прижатии футера для IE.
** В блоке с min-height (которым в данном случае служит body) flex некоректно работает. */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    html {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1;
    background-color: #fff;
    /* Определяет как браузеру оптимизировать рендеринг текста.
      ** optimizeLegibility – качественное отображение важнее скорости, разрешает кернинг и лигатуры. */
    text-rendering: optimizeLegibility;
    /* Делает подчеркивание с помощью text-decoration: underline; необрывистым (там где это работает). */
    -webkit-text-decoration-skip: objects;
    text-decoration-skip: objects;
    /* запретить корректировку размера шрифта после изменения ориентации в iOS. */
    -webkit-text-size-adjust: 100%;
    /* делает текст более тонким в Сафари на Маках (начертание сглаженное и четкое одновременно, приятно читать.). */
    -webkit-font-smoothing: antialiased;
    /* убирает синее подсвечивание при клике на девайсах. */
    -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
    width: device-width;
}

.footer-main {
    margin-top: auto;
    padding-bottom: .3px;
}

:focus {
    outline: none;
    -webkit-filter: 0 0 1px #FF3002;
    filter: 0 0 1px #FF3002;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

p,
dd,
dl,
figure,
blockquote {
    margin: 0;
}

blockquote,
q {
    quotes: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

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

th {
    font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

audio,
video {
    display: block;
}

img {
    border: none;
    display: block;
    max-width: 100%;
}

iframe {
    border: none;
}

pre,
code,
kbd,
samp {
    font-size: inherit;
    font-family: monospace, monospace;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:disabled,
a.disabled {
    cursor: default;
}

abbr {
    border: none;
    text-decoration: none;
}

b,
strong {
    font-weight: inherit;
}

i,
em {
    font-style: inherit;
}

dfn {
    font-style: inherit;
}

mark {
    color: inherit;
    background-color: transparent;
}

small {
    font-size: inherit;
}

sub,
sup {
    position: relative;
    line-height: 0;
    font-size: inherit;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

address {
    font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    letter-spacing: inherit;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-align: left;
    text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    resize: none;
    overflow-y: auto;
    overflow-x: hidden;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    padding: 0;
    border: none;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: none;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    outline: none;
}

[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-file-upload-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: inherit;
}

fieldset {
    padding: 0;
    margin: 0;
    border: none;
}

legend {
    padding: 0;
    display: block;
    white-space: normal;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

::-webkit-input-placeholder {
    opacity: 1;
    color: inherit;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

::-moz-input-placeholder {
    color: inherit;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-moz-placeholder {
    color: inherit;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
}

:focus::-moz-input-placeholder {
    opacity: 0;
}

:focus:-moz-placeholder {
    opacity: 0;
}

:focus:-ms-input-placeholder {
    opacity: 0;
}

svg {
    fill: currentColor;
    display: inline-block;
}

.hidden,
[hidden] {
    display: none;
}

:disabled,
.disabled {
    cursor: not-allowed;
}

::-ms-clear {
    display: none;
}

:-webkit-autofill {
    -webkit-box-shadow: 0 0 100px #fff inset;
    box-shadow: 0 0 100px #fff inset;
    -webkit-text-fill-color: currentColor;
}

::-moz-selection {
    color: #fff;
    background-color: #FF3002;
}

::selection {
    color: #fff;
    background-color: #FF3002;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

/* Для семантики: Когда надо спрятать заголовок, который должен быть, но его нет в дизайне.
** Скрытие этим способом не игнорируется скринридером. */
.visually-hidden {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

.img-wrap {
    position: relative;
}

/* Изображение резинится.
** Имеет нужные пропорции (заданы дизайном).
** Не дергает контент при подгрузке.
** Нельзя просто задать высоту обертке или изображению, потому что при ресайте страницы потеряются нужные пропорции.
** Поэтому padding в % берет значение ширины родителя, не зависимо заданы вертикальные или горизонтальные значения.
** bug: padding в % некоректно отображается в мозиле, если он задан флекс итему */
.img-wrap:before {
    content: '';
    display: block;
    padding-bottom: 60%;
}

.cover-pic,
.contain-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cover-pic {
    -o-object-fit: cover;
    object-fit: cover;
}

.contain-pic {
    -o-object-fit: contain;
    object-fit: contain;
}

/* Пример
** https://codepen.io/yurch-html/pen/bxbNYN?editors=1100
** Пример с polyfill`ом
** https://codepen.io/yurch-html/pen/jwoMWE?sort_col=item_updated_at */
@font-face {
    font-family: "Montserrat";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Montserrat-Regular/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    font-display: swap;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/Montserrat-Light/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light/Montserrat-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Montserrat-Medium/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Montserrat-Bold/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Calibri";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Calibri/Calibri.woff2") format("woff2"), url("../fonts/Calibri/Calibri.woff") format("woff"), url("../fonts/Calibri/Calibri.ttf") format("truetype");
}

.f-calibri {
    font-family: 'Calibri';
}

.h1 {
    margin-top: -7px;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #000;
}

@media (min-width: 22.5em) {
    .h1 {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (min-width: 64.0625em) {
    .h1 {
        font-size: 26px;
        line-height: 42px;
    }
}

.h2 {
    margin-top: -7px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

@media (min-width: 22.5em) {
    .h2 {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (min-width: 64.0625em) {
    .h2 {
        font-size: 22px;
        line-height: 40px;
    }
}

.h3 {
    margin-top: -5px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
}

@media (min-width: 22.5em) {
    .h3 {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (min-width: 64.0625em) {
    .h3 {
        font-size: 20px;
        line-height: 36px;
    }
}

.subtext {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

.text-uppercase {
    text-transform: uppercase;
}

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.price-item {
    margin-bottom:5px;
    cursor:pointer;
}
.page-checkbox-label span {
    font-weight: 500;
    color: #ff3002;
}
.product-body .col-l, .product-body .col-r {
    width: 49%;
    display:inline-block;
    max-width: 49%;
}



@media (max-width: 768px){
    .product-body .col-l, .product-body .col-r {
        width: 100%;
        display:block;
        max-width: 100%;
    }
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media all {
    .col-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 48em) {
    .col-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 64.0625em) {
    .col-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 81.25em) {
    .col-xl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.d-none {
    display: none;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.d-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media all {
    .d-sm-none {
        display: none;
    }
    .d-sm-inline {
        display: inline;
    }
    .d-sm-inline-block {
        display: inline-block;
    }
    .d-sm-block {
        display: block;
    }
    .d-sm-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 48em) {
    .d-md-none {
        display: none;
    }
    .d-md-inline {
        display: inline;
    }
    .d-md-inline-block {
        display: inline-block;
    }
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 64.0625em) {
    .d-lg-none {
        display: none;
    }
    .d-lg-inline {
        display: inline;
    }
    .d-lg-inline-block {
        display: inline-block;
    }
    .d-lg-block {
        display: block;
    }
    .d-lg-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 81.25em) {
    .d-xl-none {
        display: none;
    }
    .d-xl-inline {
        display: inline;
    }
    .d-xl-inline-block {
        display: inline-block;
    }
    .d-xl-block {
        display: block;
    }
    .d-xl-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.c-primary {
    color: #FF3002;
}

.c-dark {
    color: #6c6c6c;
}

.c-red {
    color: #fd0304;
}

.c-light {
    color: #f0f0f0;
}

.c-white {
    color: #fbfbfb;
}

.f-light {
    font-weight: 300;
}

.f-normal {
    font-weight: 400;
}

.f-medium {
    font-weight: 500;
}

.f-bold {
    font-weight: 700;
}

.t-small {
    font-size: 0.875rem;
}

.t-normal {
    font-size: 1rem;
}

.t-large {
    font-size: 1.125rem;
}

.t-em-small {
    font-size: 0.875em;
}

.t-em-normal {
    font-size: 1em;
}

.t-em-large {
    font-size: 1.125em;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

@media all {
    .text-sm-left {
        text-align: left;
    }
    .text-sm-right {
        text-align: right;
    }
    .text-sm-center {
        text-align: center;
    }
}

@media (min-width: 48em) {
    .text-md-left {
        text-align: left;
    }
    .text-md-right {
        text-align: right;
    }
    .text-md-center {
        text-align: center;
    }
}

@media (min-width: 64.0625em) {
    .text-lg-left {
        text-align: left;
    }
    .text-lg-right {
        text-align: right;
    }
    .text-lg-center {
        text-align: center;
    }
}

@media (min-width: 81.25em) {
    .text-xl-left {
        text-align: left;
    }
    .text-xl-right {
        text-align: right;
    }
    .text-xl-center {
        text-align: center;
    }
}

body {
    padding: 0;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 400;
    /*font-size: 130%;*/
    color: #333;
    background-color: #f4f4f4;
}

:root {
    line-height: 1;
    font-size: 14px;
}

@media (min-width: 64.0625em) {
    :root {
        font-size: 16px;
    }
}

.page {
    left: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.page.menu-open {
    position: fixed;
    left: -80%;
    width: 100%;
}

.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.float-center {
    margin-left: auto;
    margin-right: auto;
}

.icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.wrapper {
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 64.0625em) {
    .wrapper {
        max-width: none;
    }
}

@media (min-width: 81.25em) {
    .wrapper {
        padding: 0;
        max-width: 1290px;
    }
}

.wrapper-main {
    /* Прижатие футера */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.column {
    padding-left: 15px;
    padding-right: 15px;
}

.img-lazy {
    position: relative;
    width: 100%;
    max-height: 100%;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-lazy::before {
    content: "";
    width: 100%;
    display: block;
    max-height: 100%;
    padding-bottom: 60%;
    background-color: #f2f2f2;
}

.img-lazy::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: load 0.8s infinite linear;
    animation: load 0.8s infinite linear;
    border: 6px solid rgba(99, 99, 99, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
}

@-webkit-keyframes load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.tabs-body {
    display: none;
}

.tabs-body.active {
    display: block;
}

a,
input,
button,
textarea {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

input,
button,
textarea {
    padding: 8px 20px;
}

.hamburger {
    padding: 0;
    width: 27px;
    z-index: 100;
    max-height: 21px;
    vertical-align: middle;
    background-color: transparent;
}

.hamburger__line {
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fbfbfb;
    -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.hamburger__line--middle {
    margin: 5px 0;
}

.hamburger.active span {
    position: absolute;
    top: 0;
    left: 0;
}

.hamburger.active span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.btn {
    display: inline-block;
}

.btn svg, .btn span {
    display: inline-block;
    vertical-align: middle;
}

.btn__blue {
    color: #fbfbfb;
    background-color: #FF3002;
    -webkit-box-shadow: 0 0 5px 2px rgba(255, 48, 2, 0.4);
    box-shadow: 0 0 5px 2px rgba(255, 48, 2, 0.4);
}

.btn__blue:hover {
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 48, 2, 0.4);
    box-shadow: 0 0 1px 1px rgba(255, 48, 2, 0.4);
}

.link-hover,
.link-hovered {
    text-decoration: none;
}

.link-hover span,
.link-hovered span {
    display: inline;
    line-height: 1.2;
    -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.link-hovered span {
    border-bottom: 1px solid currentColor;
}

.link-hovered:hover span {
    border-bottom-color: transparent;
}

.link-hover span {
    border-bottom: 1px solid transparent;
}

.link-hover:hover span {
    border-bottom-color: currentColor;
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
    -o-transition: opacity .25s ease, visibility 0s ease .25s;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;

    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: -webkit-calc(50% - 50px);
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;

    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Transition effects */
.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }
    .fancybox-slide--image {
        padding: 6px 0;
    }
    .fancybox-close-small {
        right: -6px;
    }
    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }
    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}

/* Fullscreen  */
.fancybox-button--fullscreen::before {
    width: 15px;
    height: 11px;
    left: -webkit-calc(50% - 7px);
    left: calc(50% - 7px);
    top: -webkit-calc(50% - 6px);
    top: calc(50% - 6px);
    border: 2px solid;
    background: none;
}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: -webkit-calc(100% - 8px);
    max-height: calc(100% - 8px);
    max-width: -webkit-calc(50% - 4px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs__list a {
        max-width: -webkit-calc(100% - 10px);
        max-width: calc(100% - 10px);
    }
}

.fancybox-slide--html {
    padding: 0;
}

.fancybox-content {
    padding: 44px 20px;
}

@media (min-width: 64.0625em) {
    .fancybox-content {
        padding: 44px;
    }
}

/*!Ion.RangeSlider, 2.3.0, Â© Denis Ineshin, 2010 - 2018, IonDen.com, Build date: 2018-12-12 00:07:25*/
.irs {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
}

.irs-handle {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    z-index: 1;
}

.irs-handle.type_last {
    z-index: 2;
}

.irs-min,
.irs-max {
    position: absolute;
    display: block;
    cursor: default;
}

.irs-min {
    left: 0;
}

.irs-max {
    right: 0;
}

.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: .4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}

.irs--flat {
    height: 40px;
}

.irs--flat.irs-with-grid {
    height: 60px;
}

.irs--flat .irs-line {
    top: 25px;
    border: 1px solid #DEDEDE;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 10px;
    background-color: transparent;
}

.irs--flat .irs-bar {
    top: 25px;
    height: 10px;
    border: 1px solid #DEDEDE;
    border-right: 0;
    border-left: 0;
    background-color: #f4f4f4;
}

.irs--flat .irs-bar--single {
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: #e1e4e9;
}

.irs--flat .irs-handle {
    top: 16px;
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23929292' d='M5.3 7.5l.2-.3 3.8-5.4c.2-.3.2-.7 0-.9L9.2.6C9.1.5 7.5.6 5.4.6 3.4.6 1 .5.9.6L.6.9c-.2.3-.2.7 0 .9l3.8 5.4.2.3c.2.2.6.2.7 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-background-size: 14px 14px;
    background-size: 14px 14px;
    background-color: transparent;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    top: 0;
    padding: 1px 3px;
    color: #999;
    font-size: 13px;
    line-height: 1.333;
    text-shadow: none;
    background-color: #e1e4e9;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
    color: white;
    font-size: 13px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #ed5565;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #ed5565;
}

.irs--flat .irs-grid-pol {
    background-color: #e1e4e9;
}

.irs--flat .irs-grid-text {
    color: #999;
}

.irs--big {
    height: 55px;
}

.irs--big.irs-with-grid {
    height: 70px;
}

.irs--big .irs-line {
    top: 33px;
    height: 12px;
    background-color: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ddd), color-stop(150%, white));
    background: -webkit-linear-gradient(top, #ddd -50%, white 150%);
    background: -o-linear-gradient(top, #ddd -50%, white 150%);
    background: linear-gradient(to bottom, #ddd -50%, white 150%);
    border: 1px solid #ccc;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.irs--big .irs-bar {
    top: 33px;
    height: 12px;
    background-color: #92bce0;
    border: 1px solid #428bca;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #428bca), to(#b9d4ec));
    background: -webkit-linear-gradient(top, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
    -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}

.irs--big .irs-bar--single {
    -webkit-border-radius: 12px 0 0 12px;
    border-radius: 12px 0 0 12px;
}

.irs--big .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: rgba(66, 139, 202, 0.5);
}

.irs--big .irs-handle {
    top: 25px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #cbcfd5;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #B4B9BE), to(white));
    background: -webkit-linear-gradient(top, white 0%, #B4B9BE 30%, white 100%);
    background: -o-linear-gradient(top, white 0%, #B4B9BE 30%, white 100%);
    background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
    border-color: rgba(0, 0, 0, 0.45);
    background-color: #939ba7;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #919BA5), to(white));
    background: -webkit-linear-gradient(top, white 0%, #919BA5 30%, white 100%);
    background: -o-linear-gradient(top, white 0%, #919BA5 30%, white 100%);
    background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
}

.irs--big .irs-min,
.irs--big .irs-max {
    top: 0;
    padding: 1px 5px;
    color: white;
    text-shadow: none;
    background-color: #9f9f9f;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
    color: white;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #428bca;
    background: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
    background: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
    background: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.irs--big .irs-grid-pol {
    background-color: #428bca;
}

.irs--big .irs-grid-text {
    color: #428bca;
}

.irs--modern {
    height: 55px;
}

.irs--modern.irs-with-grid {
    height: 55px;
}

.irs--modern .irs-line {
    top: 25px;
    height: 5px;
    background-color: #d1d6e0;
    background: -webkit-gradient(linear, left top, left bottom, from(#e0e4ea), to(#d1d6e0));
    background: -webkit-linear-gradient(top, #e0e4ea 0%, #d1d6e0 100%);
    background: -o-linear-gradient(top, #e0e4ea 0%, #d1d6e0 100%);
    background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.irs--modern .irs-bar {
    top: 25px;
    height: 5px;
    background: #20b426;
    background: -webkit-gradient(linear, left top, left bottom, from(#20b426), to(#18891d));
    background: -webkit-linear-gradient(top, #20b426 0%, #18891d 100%);
    background: -o-linear-gradient(top, #20b426 0%, #18891d 100%);
    background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}

.irs--modern .irs-bar--single {
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}

.irs--modern .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(209, 214, 224, 0.5);
}

.irs--modern .irs-handle {
    top: 37px;
    width: 12px;
    height: 13px;
    border: 1px solid #a3adc1;
    border-top-width: 0;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(1) {
    position: absolute;
    display: block;
    top: -4px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 1px solid #a3adc1;
    background: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.irs--modern .irs-handle > i:nth-child(2) {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 10px;
    height: 12px;
    background: #e9e6e6;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e6e6));
    background: -webkit-linear-gradient(top, white 0%, #e9e6e6 100%);
    background: -o-linear-gradient(top, white 0%, #e9e6e6 100%);
    background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(3) {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1;
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
    border-color: #7685a2;
    background: #c3c7cd;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #919ba5), to(#ffffff));
    background: -webkit-linear-gradient(top, #ffffff 0%, #919ba5 30%, #ffffff 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #919ba5 30%, #ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}

.irs--modern .irs-handle.state_hover > i:nth-child(1),
.irs--modern .irs-handle:hover > i:nth-child(1) {
    border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover > i:nth-child(3),
.irs--modern .irs-handle:hover > i:nth-child(3) {
    border-color: #48536a;
}

.irs--modern .irs-min,
.irs--modern .irs-max {
    top: 0;
    font-size: 13px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    color: white;
    background-color: #d1d6e0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
    font-size: 13px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #20b426;
    color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #20b426;
}

.irs--modern .irs-grid {
    height: 25px;
}

.irs--modern .irs-grid-pol {
    background-color: #dedede;
}

.irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--sharp {
    height: 50px;
    font-size: 14px;
    line-height: 1;
}

.irs--sharp.irs-with-grid {
    height: 57px;
}

.irs--sharp .irs-line {
    top: 30px;
    height: 2px;
    background-color: black;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.irs--sharp .irs-bar {
    top: 30px;
    height: 2px;
    background-color: #ee22fa;
}

.irs--sharp .irs-bar--single {
    -webkit-border-radius: 2px 0 0 2px;
    border-radius: 2px 0 0 2px;
}

.irs--sharp .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(0, 0, 0, 0.5);
}

.irs--sharp .irs-handle {
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #a804b2;
}

.irs--sharp .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
    background-color: black;
}

.irs--sharp .irs-handle.state_hover > i:first-child,
.irs--sharp .irs-handle:hover > i:first-child {
    border-top-color: black;
}

.irs--sharp .irs-min,
.irs--sharp .irs-max {
    color: white;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 4px;
    opacity: .4;
    background-color: #a804b2;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 4px;
    background-color: #a804b2;
    color: white;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-grid {
    height: 25px;
}

.irs--sharp .irs-grid-pol {
    background-color: #dedede;
}

.irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--round {
    height: 50px;
}

.irs--round.irs-with-grid {
    height: 65px;
}

.irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #dee4ec;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #006cfa;
}

.irs--round .irs-bar--single {
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
    height: 4px;
    bottom: 21px;
    background-color: rgba(222, 228, 236, 0.5);
}

.irs--round .irs-handle {
    top: 26px;
    width: 24px;
    height: 24px;
    border: 4px solid #006cfa;
    background-color: white;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: #f0f6ff;
}

.irs--round .irs-min,
.irs--round .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #006cfa;
    color: white;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #006cfa;
}

.irs--round .irs-grid {
    height: 25px;
}

.irs--round .irs-grid-pol {
    background-color: #dedede;
}

.irs--round .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--square {
    height: 50px;
}

.irs--square.irs-with-grid {
    height: 60px;
}

.irs--square .irs-line {
    top: 31px;
    height: 4px;
    background-color: #dedede;
}

.irs--square .irs-bar {
    top: 31px;
    height: 4px;
    background-color: black;
}

.irs--square .irs-shadow {
    height: 2px;
    bottom: 21px;
    background-color: #dedede;
}

.irs--square .irs-handle {
    top: 25px;
    width: 16px;
    height: 16px;
    border: 3px solid black;
    background-color: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
    background-color: #f0f6ff;
}

.irs--square .irs-min,
.irs--square .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.irs--square .irs-from,
.irs--square .irs-to,
.irs--square .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: black;
    color: white;
}

.irs--square .irs-grid {
    height: 25px;
}

.irs--square .irs-grid-pol {
    background-color: #dedede;
}

.irs--square .irs-grid-text {
    color: silver;
    font-size: 11px;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("../img/plugins/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("../fonts/slick/slick.eot");
    src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.15;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: #fbfbfb;
    opacity: 0.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.15;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: #FF3002;
    opacity: 0.85;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {

}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-slider {
    display: none;
}

.slick-slider.slick-initialized {
    display: block;
}

.slick-list {
    max-height: none !important;
}

.slider__btn {
    position: absolute;
    top: 25%;
    z-index: 1;
    padding: 25px;
    line-height: 0;
    color: #969696;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
}

.slider__btn svg {
    width: 20px;
    height: 40px;
}

.slider__btn--prev {
    left: -40px;
}

.slider__btn--next {
    right: -40px;
}

.slick-disabled {
    color: #eee;

}

.breadcrumb-main {
    margin-top: -5px;
    margin-bottom: 25px;
}

.breadcrumb__item {
    color: #878787;
    font-size: 11px;
    line-height: 16px;
    vertical-align: middle;
}

.breadcrumb__item-container {
    vertical-align: middle;
}

.breadcrumb__item:last-child {
    color: #202020;

}

.card {
    position: relative;
    border: 1px solid #E9E9E9;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 20px 10px;
    width: 100%;
    background-color: #fff;
}

@media (min-width: 22.5em) {
    .card {
        padding: 30px 20px;
    }
}

@media (min-width: 48em) {
    .card {
        padding: 30px;
    }
}

.card:not(:last-child) {
    margin-bottom: 10px;
}

.card__image-wrap {
    z-index: 1;
    height: 46vw;
    -webkit-transition: height 0.25s ease-in-out;
    -o-transition: height 0.25s ease-in-out;
    transition: height 0.25s ease-in-out;
}

@media (min-width: 48em) {
    .card__image-wrap {
        margin-right: 5px;
        padding-right: 15px;
        height: 160px;
    }
}

.card__image-container {
    max-height: 100%;
}

.card__image-container::before {
    padding-bottom: 46vw;
}

@media (min-width: 48em) {
    .card__image-container::before {
        padding-bottom: 160px;
    }
}

.card-body {
    position: relative;
    -webkit-transition: all 0.25s cubic-bezier(0, 0.82, 0.43, 0.43);
    -o-transition: all 0.25s cubic-bezier(0, 0.82, 0.43, 0.43);
    transition: all 0.25s cubic-bezier(0, 0.82, 0.43, 0.43);
}

.card__name {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 29px;
}

@media (min-width: 48em) {
    .card__name {
        line-height: 35px;
    }
}

.card-options {
    margin-bottom: 20px;
}

.card-list__item {
    margin-bottom: 10px;
    padding-right: 5px;
    font-size: 13px;
    line-height: 13px;
    color: #000;
}

.card-bottom {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}

@media (max-width: 64.0525em) {
    .card-bottom {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(100% + 40px);
        -ms-flex: 0 0 calc(100% + 40px);
        flex: 0 0 calc(100% + 40px);
        margin: 20px -20px 0;
        border-top: 1px dashed #BEBEBE;
        border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23BEBEBE' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
        border-image-slice: 8 0 0 0;
        border-image-repeat: repeat;
        padding: 20px 20px 0;
        max-width: -webkit-calc(100% + 40px);
        max-width: calc(100% + 40px);
    }
}

@media (max-width: 64.0525em) and (max-width: 22.4375em) {
    .card-bottom {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(100% + 20px);
        -ms-flex: 0 0 calc(100% + 20px);
        flex: 0 0 calc(100% + 20px);
        margin: 20px -10px 0;
        padding: 20px 10px 0;
        max-width: -webkit-calc(100% + 20px);
        max-width: calc(100% + 20px);

    }
}

.card__price-container {
    margin-bottom: 10px;
}

@media (min-width: 64.0625em) {
    .card__price-container {
        margin-bottom: 0;
    }
}

.card__price--old {
    font-size: 14px;
    line-height: 19px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #929292;
}

.card__price--new {
    font-size: 20px;
    line-height: 32px;
}

.card-availability {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 23px;
    color: #000000;
}

@media (min-width: 64.0625em) {
    .card-availability {
        margin: 0 15px 0 0;
    }
}

.card-availability__icon {
    margin-right: 10px;
}

.card-counter {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #F4F4F4;
}

.card-counter-input {
    padding: 10px;
    width: 64px;
    height: 44px;
    font-size: 20px;
    line-height: 44px;
    color: #000;
}

@media (min-width: 48em) {
    .card-counter-input {
        width: 73px;
    }
}

.card-counter-btn {
    padding: 7px 15px;
    line-height: 0;
}

.card-counter-btn--up svg {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.card-counter-btn:focus svg, .card-counter-btn:hover svg {
    stroke: #FF3002;
}

.card-counter-btn svg {
    fill: none;
    stroke: #bbb;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-counter-btn-container {
    position: relative;
}

.card-counter-btn-container::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E2E2E2;
}

.card-counter__btn {
    margin-left: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 9px;
    background-color: #FF3002;
}
.card-counter__btn.product__item-btn_basket {
    background-color: #58c16f !important;
}
.popup .product-top-content-info {
    align-items:center;
}
@media (min-width: 22.5em) {
    .card-counter__btn {
        margin-left: 10px;
    }
}

.card-counter__btn:focus, .card-counter__btn:hover {
    background-color: #C4C4C4;
}

.card-counter__btn svg {
    fill: none;
    stroke: #fbfbfb;
}

.card__btn {
    display: inline-block;
    margin-left: 5px;
    border: 1px solid #E9E9E9;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 17px;
    font-size: 11px;
    line-height: 0.75;
    white-space: nowrap;
    background-color: #E9E9E9;
    -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

@media (min-width: 768px) {
    .card__btn {
        margin-left: 10px;
        padding: 15px 10px;
    }
}
@media (min-width: 22.5em) {
    .card__btn {
        margin-left: 10px;
    }
}

@media (min-width: 48em) {
    .card__btn {
        margin-left: 25px;
        font-size: 14px;
        color: #FF3002;
        background-color: transparent;
    }
    .card__btn:focus, .card__btn:hover {
        border-color: #FF3002;
    }
    .card__btn:focus svg, .card__btn:hover svg {
        fill: #FF3002;
    }
    .card__price-container .card__btn{
        margin-left: 0;
    }
}

.card__btn span {
    line-height: 1;
    border-bottom-color: transparent;
}

@media (min-width: 48em) {
    .card__btn span {
        border-bottom-color: currentColor;
    }
}

.card__btn-icon {
    fill: #fff;
    stroke: #FF3002;
    margin-left: 10px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.product-card {
    height: 100%;
    border: 1px solid #E9E9E9;
    margin-bottom: 2px;
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
}

.product-card:focus, .product-card:hover {
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.product-card-slide:not(:last-child) {
    margin-bottom: 20px;
}

@media (min-width: 64.0625em) {
    .product-card-slide:not(:last-child) {
        margin-bottom: 0;
    }
    .product-card-slide:not(.slick-slide) {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.product-card__image {
    max-height: 100%;
		width: auto;
		height: auto;
}

.product-card__image-container {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-card__image-container::before {
    background-color: transparent;
}

.product-card-body {
    padding: 15px 40px 40px;
}

@media (min-width: 64.0625em) {
    .product-card-body {
        padding: 30px 40px 75px;
    }
}

.product-card__name {
    line-height: 16px;
    font-size: 13px;
    color: #000;
}

.product-card__info {
    font-size: 14px;
    margin-top: 10px;
    line-height: 22px;
}

.product-card__price-container {
    font-size: 14px;
    margin-top: 15px;
    line-height: 22px;
}

.product-card__price-container span:not(:last-child) {
    color: #929292;
    margin-right: 5px;
}

.product-card__price--old {
    text-decoration: line-through;
}

.cart {
    padding: 40px 0;
}

.cart-color {
    background-color: #f7f7f7;
}

@media (min-width: 64.0625em) {
    .cart {
        padding: 90px 0;
    }
}

.cart__title {
    padding-bottom: 20px;

}
@media (min-width: 64.0625em) {
    .cart__title {
        padding-bottom: 40px;
    }
}

.cart-items-container {
    margin: 0 -20px 30px;
    padding: 15px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 64.0625em) {
    .cart-items-container {
        margin: 0;
        margin-bottom: 60px;
        padding: 25px;
    }
}

.cart-deliveries-container {
    margin-bottom: 30px;
}

@media (min-width: 64.0625em) {
    .cart-deliveries-container {
        margin-bottom: 60px;
    }
}

.cart-deliveries-description {
    font-size: 14px;
    line-height: 22px;
    color: #4e4e4e;
}

@media (min-width: 64.0625em) {
    .cart-form {
        margin: -10px;
    }
}

.cart-form__input {
    display: inline-block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 10px 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 15px;
    max-width: 100%;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    background-color: #fbfbfb;
    -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.cart-form__input::-webkit-input-placeholder {
    color: #9d9d9d;
}

.cart-form__input::-moz-placeholder {
    color: #9d9d9d;
}

.cart-form__input:-ms-input-placeholder {
    color: #9d9d9d;
}

.cart-form__input::-ms-input-placeholder {
    color: #9d9d9d;
}

.cart-form__input::placeholder {
    color: #9d9d9d;
}

.cart-form__input:focus, .cart-form__input:hover {
    color: #202020;
}

@media (min-width: 64.0625em) {
    .cart-form__input {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 230px;
        -ms-flex: 0 0 230px;
        flex: 0 0 230px;
        margin: 10px;
        max-width: 230px;
    }
}

.cart-form__textarea {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    resize: none;
    outline: none;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    min-height: 120px;
}

.cart-form__textarea::-webkit-scrollbar-track, .cart-form__textarea::-webkit-scrollbar, .cart-form__textarea::-webkit-scrollbar-thumb {
    display: none;
}

.cart-form__captcha {
    margin: 10px;
    margin-left: 0;
    -webkit-box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 64.0625em) {
    .cart-form__captcha {
        margin-left: 10px;
    }
}

.cart-form__address {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
}

.cart-form__btn {
    display: inline-block;
    margin: 10px 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    color: #fbfbfb;
    background-color: rgba(255, 48, 2, 0.8);
}

@media (min-width: 64.0625em) {
    .cart-form__btn {
        margin: 10px;
        height: 40px;
        line-height: 40px;
    }
}

.cart-form__btn:hover {
    background-color: #FF3002;
}

.cart__btn {
    display: inline-block;
    margin: 10px 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    color: #fbfbfb;
    background-color: rgba(255, 48, 2, 0.8);
}

@media (min-width: 64.0625em) {
    .cart__btn {
        height: 40px;
        line-height: 40px;
    }
}

.cart__btn:hover {
    background-color: #FF3002;
}

/* */
.cart-table {
    width: 100%;
}

.cart-table-body {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
}

@media (max-width: 64.0525em) {
    .cart-table-body {
        padding: 10px 0 15px;
        border-top: 1px solid #ddd;
    }
    .cart-table-body:nth-child(2) {
        border-top: 0;
    }
}

@media (min-width: 64.0625em) {
    .cart-table-body {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.cart-table__item {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: left;
    padding: 5px 0;
    padding-left: 5px;
}

@media (min-width: 64.0625em) {
    .cart-table__item {
        padding: 15px 0;
        border-top: 1px solid #ddd;
    }
}

.cart-table__item:last-of-type {
    padding-bottom: 0;
}

.cart-table__item-select {
    display: inline-block;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    border: 1px solid #f0f0f0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 25px 0 15px;
    width: 100%;
    height: 36px;
    max-width: 100%;
    font-size: 14px;
    line-height: 36px;
    color: #202020;
    background-color: #fbfbfb;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%23000' d='M6 11L1 5.667V2l5 5.333L11 2v3.667L6 11z'/%3E%3C/svg%3E");
    background-position: 92% 50%;
    -webkit-background-size: 12px 12px;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cart-table__item-select:focus {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (min-width: 64.0625em) {
    .cart-table__item-select {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        padding-left: 20px;
        width: auto;
        max-width: none;
    }
}

.cart-table__item-remove-icon {
    position: relative;
    display: block;
    -webkit-border-radius: 99px;
    border-radius: 99px;
    width: 17px;
    height: 17px;
}

.cart-table__item-remove-icon:before, .cart-table__item-remove-icon:after {
    left: 0;
    top: 50%;
    right: 0;
    content: "";
    width: 15px;
    position: absolute;
    height: 3px;
    background-color: #fd0304;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cart-table__item-remove-icon:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cart-table__item--image {
    display: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
}

.cart-table__item--image a {
    display: block;
    text-align: center;
}

.cart-table__item--image img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 64.0625em) {
    .cart-table__item--image {
        display: block;
    }
}

.cart-table__item--name {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-bottom: 10px;
    max-width: 100%;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.cart-table__item--name span {
    display: block;
    margin-top: 5px;
    font-weight: 300;
    font-size: 0.75em;
    line-height: 0.8em;
}

@media (max-width: 64.0525em) {
    .cart-table__item--name {
        padding-right: 20px;
    }
}

@media (min-width: 64.0625em) {
    .cart-table__item--name {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-bottom: 0;
        max-width: none;
        font-size: 22px;
        line-height: 26px;
    }
}

.cart-table__item--price {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 37.5%;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
}

@media (max-width: 64.0525em) {
    .cart-table__item--price {
        padding-left: 0;
    }
}

@media (min-width: 64.0625em) {
    .cart-table__item--price {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 165px;
        -ms-flex: 0 0 165px;
        flex: 0 0 165px;
        max-width: 165px;
        font-size: 20px;
        line-height: 24px;
    }
}

.cart-table__item--amount {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 64.0525em) {
    .cart-table__item--amount {
        padding-right: 10px;
    }
}

@media (min-width: 64.0625em) {
    .cart-table__item--amount {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 165px;
        -ms-flex: 0 0 165px;
        flex: 0 0 165px;
        max-width: 165px;
    }
}

.cart-table__item--price-last {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 37.5%;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
}

@media (max-width: 64.0525em) {
    .cart-table__item--price-last p {
        margin-bottom: 5px;
        font-size: 14px;
        color: #c4c4c4;
    }
}

@media (min-width: 64.0625em) {
    .cart-table__item--price-last {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 165px;
        -ms-flex: 0 0 165px;
        flex: 0 0 165px;
        max-width: 165px;
        font-size: 20px;
        line-height: 24px;
    }
    .cart-table__item--price-last p {
        display: none;
    }
}

.cart-table__item--remove {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
}

@media (max-width: 64.0525em) {
    .cart-table__item--remove {
        position: absolute;
        right: 0;
        top: 10px;
    }
}

.cart-table-top {
    display: none;
}

@media (min-width: 64.0625em) {
    .cart-table-top {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.cart-table-top__item--image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    border-top-color: transparent;
}

.cart-table-top__item--name {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: none;
    border-top-color: transparent;
}

.cart-table-top__item--price {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 165px;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    max-width: 165px;
    border-top-color: transparent;
}

.cart-table-top__item--amount {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 165px;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    max-width: 165px;
    border-top-color: transparent;
}

.cart-table-top__item--price-last {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 165px;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    max-width: 165px;
    border-top-color: transparent;
}

.cart-table-top__item--remove {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    border-top-color: transparent;
}

.cart-table-bottom {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.cart-table-bottom__item {
    text-align: right;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
}
.cart-table-note {
    margin-top: 20px;
    text-align: right;

}


.catalog-main {
    padding: 30px 0;
}

@media (min-width: 64.0625em) {
    .catalog-main {
        padding: 75px 0 80px;
    }
}

.footer-main {
    padding-top: 30px;
    background-color: #fff;
}

@media (min-width: 64.0625em) {
    .footer-main {
        padding-top: 120px;
        padding-bottom: 113px;
        background-color: transparent;
    }
}

.footer-contacts {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 64.0625em) {
    .footer-contacts {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.footer-contacts-container {
    margin-left: auto;
    padding: 25px 0;
    background-color: #fff;
    margin-top: 10px;
}

@media (min-width: 64.0625em) {
    .footer-contacts-container {
        padding: 65px 75px;
        padding-bottom: 85px;
        max-width: 522px;
        margin-left: auto;
    }
}

.footer-phone {
    font-size: 18px;
    color: #414141;
    letter-spacing: 0.05em;
}

@media (min-width: 22.5em) {
    .footer-phone {
        font-size: 21px;
    }
}

@media (min-width: 64.0625em) {
    .footer-phone {
        font-size: 25px;
    }
}

.footer-phone:focus, .footer-phone:hover {
    opacity: .8;
}

.footer-phone__icon {
    margin-right: 10px;
}

@media (min-width: 64.0625em) {
    .footer-phone__icon {
        width: 26px;
        height: 26px;
    }
}

.footer-btn {
    position: relative;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
    margin-left: 36px;
}

@media (min-width: 64.0625em) {
    .footer-btn {
        margin-left: 45px;
    }
}

.footer-btn::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 0;
    width: 5px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 5 30' fill='none' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M4 0V12L1 15.2308L4 18.4615V30' stroke='%23FF3002' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 50%;
}

@media (min-width: 64.0625em) {
    .footer-btn::before {
        left: -28px;
    }
}

.footer-btn:focus, .footer-btn:hover {
    color: #6c6c6c;
}

.footer-address {
    font-size: 14px;
    margin-top: 27px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-address__icon {
    margin-right: 10px;
}

@media (min-width: 64.0625em) {
    .footer-address__icon {
        margin-left: 10px;
        width: 26px;
        height: 26px;
    }
}

.footer-address-title {
    color: #929292;
}

@media (max-width: 64.0525em) {
    .footer .logo {
        margin-right: 10px;
    }
}

@media (min-width: 64.0625em) {
    .footer-bottom {
        margin-top: 65px;
    }
}

.header-main {
    position: relative;
    padding: 30px 0;
    color: #DEDEDE;
    background-color: #202020;
    background-image: url("../img/assets/header/bg-delivery.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

@media (min-width: 64.0625em) {
    .header-main {
        background-image: url("../img/assets/header/bg.jpg");
        padding: 65px 0;
        padding-top: 75px;
        padding-bottom: 79px;
    }
}

@media (max-width: 64.0525em) {
    .header-main--inner {
        padding-bottom: 0;
    }
    .header-contacts-container{
        background-color: #373737;
        width: 100%;
        padding: 27px 20px;
    }
    .header-main > .wrapper{
        padding: 0;
    }
    .logo-container{
        padding: 0 20px;
    }
}

@media (min-width: 64.0625em) {
    .header-main > .wrapper { position: relative; }
    /* .header-main:after { */
    .header-main:before {
        content: '';
        position: absolute;
        top: 0;
        left: 54.85%;
        /* z-index: 1; */
        width: 363px;
        /* height: 416px; */
        height: 100%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    /* .header-main.active:after { */
    .header-main.active:before {
        background-image: url("../img/assets/header/front.png");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }
    /* .webp .header-main.active:after { */
    .webp .header-main.active:before {
        background-image: url("../img/assets/header/front.png");
    }
}

.header-contacts {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 64.0625em) {
    .header-contacts {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.header-contacts-container {
    margin-top: 20px;
    margin-left: auto;
}

@media (min-width: 64.0625em) {
    .header-contacts-container {
        margin-top: 0px;
    }
}

.header-phone {
    font-size: 21px;
    color: #929292;
}

@media (min-width: 22.5em) {
    .header-phone {
        font-size: 24px;
    }
}

@media (min-width: 64.0625em) {
    .header-phone {
        font-size: 26px;
    }
}

.header-phone:focus, .header-phone:hover {
    opacity: .8;
}

.header-btn {
    position: relative;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
    margin-left: 34px;
}

@media (min-width: 64.0625em) {
    .header-btn {
        margin-left: 50px;
    }
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -17px;
    width: 5px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 5 30' fill='none' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M4 0V12L1 15.2308L4 18.4615V30' stroke='%23FF3002' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 50%;
}

@media (min-width: 64.0625em) {
    .header-btn::before {
        left: -28px;
    }
}

.header-btn:focus, .header-btn:hover {
    color: #fbfbfb;
}

.header-address {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #929292;
    text-align: left;
}

@media (min-width: 22.5em) {
    .header-address {
        font-size: 0.875rem;
    }
}
.header-bottom {
    margin-top: 49px;
}

@media (min-width: 64.0625em) {
    .header-address{
        margin-top: 26px;
        text-align: right;
    }
}

@media (max-width: 64.0525em) {
    .header-bottom{
        margin-top: 0;
        background: #fff;
        padding: 30px 20px;
        display: none;
    }
}

.header-mobile-buttons {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 30px;
}

.header-mobile-buttons__btn {
    position: relative;
    margin-left: 8px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 12px;
    background-color: #202020;
}

.header-mobile-buttons__btn-icon {
    fill: none;
    stroke: #FF3002;
}

.header-mobile-buttons__btn span {
    position: absolute;
    right: -10px;
    top: -10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    color: #FF3002;
    background-color: #434343;
}

.search-box-btn {
    padding: 0;
}

.search-box-form {
    position: relative;
    width: 100%;
    max-width: 425px;
}

.search-box-form--white {
    margin-bottom: 35px;
}

@media (max-width: 64.0525em) {
    .search-box-form--white {
        margin: 0 auto 35px;
    }
    .search-box-form{
        max-width: none;
    }
}

.search-box-input {
    display: block;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-left: 90px;
    padding-right: 55px;
    width: 100%;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 64.0625em) {
    .search-box-input {
        height: 44px;
        padding-left: 80px;
        background-color: #e9e9e9;
        color: #6a6969;
        text-overflow: ellipsis;
    }
    .search-box-label .f-calibri{
        color: #6a6969;
    }
}

.search-box-input::-webkit-search-cancel-button {
    display: none;
}

.search-box-input ::-webkit-input-placeholder {
    -webkit-transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
    -o-transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
    transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
}

.search-box-input:hover {
    color: rgba(251, 251, 251, 0.8);
}

.search-box-input:focus {
    padding-left: 15px;
}

.search-box-input:focus ~ label {
    max-width: 0;
}

.search-box-input:focus::-webkit-search-cancel-button {
    display: block;
}

.search-box-form--white .search-box-input {
    color: #585656;
    background-color: rgba(146, 146, 146, 0.2);
}

.search-box-label {
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    font-size: 11px;
    max-width: 60px;
    overflow: hidden;
    line-height: 14px;
    white-space: nowrap;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s cubic-bezier(0, 0.38, 0.29, 0.29);
    -o-transition: all 0.2s cubic-bezier(0, 0.38, 0.29, 0.29);
    transition: all 0.2s cubic-bezier(0, 0.38, 0.29, 0.29);
}

@media (max-width: 64.0625em) {
    .search-box-label{
        color: #FF3002;
        font-size: 13px;
    }
}

@media (min-width: 64.0625em) {
    .search-box-label {
        left: 19px;
        font-size: 13px;
    }
}

.search-box-form--white .search-box-label {
    color: #FF3002;
}

.search-box-label span {
    opacity: 0.4;
    font-size: 13px;
}

.search-box-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 38px;
    height: 38px;
    line-height: 0.75;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 64.0625em) {
    .search-box-btn {
        right: 13px;
        width: 44px;
        height: 44px;
    }
}

.search-box-btn-icon {
    fill: none;
    stroke: #FF3002;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-box-btn:focus svg, .search-box-btn:hover svg {
    stroke: #bf2300;
}

.basket-box {
    width: 100%;
    height: 44px;
    font-size: 13px;
    max-width: 325px;
    padding: 10px 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.basket-box-container {
    margin-left: auto;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 64.0625em) {
    .basket-box-container{
        display: none;
    }
}

.basket-box__icon {
    fill: none;
    stroke: #FF3002;
    margin-right: 13px;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.basket-box__text {
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.basket-box:focus svg, .basket-box:hover svg {
    stroke: #bf2300;
}

.basket-box:focus .basket-box__text, .basket-box:hover .basket-box__text {
    color: #bf2300;
}

/*.logo {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}*/

.logo:focus, .logo:hover {
    opacity: .8;
}
.header .logo img {
		width: auto;
    max-height: 40px;
    margin-top:-7px;
}
@media (min-width: 64.0625em) {
    .logo-container {
        margin-top: 8px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .logo img {
        max-height: 70px;
    }
}

.logo__icon {
    margin-right: 15px;
    width: 32px;
    height: 32px;
}

@media (min-width: 64.0625em) {
    .logo__icon {
        width: 46px;
        height: 46px;
    }
}

.logo__text {
    font-size: 18px;
    line-height: 0.75;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (min-width: 64.0625em) {
    .logo__text {
        font-size: 34px;
        margin-top: 2px;
    }
}

.logo-subtext {
    margin-top: 15px;
    /*margin-top: -12px;*/
    font-size: 9px;
    line-height: 18px;
    letter-spacing: 0.32em;
    margin-left: 48px;
    margin-top: -14px;
    /*text-transform: uppercase;*/
    text-transform: lowercase;
}

@media (min-width: 64.0625em) {
    .logo-subtext {
        /*margin-top: 0;*/
        /*margin-top: 6px;*/
        margin-top: -14px;
        margin-left: 63px;
        font-size: 13px;
        line-height: 19px;
        letter-spacing: .99em;
    }
}

.footer .logo img{
    max-height: 90px;
}
@media (min-width: 64.0625em) {

    .footer .logo img{
        max-height: 70px;
    }
    /*.footer .logo{
height: 46px;
}
/*.footer .logo__icon{
width: 39px;
height: 39px;
}*/
}

.nav-main {
    position: relative;
}

@media (min-width: 64.0625em) {
    .nav-main {
        margin-bottom: 53px;
    }
}

.nav-menu {
    position: absolute;
    left: 20px;
	width: 98%;
}

.nav-menu.top:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -75px;
    border: 4px solid #FF3002;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.nav-menu.bottom {
    margin-top: 33px;
}

.nav-menu.bottom:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -84px;
    border: 4px solid #FF3002;
    -webkit-border-top-right-radius: 8px;
    border-top-right-radius: 8px;
    -webkit-border-top-left-radius: 8px;
    border-top-left-radius: 8px;
}

.nav-menu__item {
    padding: 30px 0;
}

.nav-menu-categories__item_level_2 {
    display: none;
}

.nav-menu-categories__item-container:hover .nav-menu-categories__item_level_2 {
    display: block;
	position: absolute;
    top: 0;
	left: 330px;
	background: #F4F4F4;
	height: auto;
    width: 97%;
	padding: 20px 0 0 0;
    border-radius: 5px;
	height:100%;
}

@media (min-width: 64.0625em) {
    .nav-menu__item {
        padding: 0;
    }
    .nav-menu__item:not(:last-child) {
        margin-right: 57px;
    }
}

.nav-menu__item-link {
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -webkit-transition-delay: -1s;
    -o-transition-delay: -1s;
    transition-delay: -1s;
}

.nav-menu__item-link span {
    display: inline-block;
    line-height: 1;
}

.nav-menu__item-link-icon {
    margin-left: 5px;
    margin-bottom: 2px;
    fill: none;
    stroke: #e2e2e2;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.bottom .nav-menu__item-link-icon {
    stroke: #b1b1b1;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.nav-menu__item-link:focus, .nav-menu__item-link:hover {
    color: #FF3002;
}

.nav-menu__item-link:focus svg, .nav-menu__item-link:hover svg {
    stroke: #FF3002;
}

.nav-menu-categories {
    position: absolute;
    z-index: 10;
    top: -webkit-calc(100% + 30px);
    top: calc(100% + 30px);
    left: -999px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
    -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), visible 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), visible 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), visible 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 11;
}

.bottom .nav-menu-categories {
    top: auto;
    bottom: -webkit-calc(100% + 30px);
    bottom: calc(100% + 30px);
}

.nav-menu-categories__item {
   /*  border: 1px solid #BEBEBE; */
    border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23BEBEBE' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
    border-image-slice: 0 0 5 0;
    border-image-repeat: repeat;
    padding: 7px 0;
}

.nav-menu-categories__item-container {
    padding: 0 5px;
}

.nav-menu-categories__link {
    display: flex;
	align-items: center;
}

.nav-menu-categories__item__img {
    display: inline-block;
    margin-right: 10px;
}
.nav-menu-categories__link svg {
	fill:none;
	stroke:none;
    margin-right: 10px;
    max-height: 24px;
    max-width: 24px;
}

.nav-menu-categories__link {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #383838;
}

.nav-menu-categories__link:hover {
    color: #FF3002;
    text-decoration: none;
}

.nav-menu-categories__link span {
    border: none;
}

@media (max-width: 64.0525em) {
    .nav-menu-categories {
        display: none;
    }
}

.nav-auth-container {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.nav-auth__link {
		position: relative;
    font-size: 14px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-auth__link:not(:last-child) {
    margin-right: 57px;
}

.nav-auth__link-icon {
    margin-right: 10px;
}

@media (max-width: 64.0525em) {
    .nav-container {
        position: fixed;
        right: -100%;
        top: 0;
        z-index: -1;
        overflow: hidden;
        overflow-y: scroll;
        padding: 0px 20px;
        width: 80%;
        height: 100%;
        color: #fbfbfb;
        background-color: #373737;
        -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-overflow-scrolling: touch;
    }
    .nav-container .nav-menu__item-link-icon {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .nav-container .nav-menu__item-link.js-active .nav-menu__item-link-icon {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .nav-container  .nav-menu-categories.js-active {
        display: block;
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        margin-top: 10px;
        background: none;
        opacity: 1;
        visibility: visible;
    }
    .nav-container .nav-menu-categories.js-active .nav-menu-categories__link {
        color: #fff;
    }
    .nav-container.is-active {
        right: 0;
        z-index: 1;
    }
    .nav-container.is-active .menu-mask {
        display: block;
    }
}

.nav-hamburger {
    padding: 0;
}

.menu-mask {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.menu-open .menu-mask {
    display: block;
}

@media (min-width: 64.0625em) {
    .css-nav-menu-btn {
        margin-bottom: -30px;
        padding-bottom: 30px;
    }
    .bottom .css-nav-menu-btn {
        margin-top: -30px;
        margin-bottom: 0;
        padding-top: 30px;
        padding-bottom: 0;
    }
    .css-nav-menu-btn .css-nav-menu-link {
        position: relative;
    }
    .css-nav-menu-btn .css-nav-menu-link::before {
        content: '';
        position: absolute;
        right: -3px;
        border: 6px solid transparent;
        border-top: 0;
        border-bottom: 0;
        opacity: 0;
        -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);

    }
    .css-nav-menu-btn:hover .css-nav-menu-link::before {
        bottom: -30px;
        border-bottom: 10px solid #fff;
        opacity: 1;
    }
    .bottom .css-nav-menu-btn:hover .css-nav-menu-link::before {
        bottom: -webkit-calc(100% + 21px);
        bottom: calc(100% + 21px);
        border-bottom: 0;
        border-top: 10px solid #fff;
    }
    .css-nav-menu-btn:hover .nav-menu-categories {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
}

.js-nav-auth-login > *,
.js-nav-auth-register > * {

}

.nav-auth {
    z-index: 10;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 35px 30px;
    min-width: 315px;
    background-color: #fff;
}

@media (min-width: 64.0625em) {
    .nav-auth {
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translate(-50%, 30px);
        -ms-transform: translate(-50%, 30px);
        transform: translate(-50%, 30px);
    }
}

.nav-auth::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    border: 10px solid #0000;
    border-top: 0;
    border-bottom: 13px solid #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);

}

.nav-auth__title {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.nav-auth__text {
    font-size: 13px;
}

.nav-auth__container {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.nav-auth__field {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 0 15px;
    width: 100%;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #878787;
    background-color: rgba(146, 146, 146, 0.2);
}

.nav-auth__btn {
    margin-top: -57px;
    margin-bottom: -22px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 0 35px;
    height: 57px;
    font-size: 14px;
    line-height: 57px;
    letter-spacing: 0.5em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: #FF3002;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}

.nav-auth__btn:hover {
    background-color: #FF6B00;
}

.order-modal {
    max-width: 100%;
}

@media (min-width: 64.0625em) {
    .order-modal {
        max-width: 350px;
    }
}

.order-modal .page-checkbox-label {
    display: inline-block;
}

.order-form__title {
    padding-bottom: 20px;
}

.buy-modal {
    max-width: 100%;
}

@media (min-width: 64.0625em) {
    .buy-modal {
        max-width: 600px;
    }
}

.card-form {
    max-width: 400px;
    margin-top: 20px;
}

.col-card-balance {
    line-height: 2em;
}

.page__form:not(:last-child) {
    margin-bottom: 15px;
}

.page__input {
    width: 100%;
    color: #6c6c6c;
    padding: 10px 20px;
    background-color: #fbfbfb;
    border: 1px solid #cad0d8;
}

.page__input-group > div:not(:last-child) {
    padding-bottom: 10px;
}

@media (min-width: 64.0625em) {
    .page__input-group > div:not(:last-child) {
        padding-right: 10px;
    }
}

.page__textarea {
    width: 100%;
    height: 120px;
    line-height: 1.15em;
}

.page-checkbox {
    width: 16px;
    height: 16px;
}

.page-checkbox-label {
    position: relative;
    padding-left: 22px;
}

@media (max-width: 64.0525em) {
    .page-checkbox-label {
        font-size: 13px;
    }
}

.page-checkbox-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 12px;
    height: 12px;
    border: 1px solid #6c6c6c;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (min-width: 64.0625em) {
    .page-checkbox-label:before {
        width: 16px;
        height: 16px;
    }
}

.page-checkbox-label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    opacity: 0;
    width: 12px;
    height: 12px;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
    background-color: #FF3002;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

@media (min-width: 64.0625em) {
    .page-checkbox-label:after {
        width: 16px;
        height: 16px;
    }
}

.page-checkbox:checked ~ label:before {
    border-color: transparent;
}

.page-checkbox:checked ~ label:after {
    opacity: 1;
}

.page-content {
    padding-top: 15px;
}

@media (min-width: 64.0625em) {
    .page-content {
        padding-top: 30px;
    }
}

.pagination-items {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagination-main {
    position: relative;
    margin-top: 60px;
}

.pagination-text {
    margin-right: 15px;
    text-transform: uppercase;
}

.pagination__item {
    position: relative;
    margin: 0 3px;
    font-size: 18px;
    line-height: 29px;
    color: #383838;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.pagination__item:not(.empty) {
    padding: 15px 25px;
    background-color: #EDEDED;
}

.pagination__item-icon {
    fill: transparent;
    stroke: #000;
}

.pagination__item-icon.down {
    margin-right: 20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pagination__item-icon.up {
    margin-left: 20px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.pagination__item--active {
    color: #000;
    display: inline-block;
    background-color: #fff !important;
}

.pagination__item:focus:not(.pagination__item--active), .pagination__item:hover:not(.pagination__item--active) {
    color: #FF3002;
}

.pagination__item:focus:not(.pagination__item--active):not(.icon), .pagination__item:hover:not(.pagination__item--active):not(.icon) {
    background-color: #fbfbfb;
}

.product-wrapper {
    margin: 0 -20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 30px 20px;
    background-color: #fff;
}

@media (min-width: 64.0625em) {
    .product-wrapper {
        margin: 0;
        padding: 50px 25px;
    }
}

.product-body {
    font-size: 14px;
    line-height: 26px;
    color: #000;
}
.product-body p {
    margin-bottom:20px;
}
.product-body p:last-child {
    margin-bottom:0px;
}
.product-body table td{
    padding: 0px 5px;
}
.product-body table tr{
    border-bottom: 1px dotted #afafaf;
}

.product-body table tr:last-child{
    border-bottom: none;
}
.product-body table tr:nth-child(even){
    background:#f4f4f4;
}
.product-body__title {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 33px;
    color: #000;
}

.product-body-options {
    margin: 20px -20px 0;
    border: 1px solid #BEBEBE;
    border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23BEBEBE' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
    border-image-slice: 8 0 0 0;
    border-image-repeat: repeat;
    padding: 15px 20px 0;
}

@media (min-width: 64.0625em) {
    .product-body-options {
        margin: 30px 0 0;
        border-image-slice: 25 0 0 0;
        padding: 25px 0 0;
    }
}

.product-body-list__item {
    margin-bottom: 10px;
    line-height: 22px;
}

.aside-main {
    position: relative;
    width: 100%;
}

@media (min-width: 64.0625em) {
    .aside-main {
        padding-right: 35px;
    }
}

@media (min-width: 64.0625em) {
    .aside-main {
        padding-right: 45px;
    }
}

@media (min-width: 81.25em) {
    .aside-main {
        padding-right: 55px;
    }
}

.aside-search {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

@media (min-width: 64.0625em) {
    .aside-search {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.aside__button {
    width: 100%;
    padding: 15px;
    background-color: #FF3002;
}

@media (min-width: 81.25em) {
    .aside__button {
        padding: 20px 25px;
    }
}

.aside__button > * {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 64.0625em) {
    .aside__button-container {
        padding-right: 20px;
    }
}

@media (min-width: 64.0625em) {
    .aside__button-container {
        padding-right: 0;
    }
}

.aside__hamburger {
    margin-right: 8px;
}

@media (min-width: 81.25em) {
    .aside__hamburger {
        margin-right: 15px;
    }
}

.navigator-category {
    width: 100%;
}

.navigator-category-container {
    position: relative;
    margin-bottom: 30px;
}

@media (min-width: 64.0625em) {
    .navigator-category-container {
        margin-bottom: 50px;
    }
}

.navigator-subcategory-container {
    display: none;
    padding: 0px 32px 25px;
}

.navigator-search {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 5;
    top: 60px;
    -webkit-box-shadow: 1px 2px 3px -1px rgba(103, 103, 103, 0.3);
    box-shadow: 1px 2px 3px -1px rgba(103, 103, 103, 0.3);
}

.navigator-search::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    border: 8px solid transparent;
    border-top: 0;
    border-bottom-color: #fbfbfb;
    -webkit-filter: drop-shadow(2px 3px 1px rgba(103, 103, 103, 0.3));
    filter: drop-shadow(2px 3px 1px rgba(103, 103, 103, 0.3));
}

.navigator-search__button {
    position: relative;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    background-color: #fff;
}

.navigator-search__button-icon {
    fill: none;
    stroke: #FF3002;
    -webkit-transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigator-search-btn {
    padding: 0;
}

.navigator-search-form {
    position: relative;
    width: 100%;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.navigator-search-input {
    display: block;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 55px;
    width: 100%;
    height: 45px;
    font-size: 14px;
    line-height: 45px;
    color: #202020;
    background-color: #fbfbfb;
    -webkit-transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 64.0625em) {
    .navigator-search-input {
        padding-left: 82px;
        padding-right: 60px;
        height: 44px;
        font-size: 13px;
        line-height: 44px;
    }
}

.navigator-search-input::-webkit-search-cancel-button {
    display: none;
}

.navigator-search-input ::-webkit-input-placeholder {
    -webkit-transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
    -o-transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
    transition: opacity 500ms cubic-bezier(0, 0.38, 0.29, 0.29);
}

.navigator-search-input:hover {
    color: rgba(251, 251, 251, 0.8);
}

.navigator-search-input:focus {
    padding-left: 15px;
}

.navigator-search-input:focus ~ label {
    max-width: 0;
}

.navigator-search-input:focus::-webkit-search-cancel-button {
    display: block;
}

.navigator-search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    width: 45px;
    height: 45px;
    line-height: 0.75;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 64.0625em) {
    .navigator-search-btn {
        right: 13px;
        width: 44px;
        height: 44px;
    }
}

.navigator-search-btn-icon {
    fill: none;
    stroke: #FF3002;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navigator-search-btn:focus svg, .navigator-search-btn:hover svg {
    stroke: #bf2300;
}

.navigator__button {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    width: -webkit-calc(100% - 68px);
    width: calc(100% - 68px);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 30px 15px 25px;
    background-color: #fff;
}

.navigator__button-icon {
    position: absolute;
    top: 50%;
    left: -webkit-calc(100% - 30px);
    left: calc(100% - 30px);
    fill: #fff;
    stroke: #000;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    -webkit-transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigator__button.active {
    color: #000;
}

.navigator__button.active svg {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 64.0625em) {
    .navigator__button {
        width: 100%;
    }
}

.navigator-list__item {
    margin: 5px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.navigator-list__btn {
    position: relative;
    width: 100%;
    color: #000;
    font-size: 14px;
    line-height: 22px;
    padding: 20px 30px;
}

.navigator-list__btn-icon {
    position: absolute;
    left: -webkit-calc(100% - 30px);
    left: calc(100% - 30px);
    top: 27px;
    fill: #fff;
    stroke: #bebebe;
    -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigator-list__btn span {
    z-index: 1;
    width: 100%;
    background-color: #fff;
}

.navigator-list__btn:focus svg, .navigator-list__btn:hover svg {
    stroke: #FF3002;
}

.navigator-list__btn:focus.link, .navigator-list__btn:hover.link {
    color: #FF3002;
}

.navigator-list__btn.active svg {
    left: -1px;
    fill: #FF3002;
    stroke: #FF3002;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.navigator-list__link {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.navigator-list__link-container:not(:last-child) {
    margin-bottom: 8px;
}

.navigator-list__link-icon {
    fill: #fff;
    stroke: #bebebe;
    margin-right: 13px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.navigator-list__link.active, .navigator-list__link:focus, .navigator-list__link:hover {
    font-weight: 500;
}

.navigator-list__link.active svg, .navigator-list__link:focus svg, .navigator-list__link:hover svg {
    stroke: #FF3002;
}

.sidebar-title {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5em;
}

.sidebar-block-wrapper {
    margin: 2px 0;
    padding: 25px 30px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.sidebar-block__title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 20px;
}

.sidebar-block__title-icon {
    fill: none;
    stroke: #000;
    margin-left: 10px;
    vertical-align: middle;
}

.sidebar-block-price-output {
    padding: 0;
    width: 100%;
    color: #383838;
}

.sidebar-block-price-output::-webkit-input-placeholder {
    color: #383838;
}

.sidebar-block-price-output::-moz-placeholder {
    color: #383838;
}

.sidebar-block-price-output:-ms-input-placeholder {
    color: #383838;
}

.sidebar-block-price-output::-ms-input-placeholder {
    color: #383838;
}

.sidebar-block-price-output::placeholder {
    color: #383838;
}

.sidebar-block-price-output--arrow {
    margin: 0 5px;
    font-size: 18px;
    line-height: 0.75;
    color: #878787;
}

.sidebar-block-price-output-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sidebar-block-price-output-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #f4f4f4;
}

.sidebar-block-price-output-container span {
    color: #A7A7A7;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
}

.sidebar-block__link {
    padding-left: 22px;
    font-size: 11px;
    line-height: 17px;
    color: #878787;
}

.sidebar-block__link:first-letter {
    text-transform: uppercase;
}

.sidebar-block__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4.5px;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #ededed;
    border: 2px solid transparent;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.sidebar-block__link::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    opacity: 0;
    width: 6px;
    height: 9px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='11' fill='none'%3E%3Cpath stroke='%23ED1D24' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M1 5.682L3.33 10 7 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-background-size: 6px 9px;
    background-size: 6px 9px;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.sidebar-block__link:focus:not(.is-active), .sidebar-block__link:hover:not(.is-active) {
    color: #000;
}

.sidebar-block__link:focus:not(.is-active)::before, .sidebar-block__link:hover:not(.is-active)::before {
    border-color: #c4c4c4;
}

.sidebar-block__link.is-active {
    color: #000;
}

.sidebar-block__link.is-active::after {
    opacity: 1;
}

.sidebar-block__link-container {
    position: relative;
}

.sidebar-block__link-container:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar-share-main {
    margin-top: 30px;
}

@media (min-width: 64.0625em) {
    .sidebar-share-main {
        z-index: 1;
        position: -webkit-sticky;
        position: sticky;
        top: 50px;
        margin-top: 50px;
    }
}

.sidebar-share__title {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.5em;
    color: #000000;
}

.sidebar-share-items-btn {
    z-index: 1;
    position: absolute;
    top: 50%;
    padding: 5px;
    color: #fff;
    stroke: #929292;
}

.sidebar-share-items-btn--prev {
    left: 7px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-share-items-btn--next {
    right: 7px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.sidebar-share-items-btn:focus, .sidebar-share-items-btn:hover {
    color: #929292;
}

.sidebar-share-item {
    padding: 0;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.sidebar-share-item:not(:first-child):not(.slick-slide) {
    display: none;
}

.sidebar-share-item:not(.slick-current) {

    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.sidebar-share-item .product-card {
    background-color: #fff;
}

.sidebar-share-item .product-card-body {
    padding-left: 35px;
    padding-right: 35px;
}

@media (min-width: 64.0625em){
    .sidebar-share-item .product-card-body {
        padding: 15px;
    }
}

.sidebar-share-item .product-card__name {
    font-size: 9px;
    line-height: 14px;
}

.sidebar-share-item .product-card__info {
    font-size: 13px;
    line-height: 17px;
}

.sidebar-share-item .product-card__price-container {
    font-size: 13px;
    line-height: 15px;
}

.popular-main {
    margin-top: 65px;
}

.popular__title {
    margin-bottom: 50px;
}

@media (max-width: 64.0525em) {
    .popular-product-main .products-top__btn.active {
        margin-top: 0;
    }
    .popular-product-main .products-top__btn.active svg {
        display: none;
    }
}

.catalog-head__title {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0.25em;
}

@media (min-width: 64.0625em) {
    .catalog-head__title {
        margin-bottom: 25px;
        font-size: 26px;
        letter-spacing: 0.2em;
    }
}

.catalog-head-body {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    color: #030303;

}
.catalog-head-body p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    color: #030303;
    margin-top: 0;
    margin-bottom: 1rem;
}
.catalog-head-body h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 600;
    font-family: inherit;
    color: #030303;
}
.catalog-head-body h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 600;
    font-family: inherit;
    color: #030303;
}
.catalog-head-body strong {
    font-weight: bolder;
}

.catalog-head-sortable {
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (min-width: 64.0625em) {
    .catalog-head-sortable {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.catalog-head-sortable-select {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: 60px;
    padding: 0px 35px 0px 55px;
    background-color: #EDEDED;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10'%3E%3Cpath style='fill:none; stroke:%23000' d='M5.9,9.2l0.2-0.4l4.3-6.6c0.2-0.3,0.2-0.8,0-1.2l-0.2-0.4C10,0.5,7.9,1,5.6,1C3.4,1,1,0.5,0.9,0.6L0.6,1 c-0.2,0.3-0.2,0.8,0,1.2l4.3,6.6l0.2,0.4C5.3,9.5,5.7,9.5,5.9,9.2z'/%3E%3C/svg%3E");
    background-position: 92% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: 8px 8px;
    background-size: 8px;
}

.catalog-head-sortable-select:focus, .catalog-head-sortable-select:hover {
    -webkit-filter: none;
    filter: none;
    background-color: #e4e2e2;
}

.catalog-head-sortable-select__icon {
    position: absolute;
    top: 50%;
    left: 20px;
    fill: #EDEDED;
    stroke: #FF3002;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
		pointer-events: none; /* js triggers now work well */
}

.catalog-head-sortable-select-container {
    position: relative;
    margin-bottom: 5px;
}

@media (min-width: 64.0625em) {
    .catalog-head-sortable-select-container {
        margin-bottom: 0;
    }
}

.categories-main {
    padding-top: 45px;
    padding-bottom: 30px;
}

@media (min-width: 64.0625em) {
    .categories-main {
        padding-top: 85px;
        padding-bottom: 70px;
    }
}

.categories-container {
    margin-top: 50px;
}

.categories-card {
    background: #FFFFFF;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 100%;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
}

@media (max-width: 47.99em) {
    .categories-card {

    }
}

.categories-card:focus, .categories-card:hover,
.slick-current .categories-card {
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.categories-card:focus img, .categories-card:hover img,
.slick-current .categories-card img {
    opacity: 0.5;
}

.categories-card:focus .categories-card__name, .categories-card:hover .categories-card__name,
.slick-current .categories-card .categories-card__name {
    color: #FF3002;
}

.categories-card:focus .categories-card__info, .categories-card:hover .categories-card__info,
.slick-current .categories-card .categories-card__info {
    color: #202020;
}

@media (max-width: 47.99em) {
    .categories-card:focus, .categories-card:hover,
    .slick-current .categories-card {
        pointer-events: all;
    }
}

.categories-card-container {
    margin-bottom: 30px;
    position: relative;
}

.categories-card-container_inner {
    position: relative;
}

.categories-card-container_inner ul {
    display: none;
}

.categories-card-container_inner ul li a {
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;

}

.categories-card-container_inner ul li a:hover {
    color: #FF3002;
}

.categories-card-container:hover .categories-card-container_inner ul {
    display: block;
    position: absolute;
    background: #FCFCFC;
    border: 1px solid #DADADA;
    border-radius: 5px;
    width: 100%;
    height: auto;
    z-index: 100;
    padding: 20px
}



.categories-card__image {
    /*top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);*/
    -webkit-transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 80px;
    max-height: 80px;
    margin: 0;
    display: block;
    position: relative;
    transform: scale3d(1,1,1);
		width: auto;
		height: auto;
}

.categories-card.horisontal{
    flex-direction: column;
    flex-wrap: nowrap;
    display: flex;
    padding-top: 20px;
    overflow: hidden;
}

.horisontal .categories-card__image {
    max-width: 100%;
    width: auto;
    flex: auto 0 0;
    max-height: 160px;
    margin: 0;
    max-width: 160px;
    margin: auto;
}

.horisontal .categories-card__image-container{
    height: 150px;
    justify-content: flex-end;
    flex: 150px 0 0;
    max-width: 100%;
}

@media (max-width: 64.0525em) {
    .horisontal .categories-card__image-container{
        justify-content: center;
    }
}

.categories-card__image-container {
    position: relative;
    flex: 95px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-card-container[id="29"] .categories-card__image-container{
    justify-content: flex-start;
}

.categories-card__image-container:before {
    padding-top: 100%;
    background-color: transparent;
}

.categories-card__image-container:after {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 3px solid rgba(99, 99, 99, 0.4);
    border-top: 3px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 64.0525em) {
    .horisontal-mobile .categories-card__image-container {
        height: 160px;
        max-width: 100%;
    }
}

.categories-card-body {
    padding: 27px 15px 25px 7px;
    position: relative;
    z-index: 2;
}

.horisontal .categories-card-body {
    padding: 7px 30px 25px;
    flex: auto 1 1;
}

.categories-card__name {
    font-size: 16px;
    color: #000000;
    min-height: 38px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 13px;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
@media only screen and (min-width: 64.0625em) and (max-width: 81.245em) {
	.categories-card__name { font-size: 12px; }
}

.categories-card__info {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9F9F9F;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.partners-main {
    padding: 35px 0;
}

@media (min-width: 64.0625em) {
    .partners-main {
        padding: 100px 0 115px;
    }
}

.partners-container {
    position: relative;
    margin-top: 25px;
    background-color: #fff;
}

@media (min-width: 64.0625em) {
    .partners-container {
        margin-top: 56px;
    }
}

.partners-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
}

.partners-card {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #BEBEBE;
    border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23BEBEBE' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
    border-image-repeat: repeat;
    padding: 40px 35px;
}

@media (max-width: 47.99em) {
    .partners-card:not(:last-child) {
        border-image-slice: 0 0 15 0;
    }
}

@media (min-width: 48em) {
    .partners-card {
        border-image-slice: 21 20 0 0;
        padding: 44px 50px;
        padding-bottom: 40px;
    }
}

@media (min-width: 48em) and (max-width: 64.0525em) {
    .partners-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (min-width: 64.0625em) {
    .partners-card:nth-child(4n) {
        border-right: 0;
    }
}


.partners-card:focus img, .partners-card:hover img {
    -webkit-filter: none;
    filter: none;
}

.partners-card__image {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    max-height: 94px;
    max-width: 200px;
		width: auto;
		height: auto;
}

.partners-card__image-container {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 35px;
    width: 100%;
    height: 55px;
    max-width: 100px;
}

@media (min-width: 64.0625em) {
    .partners-card__image-container {
        margin-right: 0;
        margin-bottom: 35px;
        height: 94px;
        max-width: none;
    }
}

.partners-card__image-container::before {
    background-color: #fff;
}

.partners-card-body {
    font-size: 14px;
}

@media (min-width: 64.0625em) {
    .partners-card-body {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 64.0625em) {
    .partners-card{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: column;
    }

    .partners-card__image-container{
        height: auto;
        max-width: none;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .partners-card__image-container:before{
        display: none;
    }
    .partners-card-body{
        width: 100%;
        text-align: center;
    }
    .partners-card-body a:first-child{
        margin-bottom: 10px;
    }
}

.partners-card-body a:focus, .partners-card-body a:hover {
    color: #FF3002;
}

.products-main {
    position: relative;
    padding-bottom: 5px;
    background-color: #fff;
    padding-top: 35px;
}

@media (min-width: 64.0625em) {
    .products-main {
        margin-top: 90px;
        padding-top: 0;
    }
}

.products-main .wrapper {
    position: relative;
}

.products-container {
    padding: 30px 0;
}

@media (min-width: 64.0625em) {
    .products-container {
        padding: 85px 0;
    }
}

.products-tabs-slider .slick-track {
    margin: 0;
}

.products-tabs-slider .product-card-body{
    flex-grow: 1;
    flex-shrink: 1;
    display: block;
    padding-bottom: 35px;
}

.products-tabs-slider .product-card{
    flex-direction: column;
    flex-wrap: nowrap;
}

.products-tabs-btn {
    position: absolute;
    top: 50%;
    padding: 10px;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
}

.products-tabs-btn svg {
    fill: #fff;
    stroke: #FF3002;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.products-tabs-btn:focus svg, .products-tabs-btn:hover svg {
    fill: #FF3002;
}

.products-tabs-btn--prev {
    left: -45px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.products-tabs-btn--next {
    right: -45px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

@media (min-width: 64.0625em) {
    .products-top {
        position: absolute;
        left: 0;
        right: 0;
        top: -90px;
    }
    .products-top-btn {
        position: absolute;
        top: 4px;
        right: 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        line-height: 16px;
        padding: 15px 35px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        background-color: #fff;
        font-weight: 600;
    }
    .products-top-btn:focus, .products-top-btn:hover {
        background-color: #fbfbfb;
    }
    .products-top-btn:focus svg, .products-top-btn:hover svg {
        fill: #FF3002;
    }
    .products-top-btn svg {
        fill: #fff;
        stroke: #FF3002;
        margin-left: 5px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }
}

.products-top__btn {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.5em;
    color: #202020;
    -webkit-transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.products-top__btn-icon {
    fill: none;
    stroke: #202020;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.products-top__btn.active {

    background-color: #fff;
}

.products-top__btn.active svg {
    opacity: 1;
    bottom: 0;
    visibility: visible;
}

@media (max-width: 64.0525em) {
    .products-top__btn.active {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
        margin-top: 20px;
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }
    .products-top__btn.active svg {
        margin-bottom: 2px;
        margin-right: 10px;
        width: 8px;
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
}

@media (max-width: 64.0525em) {
    .products-top__btn:not(.active) {
        margin-right: 10px;
        border-bottom: 1px dashed #FF3002;
        border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF3002' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
        border-image-slice: 0 0 3 0;
        border-image-repeat: repeat;
        color: #FF3002;
    }
    .products-top__btn-icon {
        width: 0;
    }
}

@media (min-width: 64.0625em) {
    .products-top__btn {
        -webkit-border-radius: 5px;
        border-radius: 5px;
        padding: 40px 55px 20px;
        font-size: 18px;
        line-height: 32px;
    }
    .products-top__btn-icon {
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
}

.products-top__btn:focus:not(.active), .products-top__btn:hover:not(.active) {
    color: #FF3002;
    background-color: rgba(251, 251, 251, 0.5);
}

.order-main {
    z-index: 0;
    position: relative;
    background-color: #202020;
    background-image: url("../img/assets/header/bg-delivery.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.order-content-container {
    padding: 45px 15px 20px;
}

@media (min-width: 64.0625em) {
    .order-content-container {
        padding: 88px 15px 30px;
    }
}

.order__title {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 25px;
}

@media (min-width: 64.0625em) {
    .order__title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 45px;
    }
}

.order-list li {
    margin-bottom: 25px;
}

@media (min-width: 64.0625em) {
    .order-list li {
        margin-bottom: 42px;
    }
}

.order-list__icon {
    margin-right: 20px;
    position: relative;
    top: -3px;
    left: 1px;
}

.order-list__text {
    font-size: 14px;
    margin-top: -5px;
    line-height: 19px;
}

.order-form {
    z-index: 0;
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 20px;
    background-color: #4E4E4E;
}

@media (min-width: 64.0625em) {
    .order-form {
        padding: 20px 80px 40px;
    }
}

.order-main.active .order-form::before {
    content: '';
    opacity: 0.5;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/assets/main/order/image.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.order-form-container {
    margin-top: -15px;
    margin-left: auto;
    margin-bottom: -15px;
}

.order-form-title {
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0.5em;
    margin-bottom: 33px;
}

.order-form-input {
    margin-bottom: 30px;
}

.order-form-input, .order-form-textarea {
    width: 100%;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    padding: 11px 15px;
    background: #202020;
    opacity: 0.6;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.order-form-input::-webkit-input-placeholder, .order-form-textarea::-webkit-input-placeholder {
    color: #585656;
}

.order-form-input::-moz-placeholder, .order-form-textarea::-moz-placeholder {
    color: #585656;
}

.order-form-input:-ms-input-placeholder, .order-form-textarea:-ms-input-placeholder {
    color: #585656;
}

.order-form-input::-ms-input-placeholder, .order-form-textarea::-ms-input-placeholder {
    color: #585656;
}

.order-form-input::placeholder, .order-form-textarea::placeholder {
    color: #585656;
}

.order-form-input::-webkit-scrollbar, .order-form-textarea::-webkit-scrollbar {
    width: 5px;
}

.order-form-input::-webkit-scrollbar-thumb, .order-form-textarea::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #6c6c6c;
}

.order-form-textarea {
    height: 140px;
}

.order-form-privacy {
    font-size: 13px;
    margin-top: 15px;
    line-height: 18px;
}

.order-form-btn {
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 35px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.45em;
    white-space: nowrap;
    text-align: center;
    background-color: #FE4820;
    margin-top: 43px;
}

@media (min-width: 64.0625em) {
    .order-form-btn {
        padding: 19px 50px 16px;
    }
}

.fancybox-content .order-form-btn {
    position: relative;
    left: 0;
    margin-top: 20px;
    padding: 15px 25px;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.order-form-btn:focus, .order-form-btn:hover {
    background-color: #bf2300;
}

.order-form-mobile {
    position: relative;
    z-index: 0;
    margin: 0 -5px;
    padding: 40px 20px 15px;
    width: -webkit-calc(100% + 10px);
    width: calc(100% + 10px);
    background-color: #4E4E4E;
}

.order-main.active .order-form-mobile::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("../img/assets/main/order/image.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.contact {
    padding: 40px 0;
}

@media (min-width: 64.0625em) {
    .contact {
        padding: 60px 0;
    }
}

.contact__title {
    margin-bottom: 20px;
    text-align: center;
}

.contact-body-container p {
    line-height: 1.4;
}

.contact-body-container p:not(:last-child) {
    margin-bottom: 15px;
}

.contact-body__left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 64.0625em) {
    .contact-body__left {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }
}

.contact-body__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 20px;
    max-width: 100%;
}

.contact-body__name {
    margin-bottom: 20px;
}

.contact-body-map {
    width: 100%;
    height: 300px;
}

@media (min-width: 48em) {
    .contact-body-map {
        height: 400px;
    }
}

@media (max-width: 47.99em) {
    .contact-body-map {
        margin-top: 20px;
    }
}

.contact-body-img {
    margin: 30px 0;
}

.advantage-container {
    margin: 0 -20px;
    padding: 25px 20px 30px;
    background-color: #fff;
}

@media (min-width: 64.0625em) {
    .advantage-container {
        margin: 0;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        padding: 40px 30px;
    }
}

@media (min-width: 81.25em) {
    .advantage-main {
        position: relative;
        z-index: 10;
        margin-top: -11px;
    }
    .advantage-container {
        padding: 55px 55px;
        padding-right: 75px;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
}

.advantage__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 64.0525em) {
    .advantage__item {
        padding-left: 5px;
    }
    .advantage__item:not(:last-of-type) {
        margin-bottom: 17px;
        padding-bottom: 18px;
        border-bottom: 1px dashed #efefef;
        border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23efefef' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
        border-image-slice: 0 0 8 0;
        border-image-repeat: repeat;
    }
}

.advantage__item-icon {
    margin-right: 27px;
}

@media (min-width: 64.0625em) {
    .advantage__item-icon {
        margin-right: 20px;
        width: 44px;
        height: 44px;
    }
    .advantage__item-icon_delivery {
        width: 47px;
        height: 35px;
    }
    .advantage__item-icon_direct{
        width: 43px;
        height: 43px;
    }
    .advantage__item-icon_sale{
        width: 36px;
        height: 36px;
    }
    .advantage__item-icon_garanty{
        width: 40px;
        height: 41px;
    }
}

.advantage__item-body {
    font-size: 14px;
    line-height: 20px;
}

.products-tabs-slider .slick-track{
    display: flex;
}

.products-tabs-slider .slick-slide{
    display: flex;
    height: auto;
}

.product-tabs-top {
    position: relative;
    margin: 30px -20px 25px;
    padding: 0 20px;
}

@media (min-width: 64.0625em) {
    .product-tabs-top {
        margin: 70px -25px 55px;
        border-bottom: 1px solid #bebebe;
        padding: 0 55px;
    }
}

.product-tabs__btn {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -1px;
    border: 1px solid transparent;
    padding: 0;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.5em;
    color: #878787;
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-tabs__btn-icon {
    fill: none;
    stroke: #202020;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 64.0525em) {
    .product-tabs__btn {
        -webkit-transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .product-tabs__btn:not(.active) {
        margin-right: 10px;
        border-bottom: 1px dashed #FF3002;
        border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF3002' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
        border-image-slice: 0 0 3 0;
        border-image-repeat: repeat;
        color: #FF3002;
    }
    .product-tabs__btn-icon {
        width: 0;
    }
}

@media (min-width: 64.0625em) {
    .product-tabs__btn {
        padding: 0 45px 32px;
        font-size: 18px;
        line-height: 1;
    }
    .product-tabs__btn:not(:first-child)::before {
        content: '';
        position: absolute;
        top: 0;
        left: -2px;
        height: 50%;
        width: 1px;
        background-color: #bebebe;
    }
    .product-tabs__btn:hover {
        color: #FF3002;
    }
}

.product-tabs__btn.active {

    background-color: #fff;
}

.product-tabs__btn.active svg {
    opacity: 1;
    bottom: 0;
    visibility: visible;
}

@media (max-width: 64.0525em) {
    .product-tabs__btn.active {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
        margin-top: 20px;
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }
    .product-tabs__btn.active svg {
        margin-bottom: 2px;
        margin-right: 10px;
        width: 8px;
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
}

@media (min-width: 64.0625em) {
    .product-tabs__btn.active {
        border-color: #bebebe;
        border-bottom-color: #fff;
        padding-top: 32px;
        padding-bottom: 0;
        color: #BEBEBE;
    }
}

.product-tabs__btn.active::before {
    display: none;
}

@media (min-width: 64.0625em) {
    .product-tabs-container {
        padding: 0 25px;
    }
}

.product-top__title {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 0;
    color: #000;
}

.product-top-media {
    margin-bottom: 30px;
}

@media (min-width: 64.0625em) {
    .product-top-media {
        margin-bottom: 0;
    }
}

.product-top-image-container {
    min-height: 200px;
		cursor: pointer;
}

.product-top-image-container::before {
    background-color: transparent;
}

.product-top-advantage {
    margin-top: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-top-advantage__item {
    margin-bottom: 25px;
}

.product-top-advantage__item svg {
    margin-right: 15px;
}

.product-top-advantage__item .card-availability {
    margin: 0;
}

.product-top-advantage__item p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 64.0625em) {
    .product-top-content {
        padding-left: 35px;
    }
}

.product-top-content-text {
    line-height: 24px;
    margin-bottom: 25px;
}

.product-top-content-info {
    margin-bottom: 37px;
}

.product-top-article {
    margin-right: 15px;
    padding: 15px;
    line-height: 0.75;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #f4f4f4;
}

@media (min-width: 64.0625em) {
    .product-top-article {
        margin-right: 35px;
        padding: 25px;
        min-width: 190px;
    }
}

.product-top-article span {
    color: #878787;
}

.product-top-options-btn {
    padding: 0;
    margin: 10px 0;
}

.product-top-buy-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px -20px;
    padding: 30px 20px 30px;
    border: 1px solid #BEBEBE;
    border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23BEBEBE' viewBox='0 0 3 3'%3E%3Cpath d='M0,2h1v1H0V2z M2,2h1v1H2V2z M0,0h1v1H0V0z M2,0h1v1H2V0z'/%3E%3C/svg%3E");
    border-image-slice: 10 0 10 0;
    border-image-repeat: repeat;
}

@media (min-width: 64.0625em) {
    .product-top-buy-container {
        margin: 30px 0 0;
        padding: 30px 0 30px;
    }
	.nav-menu-categories__item_level_2 {
		max-height: 100%;
		overflow-y: auto;
	}
}

.product-top-buy-text {
    font-size: 13px;
    line-height: 15px;
    color: #585656;
    margin-right: 20px;
}

.product-top-buy-btn {
    position: relative;
    margin-right: 20px;
    margin-left: 10px;
    padding: 10px;
    font-size: 14px;
    letter-spacing: 0.5em;
    overflow: hidden;
}

.product-top-buy-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 30px;
    width: 8px;
    height: 14px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath fill='none' stroke='%23fff' d='M.6 9.9L4 13.4 7.4 10m-3.3 2.8V1.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-background-size: 8px 14px;
    background-size: 8px 14px;
    -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media (min-width: 64.0625em) {
    .product-top-buy-btn {
        margin-right: 0;
        margin-left: 20px;
        padding: 10px 20px;
    }
    .product-top-buy-btn svg {
        margin-right: 10px;
    }
    .product-top-buy-btn span {
        vertical-align: super;
    }
}

.product-top-buy-btn:focus, .product-top-buy-btn:hover {
    background-color: #d82700;
}

.product-top-buy-btn:focus::before, .product-top-buy-btn:hover::before {
    top: 0;
}
.t-page p {
    margin-bottom:20px;
    line-height: 20pt;
}
.t-page .nav-auth {
    position:relative;
    -webkit-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    display: block !important;
    max-width: 400px;
}
/*# sourceMappingURL=main.css.map */

ul:not(.active) .hidden-filter {
    display: none;
}
.show-more-filter a {
    color: #ff3002;
    text-decoration:underline;
}
.show-more-filter a:before {
    display: none;
}
.loading:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.3) url(../img/loading.svg) center no-repeat;
    background-size: 100px;
}
.js-aside-main-mobile input[type="search"] {
    color: #000;
}
.js-prod-images-preview {
    margin-top:30px;
}
.js-prod-images-preview .slick-slide {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}
.js-prod-images-preview .slick-slide.slick-current {
    border-bottom-color: #d82700;
}
@media all and (max-width: 1024px) {
    .card-counter-input {
        /* width: 40px;*/
    }
    .card-counter-btn {
        padding: 7px 10px;
    }
    .card__btn {
        padding: 15px 10px;
    }
    .catalog-head__title {
        letter-spacing: 0.1em;
    }
    .catalog-filter.active {
        display: block;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 10;
        background: #fff;
        padding-top: 20px;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 100%;
        padding-bottom: 60px;
        border-right: 1px solid #aaa;
    }
    .catalog-filter.active .overlay {
        content:"";
        display: block;
        position: fixed;
        top: 0px;
        right: 0px;
        width:40px;
        height:40px;
        background: rgba(0, 0, 0, 0.3);
        z-index:4;

    }
    .catalog-filter.active h2 {
        padding-left:20px;
        letter-spacing: 0.1em;
    }
    .filter-mobile-nav {
        display: flex;
        justify-content: space-between;
        position:fixed;
        bottom:0px;
        background:#fff;
        border-top:1px solid #aaa;
        padding:15px 20px;
        width:100%;
        width: 100%;
        z-index: 1;
    }
    .overlay.js-close-filter:after {
        position: absolute;
        display: block;
        content: "X";
        top: 10px;
        right: 5px;
        z-index: 1;
        width: 20px;
        height: 20px;
        color:#fff;
        padding: 0px;
        margin: 0px;
    }
    .filter-mobile-nav > * {
        width: 48%;
    }
    .categories-container .categories-card-body {
        padding:10px;
        max-width: 70%;
        box-sizing: border-box;
    }
    .categories-container .categories-card-body * {
        padding:0px;
        margin-top:5px;
        margin-bottom:5px;
        min-height: auto;
    }
    .categories-container .categories-card__image-container {
        height:50px;
        box-sizing:border-box;
        margin-top:10px;
    }
    .categories-container .categories-card__image-container img {
        height:50px;
    }
    .categories-container .horisontal .categories-card__image-container img {
        height:160px;
    }
    .categories-container .categories-card-container a {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .categories-container .categories-card-container {
        margin-bottom:10px;
    }
}
